a2a3574b85f0bad1a4eb23ef8f2d3b764c88ee28
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
4 ;;; Copyright © 2017, 2018 Roel Janssen <roel@gnu.org>
5 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
6 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
7 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
8 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
9 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
10 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
11 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
12 ;;; Copyright © 2018 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
13 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
14 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
15 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
16 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
17 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
18 ;;;
19 ;;; This file is part of GNU Guix.
20 ;;;
21 ;;; GNU Guix is free software; you can redistribute it and/or modify it
22 ;;; under the terms of the GNU General Public License as published by
23 ;;; the Free Software Foundation; either version 3 of the License, or (at
24 ;;; your option) any later version.
25 ;;;
26 ;;; GNU Guix is distributed in the hope that it will be useful, but
27 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
28 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 ;;; GNU General Public License for more details.
30 ;;;
31 ;;; You should have received a copy of the GNU General Public License
32 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
33
34 (define-module (gnu packages cran)
35 #:use-module ((guix licenses) #:prefix license:)
36 #:use-module (guix packages)
37 #:use-module (guix download)
38 #:use-module (guix git-download)
39 #:use-module (guix utils)
40 #:use-module (guix build-system r)
41 #:use-module (gnu packages algebra)
42 #:use-module (gnu packages base)
43 #:use-module (gnu packages bioinformatics)
44 #:use-module (gnu packages c)
45 #:use-module (gnu packages compression)
46 #:use-module (gnu packages curl)
47 #:use-module (gnu packages databases)
48 #:use-module (gnu packages fontutils)
49 #:use-module (gnu packages gcc)
50 #:use-module (gnu packages geo)
51 #:use-module (gnu packages ghostscript)
52 #:use-module (gnu packages gl)
53 #:use-module (gnu packages gnome)
54 #:use-module (gnu packages graph)
55 #:use-module (gnu packages gtk)
56 #:use-module (gnu packages haskell)
57 #:use-module (gnu packages icu4c)
58 #:use-module (gnu packages image)
59 #:use-module (gnu packages imagemagick)
60 #:use-module (gnu packages java)
61 #:use-module (gnu packages javascript)
62 #:use-module (gnu packages lisp)
63 #:use-module (gnu packages machine-learning)
64 #:use-module (gnu packages maths)
65 #:use-module (gnu packages mpi)
66 #:use-module (gnu packages multiprecision)
67 #:use-module (gnu packages networking)
68 #:use-module (gnu packages pcre)
69 #:use-module (gnu packages perl)
70 #:use-module (gnu packages pkg-config)
71 #:use-module (gnu packages python)
72 #:use-module (gnu packages python-xyz)
73 #:use-module (gnu packages statistics)
74 #:use-module (gnu packages tls)
75 #:use-module (gnu packages web)
76 #:use-module (gnu packages xorg))
77
78 (define-public r-clipr
79 (package
80 (name "r-clipr")
81 (version "0.7.0")
82 (source
83 (origin
84 (method url-fetch)
85 (uri (cran-uri "clipr" version))
86 (sha256
87 (base32
88 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
89 (build-system r-build-system)
90 (home-page "https://github.com/mdlincoln/clipr")
91 (synopsis "Read and write from the system clipboard")
92 (description
93 "This package provides simple utility functions to read from and write to
94 the system clipboards.")
95 (license license:gpl3)))
96
97 (define-public r-ellipsis
98 (package
99 (name "r-ellipsis")
100 (version "0.2.0")
101 (source
102 (origin
103 (method url-fetch)
104 (uri (cran-uri "ellipsis" version))
105 (sha256
106 (base32
107 "0hdk79q4wn5nq52p8qd65kqz81l0b8gfzsbzyvmfais0p24qclib"))))
108 (build-system r-build-system)
109 (propagated-inputs
110 `(("r-rlang" ,r-rlang)))
111 (home-page "https://github.com/hadley/ellipsis")
112 (synopsis "Tools for working with additional arguments")
113 (description
114 "In S3 generics, it's useful to take @code{...} so that methods can have
115 additional arguments. But this flexibility comes at a cost: misspelled
116 arguments will be silently ignored. The @code{ellipsis} package is an
117 experiment that allows a generic to warn if any arguments passed in @code{...}
118 are not used.")
119 (license license:gpl3)))
120
121 (define-public r-grr
122 (package
123 (name "r-grr")
124 (version "0.9.5")
125 (source
126 (origin
127 (method url-fetch)
128 (uri (cran-uri "grr" version))
129 (sha256
130 (base32
131 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
132 (build-system r-build-system)
133 (home-page "https://cran.r-project.org/web/packages/grr")
134 (synopsis "Alternative implementations of base R functions")
135 (description
136 "This package provides alternative implementations of some base R
137 functions, including @code{sort}, @code{order}, and @code{match}. The
138 functions are simplified but can be faster or have other advantages.")
139 (license license:gpl3)))
140
141 (define-public r-matrix-utils
142 (package
143 (name "r-matrix-utils")
144 (version "0.9.7")
145 (source
146 (origin
147 (method url-fetch)
148 (uri (cran-uri "Matrix.utils" version))
149 (sha256
150 (base32
151 "1x64r4aj3gy1dzjjysyrk1j9jq3qsnyrqws8i6bs7q8pf6gvr7va"))))
152 (properties `((upstream-name . "Matrix.utils")))
153 (build-system r-build-system)
154 (propagated-inputs
155 `(("r-grr" ,r-grr)
156 ("r-matrix" ,r-matrix)))
157 (home-page "https://github.com/cvarrichio/Matrix.utils")
158 (synopsis
159 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
160 (description
161 "This package implements data manipulation methods such as @code{cast},
162 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
163 objects.")
164 (license license:gpl3)))
165
166 (define-public r-sys
167 (package
168 (name "r-sys")
169 (version "3.2")
170 (source
171 (origin
172 (method url-fetch)
173 (uri (cran-uri "sys" version))
174 (sha256
175 (base32
176 "1k5vk5q9wa5sin0n226i05nymg469s24f6lx64yyhb7yc624j698"))))
177 (build-system r-build-system)
178 (home-page "https://github.com/jeroen/sys")
179 (synopsis "Powerful and reliable tools for running system commands in R")
180 (description
181 "This package provides drop-in replacements for the base @code{system2()}
182 function with fine control and consistent behavior across platforms. It
183 supports clean interruption, timeout, background tasks, and streaming STDIN /
184 STDOUT / STDERR over binary or text connections. The package also provides
185 functions for evaluating expressions inside a temporary fork. Such
186 evaluations have no side effects on the main R process, and support reliable
187 interrupts and timeouts. This provides the basis for a sandboxing
188 mechanism.")
189 (license license:expat)))
190
191 (define-public r-askpass
192 (package
193 (name "r-askpass")
194 (version "1.1")
195 (source
196 (origin
197 (method url-fetch)
198 (uri (cran-uri "askpass" version))
199 (sha256
200 (base32
201 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
202 (build-system r-build-system)
203 (propagated-inputs `(("r-sys" ,r-sys)))
204 (home-page "https://github.com/jeroen/askpass")
205 (synopsis "Safe password entry for R")
206 (description
207 "This package provides cross-platform utilities for prompting the user
208 for credentials or a passphrase, for example to authenticate with a server or
209 read a protected key.")
210 (license license:expat)))
211
212 (define-public r-vegan
213 (package
214 (name "r-vegan")
215 (version "2.5-5")
216 (source
217 (origin
218 (method url-fetch)
219 (uri (cran-uri "vegan" version))
220 (sha256
221 (base32
222 "0wb90ng02gi13854bjq0b8a2vrknyhb0s0l1v3z38c4zy9k54sw7"))))
223 (build-system r-build-system)
224 (native-inputs
225 `(("gfortran" ,gfortran)))
226 (propagated-inputs
227 `(("r-cluster" ,r-cluster)
228 ("r-knitr" ,r-knitr) ; needed for vignettes
229 ("r-lattice" ,r-lattice)
230 ("r-mass" ,r-mass)
231 ("r-mgcv" ,r-mgcv)
232 ("r-permute" ,r-permute)))
233 (home-page "https://cran.r-project.org/web/packages/vegan")
234 (synopsis "Functions for community ecology")
235 (description
236 "The vegan package provides tools for descriptive community ecology. It
237 has most basic functions of diversity analysis, community ordination and
238 dissimilarity analysis. Most of its multivariate tools can be used for other
239 data types as well.")
240 (license license:gpl2+)))
241
242 (define-public r-tidyverse
243 (package
244 (name "r-tidyverse")
245 (version "1.2.1")
246 (source
247 (origin
248 (method url-fetch)
249 (uri (cran-uri "tidyverse" version))
250 (sha256
251 (base32
252 "0yy3fkjksgcn6wkbgsb0pbnmsyqs4m01mziqafhig578nixs4rxd"))))
253 (build-system r-build-system)
254 (propagated-inputs
255 `(("r-broom" ,r-broom)
256 ("r-cli" ,r-cli)
257 ("r-crayon" ,r-crayon)
258 ("r-dbplyr" ,r-dbplyr)
259 ("r-dplyr" ,r-dplyr)
260 ("r-forcats" ,r-forcats)
261 ("r-ggplot2" ,r-ggplot2)
262 ("r-haven" ,r-haven)
263 ("r-hms" ,r-hms)
264 ("r-httr" ,r-httr)
265 ("r-jsonlite" ,r-jsonlite)
266 ("r-lubridate" ,r-lubridate)
267 ("r-magrittr" ,r-magrittr)
268 ("r-modelr" ,r-modelr)
269 ("r-purrr" ,r-purrr)
270 ("r-readr" ,r-readr)
271 ("r-readxl" ,r-readxl)
272 ("r-reprex" ,r-reprex)
273 ("r-rlang" ,r-rlang)
274 ("r-rstudioapi" ,r-rstudioapi)
275 ("r-rvest" ,r-rvest)
276 ("r-stringr" ,r-stringr)
277 ("r-tibble" ,r-tibble)
278 ("r-tidyr" ,r-tidyr)
279 ("r-xml2" ,r-xml2)))
280 (home-page "https://tidyverse.tidyverse.org")
281 (synopsis "Install and load packages from the \"Tidyverse\"")
282 (description
283 "The @code{tidyverse} is a set of packages that work in harmony because
284 they share common data representations and API design. This package is
285 designed to make it easy to install and load multiple tidyverse packages in a
286 single step.")
287 (license license:gpl3)))
288
289 (define-public r-rvest
290 (package
291 (name "r-rvest")
292 (version "0.3.4")
293 (source
294 (origin
295 (method url-fetch)
296 (uri (cran-uri "rvest" version))
297 (sha256
298 (base32
299 "0ji5lk8g1gbv4d9c4jg1fg6rgsqrrwkm05j1id7drdw9kqdifgj1"))))
300 (build-system r-build-system)
301 (propagated-inputs
302 `(("r-httr" ,r-httr)
303 ("r-magrittr" ,r-magrittr)
304 ("r-selectr" ,r-selectr)
305 ("r-xml2" ,r-xml2)))
306 (home-page "https://github.com/hadley/rvest")
307 (synopsis "Simple web scraping for R")
308 (description
309 "@code{r-rvest} helps you scrape information from web pages. It is
310 designed to work with @code{magrittr} to make it easy to express common web
311 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
312 (license license:gpl3)))
313
314 (define-public r-selectr
315 (package
316 (name "r-selectr")
317 (version "0.4-1")
318 (source
319 (origin
320 (method url-fetch)
321 (uri (cran-uri "selectr" version))
322 (sha256
323 (base32
324 "1jp27rxks4w29l47k42869hp8hnkzq2rnvsqbr44wd19fqb2zm4b"))))
325 (build-system r-build-system)
326 (propagated-inputs
327 `(("r-stringr" ,r-stringr)
328 ("r-r6" ,r-r6)))
329 (home-page "https://sjp.co.nz/projects/selectr/")
330 (synopsis "Translate CSS selectors to XPath expressions")
331 (description
332 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
333 expression. This allows you to use CSS selectors when working with the XML
334 package as it can only evaluate XPath expressions. Also provided are
335 convenience functions useful for using CSS selectors on XML nodes. This
336 package is a port of the Python package @code{cssselect}.")
337 (license license:bsd-3)))
338
339 (define-public r-reprex
340 (package
341 (name "r-reprex")
342 (version "0.3.0")
343 (source
344 (origin
345 (method url-fetch)
346 (uri (cran-uri "reprex" version))
347 (sha256
348 (base32
349 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
350 (build-system r-build-system)
351 (propagated-inputs
352 `(("r-callr" ,r-callr)
353 ("r-clipr" ,r-clipr)
354 ("r-fs" ,r-fs)
355 ("r-rlang" ,r-rlang)
356 ("r-rmarkdown" ,r-rmarkdown)
357 ("r-whisker" ,r-whisker)
358 ("r-withr" ,r-withr)))
359 (home-page "https://github.com/tidyverse/reprex")
360 (synopsis "Prepare reproducible R code examples for sharing")
361 (description
362 "This package provides a convenience wrapper that uses the
363 @code{rmarkdown} package to render small snippets of code to target formats
364 that include both code and output. The goal is to encourage the sharing of
365 small, reproducible, and runnable examples on code-oriented websites or email.
366 @code{reprex} also extracts clean, runnable R code from various common formats,
367 such as copy/paste from an R session.")
368 (license license:expat)))
369
370 (define-public r-callr
371 (package
372 (name "r-callr")
373 (version "3.2.0")
374 (source
375 (origin
376 (method url-fetch)
377 (uri (cran-uri "callr" version))
378 (sha256
379 (base32
380 "1s5h2k7c1vgbry90xczin66q89cbkc6mvh4679l5rsz83087pd2b"))))
381 (build-system r-build-system)
382 (propagated-inputs
383 `(("r-r6" ,r-r6)
384 ("r-processx" ,r-processx)))
385 (home-page "https://github.com/r-lib/callr#readme")
386 (synopsis "Call R from R")
387 (description
388 "It is sometimes useful to perform a computation in a separate R process,
389 without affecting the current R process at all. This package does exactly
390 that.")
391 (license license:expat)))
392
393 (define-public r-readxl
394 (package
395 (name "r-readxl")
396 (version "1.3.1")
397 (source
398 (origin
399 (method url-fetch)
400 (uri (cran-uri "readxl" version))
401 (sha256
402 (base32
403 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
404 (build-system r-build-system)
405 (propagated-inputs
406 `(("r-cellranger" ,r-cellranger)
407 ("r-progress" ,r-progress)
408 ("r-rcpp" ,r-rcpp)
409 ("r-tibble" ,r-tibble)))
410 (home-page "https://readxl.tidyverse.org")
411 (synopsis "Read Excel files")
412 (description
413 "This package lets you import Excel files into R. It supports
414 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
415 the embedded @code{RapidXML} C++ library.")
416 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
417 ;; 'rapidxml' which is Boost.
418 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
419
420 (define-public r-modelr
421 (package
422 (name "r-modelr")
423 (version "0.1.4")
424 (source
425 (origin
426 (method url-fetch)
427 (uri (cran-uri "modelr" version))
428 (sha256
429 (base32
430 "1ngxphbjkv7yl1rg30sj36mfwhc76g452drjrq9abgab4k0pgnml"))))
431 (build-system r-build-system)
432 (propagated-inputs
433 `(("r-broom" ,r-broom)
434 ("r-dplyr" ,r-dplyr)
435 ("r-lazyeval" ,r-lazyeval)
436 ("r-magrittr" ,r-magrittr)
437 ("r-purrr" ,r-purrr)
438 ("r-tibble" ,r-tibble)
439 ("r-tidyr" ,r-tidyr)))
440 (home-page "https://github.com/tidyverse/modelr")
441 (synopsis "Helper functions for modelling in pipelines")
442 (description
443 "Functions for modelling that help you seamlessly integrate modelling
444 into a pipeline of data manipulation and visualisation.")
445 (license license:gpl3)))
446
447 (define-public r-httpuv
448 (package
449 (name "r-httpuv")
450 (version "1.5.1")
451 (source (origin
452 (method url-fetch)
453 (uri (cran-uri "httpuv" version))
454 (sha256
455 (base32
456 "042piypg4c8sqrlcdl3dwajkafkbglsky3x7d0jpjv8s5wxnpfxm"))))
457 (build-system r-build-system)
458 (propagated-inputs
459 `(("r-bh" ,r-bh)
460 ("r-later" ,r-later)
461 ("r-promises" ,r-promises)
462 ("r-r6" ,r-r6)
463 ("r-rcpp" ,r-rcpp)))
464 (home-page "https://github.com/rstudio/httpuv")
465 (synopsis "HTTP and WebSocket server library for R")
466 (description
467 "The httpuv package provides low-level socket and protocol support for
468 handling HTTP and WebSocket requests directly from within R. It is primarily
469 intended as a building block for other packages, rather than making it
470 particularly easy to create complete web applications using httpuv alone.")
471 ;; This package includes third-party code that was originally released
472 ;; under various non-copyleft licenses. Full licensing information can be
473 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
474 (license license:gpl3+)))
475
476 (define-public r-jsonlite
477 (package
478 (name "r-jsonlite")
479 (version "1.6")
480 (source (origin
481 (method url-fetch)
482 (uri (cran-uri "jsonlite" version))
483 (sha256
484 (base32
485 "0lyvhnr6n57h3a89bvipii7x17nvfaycm9j5j50bfrlr48jv9ic8"))))
486 (build-system r-build-system)
487 (home-page "http://arxiv.org/abs/1403.2805")
488 (synopsis "Robust, high performance JSON parser and generator for R")
489 (description
490 "The jsonlite package provides a fast JSON parser and generator optimized
491 for statistical data and the web. It offers flexible, robust, high
492 performance tools for working with JSON in R and is particularly powerful for
493 building pipelines and interacting with a web API. In addition to converting
494 JSON data from/to R objects, jsonlite contains functions to stream, validate,
495 and prettify JSON data. The unit tests included with the package verify that
496 all edge cases are encoded and decoded consistently for use with dynamic data
497 in systems and applications.")
498 (license license:expat)))
499
500 (define-public r-servr
501 (package
502 (name "r-servr")
503 (version "0.14")
504 (source (origin
505 (method url-fetch)
506 (uri (cran-uri "servr" version))
507 (sha256
508 (base32
509 "0zjjnfgas9d16fihksyk24kgkkqswb4sd0rz51id2ni1ymdyasjk"))))
510 (build-system r-build-system)
511 (propagated-inputs
512 `(("r-httpuv" ,r-httpuv)
513 ("r-jsonlite" ,r-jsonlite)
514 ("r-mime" ,r-mime)
515 ("r-xfun" ,r-xfun)))
516 (home-page "https://github.com/yihui/servr")
517 (synopsis "Simple HTTP server to serve static files or dynamic documents")
518 (description
519 "Servr provides an HTTP server in R to serve static files, or dynamic
520 documents that can be converted to HTML files (e.g., R Markdown) under a given
521 directory.")
522 (license license:expat)))
523
524 (define-public r-htmltools
525 (package
526 (name "r-htmltools")
527 (version "0.3.6")
528 (source (origin
529 (method url-fetch)
530 (uri (cran-uri "htmltools" version))
531 (sha256
532 (base32
533 "18k8r1s8sz1jy7dkz35n69wj20xhmllr53xmwb4pdzf2z61gpbs4"))))
534 (build-system r-build-system)
535 (arguments
536 `(#:phases
537 (modify-phases %standard-phases
538 ;; See https://github.com/rstudio/htmltools/pull/68
539 ;; The resource files are in the store and have mode 444. After
540 ;; copying the files R fails to remove them again because it doesn't
541 ;; have write access to them.
542 (add-after 'unpack 'copy-files-without-mode
543 (lambda _
544 (substitute* "R/html_dependency.R"
545 (("file.copy\\(from, to, " prefix)
546 (string-append prefix
547 "copy.mode = FALSE, ")))
548 #t)))))
549 (propagated-inputs
550 `(("r-digest" ,r-digest)
551 ("r-rcpp" ,r-rcpp)))
552 (home-page "https://cran.r-project.org/web/packages/htmltools")
553 (synopsis "R tools for HTML")
554 (description
555 "This package provides tools for HTML generation and output in R.")
556 (license license:expat)))
557
558 (define-public r-htmlwidgets
559 (package
560 (name "r-htmlwidgets")
561 (version "1.3")
562 (source (origin
563 (method url-fetch)
564 (uri (cran-uri "htmlwidgets" version))
565 (sha256
566 (base32
567 "04jsdh14l2zifbjpbbh23w7bxz1wpsas0zb2gy2zwv4yqamzzr7i"))))
568 (build-system r-build-system)
569 (propagated-inputs
570 `(("r-htmltools" ,r-htmltools)
571 ("r-jsonlite" ,r-jsonlite)
572 ("r-yaml" ,r-yaml)))
573 (home-page "https://github.com/ramnathv/htmlwidgets")
574 (synopsis "HTML Widgets for R")
575 (description
576 "HTML widgets is a framework for creating HTML widgets that render in
577 various contexts including the R console, R Markdown documents, and Shiny web
578 applications.")
579 (license license:expat)))
580
581 (define-public r-htmltable
582 (package
583 (name "r-htmltable")
584 (version "1.13.1")
585 (source
586 (origin
587 (method url-fetch)
588 (uri (cran-uri "htmlTable" version))
589 (sha256
590 (base32
591 "1l44b33xgj2698k6nz17r8fl0ink14ryzng803apm9d6bnv357v8"))))
592 (properties `((upstream-name . "htmlTable")))
593 (build-system r-build-system)
594 (propagated-inputs
595 `(("r-checkmate" ,r-checkmate)
596 ("r-htmltools" ,r-htmltools)
597 ("r-htmlwidgets" ,r-htmlwidgets)
598 ("r-knitr" ,r-knitr)
599 ("r-magrittr" ,r-magrittr)
600 ("r-rstudioapi" ,r-rstudioapi)
601 ("r-stringr" ,r-stringr)))
602 (home-page "http://gforge.se/packages/")
603 (synopsis "Advanced tables for Markdown/HTML")
604 (description
605 "This package provides functions to build tables with advanced layout
606 elements such as row spanners, column spanners, table spanners, zebra
607 striping, and more. While allowing advanced layout, the underlying
608 CSS-structure is simple in order to maximize compatibility with word
609 processors such as LibreOffice. The package also contains a few text
610 formatting functions that help outputting text compatible with HTML or
611 LaTeX.")
612 (license license:gpl3+)))
613
614 (define-public r-curl
615 (package
616 (name "r-curl")
617 (version "3.3")
618 (source (origin
619 (method url-fetch)
620 (uri (cran-uri "curl" version))
621 (sha256
622 (base32
623 "1gd5i25anzi28lg1f8p7g63z9d46xi0qaw4lxpml5p0f52lvkc0c"))))
624 (build-system r-build-system)
625 (arguments
626 `(#:phases
627 (modify-phases %standard-phases
628 ;; The environment variable CURL_CA_BUNDLE is only respected when
629 ;; running Windows, so we disable the platform checks.
630 ;; This can be removed once the libcurl has been patched.
631 (add-after 'unpack 'allow-CURL_CA_BUNDLE
632 (lambda _
633 (substitute* "R/onload.R"
634 (("if \\(!grepl\\(\"mingw\".*")
635 "if (FALSE)\n"))
636 (substitute* "src/handle.c"
637 (("#ifdef _WIN32") "#if 1"))
638 #t)))))
639 (inputs
640 `(("libcurl" ,curl)
641 ("zlib" ,zlib)))
642 (native-inputs
643 `(("pkg-config" ,pkg-config)))
644 (home-page "https://github.com/jeroenooms/curl")
645 (synopsis "HTTP client for R")
646 (description
647 "The @code{curl()} and @code{curl_download()} functions provide highly
648 configurable drop-in replacements for base @code{url()} and
649 @code{download.file()} with better performance, support for encryption, gzip
650 compression, authentication, and other @code{libcurl} goodies. The core of
651 the package implements a framework for performing fully customized requests
652 where data can be processed either in memory, on disk, or streaming via the
653 callback or connection interfaces.")
654 (license license:expat)))
655
656 (define-public r-hwriter
657 (package
658 (name "r-hwriter")
659 (version "1.3.2")
660 (source
661 (origin
662 (method url-fetch)
663 (uri (cran-uri "hwriter" version))
664 (sha256
665 (base32
666 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
667 (build-system r-build-system)
668 (home-page "https://cran.r-project.org/web/packages/hwriter")
669 (synopsis "Output R objects in HTML format")
670 (description
671 "This package provides easy-to-use and versatile functions to output R
672 objects in HTML format.")
673 (license license:lgpl2.1+)))
674
675 (define-public r-rjson
676 (package
677 (name "r-rjson")
678 (version "0.2.20")
679 (source
680 (origin
681 (method url-fetch)
682 (uri (cran-uri "rjson" version))
683 (sha256
684 (base32
685 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
686 (build-system r-build-system)
687 (home-page "https://cran.r-project.org/web/packages/rjson")
688 (synopsis "JSON library for R")
689 (description
690 "This package provides functions to convert R objects into JSON objects
691 and vice-versa.")
692 (license license:gpl2+)))
693
694 (define-public r-shiny
695 (package
696 (name "r-shiny")
697 (version "1.2.0")
698 (source
699 (origin
700 (method git-fetch)
701 (uri (git-reference
702 (url "https://github.com/rstudio/shiny.git")
703 (commit (string-append "v" version))))
704 (file-name (git-file-name name version))
705 (sha256
706 (base32
707 "1kl3dh68h4cnrm3rqn9pddk5n6bsmr5x0626bkfv0qqi0q92zin4"))))
708 (build-system r-build-system)
709 (arguments
710 `(#:modules ((guix build r-build-system)
711 (guix build minify-build-system)
712 (guix build utils)
713 (ice-9 match))
714 #:imported-modules (,@%r-build-system-modules
715 (guix build minify-build-system))
716 #:phases
717 (modify-phases (@ (guix build r-build-system) %standard-phases)
718 (add-after 'unpack 'replace-bundled-minified-JavaScript
719 (lambda* (#:key inputs #:allow-other-keys)
720 (let ((replace-file (lambda (old new)
721 (format #t "replacing ~a with ~a\n" old new)
722 (delete-file old)
723 (symlink new old))))
724 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
725 ;; contain just data. They are not minified code, so we don't
726 ;; replace them.
727 (with-directory-excursion "inst/www/shared"
728 (replace-file "bootstrap/shim/respond.min.js"
729 (string-append (assoc-ref inputs "js-respond")
730 "/share/javascript/respond.min.js"))
731 (replace-file "bootstrap/shim/html5shiv.min.js"
732 (string-append (assoc-ref inputs "js-html5shiv")
733 "/share/javascript/html5shiv.min.js"))
734 (replace-file "json2-min.js"
735 (string-append (assoc-ref inputs "js-json2")
736 "/share/javascript/json2.min.js"))
737 (replace-file "strftime/strftime-min.js"
738 (string-append (assoc-ref inputs "js-strftime")
739 "/share/javascript/strftime.min.js"))
740 (replace-file "highlight/highlight.pack.js"
741 (string-append (assoc-ref inputs "js-highlight")
742 "/share/javascript/highlight.min.js"))
743 (replace-file "datatables/js/jquery.dataTables.min.js"
744 (string-append (assoc-ref inputs "js-datatables")
745 "/share/javascript/jquery.dataTables.min.js"))
746 (replace-file "selectize/js/selectize.min.js"
747 (string-append (assoc-ref inputs "js-selectize")
748 "/share/javascript/selectize.min.js"))
749 (replace-file "selectize/js/es5-shim.min.js"
750 (string-append (assoc-ref inputs "js-es5-shim")
751 "/share/javascript/es5-shim.min.js"))
752 (for-each (match-lambda
753 ((source . target)
754 (delete-file target)
755 (minify source #:target target)))
756 '(("jqueryui/jquery-ui.js" .
757 "jqueryui/jquery-ui.min.js")
758 ("datepicker/js/bootstrap-datepicker.js" .
759 "datepicker/js/bootstrap-datepicker.min.js")
760 ("ionrangeslider/js/ion.rangeSlider.js" .
761 "ionrangeslider/js/ion.rangeSlider.min.js")
762 ("bootstrap/js/bootstrap.js" .
763 "bootstrap/js/bootstrap.min.js")
764 ("shiny.js" .
765 "shiny.min.js")
766 ("jquery.js" .
767 "jquery.min.js")))))
768 #t)))))
769 (propagated-inputs
770 `(("r-crayon" ,r-crayon)
771 ("r-httpuv" ,r-httpuv)
772 ("r-mime" ,r-mime)
773 ("r-jsonlite" ,r-jsonlite)
774 ("r-xtable" ,r-xtable)
775 ("r-digest" ,r-digest)
776 ("r-htmltools" ,r-htmltools)
777 ("r-r6" ,r-r6)
778 ("r-sourcetools" ,r-sourcetools)))
779 (inputs
780 `(("js-datatables" ,js-datatables)
781 ("js-html5shiv" ,js-html5shiv)
782 ("js-json2" ,js-json2)
783 ("js-respond" ,js-respond)
784 ("js-selectize" ,js-selectize)
785 ("js-strftime" ,js-strftime)
786 ("js-highlight" ,js-highlight)
787 ("js-es5-shim" ,js-es5-shim)))
788 (native-inputs
789 `(("uglify-js" ,uglify-js)))
790 (home-page "http://shiny.rstudio.com")
791 (synopsis "Easy interactive web applications with R")
792 (description
793 "Makes it incredibly easy to build interactive web applications
794 with R. Automatic \"reactive\" binding between inputs and outputs and
795 extensive prebuilt widgets make it possible to build beautiful,
796 responsive, and powerful applications with minimal effort.")
797 (license license:artistic2.0)))
798
799 (define-public r-shinydashboard
800 (package
801 (name "r-shinydashboard")
802 (version "0.7.1")
803 (source (origin
804 (method url-fetch)
805 (uri (cran-uri "shinydashboard" version))
806 (sha256
807 (base32
808 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
809 (build-system r-build-system)
810 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
811 ;; Regenerate it from the included sources.
812 (arguments
813 `(#:modules ((guix build utils)
814 (guix build r-build-system)
815 (ice-9 popen))
816 #:phases
817 (modify-phases %standard-phases
818 (add-after 'unpack 'generate-minified-javascript
819 (lambda _
820 (with-directory-excursion "inst/AdminLTE"
821 (delete-file "app.min.js")
822 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
823 (call-with-output-file "app.min.js"
824 (lambda (port)
825 (dump-port minified port))))))))))
826 (propagated-inputs
827 `(("r-htmltools" ,r-htmltools)
828 ("r-promises" ,r-promises)
829 ("r-shiny" ,r-shiny)))
830 (native-inputs
831 `(("uglify-js" ,uglify-js)))
832 (home-page "http://rstudio.github.io/shinydashboard/")
833 (synopsis "Create dashboards with shiny")
834 (description "This package provides an extension to the Shiny web
835 application framework for R, making it easy to create attractive dashboards.")
836 ;; This package includes software that was released under the Expat
837 ;; license, but the whole package is released under GPL version 2 or
838 ;; later.
839 (license license:gpl2+)))
840
841 (define-public r-shinyfiles
842 (package
843 (name "r-shinyfiles")
844 (version "0.7.3")
845 (source
846 (origin
847 (method url-fetch)
848 (uri (cran-uri "shinyFiles" version))
849 (sha256
850 (base32
851 "01as3l9ffj5dwac0vviais2x5l3027zxlj67kcvkdwxaj5hql33i"))))
852 (properties `((upstream-name . "shinyFiles")))
853 (build-system r-build-system)
854 (propagated-inputs
855 `(("r-fs" ,r-fs)
856 ("r-htmltools" ,r-htmltools)
857 ("r-jsonlite" ,r-jsonlite)
858 ("r-shiny" ,r-shiny)
859 ("r-tibble" ,r-tibble)))
860 (home-page "https://github.com/thomasp85/shinyFiles")
861 (synopsis "Server-side file system viewer for Shiny")
862 (description
863 "This package provides functionality for client-side navigation of the
864 server side file system in shiny apps. In case the app is running locally
865 this gives the user direct access to the file system without the need to
866 \"download\" files to a temporary location. Both file and folder selection as
867 well as file saving is available.")
868 (license license:gpl2+)))
869
870 ;; The package sources include minified variants of d3.js and non-minified
871 ;; source code of d3-jetpack.
872 (define-public r-d3r
873 (package
874 (name "r-d3r")
875 (version "0.8.6")
876 (source
877 (origin
878 (method url-fetch)
879 (uri (cran-uri "d3r" version))
880 (sha256
881 (base32
882 "0vcmiyhd000xyl28k6rm7ba50x5sz5b2cpllxnq36q13qhdnqw6k"))))
883 (build-system r-build-system)
884 (arguments
885 `(#:modules ((guix build utils)
886 (guix build r-build-system)
887 (srfi srfi-1)
888 (ice-9 popen))
889 #:phases
890 (modify-phases %standard-phases
891 (add-after 'unpack 'process-javascript
892 (lambda* (#:key inputs #:allow-other-keys)
893 (with-directory-excursion "inst/www/d3/"
894 (call-with-values
895 (lambda ()
896 (unzip2
897 `((,(assoc-ref inputs "d3.v3.js")
898 "v3/dist/d3.min.js")
899 (,(assoc-ref inputs "d3.v4.js")
900 "v4/dist/d3.min.js")
901 (,(assoc-ref inputs "d3.v5.js")
902 "v5/dist/d3.min.js"))))
903 (lambda (sources targets)
904 (for-each (lambda (source target)
905 (format #t "Processing ~a --> ~a~%"
906 source target)
907 (delete-file target)
908 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
909 (call-with-output-file target
910 (lambda (port)
911 (dump-port minified port)))))
912 sources targets))))
913 #t)))))
914 (propagated-inputs
915 `(("r-dplyr" ,r-dplyr)
916 ("r-htmltools" ,r-htmltools)
917 ("r-tidyr" ,r-tidyr)))
918 (native-inputs
919 `(("uglify-js" ,uglify-js)
920 ("d3.v3.js"
921 ,(origin
922 (method url-fetch)
923 (uri "https://d3js.org/d3.v3.js")
924 (sha256
925 (base32
926 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
927 ("d3.v4.js"
928 ,(origin
929 (method url-fetch)
930 (uri "https://d3js.org/d3.v4.js")
931 (sha256
932 (base32
933 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
934 ("d3.v5.js"
935 ,(origin
936 (method url-fetch)
937 (uri "https://d3js.org/d3.v5.js")
938 (sha256
939 (base32
940 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
941 (home-page "https://github.com/timelyportfolio/d3r")
942 (synopsis "d3.js utilities for R")
943 (description
944 "This package provides a suite of functions to help ease the use of the
945 d3.js visualization library in R. These helpers include
946 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
947 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
948 R objects into the JSON format that the d3.js library expects.")
949 (license license:bsd-3)))
950
951 ;; We use the latest commit here because the last release was in 2016 while
952 ;; the latest commit was in 2018.
953 (define-public r-sankeyd3
954 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
955 (revision "1"))
956 (package
957 (name "r-sankeyd3")
958 (version (git-version "0.3.2" revision commit))
959 (source
960 (origin
961 (method git-fetch)
962 (uri (git-reference
963 (url "https://github.com/fbreitwieser/sankeyD3.git")
964 (commit commit)))
965 (file-name (git-file-name name version))
966 (sha256
967 (base32
968 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
969 (build-system r-build-system)
970 (propagated-inputs
971 `(("r-d3r" ,r-d3r)
972 ("r-htmlwidgets" ,r-htmlwidgets)
973 ("r-shiny" ,r-shiny)
974 ("r-magrittr" ,r-magrittr)))
975 (home-page "https://github.com/fbreitwieser/sankeyD3")
976 (synopsis "Sankey network graphs from R")
977 (description
978 "This package provides an R library to generate Sankey network graphs
979 in R and Shiny via the D3 visualization library.")
980 ;; The R code is licensed under GPLv3+. It includes the non-minified
981 ;; JavaScript source code of d3-sankey, which is released under the
982 ;; 3-clause BSD license.
983 (license (list license:gpl3+ license:bsd-3)))))
984
985 (define-public r-crosstalk
986 (package
987 (name "r-crosstalk")
988 (version "1.0.0")
989 (source
990 (origin
991 (method url-fetch)
992 (uri (cran-uri "crosstalk" version))
993 (sha256
994 (base32
995 "0lfa89vhrzi7a1rghmygcjr8gzddw35sinb3jx6g49mc9jias7mk"))))
996 (build-system r-build-system)
997 (propagated-inputs
998 `(("r-ggplot2" ,r-ggplot2)
999 ("r-htmltools" ,r-htmltools)
1000 ("r-jsonlite" ,r-jsonlite)
1001 ("r-lazyeval" ,r-lazyeval)
1002 ("r-r6" ,r-r6)
1003 ("r-shiny" ,r-shiny)))
1004 (home-page "https://rstudio.github.io/crosstalk/")
1005 (synopsis "Inter-widget interactivity for HTML widgets")
1006 (description
1007 "This package provides building blocks for allowing HTML widgets to
1008 communicate with each other, with Shiny or without (i.e. static @code{.html}
1009 files). It currently supports linked brushing and filtering.")
1010 (license license:expat)))
1011
1012 (define-public r-rook
1013 (package
1014 (name "r-rook")
1015 (version "1.1-1")
1016 (source
1017 (origin
1018 (method url-fetch)
1019 (uri (cran-uri "Rook" version))
1020 (sha256
1021 (base32
1022 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1023 (properties `((upstream-name . "Rook")))
1024 (build-system r-build-system)
1025 (propagated-inputs `(("r-brew" ,r-brew)))
1026 (home-page "https://cran.r-project.org/web/packages/Rook")
1027 (synopsis "Web server interface for R")
1028 (description
1029 "This package contains the Rook specification and convenience software
1030 for building and running Rook applications. A Rook application is an R
1031 reference class object that implements a @code{call} method or an R closure
1032 that takes exactly one argument, an environment, and returns a list with three
1033 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1034 (license license:gpl2)))
1035
1036 (define-public r-miniui
1037 (package
1038 (name "r-miniui")
1039 (version "0.1.1.1")
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (cran-uri "miniUI" version))
1044 (sha256
1045 (base32
1046 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1047 (properties `((upstream-name . "miniUI")))
1048 (build-system r-build-system)
1049 (propagated-inputs
1050 `(("r-htmltools" ,r-htmltools)
1051 ("r-shiny" ,r-shiny)))
1052 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1053 (synopsis "Shiny UI widgets for small screens")
1054 (description
1055 "This package provides UI widget and layout functions for writing Shiny apps that
1056 work well on small screens.")
1057 (license license:gpl3)))
1058
1059 (define-public r-feather
1060 (package
1061 (name "r-feather")
1062 (version "0.3.3")
1063 (source
1064 (origin
1065 (method url-fetch)
1066 (uri (cran-uri "feather" version))
1067 (sha256
1068 (base32
1069 "0ls8lmygyjq60467s88h66d7fczjp1d3a2106rfq4dx9lyfvdfsa"))))
1070 (build-system r-build-system)
1071 (propagated-inputs
1072 `(("r-hms" ,r-hms)
1073 ("r-rcpp" ,r-rcpp)
1074 ("r-tibble" ,r-tibble)))
1075 (home-page "https://github.com/wesm/feather")
1076 (synopsis "R Bindings to the Feather API")
1077 (description "Read and write feather files, a lightweight binary columnar
1078 data store designed for maximum speed.")
1079 (license license:asl2.0)))
1080
1081 (define-public r-maps
1082 (package
1083 (name "r-maps")
1084 (version "3.3.0")
1085 (source
1086 (origin
1087 (method url-fetch)
1088 (uri (cran-uri "maps" version))
1089 (sha256
1090 (base32
1091 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1092 (build-system r-build-system)
1093 (home-page "https://cran.r-project.org/web/packages/maps")
1094 (synopsis "Draw geographical maps")
1095 (description "This package provides an R module for display of maps.
1096 Projection code and larger maps are in separate packages (@code{mapproj} and
1097 @code{mapdata}).")
1098 (license license:gpl2)))
1099
1100 (define-public r-mapproj
1101 (package
1102 (name "r-mapproj")
1103 (version "1.2.6")
1104 (source
1105 (origin
1106 (method url-fetch)
1107 (uri (cran-uri "mapproj" version))
1108 (sha256
1109 (base32
1110 "1rggww8cbwv0vzlj5afzhbsbngg4bzj5znbkz7wmxsbshfbsm9b2"))))
1111 (build-system r-build-system)
1112 (propagated-inputs `(("r-maps" ,r-maps)))
1113 (home-page "https://cran.r-project.org/web/packages/mapproj")
1114 (synopsis "Map projection in R")
1115 (description "This package converts latitude/longitude into projected
1116 coordinates.")
1117 (license (list license:gpl2 ; The R interface
1118 (license:non-copyleft ; The C code
1119 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1120 "Lucent Public License Version 1.02")))))
1121
1122 (define-public r-rgooglemaps
1123 (package
1124 (name "r-rgooglemaps")
1125 (version "1.4.3")
1126 (source
1127 (origin
1128 (method url-fetch)
1129 (uri (cran-uri "RgoogleMaps" version))
1130 (sha256
1131 (base32
1132 "06ab3lg1rwm93hkshf1vxfm8mlxq5qsjan0wx43lhnrysay65js4"))))
1133 (properties `((upstream-name . "RgoogleMaps")))
1134 (build-system r-build-system)
1135 (propagated-inputs `(("r-png" ,r-png)))
1136 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1137 (synopsis "Use Google Maps in R")
1138 (description "This package serves two purposes:
1139 @enumerate
1140 @item Provide a comfortable R interface to query the Google server for static
1141 maps, and
1142 @item Use the map as a background image to overlay plots within R. This
1143 requires proper coordinate scaling.
1144 @end enumerate\n")
1145 (license license:gpl2+)))
1146
1147 (define-public r-geosphere
1148 (package
1149 (name "r-geosphere")
1150 (version "1.5-10")
1151 (source
1152 (origin
1153 (method url-fetch)
1154 (uri (cran-uri "geosphere" version))
1155 (sha256
1156 (base32
1157 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1158 (build-system r-build-system)
1159 (propagated-inputs `(("r-sp" ,r-sp)))
1160 (home-page "https://cran.r-project.org/web/packages/geosphere")
1161 (synopsis "Spherical trigonometry")
1162 (description "This package computes spherical trigonometry for geographic
1163 applications. That is, compute distances and related measures for angular
1164 (longitude/latitude) locations.")
1165 (license license:gpl3+)))
1166
1167 (define-public r-ggmap
1168 (package
1169 (name "r-ggmap")
1170 (version "3.0.0")
1171 (source
1172 (origin
1173 (method url-fetch)
1174 (uri (cran-uri "ggmap" version))
1175 (sha256
1176 (base32
1177 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1178 (build-system r-build-system)
1179 (propagated-inputs
1180 `(("r-bitops" ,r-bitops)
1181 ("r-digest" ,r-digest)
1182 ("r-dplyr" ,r-dplyr)
1183 ("r-ggplot2" ,r-ggplot2)
1184 ("r-glue" ,r-glue)
1185 ("r-httr" ,r-httr)
1186 ("r-jpeg" ,r-jpeg)
1187 ("r-magrittr" ,r-magrittr)
1188 ("r-plyr" ,r-plyr)
1189 ("r-png" ,r-png)
1190 ("r-purrr" ,r-purrr)
1191 ("r-rgooglemaps" ,r-rgooglemaps)
1192 ("r-rjson" ,r-rjson)
1193 ("r-scales" ,r-scales)
1194 ("r-stringr" ,r-stringr)
1195 ("r-tibble" ,r-tibble)
1196 ("r-tidyr" ,r-tidyr)))
1197 (home-page "https://github.com/dkahle/ggmap")
1198 (synopsis "Spatial visualization with ggplot2")
1199 (description "This package provides a collection of functions to visualize
1200 spatial data and models on top of static maps from various online sources (e.g
1201 Google Maps and Stamen Maps). It includes tools common to those tasks,
1202 including functions for geolocation and routing.")
1203 (license license:gpl2)))
1204
1205 (define-public r-haven
1206 (package
1207 (name "r-haven")
1208 (version "2.1.0")
1209 (source
1210 (origin
1211 (method url-fetch)
1212 (uri (cran-uri "haven" version))
1213 (sha256
1214 (base32
1215 "0x5fwc4q2gdxwwp5sxdd6q17jhpisd769y9kv0xgnjcm0cdwz8f0"))))
1216 (build-system r-build-system)
1217 (inputs
1218 `(("zlib" ,zlib)))
1219 (propagated-inputs
1220 `(("r-forcats" ,r-forcats)
1221 ("r-hms" ,r-hms)
1222 ("r-rcpp" ,r-rcpp)
1223 ("r-readr" ,r-readr)
1224 ("r-tibble" ,r-tibble)))
1225 (home-page "https://haven.tidyverse.org")
1226 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1227 (description
1228 "This package lets you mport foreign statistical formats into R via the
1229 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1230 (license license:expat)))
1231
1232 (define-public r-amap
1233 (package
1234 (name "r-amap")
1235 (version "0.8-17")
1236 (source (origin
1237 (method url-fetch)
1238 (uri (cran-uri "amap" version))
1239 (sha256
1240 (base32
1241 "1il94bkhl8192vawq4gr2gwyhqhid27jr2312rhvr72ssg8p713b"))))
1242 (build-system r-build-system)
1243 (native-inputs
1244 `(("gfortran" ,gfortran)))
1245 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1246 (synopsis "Another multidimensional analysis package")
1247 (description "This package provides tools for clustering and principal
1248 component analysis (with robust methods, and parallelized functions).")
1249 (license license:gpl2+)))
1250
1251 (define-public r-ape
1252 (package
1253 (name "r-ape")
1254 (version "5.3")
1255 (source
1256 (origin
1257 (method url-fetch)
1258 (uri (cran-uri "ape" version))
1259 (sha256
1260 (base32
1261 "08wbk1kxhs32bmmvqlqanbdg1w235amd35k8m00fngsj9h9xzc08"))))
1262 (build-system r-build-system)
1263 (propagated-inputs
1264 `(("r-lattice" ,r-lattice)
1265 ("r-nlme" ,r-nlme)
1266 ("r-rcpp" ,r-rcpp)))
1267 (home-page "http://ape-package.ird.fr/")
1268 (synopsis "Analyses of phylogenetics and evolution")
1269 (description
1270 "This package provides functions for reading, writing, plotting, and
1271 manipulating phylogenetic trees, analyses of comparative data in a
1272 phylogenetic framework, ancestral character analyses, analyses of
1273 diversification and macroevolution, computing distances from DNA sequences,
1274 and several other tools.")
1275 (license license:gpl2+)))
1276
1277 (define-public r-abbyyr
1278 (package
1279 (name "r-abbyyr")
1280 (version "0.5.5")
1281 (source
1282 (origin
1283 (method url-fetch)
1284 (uri (cran-uri "abbyyR" version))
1285 (sha256
1286 (base32
1287 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1288 (properties `((upstream-name . "abbyyR")))
1289 (build-system r-build-system)
1290 (propagated-inputs
1291 `(("r-curl" ,r-curl)
1292 ("r-httr" ,r-httr)
1293 ("r-plyr" ,r-plyr)
1294 ("r-progress" ,r-progress)
1295 ("r-readr" ,r-readr)
1296 ("r-xml" ,r-xml)))
1297 (home-page "https://github.com/soodoku/abbyyR")
1298 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1299 (description
1300 "This package provides tools to get text from images of text using Abbyy
1301 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1302 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1303 passports and get the results in a variety of formats including plain text and
1304 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1305 (license license:expat)))
1306
1307 (define-public r-colorspace
1308 (package
1309 (name "r-colorspace")
1310 (version "1.4-1")
1311 (source
1312 (origin
1313 (method url-fetch)
1314 (uri (cran-uri "colorspace" version))
1315 (sha256
1316 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1317 (build-system r-build-system)
1318 (home-page "https://cran.r-project.org/web/packages/colorspace")
1319 (synopsis "Color space manipulation")
1320 (description
1321 "This package carries out a mapping between assorted color spaces
1322 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1323 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1324 colors are provided.")
1325 (license license:bsd-3)))
1326
1327 (define-public r-glue
1328 (package
1329 (name "r-glue")
1330 (version "1.3.1")
1331 (source
1332 (origin
1333 (method url-fetch)
1334 (uri (cran-uri "glue" version))
1335 (sha256
1336 (base32
1337 "1a1ycg9r3gd91visp49q49rsrdgyf8kr9dxdy3hk99kikn4z5hag"))))
1338 (build-system r-build-system)
1339 (home-page "https://github.com/tidyverse/glue")
1340 (synopsis "Interpreted string literals")
1341 (description
1342 "This package provides an implementation of interpreted string literals,
1343 inspired by Python's Literal String Interpolation (PEP-0498) and
1344 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1345 (license license:expat)))
1346
1347 (define-public r-pastecs
1348 (package
1349 (name "r-pastecs")
1350 (version "1.3.21")
1351 (source (origin
1352 (method url-fetch)
1353 (uri (cran-uri "pastecs" version))
1354 (sha256
1355 (base32
1356 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1357 (build-system r-build-system)
1358 (propagated-inputs
1359 `(("r-boot" ,r-boot)))
1360 (home-page "http://www.sciviews.org/pastecs")
1361 (synopsis "Analysis of space-time ecological series")
1362 (description
1363 "This package provides functions for regulation, decomposition and analysis
1364 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1365 initiative to bring PASSTEC 2000 functionalities to R.")
1366 (license license:gpl2+)))
1367
1368 (define-public r-plogr
1369 (package
1370 (name "r-plogr")
1371 (version "0.2.0")
1372 (source
1373 (origin
1374 (method url-fetch)
1375 (uri (cran-uri "plogr" version))
1376 (sha256
1377 (base32
1378 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1379 (build-system r-build-system)
1380 (home-page "https://github.com/krlmlr/plogr")
1381 (synopsis "R bindings for the plog C++ logging library")
1382 (description
1383 "This package provides the header files for a stripped-down version of
1384 the plog header-only C++ logging library, and a method to log to R's standard
1385 error stream.")
1386 (license license:expat)))
1387
1388 (define-public r-pls
1389 (package
1390 (name "r-pls")
1391 (version "2.7-1")
1392 (source
1393 (origin
1394 (method url-fetch)
1395 (uri (cran-uri "pls" version))
1396 (sha256
1397 (base32
1398 "0jw3zl5z06023zxr74phnvwax8m3i4a4i6lsqiq6j15aq9zq3zgq"))))
1399 (build-system r-build-system)
1400 (home-page "http://mevik.net/work/software/pls.html")
1401 (synopsis "Partial Least Squares and Principal Component Regression")
1402 (description
1403 "The pls package implements multivariate regression methods: Partial Least
1404 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1405 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1406
1407 @itemize
1408 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1409 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1410 @item multi-response models (or @dfn{PLS2})
1411 @item flexible cross-validation
1412 @item Jackknife variance estimates of regression coefficients
1413 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1414 (R)MSEP, R², and correlation loadings
1415 @item formula interface, modelled after @code{lm()}, with methods for predict,
1416 print, summary, plot, update, etc.
1417 @item extraction functions for coefficients, scores, and loadings
1418 @item MSEP, RMSEP, and R² estimates
1419 @item multiplicative scatter correction (@dfn{MSC})
1420 @end itemize\n")
1421 (license license:gpl2)))
1422
1423 (define-public r-ps
1424 (package
1425 (name "r-ps")
1426 (version "1.3.0")
1427 (source
1428 (origin
1429 (method url-fetch)
1430 (uri (cran-uri "ps" version))
1431 (sha256
1432 (base32 "1lcq7r0q4jb8x6k023zr2ydj2dg925bqqbkhx1phpnyjrk897498"))))
1433 (build-system r-build-system)
1434 (home-page "http://ps.r-lib.org")
1435 (synopsis "List, query, and manipulate system processes")
1436 (description
1437 "The ps package implements an API to list, query, and manipulate system
1438 processes. Most of its code is based on the @code{psutil} Python package.")
1439 (license license:bsd-3)))
1440
1441 (define-public r-pkgbuild
1442 (package
1443 (name "r-pkgbuild")
1444 (version "1.0.3")
1445 (source
1446 (origin
1447 (method url-fetch)
1448 (uri (cran-uri "pkgbuild" version))
1449 (sha256
1450 (base32
1451 "0k8zwa66rm1ncx19ld5mbaxcjxkswiczpdqyssy44vl8k6scwfn9"))))
1452 (build-system r-build-system)
1453 (propagated-inputs
1454 `(("r-callr" ,r-callr)
1455 ("r-cli" ,r-cli)
1456 ("r-crayon" ,r-crayon)
1457 ("r-desc" ,r-desc)
1458 ("r-prettyunits" ,r-prettyunits)
1459 ("r-r6" ,r-r6)
1460 ("r-rprojroot" ,r-rprojroot)
1461 ("r-withr" ,r-withr)))
1462 (home-page "https://github.com/r-pkgs/pkgbuild")
1463 (synopsis "Find tools needed to build R packages")
1464 (description
1465 "This package provides functions used to build R packages. It locates
1466 compilers needed to build R packages on various platforms and ensures the PATH
1467 is configured appropriately so R can use them.")
1468 (license license:gpl3)))
1469
1470 (define-public r-pkgload
1471 (package
1472 (name "r-pkgload")
1473 (version "1.0.2")
1474 (source
1475 (origin
1476 (method url-fetch)
1477 (uri (cran-uri "pkgload" version))
1478 (sha256
1479 (base32
1480 "0z7jvharafahi2gv5547mk1n499isjzw06kfwymmxc0gd575d1ii"))))
1481 (build-system r-build-system)
1482 (propagated-inputs
1483 `(("r-desc" ,r-desc)
1484 ("r-pkgbuild" ,r-pkgbuild)
1485 ("r-rlang" ,r-rlang)
1486 ("r-rprojroot" ,r-rprojroot)
1487 ("r-rstudioapi" ,r-rstudioapi)
1488 ("r-withr" ,r-withr)))
1489 (home-page "https://github.com/r-lib/pkgload")
1490 (synopsis "Simulate package installation and attach")
1491 (description
1492 "This package simulates the process of installing a package and then
1493 attaching it. This is a key part of the @code{devtools} package as it allows
1494 you to rapidly iterate while developing a package.")
1495 (license license:gpl3)))
1496
1497 (define-public r-rcpp
1498 (package
1499 (name "r-rcpp")
1500 (version "1.0.1")
1501 (source
1502 (origin
1503 (method url-fetch)
1504 (uri (cran-uri "Rcpp" version))
1505 (sha256
1506 (base32 "015rmxns8mhmnd9wnz9bmma4iwx2sf4bcwkkp9hcgvdmblzf0vg7"))))
1507 (build-system r-build-system)
1508 (native-inputs
1509 `(("r-knitr" ,r-knitr))) ; for vignettes
1510 (home-page "http://www.rcpp.org")
1511 (synopsis "Seamless R and C++ integration")
1512 (description
1513 "The Rcpp package provides R functions as well as C++ classes which offer
1514 a seamless integration of R and C++. Many R data types and objects can be
1515 mapped back and forth to C++ equivalents which facilitates both writing of new
1516 code as well as easier integration of third-party libraries. Documentation
1517 about Rcpp is provided by several vignettes included in this package, via the
1518 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
1519 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
1520 @code{citation(\"Rcpp\")} for details on these last two.")
1521 (license license:gpl2+)))
1522
1523 (define-public r-bindr
1524 (package
1525 (name "r-bindr")
1526 (version "0.1.1")
1527 (source
1528 (origin
1529 (method url-fetch)
1530 (uri (cran-uri "bindr" version))
1531 (sha256
1532 (base32
1533 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
1534 (build-system r-build-system)
1535 (home-page "https://github.com/krlmlr/bindr")
1536 (synopsis "Parametrized active bindings")
1537 (description
1538 "This package provides a simple interface for creating active bindings
1539 where the bound function accepts additional arguments.")
1540 (license license:expat)))
1541
1542 (define-public r-bindrcpp
1543 (package
1544 (name "r-bindrcpp")
1545 (version "0.2.2")
1546 (source
1547 (origin
1548 (method url-fetch)
1549 (uri (cran-uri "bindrcpp" version))
1550 (sha256
1551 (base32
1552 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
1553 (build-system r-build-system)
1554 (propagated-inputs
1555 `(("r-bindr" ,r-bindr)
1556 ("r-plogr" ,r-plogr)
1557 ("r-rcpp" ,r-rcpp)))
1558 (home-page "https://github.com/krlmlr/bindrcpp")
1559 (synopsis "Rcpp interface to active bindings")
1560 (description
1561 "This package provides an easy way to fill an environment with active
1562 bindings that call a C++ function.")
1563 (license license:expat)))
1564
1565 (define-public r-auc
1566 (package
1567 (name "r-auc")
1568 (version "0.3.0")
1569 (source
1570 (origin
1571 (method url-fetch)
1572 (uri (cran-uri "AUC" version))
1573 (sha256
1574 (base32
1575 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
1576 (properties `((upstream-name . "AUC")))
1577 (build-system r-build-system)
1578 (home-page "https://cran.r-project.org/web/packages/AUC")
1579 (synopsis "Compute the area under the curve of selected measures")
1580 (description
1581 "This package includes functions to compute the area under the curve of
1582 selected measures: the area under the sensitivity curve (AUSEC), the area
1583 under the specificity curve (AUSPC), the area under the accuracy
1584 curve (AUACC), and the area under the receiver operating characteristic
1585 curve (AUROC). The curves can also be visualized. Support for partial areas
1586 is provided.")
1587 (license license:gpl2+)))
1588
1589 (define-public r-calibrate
1590 (package
1591 (name "r-calibrate")
1592 (version "1.7.2")
1593 (source
1594 (origin
1595 (method url-fetch)
1596 (uri (cran-uri "calibrate" version))
1597 (sha256
1598 (base32
1599 "010nb1nb9y7zhw2k6d2i2drwy5brp7b83mjj2w7i3wjp9xb6l1kq"))))
1600 (build-system r-build-system)
1601 (propagated-inputs
1602 `(("r-mass" ,r-mass)))
1603 (home-page "https://cran.r-project.org/web/packages/calibrate")
1604 (synopsis "Calibration of scatterplot and biplot axes")
1605 (description
1606 "This is a package for drawing calibrated scales with tick marks
1607 on (non-orthogonal) variable vectors in scatterplots and biplots.")
1608 (license license:gpl2)))
1609
1610 (define-public r-shape
1611 (package
1612 (name "r-shape")
1613 (version "1.4.4")
1614 (source
1615 (origin
1616 (method url-fetch)
1617 (uri (cran-uri "shape" version))
1618 (sha256
1619 (base32
1620 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
1621 (build-system r-build-system)
1622 (home-page "https://cran.r-project.org/web/packages/shape")
1623 (synopsis "Functions for plotting graphical shapes")
1624 (description
1625 "This package provides functions for plotting graphical shapes such as
1626 ellipses, circles, cylinders, arrows, ...")
1627 (license license:gpl3+)))
1628
1629 (define-public r-globaloptions
1630 (package
1631 (name "r-globaloptions")
1632 (version "0.1.0")
1633 (source
1634 (origin
1635 (method url-fetch)
1636 (uri (cran-uri "GlobalOptions" version))
1637 (sha256
1638 (base32
1639 "1wlyqz1yhmhjwslrd7q69jbd9vsbjkjfc01g60kl3cdpyr8hlyjn"))))
1640 (properties `((upstream-name . "GlobalOptions")))
1641 (build-system r-build-system)
1642 (home-page "https://github.com/jokergoo/GlobalOptions")
1643 (synopsis "Generate functions to get or set global options")
1644 (description
1645 "This package provides more controls on the option values such as
1646 validation and filtering on the values, making options invisible or private.")
1647 (license license:gpl2+)))
1648
1649 (define-public r-circlize
1650 (package
1651 (name "r-circlize")
1652 (version "0.4.6")
1653 (source
1654 (origin
1655 (method url-fetch)
1656 (uri (cran-uri "circlize" version))
1657 (sha256
1658 (base32
1659 "1yjnb88pnzk5c1p0vjxykc7cr3394ln5axviqcf12ajibvy8rj6f"))))
1660 (build-system r-build-system)
1661 (propagated-inputs
1662 `(("r-colorspace" ,r-colorspace)
1663 ("r-globaloptions" ,r-globaloptions)
1664 ("r-shape" ,r-shape)))
1665 (home-page "https://github.com/jokergoo/circlize")
1666 (synopsis "Circular visualization")
1667 (description
1668 "Circular layout is an efficient way to visualise huge amounts of
1669 information. This package provides an implementation of circular layout
1670 generation in R as well as an enhancement of available software. Its
1671 flexibility is based on the usage of low-level graphics functions such that
1672 self-defined high-level graphics can be easily implemented by users for
1673 specific purposes. Together with the seamless connection between the powerful
1674 computational and visual environment in R, it gives users more convenience and
1675 freedom to design figures for better understanding complex patterns behind
1676 multi-dimensional data.")
1677 (license license:gpl2+)))
1678
1679 (define-public r-powerlaw
1680 (package
1681 (name "r-powerlaw")
1682 (version "0.70.2")
1683 (source
1684 (origin
1685 (method url-fetch)
1686 (uri (cran-uri "poweRlaw" version))
1687 (sha256
1688 (base32
1689 "1asr6ikr7hmj78jyg8r1gwvcjg14addkxdiz92nh06lv71a183r4"))))
1690 (properties `((upstream-name . "poweRlaw")))
1691 (build-system r-build-system)
1692 (propagated-inputs
1693 `(("r-vgam" ,r-vgam)))
1694 (home-page "https://github.com/csgillespie/poweRlaw")
1695 (synopsis "Tools for the analysis of heavy tailed distributions")
1696 (description
1697 "This package provides an implementation of maximum likelihood estimators
1698 for a variety of heavy tailed distributions, including both the discrete and
1699 continuous power law distributions. Additionally, a goodness-of-fit based
1700 approach is used to estimate the lower cut-off for the scaling region.")
1701 ;; Any of these GPL versions.
1702 (license (list license:gpl2 license:gpl3))))
1703
1704 (define-public r-compare
1705 (package
1706 (name "r-compare")
1707 (version "0.2-6")
1708 (source
1709 (origin
1710 (method url-fetch)
1711 (uri (cran-uri "compare" version))
1712 (sha256
1713 (base32
1714 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
1715 (build-system r-build-system)
1716 (home-page "https://cran.r-project.org/web/packages/compare")
1717 (synopsis "Comparing objects for differences")
1718 (description
1719 "This package provides functions to compare a model object to a
1720 comparison object. If the objects are not identical, the functions can be
1721 instructed to explore various modifications of the objects (e.g., sorting
1722 rows, dropping names) to see if the modified versions are identical.")
1723 (license license:gpl2+)))
1724
1725 (define-public r-dendextend
1726 (package
1727 (name "r-dendextend")
1728 (version "1.12.0")
1729 (source
1730 (origin
1731 (method url-fetch)
1732 (uri (cran-uri "dendextend" version))
1733 (sha256
1734 (base32
1735 "0mgsc9qkr5p6hss3wychdjvk263ay48yx543wawj72l7q7cgx1xl"))))
1736 (build-system r-build-system)
1737 (propagated-inputs
1738 `(("r-ggplot2" ,r-ggplot2)
1739 ("r-magrittr" ,r-magrittr)
1740 ("r-viridis" ,r-viridis)))
1741 (home-page "https://cran.r-project.org/web/packages/dendextend")
1742 (synopsis "Extending 'dendrogram' functionality in R")
1743 (description
1744 "This package offers a set of functions for extending @code{dendrogram}
1745 objects in R, letting you visualize and compare trees of hierarchical
1746 clusterings. You can adjust a tree's graphical parameters (the color, size,
1747 type, etc of its branches, nodes and labels) and visually and statistically
1748 compare different dendrograms to one another.")
1749 ;; Any of these versions
1750 (license (list license:gpl2 license:gpl3))))
1751
1752 (define-public r-getoptlong
1753 (package
1754 (name "r-getoptlong")
1755 (version "0.1.7")
1756 (source
1757 (origin
1758 (method url-fetch)
1759 (uri (cran-uri "GetoptLong" version))
1760 (sha256
1761 (base32
1762 "1fl3w2n602ldybc5qj7qw4xmzzb804bsjkqwf6dswzj0vf0qiadr"))))
1763 (properties `((upstream-name . "GetoptLong")))
1764 (build-system r-build-system)
1765 (inputs
1766 `(("perl" ,perl)))
1767 (propagated-inputs
1768 `(("r-globaloptions" ,r-globaloptions)
1769 ("r-rjson" ,r-rjson)))
1770 (home-page "https://github.com/jokergoo/GetoptLong")
1771 (synopsis "Parsing command-line arguments and variable interpolation")
1772 (description
1773 "This is yet another command-line argument parser which wraps the
1774 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
1775 use in R. It also provides a simple way for variable interpolation in R.")
1776 (license license:gpl2+)))
1777
1778 (define-public r-fastmatch
1779 (package
1780 (name "r-fastmatch")
1781 (version "1.1-0")
1782 (source
1783 (origin
1784 (method url-fetch)
1785 (uri (cran-uri "fastmatch" version))
1786 (sha256
1787 (base32
1788 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
1789 (build-system r-build-system)
1790 (home-page "http://www.rforge.net/fastmatch")
1791 (synopsis "Fast match function")
1792 (description
1793 "This package provides a fast @code{match} replacement for cases that
1794 require repeated look-ups. It is slightly faster that R's built-in
1795 @code{match} function on first match against a table, but extremely fast on
1796 any subsequent lookup as it keeps the hash table in memory.")
1797 (license license:gpl2)))
1798
1799 (define-public r-ff
1800 (package
1801 (name "r-ff")
1802 (version "2.2-14")
1803 (source
1804 (origin
1805 (method url-fetch)
1806 (uri (cran-uri "ff" version))
1807 (sha256
1808 (base32
1809 "1w724q4jpzbvzpilb2ifviaxkjgk9lzwxz9gksnvicbmfa20fqqw"))))
1810 (build-system r-build-system)
1811 (propagated-inputs `(("r-bit" ,r-bit)))
1812 (home-page "http://ff.r-forge.r-project.org/")
1813 (synopsis "Memory-efficient storage of large data on disk and access functions")
1814 (description
1815 "This package provides data structures that are stored on disk but
1816 behave (almost) as if they were in RAM by transparently mapping only a section
1817 in main memory.")
1818 ;; error Architecture not supported.
1819 (supported-systems (delete "aarch64-linux" %supported-systems))
1820 (license license:gpl2)))
1821
1822 (define-public r-ffbase
1823 (package
1824 (name "r-ffbase")
1825 (version "0.12.7")
1826 (source
1827 (origin
1828 (method url-fetch)
1829 (uri (cran-uri "ffbase" version))
1830 (sha256
1831 (base32
1832 "04kxx2f3f0743c5nvpb7x1x0pcd220dazpd5ag1pidxbz3xa85nw"))))
1833 (build-system r-build-system)
1834 (propagated-inputs
1835 `(("r-bit" ,r-bit)
1836 ("r-fastmatch" ,r-fastmatch)
1837 ("r-ff" ,r-ff)))
1838 (home-page "http://github.com/edwindj/ffbase")
1839 (synopsis "Basic statistical functions for package 'ff'")
1840 (description
1841 "This package extends the out of memory vectors of @code{ff} with
1842 statistical functions and other utilities to ease their usage.")
1843 (license license:gpl3)))
1844
1845 (define-public r-prettyunits
1846 (package
1847 (name "r-prettyunits")
1848 (version "1.0.2")
1849 (source
1850 (origin
1851 (method url-fetch)
1852 (uri (cran-uri "prettyunits" version))
1853 (sha256
1854 (base32
1855 "0p3z42hnk53x7ky4d1dr2brf7p8gv3agxr71i99m01n2hq2ri91m"))))
1856 (build-system r-build-system)
1857 (propagated-inputs
1858 `(("r-assertthat" ,r-assertthat)
1859 ("r-magrittr" ,r-magrittr)))
1860 (home-page "https://github.com/gaborcsardi/prettyunits")
1861 (synopsis "Pretty, human readable formatting of quantities")
1862 (description
1863 "This package provides tools for pretty, human readable formatting of
1864 quantities.")
1865 (license license:expat)))
1866
1867 (define-public r-reshape
1868 (package
1869 (name "r-reshape")
1870 (version "0.8.8")
1871 (source
1872 (origin
1873 (method url-fetch)
1874 (uri (cran-uri "reshape" version))
1875 (sha256
1876 (base32
1877 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
1878 (build-system r-build-system)
1879 (propagated-inputs
1880 `(("r-plyr" ,r-plyr)
1881 ("r-rcpp" ,r-rcpp)))
1882 (home-page "http://had.co.nz/reshape")
1883 (synopsis "Flexibly reshape data")
1884 (description
1885 "Flexibly restructure and aggregate data using just two functions:
1886 @code{melt} and @code{cast}. This package provides them.")
1887 (license license:expat)))
1888
1889 (define-public r-progress
1890 (package
1891 (name "r-progress")
1892 (version "1.2.2")
1893 (source
1894 (origin
1895 (method url-fetch)
1896 (uri (cran-uri "progress" version))
1897 (sha256
1898 (base32
1899 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
1900 (build-system r-build-system)
1901 (propagated-inputs
1902 `(("r-crayon" ,r-crayon)
1903 ("r-hms" ,r-hms)
1904 ("r-prettyunits" ,r-prettyunits)
1905 ("r-r6" ,r-r6)))
1906 (home-page "https://github.com/gaborcsardi/progress")
1907 (synopsis "Terminal progress bars")
1908 (description
1909 "This package provides configurable progress bars. They may include
1910 percentage, elapsed time, and/or the estimated completion time. They work in
1911 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
1912 package also provides a C++ API, that works with or without Rcpp.")
1913 (license license:expat)))
1914
1915 (define-public r-ggally
1916 (package
1917 (name "r-ggally")
1918 (version "1.4.0")
1919 (source
1920 (origin
1921 (method url-fetch)
1922 (uri (cran-uri "GGally" version))
1923 (sha256
1924 (base32
1925 "1zjmcc5bzagvy7c5cmdcl39xmx07fwi98yrj4i05w7y40kqcsiws"))))
1926 (properties `((upstream-name . "GGally")))
1927 (build-system r-build-system)
1928 (inputs
1929 `(("libressl" ,libressl)))
1930 (propagated-inputs
1931 `(("r-ggplot2" ,r-ggplot2)
1932 ("r-gtable" ,r-gtable)
1933 ("r-plyr" ,r-plyr)
1934 ("r-progress" ,r-progress)
1935 ("r-rcolorbrewer" ,r-rcolorbrewer)
1936 ("r-reshape" ,r-reshape)
1937 ("r-rlang" ,r-rlang)))
1938 (home-page "https://ggobi.github.io/ggally")
1939 (synopsis "Extension to ggplot2")
1940 (description
1941 "The R package ggplot2 is a plotting system based on the grammar of
1942 graphics. GGally extends ggplot2 by adding several functions to reduce the
1943 complexity of combining geometric objects with transformed data. Some of
1944 these functions include a pairwise plot matrix, a two group pairwise plot
1945 matrix, a parallel coordinates plot, a survival plot, and several functions to
1946 plot networks.")
1947 (license license:gpl2+)))
1948
1949 (define-public r-proxy
1950 (package
1951 (name "r-proxy")
1952 (version "0.4-23")
1953 (source
1954 (origin
1955 (method url-fetch)
1956 (uri (cran-uri "proxy" version))
1957 (sha256
1958 (base32
1959 "17b6qfllqrhzrxqgx7dccffgybnkcria5a68ap5ly3plg04ypm4x"))))
1960 (build-system r-build-system)
1961 (home-page "https://cran.r-project.org/web/packages/proxy")
1962 (synopsis "Distance and similarity measures")
1963 (description
1964 "This package provides an extensible framework for the efficient
1965 calculation of auto- and cross-proximities, along with implementations of the
1966 most popular ones.")
1967 (license license:gpl2)))
1968
1969 (define-public r-sp
1970 (package
1971 (name "r-sp")
1972 (version "1.3-1")
1973 (source
1974 (origin
1975 (method url-fetch)
1976 (uri (cran-uri "sp" version))
1977 (sha256
1978 (base32
1979 "17xm1ig80p9wc860hm3bgishz6lj9fxgwqidj7rkbk4ap99qp62p"))))
1980 (build-system r-build-system)
1981 (propagated-inputs
1982 `(("r-lattice" ,r-lattice)))
1983 (home-page "https://cran.r-project.org/web/packages/sp")
1984 (synopsis "Classes and methods for spatial data")
1985 (description
1986 "This package provides classes and methods for spatial data; the classes
1987 document where the spatial location information resides, for 2D or 3D data.
1988 Utility functions are provided, e.g. for plotting data as maps, spatial
1989 selection, as well as methods for retrieving coordinates, for subsetting,
1990 print, summary, etc.")
1991 (license license:gpl2+)))
1992
1993 (define-public r-rmtstat
1994 (package
1995 (name "r-rmtstat")
1996 (version "0.3")
1997 (source
1998 (origin
1999 (method url-fetch)
2000 (uri (cran-uri "RMTstat" version))
2001 (sha256
2002 (base32
2003 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2004 (properties `((upstream-name . "RMTstat")))
2005 (build-system r-build-system)
2006 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2007 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2008 (description
2009 "This package provides functions for working with the Tracy-Widom laws
2010 and other distributions related to the eigenvalues of large Wishart
2011 matrices.")
2012 (license license:bsd-3)))
2013
2014 (define-public r-rmpi
2015 (package
2016 (name "r-rmpi")
2017 (version "0.6-9")
2018 (source (origin
2019 (method url-fetch)
2020 (uri (cran-uri "Rmpi" version))
2021 (sha256
2022 (base32
2023 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2024 (properties `((upstream-name . "Rmpi")))
2025 (build-system r-build-system)
2026 (arguments
2027 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2028 #:phases (modify-phases %standard-phases
2029 (add-before 'install 'mpi-setup
2030 ,%openmpi-setup))))
2031 (inputs
2032 `(("openmpi" ,openmpi)))
2033 (native-inputs
2034 `(("pkg-config" ,pkg-config)))
2035 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2036 (synopsis "R interface to message-passing interface (MPI)")
2037 (description
2038 "This package provides an interface (wrapper) to MPI APIs. It also
2039 provides an interactive R manager and worker environment.")
2040 (license license:gpl2+)))
2041
2042 (define-public r-lmoments
2043 (package
2044 (name "r-lmoments")
2045 (version "1.3-1")
2046 (source
2047 (origin
2048 (method url-fetch)
2049 (uri (cran-uri "Lmoments" version))
2050 (sha256
2051 (base32
2052 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2053 (properties `((upstream-name . "Lmoments")))
2054 (build-system r-build-system)
2055 (propagated-inputs
2056 `(("r-rcpp" ,r-rcpp)
2057 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2058 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2059 (synopsis "L-moments and quantile mixtures")
2060 (description
2061 "This package contains functions to estimate L-moments and trimmed
2062 L-moments from the data. It also contains functions to estimate the
2063 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2064 quantile mixture from L-moments and trimmed L-moments.")
2065 (license license:gpl2)))
2066
2067 (define-public r-distillery
2068 (package
2069 (name "r-distillery")
2070 (version "1.0-6")
2071 (source
2072 (origin
2073 (method url-fetch)
2074 (uri (cran-uri "distillery" version))
2075 (sha256
2076 (base32
2077 "1mi3ig9jq0kd7yrwc5m37lmrw04p1b4lirnbsxi10z3n5yay4429"))))
2078 (build-system r-build-system)
2079 (home-page "http://www.ral.ucar.edu/staff/ericg")
2080 (synopsis "Functions for confidence intervals and object information")
2081 (description
2082 "This package provides some very simple method functions for confidence
2083 interval calculation and to distill pertinent information from a potentially
2084 complex object; primarily used in common with the packages extRemes and
2085 SpatialVx.")
2086 (license license:gpl2+)))
2087
2088 (define-public r-extremes
2089 (package
2090 (name "r-extremes")
2091 (version "2.0-10")
2092 (source
2093 (origin
2094 (method url-fetch)
2095 (uri (cran-uri "extRemes" version))
2096 (sha256
2097 (base32
2098 "08fj72gpq2d6695hbm3cgwgal64z009ykrirby7g6r0akfcsx5ic"))))
2099 (properties `((upstream-name . "extRemes")))
2100 (build-system r-build-system)
2101 (propagated-inputs
2102 `(("r-distillery" ,r-distillery)
2103 ("r-lmoments" ,r-lmoments)))
2104 (home-page "http://www.assessment.ucar.edu/toolkit/")
2105 (synopsis "Extreme value analysis")
2106 (description
2107 "ExtRemes is a suite of functions for carrying out analyses on the
2108 extreme values of a process of interest; be they block maxima over long blocks
2109 or excesses over a high threshold.")
2110 (license license:gpl2+)))
2111
2112 (define-public r-lmtest
2113 (package
2114 (name "r-lmtest")
2115 (version "0.9-37")
2116 (source
2117 (origin
2118 (method url-fetch)
2119 (uri (cran-uri "lmtest" version))
2120 (sha256
2121 (base32
2122 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
2123 (build-system r-build-system)
2124 (propagated-inputs
2125 `(("r-zoo" ,r-zoo)))
2126 (native-inputs
2127 `(("gfortran" ,gfortran)))
2128 (home-page "https://cran.r-project.org/web/packages/lmtest")
2129 (synopsis "Testing linear regression models")
2130 (description
2131 "This package provides a collection of tests, data sets, and examples for
2132 diagnostic checking in linear regression models. Furthermore, some generic
2133 tools for inference in parametric models are provided.")
2134 ;; Either version is okay
2135 (license (list license:gpl2 license:gpl3))))
2136
2137 (define-public r-idr
2138 (package
2139 (name "r-idr")
2140 (version "1.2")
2141 (source (origin
2142 (method url-fetch)
2143 (uri (cran-uri "idr" version))
2144 (sha256
2145 (base32
2146 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2147 (build-system r-build-system)
2148 (home-page "https://cran.r-project.org/web/packages/idr/")
2149 (synopsis "Irreproducible discovery rate")
2150 (description
2151 "This is a package for estimating the copula mixture model and plotting
2152 correspondence curves in \"Measuring reproducibility of high-throughput
2153 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2154 by Li, Brown, Huang, and Bickel")
2155 (license license:gpl2+)))
2156
2157 (define-public r-inline
2158 (package
2159 (name "r-inline")
2160 (version "0.3.15")
2161 (source (origin
2162 (method url-fetch)
2163 (uri (cran-uri "inline" version))
2164 (sha256
2165 (base32
2166 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2167 (build-system r-build-system)
2168 (home-page "https://cran.r-project.org/web/packages/inline")
2169 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2170 (description
2171 "This package provides functionality to dynamically define R functions
2172 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2173 @code{.Call} calling conventions.")
2174 ;; Any version of the LGPL.
2175 (license license:lgpl3+)))
2176
2177 (define-public r-bbmle
2178 (package
2179 (name "r-bbmle")
2180 (version "1.0.20")
2181 (source
2182 (origin
2183 (method url-fetch)
2184 (uri (cran-uri "bbmle" version))
2185 (sha256
2186 (base32
2187 "1xzij7swrrzl5ly8l3lw6awh486zcm00251dwqws1y23fbgyh3vc"))))
2188 (build-system r-build-system)
2189 (propagated-inputs
2190 `(("r-lattice" ,r-lattice)
2191 ("r-mass" ,r-mass)
2192 ("r-numderiv" ,r-numderiv)))
2193 (home-page "https://cran.r-project.org/web/packages/bbmle")
2194 (synopsis "Tools for General Maximum Likelihood Estimation")
2195 (description
2196 "This package provides methods and functions for fitting maximum
2197 likelihood models in R. This package modifies and extends the @code{mle}
2198 classes in the @code{stats4} package.")
2199 ;; Any version of the GPL
2200 (license license:gpl2+)))
2201
2202 (define-public r-emdbook
2203 (package
2204 (name "r-emdbook")
2205 (version "1.3.11")
2206 (source
2207 (origin
2208 (method url-fetch)
2209 (uri (cran-uri "emdbook" version))
2210 (sha256
2211 (base32
2212 "0a515jdzvg87npvrh7md7zp0v5nlz7c2jr7pba5dql6slb0d8j7q"))))
2213 (build-system r-build-system)
2214 (propagated-inputs
2215 `(("r-bbmle" ,r-bbmle)
2216 ("r-coda" ,r-coda)
2217 ("r-lattice" ,r-lattice)
2218 ("r-mass" ,r-mass)
2219 ("r-plyr" ,r-plyr)
2220 ("r-rcpp" ,r-rcpp)))
2221 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2222 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2223 (description
2224 "This package provides auxiliary functions and data sets for \"Ecological
2225 Models and Data\", a book presenting maximum likelihood estimation and related
2226 topics for ecologists (ISBN 978-0-691-12522-0).")
2227 ;; Any GPL version
2228 (license (list license:gpl2 license:gpl3))))
2229
2230 (define-public r-lpsolve
2231 (package
2232 (name "r-lpsolve")
2233 (version "5.6.13.1")
2234 (source
2235 (origin
2236 (method url-fetch)
2237 (uri (cran-uri "lpSolve" version))
2238 (sha256
2239 (base32
2240 "1f10ywlaaldgjj84vs108ly0nsbkrdgbn5d6qj7nk93j1x1xrn3a"))))
2241 (properties `((upstream-name . "lpSolve")))
2242 (build-system r-build-system)
2243 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2244 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2245 (description
2246 "Lp_solve is software for solving linear, integer and mixed integer
2247 programs. This implementation supplies a \"wrapper\" function in C and some R
2248 functions that solve general linear/integer problems, assignment problems, and
2249 transportation problems.")
2250 (license license:lgpl2.0)))
2251
2252 (define-public r-limsolve
2253 (package
2254 (name "r-limsolve")
2255 (version "1.5.5.3")
2256 (source
2257 (origin
2258 (method url-fetch)
2259 (uri (cran-uri "limSolve" version))
2260 (sha256
2261 (base32
2262 "1ll6ir42h3g2fzf0wqai213bm82gpwjj2hfma2np3mz024sc09rg"))))
2263 (properties `((upstream-name . "limSolve")))
2264 (build-system r-build-system)
2265 (propagated-inputs
2266 `(("r-lpsolve" ,r-lpsolve)
2267 ("r-mass" ,r-mass)
2268 ("r-quadprog" ,r-quadprog)))
2269 (native-inputs `(("gfortran" ,gfortran)))
2270 (home-page "https://cran.r-project.org/web/packages/limSolve")
2271 (synopsis "Solving linear inverse models")
2272 (description
2273 "This package provides functions that:
2274
2275 @enumerate
2276 @item find the minimum/maximum of a linear or quadratic function,
2277 @item sample an underdetermined or overdetermined system,
2278 @item solve a linear system Ax=B for the unknown x.
2279 @end enumerate
2280
2281 It includes banded and tridiagonal linear systems. The package calls Fortran
2282 functions from LINPACK.")
2283 ;; Any GPL version.
2284 (license (list license:gpl2+ license:gpl3+))))
2285
2286 (define-public r-fitdistrplus
2287 (package
2288 (name "r-fitdistrplus")
2289 (version "1.0-14")
2290 (source
2291 (origin
2292 (method url-fetch)
2293 (uri (cran-uri "fitdistrplus" version))
2294 (sha256
2295 (base32
2296 "10q08wsv8v3w7797jdvvv60bgrf1bi6438wf0jcqv81ays82a245"))))
2297 (build-system r-build-system)
2298 (propagated-inputs
2299 `(("r-mass" ,r-mass)
2300 ("r-npsurv" ,r-npsurv)
2301 ("r-survival" ,r-survival)))
2302 (home-page "http://riskassessment.r-forge.r-project.org")
2303 (synopsis "Fitting a parametric distribution from data")
2304 (description
2305 "This package extends the @code{fitdistr} function of the MASS package
2306 with several functions to help the fit of a parametric distribution to
2307 non-censored or censored data. Censored data may contain left-censored,
2308 right-censored and interval-censored values, with several lower and upper
2309 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2310 provides moment matching (MME), quantile matching (QME) and maximum
2311 goodness-of-fit estimation (MGE) methods (available only for non-censored
2312 data). Weighted versions of MLE, MME and QME are available.")
2313 (license license:gpl2+)))
2314
2315 (define-public r-energy
2316 (package
2317 (name "r-energy")
2318 (version "1.7-5")
2319 (source
2320 (origin
2321 (method url-fetch)
2322 (uri (cran-uri "energy" version))
2323 (sha256
2324 (base32
2325 "15k9dg0a82cs9ypm0wpcsff3il1hzhnnv86dv5ngby1r144czhi4"))))
2326 (build-system r-build-system)
2327 (propagated-inputs
2328 `(("r-boot" ,r-boot)
2329 ("r-rcpp" ,r-rcpp)))
2330 (home-page "https://cran.r-project.org/web/packages/energy")
2331 (synopsis "Multivariate inference via the energy of data")
2332 (description
2333 "This package provides e-statistics (energy) tests and statistics for
2334 multivariate and univariate inference, including distance correlation,
2335 one-sample, two-sample, and multi-sample tests for comparing multivariate
2336 distributions, are implemented. Measuring and testing multivariate
2337 independence based on distance correlation, partial distance correlation,
2338 multivariate goodness-of-fit tests, clustering based on energy distance,
2339 testing for multivariate normality, distance components (disco) for
2340 non-parametric analysis of structured data, and other energy
2341 statistics/methods are implemented.")
2342 (license license:gpl2+)))
2343
2344 (define-public r-suppdists
2345 (package
2346 (name "r-suppdists")
2347 (version "1.1-9.4")
2348 (source
2349 (origin
2350 (method url-fetch)
2351 (uri (cran-uri "SuppDists" version))
2352 (sha256
2353 (base32
2354 "1ffx8wigqqvz2pnh06jjc0fnf4vq9z2rhwk2y3f9aszn18ap3dgw"))))
2355 (properties `((upstream-name . "SuppDists")))
2356 (build-system r-build-system)
2357 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2358 (synopsis "Supplementary distributions")
2359 (description
2360 "This package provides ten distributions supplementing those built into
2361 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2362 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2363 coefficient, Johnson distributions, normal scores and generalized
2364 hypergeometric distributions. In addition two random number generators of
2365 George Marsaglia are included.")
2366 (license license:gpl2+)))
2367
2368 (define-public r-ksamples
2369 (package
2370 (name "r-ksamples")
2371 (version "1.2-9")
2372 (source
2373 (origin
2374 (method url-fetch)
2375 (uri (cran-uri "kSamples" version))
2376 (sha256
2377 (base32
2378 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
2379 (properties `((upstream-name . "kSamples")))
2380 (build-system r-build-system)
2381 (propagated-inputs
2382 `(("r-suppdists" ,r-suppdists)))
2383 (home-page "https://cran.r-project.org/web/packages/kSamples")
2384 (synopsis "K-Sample rank tests and their combinations")
2385 (description
2386 "This package provides tools to compares k samples using the
2387 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2388 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2389 test. It computes asymptotic, simulated or (limited) exact P-values, all
2390 valid under randomization, with or without ties, or conditionally under random
2391 sampling from populations, given the observed tie pattern. Except for Steel's
2392 test and the JT test it also combines these tests across several blocks of
2393 samples.")
2394 (license license:gpl2+)))
2395
2396 (define-public r-cvst
2397 (package
2398 (name "r-cvst")
2399 (version "0.2-2")
2400 (source
2401 (origin
2402 (method url-fetch)
2403 (uri (cran-uri "CVST" version))
2404 (sha256
2405 (base32
2406 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2407 (properties `((upstream-name . "CVST")))
2408 (build-system r-build-system)
2409 (propagated-inputs
2410 `(("r-kernlab" ,r-kernlab)
2411 ("r-matrix" ,r-matrix)))
2412 (home-page "https://cran.r-project.org/web/packages/CVST")
2413 (synopsis "Fast cross-validation via sequential testing")
2414 (description
2415 "This package implements the fast cross-validation via sequential
2416 testing (CVST) procedure. CVST is an improved cross-validation procedure
2417 which uses non-parametric testing coupled with sequential analysis to
2418 determine the best parameter set on linearly increasing subsets of the data.
2419 Additionally to the CVST the package contains an implementation of the
2420 ordinary k-fold cross-validation with a flexible and powerful set of helper
2421 objects and methods to handle the overall model selection process. The
2422 implementations of the Cochran's Q test with permutations and the sequential
2423 testing framework of Wald are generic and can therefore also be used in other
2424 contexts.")
2425 (license license:gpl2+)))
2426
2427 (define-public r-squarem
2428 (package
2429 (name "r-squarem")
2430 (version "2017.10-1")
2431 (source
2432 (origin
2433 (method url-fetch)
2434 (uri (cran-uri "SQUAREM" version))
2435 (sha256
2436 (base32
2437 "10xj26x7qjyvzndnbjl5krr9wabnb9cbrnp3m7xg673g8ddr12cv"))))
2438 (properties `((upstream-name . "SQUAREM")))
2439 (build-system r-build-system)
2440 (home-page "http://www.jhsph.edu/agingandhealth/People/Faculty_personal_pages/Varadhan.html")
2441 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
2442 (description
2443 "This package provides algorithms for accelerating the convergence of
2444 slow, monotone sequences from smooth, contraction mapping such as the EM
2445 algorithm. It can be used to accelerate any smooth, linearly convergent
2446 acceleration scheme. A tutorial style introduction to this package is
2447 available in a vignette.")
2448 (license license:gpl2+)))
2449
2450 (define-public r-lava
2451 (package
2452 (name "r-lava")
2453 (version "1.6.5")
2454 (source
2455 (origin
2456 (method url-fetch)
2457 (uri (cran-uri "lava" version))
2458 (sha256
2459 (base32
2460 "13rlqdg42ylnz4hc932bl50xismrcr4d9ykcd9zs19cw5mckjx0f"))))
2461 (build-system r-build-system)
2462 (propagated-inputs
2463 `(("r-numderiv" ,r-numderiv)
2464 ("r-squarem" ,r-squarem)
2465 ("r-survival" ,r-survival)))
2466 (home-page "https://github.com/kkholst/lava")
2467 (synopsis "Latent variable models")
2468 (description
2469 "This package provides tools for the estimation and simulation of latent
2470 variable models.")
2471 (license license:gpl3)))
2472
2473 (define-public r-drr
2474 (package
2475 (name "r-drr")
2476 (version "0.0.3")
2477 (source
2478 (origin
2479 (method url-fetch)
2480 (uri (cran-uri "DRR" version))
2481 (sha256
2482 (base32
2483 "1yd1fvllfkcrwg9v322n4wkk4q4q84nvy58y4vac9pdr3yf3i4vl"))))
2484 (properties `((upstream-name . "DRR")))
2485 (build-system r-build-system)
2486 (propagated-inputs
2487 `(("r-cvst" ,r-cvst)
2488 ("r-kernlab" ,r-kernlab)
2489 ("r-matrix" ,r-matrix)))
2490 (home-page "https://cran.r-project.org/web/packages/DRR")
2491 (synopsis "Dimensionality reduction via regression")
2492 (description
2493 "This package provides an implementation of dimensionality reduction via
2494 regression using Kernel Ridge Regression.")
2495 (license license:gpl3)))
2496
2497 (define-public r-prodlim
2498 (package
2499 (name "r-prodlim")
2500 (version "2018.04.18")
2501 (source
2502 (origin
2503 (method url-fetch)
2504 (uri (cran-uri "prodlim" version))
2505 (sha256
2506 (base32
2507 "1aslq87sqwikh8chxc378r38146y7kv79zz0kcq3j93ivx7va8jb"))))
2508 (build-system r-build-system)
2509 (propagated-inputs
2510 `(("r-kernsmooth" ,r-kernsmooth)
2511 ("r-lava" ,r-lava)
2512 ("r-rcpp" ,r-rcpp)
2513 ("r-survival" ,r-survival)))
2514 (home-page "https://cran.r-project.org/web/packages/prodlim")
2515 (synopsis "Product-limit estimation for censored event history analysis")
2516 (description
2517 "This package provides a fast and user-friendly implementation of
2518 nonparametric estimators for censored event history (survival) analysis with
2519 the Kaplan-Meier and Aalen-Johansen methods.")
2520 (license license:gpl2+)))
2521
2522 (define-public r-dimred
2523 (package
2524 (name "r-dimred")
2525 (version "0.2.3")
2526 (source
2527 (origin
2528 (method url-fetch)
2529 (uri (cran-uri "dimRed" version))
2530 (sha256
2531 (base32
2532 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
2533 (properties `((upstream-name . "dimRed")))
2534 (build-system r-build-system)
2535 (propagated-inputs
2536 `(("r-drr" ,r-drr)
2537 ("r-magrittr" ,r-magrittr)))
2538 (home-page "https://github.com/gdkrmr/dimRed")
2539 (synopsis "Framework for dimensionality reduction")
2540 (description
2541 "This package provides a collection of dimensionality reduction
2542 techniques from R packages and provides a common interface for calling the
2543 methods.")
2544 (license license:gpl3)))
2545
2546 (define-public r-timedate
2547 (package
2548 (name "r-timedate")
2549 (version "3043.102")
2550 (source
2551 (origin
2552 (method url-fetch)
2553 (uri (cran-uri "timeDate" version))
2554 (sha256
2555 (base32
2556 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
2557 (properties `((upstream-name . "timeDate")))
2558 (build-system r-build-system)
2559 (home-page "https://www.rmetrics.org")
2560 (synopsis "Chronological and calendar objects")
2561 (description
2562 "This package provides an environment for teaching \"Financial
2563 Engineering and Computational Finance\" and for managing chronological and
2564 calendar objects.")
2565 (license license:gpl2+)))
2566
2567 (define-public r-magic
2568 (package
2569 (name "r-magic")
2570 (version "1.5-9")
2571 (source
2572 (origin
2573 (method url-fetch)
2574 (uri (cran-uri "magic" version))
2575 (sha256
2576 (base32
2577 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
2578 (build-system r-build-system)
2579 (propagated-inputs
2580 `(("r-abind" ,r-abind)))
2581 (home-page "https://github.com/RobinHankin/magic.git")
2582 (synopsis "Create and investigate magic squares")
2583 (description
2584 "This package provides a collection of efficient, vectorized algorithms
2585 for the creation and investigation of magic squares and hypercubes, including
2586 a variety of functions for the manipulation and analysis of arbitrarily
2587 dimensioned arrays.")
2588 (license license:gpl2)))
2589
2590 (define-public r-rmysql
2591 (package
2592 (name "r-rmysql")
2593 (version "0.10.17")
2594 (source
2595 (origin
2596 (method url-fetch)
2597 (uri (cran-uri "RMySQL" version))
2598 (sha256
2599 (base32
2600 "1xamf99ih44dvaxg5x4ivj0hkqssmabgqd7gh8b8q1srw7yg8kbm"))))
2601 (properties `((upstream-name . "RMySQL")))
2602 (build-system r-build-system)
2603 (inputs
2604 `(("mariadb" ,mariadb)
2605 ("zlib" ,zlib)))
2606 (propagated-inputs
2607 `(("r-dbi" ,r-dbi)))
2608 (home-page "https://github.com/r-dbi/RMySQL")
2609 (synopsis "Database interface and MySQL driver for R")
2610 (description
2611 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
2612 package contains an old implementation based on legacy code from S-PLUS which
2613 is being phased out. A modern MySQL client based on Rcpp is available from
2614 the RMariaDB package.")
2615 (license license:gpl2)))
2616
2617 (define-public r-rpostgresql
2618 (package
2619 (name "r-rpostgresql")
2620 (version "0.6-2")
2621 (source
2622 (origin
2623 (method url-fetch)
2624 (uri (cran-uri "RPostgreSQL" version))
2625 (sha256
2626 (base32
2627 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
2628 (properties `((upstream-name . "RPostgreSQL")))
2629 (build-system r-build-system)
2630 (inputs
2631 `(("postgresql" ,postgresql)))
2632 (propagated-inputs
2633 `(("r-dbi" ,r-dbi)))
2634 (home-page "https://github.com/tomoakin/RPostgreSQL")
2635 (synopsis "R interface to the PostgreSQL database system")
2636 (description
2637 "This package provides a Database Interface (DBI) compliant driver for R
2638 to access PostgreSQL database systems.")
2639 ;; The whole package is released under GPL version 2. It includes code
2640 ;; under the PostgreSQL license.
2641 (license license:gpl2)))
2642
2643 (define-public r-geometry
2644 (package
2645 (name "r-geometry")
2646 (version "0.4.1")
2647 (source
2648 (origin
2649 (method url-fetch)
2650 (uri (cran-uri "geometry" version))
2651 (sha256
2652 (base32
2653 "0v3ivaw8vbjyxg08dd573qk3kqfyknj5hli9503dza6p6xz0dzmm"))))
2654 (build-system r-build-system)
2655 (propagated-inputs
2656 `(("r-magic" ,r-magic)
2657 ("r-lpsolve" ,r-lpsolve)
2658 ("r-rcpp" ,r-rcpp)
2659 ("r-rcppprogress" ,r-rcppprogress)))
2660 (home-page "http://geometry.r-forge.r-project.org/")
2661 (synopsis "Mesh generation and surface tesselation")
2662 (description
2663 "This package makes the qhull library available in R, in a similar manner
2664 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
2665 intersections about a point, Voronoi diagrams, furthest-site Delaunay
2666 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
2667 and higher dimensions. It implements the Quickhull algorithm for computing
2668 the convex hull. Qhull does not support constrained Delaunay triangulations,
2669 or mesh generation of non-convex objects, but the package does include some R
2670 functions that allow for this. Currently the package only gives access to
2671 Delaunay triangulation and convex hull computation.")
2672 ;; The Qhull sources are included and are distributed under a custom
2673 ;; non-copyleft license. The R sources are released under GPL version 2.
2674 (license (list license:gpl2
2675 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
2676
2677 (define-public r-ddalpha
2678 (package
2679 (name "r-ddalpha")
2680 (version "1.3.9")
2681 (source
2682 (origin
2683 (method url-fetch)
2684 (uri (cran-uri "ddalpha" version))
2685 (sha256
2686 (base32
2687 "1vzs0cvl6xw3h9i00rg3hs02xwgxcnh8326y10kxmhs3qq4m7nb2"))))
2688 (build-system r-build-system)
2689 (propagated-inputs
2690 `(("r-bh" ,r-bh)
2691 ("r-class" ,r-class)
2692 ("r-geometry" ,r-geometry)
2693 ("r-mass" ,r-mass)
2694 ("r-rcpp" ,r-rcpp)
2695 ("r-robustbase" ,r-robustbase)
2696 ("r-sfsmisc" ,r-sfsmisc)))
2697 (native-inputs
2698 `(("gfortran" ,gfortran)))
2699 (home-page "https://cran.r-project.org/web/packages/ddalpha")
2700 (synopsis "Depth-Based classification and calculation of data depth")
2701 (description
2702 "This package contains procedures for depth-based supervised learning,
2703 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
2704 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
2705 statistical depth function to a compact low-dimensional space, where the final
2706 classification is done. It also offers an extension to functional data and
2707 routines for calculating certain notions of statistical depth functions. 50
2708 multivariate and 5 functional classification problems are included.")
2709 (license license:gpl2)))
2710
2711 (define-public r-gower
2712 (package
2713 (name "r-gower")
2714 (version "0.2.1")
2715 (source
2716 (origin
2717 (method url-fetch)
2718 (uri (cran-uri "gower" version))
2719 (sha256
2720 (base32
2721 "007ivwn1nagpi26qq8iih1c2l61c53glvv60n90hi341ry8vwgxg"))))
2722 (build-system r-build-system)
2723 (home-page "https://github.com/markvanderloo/gower")
2724 (synopsis "Gower's distance")
2725 (description
2726 "This package provides tools to compute Gower's distance (or similarity)
2727 coefficient between records, and to compute the top-n matches between records.
2728 Core algorithms are executed in parallel on systems supporting OpenMP.")
2729 (license license:gpl3)))
2730
2731 (define-public r-rcpproll
2732 (package
2733 (name "r-rcpproll")
2734 (version "0.3.0")
2735 (source
2736 (origin
2737 (method url-fetch)
2738 (uri (cran-uri "RcppRoll" version))
2739 (sha256
2740 (base32
2741 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
2742 (properties `((upstream-name . "RcppRoll")))
2743 (build-system r-build-system)
2744 (propagated-inputs
2745 `(("r-rcpp" ,r-rcpp)))
2746 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
2747 (synopsis "Efficient rolling and windowed operations")
2748 (description
2749 "This package provides fast and efficient routines for common rolling /
2750 windowed operations. Routines for the efficient computation of windowed mean,
2751 median, sum, product, minimum, maximum, standard deviation and variance are
2752 provided.")
2753 (license license:gpl2+)))
2754
2755 (define-public r-ipred
2756 (package
2757 (name "r-ipred")
2758 (version "0.9-9")
2759 (source
2760 (origin
2761 (method url-fetch)
2762 (uri (cran-uri "ipred" version))
2763 (sha256
2764 (base32
2765 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
2766 (build-system r-build-system)
2767 (propagated-inputs
2768 `(("r-class" ,r-class)
2769 ("r-mass" ,r-mass)
2770 ("r-nnet" ,r-nnet)
2771 ("r-prodlim" ,r-prodlim)
2772 ("r-rpart" ,r-rpart)
2773 ("r-survival" ,r-survival)))
2774 (home-page "https://cran.r-project.org/web/packages/ipred")
2775 (synopsis "Improved predictors")
2776 (description
2777 "This package provides improved predictive models by indirect
2778 classification and bagging for classification, regression and survival
2779 problems as well as resampling based estimators of prediction error.")
2780 (license license:gpl2+)))
2781
2782 (define-public r-psych
2783 (package
2784 (name "r-psych")
2785 (version "1.8.12")
2786 (source
2787 (origin
2788 (method url-fetch)
2789 (uri (cran-uri "psych" version))
2790 (sha256
2791 (base32
2792 "0hvp0dkkkn0szaf5rkirr3kb8qmr4bxwl775m5wmpvn1kc25w5vf"))))
2793 (build-system r-build-system)
2794 (propagated-inputs
2795 `(("r-foreign" ,r-foreign)
2796 ("r-lattice" ,r-lattice)
2797 ("r-mnormt" ,r-mnormt)
2798 ("r-nlme" ,r-nlme)))
2799 (home-page "https://cran.r-project.org/web/packages/psych/")
2800 (synopsis "Procedures for psychological, psychometric, and personality research")
2801 (description
2802 "This package provides a general purpose toolbox for personality,
2803 psychometric theory and experimental psychology. Functions are primarily for
2804 multivariate analysis and scale construction using factor analysis, principal
2805 component analysis, cluster analysis and reliability analysis, although others
2806 provide basic descriptive statistics. Item Response Theory is done using
2807 factor analysis of tetrachoric and polychoric correlations. Functions for
2808 analyzing data at multiple levels include within and between group statistics,
2809 including correlations and factor analysis. Functions for simulating and
2810 testing particular item and test structures are included. Several functions
2811 serve as a useful front end for structural equation modeling. Graphical
2812 displays of path diagrams, factor analysis and structural equation models are
2813 created using basic graphics.")
2814 (license license:gpl2+)))
2815
2816 (define-public r-generics
2817 (package
2818 (name "r-generics")
2819 (version "0.0.2")
2820 (source
2821 (origin
2822 (method url-fetch)
2823 (uri (cran-uri "generics" version))
2824 (sha256
2825 (base32
2826 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
2827 (build-system r-build-system)
2828 (home-page "https://github.com/r-lib/generics")
2829 (synopsis "Common S3 generics not provided by base R methods")
2830 (description
2831 "In order to reduce potential package dependencies and conflicts,
2832 generics provides a number of commonly used S3 generics that are not provided
2833 by base R methods related to model fitting.")
2834 (license license:gpl2)))
2835
2836 (define-public r-broom
2837 (package
2838 (name "r-broom")
2839 (version "0.5.2")
2840 (source
2841 (origin
2842 (method url-fetch)
2843 (uri (cran-uri "broom" version))
2844 (sha256
2845 (base32
2846 "0qmclih5dm5sqzy4hplcfy677kr12pm9pnpv3r319g14dd27pbqn"))))
2847 (build-system r-build-system)
2848 (propagated-inputs
2849 `(("r-backports" ,r-backports)
2850 ("r-dplyr" ,r-dplyr)
2851 ("r-generics" ,r-generics)
2852 ("r-nlme" ,r-nlme)
2853 ("r-purrr" ,r-purrr)
2854 ("r-reshape2" ,r-reshape2)
2855 ("r-stringr" ,r-stringr)
2856 ("r-tibble" ,r-tibble)
2857 ("r-tidyr" ,r-tidyr)))
2858 (home-page "https://github.com/tidyverse/broom")
2859 (synopsis "Convert statistical analysis objects into tidy data frames")
2860 (description
2861 "This package provides tools to convert statistical analysis objects from
2862 R into tidy data frames, so that they can more easily be combined, reshaped
2863 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
2864 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
2865 summarizes a model's statistical findings such as coefficients of a
2866 regression; @code{augment}, which adds columns to the original data such as
2867 predictions, residuals and cluster assignments; and @code{glance}, which
2868 provides a one-row summary of model-level statistics.")
2869 (license license:expat)))
2870
2871 (define-public r-recipes
2872 (package
2873 (name "r-recipes")
2874 (version "0.1.5")
2875 (source
2876 (origin
2877 (method url-fetch)
2878 (uri (cran-uri "recipes" version))
2879 (sha256
2880 (base32
2881 "056zv4vhayyy8q9izcdknbb9hff2gxivg21g5mkssia78vw8g3mg"))))
2882 (build-system r-build-system)
2883 (propagated-inputs
2884 `(("r-dplyr" ,r-dplyr)
2885 ("r-generics" ,r-generics)
2886 ("r-glue" ,r-glue)
2887 ("r-gower" ,r-gower)
2888 ("r-ipred" ,r-ipred)
2889 ("r-lubridate" ,r-lubridate)
2890 ("r-magrittr" ,r-magrittr)
2891 ("r-matrix" ,r-matrix)
2892 ("r-purrr" ,r-purrr)
2893 ("r-rcpproll" ,r-rcpproll)
2894 ("r-rlang" ,r-rlang)
2895 ("r-tibble" ,r-tibble)
2896 ("r-tidyr" ,r-tidyr)
2897 ("r-tidyselect" ,r-tidyselect)
2898 ("r-timedate" ,r-timedate)
2899 ("r-withr" ,r-withr)))
2900 (home-page "https://github.com/topepo/recipes")
2901 (synopsis "Preprocessing tools to create design matrices")
2902 (description
2903 "Recipes is an extensible framework to create and preprocess design
2904 matrices. Recipes consist of one or more data manipulation and analysis
2905 \"steps\". Statistical parameters for the steps can be estimated from an
2906 initial data set and then applied to other data sets. The resulting design
2907 matrices can then be used as inputs into statistical or machine learning
2908 models.")
2909 (license license:gpl2)))
2910
2911 (define-public r-pdist
2912 (package
2913 (name "r-pdist")
2914 (version "1.2")
2915 (source
2916 (origin
2917 (method url-fetch)
2918 (uri (cran-uri "pdist" version))
2919 (sha256
2920 (base32
2921 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
2922 (build-system r-build-system)
2923 (home-page "https://github.com/jeffwong/pdist")
2924 (synopsis "Partitioned distance function")
2925 (description
2926 "Pdist computes the euclidean distance between rows of a matrix X and
2927 rows of another matrix Y. Previously, this could be done by binding the two
2928 matrices together and calling @code{dist}, but this creates unnecessary
2929 computation by computing the distances between a row of X and another row of
2930 X, and likewise for Y. Pdist strictly computes distances across the two
2931 matrices, not within the same matrix, making computations significantly faster
2932 for certain use cases.")
2933 (license license:gpl3+)))
2934
2935 (define-public r-ggrepel
2936 (package
2937 (name "r-ggrepel")
2938 (version "0.8.1")
2939 (source
2940 (origin
2941 (method url-fetch)
2942 (uri (cran-uri "ggrepel" version))
2943 (sha256
2944 (base32
2945 "10vjrcmx8yknfbx93d9a4y3z8gafri0fhimw6hcq733dmdvkml6m"))))
2946 (build-system r-build-system)
2947 (propagated-inputs
2948 `(("r-ggplot2" ,r-ggplot2)
2949 ("r-rcpp" ,r-rcpp)
2950 ("r-scales" ,r-scales)))
2951 (home-page "http://github.com/slowkow/ggrepel")
2952 (synopsis "Repulsive text and label geometries for ggplot2")
2953 (description
2954 "This package provides text and label geometries for ggplot2 that help to
2955 avoid overlapping text labels. Labels repel away from each other and away
2956 from the data points.")
2957 (license license:gpl3)))
2958
2959 (define-public r-corrplot
2960 (package
2961 (name "r-corrplot")
2962 (version "0.84")
2963 (source
2964 (origin
2965 (method url-fetch)
2966 (uri (cran-uri "corrplot" version))
2967 (sha256
2968 (base32
2969 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
2970 (build-system r-build-system)
2971 (home-page "https://github.com/taiyun/corrplot")
2972 (synopsis "Visualization of a correlation matrix")
2973 (description
2974 "This package provides a graphical display of a correlation matrix or
2975 general matrix. It also contains some algorithms to do matrix reordering. In
2976 addition, corrplot is good at details, including choosing color, text labels,
2977 color labels, layout, etc.")
2978 ;; Any version of the GPL
2979 (license license:gpl2+)))
2980
2981 (define-public r-stringdist
2982 (package
2983 (name "r-stringdist")
2984 (version "0.9.5.2")
2985 (source
2986 (origin
2987 (method url-fetch)
2988 (uri (cran-uri "stringdist" version))
2989 (sha256
2990 (base32
2991 "0nw8c317qkfq63pr0prl0hx522ddfq4cbgixb5r4pq3fxk9z303l"))))
2992 (build-system r-build-system)
2993 (home-page "https://github.com/markvanderloo/stringdist")
2994 (synopsis "Approximate string matching and string distance functions")
2995 (description
2996 "This package implements an approximate string matching version of R's
2997 native @code{match} function. It can calculate various string distances based
2998 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
2999 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3000 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3001 can be computed between character vectors while taking proper care of encoding
3002 or between integer vectors representing generic sequences.")
3003 (license license:gpl3+)))
3004
3005 (define-public r-ucminf
3006 (package
3007 (name "r-ucminf")
3008 (version "1.1-4")
3009 (source
3010 (origin
3011 (method url-fetch)
3012 (uri (cran-uri "ucminf" version))
3013 (sha256
3014 (base32
3015 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3016 (build-system r-build-system)
3017 (native-inputs `(("gfortran" ,gfortran)))
3018 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3019 (synopsis "General-purpose unconstrained non-linear optimization")
3020 (description
3021 "This package provides an implementation of an algorithm for
3022 general-purpose unconstrained non-linear optimization. The algorithm is of
3023 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3024 search with a trust region type monitoring of the input to the line search
3025 algorithm. The interface of @code{ucminf} is designed for easy interchange
3026 with the package @code{optim}.")
3027 (license license:gpl2+)))
3028
3029 (define-public r-ordinal
3030 (package
3031 (name "r-ordinal")
3032 (version "2019.4-25")
3033 (source
3034 (origin
3035 (method url-fetch)
3036 (uri (cran-uri "ordinal" version))
3037 (sha256
3038 (base32
3039 "1pvrkly4x12w32n7w1qljdwzqnlkv7rfa7rx0nz5vbiw29xas4i8"))))
3040 (build-system r-build-system)
3041 (propagated-inputs
3042 `(("r-mass" ,r-mass)
3043 ("r-matrix" ,r-matrix)
3044 ("r-numderiv" ,r-numderiv)
3045 ("r-ucminf" ,r-ucminf)))
3046 (home-page "https://github.com/runehaubo/ordinal")
3047 (synopsis "Regression models for ordinal data")
3048 (description
3049 "This package provides an implementation of cumulative link (mixed)
3050 models also known as ordered regression models, proportional odds models,
3051 proportional hazards models for grouped survival times and ordered models.
3052 Estimation is via maximum likelihood and mixed models are fitted with the
3053 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3054 (license license:gpl2+)))
3055
3056 (define-public r-jomo
3057 (package
3058 (name "r-jomo")
3059 (version "2.6-8")
3060 (source
3061 (origin
3062 (method url-fetch)
3063 (uri (cran-uri "jomo" version))
3064 (sha256
3065 (base32
3066 "097zfdcqc3a45ay8xxbraqh8xsfyivskkdmc2b4ca4n979lx8vyb"))))
3067 (build-system r-build-system)
3068 (propagated-inputs
3069 `(("r-lme4" ,r-lme4)
3070 ("r-mass" ,r-mass)
3071 ("r-ordinal" ,r-ordinal)
3072 ("r-survival" ,r-survival)))
3073 (home-page "https://cran.r-project.org/web/packages/jomo/")
3074 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3075 (description
3076 "Similarly to Schafer's package pan, jomo is a package for multilevel
3077 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3078 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3079 possibility of handling binary and categorical data through latent normal
3080 variables, the option to use cluster-specific covariance matrices and to
3081 impute compatibly with the substantive model.")
3082 (license license:gpl2)))
3083
3084 (define-public r-pan
3085 (package
3086 (name "r-pan")
3087 (version "1.6")
3088 (source
3089 (origin
3090 (method url-fetch)
3091 (uri (cran-uri "pan" version))
3092 (sha256
3093 (base32
3094 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3095 (build-system r-build-system)
3096 (native-inputs `(("gfortran" ,gfortran)))
3097 (home-page "https://cran.r-project.org/web/packages/pan/")
3098 (synopsis "Multiple imputation for multivariate panel or clustered data")
3099 (description
3100 "This package implements multiple imputation for multivariate panel or
3101 clustered data.")
3102 (license license:gpl3)))
3103
3104 (define-public r-mitml
3105 (package
3106 (name "r-mitml")
3107 (version "0.3-7")
3108 (source
3109 (origin
3110 (method url-fetch)
3111 (uri (cran-uri "mitml" version))
3112 (sha256
3113 (base32
3114 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3115 (build-system r-build-system)
3116 (propagated-inputs
3117 `(("r-haven" ,r-haven)
3118 ("r-jomo" ,r-jomo)
3119 ("r-pan" ,r-pan)))
3120 (home-page "https://cran.r-project.org/web/packages/mitml/")
3121 (synopsis "Tools for multiple imputation in multilevel modeling")
3122 (description
3123 "This package provides tools for multiple imputation of missing data in
3124 multilevel modeling. It includes a user-friendly interface to the packages
3125 pan and jomo, and several functions for visualization, data management and the
3126 analysis of multiply imputed data sets.")
3127 (license license:gpl2+)))
3128
3129 (define-public r-mice
3130 (package
3131 (name "r-mice")
3132 (version "3.5.0")
3133 (source
3134 (origin
3135 (method url-fetch)
3136 (uri (cran-uri "mice" version))
3137 (sha256
3138 (base32
3139 "0icydc312sbvzbp0r0mhs2r77a2ly2xvz5w5amirz3wdkvgyrk2g"))))
3140 (build-system r-build-system)
3141 (propagated-inputs
3142 `(("r-broom" ,r-broom)
3143 ("r-dplyr" ,r-dplyr)
3144 ("r-lattice" ,r-lattice)
3145 ("r-mass" ,r-mass)
3146 ("r-mitml" ,r-mitml)
3147 ("r-nnet" ,r-nnet)
3148 ("r-rcpp" ,r-rcpp)
3149 ("r-rlang" ,r-rlang)
3150 ("r-rpart" ,r-rpart)
3151 ("r-survival" ,r-survival)))
3152 (home-page "https://cran.r-project.org/web/packages/mice/")
3153 (synopsis "Multivariate imputation by chained equations")
3154 (description
3155 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3156 implemented by the MICE algorithm as described in @url{Van Buuren and
3157 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3158 variable has its own imputation model. Built-in imputation models are
3159 provided for continuous data (predictive mean matching, normal), binary
3160 data (logistic regression), unordered categorical data (polytomous logistic
3161 regression) and ordered categorical data (proportional odds). MICE can also
3162 impute continuous two-level data (normal model, pan, second-level variables).
3163 Passive imputation can be used to maintain consistency between variables.
3164 Various diagnostic plots are available to inspect the quality of the
3165 imputations.")
3166 ;; Any of these two versions.
3167 (license (list license:gpl2 license:gpl3))))
3168
3169 (define-public r-truncnorm
3170 (package
3171 (name "r-truncnorm")
3172 (version "1.0-8")
3173 (source
3174 (origin
3175 (method url-fetch)
3176 (uri (cran-uri "truncnorm" version))
3177 (sha256
3178 (base32
3179 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3180 (build-system r-build-system)
3181 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3182 (synopsis "Truncated normal distribution")
3183 (description "This package provides functions for the truncated normal
3184 distribution with mean equal to @code{mean} and standard deviation equal to
3185 @code{sd}. It includes density, distribution, quantile, and expected value
3186 functions, as well as a random generation function.")
3187 (license license:gpl2)))
3188
3189 (define-public r-rsolnp
3190 (package
3191 (name "r-rsolnp")
3192 (version "1.16")
3193 (source
3194 (origin
3195 (method url-fetch)
3196 (uri (cran-uri "Rsolnp" version))
3197 (sha256
3198 (base32
3199 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3200 (properties `((upstream-name . "Rsolnp")))
3201 (build-system r-build-system)
3202 (propagated-inputs
3203 `(("r-truncnorm" ,r-truncnorm)))
3204 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3205 (synopsis "General non-linear optimization")
3206 (description "The Rsolnp package implements a general non-linear augmented
3207 Lagrange multiplier method solver, a @dfn{sequential quadratic
3208 programming} (SQP) based solver).")
3209 ;; Any version of the GPL.
3210 (license license:gpl2+)))
3211
3212 (define-public r-hardyweinberg
3213 (package
3214 (name "r-hardyweinberg")
3215 (version "1.6.2")
3216 (source
3217 (origin
3218 (method url-fetch)
3219 (uri (cran-uri "HardyWeinberg" version))
3220 (sha256
3221 (base32
3222 "15i7b444hikkfgqmx2ki827998xwra38k9v7a7kavwz6zmq5mmv9"))))
3223 (properties `((upstream-name . "HardyWeinberg")))
3224 (build-system r-build-system)
3225 (propagated-inputs
3226 `(("r-mice" ,r-mice)
3227 ("r-rcpp" ,r-rcpp)
3228 ("r-rsolnp" ,r-rsolnp)))
3229 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3230 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3231 (description
3232 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3233 diallelic genetic marker data. All classical tests (chi-square, exact,
3234 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3235 included in the package, as well as functions for power computation and for
3236 the simulation of marker data under equilibrium and disequilibrium. Routines
3237 for dealing with markers on the X-chromosome are included. Functions for
3238 testing equilibrium in the presence of missing data by using multiple
3239 imputation are also provided. Implements several graphics for exploring the
3240 equilibrium status of a large set of diallelic markers: ternary plots with
3241 acceptance regions, log-ratio plots and Q-Q plots.")
3242 (license license:gpl2+)))
3243
3244 (define-public r-sm
3245 (package
3246 (name "r-sm")
3247 (version "2.2-5.6")
3248 (source
3249 (origin
3250 (method url-fetch)
3251 (uri (cran-uri "sm" version))
3252 (sha256
3253 (base32
3254 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3255 (build-system r-build-system)
3256 (native-inputs `(("gfortran" ,gfortran)))
3257 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3258 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3259 (description
3260 "This is software accompanying the book 'Applied Smoothing Techniques for
3261 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3262 University Press. It provides smoothing methods for nonparametric regression
3263 and density estimation")
3264 (license license:gpl2+)))
3265
3266 (define-public r-venndiagram
3267 (package
3268 (name "r-venndiagram")
3269 (version "1.6.20")
3270 (source (origin
3271 (method url-fetch)
3272 (uri (cran-uri "VennDiagram" version))
3273 (sha256
3274 (base32
3275 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3276 (properties `((upstream-name . "VennDiagram")))
3277 (build-system r-build-system)
3278 (propagated-inputs
3279 `(("r-futile-logger" ,r-futile-logger)))
3280 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3281 (synopsis "Generate High-Resolution Venn and Euler Plots")
3282 (description
3283 "This package provides a set of functions to generate high-resolution
3284 Venn and Euler plots. It includes handling for several special cases,
3285 including two-case scaling, and extensive customization of plot shape and
3286 structure.")
3287 (license license:gpl2+)))
3288
3289 (define-public r-vioplot
3290 (package
3291 (name "r-vioplot")
3292 (version "0.3.0")
3293 (source
3294 (origin
3295 (method url-fetch)
3296 (uri (cran-uri "vioplot" version))
3297 (sha256
3298 (base32
3299 "1ddmmqq7qrnvr5q518afnysrl7ccr8am9njknv3dpwaqzcdr9akn"))))
3300 (build-system r-build-system)
3301 (propagated-inputs
3302 `(("r-sm" ,r-sm)
3303 ("r-zoo" ,r-zoo)))
3304 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3305 (synopsis "Violin plot")
3306 (description
3307 "This package provides a violin plot, which is a combination of a box
3308 plot and a kernel density plot.")
3309 (license license:bsd-3)))
3310
3311 (define-public r-rsofia
3312 (package
3313 (name "r-rsofia")
3314 (version "1.1")
3315 (source (origin
3316 (method url-fetch)
3317 ;; This package has been removed from CRAN, so we can
3318 ;; only fetch it from the archives.
3319 (uri (string-append "https://cran.r-project.org/src/"
3320 "contrib/Archive/RSofia/RSofia_"
3321 version ".tar.gz"))
3322 (sha256
3323 (base32
3324 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3325 (properties `((upstream-name . "RSofia")))
3326 (build-system r-build-system)
3327 (propagated-inputs
3328 `(("r-rcpp" ,r-rcpp)))
3329 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3330 (synopsis "Port of sofia-ml to R")
3331 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3332 suite of fast incremental algorithms for machine learning that can be used for
3333 training models for classification or ranking.")
3334 (license license:asl2.0)))
3335
3336 (define-public r-xts
3337 (package
3338 (name "r-xts")
3339 (version "0.11-2")
3340 (source
3341 (origin
3342 (method url-fetch)
3343 (uri (cran-uri "xts" version))
3344 (sha256
3345 (base32
3346 "1f0kxrvn13py3hk2gh2m56cqm39x3bqp1i350r5viddacrm2yxqj"))))
3347 (build-system r-build-system)
3348 (propagated-inputs `(("r-zoo" ,r-zoo)))
3349 (home-page "https://github.com/joshuaulrich/xts")
3350 (synopsis "Extensible time series")
3351 (description
3352 "This package provides for uniform handling of R's different time-based
3353 data classes by extending @code{zoo}, maximizing native format information
3354 preservation and allowing for user-level customization and extension, while
3355 simplifying cross-class interoperability.")
3356 (license license:gpl2+)))
3357
3358 (define-public r-performanceanalytics
3359 (package
3360 (name "r-performanceanalytics")
3361 (version "1.5.3")
3362 (source
3363 (origin
3364 (method url-fetch)
3365 (uri (cran-uri "PerformanceAnalytics" version))
3366 (sha256
3367 (base32
3368 "0jhjldwyxwq7a47zmk5y1jjck7hvq92p8rlgjvdfy51hx2dmlqqd"))))
3369 (properties
3370 `((upstream-name . "PerformanceAnalytics")))
3371 (build-system r-build-system)
3372 (propagated-inputs
3373 `(("r-quadprog" ,r-quadprog)
3374 ("r-xts" ,r-xts)
3375 ("r-zoo" ,r-zoo)))
3376 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3377 (synopsis "Econometric tools for performance and risk analysis")
3378 (description "This is a collection of econometric functions for
3379 performance and risk analysis. This package aims to aid practitioners and
3380 researchers in utilizing the latest research in analysis of non-normal return
3381 streams. In general, it is most tested on return (rather than price) data on
3382 a regular scale, but most functions will work with irregular return data as
3383 well, and increasing numbers of functions will work with P&L or price data
3384 where possible.")
3385 ;; Either version may be picked.
3386 (license (list license:gpl2 license:gpl3))))
3387
3388 (define-public r-laeken
3389 (package
3390 (name "r-laeken")
3391 (version "0.5.0")
3392 (source
3393 (origin
3394 (method url-fetch)
3395 (uri (cran-uri "laeken" version))
3396 (sha256
3397 (base32
3398 "1g9r3y7b0gl91hijk9awa8rjk97mqpkxinzq2cgmx0m38ng9ylpa"))))
3399 (build-system r-build-system)
3400 (propagated-inputs
3401 `(("r-boot" ,r-boot)
3402 ("r-mass" ,r-mass)))
3403 (home-page "https://cran.r-project.org/web/packages/laeken/")
3404 (synopsis "Estimation of indicators on social exclusion and poverty")
3405 (description "This package provides tools for the estimation of indicators
3406 on social exclusion and poverty, as well as an implementation of Pareto tail
3407 modeling for empirical income distributions.")
3408 (license license:gpl2+)))
3409
3410 (define-public r-vcd
3411 (package
3412 (name "r-vcd")
3413 (version "1.4-4")
3414 (source
3415 (origin
3416 (method url-fetch)
3417 (uri (cran-uri "vcd" version))
3418 (sha256
3419 (base32
3420 "1lp99h0wvsc61l1dgcqjxdrcgpgw88ak430cdsv43kmm43qssqd5"))))
3421 (build-system r-build-system)
3422 (propagated-inputs
3423 `(("r-colorspace" ,r-colorspace)
3424 ("r-lmtest" ,r-lmtest)
3425 ("r-mass" ,r-mass)))
3426 (home-page "https://cran.r-project.org/web/packages/vcd/")
3427 (synopsis "Visualizing categorical data")
3428 (description "This package provides visualization techniques, data sets,
3429 summary and inference procedures aimed particularly at categorical data.
3430 Special emphasis is given to highly extensible grid graphics. The package was
3431 originally inspired by the book \"Visualizing Categorical Data\" by Michael
3432 Friendly and is now the main support package for a new book, \"Discrete Data
3433 Analysis with R\" by Michael Friendly and David Meyer (2015).")
3434 (license license:gpl2)))
3435
3436 (define-public r-ica
3437 (package
3438 (name "r-ica")
3439 (version "1.0-2")
3440 (source
3441 (origin
3442 (method url-fetch)
3443 (uri (cran-uri "ica" version))
3444 (sha256
3445 (base32
3446 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
3447 (build-system r-build-system)
3448 (home-page "https://cran.r-project.org/web/packages/ica/")
3449 (synopsis "Independent component analysis")
3450 (description "This package provides tools for @dfn{Independent Component
3451 Analysis} (ICA) using various algorithms: FastICA,
3452 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
3453 of Eigenmatrices} (JADE).")
3454 (license license:gpl2+)))
3455
3456 (define-public r-dtw
3457 (package
3458 (name "r-dtw")
3459 (version "1.20-1")
3460 (source
3461 (origin
3462 (method url-fetch)
3463 (uri (cran-uri "dtw" version))
3464 (sha256
3465 (base32
3466 "1w301xwizncy5r8v9rwwdxfshydgp3l1pnjla1fjn6n8lx3imjj3"))))
3467 (build-system r-build-system)
3468 (propagated-inputs `(("r-proxy" ,r-proxy)))
3469 (home-page "http://dtw.r-forge.r-project.org/")
3470 (synopsis "Dynamic Time Warping Algorithms")
3471 (description "This package provides a comprehensive implementation of
3472 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
3473 optimal (least cumulative distance) alignment between points of two time
3474 series. Common DTW variants covered include local (slope) and global (window)
3475 constraints, subsequence matches, arbitrary distance definitions,
3476 normalizations, minimum variance matching, and so on.")
3477 (license license:gpl2+)))
3478
3479 (define-public r-sdmtools
3480 (package
3481 (name "r-sdmtools")
3482 (version "1.1-221.1")
3483 (source
3484 (origin
3485 (method url-fetch)
3486 (uri (cran-uri "SDMTools" version))
3487 (sha256
3488 (base32
3489 "1fsgnlc7glawimzijp11j53g5bnfp1mdq9wb0754idmxcdi8a99q"))))
3490 (properties `((upstream-name . "SDMTools")))
3491 (build-system r-build-system)
3492 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
3493 (home-page "http://www.rforge.net/SDMTools/")
3494 (synopsis "Species distribution modelling tools")
3495 (description "This package provides a set of tools for post processing
3496 the outcomes of species distribution modeling exercises. It includes novel
3497 methods for comparing models and tracking changes in distributions through
3498 time. It further includes methods for visualizing outcomes, selecting
3499 thresholds, calculating measures of accuracy and landscape fragmentation
3500 statistics, etc.")
3501 (license license:gpl3+)))
3502
3503 (define-public r-scatterplot3d
3504 (package
3505 (name "r-scatterplot3d")
3506 (version "0.3-41")
3507 (source
3508 (origin
3509 (method url-fetch)
3510 (uri (cran-uri "scatterplot3d" version))
3511 (sha256
3512 (base32
3513 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
3514 (build-system r-build-system)
3515 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
3516 (synopsis "3D scatter plot")
3517 (description "This package provides an implementation of scatter plots for
3518 plotting. a three dimensional point cloud.")
3519 (license license:gpl2)))
3520
3521 (define-public r-ggridges
3522 (package
3523 (name "r-ggridges")
3524 (version "0.5.1")
3525 (source
3526 (origin
3527 (method url-fetch)
3528 (uri (cran-uri "ggridges" version))
3529 (sha256
3530 (base32
3531 "0dhwcpy785ac2ny5bjp284595nnybi3554wd0yffsli0vzf7ry01"))))
3532 (build-system r-build-system)
3533 (propagated-inputs
3534 `(("r-ggplot2" ,r-ggplot2)
3535 ("r-plyr" ,r-plyr)
3536 ("r-scales" ,r-scales)
3537 ("r-withr" ,r-withr)))
3538 (home-page "https://github.com/clauswilke/ggridges")
3539 (synopsis "Ridgeline plots in ggplot2")
3540 (description
3541 "Ridgeline plots provide a convenient way of visualizing changes in
3542 distributions over time or space. This package enables the creation of such
3543 plots in @code{ggplot2}.")
3544 (license license:gpl2)))
3545
3546 (define-public r-ggjoy
3547 (package
3548 (name "r-ggjoy")
3549 (version "0.4.1")
3550 (source
3551 (origin
3552 (method url-fetch)
3553 (uri (cran-uri "ggjoy" version))
3554 (sha256
3555 (base32
3556 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
3557 (build-system r-build-system)
3558 (propagated-inputs
3559 `(("r-ggplot2" ,r-ggplot2)
3560 ("r-ggridges" ,r-ggridges)))
3561 (home-page "https://github.com/clauswilke/ggjoy")
3562 (synopsis "Joyplots in ggplot2")
3563 (description "Joyplots provide a convenient way of visualizing changes in
3564 distributions over time or space. This package enables the creation of such
3565 plots in @code{ggplot2}.")
3566 (license license:gpl2)))
3567
3568 (define-public r-cli
3569 (package
3570 (name "r-cli")
3571 (version "1.1.0")
3572 (source
3573 (origin
3574 (method url-fetch)
3575 (uri (cran-uri "cli" version))
3576 (sha256
3577 (base32
3578 "02hdwvdq5nic6dhxj88jbgsc9m8yrz3yibigg6szkggxyk6hzh2g"))))
3579 (build-system r-build-system)
3580 (propagated-inputs
3581 `(("r-assertthat" ,r-assertthat)
3582 ("r-crayon" ,r-crayon)))
3583 (home-page "https://github.com/r-lib/cli#readme")
3584 (synopsis "Helpers for developing command line interfaces")
3585 (description "This package provides a suite of tools designed to build
3586 attractive command line interfaces (CLIs). It includes tools for drawing
3587 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
3588 (license license:expat)))
3589
3590 (define-public r-argparser
3591 (package
3592 (name "r-argparser")
3593 (version "0.4")
3594 (source
3595 (origin
3596 (method url-fetch)
3597 (uri (cran-uri "argparser" version))
3598 (sha256
3599 (base32
3600 "0s1wxshx4jk69wfxhycx973q6y8cmqrfymyjklhq1i8xrj0kmmx9"))))
3601 (build-system r-build-system)
3602 (home-page "https://bitbucket.org/djhshih/argparser")
3603 (synopsis "Command-line argument parser")
3604 (description
3605 "This package provides a cross-platform command-line argument parser
3606 written purely in R with no external dependencies. It is useful with the
3607 Rscript front-end and facilitates turning an R script into an executable
3608 script.")
3609 (license license:gpl3+)))
3610
3611 (define-public r-debugme
3612 (package
3613 (name "r-debugme")
3614 (version "1.1.0")
3615 (source
3616 (origin
3617 (method url-fetch)
3618 (uri (cran-uri "debugme" version))
3619 (sha256
3620 (base32
3621 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
3622 (build-system r-build-system)
3623 (propagated-inputs `(("r-crayon" ,r-crayon)))
3624 (home-page "https://github.com/r-lib/debugme#readme")
3625 (synopsis "Debug R packages")
3626 (description
3627 "This package allows the user to specify debug messages as special string
3628 constants, and control debugging of packages via environment variables.")
3629 (license license:expat)))
3630
3631 (define-public r-processx
3632 (package
3633 (name "r-processx")
3634 (version "3.3.1")
3635 (source
3636 (origin
3637 (method url-fetch)
3638 (uri (cran-uri "processx" version))
3639 (sha256
3640 (base32
3641 "1bhbfacx2z2d97pz5bch45nvbvywhx2zp049czlfbdivkzgxn8v1"))))
3642 (build-system r-build-system)
3643 (propagated-inputs
3644 `(("r-ps" ,r-ps)
3645 ("r-r6" ,r-r6)))
3646 (home-page "https://github.com/r-lib/processx3")
3647 (synopsis "Execute and control system processes")
3648 (description
3649 "This package provides portable tools to run system processes in the
3650 background. It can check if a background process is running; wait on a
3651 background process to finish; get the exit status of finished processes; kill
3652 background processes and their children; restart processes. It can read the
3653 standard output and error of the processes, using non-blocking connections.
3654 @code{processx} can poll a process for standard output or error, with a
3655 timeout. It can also poll several processes at once.")
3656 (license license:expat)))
3657
3658 (define-public r-tsp
3659 (package
3660 (name "r-tsp")
3661 (version "1.1-7")
3662 (source
3663 (origin
3664 (method url-fetch)
3665 (uri (cran-uri "TSP" version))
3666 (sha256
3667 (base32
3668 "0rxxhvqi55869dg2p82hzg5kvgcqf9h60cjcg00k3pv9aw4x07kb"))))
3669 (properties `((upstream-name . "TSP")))
3670 (build-system r-build-system)
3671 (propagated-inputs `(("r-foreach" ,r-foreach)))
3672 (home-page "https://cran.r-project.org/web/packages/TSP/")
3673 (synopsis "Traveling salesperson problem (TSP)")
3674 (description "This package provides basic infrastructure and some
3675 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
3676 traveling salesman problem).")
3677 (license license:gpl3)))
3678
3679 (define-public r-qap
3680 (package
3681 (name "r-qap")
3682 (version "0.1-1")
3683 (source
3684 (origin
3685 (method url-fetch)
3686 (uri (cran-uri "qap" version))
3687 (sha256
3688 (base32
3689 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
3690 (build-system r-build-system)
3691 (native-inputs `(("gfortran" ,gfortran)))
3692 (home-page "https://cran.r-project.org/web/packages/qap/")
3693 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
3694 (description "This package implements heuristics for the @dfn{quadratic
3695 assignment problem} (QAP). Currently only a simulated annealing heuristic is
3696 available.")
3697 (license license:gpl3)))
3698
3699 (define-public r-gclus
3700 (package
3701 (name "r-gclus")
3702 (version "1.3.2")
3703 (source
3704 (origin
3705 (method url-fetch)
3706 (uri (cran-uri "gclus" version))
3707 (sha256
3708 (base32
3709 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
3710 (build-system r-build-system)
3711 (propagated-inputs `(("r-cluster" ,r-cluster)))
3712 (home-page "https://cran.r-project.org/web/packages/gclus/")
3713 (synopsis "Clustering graphics")
3714 (description "This package orders panels in scatterplot matrices and
3715 parallel coordinate displays by some merit index. It contains various indices
3716 of merit, ordering functions, and enhanced versions of @code{pairs} and
3717 @code{parcoord} which color panels according to their merit level.")
3718 (license license:gpl2+)))
3719
3720 (define-public r-webshot
3721 (package
3722 (name "r-webshot")
3723 (version "0.5.1")
3724 (source
3725 (origin
3726 (method url-fetch)
3727 (uri (cran-uri "webshot" version))
3728 (sha256
3729 (base32
3730 "08sb1xi376pfy1vwilk2d68zljsg9yiv04n2dkqz383gdhh0sxdr"))))
3731 (build-system r-build-system)
3732 (propagated-inputs
3733 `(("r-callr" ,r-callr)
3734 ("r-jsonlite" ,r-jsonlite)
3735 ("r-magrittr" ,r-magrittr)))
3736 (home-page "https://github.com/wch/webshot/")
3737 (synopsis "Take screenshots of web pages")
3738 (description
3739 "Webshot makes it easy to take screenshots of web pages from within R.
3740 It can also run Shiny applications locally and take screenshots of the
3741 application; and it can render and screenshot static as well as interactive R
3742 Markdown documents.")
3743 (license license:gpl2)))
3744
3745 (define-public r-seriation
3746 (package
3747 (name "r-seriation")
3748 (version "1.2-7")
3749 (source
3750 (origin
3751 (method url-fetch)
3752 (uri (cran-uri "seriation" version))
3753 (sha256
3754 (base32
3755 "0dbz5b5msy4fr2whhphyriqk1xc6305zpjq59rrwxyz3d7rzwpa6"))))
3756 (build-system r-build-system)
3757 (propagated-inputs
3758 `(("r-cluster" ,r-cluster)
3759 ("r-colorspace" ,r-colorspace)
3760 ("r-dendextend" ,r-dendextend)
3761 ("r-gclus" ,r-gclus)
3762 ("r-gplots" ,r-gplots)
3763 ("r-mass" ,r-mass)
3764 ("r-qap" ,r-qap)
3765 ("r-registry" ,r-registry)
3766 ("r-tsp" ,r-tsp)))
3767 (native-inputs `(("gfortran" ,gfortran)))
3768 (home-page "http://s2.smu.edu/IDA/seriation/")
3769 (synopsis "Infrastructure for ordering objects using seriation")
3770 (description
3771 "This package provides infrastructure for seriation with an
3772 implementation of several seriation/sequencing techniques to reorder matrices,
3773 dissimilarity matrices, and dendrograms. It also provides (optimally)
3774 reordered heatmaps, color images and clustering visualizations like
3775 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
3776 iVAT).")
3777 (license license:gpl3)))
3778
3779 (define-public r-xfun
3780 (package
3781 (name "r-xfun")
3782 (version "0.8")
3783 (source
3784 (origin
3785 (method url-fetch)
3786 (uri (cran-uri "xfun" version))
3787 (sha256
3788 (base32
3789 "05jlbi5byqpw0fkhmmxqglnaxh9gwbcigx77kcpw1pkxnpwfry62"))))
3790 (build-system r-build-system)
3791 (home-page "https://github.com/yihui/xfun")
3792 (synopsis "Miscellaneous functions")
3793 (description
3794 "This package provides miscellaneous functions commonly used in other
3795 packages maintained by Yihui Xie.")
3796 (license license:expat)))
3797
3798 (define-public r-utf8
3799 (package
3800 (name "r-utf8")
3801 (version "1.1.4")
3802 (source
3803 (origin
3804 (method url-fetch)
3805 (uri (cran-uri "utf8" version))
3806 (sha256
3807 (base32
3808 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
3809 (build-system r-build-system)
3810 (home-page "https://github.com/patperry/r-utf8")
3811 (synopsis "Unicode text processing")
3812 (description
3813 "This package provides tools to process and print UTF-8 encoded
3814 international text (Unicode). Input, validate, normalize, encode, format, and
3815 display.")
3816 (license license:asl2.0)))
3817
3818 (define-public r-zeallot
3819 (package
3820 (name "r-zeallot")
3821 (version "0.1.0")
3822 (source
3823 (origin
3824 (method url-fetch)
3825 (uri (cran-uri "zeallot" version))
3826 (sha256
3827 (base32
3828 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
3829 (build-system r-build-system)
3830 (home-page "https://github.com/nteetor/zeallot")
3831 (synopsis "Multiple, unpacking, and destructuring assignment")
3832 (description
3833 "This package provides a @code{%<-%} operator to perform multiple,
3834 unpacking, and destructuring assignment in R. The operator unpacks the
3835 right-hand side of an assignment into multiple values and assigns these values
3836 to variables on the left-hand side of the assignment.")
3837 (license license:expat)))
3838
3839 (define-public r-vctrs
3840 (package
3841 (name "r-vctrs")
3842 (version "0.1.0")
3843 (source
3844 (origin
3845 (method url-fetch)
3846 (uri (cran-uri "vctrs" version))
3847 (sha256
3848 (base32
3849 "13w1r8zpalirpfaz5sykpn0mj4jmhxi2qkdcfq081ixlfjyzwa6c"))))
3850 (build-system r-build-system)
3851 (propagated-inputs
3852 `(("r-backports" ,r-backports)
3853 ("r-digest" ,r-digest)
3854 ("r-glue" ,r-glue)
3855 ("r-rlang" ,r-rlang)
3856 ("r-zeallot" ,r-zeallot)))
3857 (home-page "https://github.com/r-lib/vctrs")
3858 (synopsis "Vector helpers")
3859 (description
3860 "There are three main goals to the @code{vctrs} package:
3861
3862 @enumerate
3863 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
3864 @code{length()} and @code{class()}. These definitions are paired with a
3865 framework for type-coercion and size-recycling.
3866 @item To define type- and size-stability as desirable function properties, use
3867 them to analyse existing base function, and to propose better alternatives.
3868 This work has been particularly motivated by thinking about the ideal
3869 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
3870 @item To provide a new @code{vctr} base class that makes it easy to create new
3871 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
3872 a few new @code{vctrs} generics, making implementation considerably simpler
3873 and more robust.
3874 @end enumerate\n")
3875 (license license:gpl3)))
3876
3877 (define-public r-pillar
3878 (package
3879 (name "r-pillar")
3880 (version "1.4.1")
3881 (source
3882 (origin
3883 (method url-fetch)
3884 (uri (cran-uri "pillar" version))
3885 (sha256
3886 (base32
3887 "0mcc09caxm69pghhz6b8vawj9ni63aijv5qba53pg4ph7rxclwgm"))))
3888 (build-system r-build-system)
3889 (propagated-inputs
3890 `(("r-cli" ,r-cli)
3891 ("r-crayon" ,r-crayon)
3892 ("r-fansi" ,r-fansi)
3893 ("r-rlang" ,r-rlang)
3894 ("r-utf8" ,r-utf8)
3895 ("r-vctrs" ,r-vctrs)))
3896 (home-page "https://github.com/r-lib/pillar")
3897 (synopsis "Coloured formatting for columns")
3898 (description
3899 "This package provides a @code{pillar} generic designed for formatting
3900 columns of data using the full range of colours provided by modern
3901 terminals.")
3902 (license license:gpl3)))
3903
3904 (define-public r-uuid
3905 (package
3906 (name "r-uuid")
3907 (version "0.1-2")
3908 (source
3909 (origin
3910 (method url-fetch)
3911 (uri (cran-uri "uuid" version))
3912 (sha256
3913 (base32
3914 "1gmisd630fc8ybg845hbg13wmm3pk3npaamrh5wqbc1nqd6p0wfx"))))
3915 (build-system r-build-system)
3916 (home-page "http://www.rforge.net/uuid")
3917 (synopsis "Tools for generating and handling of UUIDs")
3918 (description
3919 "This package provides tools for generating and handling of
3920 @dfn{Universally Unique Identifiers} (UUIDs).")
3921 (license license:expat)))
3922
3923 (define-public r-tinytex
3924 (package
3925 (name "r-tinytex")
3926 (version "0.14")
3927 (source
3928 (origin
3929 (method url-fetch)
3930 (uri (cran-uri "tinytex" version))
3931 (sha256
3932 (base32
3933 "0aab7ybc6kkxxk3lzdmbla8zcpp6nmlahchc33miv28cmnqw363w"))))
3934 (build-system r-build-system)
3935 (propagated-inputs
3936 `(("r-xfun" ,r-xfun)))
3937 (home-page "https://github.com/yihui/tinytex")
3938 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
3939 (description
3940 "This package provides helper functions to install and maintain the LaTeX
3941 distribution named TinyTeX, a lightweight, cross-platform, portable, and
3942 easy-to-maintain version of TeX Live. This package also contains helper
3943 functions to compile LaTeX documents, and install missing LaTeX packages
3944 automatically.")
3945 (license license:expat)))
3946
3947 (define-public r-metap
3948 (package
3949 (name "r-metap")
3950 (version "1.1")
3951 (source
3952 (origin
3953 (method url-fetch)
3954 (uri (cran-uri "metap" version))
3955 (sha256
3956 (base32
3957 "10kv7z8pik5iy374h399vws0ldf41y2nczlwh8axqf9dcwl084i0"))))
3958 (build-system r-build-system)
3959 (propagated-inputs
3960 `(("r-lattice" ,r-lattice)
3961 ("r-rdpack" ,r-rdpack)))
3962 (home-page "http://www.dewey.myzen.co.uk/meta/meta.html")
3963 (synopsis "Meta-analysis of significance values")
3964 (description
3965 "The canonical way to perform meta-analysis involves using effect sizes.
3966 When they are not available this package provides a number of methods for
3967 meta-analysis of significance values including the methods of Edgington,
3968 Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate
3969 published results; and a routine for graphical display.")
3970 (license license:gpl2)))
3971
3972 (define-public r-network
3973 (package
3974 (name "r-network")
3975 (version "1.15")
3976 (source
3977 (origin
3978 (method url-fetch)
3979 (uri (cran-uri "network" version))
3980 (sha256
3981 (base32
3982 "1cscw5978fyixhkicf06c4b2g1yf6gyi8vx86cz3dy75d41mrgjw"))))
3983 (build-system r-build-system)
3984 (propagated-inputs
3985 `(("r-magrittr" ,r-magrittr)
3986 ("r-tibble" ,r-tibble)))
3987 (home-page "https://statnet.org/")
3988 (synopsis "Classes for relational data")
3989 (description
3990 "This package provides tools to create and modify network objects. The
3991 @code{network} class can represent a range of relational data types, and
3992 supports arbitrary vertex/edge/graph attributes.")
3993 (license license:gpl2+)))
3994
3995 (define-public r-statnet-common
3996 (package
3997 (name "r-statnet-common")
3998 (version "4.3.0")
3999 (source
4000 (origin
4001 (method url-fetch)
4002 (uri (cran-uri "statnet.common" version))
4003 (sha256
4004 (base32
4005 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4006 (properties
4007 `((upstream-name . "statnet.common")))
4008 (build-system r-build-system)
4009 (propagated-inputs
4010 `(("r-coda" ,r-coda)))
4011 (home-page "https://statnet.org")
4012 (synopsis "R scripts and utilities used by the Statnet software")
4013 (description "This package provides non-statistical utilities used by the
4014 software developed by the Statnet Project.")
4015 (license license:gpl3)))
4016
4017 (define-public r-sna
4018 (package
4019 (name "r-sna")
4020 (version "2.4")
4021 (source
4022 (origin
4023 (method url-fetch)
4024 (uri (cran-uri "sna" version))
4025 (sha256
4026 (base32
4027 "1ks8819qvpdfansfqj9p32s1rhvl26frvbi78m4rx1wd1qcv74i2"))))
4028 (build-system r-build-system)
4029 (propagated-inputs
4030 `(("r-network" ,r-network)
4031 ("r-statnet-common" ,r-statnet-common)))
4032 (home-page "https://statnet.org")
4033 (synopsis "Tools for social network analysis")
4034 (description
4035 "This package provides a range of tools for social network analysis,
4036 including node and graph-level indices, structural distance and covariance
4037 methods, structural equivalence detection, network regression, random graph
4038 generation, and 2D/3D network visualization.")
4039 (license license:gpl2+)))
4040
4041 (define-public r-ttr
4042 (package
4043 (name "r-ttr")
4044 (version "0.23-4")
4045 (source
4046 (origin
4047 (method url-fetch)
4048 (uri (cran-uri "TTR" version))
4049 (sha256
4050 (base32
4051 "18mzyv6cmxmqyqsfwlx2b2k055887mfgc2jgj8xkn8c6m56n05zb"))))
4052 (properties `((upstream-name . "TTR")))
4053 (build-system r-build-system)
4054 (propagated-inputs
4055 `(("r-curl" ,r-curl)
4056 ("r-xts" ,r-xts)
4057 ("r-zoo" ,r-zoo)))
4058 (native-inputs `(("gfortran" ,gfortran)))
4059 (home-page "https://github.com/joshuaulrich/TTR")
4060 (synopsis "Technical trading rules")
4061 (description
4062 "This package provides functions and data to construct technical trading
4063 rules with R.")
4064 (license license:gpl2)))
4065
4066 (define-public r-leaps
4067 (package
4068 (name "r-leaps")
4069 (version "3.0")
4070 (source
4071 (origin
4072 (method url-fetch)
4073 (uri (cran-uri "leaps" version))
4074 (sha256
4075 (base32
4076 "11gjmn1azrjw5xlvdb4gknj9985kck9x8zb9np1rnk2smp6pka2m"))))
4077 (build-system r-build-system)
4078 (native-inputs `(("gfortran" ,gfortran)))
4079 (home-page "https://cran.r-project.org/web/packages/leaps/")
4080 (synopsis "Regression subset selection")
4081 (description
4082 "This package provides tools for regression subset selection, including
4083 exhaustive search.")
4084 (license license:gpl2+)))
4085
4086 (define-public r-splus2r
4087 (package
4088 (name "r-splus2r")
4089 (version "1.2-2")
4090 (source
4091 (origin
4092 (method url-fetch)
4093 (uri (cran-uri "splus2R" version))
4094 (sha256
4095 (base32
4096 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4097 (properties `((upstream-name . "splus2R")))
4098 (build-system r-build-system)
4099 (native-inputs `(("gfortran" ,gfortran)))
4100 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4101 (synopsis "Supplemental S-PLUS functionality in R")
4102 (description
4103 "Currently there are many functions in S-PLUS that are missing in R. To
4104 facilitate the conversion of S-PLUS packages to R packages, this package
4105 provides some missing S-PLUS functionality in R.")
4106 (license license:gpl2)))
4107
4108 (define-public r-ifultools
4109 (package
4110 (name "r-ifultools")
4111 (version "2.0-5")
4112 (source
4113 (origin
4114 (method url-fetch)
4115 (uri (cran-uri "ifultools" version))
4116 (sha256
4117 (base32
4118 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4119 (build-system r-build-system)
4120 (propagated-inputs
4121 `(("r-mass" ,r-mass)
4122 ("r-splus2r" ,r-splus2r)))
4123 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4124 (synopsis "Insightful research tools")
4125 (description "This package provides C code used by the wmtsa, fractal, and
4126 sapa R packages.")
4127 (license license:gpl2)))
4128
4129 (define-public r-sapa
4130 (package
4131 (name "r-sapa")
4132 (version "2.0-2")
4133 (source
4134 (origin
4135 (method url-fetch)
4136 (uri (cran-uri "sapa" version))
4137 (sha256
4138 (base32
4139 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4140 (build-system r-build-system)
4141 (propagated-inputs
4142 `(("r-ifultools" ,r-ifultools)
4143 ("r-splus2r" ,r-splus2r)))
4144 (home-page "https://cran.r-project.org/web/packages/sapa/")
4145 (synopsis "Spectral analysis for physical applications")
4146 (description "This package provides software for the book Spectral
4147 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4148 Cambridge University Press, 1993.")
4149 (license license:gpl2)))
4150
4151 (define-public r-aggregation
4152 (package
4153 (name "r-aggregation")
4154 (version "1.0.1")
4155 (source
4156 (origin
4157 (method url-fetch)
4158 (uri (cran-uri "aggregation" version))
4159 (sha256
4160 (base32
4161 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4162 (build-system r-build-system)
4163 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4164 (synopsis "Methods for p-value aggregation")
4165 (description
4166 "This package contains functionality for performing the following methods
4167 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4168 Fisher's method), and Sidak correction.")
4169 (license license:gpl3)))
4170
4171 (define-public r-quantmod
4172 (package
4173 (name "r-quantmod")
4174 (version "0.4-15")
4175 (source
4176 (origin
4177 (method url-fetch)
4178 (uri (cran-uri "quantmod" version))
4179 (sha256
4180 (base32
4181 "0lyzaf5ypk93v6zj9gdghy05cc7cxgn9yasv1apx5r6qsjcfgwky"))))
4182 (build-system r-build-system)
4183 (propagated-inputs
4184 `(("r-curl" ,r-curl)
4185 ("r-ttr" ,r-ttr)
4186 ("r-xts" ,r-xts)
4187 ("r-zoo" ,r-zoo)))
4188 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4189 (synopsis "Quantitative financial modelling framework")
4190 (description "This package provides a quantitative financial modelling
4191 framework to allow users to specify, build, trade, and analyse quantitative
4192 financial trading strategies.")
4193 (license license:gpl3)))
4194
4195 (define-public r-tseries
4196 (package
4197 (name "r-tseries")
4198 (version "0.10-47")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (cran-uri "tseries" version))
4203 (sha256
4204 (base32
4205 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4206 (build-system r-build-system)
4207 (propagated-inputs
4208 `(("r-quadprog" ,r-quadprog)
4209 ("r-quantmod" ,r-quantmod)
4210 ("r-zoo" ,r-zoo)))
4211 (native-inputs
4212 `(("gfortran" ,gfortran)))
4213 (home-page "https://cran.r-project.org/web/packages/tseries/")
4214 (synopsis "Time series analysis and computational finance")
4215 (description
4216 "This package provides functions relating to time series analysis and
4217 computational finance.")
4218 (license license:gpl2)))
4219
4220 (define-public r-wmtsa
4221 (package
4222 (name "r-wmtsa")
4223 (version "2.0-3")
4224 (source
4225 (origin
4226 (method url-fetch)
4227 (uri (cran-uri "wmtsa" version))
4228 (sha256
4229 (base32
4230 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4231 (build-system r-build-system)
4232 (propagated-inputs
4233 `(("r-ifultools" ,r-ifultools)
4234 ("r-mass" ,r-mass)
4235 ("r-splus2r" ,r-splus2r)))
4236 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4237 (synopsis "Wavelet methods for time series analysis")
4238 (description
4239 "This package provides software to accompany the book \"Wavelet Methods
4240 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4241 University Press, 2000.")
4242 (license license:gpl2)))
4243
4244 (define-public r-tsa
4245 (package
4246 (name "r-tsa")
4247 (version "1.2")
4248 (source
4249 (origin
4250 (method url-fetch)
4251 (uri (cran-uri "TSA" version))
4252 (sha256
4253 (base32
4254 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4255 (properties `((upstream-name . "TSA")))
4256 (build-system r-build-system)
4257 (propagated-inputs
4258 `(("r-leaps" ,r-leaps)
4259 ("r-locfit" ,r-locfit)
4260 ("r-mgcv" ,r-mgcv)))
4261 (home-page "http://www.stat.uiowa.edu/~kchan/TSA.htm")
4262 (synopsis "Time series analysis")
4263 (description
4264 "This package contains R functions and datasets detailed in the book
4265 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4266 Cryer and Kung-Sik Chan.")
4267 (license license:gpl2+)))
4268
4269 (define-public r-extradistr
4270 (package
4271 (name "r-extradistr")
4272 (version "1.8.11")
4273 (source
4274 (origin
4275 (method url-fetch)
4276 (uri (cran-uri "extraDistr" version))
4277 (sha256
4278 (base32
4279 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4280 (properties `((upstream-name . "extraDistr")))
4281 (build-system r-build-system)
4282 (propagated-inputs
4283 `(("r-rcpp" ,r-rcpp)))
4284 (home-page "https://github.com/twolodzko/extraDistr")
4285 (synopsis "Additional univariate and multivariate distributions")
4286 (description
4287 "This package implements density, distribution functions, quantile
4288 functions and random generation functions for a large number of univariate and
4289 multivariate distributions.")
4290 (license license:gpl2)))
4291
4292 (define-public r-fractal
4293 (package
4294 (name "r-fractal")
4295 (version "2.0-4")
4296 (source
4297 (origin
4298 (method url-fetch)
4299 (uri (cran-uri "fractal" version))
4300 (sha256
4301 (base32
4302 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4303 (build-system r-build-system)
4304 (propagated-inputs
4305 `(("r-ifultools" ,r-ifultools)
4306 ("r-mass" ,r-mass)
4307 ("r-sapa" ,r-sapa)
4308 ("r-scatterplot3d" ,r-scatterplot3d)
4309 ("r-splus2r" ,r-splus2r)
4310 ("r-wmtsa" ,r-wmtsa)))
4311 (home-page "https://cran.r-project.org/web/packages/fractal/")
4312 (synopsis "Fractal time series modeling and analysis")
4313 (description
4314 "This package provides tools for stochastic fractal and deterministic
4315 chaotic time series analysis.")
4316 (license license:gpl2)))
4317
4318 (define-public r-urca
4319 (package
4320 (name "r-urca")
4321 (version "1.3-0")
4322 (source
4323 (origin
4324 (method url-fetch)
4325 (uri (cran-uri "urca" version))
4326 (sha256
4327 (base32
4328 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4329 (build-system r-build-system)
4330 (propagated-inputs `(("r-nlme" ,r-nlme)))
4331 (native-inputs `(("gfortran" ,gfortran)))
4332 (home-page "https://cran.r-project.org/web/packages/urca/")
4333 (synopsis "Unit root and cointegration tests for time series data")
4334 (description
4335 "This package provides unit root and cointegration tests encountered in
4336 applied econometric analysis.")
4337 (license license:gpl2+)))
4338
4339 (define-public r-cubature
4340 (package
4341 (name "r-cubature")
4342 (version "2.0.3")
4343 (source
4344 (origin
4345 (method url-fetch)
4346 (uri (cran-uri "cubature" version))
4347 (sha256
4348 (base32
4349 "0wvs80i4axj7pdcy9gjl08qzjbcjkldha94xy4gdxc34vgmh7gvr"))))
4350 (build-system r-build-system)
4351 (propagated-inputs
4352 `(("r-rcpp" ,r-rcpp)))
4353 (home-page "https://github.com/bnaras/cubature")
4354 (synopsis "Adaptive multivariate integration over hypercubes")
4355 (description
4356 "This package is an R wrapper around the cubature C library for adaptive
4357 multivariate integration over hypercubes. This version provides both
4358 @code{hcubature} and @code{pcubature} routines in addition to a vector
4359 interface.")
4360 ;; The included cubature C library is released under GPLv2+, but the
4361 ;; wrapper declares the license to be GPLv3+.
4362 (license (list license:gpl2+ license:gpl3+))))
4363
4364 (define-public r-trend
4365 (package
4366 (name "r-trend")
4367 (version "1.1.1")
4368 (source
4369 (origin
4370 (method url-fetch)
4371 (uri (cran-uri "trend" version))
4372 (sha256
4373 (base32
4374 "1bd567n15k2vpmgbx02584k5kglrc58mlb5kgd07wdss3knpa48q"))))
4375 (build-system r-build-system)
4376 (propagated-inputs
4377 `(("r-extradistr" ,r-extradistr)))
4378 (native-inputs
4379 `(("gfortran" ,gfortran)))
4380 (home-page "https://cran.r-project.org/web/packages/trend/")
4381 (synopsis "Non-parametric trend tests and change-point detection")
4382 (description
4383 "The analysis of environmental data often requires the detection of
4384 trends and change-points. This package includes tests for trend
4385 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
4386 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
4387 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
4388 correlation trend test), change-point detection (Lanzante's test procedures,
4389 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
4390 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
4391 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
4392 sample Robust Rank-Order Distributional Test.")
4393 (license license:gpl3)))
4394
4395 (define-public r-expm
4396 (package
4397 (name "r-expm")
4398 (version "0.999-4")
4399 (source
4400 (origin
4401 (method url-fetch)
4402 (uri (cran-uri "expm" version))
4403 (sha256
4404 (base32
4405 "15k0acg2aqb2ajhwal6l7vhhp03m4lg579805d34554cl0kn9l2q"))))
4406 (build-system r-build-system)
4407 (propagated-inputs `(("r-matrix" ,r-matrix)))
4408 (native-inputs `(("gfortran" ,gfortran)))
4409 (home-page "https://r-forge.r-project.org/projects/expm/")
4410 (synopsis "Tools for matrix exponentials and related quantities")
4411 (description
4412 "This package provides tools for the computation of the matrix
4413 exponential, logarithm, square root, and related quantities.")
4414 (license license:gpl2+)))
4415
4416 (define-public r-complexplus
4417 (package
4418 (name "r-complexplus")
4419 (version "2.1")
4420 (source
4421 (origin
4422 (method url-fetch)
4423 (uri (cran-uri "complexplus" version))
4424 (sha256
4425 (base32
4426 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
4427 (build-system r-build-system)
4428 (propagated-inputs
4429 `(("r-expm" ,r-expm)
4430 ("r-matrix" ,r-matrix)))
4431 (home-page "https://cran.r-project.org/web/packages/complexplus/")
4432 (synopsis "Functions of complex or real variables")
4433 (description
4434 "This package extends several functions to the complex domain, including
4435 the matrix exponential and logarithm, and the determinant.")
4436 (license license:gpl2)))
4437
4438 (define-public r-phontools
4439 (package
4440 (name "r-phontools")
4441 (version "0.2-2.1")
4442 (source
4443 (origin
4444 (method url-fetch)
4445 (uri (cran-uri "phonTools" version))
4446 (sha256
4447 (base32
4448 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
4449 (properties `((upstream-name . "phonTools")))
4450 (build-system r-build-system)
4451 (home-page "http://www.santiagobarreda.com/rscripts.html")
4452 (synopsis "Tools for phonetic and acoustic analyses")
4453 (description
4454 "This package contains tools for the organization, display, and analysis
4455 of the sorts of data frequently encountered in phonetics research and
4456 experimentation, including the easy creation of IPA vowel plots, and the
4457 creation and manipulation of WAVE audio files.")
4458 (license license:bsd-2)))
4459
4460 (define-public r-np
4461 (package
4462 (name "r-np")
4463 (version "0.60-9")
4464 (source
4465 (origin
4466 (method url-fetch)
4467 (uri (cran-uri "np" version))
4468 (sha256
4469 (base32
4470 "1z4jcpx8bbgwslv42wrphfd1qfq965qjn0kmfxm5f6hbbycahcgy"))))
4471 (build-system r-build-system)
4472 (propagated-inputs
4473 `(("r-boot" ,r-boot)
4474 ("r-cubature" ,r-cubature)
4475 ("r-quadprog" ,r-quadprog)
4476 ("r-quantreg" ,r-quantreg)))
4477 (home-page "https://github.com/JeffreyRacine/R-Package-np")
4478 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
4479 (description "This package provides non-parametric (and semi-parametric)
4480 kernel methods that seamlessly handle a mix of continuous, unordered, and
4481 ordered factor data types.")
4482 ;; Any version of the GPL.
4483 (license license:gpl3+)))
4484
4485 (define-public r-powerplus
4486 (package
4487 (name "r-powerplus")
4488 (version "3.1")
4489 (source
4490 (origin
4491 (method url-fetch)
4492 (uri (cran-uri "powerplus" version))
4493 (sha256
4494 (base32
4495 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
4496 (build-system r-build-system)
4497 (propagated-inputs
4498 `(("r-complexplus" ,r-complexplus)
4499 ("r-expm" ,r-expm)
4500 ("r-mass" ,r-mass)
4501 ("r-matrix" ,r-matrix)
4502 ("r-phontools" ,r-phontools)))
4503 (home-page "https://cran.r-project.org/web/packages/powerplus/")
4504 (synopsis "Exponentiation operations")
4505 (description
4506 "This package provides tools for the computation of matrix and scalar
4507 exponentiation.")
4508 (license license:gpl2)))
4509
4510 (define-public r-heatmaply
4511 (package
4512 (name "r-heatmaply")
4513 (version "0.16.0")
4514 (source
4515 (origin
4516 (method url-fetch)
4517 (uri (cran-uri "heatmaply" version))
4518 (sha256
4519 (base32
4520 "1qhxk48qh61qjxdlhl0qffdh3yh8iiwccid5ssngdv433q0cmyc1"))))
4521 (build-system r-build-system)
4522 (propagated-inputs
4523 `(("r-assertthat" ,r-assertthat)
4524 ("r-colorspace" ,r-colorspace)
4525 ("r-dendextend" ,r-dendextend)
4526 ("r-ggplot2" ,r-ggplot2)
4527 ("r-htmlwidgets" ,r-htmlwidgets)
4528 ("r-magrittr" ,r-magrittr)
4529 ("r-plotly" ,r-plotly)
4530 ("r-rcolorbrewer" ,r-rcolorbrewer)
4531 ("r-reshape2" ,r-reshape2)
4532 ("r-scales" ,r-scales)
4533 ("r-seriation" ,r-seriation)
4534 ("r-viridis" ,r-viridis)
4535 ("r-webshot" ,r-webshot)))
4536 (home-page "https://cran.r-project.org/package=heatmaply")
4537 (synopsis "Interactive cluster heat maps using plotly")
4538 (description
4539 "This package enables you to create interactive cluster heatmaps that can
4540 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
4541 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
4542 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
4543 a popular graphical method for visualizing high-dimensional data, in which a
4544 table of numbers is encoded as a grid of colored cells. The rows and columns
4545 of the matrix are ordered to highlight patterns and are often accompanied by
4546 dendrograms.")
4547 ;; Either version of the license.
4548 (license (list license:gpl2 license:gpl3))))
4549
4550 (define-public r-h5
4551 (package
4552 (name "r-h5")
4553 (version "0.9.9")
4554 (source
4555 (origin
4556 (method url-fetch)
4557 (uri (cran-uri "h5" version))
4558 (sha256
4559 (base32
4560 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
4561 (build-system r-build-system)
4562 (inputs
4563 `(("zlib" ,zlib)
4564 ("hdf5" ,hdf5)))
4565 (native-inputs
4566 `(("which" ,which)))
4567 (propagated-inputs
4568 `(("r-rcpp" ,r-rcpp)))
4569 (home-page "https://github.com/mannau/h5")
4570 (synopsis "Interface to the HDF5 Library")
4571 (description
4572 "This package provides an S4 interface to the HDF5 library supporting
4573 fast storage and retrieval of R-objects like vectors, matrices and arrays to
4574 binary files in a language independent format. The HDF5 format can therefore
4575 be used as an alternative to R's save/load mechanism. Since h5 is able to
4576 access only subsets of stored data it can also handle data sets which do not
4577 fit into memory.")
4578 (license license:bsd-2)))
4579
4580 (define-public r-cgdsr
4581 (package
4582 (name "r-cgdsr")
4583 (version "1.3.0")
4584 (source
4585 (origin
4586 (method url-fetch)
4587 (uri (cran-uri "cgdsr" version))
4588 (sha256
4589 (base32
4590 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
4591 (build-system r-build-system)
4592 (propagated-inputs
4593 `(("r-httr" ,r-httr)
4594 ("r-r-methodss3" ,r-r-methodss3)
4595 ("r-r-oo" ,r-r-oo)))
4596 (home-page "https://github.com/cBioPortal/cgdsr")
4597 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
4598 (description
4599 "This package provides a basic set of R functions for querying the Cancer
4600 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
4601 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
4602 (license license:lgpl3)))
4603
4604 (define-public r-import
4605 (package
4606 (name "r-import")
4607 (version "1.1.0")
4608 (source
4609 (origin
4610 (method url-fetch)
4611 (uri (cran-uri "import" version))
4612 (sha256
4613 (base32
4614 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
4615 (build-system r-build-system)
4616 (home-page "https://github.com/smbache/import")
4617 (synopsis "Import mechanism for R")
4618 (description
4619 "This is an alternative mechanism for importing objects from packages.
4620 The syntax allows for importing multiple objects from a package with a single
4621 command in an expressive way. The import package bridges some of the gap
4622 between using @code{library} (or @code{require}) and direct (single-object)
4623 imports. Furthermore the imported objects are not placed in the current
4624 environment. It is also possible to import objects from stand-alone @code{.R}
4625 files.")
4626 (license license:expat)))
4627
4628 (define-public r-shinyace
4629 (package
4630 (name "r-shinyace")
4631 (version "0.3.3")
4632 (source
4633 (origin
4634 (method url-fetch)
4635 (uri (cran-uri "shinyAce" version))
4636 (sha256
4637 (base32
4638 "02q6wqw349nlyf3mbf18cxif1xv9cal5qzccrdlnv73szqn9jk7j"))))
4639 (properties `((upstream-name . "shinyAce")))
4640 (build-system r-build-system)
4641 (propagated-inputs
4642 `(("r-shiny" ,r-shiny)
4643 ("r-jsonlite" ,r-jsonlite)))
4644 (home-page "http://cran.r-project.org/web/packages/shinyAce")
4645 (synopsis "Ace editor bindings for Shiny")
4646 (description
4647 "This package provides Ace editor bindings to enable a rich text editing
4648 environment within Shiny.")
4649 (license license:expat)))
4650
4651 (define-public r-base64url
4652 (package
4653 (name "r-base64url")
4654 (version "1.4")
4655 (source
4656 (origin
4657 (method url-fetch)
4658 (uri (cran-uri "base64url" version))
4659 (sha256
4660 (base32
4661 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
4662 (build-system r-build-system)
4663 (propagated-inputs
4664 `(("r-backports" ,r-backports)))
4665 (home-page "https://github.com/mllg/base64url")
4666 (synopsis "Fast and URL-safe base64 encoder and decoder")
4667 (description
4668 "This package provides a URL-safe base64 encoder and decoder. In
4669 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
4670 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
4671 encoder does not fill the string with trailing @code{=}. The resulting
4672 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
4673 and thus are safe to use in URLs or for file names. The package also comes
4674 with a simple base32 encoder/decoder suited for case insensitive file
4675 systems.")
4676 (license license:gpl3)))
4677
4678 (define-public r-radiant-data
4679 (package
4680 (name "r-radiant-data")
4681 (version "0.9.9")
4682 (source
4683 (origin
4684 (method url-fetch)
4685 (uri (cran-uri "radiant.data" version))
4686 (sha256
4687 (base32
4688 "17mgm0sggh4f7ihqmj9m3996p3pqc7h2cwx6ll1ha3kg5mx0znyn"))
4689 (modules '((guix build utils)))
4690 (snippet
4691 '(begin
4692 ;; Delete files that are under CC-NC-SA.
4693 (delete-file-recursively "inst/app/tools/help")
4694 #t))))
4695 (properties `((upstream-name . "radiant.data")))
4696 (build-system r-build-system)
4697 (propagated-inputs
4698 `(("r-base64enc" ,r-base64enc)
4699 ("r-broom" ,r-broom)
4700 ("r-car" ,r-car)
4701 ("r-curl" ,r-curl)
4702 ("r-dplyr" ,r-dplyr)
4703 ("r-dt" ,r-dt)
4704 ("r-glue" ,r-glue)
4705 ("r-ggplot2" ,r-ggplot2)
4706 ("r-gridextra" ,r-gridextra)
4707 ("r-import" ,r-import)
4708 ("r-jsonlite" ,r-jsonlite)
4709 ("r-knitr" ,r-knitr)
4710 ("r-lubridate" ,r-lubridate)
4711 ("r-magrittr" ,r-magrittr)
4712 ("r-markdown" ,r-markdown)
4713 ("r-plotly" ,r-plotly)
4714 ("r-psych" ,r-psych)
4715 ("r-readr" ,r-readr)
4716 ("r-readxl" ,r-readxl)
4717 ("r-rlang" ,r-rlang)
4718 ("r-rmarkdown" ,r-rmarkdown)
4719 ("r-rstudioapi" ,r-rstudioapi)
4720 ("r-scales" ,r-scales)
4721 ("r-shiny" ,r-shiny)
4722 ("r-shinyfiles" ,r-shinyfiles)
4723 ("r-shinyace" ,r-shinyace)
4724 ("r-stringi" ,r-stringi)
4725 ("r-tibble" ,r-tibble)
4726 ("r-tidyr" ,r-tidyr)
4727 ("r-writexl" ,r-writexl)))
4728 (home-page "https://github.com/radiant-rstats/radiant.data")
4729 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
4730 (description
4731 "The Radiant Data menu includes interfaces for loading, saving, viewing,
4732 visualizing, summarizing, transforming, and combining data. It also contains
4733 functionality to generate reproducible reports of the analyses conducted in
4734 the application.")
4735 (license license:agpl3)))
4736
4737 (define-public r-algdesign
4738 (package
4739 (name "r-algdesign")
4740 (version "1.1-7.3")
4741 (source
4742 (origin
4743 (method url-fetch)
4744 (uri (cran-uri "AlgDesign" version))
4745 (sha256
4746 (base32
4747 "0bl7mx4dnmkgs2x1fj7cqnrp7jx18mqwxyga0rzlniq12h8mc3fz"))))
4748 (properties `((upstream-name . "AlgDesign")))
4749 (build-system r-build-system)
4750 (home-page "https://github.com/jvbraun/AlgDesign")
4751 (synopsis "Algorithmic experimental design")
4752 (description
4753 "This package provides tools to calculate exact and approximate theory
4754 experimental designs for D, A, and I criteria. Very large designs may be
4755 created. Experimental designs may be blocked or blocked designs created from
4756 a candidate list, using several criteria. The blocking can be done when whole
4757 and within plot factors interact.")
4758 (license license:gpl2+)))
4759
4760 (define-public r-signal
4761 (package
4762 (name "r-signal")
4763 (version "0.7-6")
4764 (source
4765 (origin
4766 (method url-fetch)
4767 (uri (cran-uri "signal" version))
4768 (sha256
4769 (base32
4770 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
4771 (build-system r-build-system)
4772 (propagated-inputs `(("r-mass" ,r-mass)))
4773 (native-inputs `(("gfortran" ,gfortran)))
4774 (home-page "https://cran.r-project.org/web/packages/signal/")
4775 (synopsis "Signal processing")
4776 (description
4777 "This package provides a set of signal processing functions originally
4778 written for Matlab and GNU Octave. It includes filter generation utilities,
4779 filtering functions, resampling routines, and visualization of filter models.
4780 It also includes interpolation functions.")
4781 (license license:gpl2)))
4782
4783 (define-public r-gsubfn
4784 (package
4785 (name "r-gsubfn")
4786 (version "0.7")
4787 (source
4788 (origin
4789 (method url-fetch)
4790 (uri (cran-uri "gsubfn" version))
4791 (sha256
4792 (base32
4793 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
4794 (build-system r-build-system)
4795 (propagated-inputs `(("r-proto" ,r-proto)))
4796 (home-page "http://gsubfn.googlecode.com")
4797 (synopsis "Utilities for strings and function arguments.")
4798 (description
4799 "This package provides @code{gsubfn} which is like @code{gsub} but can
4800 take a replacement function or certain other objects instead of the
4801 replacement string. Matches and back references are input to the replacement
4802 function and replaced by the function output. @code{gsubfn} can be used to
4803 split strings based on content rather than delimiters and for quasi-perl-style
4804 string interpolation. The package also has facilities for translating
4805 formulas to functions and allowing such formulas in function calls instead of
4806 functions.")
4807 (license license:gpl2+)))
4808
4809 (define-public r-sqldf
4810 (package
4811 (name "r-sqldf")
4812 (version "0.4-11")
4813 (source
4814 (origin
4815 (method url-fetch)
4816 (uri (cran-uri "sqldf" version))
4817 (sha256
4818 (base32
4819 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
4820 (build-system r-build-system)
4821 (propagated-inputs
4822 `(("r-chron" ,r-chron)
4823 ("r-dbi" ,r-dbi)
4824 ("r-gsubfn" ,r-gsubfn)
4825 ("r-proto" ,r-proto)
4826 ("r-rsqlite" ,r-rsqlite)))
4827 (home-page "https://github.com/ggrothendieck/sqldf")
4828 (synopsis "Manipulate R data frames using SQL")
4829 (description
4830 "The @code{sqldf} function is typically passed a single argument which is
4831 an SQL select statement where the table names are ordinary R data frame names.
4832 @code{sqldf} transparently sets up a database, imports the data frames into
4833 that database, performs the SQL statement and returns the result using a
4834 heuristic to determine which class to assign to each column of the returned
4835 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
4836 used to read filtered files into R even if the original files are larger than
4837 R itself can handle.")
4838 (license license:gpl2)))
4839
4840 (define-public r-abind
4841 (package
4842 (name "r-abind")
4843 (version "1.4-5")
4844 (source
4845 (origin
4846 (method url-fetch)
4847 (uri (cran-uri "abind" version))
4848 (sha256
4849 (base32
4850 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
4851 (build-system r-build-system)
4852 (home-page "https://cran.r-project.org/web/packages/abind/")
4853 (synopsis "Combine multidimensional arrays")
4854 (description
4855 "This package provides tools to combine multidimensional arrays into a
4856 single array. This is a generalization of @code{cbind} and @code{rbind}. It
4857 works with vectors, matrices, and higher-dimensional arrays. It also provides
4858 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
4859 extracting and replacing data in arrays.")
4860 (license license:lgpl2.0+)))
4861
4862 (define-public r-prroc
4863 (package
4864 (name "r-prroc")
4865 (version "1.3.1")
4866 (source
4867 (origin
4868 (method url-fetch)
4869 (uri (cran-uri "PRROC" version))
4870 (sha256
4871 (base32
4872 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
4873 (properties `((upstream-name . "PRROC")))
4874 (build-system r-build-system)
4875 (home-page "https://cran.r-project.org/web/packages/PRROC/")
4876 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
4877 (description
4878 "This package computes the areas under the @dfn{precision-recall} (PR)
4879 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
4880 contrast to other implementations, the interpolation between points of the PR
4881 curve is done by a non-linear piecewise function. In addition to the areas
4882 under the curves, the curves themselves can also be computed and plotted by a
4883 specific S3-method.")
4884 (license license:gpl3)))
4885
4886 (define-public r-vim
4887 (package
4888 (name "r-vim")
4889 (version "4.8.0")
4890 (source
4891 (origin
4892 (method url-fetch)
4893 (uri (cran-uri "VIM" version))
4894 (sha256
4895 (base32
4896 "08x4a4yzgp8adgrv7a3666yma4b60n64mcsnvhzmwdy023f4ysrw"))))
4897 (properties `((upstream-name . "VIM")))
4898 (build-system r-build-system)
4899 (propagated-inputs
4900 `(("r-car" ,r-car)
4901 ("r-colorspace" ,r-colorspace)
4902 ("r-data-table" ,r-data-table)
4903 ("r-e1071" ,r-e1071)
4904 ("r-laeken" ,r-laeken)
4905 ("r-mass" ,r-mass)
4906 ("r-nnet" ,r-nnet)
4907 ("r-ranger" ,r-ranger)
4908 ("r-rcpp" ,r-rcpp)
4909 ("r-robustbase" ,r-robustbase)
4910 ("r-sp" ,r-sp)
4911 ("r-vcd" ,r-vcd)))
4912 (home-page "https://github.com/alexkowa/VIM")
4913 (synopsis "Visualization and imputation of missing values")
4914 (description
4915 "This package provides tools for the visualization of missing and/or
4916 imputed values are introduced, which can be used for exploring the data and
4917 the structure of the missing and/or imputed values. Depending on this
4918 structure of the missing values, the corresponding methods may help to
4919 identify the mechanism generating the missing values and allows to explore the
4920 data including missing values. In addition, the quality of imputation can be
4921 visually explored using various univariate, bivariate, multiple and
4922 multivariate plot methods.")
4923 (license license:gpl2+)))
4924
4925 (define-public r-fnn
4926 (package
4927 (name "r-fnn")
4928 (version "1.1.3")
4929 (source
4930 (origin
4931 (method url-fetch)
4932 (uri (cran-uri "FNN" version))
4933 (sha256
4934 (base32
4935 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
4936 (properties `((upstream-name . "FNN")))
4937 (build-system r-build-system)
4938 (home-page "https://cran.r-project.org/web/packages/FNN")
4939 (synopsis "Fast nearest neighbor search algorithms and applications")
4940 (description
4941 "This package provides cover-tree and kd-tree fast k-nearest neighbor
4942 search algorithms. Related applications including KNN classification,
4943 regression and information measures are implemented.")
4944 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
4945 ;; later can be used.
4946 (license license:gpl2+)))
4947
4948 (define-public r-smoother
4949 (package
4950 (name "r-smoother")
4951 (version "1.1")
4952 (source
4953 (origin
4954 (method url-fetch)
4955 (uri (cran-uri "smoother" version))
4956 (sha256
4957 (base32
4958 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
4959 (build-system r-build-system)
4960 (propagated-inputs
4961 `(("r-ttr" ,r-ttr)))
4962 (home-page "http://cran.r-project.org/web/packages/smoother")
4963 (synopsis "Functions relating to the smoothing of numerical data")
4964 (description
4965 "This package provides a collection of methods for smoothing numerical
4966 data, commencing with a port of the Matlab gaussian window smoothing function.
4967 In addition, several functions typically used in smoothing of financial data
4968 are included.")
4969 (license license:gpl2)))
4970
4971 (define-public r-riverplot
4972 (package
4973 (name "r-riverplot")
4974 (version "0.6")
4975 (source
4976 (origin
4977 (method url-fetch)
4978 (uri (cran-uri "riverplot" version))
4979 (sha256
4980 (base32
4981 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
4982 (build-system r-build-system)
4983 (home-page "https://logfc.wordpress.com")
4984 (synopsis "Sankey or ribbon plots")
4985 (description
4986 "Sankey plots are a type of diagram that is convenient to illustrate how
4987 flow of information, resources etc. separates and joins, much like observing
4988 how rivers split and merge. For example, they can be used to compare
4989 different clusterings. This package provides an implementation of Sankey
4990 plots for R.")
4991 (license license:gpl2+)))
4992
4993 (define-public r-dyn
4994 (package
4995 (name "r-dyn")
4996 (version "0.2-9.6")
4997 (source
4998 (origin
4999 (method url-fetch)
5000 (uri (cran-uri "dyn" version))
5001 (sha256
5002 (base32
5003 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5004 (build-system r-build-system)
5005 (propagated-inputs
5006 `(("r-zoo" ,r-zoo)))
5007 (home-page "https://cran.r-project.org/web/packages/dyn")
5008 (synopsis "Time series regression")
5009 (description
5010 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5011 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5012 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5013 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5014 @code{randomForest::randomForest()} and other regression functions, allowing
5015 those functions to be used with time series including specifications that may
5016 contain lags, diffs and missing values.")
5017 ;; Any GPL version.
5018 (license license:gpl2+)))
5019
5020 (define-public r-catdap
5021 (package
5022 (name "r-catdap")
5023 (version "1.3.4")
5024 (source
5025 (origin
5026 (method url-fetch)
5027 (uri (cran-uri "catdap" version))
5028 (sha256
5029 (base32
5030 "0i877l61f6c75pczi235rzci67w29zv1d7z5zn5p5ymndclvlpl2"))))
5031 (build-system r-build-system)
5032 (native-inputs
5033 `(("gfortran" ,gfortran)))
5034 (home-page "https://cran.r-project.org/web/packages/catdap/")
5035 (synopsis "Tools for categorical data analysis")
5036 (description
5037 "This package provides functions for analyzing multivariate data.
5038 Dependencies of the distribution of the specified variable (response
5039 variable) to other variables (explanatory variables) are derived and
5040 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5041 (license license:gpl2+)))
5042
5043 (define-public r-arules
5044 (package
5045 (name "r-arules")
5046 (version "1.6-3")
5047 (source
5048 (origin
5049 (method url-fetch)
5050 (uri (cran-uri "arules" version))
5051 (sha256
5052 (base32
5053 "0dimrq1pz449z0mz9m87nhm5bpc0v789bcc3lghhh97wwi5zah9y"))))
5054 (build-system r-build-system)
5055 (propagated-inputs
5056 `(("r-matrix" ,r-matrix)))
5057 (home-page "https://github.com/mhahsler/arules")
5058 (synopsis "Mining association rules and frequent itemsets")
5059 (description
5060 "This package provides an infrastructure for representing, manipulating
5061 and analyzing transaction data and patterns (frequent itemsets and association rules).
5062 It also provides C implementations of the association mining algorithms Apriori
5063 and Eclat.")
5064 (license license:gpl3)))
5065
5066 (define-public r-parsedate
5067 (package
5068 (name "r-parsedate")
5069 (version "1.2.0")
5070 (source
5071 (origin
5072 (method url-fetch)
5073 (uri (cran-uri "parsedate" version))
5074 (sha256
5075 (base32
5076 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5077 (build-system r-build-system)
5078 (propagated-inputs
5079 `(("r-rematch2" ,r-rematch2)))
5080 (home-page "https://github.com/gaborcsardi/parsedate")
5081 (synopsis
5082 "Recognize and parse dates in various formats")
5083 (description
5084 "This package provides three functions for dealing with dates:
5085 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5086 time formats, @code{parse_date} parses dates in unspecified formats,
5087 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5088 (license license:gpl2)))
5089
5090 (define-public r-abc-data
5091 (package
5092 (name "r-abc-data")
5093 (version "1.0")
5094 (source
5095 (origin
5096 (method url-fetch)
5097 (uri (cran-uri "abc.data" version))
5098 (sha256
5099 (base32
5100 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5101 (properties `((upstream-name . "abc.data")))
5102 (build-system r-build-system)
5103 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5104 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5105 (description
5106 "This package contains data which are used by functions of the abc
5107 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5108 algorithms for performing parameter estimation, model selection, and
5109 goodness-of-fit.")
5110 (license license:gpl3+)))
5111
5112 (define-public r-abc
5113 (package
5114 (name "r-abc")
5115 (version "2.1")
5116 (source
5117 (origin
5118 (method url-fetch)
5119 (uri (cran-uri "abc" version))
5120 (sha256
5121 (base32
5122 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5123 (build-system r-build-system)
5124 (propagated-inputs
5125 `(("r-abc-data" ,r-abc-data)
5126 ("r-locfit" ,r-locfit)
5127 ("r-mass" ,r-mass)
5128 ("r-nnet" ,r-nnet)
5129 ("r-quantreg" ,r-quantreg)))
5130 (home-page "https://cran.r-project.org/web/packages/abc/")
5131 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5132 (description
5133 "This package implements several @dfn{Approximate Bayesian
5134 Computation} (ABC) algorithms for performing parameter estimation, model
5135 selection, and goodness-of-fit. Cross-validation tools are also available for
5136 measuring the accuracy of ABC estimates, and to calculate the
5137 misclassification probabilities of different models.")
5138 (license license:gpl3+)))
5139
5140 (define-public r-zip
5141 (package
5142 (name "r-zip")
5143 (version "2.0.2")
5144 (source
5145 (origin
5146 (method url-fetch)
5147 (uri (cran-uri "zip" version))
5148 (sha256
5149 (base32
5150 "1xvgs7mhxi0sdp5ix4nisqm9lf8f75b7ip7b1hqpq9bzh0x6z8ix"))))
5151 (build-system r-build-system)
5152 (home-page "https://github.com/gaborcsardi/zip")
5153 (synopsis "Cross-platform Zip compression")
5154 (description
5155 "This package provides a cross-platform Zip compression library for R.
5156 It is a replacement for the @code{zip} function, that does not require any
5157 additional external tools on any platform.")
5158 (license license:cc0)))
5159
5160 (define-public r-openxlsx
5161 (package
5162 (name "r-openxlsx")
5163 (version "4.1.0.1")
5164 (source
5165 (origin
5166 (method url-fetch)
5167 (uri (cran-uri "openxlsx" version))
5168 (sha256
5169 (base32
5170 "1lflygpi1z4rlb1c6g6wsmi334maiiy7jhpg6ph4sw8lpvg12w4b"))))
5171 (build-system r-build-system)
5172 (propagated-inputs
5173 `(("r-rcpp" ,r-rcpp)
5174 ("r-zip" ,r-zip)))
5175 (home-page "https://github.com/awalker89/openxlsx")
5176 (synopsis "Read, write and edit XLSX files")
5177 (description
5178 "This package simplifies the creation of Excel @code{.xlsx} files by
5179 providing a high level interface to writing, styling and editing worksheets.
5180 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5181 and @code{XLConnect} packages with the added benefit of removing the
5182 dependency on Java.")
5183 (license license:gpl3)))
5184
5185 (define-public r-rio
5186 (package
5187 (name "r-rio")
5188 (version "0.5.16")
5189 (source
5190 (origin
5191 (method url-fetch)
5192 (uri (cran-uri "rio" version))
5193 (sha256
5194 (base32
5195 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5196 (build-system r-build-system)
5197 (propagated-inputs
5198 `(("r-curl" ,r-curl)
5199 ("r-data-table" ,r-data-table)
5200 ("r-foreign" ,r-foreign)
5201 ("r-haven" ,r-haven)
5202 ("r-openxlsx" ,r-openxlsx)
5203 ("r-readxl" ,r-readxl)
5204 ("r-tibble" ,r-tibble)))
5205 (home-page "https://github.com/leeper/rio")
5206 (synopsis "Swiss-army knife for data I/O")
5207 (description
5208 "This package provides streamlined data import and export infrastructure
5209 by making assumptions that the user is probably willing to make: @code{import}
5210 and @code{export} determine the data structure from the file extension,
5211 reasonable defaults are used for data import and export (e.g.,
5212 @code{stringsAsFactors=FALSE}), web-based import is natively
5213 supported (including from SSL/HTTPS), compressed files can be read directly
5214 without explicit decompression, and fast import packages are used where
5215 appropriate. An additional convenience function, @code{convert}, provides a
5216 simple method for converting between file types.")
5217 (license license:gpl2)))
5218
5219 (define-public r-maptools
5220 (package
5221 (name "r-maptools")
5222 (version "0.9-5")
5223 (source
5224 (origin
5225 (method url-fetch)
5226 (uri (cran-uri "maptools" version))
5227 (sha256
5228 (base32
5229 "1pbvcn9xfx0hxq1ppbfg9xm5j04q4c15nj983yjmg7dlkzq135ax"))))
5230 (build-system r-build-system)
5231 (propagated-inputs
5232 `(("r-foreign" ,r-foreign)
5233 ("r-lattice" ,r-lattice)
5234 ("r-sp" ,r-sp)))
5235 (home-page "http://r-forge.r-project.org/projects/maptools/")
5236 (synopsis "Tools for reading and handling spatial objects")
5237 (description
5238 "This package provides a set of tools for manipulating and reading
5239 geographic data, in particular ESRI Shapefiles. It includes binary access to
5240 GSHHG shoreline files. The package also provides interface wrappers for
5241 exchanging spatial objects with other R packages.")
5242 ;; The C source files from shapelib are released under the Expat license.
5243 ;; The R code is released under GPL version 2 or later.
5244 (license (list license:gpl2+
5245 license:expat))))
5246
5247 (define-public r-later
5248 (package
5249 (name "r-later")
5250 (version "0.8.0")
5251 (source
5252 (origin
5253 (method url-fetch)
5254 (uri (cran-uri "later" version))
5255 (sha256
5256 (base32
5257 "08g503xjxrfxvrzj0cavsrz4m8ykbha64344j1w2r6v17js2hakb"))))
5258 (build-system r-build-system)
5259 (propagated-inputs
5260 `(("r-bh" ,r-bh)
5261 ("r-rcpp" ,r-rcpp)
5262 ("r-rlang" ,r-rlang)))
5263 (home-page "https://github.com/r-lib/later")
5264 (synopsis "Utilities for delaying function execution")
5265 (description
5266 "This package provides tools to execute arbitrary R or C functions some
5267 time after the current time, after the R execution stack has emptied.")
5268 (license license:gpl2+)))
5269
5270 (define-public r-promises
5271 (package
5272 (name "r-promises")
5273 (version "1.0.1")
5274 (source
5275 (origin
5276 (method url-fetch)
5277 (uri (cran-uri "promises" version))
5278 (sha256
5279 (base32
5280 "0n2mlv6bvfb4yhgcml696l9vkbw21pz0smqylivr606z99rwgny2"))))
5281 (build-system r-build-system)
5282 (propagated-inputs
5283 `(("r-later" ,r-later)
5284 ("r-magrittr" ,r-magrittr)
5285 ("r-r6" ,r-r6)
5286 ("r-rcpp" ,r-rcpp)
5287 ("r-rlang" ,r-rlang)))
5288 (home-page "https://rstudio.github.io/promises")
5289 (synopsis "Abstractions for promise-based asynchronous programming")
5290 (description
5291 "This package provides fundamental abstractions for doing asynchronous
5292 programming in R using promises. Asynchronous programming is useful for
5293 allowing a single R process to orchestrate multiple tasks in the background
5294 while also attending to something else. Semantics are similar to JavaScript
5295 promises, but with a syntax that is idiomatic R.")
5296 (license license:expat)))
5297
5298 (define-public r-dosnow
5299 (package
5300 (name "r-dosnow")
5301 (version "1.0.16")
5302 (source
5303 (origin
5304 (method url-fetch)
5305 (uri (cran-uri "doSNOW" version))
5306 (sha256
5307 (base32
5308 "13ir4a8252h4yvp5ir9xnwack1kn58i4ny6sf2qdc12zspn3850n"))))
5309 (properties `((upstream-name . "doSNOW")))
5310 (build-system r-build-system)
5311 (propagated-inputs
5312 `(("r-foreach" ,r-foreach)
5313 ("r-iterators" ,r-iterators)
5314 ("r-snow" ,r-snow)))
5315 (home-page "https://cran.r-project.org/web/packages/doSNOW")
5316 (synopsis "Foreach parallel adaptor for the snow package")
5317 (description
5318 "This package provides a parallel backend for the @code{%dopar%} function
5319 using the @code{snow} package.")
5320 (license license:gpl2)))
5321
5322 (define-public r-snowfall
5323 (package
5324 (name "r-snowfall")
5325 (version "1.84-6.1")
5326 (source (origin
5327 (method url-fetch)
5328 (uri (cran-uri "snowfall" version))
5329 (sha256
5330 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
5331 (build-system r-build-system)
5332 (propagated-inputs
5333 `(("r-snow" ,r-snow)))
5334 (home-page "http://cran.r-project.org/web/packages/snowfall/")
5335 (synopsis "Easier cluster computing")
5336 (description "This package is a usability wrapper around snow for easier
5337 development of parallel R programs. This package offers e.g. extended error
5338 checks, and additional functions. All functions work in sequential mode, too,
5339 if no cluster is present or wished. The package is also designed as connector
5340 to the cluster management tool @code{sfCluster}, but can also used without
5341 it.")
5342 (license license:gpl2+)))
5343
5344 (define-public r-rappdirs
5345 (package
5346 (name "r-rappdirs")
5347 (version "0.3.1")
5348 (source
5349 (origin
5350 (method url-fetch)
5351 (uri (cran-uri "rappdirs" version))
5352 (sha256
5353 (base32
5354 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
5355 (build-system r-build-system)
5356 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
5357 (synopsis "Determine where to save data, caches, and logs")
5358 (description
5359 "This package provides an easy way to determine which directories on the
5360 user's computer should be used to save data, caches and logs. It is a port of
5361 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
5362 (license license:expat)))
5363
5364 (define-public r-learnr
5365 (package
5366 (name "r-learnr")
5367 (version "0.9.2.1")
5368 (source
5369 (origin
5370 (method url-fetch)
5371 (uri (cran-uri "learnr" version))
5372 (sha256
5373 (base32
5374 "0jbk0g6fkw7zs8ykzhsvh9vvz8xmc4v03bqzjsa5mmpxpqan5vx5"))))
5375 (build-system r-build-system)
5376 (propagated-inputs
5377 `(("r-evaluate" ,r-evaluate)
5378 ("r-htmltools" ,r-htmltools)
5379 ("r-htmlwidgets" ,r-htmlwidgets)
5380 ("r-jsonlite" ,r-jsonlite)
5381 ("r-knitr" ,r-knitr)
5382 ("r-markdown" ,r-markdown)
5383 ("r-rappdirs" ,r-rappdirs)
5384 ("r-rmarkdown" ,r-rmarkdown)
5385 ("r-rprojroot" ,r-rprojroot)
5386 ("r-shiny" ,r-shiny)
5387 ("r-withr" ,r-withr)))
5388 (home-page "https://rstudio.github.io/learnr/")
5389 (synopsis "Interactive tutorials for R")
5390 (description
5391 "This package provides tools to create interactive tutorials using R
5392 Markdown. Use a combination of narrative, figures, videos, exercises, and
5393 quizzes to create self-paced tutorials for learning about R and R packages.")
5394 (license license:asl2.0)))
5395
5396 (define-public r-analytics
5397 (package
5398 (name "r-analytics")
5399 (version "3.0")
5400 (source
5401 (origin
5402 (method url-fetch)
5403 (uri (cran-uri "analytics" version))
5404 (sha256
5405 (base32
5406 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
5407 (build-system r-build-system)
5408 (propagated-inputs
5409 `(("r-car" ,r-car)
5410 ("r-cluster" ,r-cluster)
5411 ("r-fractal" ,r-fractal)
5412 ("r-lmtest" ,r-lmtest)
5413 ("r-mass" ,r-mass)
5414 ("r-np" ,r-np)
5415 ("r-powerplus" ,r-powerplus)
5416 ("r-robust" ,r-robust)
5417 ("r-trend" ,r-trend)
5418 ("r-tsa" ,r-tsa)
5419 ("r-urca" ,r-urca)
5420 ("r-vim" ,r-vim)))
5421 (home-page "https://cran.r-project.org/web/packages/analytics/")
5422 (synopsis "Collection of data analysis tools")
5423 (description
5424 "This package is a collection of data analysis tools. It includes tools
5425 for regression outlier detection in a fitted linear model, stationary
5426 bootstrap using a truncated geometric distribution, a comprehensive test for
5427 weak stationarity, column means by group, weighted biplots, and a heuristic to
5428 obtain a better initial configuration in non-metric MDS.")
5429 (license license:gpl2)))
5430
5431 (define-public r-reticulate
5432 (package
5433 (name "r-reticulate")
5434 (version "1.12")
5435 (source
5436 (origin
5437 (method url-fetch)
5438 (uri (cran-uri "reticulate" version))
5439 (sha256
5440 (base32
5441 "0pqr1rcs8yg9nlh729mvlws93cqhpmv49j9bcgarh7vxzkwyv0kb"))))
5442 (build-system r-build-system)
5443 (inputs `(("python" ,python)))
5444 (propagated-inputs
5445 `(("r-jsonlite" ,r-jsonlite)
5446 ("r-matrix" ,r-matrix)
5447 ("r-rcpp" ,r-rcpp)))
5448 (home-page "https://github.com/rstudio/reticulate")
5449 (synopsis "R interface to Python")
5450 (description
5451 "This package provides an interface from R to Python modules, classes,
5452 and functions. When calling into Python, R data types are automatically
5453 converted to their equivalent Python types. When values are returned from
5454 Python to R they are converted back to R types.")
5455 (license license:asl2.0)))
5456
5457 (define-public r-bibtex
5458 (package
5459 (name "r-bibtex")
5460 (version "0.4.2")
5461 (source
5462 (origin
5463 (method url-fetch)
5464 (uri (cran-uri "bibtex" version))
5465 (sha256
5466 (base32
5467 "0wl3925ryd54g1nv3ncwllc493d39dpgy5md61940h69c0van1hz"))))
5468 (build-system r-build-system)
5469 (propagated-inputs `(("r-stringr" ,r-stringr)))
5470 (home-page "https://github.com/romainfrancois/bibtex")
5471 (synopsis "Bibtex parser")
5472 (description "This package provides a utility for R to parse a bibtex
5473 file.")
5474 (license license:gpl2+)))
5475
5476 (define-public r-ggseqlogo
5477 (package
5478 (name "r-ggseqlogo")
5479 (version "0.1")
5480 (source
5481 (origin
5482 (method url-fetch)
5483 (uri (cran-uri "ggseqlogo" version))
5484 (sha256
5485 (base32
5486 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
5487 (build-system r-build-system)
5488 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
5489 (home-page "https://github.com/omarwagih/ggseqlogo")
5490 (synopsis "ggplot2 extension for drawing genetic sequence logos")
5491 (description
5492 "The range of functions provided by this package makes it possible to
5493 draw highly versatile genomic sequence logos. Features include, but are not
5494 limited to, modifying colour schemes and fonts used to draw the logo,
5495 generating multiple logo plots, and aiding the visualisation with annotations.
5496 Sequence logos can easily be combined with other ggplot2 plots.")
5497 ;; Unspecified version of the LGPL.
5498 (license license:lgpl3+)))
5499
5500 (define-public r-ggsci
5501 (package
5502 (name "r-ggsci")
5503 (version "2.9")
5504 (source
5505 (origin
5506 (method url-fetch)
5507 (uri (cran-uri "ggsci" version))
5508 (sha256
5509 (base32
5510 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
5511 (build-system r-build-system)
5512 (propagated-inputs
5513 `(("r-ggplot2" ,r-ggplot2)
5514 ("r-scales" ,r-scales)))
5515 (home-page "https://nanx.me/ggsci/")
5516 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
5517 (description
5518 "This package provides a collection of ggplot2 color palettes inspired by
5519 plots in scientific journals, data visualization libraries, science fiction
5520 movies, and TV shows.")
5521 (license license:gpl3)))
5522
5523 (define-public r-ggsignif
5524 (package
5525 (name "r-ggsignif")
5526 (version "0.5.0")
5527 (source
5528 (origin
5529 (method url-fetch)
5530 (uri (cran-uri "ggsignif" version))
5531 (sha256
5532 (base32
5533 "0z04g5kqdj66fyfxb5d2m7njkqd7idbiy4xgsnxdh5pbh3cr643x"))))
5534 (build-system r-build-system)
5535 (propagated-inputs
5536 `(("r-ggplot2" ,r-ggplot2)))
5537 (home-page "https://github.com/const-ae/ggsignif")
5538 (synopsis "Significance brackets for ggplot2")
5539 (description
5540 "Enrich your ggplots with group-wise comparisons. This package provides
5541 an easy way to indicate if two groups are significantly different. Commonly
5542 this is shown by a bracket on top connecting the groups of interest which
5543 itself is annotated with the level of significance. The package provides a
5544 single layer that takes the groups for comparison and the test as arguments
5545 and adds the annotation to the plot.")
5546 (license license:gpl3)))
5547
5548 (define-public r-ggpubr
5549 (package
5550 (name "r-ggpubr")
5551 (version "0.2.1")
5552 (source
5553 (origin
5554 (method url-fetch)
5555 (uri (cran-uri "ggpubr" version))
5556 (sha256
5557 (base32
5558 "0a4dv6a752hwvc7l31xs7bgqhfzfdy94xp6wgwaxf5dxm46na7k1"))))
5559 (build-system r-build-system)
5560 (propagated-inputs
5561 `(("r-cowplot" ,r-cowplot)
5562 ("r-dplyr" ,r-dplyr)
5563 ("r-ggplot2" ,r-ggplot2)
5564 ("r-ggrepel" ,r-ggrepel)
5565 ("r-ggsci" ,r-ggsci)
5566 ("r-ggsignif" ,r-ggsignif)
5567 ("r-glue" ,r-glue)
5568 ("r-gridextra" ,r-gridextra)
5569 ("r-magrittr" ,r-magrittr)
5570 ("r-polynom" ,r-polynom)
5571 ("r-purrr" ,r-purrr)
5572 ("r-scales" ,r-scales)
5573 ("r-tidyr" ,r-tidyr)))
5574 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
5575 (synopsis "ggplot2-based publication-ready plots")
5576 (description
5577 "The ggplot2 package is an excellent and flexible package for elegant
5578 data visualization in R. However the default generated plots require some
5579 formatting before we can send them for publication. The ggpubr package
5580 provides some easy-to-use functions for creating and customizing ggplot2-based
5581 publication-ready plots.")
5582 (license license:gpl2)))
5583
5584 (define-public r-ellipse
5585 (package
5586 (name "r-ellipse")
5587 (version "0.4.1")
5588 (source
5589 (origin
5590 (method url-fetch)
5591 (uri (cran-uri "ellipse" version))
5592 (sha256
5593 (base32
5594 "0g82vc51m3c1k0hnpp2zla6amxxgk2mmkl8ssnsc49jv3599r6hs"))))
5595 (build-system r-build-system)
5596 (home-page "https://cran.r-project.org/web/packages/ellipse/")
5597 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
5598 (description
5599 "This package contains various routines for drawing ellipses and
5600 ellipse-like confidence regions, implementing the plots described in Murdoch
5601 and Chow (1996), A graphical display of large correlation matrices, The
5602 American Statistician 50, 178-180. There are also routines implementing the
5603 profile plots described in Bates and Watts (1988), Nonlinear Regression
5604 Analysis and its Applications.")
5605 (license license:gpl2+)))
5606
5607 (define-public r-flashclust
5608 (package
5609 (name "r-flashclust")
5610 (version "1.01-2")
5611 (source
5612 (origin
5613 (method url-fetch)
5614 (uri (cran-uri "flashClust" version))
5615 (sha256
5616 (base32
5617 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
5618 (properties `((upstream-name . "flashClust")))
5619 (build-system r-build-system)
5620 (native-inputs `(("gfortran" ,gfortran)))
5621 (home-page "https://cran.r-project.org/web/packages/flashClust/")
5622 (synopsis "Implementation of optimal hierarchical clustering")
5623 (description
5624 "This package provides a fast implementation of hierarchical
5625 clustering.")
5626 (license license:gpl2+)))
5627
5628 (define-public r-factominer
5629 (package
5630 (name "r-factominer")
5631 (version "1.41")
5632 (source
5633 (origin
5634 (method url-fetch)
5635 (uri (cran-uri "FactoMineR" version))
5636 (sha256
5637 (base32
5638 "1h20hydav6l2b7bngqw1av4l5rrh0wk58nhailga1f4qw9lrv259"))))
5639 (properties `((upstream-name . "FactoMineR")))
5640 (build-system r-build-system)
5641 (propagated-inputs
5642 `(("r-car" ,r-car)
5643 ("r-cluster" ,r-cluster)
5644 ("r-ellipse" ,r-ellipse)
5645 ("r-flashclust" ,r-flashclust)
5646 ("r-lattice" ,r-lattice)
5647 ("r-leaps" ,r-leaps)
5648 ("r-mass" ,r-mass)
5649 ("r-scatterplot3d" ,r-scatterplot3d)))
5650 (home-page "http://factominer.free.fr")
5651 (synopsis "Multivariate exploratory data analysis and data mining")
5652 (description
5653 "This package provides exploratory data analysis methods to summarize,
5654 visualize and describe datasets. The main principal component methods are
5655 available, those with the largest potential in terms of applications:
5656 principal component analysis (PCA) when variables are quantitative,
5657 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
5658 variables are categorical, Multiple Factor Analysis when variables are
5659 structured in groups, etc. and hierarchical cluster analysis.")
5660 (license license:gpl2+)))
5661
5662 (define-public r-factoextra
5663 (package
5664 (name "r-factoextra")
5665 (version "1.0.5")
5666 (source
5667 (origin
5668 (method url-fetch)
5669 (uri (cran-uri "factoextra" version))
5670 (sha256
5671 (base32
5672 "1l6m8k7qhdw8ndar8nhmym0lfyd1i2iszl1cicjax0vq23ss6xw1"))))
5673 (build-system r-build-system)
5674 (propagated-inputs
5675 `(("r-abind" ,r-abind)
5676 ("r-cluster" ,r-cluster)
5677 ("r-dendextend" ,r-dendextend)
5678 ("r-factominer" ,r-factominer)
5679 ("r-ggplot2" ,r-ggplot2)
5680 ("r-ggpubr" ,r-ggpubr)
5681 ("r-ggrepel" ,r-ggrepel)
5682 ("r-reshape2" ,r-reshape2)
5683 ("r-tidyr" ,r-tidyr)))
5684 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
5685 (synopsis "Extract and visualize the results of multivariate data analyses")
5686 (description
5687 "This package provides some easy-to-use functions to extract and
5688 visualize the output of multivariate data analyses, including
5689 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
5690 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
5691 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
5692 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
5693 packages. It contains also functions for simplifying some clustering analysis
5694 steps and provides ggplot2-based elegant data visualization.")
5695 (license license:gpl2)))
5696
5697 (define-public r-fansi
5698 (package
5699 (name "r-fansi")
5700 (version "0.4.0")
5701 (source
5702 (origin
5703 (method url-fetch)
5704 (uri (cran-uri "fansi" version))
5705 (sha256
5706 (base32
5707 "02f2rx7v7wz6w97m2slwky2i5y8f9iafycmkyr3siy3z3k8fj171"))))
5708 (build-system r-build-system)
5709 (native-inputs
5710 `(("r-knitr" ,r-knitr))) ; for vignettes
5711 (home-page "https://github.com/brodieG/fansi")
5712 (synopsis "ANSI control sequence aware string functions")
5713 (description
5714 "This package provides counterparts to R string manipulation functions
5715 that account for the effects of ANSI text formatting control sequences.")
5716 (license license:gpl2+)))
5717
5718 (define-public r-nbclust
5719 (package
5720 (name "r-nbclust")
5721 (version "3.0")
5722 (source
5723 (origin
5724 (method url-fetch)
5725 (uri (cran-uri "NbClust" version))
5726 (sha256
5727 (base32
5728 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
5729 (properties `((upstream-name . "NbClust")))
5730 (build-system r-build-system)
5731 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
5732 (synopsis "Determine the best number of clusters in a data set")
5733 (description
5734 "NbClust provides 30 indexes for determining the optimal number of
5735 clusters in a data set and offers the best clustering scheme from different
5736 results to the user.")
5737 (license license:gpl2)))
5738
5739 (define-public r-hdf5r
5740 (package
5741 (name "r-hdf5r")
5742 (version "1.2.0")
5743 (source
5744 (origin
5745 (method url-fetch)
5746 (uri (cran-uri "hdf5r" version))
5747 (sha256
5748 (base32
5749 "10gynjwaaxks8y9c2fl8k040j0nbwn372nil70009yfk9wrkx0aq"))))
5750 (build-system r-build-system)
5751 (inputs
5752 `(("hdf5" ,hdf5)
5753 ("zlib" ,zlib)))
5754 (propagated-inputs
5755 `(("r-bit64" ,r-bit64)
5756 ("r-r6" ,r-r6)))
5757 (home-page "https://hhoeflin.github.io/hdf5r")
5758 (synopsis "Interface to the HDF5 binary data format")
5759 (description
5760 "HDF5 is a data model, library and file format for storing and managing
5761 large amounts of data. This package provides a nearly feature complete,
5762 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
5763 functionality is added so that HDF5 objects behave very similar to their
5764 corresponding R counterparts.")
5765 (license license:asl2.0)))
5766
5767 (define-public r-itertools
5768 (package
5769 (name "r-itertools")
5770 (version "0.1-3")
5771 (source
5772 (origin
5773 (method url-fetch)
5774 (uri (cran-uri "itertools" version))
5775 (sha256
5776 (base32
5777 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
5778 (build-system r-build-system)
5779 (propagated-inputs
5780 `(("r-iterators" ,r-iterators)))
5781 (home-page "https://cran.r-project.org/web/packages/itertools/")
5782 (synopsis "Iterator tools")
5783 (description
5784 "This package provides various tools for creating iterators, many
5785 patterned after functions in the Python @code{itertools} module, and others
5786 patterned after functions in the snow package.")
5787 (license license:gpl2)))
5788
5789 (define-public r-polynom
5790 (package
5791 (name "r-polynom")
5792 (version "1.4-0")
5793 (source
5794 (origin
5795 (method url-fetch)
5796 (uri (cran-uri "polynom" version))
5797 (sha256
5798 (base32
5799 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
5800 (build-system r-build-system)
5801 (home-page "https://cran.r-project.org/web/packages/polynom/")
5802 (synopsis "Functions for univariate polynomial manipulations")
5803 (description
5804 "This package provides a collection of functions to implement a class for
5805 univariate polynomial manipulations.")
5806 (license license:gpl2)))
5807
5808 (define-public r-gbrd
5809 (package
5810 (name "r-gbrd")
5811 (version "0.4-11")
5812 (source
5813 (origin
5814 (method url-fetch)
5815 (uri (cran-uri "gbRd" version))
5816 (sha256
5817 (base32
5818 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
5819 (properties `((upstream-name . "gbRd")))
5820 (build-system r-build-system)
5821 (home-page "https://cran.r-project.org/web/packages/gbRd/")
5822 (synopsis "Utilities for processing Rd objects and files")
5823 (description
5824 "This package provides utilities for processing Rd objects and files.
5825 Extract argument descriptions and other parts of the help pages of
5826 functions.")
5827 (license license:gpl2+)))
5828
5829 (define-public r-rjags
5830 (package
5831 (name "r-rjags")
5832 (version "4-8")
5833 (source
5834 (origin
5835 (method url-fetch)
5836 (uri (cran-uri "rjags" version))
5837 (sha256
5838 (base32
5839 "17xmjksj69f9wk4x71jxk4cgiqhaf2fj6bjm0mgzp4qln5x84a8m"))))
5840 (build-system r-build-system)
5841 (propagated-inputs
5842 `(("r-coda" ,r-coda)))
5843 (inputs
5844 `(("jags" ,jags)))
5845 (native-inputs
5846 `(("pkg-config" ,pkg-config)))
5847 (home-page "http://mcmc-jags.sourceforge.net")
5848 (synopsis "Bayesian graphical models using MCMC")
5849 (description
5850 "This package provides an R interface to the JAGS MCMC library. JAGS is
5851 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
5852 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
5853 (license license:gpl2)))
5854
5855 (define-public r-rdpack
5856 (package
5857 (name "r-rdpack")
5858 (version "0.11-0")
5859 (source
5860 (origin
5861 (method url-fetch)
5862 (uri (cran-uri "Rdpack" version))
5863 (sha256
5864 (base32
5865 "11cd27s6zp5cxnwxcvz6rjf00y0r7aq8ywhzwpf1r4xy1z44kd4g"))))
5866 (properties `((upstream-name . "Rdpack")))
5867 (build-system r-build-system)
5868 (propagated-inputs
5869 `(("r-bibtex" ,r-bibtex)
5870 ("r-gbrd" ,r-gbrd)))
5871 (home-page "https://github.com/GeoBosh/Rdpack")
5872 (synopsis "Update and manipulate Rd documentation objects")
5873 (description
5874 "This package provides functions for manipulation of R documentation
5875 objects, including functions @code{reprompt()} and @code{ereprompt()} for
5876 updating Rd documentation for functions, methods and classes; it also includes
5877 Rd macros for citations and import of references from bibtex files for use in
5878 Rd files and roxygen2 comments, as well as many functions for manipulation of
5879 references and Rd files.")
5880 (license license:gpl2+)))
5881
5882 (define-public r-officer
5883 (package
5884 (name "r-officer")
5885 (version "0.3.5")
5886 (source
5887 (origin
5888 (method url-fetch)
5889 (uri (cran-uri "officer" version))
5890 (sha256
5891 (base32
5892 "005kaxjhr40shpav2pg7s7gj8f49579r7rbgwlncbwv16nn0rbbg"))))
5893 (build-system r-build-system)
5894 (propagated-inputs
5895 `(("r-base64enc" ,r-base64enc)
5896 ("r-digest" ,r-digest)
5897 ("r-htmltools" ,r-htmltools)
5898 ("r-magrittr" ,r-magrittr)
5899 ("r-r6" ,r-r6)
5900 ("r-rcpp" ,r-rcpp)
5901 ("r-rlang" ,r-rlang)
5902 ("r-uuid" ,r-uuid)
5903 ("r-xml2" ,r-xml2)
5904 ("r-zip" ,r-zip)))
5905 (home-page "https://davidgohel.github.io/officer")
5906 (synopsis "Manipulation of Word and PowerPoint documents")
5907 (description
5908 "This package provides tools to access and manipulate Word and PowerPoint
5909 documents from R. The package focuses on tabular and graphical reporting from
5910 R; it also provides two functions that let users get document content into
5911 data objects. A set of functions lets add and remove images, tables and
5912 paragraphs of text in new or existing documents. When working with PowerPoint
5913 presentations, slides can be added or removed; shapes inside slides can also
5914 be added or removed. When working with Word documents, a cursor can be used
5915 to help insert or delete content at a specific location in the document.")
5916 (license license:gpl3)))
5917
5918 (define-public r-abn
5919 (package
5920 (name "r-abn")
5921 (version "1.3")
5922 (source
5923 (origin
5924 (method url-fetch)
5925 (uri (cran-uri "abn" version))
5926 (sha256
5927 (base32
5928 "1q9hzpxwg835711kxwygd0l2awal6f015f8s6fprwz7graz1wbbm"))))
5929 (build-system r-build-system)
5930 (inputs
5931 `(("gsl" ,gsl)))
5932 (propagated-inputs
5933 `(("r-cairo" ,r-cairo)
5934 ("r-lme4" ,r-lme4)
5935 ("r-mass" ,r-mass)
5936 ("r-nnet" ,r-nnet)
5937 ("r-rcpp" ,r-rcpp)
5938 ("r-rcpparmadillo" ,r-rcpparmadillo)
5939 ("r-rjags" ,r-rjags)))
5940 (home-page "http://www.r-bayesian-networks.org")
5941 (synopsis "Modelling multivariate data with additive bayesian networks")
5942 (description
5943 "Bayesian network analysis is a form of probabilistic graphical models
5944 which derives from empirical data a directed acyclic graph, DAG, describing
5945 the dependency structure between random variables. An additive Bayesian
5946 network model consists of a form of a DAG where each node comprises a
5947 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
5948 equivalent to Bayesian multivariate regression using graphical modelling, they
5949 generalises the usual multivariable regression, GLM, to multiple dependent
5950 variables. This package provides routines to help determine optimal Bayesian
5951 network models for a given data set, where these models are used to identify
5952 statistical dependencies in messy, complex data.")
5953 (license license:gpl2+)))
5954
5955 (define-public r-acd
5956 (package
5957 (name "r-acd")
5958 (version "1.5.3")
5959 (source
5960 (origin
5961 (method url-fetch)
5962 (uri (cran-uri "ACD" version))
5963 (sha256
5964 (base32
5965 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
5966 (properties `((upstream-name . "ACD")))
5967 (build-system r-build-system)
5968 (home-page "https://cran.r-project.org/web/packages/ACD/")
5969 (synopsis "Categorical data analysis with complete or missing responses")
5970 (description
5971 "This package provides tools for categorical data analysis with complete
5972 or missing responses.")
5973 (license license:gpl2+)))
5974
5975 (define-public r-acdm
5976 (package
5977 (name "r-acdm")
5978 (version "1.0.4")
5979 (source
5980 (origin
5981 (method url-fetch)
5982 (uri (cran-uri "ACDm" version))
5983 (sha256
5984 (base32
5985 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
5986 (properties `((upstream-name . "ACDm")))
5987 (build-system r-build-system)
5988 (propagated-inputs
5989 `(("r-dplyr" ,r-dplyr)
5990 ("r-ggplot2" ,r-ggplot2)
5991 ("r-plyr" ,r-plyr)
5992 ("r-rsolnp" ,r-rsolnp)
5993 ("r-zoo" ,r-zoo)))
5994 (home-page "https://cran.r-project.org/web/packages/ACDm/")
5995 (synopsis "Tools for Autoregressive Conditional Duration Models")
5996 (description
5997 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
5998 and Russell, 1998) models. It creates trade, price or volume durations from
5999 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6000 and tests them.")
6001 (license license:gpl2+)))
6002
6003 (define-public r-overlap
6004 (package
6005 (name "r-overlap")
6006 (version "0.3.2")
6007 (source
6008 (origin
6009 (method url-fetch)
6010 (uri (cran-uri "overlap" version))
6011 (sha256
6012 (base32
6013 "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy"))))
6014 (build-system r-build-system)
6015 (home-page "https://cran.r-project.org/web/packages/overlap/")
6016 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6017 (description
6018 "This package provides functions to fit kernel density functions to data
6019 on temporal activity patterns of animals; estimate coefficients of overlapping
6020 of densities for two species; and calculate bootstrap estimates of confidence
6021 intervals.")
6022 (license license:gpl3+)))
6023
6024 (define-public r-snakecase
6025 (package
6026 (name "r-snakecase")
6027 (version "0.11.0")
6028 (source
6029 (origin
6030 (method url-fetch)
6031 (uri (cran-uri "snakecase" version))
6032 (sha256
6033 (base32
6034 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6035 (build-system r-build-system)
6036 (propagated-inputs
6037 `(("r-stringi" ,r-stringi)
6038 ("r-stringr" ,r-stringr)))
6039 (home-page "https://github.com/Tazinho/snakecase")
6040 (synopsis "Convert strings into any case")
6041 (description
6042 "This package provides a consistent, flexible and easy to use tool to
6043 parse and convert strings into cases like snake or camel among others.")
6044 (license license:gpl3)))
6045
6046 (define-public r-prediction
6047 (package
6048 (name "r-prediction")
6049 (version "0.3.14")
6050 (source
6051 (origin
6052 (method url-fetch)
6053 (uri (cran-uri "prediction" version))
6054 (sha256
6055 (base32
6056 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6057 (build-system r-build-system)
6058 (propagated-inputs
6059 `(("r-data-table" ,r-data-table)))
6060 (home-page "https://github.com/leeper/prediction")
6061 (synopsis "Tidy, type-safe prediction methods")
6062 (description
6063 "This package provides the @code{prediction()} function, a type-safe
6064 alternative to @code{predict()} that always returns a data frame. The package
6065 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6066 from the @code{stats} package, as well as numerous other model classes from
6067 other add-on packages.")
6068 (license license:expat)))
6069
6070 (define-public r-insight
6071 (package
6072 (name "r-insight")
6073 (version "0.3.0")
6074 (source
6075 (origin
6076 (method url-fetch)
6077 (uri (cran-uri "insight" version))
6078 (sha256
6079 (base32
6080 "1r288hc01cpyrk3nias30fw783z2vw20qr1k67vr65anh7mwm7vb"))))
6081 (build-system r-build-system)
6082 (home-page "https://easystats.github.io/insight/")
6083 (synopsis "Easy access to model information for various model objects")
6084 (description
6085 "This package provides a tool to provide an easy, intuitive and
6086 consistent access to information contained in various R models, like model
6087 formulas, model terms, information about random effects, data that was used to
6088 fit the model or data from response variables. The package mainly revolves
6089 around two types of functions: Functions that find (the names of) information,
6090 starting with @code{find_}, and functions that get the underlying data,
6091 starting with @code{get_}. The package has a consistent syntax and works with
6092 many different model objects, where otherwise functions to access these
6093 information are missing.")
6094 (license license:gpl3)))
6095
6096 (define-public r-sjlabelled
6097 (package
6098 (name "r-sjlabelled")
6099 (version "1.1.0")
6100 (source
6101 (origin
6102 (method url-fetch)
6103 (uri (cran-uri "sjlabelled" version))
6104 (sha256
6105 (base32
6106 "0rnmlwpp41h04dzfjd5ncvzjzs43slaimb4v2in1axznv3haafyc"))))
6107 (build-system r-build-system)
6108 (propagated-inputs
6109 `(("r-haven" ,r-haven)
6110 ("r-insight" ,r-insight)
6111 ("r-magrittr" ,r-magrittr)
6112 ("r-purrr" ,r-purrr)
6113 ("r-rlang" ,r-rlang)
6114 ("r-tidyselect" ,r-tidyselect)))
6115 (home-page "https://github.com/strengejacke/sjlabelled")
6116 (synopsis "Labelled data utility functions")
6117 (description
6118 "This package provides a collection of functions dealing with labelled
6119 data, like reading and writing data between R and other statistical software
6120 packages. This includes easy ways to get, set or change value and variable
6121 label attributes, to convert labelled vectors into factors or numeric (and
6122 vice versa), or to deal with multiple declared missing values.")
6123 (license license:gpl3)))
6124
6125 (define-public r-sjmisc
6126 (package
6127 (name "r-sjmisc")
6128 (version "2.8.1")
6129 (source
6130 (origin
6131 (method url-fetch)
6132 (uri (cran-uri "sjmisc" version))
6133 (sha256
6134 (base32
6135 "1a30n3cyd9h9ilaiai9ywy53f03nikafc47rvpws2c2vghc8mbn7"))))
6136 (build-system r-build-system)
6137 (propagated-inputs
6138 `(("r-dplyr" ,r-dplyr)
6139 ("r-insight" ,r-insight)
6140 ("r-magrittr" ,r-magrittr)
6141 ("r-purrr" ,r-purrr)
6142 ("r-rlang" ,r-rlang)
6143 ("r-sjlabelled" ,r-sjlabelled)))
6144 (home-page "https://github.com/strengejacke/sjmisc")
6145 (synopsis "Data and variable transformation functions")
6146 (description
6147 "This package is a collection of miscellaneous utility functions,
6148 supporting data transformation tasks like recoding, dichotomizing or grouping
6149 variables, setting and replacing missing values. The data transformation
6150 functions also support labelled data, and all integrate seamlessly into a
6151 tidyverse workflow.")
6152 (license license:gpl3)))
6153
6154 (define-public r-nortest
6155 (package
6156 (name "r-nortest")
6157 (version "1.0-4")
6158 (source
6159 (origin
6160 (method url-fetch)
6161 (uri (cran-uri "nortest" version))
6162 (sha256
6163 (base32
6164 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
6165 (build-system r-build-system)
6166 (home-page "https://cran.r-project.org/web/packages/nortest/")
6167 (synopsis "Tests for normality")
6168 (description
6169 "This package provides five omnibus tests for testing the composite
6170 hypothesis of normality.")
6171 (license license:gpl2+)))
6172
6173 (define-public r-moonbook
6174 (package
6175 (name "r-moonbook")
6176 (version "0.2.3")
6177 (source
6178 (origin
6179 (method url-fetch)
6180 (uri (cran-uri "moonBook" version))
6181 (sha256
6182 (base32
6183 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
6184 (properties `((upstream-name . "moonBook")))
6185 (build-system r-build-system)
6186 (propagated-inputs
6187 `(("r-magrittr" ,r-magrittr)
6188 ("r-nortest" ,r-nortest)
6189 ("r-purrr" ,r-purrr)
6190 ("r-sjmisc" ,r-sjmisc)
6191 ("r-stringr" ,r-stringr)
6192 ("r-survival" ,r-survival)))
6193 (home-page "https://github.com/cardiomoon/moonBook")
6194 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
6195 (description
6196 "This package provides several analysis-related functions for the book
6197 entitled \"R statistics and graph for medical articles\" (written in Korean),
6198 version 1, by Keon-Woong Moon with Korean demographic data with several plot
6199 functions.")
6200 (license license:gpl2)))
6201
6202 (define-public r-flextable
6203 (package
6204 (name "r-flextable")
6205 (version "0.5.5")
6206 (source
6207 (origin
6208 (method url-fetch)
6209 (uri (cran-uri "flextable" version))
6210 (sha256
6211 (base32
6212 "1q6x9mfk5gikqjbbra1dn8hs1rq5ws99jdjav3m113gx9f2j5yxh"))))
6213 (build-system r-build-system)
6214 (propagated-inputs
6215 `(("r-base64enc" ,r-base64enc)
6216 ("r-data-table" ,r-data-table)
6217 ("r-gdtools" ,r-gdtools)
6218 ("r-htmltools" ,r-htmltools)
6219 ("r-knitr" ,r-knitr)
6220 ("r-officer" ,r-officer)
6221 ("r-rlang" ,r-rlang)
6222 ("r-rmarkdown" ,r-rmarkdown)
6223 ("r-xml2" ,r-xml2)))
6224 (home-page "https://davidgohel.github.io/flextable")
6225 (synopsis "Functions for tabular reporting")
6226 (description
6227 "This package provides tools to create pretty tables for HTML documents
6228 and other formats. Functions are provided to let users create tables, modify
6229 and format their content. It extends the @code{officer} package and can be
6230 used within R markdown documents when rendering to HTML and to Word
6231 documents.")
6232 (license license:gpl3)))
6233
6234 (define-public r-writexl
6235 (package
6236 (name "r-writexl")
6237 (version "1.1")
6238 (source
6239 (origin
6240 (method url-fetch)
6241 (uri (cran-uri "writexl" version))
6242 (sha256
6243 (base32
6244 "0w4wnpl3yhaqp63p32bk60xrbmd7xd11kxifjbzrghi7d4483a46"))))
6245 (build-system r-build-system)
6246 (inputs `(("zlib" ,zlib)))
6247 (home-page "https://github.com/ropensci/writexl")
6248 (synopsis "Export data frames to xlsx format")
6249 (description
6250 "This package provides a data frame to xlsx exporter based on
6251 libxlsxwriter.")
6252 (license license:bsd-2)))
6253
6254 (define-public r-biasedurn
6255 (package
6256 (name "r-biasedurn")
6257 (version "1.07")
6258 (source
6259 (origin
6260 (method url-fetch)
6261 (uri (cran-uri "BiasedUrn" version))
6262 (sha256
6263 (base32
6264 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
6265 (properties `((upstream-name . "BiasedUrn")))
6266 (build-system r-build-system)
6267 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
6268 (synopsis "Biased Urn model distributions")
6269 (description
6270 "This package provides statistical models of biased sampling in the form
6271 of univariate and multivariate noncentral hypergeometric distributions,
6272 including Wallenius' noncentral hypergeometric distribution and Fisher's
6273 noncentral hypergeometric distribution (also called extended hypergeometric
6274 distribution).")
6275 (license license:gpl3)))
6276
6277 (define-public r-goplot
6278 (package
6279 (name "r-goplot")
6280 (version "1.0.2")
6281 (source
6282 (origin
6283 (method url-fetch)
6284 (uri (cran-uri "GOplot" version))
6285 (sha256
6286 (base32
6287 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
6288 (properties `((upstream-name . "GOplot")))
6289 (build-system r-build-system)
6290 (propagated-inputs
6291 `(("r-ggdendro" ,r-ggdendro)
6292 ("r-ggplot2" ,r-ggplot2)
6293 ("r-gridextra" ,r-gridextra)
6294 ("r-rcolorbrewer" ,r-rcolorbrewer)))
6295 (home-page "https://github.com/wencke/wencke.github.io")
6296 (synopsis "Visualization of functional analysis data")
6297 (description
6298 "This package provides an implementation of multilayered visualizations
6299 for enhanced graphical representation of functional analysis data. It
6300 combines and integrates omics data derived from expression and functional
6301 annotation enrichment analyses. Its plotting functions have been developed
6302 with an hierarchical structure in mind: starting from a general overview to
6303 identify the most enriched categories (modified bar plot, bubble plot) to a
6304 more detailed one displaying different types of relevant information for the
6305 molecules in a given set of categories (circle plot, chord plot, cluster plot,
6306 Venn diagram, heatmap).")
6307 (license license:gpl2)))
6308
6309 (define-public r-getopt
6310 (package
6311 (name "r-getopt")
6312 (version "1.20.3")
6313 (source
6314 (origin
6315 (method url-fetch)
6316 (uri (cran-uri "getopt" version))
6317 (sha256
6318 (base32
6319 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
6320 (build-system r-build-system)
6321 (home-page "https://github.com/trevorld/getopt")
6322 (synopsis "Command-line option processor for R")
6323 (description
6324 "This package is designed to be used with Rscript to write shebang
6325 scripts that accept short and long options. Many users will prefer to
6326 use the packages @code{optparse} or @code{argparse} which add extra
6327 features like automatically generated help options and usage texts,
6328 support for default values, positional argument support, etc.")
6329 (license license:gpl2+)))
6330
6331 (define-public r-findpython
6332 (package
6333 (name "r-findpython")
6334 (version "1.0.5")
6335 (source
6336 (origin
6337 (method url-fetch)
6338 (uri (cran-uri "findpython" version))
6339 (sha256
6340 (base32
6341 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
6342 (build-system r-build-system)
6343 (home-page "https://github.com/trevorld/findpython")
6344 (synopsis "Functions to find an acceptable Python binary")
6345 (description
6346 "This package was designed to find an acceptable Python binary that
6347 matches version and feature constraints.")
6348 (license license:expat)))
6349
6350 ;; This in not the same as "r-argparser"
6351 (define-public r-argparse
6352 (package
6353 (name "r-argparse")
6354 (version "2.0.1")
6355 (source
6356 (origin
6357 (method url-fetch)
6358 (uri (cran-uri "argparse" version))
6359 (sha256
6360 (base32
6361 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
6362 (build-system r-build-system)
6363 (inputs `(("python" ,python)))
6364 (propagated-inputs
6365 `(("r-findpython" ,r-findpython)
6366 ("r-jsonlite" ,r-jsonlite)
6367 ("r-r6" ,r-r6)))
6368 (home-page "https://github.com/trevorld/argparse")
6369 (synopsis "Command line optional and positional argument parser")
6370 (description
6371 "This package provides a command line parser to be used with Rscript to
6372 write shebang scripts that gracefully accept positional and optional arguments
6373 and automatically generate usage notices.")
6374 (license license:gpl2+)))
6375
6376 (define-public r-hash
6377 (package
6378 (name "r-hash")
6379 (version "2.2.6.1")
6380 (source
6381 (origin
6382 (method url-fetch)
6383 (uri (cran-uri "hash" version))
6384 (sha256
6385 (base32
6386 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
6387 (build-system r-build-system)
6388 (home-page "https://cran.r-project.org/web/packages/hash/")
6389 (synopsis "Implementation of hash/associated arrays/dictionaries")
6390 (description
6391 "This package implements a data structure similar to hashes in Perl and
6392 dictionaries in Python but with a purposefully R flavor. For objects of
6393 appreciable size, access using hashes outperforms native named lists and
6394 vectors.")
6395 (license license:gpl2+)))
6396
6397 (define-public r-orddom
6398 (package
6399 (name "r-orddom")
6400 (version "3.1")
6401 (source
6402 (origin
6403 (method url-fetch)
6404 (uri (cran-uri "orddom" version))
6405 (sha256
6406 (base32
6407 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
6408 (build-system r-build-system)
6409 (propagated-inputs `(("r-psych" ,r-psych)))
6410 (home-page "https://cran.r-project.org/web/packages/orddom/")
6411 (synopsis "Ordinal dominance statistics")
6412 (description
6413 "This package provides tools to compute ordinal, statistics and effect
6414 sizes as an alternative to mean comparison: Cliff's delta or success rate
6415 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
6416 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
6417 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
6418 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
6419 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
6420 Group (Non-)Overlap considerations.")
6421 (license license:gpl2)))
6422
6423 (define-public r-doby
6424 (package
6425 (name "r-doby")
6426 (version "4.6-2")
6427 (source
6428 (origin
6429 (method url-fetch)
6430 (uri (cran-uri "doBy" version))
6431 (sha256
6432 (base32
6433 "02vbv9nfgywg6lsiialkmfnax5z3rkyb9nr8j9l2cp8xi6ml95mb"))))
6434 (properties `((upstream-name . "doBy")))
6435 (build-system r-build-system)
6436 (propagated-inputs
6437 `(("r-dplyr" ,r-dplyr)
6438 ("r-magrittr" ,r-magrittr)
6439 ("r-mass" ,r-mass)
6440 ("r-matrix" ,r-matrix)
6441 ("r-plyr" ,r-plyr)))
6442 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
6443 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
6444 (description
6445 "This package contains:
6446
6447 @itemize
6448 @item facilities for working with grouped data: @code{do}
6449 something to data stratified @code{by} some variables.
6450 @item implementations of least-squares means, general linear contrasts, and
6451 @item miscellaneous other utilities.
6452 @end itemize\n")
6453 (license license:gpl2+)))
6454
6455 (define-public r-refgenome
6456 (package
6457 (name "r-refgenome")
6458 (version "1.7.7")
6459 (source
6460 (origin
6461 (method url-fetch)
6462 (uri (cran-uri "refGenome" version))
6463 (sha256
6464 (base32
6465 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
6466 (properties `((upstream-name . "refGenome")))
6467 (build-system r-build-system)
6468 (propagated-inputs
6469 `(("r-dbi" ,r-dbi)
6470 ("r-doby" ,r-doby)
6471 ("r-rsqlite" ,r-rsqlite)))
6472 (home-page "https://cran.r-project.org/web/packages/refGenome/")
6473 (synopsis
6474 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
6475 (description
6476 "This package contains functionality for importing and managing of
6477 downloaded genome annotation data from the Ensembl genome browser (European
6478 Bioinformatics Institute) and from the UCSC genome browser (University of
6479 California, Santa Cruz) and annotation routines for genomic positions and
6480 splice site positions.")
6481 (license license:gpl2)))
6482
6483 (define-public r-basix
6484 (package
6485 (name "r-basix")
6486 (version "1.1")
6487 (source
6488 (origin
6489 (method url-fetch)
6490 (uri (cran-uri "BASIX" version))
6491 (sha256
6492 (base32
6493 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
6494 (properties `((upstream-name . "BASIX")))
6495 (build-system r-build-system)
6496 (home-page "https://cran.r-project.org/web/packages/BASIX/")
6497 (synopsis "Efficient C/C++ toolset for R")
6498 (description
6499 "BASIX provides some efficient C/C++ implementations of native R
6500 procedures to speed up calculations in R.")
6501 (license license:gpl2)))
6502
6503 (define-public r-blockfest
6504 (package
6505 (name "r-blockfest")
6506 (version "1.6")
6507 (source
6508 (origin
6509 (method url-fetch)
6510 (uri (cran-uri "BlockFeST" version))
6511 (sha256
6512 (base32
6513 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
6514 (properties `((upstream-name . "BlockFeST")))
6515 (build-system r-build-system)
6516 (propagated-inputs `(("r-basix" ,r-basix)))
6517 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
6518 (synopsis "Bayesian calculation of region-specific fixation index")
6519 (description
6520 "This package provides an R implementation of an extension of the
6521 BayeScan software for codominant markers, adding the option to group
6522 individual SNPs into pre-defined blocks. A typical application of this new
6523 approach is the identification of genomic regions, genes, or gene sets
6524 containing one or more SNPs that evolved under directional selection.")
6525 (license license:gpl2)))
6526
6527 (define-public r-proc
6528 (package
6529 (name "r-proc")
6530 (version "1.15.0")
6531 (source
6532 (origin
6533 (method url-fetch)
6534 (uri (cran-uri "pROC" version))
6535 (sha256
6536 (base32
6537 "1dxxkwdhxfnj2znq4c5ggrr9m5klh5pmfxg17rz59vr2hfb73m24"))))
6538 (properties `((upstream-name . "pROC")))
6539 (build-system r-build-system)
6540 (propagated-inputs
6541 `(("r-plyr" ,r-plyr)
6542 ("r-rcpp" ,r-rcpp)))
6543 (home-page "http://expasy.org/tools/pROC/")
6544 (synopsis "Display and analyze ROC curves")
6545 (description
6546 "This package provides tools for visualizing, smoothing and comparing
6547 receiver operating characteristic (ROC curves). The area under the
6548 curve (AUC) can be compared with statistical tests based on U-statistics or
6549 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
6550 (license license:gpl3+)))
6551
6552 (define-public r-rootsolve
6553 (package
6554 (name "r-rootsolve")
6555 (version "1.7")
6556 (source
6557 (origin
6558 (method url-fetch)
6559 (uri (cran-uri "rootSolve" version))
6560 (sha256
6561 (base32
6562 "08ic6ggcc5dw4nv9xsqkm3vnvswmxyhnqnv1rdjv1h2gy1ivpcq8"))))
6563 (properties `((upstream-name . "rootSolve")))
6564 (build-system r-build-system)
6565 (native-inputs `(("gfortran" ,gfortran)))
6566 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
6567 (synopsis "Tools for the analysis of ordinary differential equations")
6568 (description
6569 "This package provides routines to find the root of nonlinear functions,
6570 and to perform steady-state and equilibrium analysis of @dfn{ordinary
6571 differential equations} (ODE). It includes routines that:
6572
6573 @enumerate
6574 @item generate gradient and jacobian matrices (full and banded),
6575 @item find roots of non-linear equations by the Newton-Raphson method,
6576 @item estimate steady-state conditions of a system of (differential) equations
6577 in full, banded or sparse form, using the Newton-Raphson method, or by
6578 dynamically running,
6579 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
6580 and 3-D partial differential equations, that have been converted to ordinary
6581 differential equations by numerical differencing (using the method-of-lines
6582 approach).
6583 @end enumerate\n")
6584 (license license:gpl2+)))
6585
6586 (define-public r-abcanalysis
6587 (package
6588 (name "r-abcanalysis")
6589 (version "1.2.1")
6590 (source
6591 (origin
6592 (method url-fetch)
6593 (uri (cran-uri "ABCanalysis" version))
6594 (sha256
6595 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
6596 (properties `((upstream-name . "ABCanalysis")))
6597 (build-system r-build-system)
6598 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
6599 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
6600 (synopsis "Computed ABC Analysis")
6601 (description
6602 "Multivariate data sets often differ in several factors or derived statistical
6603 parameters, which have to be selected for a valid interpretation. Basing this
6604 selection on traditional statistical limits leads occasionally to the perception
6605 of losing information from a data set. This package provides tools to calculate
6606 these limits on the basis of the mathematical properties of the distribution of
6607 the analyzed items.")
6608 (license license:gpl3)))
6609
6610 (define-public r-slam
6611 (package
6612 (name "r-slam")
6613 (version "0.1-45")
6614 (source
6615 (origin
6616 (method url-fetch)
6617 (uri (cran-uri "slam" version))
6618 (sha256
6619 (base32 "0xvj8va6xd7zkn3l4a5ad7v62s7xmkz8frq7gpcl3b6vqwckkaw4"))))
6620 (build-system r-build-system)
6621 (home-page "https://cran.r-project.org/web/packages/slam/")
6622 (synopsis "Sparse lightweight arrays and matrices")
6623 (description
6624 "This package contains data structures and algorithms for sparse arrays and matrices,
6625 based on index arrays and simple triplet representations, respectively.")
6626 (license license:gpl2)))
6627
6628 (define-public r-manipulatewidget
6629 (package
6630 (name "r-manipulatewidget")
6631 (version "0.10.0")
6632 (source
6633 (origin
6634 (method url-fetch)
6635 (uri (cran-uri "manipulateWidget" version))
6636 (sha256
6637 (base32 "1zagrbwkn2d50zzw8i2vyb1hsq4cydmfsqiy1a2qlp6zrv8a6q9x"))))
6638 (properties
6639 `((upstream-name . "manipulateWidget")))
6640 (build-system r-build-system)
6641 (propagated-inputs
6642 `(("r-base64enc" ,r-base64enc)
6643 ("r-codetools" ,r-codetools)
6644 ("r-htmltools" ,r-htmltools)
6645 ("r-htmlwidgets" ,r-htmlwidgets)
6646 ("r-knitr" ,r-knitr)
6647 ("r-miniui" ,r-miniui)
6648 ("r-shiny" ,r-shiny)
6649 ("r-webshot" ,r-webshot)))
6650 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
6651 (synopsis "Add even more interactivity to interactive charts")
6652 (description
6653 "This package lets you create in just a few lines of R code a nice user interface to
6654 modify the data or the graphical parameters of one or multiple interactive
6655 charts. It is useful to quickly explore visually some data or for package
6656 developers to generate user interfaces easy to maintain.")
6657 (license license:gpl2+)))
6658
6659 (define-public r-a3
6660 (package
6661 (name "r-a3")
6662 (version "1.0.0")
6663 (source
6664 (origin
6665 (method url-fetch)
6666 (uri (cran-uri "A3" version))
6667 (sha256
6668 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
6669 (properties `((upstream-name . "A3")))
6670 (build-system r-build-system)
6671 (propagated-inputs
6672 `(("r-pbapply" ,r-pbapply)
6673 ("r-xtable" ,r-xtable)))
6674 (home-page "https://cran.r-project.org/web/packages/A3/")
6675 (synopsis "Error metrics for predictive models")
6676 (description
6677 "This package supplies tools for tabulating and analyzing the results of predictive
6678 models. The methods employed are applicable to virtually any predictive model
6679 and make comparisons between different methodologies straightforward.")
6680 (license license:gpl2+)))
6681
6682 (define-public r-infotheo
6683 (package
6684 (name "r-infotheo")
6685 (version "1.2.0")
6686 (source
6687 (origin
6688 (method url-fetch)
6689 (uri (cran-uri "infotheo" version))
6690 (sha256
6691 (base32
6692 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
6693 (build-system r-build-system)
6694 (home-page "http://homepage.meyerp.com/software")
6695 (synopsis "Information-theoretic measures")
6696 (description
6697 "This package implements various measures of information theory based on
6698 several entropy estimators.")
6699 (license license:gpl3+)))
6700
6701 (define-public r-abcoptim
6702 (package
6703 (name "r-abcoptim")
6704 (version "0.15.0")
6705 (source
6706 (origin
6707 (method url-fetch)
6708 (uri (cran-uri "ABCoptim" version))
6709 (sha256
6710 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
6711 (properties `((upstream-name . "ABCoptim")))
6712 (build-system r-build-system)
6713 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
6714 (home-page "https://github.com/gvegayon/ABCoptim/")
6715 (synopsis "Optimization of Artificial Bee Colony algorithm")
6716 (description
6717 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
6718 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
6719 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
6720 algorithms, and uses only common control parameters such as colony size and
6721 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
6722 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
6723 This version is a work-in-progress and is written in R code.")
6724 (license license:expat)))
6725
6726 (define-public r-abcp2
6727 (package
6728 (name "r-abcp2")
6729 (version "1.2")
6730 (source
6731 (origin
6732 (method url-fetch)
6733 (uri (cran-uri "ABCp2" version))
6734 (sha256
6735 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
6736 (properties `((upstream-name . "ABCp2")))
6737 (build-system r-build-system)
6738 (propagated-inputs `(("r-mass" ,r-mass)))
6739 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
6740 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
6741 (description
6742 "This package tests the goodness of fit of a distribution of offspring to the Normal,
6743 Poisson, and Gamma distribution and estimates the proportional paternity of the
6744 second male (P2) based on the best fit distribution.")
6745 (license license:gpl2)))
6746
6747 (define-public r-abcrf
6748 (package
6749 (name "r-abcrf")
6750 (version "1.8")
6751 (source
6752 (origin
6753 (method url-fetch)
6754 (uri (cran-uri "abcrf" version))
6755 (sha256
6756 (base32 "0r31ki89z8zzcffm0yvd2zw3q96rk6g6fnwwkql902mgajbrha1f"))))
6757 (build-system r-build-system)
6758 (propagated-inputs
6759 `(("r-doparallel" ,r-doparallel)
6760 ("r-foreach" ,r-foreach)
6761 ("r-mass" ,r-mass)
6762 ("r-matrixstats" ,r-matrixstats)
6763 ("r-ranger" ,r-ranger)
6764 ("r-rcpp" ,r-rcpp)
6765 ("r-rcpparmadillo" ,r-rcpparmadillo)
6766 ("r-readr" ,r-readr)
6767 ("r-stringr" ,r-stringr)))
6768 (home-page "https://cran.r-project.org/web/packages/abcrf/")
6769 (synopsis "Approximate bayesian computation via random forests")
6770 (description
6771 "This package performs approximate bayesian computation (ABC) model choice and
6772 parameter inference via random forests. This machine learning tool named random
6773 forests (RF) can conduct selection among the highly complex models covered by
6774 ABC algorithms.")
6775 (license license:gpl2+)))
6776
6777 (define-public r-abctools
6778 (package
6779 (name "r-abctools")
6780 (version "1.1.3")
6781 (source
6782 (origin
6783 (method url-fetch)
6784 (uri (cran-uri "abctools" version))
6785 (sha256
6786 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
6787 (build-system r-build-system)
6788 (propagated-inputs
6789 `(("r-abc" ,r-abc)
6790 ("r-abind" ,r-abind)
6791 ("r-hmisc" ,r-hmisc)
6792 ("r-plyr" ,r-plyr)))
6793 (home-page "https://github.com/dennisprangle/abctools/")
6794 (synopsis "Tools for ABC analyses")
6795 (description
6796 "This @code{r-abctools} package provides tools for approximate Bayesian computation
6797 including summary statistic selection and assessing coverage. This includes
6798 recent dimension reduction algorithms to tune the choice of summary statistics,
6799 and coverage methods to tune the choice of threshold.")
6800 (license license:gpl2+)))
6801
6802 (define-public r-ggstance
6803 (package
6804 (name "r-ggstance")
6805 (version "0.3.2")
6806 (source
6807 (origin
6808 (method url-fetch)
6809 (uri (cran-uri "ggstance" version))
6810 (sha256
6811 (base32 "078ih9s5b0xzf582qg0vjnxvg5qad5ms1v2vdd062ckahi8zz1r8"))))
6812 (build-system r-build-system)
6813 (propagated-inputs
6814 `(("r-ggplot2" ,r-ggplot2)
6815 ("r-plyr" ,r-plyr)
6816 ("r-rlang" ,r-rlang)
6817 ("r-withr" ,r-withr)))
6818 (home-page "https://cran.r-project.org/web/packages/ggstance/")
6819 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
6820 (description
6821 "This package is a @code{r-ggplot2} extension that provides flipped components:
6822 @enumerate
6823 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
6824 @item vertical versions of @code{r-ggplot2} positions.
6825 @end enumerate")
6826 (license license:gpl3)))
6827
6828 (define-public r-mosaiccore
6829 (package
6830 (name "r-mosaiccore")
6831 (version "0.6.0")
6832 (source
6833 (origin
6834 (method url-fetch)
6835 (uri (cran-uri "mosaicCore" version))
6836 (sha256
6837 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
6838 (properties `((upstream-name . "mosaicCore")))
6839 (build-system r-build-system)
6840 (propagated-inputs
6841 `(("r-dplyr" ,r-dplyr)
6842 ("r-lazyeval" ,r-lazyeval)
6843 ("r-mass" ,r-mass)
6844 ("r-rlang" ,r-rlang)
6845 ("r-tidyr" ,r-tidyr)))
6846 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
6847 (synopsis "Common utilities for mosaic family packages")
6848 (description
6849 "Common utilities used in other Mosaic family packages are collected here.")
6850 (license license:gpl2+)))
6851
6852 (define-public r-ggformula
6853 (package
6854 (name "r-ggformula")
6855 (version "0.9.1")
6856 (source
6857 (origin
6858 (method url-fetch)
6859 (uri (cran-uri "ggformula" version))
6860 (sha256
6861 (base32 "01ngx8qh9lhmagng6abx2ky54zi3iyj5bpxlnw59slagwv7l6icx"))))
6862 (build-system r-build-system)
6863 (propagated-inputs
6864 `(("r-ggplot2" ,r-ggplot2)
6865 ("r-ggstance" ,r-ggstance)
6866 ("r-magrittr" ,r-magrittr)
6867 ("r-mosaiccore" ,r-mosaiccore)
6868 ("r-rlang" ,r-rlang)
6869 ("r-stringr" ,r-stringr)
6870 ("r-tibble" ,r-tibble)
6871 ("r-tidyr" ,r-tidyr)))
6872 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
6873 (synopsis "Formula interface for the @code{r-ggplot2}")
6874 (description
6875 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
6876 gf_density(), and so on, bring the formula interface to ggplot(). This captures
6877 and extends the excellent simplicity of the lattice-graphics formula interface,
6878 while providing the intuitive capabilities of @code{r-ggplot2}.")
6879 (license license:expat)))
6880
6881 (define-public r-mosaicdata
6882 (package
6883 (name "r-mosaicdata")
6884 (version "0.17.0")
6885 (source
6886 (origin
6887 (method url-fetch)
6888 (uri (cran-uri "mosaicData" version))
6889 (sha256
6890 (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9"))))
6891 (properties `((upstream-name . "mosaicData")))
6892 (build-system r-build-system)
6893 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
6894 (synopsis "Data sets for project Mosaic")
6895 (description
6896 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
6897 used to teach mathematics, statistics, computation and modeling.")
6898 (license license:gpl2+)))
6899
6900 (define-public r-raster
6901 (package
6902 (name "r-raster")
6903 (version "2.9-5")
6904 (source
6905 (origin
6906 (method url-fetch)
6907 (uri (cran-uri "raster" version))
6908 (sha256
6909 (base32
6910 "0ljrymsp4zzaxdj1l0mw0a6hi88m5h0h920ixfzrg0szbyxqd0yk"))))
6911 (build-system r-build-system)
6912 (propagated-inputs
6913 `(("r-rcpp" ,r-rcpp)
6914 ("r-sp" ,r-sp)))
6915 (home-page "https://www.rspatial.org/")
6916 (synopsis "Geographic data analysis and modeling")
6917 (description
6918 "The package implements basic and high-level functions for reading,
6919 writing, manipulating, analyzing and modeling of gridded spatial data.
6920 Processing of very large files is supported.")
6921 (license license:gpl3+)))
6922
6923 (define-public r-mosaic
6924 (package
6925 (name "r-mosaic")
6926 (version "1.4.0")
6927 (source
6928 (origin
6929 (method url-fetch)
6930 (uri (cran-uri "mosaic" version))
6931 (sha256
6932 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
6933 (build-system r-build-system)
6934 (propagated-inputs
6935 `(("r-broom" ,r-broom)
6936 ("r-dplyr" ,r-dplyr)
6937 ("r-ggdendro" ,r-ggdendro)
6938 ("r-ggformula" ,r-ggformula)
6939 ("r-ggplot2" ,r-ggplot2)
6940 ("r-ggrepel" ,r-ggrepel)
6941 ("r-glue" ,r-glue)
6942 ("r-gridextra" ,r-gridextra)
6943 ("r-lattice" ,r-lattice)
6944 ("r-latticeextra" ,r-latticeextra)
6945 ("r-lazyeval" ,r-lazyeval)
6946 ("r-mass" ,r-mass)
6947 ("r-matrix" ,r-matrix)
6948 ("r-mosaiccore" ,r-mosaiccore)
6949 ("r-mosaicdata" ,r-mosaicdata)
6950 ("r-readr" ,r-readr)
6951 ("r-tidyr" ,r-tidyr)))
6952 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
6953 (synopsis "Mathematics, statistics, and computation teaching utilities")
6954 (description
6955 "This package contain data sets and utilities from
6956 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
6957 statistics, computation and modeling. Project MOSAIC is a community of
6958 educators working to tie together aspects of quantitative work that students
6959 in science, technology, engineering and mathematics will need in their
6960 professional lives, but which are usually taught in isolation, if at all.")
6961 (license license:gpl2+)))
6962
6963 (define-public r-abd
6964 (package
6965 (name "r-abd")
6966 (version "0.2-8")
6967 (source
6968 (origin
6969 (method url-fetch)
6970 (uri (cran-uri "abd" version))
6971 (sha256
6972 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
6973 (build-system r-build-system)
6974 (propagated-inputs
6975 `(("r-lattice" ,r-lattice)
6976 ("r-mosaic" ,r-mosaic)
6977 ("r-nlme" ,r-nlme)))
6978 (home-page "https://cran.r-project.org/web/packages/abd/")
6979 (synopsis "Analysis of biological data")
6980 (description
6981 "The @code{r-abd} package contains data sets and sample code for the Analysis of
6982 biological data by Michael Whitlock and Dolph Schluter.")
6983 (license license:gpl2)))
6984
6985 (define-public r-svgui
6986 (package
6987 (name "r-svgui")
6988 (version "1.0.0")
6989 (source
6990 (origin
6991 (method url-fetch)
6992 (uri (cran-uri "svGUI" version))
6993 (sha256
6994 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
6995 (properties `((upstream-name . "svGUI")))
6996 (build-system r-build-system)
6997 (home-page "https://github.com/SciViews/svGUI/")
6998 (synopsis "Functions for managing GUI clients in R")
6999 (description
7000 "The SciViews @code{svGUI} package eases the management of Graphical User
7001 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7002 centralizes info about GUI elements currently used, and it dispatches GUI
7003 calls to the particular toolkits in use in function of the context.")
7004 (license license:gpl2)))
7005
7006 (define-public r-svdialogs
7007 (package
7008 (name "r-svdialogs")
7009 (version "1.0.0")
7010 (source
7011 (origin
7012 (method url-fetch)
7013 (uri (cran-uri "svDialogs" version))
7014 (sha256
7015 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7016 (properties `((upstream-name . "svDialogs")))
7017 (build-system r-build-system)
7018 (inputs
7019 `(("yad" ,yad)
7020 ("zenity" ,zenity)))
7021 (propagated-inputs
7022 `(("r-rstudioapi" ,r-rstudioapi)
7023 ("r-svgui" ,r-svgui)))
7024 (home-page "https://github.com/SciViews/svDialogs/")
7025 (synopsis "Portable dialog boxes")
7026 (description
7027 "This package helps to construct standard dialog boxes for your GUI, including
7028 message boxes, input boxes, list, file or directory selection, and others. In
7029 case R cannot display GUI dialog boxes, a simpler command line version of these
7030 interactive elements is also provided as a fallback solution.")
7031 (license license:gpl2)))
7032
7033 (define-public r-abe
7034 (package
7035 (name "r-abe")
7036 (version "3.0.1")
7037 (source
7038 (origin
7039 (method url-fetch)
7040 (uri (cran-uri "abe" version))
7041 (sha256
7042 (base32
7043 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7044 (build-system r-build-system)
7045 (home-page "https://cran.r-project.org/web/packages/abe/")
7046 (synopsis "Augmented backward elimination")
7047 (description
7048 "This package performs augmented backward elimination and checks the
7049 stability of the obtained model. Augmented backward elimination combines
7050 significance or information based criteria with the change in estimate to
7051 either select the optimal model for prediction purposes or to serve as a tool
7052 to obtain a practically sound, highly interpretable model.")
7053 (license license:gpl2+)))
7054
7055 (define-public r-abf2
7056 (package
7057 (name "r-abf2")
7058 (version "0.7-1")
7059 (source
7060 (origin
7061 (method url-fetch)
7062 (uri (cran-uri "abf2" version))
7063 (sha256
7064 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7065 (build-system r-build-system)
7066 (home-page "https://cran.r-project.org/web/packages/abf2/")
7067 (synopsis "Load gap-free axon @code{r-abf2} files")
7068 (description
7069 "This package loads electrophysiology data from ABF2 files, as created by
7070 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7071 mode are currently supported.")
7072 (license license:artistic2.0)))
7073
7074 (define-public r-abhgenotyper
7075 (package
7076 (name "r-abhgenotyper")
7077 (version "1.0.1")
7078 (source
7079 (origin
7080 (method url-fetch)
7081 (uri (cran-uri "ABHgenotypeR" version))
7082 (sha256
7083 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7084 (properties `((upstream-name . "ABHgenotypeR")))
7085 (build-system r-build-system)
7086 (propagated-inputs
7087 `(("r-ggplot2" ,r-ggplot2)
7088 ("r-reshape2" ,r-reshape2)))
7089 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7090 (synopsis "Visualize and manipulate ABH genotypes")
7091 (description
7092 "The @code{r-abhgenotyper} package provides simple imputation,
7093 error-correction and plotting capacities for genotype data. The package is
7094 supposed to serve as an intermediate but independent analysis tool between the
7095 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7096 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7097 genotypes as \"graphical genotypes\".")
7098 (license license:gpl3)))
7099
7100 (define-public r-furrr
7101 (package
7102 (name "r-furrr")
7103 (version "0.1.0")
7104 (source
7105 (origin
7106 (method url-fetch)
7107 (uri (cran-uri "furrr" version))
7108 (sha256
7109 (base32
7110 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
7111 (build-system r-build-system)
7112 (propagated-inputs
7113 `(("r-future" ,r-future)
7114 ("r-globals" ,r-globals)
7115 ("r-purrr" ,r-purrr)
7116 ("r-rlang" ,r-rlang)))
7117 (home-page "https://github.com/DavisVaughan/furrr")
7118 (synopsis "Apply mapping functions in parallel using futures")
7119 (description
7120 "This package provides implementations of the family of @code{map()}
7121 functions from the @code{purrr} package that can be resolved using any
7122 @code{future}-supported backend, e.g. parallel on the local machine or
7123 distributed on a compute cluster.")
7124 (license license:lgpl2.1+)))
7125
7126 (define-public r-abjutils
7127 (package
7128 (name "r-abjutils")
7129 (version "0.2.3")
7130 (source
7131 (origin
7132 (method url-fetch)
7133 (uri (cran-uri "abjutils" version))
7134 (sha256
7135 (base32 "0n4zps65y3zg0gfzlv97w91si52a9izkncirskbkj5x9hk0nhxcv"))))
7136 (build-system r-build-system)
7137 (propagated-inputs
7138 `(("r-devtools" ,r-devtools)
7139 ("r-dplyr" ,r-dplyr)
7140 ("r-furrr" ,r-furrr)
7141 ("r-future" ,r-future)
7142 ("r-glue" ,r-glue)
7143 ("r-httr" ,r-httr)
7144 ("r-magrittr" ,r-magrittr)
7145 ("r-progress" ,r-progress)
7146 ("r-purrr" ,r-purrr)
7147 ("r-readr" ,r-readr)
7148 ("r-rlang" ,r-rlang)
7149 ("r-rstudioapi" ,r-rstudioapi)
7150 ("r-scales" ,r-scales)
7151 ("r-stringi" ,r-stringi)
7152 ("r-stringr" ,r-stringr)
7153 ("r-tibble" ,r-tibble)
7154 ("r-tidyr" ,r-tidyr)))
7155 (home-page "https://github.com/abjur/abjutils/")
7156 (synopsis "Collection of tools for jurimetrical analysis")
7157 (description
7158 "This package implements general purpose tools, such as functions for
7159 sampling and basic manipulation of Brazilian lawsuits identification number.
7160 It also implements functions for text cleaning, such as accentuation
7161 removal.")
7162 (license license:expat)))
7163
7164 (define-public r-abnormality
7165 (package
7166 (name "r-abnormality")
7167 (version "0.1.0")
7168 (source
7169 (origin
7170 (method url-fetch)
7171 (uri (cran-uri "abnormality" version))
7172 (sha256
7173 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
7174 (build-system r-build-system)
7175 (propagated-inputs
7176 `(("r-mass" ,r-mass)
7177 ("r-matrix" ,r-matrix)))
7178 (home-page "https://cran.r-project.org/web/packages/abnormality/")
7179 (synopsis "Measure a subject's abnormality with respect to a reference population")
7180 (description
7181 "This package contains functions to implement the methodology and
7182 considerations laid out by Marks et al. in the article \"Measuring abnormality
7183 in high dimensional spaces: applications in biomechanical gait analysis\".
7184 Using high-dimensional datasets to measure a subject's overall level of
7185 abnormality as compared to a reference population is often needed in outcomes
7186 research.")
7187 (license license:expat)))
7188
7189 (define-public r-abodoutlier
7190 (package
7191 (name "r-abodoutlier")
7192 (version "0.1")
7193 (source
7194 (origin
7195 (method url-fetch)
7196 (uri (cran-uri "abodOutlier" version))
7197 (sha256
7198 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
7199 (properties `((upstream-name . "abodOutlier")))
7200 (build-system r-build-system)
7201 (propagated-inputs
7202 `(("r-cluster" ,r-cluster)))
7203 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
7204 (synopsis "Angle-based outlier detection")
7205 (description
7206 "This package performs angle-based outlier detection on a given data
7207 frame. It offers three methods to process data:
7208 @enumerate
7209 @item full but slow implementation using all the data that has cubic
7210 complexity;
7211 @item a fully randomized method;
7212 @item a method using k-nearest neighbours.
7213 @end enumerate
7214 These algorithms are well suited for high dimensional data outlier
7215 detection.")
7216 (license license:expat)))
7217
7218 (define-public r-abps
7219 (package
7220 (name "r-abps")
7221 (version "0.3")
7222 (source
7223 (origin
7224 (method url-fetch)
7225 (uri (cran-uri "ABPS" version))
7226 (sha256
7227 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
7228 (properties `((upstream-name . "ABPS")))
7229 (build-system r-build-system)
7230 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
7231 (home-page "https://cran.r-project.org/web/packages/ABPS/")
7232 (synopsis "Abnormal blood profile score to detect blood doping")
7233 (description
7234 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
7235 The ABPS is a part of the Athlete biological passport program of the World
7236 anti-doping agency, which combines several blood parameters into a single
7237 score in order to detect blood doping. The package also contains functions to
7238 calculate other scores used in anti-doping programs, such as the ratio of
7239 hemoglobin to reticulocytes (OFF-score), as well as example data.")
7240 (license license:gpl2+)))
7241
7242 (define-public r-parmigene
7243 (package
7244 (name "r-parmigene")
7245 (version "1.0.2")
7246 (source
7247 (origin
7248 (method url-fetch)
7249 (uri (cran-uri "parmigene" version))
7250 (sha256
7251 (base32
7252 "1fsm6pkr17jcbzkj1hbn91jf890fviqk1lq6ls8pihsdgah1zb4d"))))
7253 (build-system r-build-system)
7254 (home-page "https://cran.r-project.org/web/packages/parmigene/")
7255 (synopsis "Mutual information estimation for gene network reconstruction")
7256 (description
7257 "This package provides a parallel estimation of the mutual information
7258 based on entropy estimates from k-nearest neighbors distances and algorithms
7259 for the reconstruction of gene regulatory networks.")
7260 (license license:agpl3+)))
7261
7262 (define-public r-pscl
7263 (package
7264 (name "r-pscl")
7265 (version "1.5.2")
7266 (source
7267 (origin
7268 (method url-fetch)
7269 (uri (cran-uri "pscl" version))
7270 (sha256
7271 (base32 "1phf3awsfr4ncqfqzin5m1pz0g7y1zhbcm2sz7358ssw914fd7rc"))))
7272 (build-system r-build-system)
7273 (propagated-inputs
7274 `(("r-mass" ,r-mass)))
7275 (home-page "https://github.com/atahk/pscl/")
7276 (synopsis "Political science computational laboratory")
7277 (description
7278 "The @code{pscl} is an R package providing classes and methods for:
7279 @enumerate
7280 @item Bayesian analysis of roll call data (item-response models);
7281 @item elementary Bayesian statistics;
7282 @item maximum likelihood estimation of zero-inflated and hurdle models for count
7283 data;
7284 @item utility functions.
7285 @end enumerate")
7286 (license license:gpl2)))
7287
7288 (define-public r-accelmissing
7289 (package
7290 (name "r-accelmissing")
7291 (version "1.4")
7292 (source
7293 (origin
7294 (method url-fetch)
7295 (uri (cran-uri "accelmissing" version))
7296 (sha256
7297 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
7298 (build-system r-build-system)
7299 (propagated-inputs
7300 `(("r-mice" ,r-mice)
7301 ("r-pscl" ,r-pscl)))
7302 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
7303 (synopsis "Missing value imputation for accelerometer data")
7304 (description
7305 "This package provides a statistical method to impute the missing values in
7306 accelerometer data. The methodology includes both parametric and
7307 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
7308 model. It also provides multiple functions to preprocess the accelerometer data
7309 previous to the missing data imputation. These include detecting the wearing
7310 and the non-wearing time, selecting valid days and subjects, and creating plots.")
7311 (license license:gpl2+)))
7312
7313 (define-public r-mhsmm
7314 (package
7315 (name "r-mhsmm")
7316 (version "0.4.16")
7317 (source
7318 (origin
7319 (method url-fetch)
7320 (uri (cran-uri "mhsmm" version))
7321 (sha256
7322 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
7323 (build-system r-build-system)
7324 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7325 (home-page "https://github.com/jaredo/mhsmm/")
7326 (synopsis "Inference for hidden Markov and semi-Markov models")
7327 (description
7328 "The @code{r-mhsmm} package implements estimation and prediction methods for
7329 hidden Markov and semi-Markov models for multiple observation sequences. Such
7330 techniques are of interest when observed data is thought to be dependent on some
7331 unobserved (or hidden) state. Also, this package is suitable for equidistant
7332 time series data, with multivariate and/or missing data. Allows user defined
7333 emission distributions.")
7334 (license license:gpl2+)))
7335
7336 (define-public r-nleqslv
7337 (package
7338 (name "r-nleqslv")
7339 (version "3.3.2")
7340 (source
7341 (origin
7342 (method url-fetch)
7343 (uri (cran-uri "nleqslv" version))
7344 (sha256
7345 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
7346 (build-system r-build-system)
7347 (native-inputs `(("gfortran" ,gfortran)))
7348 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
7349 (synopsis "Solve systems of nonlinear equations")
7350 (description
7351 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
7352 Broyden or a Newton method with a choice of global strategies such as line
7353 search and trust region. There are options for using a numerical or user
7354 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
7355 singular or ill-conditioned Jacobian.")
7356 (license license:gpl2+)))
7357
7358 (define-public r-physicalactivity
7359 (package
7360 (name "r-physicalactivity")
7361 (version "0.2-2")
7362 (source
7363 (origin
7364 (method url-fetch)
7365 (uri (cran-uri "PhysicalActivity" version))
7366 (sha256
7367 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
7368 (properties
7369 `((upstream-name . "PhysicalActivity")))
7370 (build-system r-build-system)
7371 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
7372 (synopsis "Procesing accelerometer data for physical activity measurement")
7373 (description
7374 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
7375 for classification of monitor wear and nonwear time intervals in accelerometer
7376 data collected to assess physical activity. The package also contains functions
7377 for making plots of accelerometer data and obtaining the summary of various
7378 information including daily monitor wear time and the mean monitor wear time
7379 during valid days. The revised package version 0.2-1 improved the functions
7380 regarding speed, robustness and add better support for time zones and daylight
7381 saving. In addition, several functions were added:
7382 @enumerate
7383 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
7384 @item the @code{markPAI} can categorize physical activity intensity level based
7385 on user-defined cut-points of accelerometer counts.
7386 @end enumerate
7387 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
7388 @code{queryActigraph} functions.")
7389 (license license:gpl3+)))
7390
7391 (define-public r-acc
7392 (package
7393 (name "r-acc")
7394 (version "1.3.3")
7395 (source
7396 (origin
7397 (method url-fetch)
7398 (uri (cran-uri "acc" version))
7399 (sha256
7400 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
7401 (build-system r-build-system)
7402 (propagated-inputs
7403 `(("r-circlize" ,r-circlize)
7404 ("r-dbi" ,r-dbi)
7405 ("r-ggplot2" ,r-ggplot2)
7406 ("r-iterators" ,r-iterators)
7407 ("r-mhsmm" ,r-mhsmm)
7408 ("r-nleqslv" ,r-nleqslv)
7409 ("r-physicalactivity" ,r-physicalactivity)
7410 ("r-plyr" ,r-plyr)
7411 ("r-r-utils" ,r-r-utils)
7412 ("r-rcpp" ,r-rcpp)
7413 ("r-rcpparmadillo" ,r-rcpparmadillo)
7414 ("r-rsqlite" ,r-rsqlite)
7415 ("r-zoo" ,r-zoo)))
7416 (home-page "https://cran.r-project.org/web/packages/acc/")
7417 (synopsis "Exploring accelerometer data")
7418 (description
7419 "This package processes accelerometer data from uni-axial and tri-axial devices
7420 and generates data summaries. Also, includes functions to plot, analyze, and
7421 simulate accelerometer data.")
7422 (license license:gpl2+)))
7423
7424 (define-public r-rbenchmark
7425 (package
7426 (name "r-rbenchmark")
7427 (version "1.0.0")
7428 (source
7429 (origin
7430 (method url-fetch)
7431 (uri (cran-uri "rbenchmark" version))
7432 (sha256
7433 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
7434 (build-system r-build-system)
7435 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
7436 (synopsis "Benchmarking routine for R")
7437 (description
7438 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
7439 and is intended to facilitate benchmarking of arbitrary R code. The library
7440 consists of just one function, benchmark, which is a simple wrapper around
7441 system.time. Given a specification of the benchmarking process (counts of
7442 replications, evaluation environment) and an arbitrary number of expressions,
7443 benchmark evaluates each of the expressions in the specified environment,
7444 replicating the evaluation as many times as specified, and returning the results
7445 conveniently wrapped into a data frame.")
7446 (license license:gpl2+)))
7447
7448 (define-public r-mitools
7449 (package
7450 (name "r-mitools")
7451 (version "2.4")
7452 (source
7453 (origin
7454 (method url-fetch)
7455 (uri (cran-uri "mitools" version))
7456 (sha256
7457 (base32
7458 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
7459 (build-system r-build-system)
7460 (propagated-inputs `(("r-dbi" ,r-dbi)))
7461 (home-page "https://cran.r-project.org/web/packages/mitools/")
7462 (synopsis "Tools for multiple imputation of missing data")
7463 (description
7464 "This package provides tools to perform analyses and combine results from
7465 multiple-imputation datasets.")
7466 (license license:gpl2)))
7467
7468 (define-public r-magick
7469 (package
7470 (name "r-magick")
7471 (version "2.0")
7472 (source
7473 (origin
7474 (method url-fetch)
7475 (uri (cran-uri "magick" version))
7476 (sha256
7477 (base32
7478 "18y465325mhf48x2jn3jz9khwq1z2aj13wfbdkv8k3hln1sd572m"))))
7479 (build-system r-build-system)
7480 (inputs
7481 `(("imagemagick" ,imagemagick)
7482 ("zlib" ,zlib)))
7483 (propagated-inputs
7484 `(("r-curl" ,r-curl)
7485 ("r-magrittr" ,r-magrittr)
7486 ("r-rcpp" ,r-rcpp)))
7487 (native-inputs
7488 `(("pkg-config" ,pkg-config)))
7489 (home-page "https://github.com/ropensci/magick")
7490 (synopsis "Advanced graphics and image-processing in R")
7491 (description
7492 "This package provides bindings to ImageMagick, a comprehensive image
7493 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
7494 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
7495 operations are vectorized via the Magick++ STL meaning they operate either on
7496 a single frame or a series of frames for working with layers, collages, or
7497 animation. In RStudio, images are automatically previewed when printed to the
7498 console, resulting in an interactive editing environment.")
7499 (license license:expat)))
7500
7501 (define-public r-survey
7502 (package
7503 (name "r-survey")
7504 (version "3.36")
7505 (source
7506 (origin
7507 (method url-fetch)
7508 (uri (cran-uri "survey" version))
7509 (sha256
7510 (base32
7511 "0xclsy4ram4k48vzh5m5bpmknnpwxnss85v73s4czsjj5ffjxwwh"))))
7512 (build-system r-build-system)
7513 (propagated-inputs
7514 `(("r-lattice" ,r-lattice)
7515 ("r-matrix" ,r-matrix)
7516 ("r-minqa" ,r-minqa)
7517 ("r-mitools" ,r-mitools)
7518 ("r-numderiv" ,r-numderiv)
7519 ("r-survival" ,r-survival)))
7520 (home-page "http://r-survey.r-forge.r-project.org/survey/")
7521 (synopsis "Analysis of complex survey samples")
7522 (description
7523 "This package provides tools for the analysis of complex survey samples.
7524 The provided features include: summary statistics, two-sample tests, rank
7525 tests, generalised linear models, cumulative link models, Cox models,
7526 loglinear models, and general maximum pseudolikelihood estimation for
7527 multistage stratified, cluster-sampled, unequally weighted survey samples;
7528 variances by Taylor series linearisation or replicate weights;
7529 post-stratification, calibration, and raking; two-phase subsampling designs;
7530 graphics; PPS sampling without replacement; principal components, and factor
7531 analysis.")
7532 ;; Either version of the GPL.
7533 (license (list license:gpl2 license:gpl3))))
7534
7535 (define-public r-dvmisc
7536 (package
7537 (name "r-dvmisc")
7538 (version "1.1.3")
7539 (source
7540 (origin
7541 (method url-fetch)
7542 (uri (cran-uri "dvmisc" version))
7543 (sha256
7544 (base32 "0x391pxg5mqgp5xxc8qwhwxky8ds7d9gr9iwmsb12c92kxfk00bv"))))
7545 (build-system r-build-system)
7546 (propagated-inputs
7547 `(("r-cubature" ,r-cubature)
7548 ("r-data-table" ,r-data-table)
7549 ("r-dplyr" ,r-dplyr)
7550 ("r-ggplot2" ,r-ggplot2)
7551 ("r-mass" ,r-mass)
7552 ("r-mvtnorm" ,r-mvtnorm)
7553 ("r-pracma" ,r-pracma)
7554 ("r-purrr" ,r-purrr)
7555 ("r-rbenchmark" ,r-rbenchmark)
7556 ("r-rcpp" ,r-rcpp)
7557 ("r-survey" ,r-survey)))
7558 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
7559 (synopsis "Faster computation of common statistics and miscellaneous functions")
7560 (description
7561 "This package implements faster versions of base R functions (e.g. mean, standard
7562 deviation, covariance, weighted mean), mostly written in C++, along with
7563 miscellaneous functions for various purposes (e.g. create the histogram with
7564 fitted probability density function or probability mass function curve, create
7565 the body mass index groups, assess the linearity assumption in logistic
7566 regression).")
7567 (license license:gpl2)))
7568
7569 (define-public r-accelerometry
7570 (package
7571 (name "r-accelerometry")
7572 (version "3.1.2")
7573 (source
7574 (origin
7575 (method url-fetch)
7576 (uri (cran-uri "accelerometry" version))
7577 (sha256
7578 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
7579 (build-system r-build-system)
7580 (propagated-inputs
7581 `(("r-dvmisc" ,r-dvmisc)
7582 ("r-rcpp" ,r-rcpp)))
7583 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
7584 (synopsis "Functions for processing accelerometer data")
7585 (description
7586 "This package provides a collection of functions that perform operations on
7587 time-series accelerometer data, such as identify the non-wear time, flag minutes
7588 that are part of an activity bout, and find the maximum 10-minute average count
7589 value. The functions are generally very flexible, allowing for a variety of
7590 algorithms to be implemented.")
7591 (license license:gpl3)))
7592
7593 (define-public r-absim
7594 (package
7595 (name "r-absim")
7596 (version "0.2.6")
7597 (source
7598 (origin
7599 (method url-fetch)
7600 (uri (cran-uri "AbSim" version))
7601 (sha256
7602 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
7603 (properties `((upstream-name . "AbSim")))
7604 (build-system r-build-system)
7605 (propagated-inputs
7606 `(("r-ape" ,r-ape)
7607 ("r-powerlaw" ,r-powerlaw)))
7608 (home-page "https://cran.r-project.org/web/packages/AbSim/")
7609 (synopsis "Time resolved simulations of antibody repertoires")
7610 (description
7611 "This package provides simulation methods for the evolution of antibody repertoires.
7612 The heavy and light chain variable region of both human and C57BL/6 mice can
7613 be simulated in a time-dependent fashion. Both single lineages using one set of
7614 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
7615 with an initial V-D-J recombination event, starting the first phylogenetic tree.
7616 Upon completion, the main loop of the algorithm begins, with each iteration
7617 representing one simulated time step. Various mutation events are possible at
7618 each time step, contributing to a diverse final repertoire.")
7619 (license license:gpl2)))
7620
7621 (define-public r-quic
7622 (package
7623 (name "r-quic")
7624 (version "1.1")
7625 (source
7626 (origin
7627 (method url-fetch)
7628 (uri (cran-uri "QUIC" version))
7629 (sha256
7630 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
7631 (properties `((upstream-name . "QUIC")))
7632 (build-system r-build-system)
7633 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
7634 (synopsis "Regularized sparse inverse covariance matrix estimation")
7635 (description
7636 "This package implements the regularized Gaussian maximum likelihood
7637 estimation of the inverse of a covariance matrix. It uses Newton's method and
7638 coordinate descent to solve the regularized inverse covariance matrix
7639 estimation problem.")
7640 ;; The project home page states that the release is under GPLv3 or later.
7641 ;; The CRAN page only says GPL-3.
7642 (license license:gpl3+)))
7643
7644 (define-public r-abundant
7645 (package
7646 (name "r-abundant")
7647 (version "1.1")
7648 (source
7649 (origin
7650 (method url-fetch)
7651 (uri (cran-uri "abundant" version))
7652 (sha256
7653 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
7654 (build-system r-build-system)
7655 (propagated-inputs
7656 `(("r-quic" ,r-quic)))
7657 (home-page "https://cran.r-project.org/web/packages/abundant/")
7658 (synopsis "Abundant regression and high-dimensional principal fitted components")
7659 (description
7660 "This package provides tools to fit and predict with the high-dimensional
7661 principal fitted components model. This model is described by Cook, Forzani,
7662 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
7663 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
7664 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
7665 (license license:gpl2+)))
7666
7667 (define-public r-ac3net
7668 (package
7669 (name "r-ac3net")
7670 (version "1.2.2")
7671 (source
7672 (origin
7673 (method url-fetch)
7674 (uri (cran-uri "Ac3net" version))
7675 (sha256
7676 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
7677 (properties `((upstream-name . "Ac3net")))
7678 (build-system r-build-system)
7679 (propagated-inputs
7680 `(("r-data-table" ,r-data-table)))
7681 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
7682 (synopsis "Inferring directional conservative causal core gene networks")
7683 (description "This package infers directional Conservative causal core
7684 (gene) networks (C3NET). This is a version of the algorithm C3NET with
7685 directional network.")
7686 (license license:gpl3+)))
7687
7688 (define-public r-aca
7689 (package
7690 (name "r-aca")
7691 (version "1.1")
7692 (source
7693 (origin
7694 (method url-fetch)
7695 (uri (cran-uri "ACA" version))
7696 (sha256
7697 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
7698 (properties `((upstream-name . "ACA")))
7699 (build-system r-build-system)
7700 (home-page "https://cran.r-project.org/web/packages/ACA/")
7701 (synopsis "Abrupt change-point or aberration detection in point series")
7702 (description
7703 "This package offers an interactive function for the detection of breakpoints in
7704 series.")
7705 ;; Any version of the GPL
7706 (license (list license:gpl2+ license:gpl3+))))
7707
7708 (define-public r-acceptancesampling
7709 (package
7710 (name "r-acceptancesampling")
7711 (version "1.0-6")
7712 (source
7713 (origin
7714 (method url-fetch)
7715 (uri (cran-uri "AcceptanceSampling" version))
7716 (sha256
7717 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
7718 (properties
7719 `((upstream-name . "AcceptanceSampling")))
7720 (build-system r-build-system)
7721 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
7722 (synopsis "Creation and evaluation of acceptance sampling plans")
7723 (description
7724 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
7725 acceptance sampling plans. Acceptance sampling is a methodology commonly used
7726 in quality control and improvement. International standards of acceptance
7727 sampling provide sampling plans for specific circumstances. The aim of this
7728 package is to provide an easy-to-use interface to visualize single, double or
7729 multiple sampling plans. In addition, methods have been provided to enable the
7730 user to assess sampling plans against pre-specified levels of performance, as
7731 measured by the probability of acceptance for a given level of quality in the
7732 lot.")
7733 (license license:gpl3+)))
7734
7735 (define-public r-acclma
7736 (package
7737 (name "r-acclma")
7738 (version "1.0")
7739 (source
7740 (origin
7741 (method url-fetch)
7742 (uri (cran-uri "ACCLMA" version))
7743 (sha256
7744 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
7745 (properties `((upstream-name . "ACCLMA")))
7746 (build-system r-build-system)
7747 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
7748 (synopsis "ACC & LMA graph plotting")
7749 (description
7750 "This package contains a function that imports data from a @acronym{CSV,
7751 Comma-Separated Values} file, or uses manually entered data from the format (x,
7752 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
7753 Curve} vs @acronym{LOI, Line of Independence} graph and
7754 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
7755 function is @code{plotLMA} (source file, header) that takes a data set and plots the
7756 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
7757 string) was passed, a manual data entry window is opened. The header parameter
7758 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
7759 a header row or not. The dataset should contain only one independent variable
7760 (x) and one dependent variable (y) and can contain a weight for each
7761 observation.")
7762 (license license:gpl2)))
7763
7764 (define-public r-aspi
7765 (package
7766 (name "r-aspi")
7767 (version "0.2.0")
7768 (source
7769 (origin
7770 (method url-fetch)
7771 (uri (cran-uri "aspi" version))
7772 (sha256
7773 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
7774 (build-system r-build-system)
7775 (home-page
7776 "https://cran.r-project.org/web/packages/aspi/")
7777 (synopsis
7778 "Analysis of symmetry of parasitic infections")
7779 (description
7780 "This package provides tools for the analysis and visualization of bilateral
7781 asymmetry in parasitic infections.")
7782 (license license:gpl3+)))
7783
7784 (define-public r-sandwich
7785 (package
7786 (name "r-sandwich")
7787 (version "2.5-1")
7788 (source
7789 (origin
7790 (method url-fetch)
7791 (uri (cran-uri "sandwich" version))
7792 (sha256
7793 (base32
7794 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
7795 (build-system r-build-system)
7796 (propagated-inputs
7797 `(("r-zoo" ,r-zoo)))
7798 (home-page "https://cran.r-project.org/web/packages/sandwich/")
7799 (synopsis "Robust Covariance Matrix Estimators")
7800 (description
7801 "This package provides model-robust standard error estimators for
7802 cross-sectional, time series, clustered, panel, and longitudinal data.")
7803 ;; Either version of the license.
7804 (license (list license:gpl2 license:gpl3))))
7805
7806 (define-public r-th-data
7807 (package
7808 (name "r-th-data")
7809 (version "1.0-10")
7810 (source
7811 (origin
7812 (method url-fetch)
7813 (uri (cran-uri "TH.data" version))
7814 (sha256
7815 (base32
7816 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
7817 (properties `((upstream-name . "TH.data")))
7818 (build-system r-build-system)
7819 (propagated-inputs
7820 `(("r-mass" ,r-mass)
7821 ("r-survival" ,r-survival)))
7822 (home-page "https://cran.r-project.org/web/packages/TH.data/")
7823 (synopsis "Shared data sets")
7824 (description
7825 "This package contains supporting data sets that are used in other
7826 packages maintained by Torsten Hothorn.")
7827 (license license:gpl3)))
7828
7829 (define-public r-multcomp
7830 (package
7831 (name "r-multcomp")
7832 (version "1.4-10")
7833 (source
7834 (origin
7835 (method url-fetch)
7836 (uri (cran-uri "multcomp" version))
7837 (sha256
7838 (base32
7839 "1kzmdn9jmz5bmhf3wsfr12ljbasmwsgcsfdia52k0bi6q0swdg19"))))
7840 (build-system r-build-system)
7841 (propagated-inputs
7842 `(("r-codetools" ,r-codetools)
7843 ("r-mvtnorm" ,r-mvtnorm)
7844 ("r-sandwich" ,r-sandwich)
7845 ("r-survival" ,r-survival)
7846 ("r-th-data" ,r-th-data)))
7847 (home-page "https://cran.r-project.org/web/packages/multcomp/")
7848 (synopsis "Simultaneous inference in general parametric models")
7849 (description
7850 "Simultaneous tests and confidence intervals for general linear
7851 hypotheses in parametric models, including linear, generalized linear, linear
7852 mixed effects, and survival models. The package includes demos reproducing
7853 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
7854 Hothorn, Westfall, 2010, CRC Press).")
7855 (license license:gpl2)))
7856
7857 (define-public r-emmeans
7858 (package
7859 (name "r-emmeans")
7860 (version "1.3.5.1")
7861 (source
7862 (origin
7863 (method url-fetch)
7864 (uri (cran-uri "emmeans" version))
7865 (sha256
7866 (base32
7867 "0rgzjvmp3yqhwgfg96v17wi8gbafzbrmz134shj2jsf5bsmw6vbj"))))
7868 (build-system r-build-system)
7869 (propagated-inputs
7870 `(("r-estimability" ,r-estimability)
7871 ("r-mvtnorm" ,r-mvtnorm)
7872 ("r-numderiv" ,r-numderiv)
7873 ("r-plyr" ,r-plyr)
7874 ("r-xtable" ,r-xtable)))
7875 (home-page "https://github.com/rvlenth/emmeans")
7876 (synopsis "Estimated marginal means, aka least-squares means")
7877 (description
7878 "This package provides tools to obtain @dfn{estimated marginal
7879 means} (EMMs) for many linear, generalized linear, and mixed models. It can
7880 be used to compute contrasts or linear functions of EMMs, trends, and
7881 comparisons of slopes.")
7882 ;; Either version of the license.
7883 (license (list license:gpl2 license:gpl3))))
7884
7885 (define-public r-pwr
7886 (package
7887 (name "r-pwr")
7888 (version "1.2-2")
7889 (source
7890 (origin
7891 (method url-fetch)
7892 (uri (cran-uri "pwr" version))
7893 (sha256
7894 (base32
7895 "0r5g781lr677vp3zyhgmi7r68c87l8gd05l1s3ffnxgn5wf043sm"))))
7896 (build-system r-build-system)
7897 (native-inputs
7898 `(("r-knitr" ,r-knitr)))
7899 (home-page "https://github.com/heliosdrm/pwr")
7900 (synopsis "Basic functions for power analysis")
7901 (description
7902 "This package provides power analysis functions along the lines of
7903 Cohen (1988).")
7904 (license license:gpl3+)))
7905
7906 (define-public r-libcoin
7907 (package
7908 (name "r-libcoin")
7909 (version "1.0-4")
7910 (source
7911 (origin
7912 (method url-fetch)
7913 (uri (cran-uri "libcoin" version))
7914 (sha256
7915 (base32
7916 "1i893ij9vkmc4y721npw1s3prmmcs2da5vf3ajm0j8ccmfhbmp4i"))))
7917 (build-system r-build-system)
7918 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
7919 (home-page "https://cran.r-project.org/web/packages/libcoin")
7920 (synopsis "Linear test statistics for permutation inference")
7921 (description
7922 "This package provides basic infrastructure for linear test statistics
7923 and permutation inference in the framework of Strasser and Weber (1999).")
7924 (license license:gpl2)))
7925
7926 (define-public r-coin
7927 (package
7928 (name "r-coin")
7929 (version "1.3-0")
7930 (source
7931 (origin
7932 (method url-fetch)
7933 (uri (cran-uri "coin" version))
7934 (sha256
7935 (base32
7936 "1y0yl4mjaxca0jqz53sv1gcpdg89m099rq61iszxvpx7w0vvpkmd"))))
7937 (build-system r-build-system)
7938 (propagated-inputs
7939 `(("r-libcoin" ,r-libcoin)
7940 ("r-matrixstats" ,r-matrixstats)
7941 ("r-modeltools" ,r-modeltools)
7942 ("r-multcomp" ,r-multcomp)
7943 ("r-mvtnorm" ,r-mvtnorm)
7944 ("r-survival" ,r-survival)))
7945 (home-page "http://coin.r-forge.r-project.org")
7946 (synopsis "Conditional inference procedures in a permutation test framework")
7947 (description
7948 "This package provides conditional inference procedures for the general
7949 independence problem including two-sample, K-sample (non-parametric ANOVA),
7950 correlation, censored, ordered and multivariate problems.")
7951 (license license:gpl2)))
7952
7953 (define-public r-bayesplot
7954 (package
7955 (name "r-bayesplot")
7956 (version "1.7.0")
7957 (source
7958 (origin
7959 (method url-fetch)
7960 (uri (cran-uri "bayesplot" version))
7961 (sha256
7962 (base32
7963 "0h23sbfny2hcipvvfhq5aiwdh1vanizn7f8lpb9kffypxhcd7v7w"))))
7964 (build-system r-build-system)
7965 (inputs
7966 `(("pandoc" ,ghc-pandoc)
7967 ("pandoc-citeproc" ,ghc-pandoc-citeproc)))
7968 (propagated-inputs
7969 `(("r-dplyr" ,r-dplyr)
7970 ("r-ggplot2" ,r-ggplot2)
7971 ("r-ggridges" ,r-ggridges)
7972 ("r-glue" ,r-glue)
7973 ("r-reshape2" ,r-reshape2)
7974 ("r-rlang" ,r-rlang)
7975 ("r-tibble" ,r-tibble)
7976 ("r-tidyselect" ,r-tidyselect)))
7977 (home-page "http://mc-stan.org/bayesplot")
7978 (synopsis "Plotting for Bayesian models")
7979 (description
7980 "This package provides plotting functions for posterior analysis, model
7981 checking, and MCMC diagnostics. The package is designed not only to provide
7982 convenient functionality for users, but also a common set of functions that
7983 can be easily used by developers working on a variety of R packages for
7984 Bayesian modeling.")
7985 (license license:gpl3+)))
7986
7987 (define-public r-tmb
7988 (package
7989 (name "r-tmb")
7990 (version "1.7.15")
7991 (source
7992 (origin
7993 (method url-fetch)
7994 (uri (cran-uri "TMB" version))
7995 (sha256
7996 (base32
7997 "1r2d8c5iazihba42sn33yarv0dcfiy989sx64zcf14zr8k6cgjzs"))))
7998 (properties `((upstream-name . "TMB")))
7999 (build-system r-build-system)
8000 (propagated-inputs
8001 `(("r-matrix" ,r-matrix)
8002 ("r-rcppeigen" ,r-rcppeigen)))
8003 (home-page "http://tmb-project.org")
8004 (synopsis "Template model builder: a general random effect tool")
8005 (description
8006 "With this tool, a user should be able to quickly implement complex
8007 random effect models through simple C++ templates. The package combines
8008 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8009 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8010 from R) to obtain an efficient implementation of the applied Laplace
8011 approximation with exact derivatives. Key features are: Automatic sparseness
8012 detection, parallelism through BLAS and parallel user templates.")
8013 (license license:gpl2)))
8014
8015 (define-public r-sjstats
8016 (package
8017 (name "r-sjstats")
8018 (version "0.17.5")
8019 (source
8020 (origin
8021 (method url-fetch)
8022 (uri (cran-uri "sjstats" version))
8023 (sha256
8024 (base32
8025 "1x9ybvz84vgaabmqp4z6crbv5q6kqjg6msk1spbr11zx9dbj06ca"))))
8026 (build-system r-build-system)
8027 (propagated-inputs
8028 `(("r-bayestestr" ,r-bayestestr)
8029 ("r-broom" ,r-broom)
8030 ("r-dplyr" ,r-dplyr)
8031 ("r-emmeans" ,r-emmeans)
8032 ("r-insight" ,r-insight)
8033 ("r-lme4" ,r-lme4)
8034 ("r-magrittr" ,r-magrittr)
8035 ("r-mass" ,r-mass)
8036 ("r-modelr" ,r-modelr)
8037 ("r-performance" ,r-performance)
8038 ("r-purrr" ,r-purrr)
8039 ("r-rlang" ,r-rlang)
8040 ("r-sjlabelled" ,r-sjlabelled)
8041 ("r-sjmisc" ,r-sjmisc)
8042 ("r-tidyr" ,r-tidyr)))
8043 (home-page "https://github.com/strengejacke/sjstats")
8044 (synopsis "Functions for common statistical computations")
8045 (description
8046 "This package provides a collection of convenient functions for common
8047 statistical computations, which are not directly provided by R's @code{base}
8048 or @code{stats} packages. This package aims at providing, first, shortcuts
8049 for statistical measures, which otherwise could only be calculated with
8050 additional effort. Second, these shortcut functions are generic, and can be
8051 applied not only to vectors, but also to other objects as well. The focus of
8052 most functions lies on summary statistics or fit measures for regression
8053 models, including generalized linear models, mixed effects models and Bayesian
8054 models.")
8055 (license license:gpl3)))
8056
8057 (define-public r-glmmtmb
8058 (package
8059 (name "r-glmmtmb")
8060 (version "0.2.3")
8061 (source
8062 (origin
8063 (method url-fetch)
8064 (uri (cran-uri "glmmTMB" version))
8065 (sha256
8066 (base32
8067 "035hkywa37bz555fv6znxd4hfcs5w884365wfnwk4jx5vann4vvb"))))
8068 (properties `((upstream-name . "glmmTMB")))
8069 (build-system r-build-system)
8070 (propagated-inputs
8071 `(("r-lme4" ,r-lme4)
8072 ("r-matrix" ,r-matrix)
8073 ("r-nlme" ,r-nlme)
8074 ("r-rcppeigen" ,r-rcppeigen)
8075 ("r-tmb" ,r-tmb)))
8076 (native-inputs
8077 `(("r-knitr" ,r-knitr))) ; for vignettes
8078 (home-page "https://github.com/glmmTMB")
8079 (synopsis "Generalized linear mixed models")
8080 (description
8081 "Fit linear and generalized linear mixed models with various extensions,
8082 including zero-inflation. The models are fitted using maximum likelihood
8083 estimation via the Template Model Builder. Random effects are assumed to be
8084 Gaussian on the scale of the linear predictor and are integrated out using the
8085 Laplace approximation. Gradients are calculated using automatic
8086 differentiation.")
8087 (license license:agpl3+)))
8088
8089 (define-public r-bayestestr
8090 (package
8091 (name "r-bayestestr")
8092 (version "0.2.2")
8093 (source
8094 (origin
8095 (method url-fetch)
8096 (uri (cran-uri "bayestestR" version))
8097 (sha256
8098 (base32
8099 "09r654lrhwwnshn5h2s2fbx3c8wigv3j4sva5hmfnkwjg8cclhd9"))))
8100 (properties `((upstream-name . "bayestestR")))
8101 (build-system r-build-system)
8102 (propagated-inputs
8103 `(("r-insight" ,r-insight)))
8104 (home-page "https://github.com/easystats/bayestestR")
8105 (synopsis "Describe Bayesian models and posterior distributions")
8106 (description
8107 "This package provides utilities to understand and describe posterior
8108 distributions and Bayesian models. It includes point-estimates such as
8109 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
8110 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
8111 ROPE percentage and pd).")
8112 (license license:gpl3)))
8113
8114 (define-public r-performance
8115 (package
8116 (name "r-performance")
8117 (version "0.2.0")
8118 (source
8119 (origin
8120 (method url-fetch)
8121 (uri (cran-uri "performance" version))
8122 (sha256
8123 (base32
8124 "1pzd6z7i1jxr2xi1shg3d0bxlbpmjl7kpmwgjnfys6syv57znd1z"))))
8125 (build-system r-build-system)
8126 (propagated-inputs
8127 `(("r-bayestestr" ,r-bayestestr)
8128 ("r-insight" ,r-insight)))
8129 (home-page "https://easystats.github.io/performance/")
8130 (synopsis "Assessment of regression models performance")
8131 (description
8132 "This package provides utilities for computing measures to assess model
8133 quality, which are not directly provided by R's @code{base} or @code{stats}
8134 packages. These include e.g. measures like r-squared, intraclass correlation
8135 coefficient, root mean squared error or functions to check models for
8136 overdispersion, singularity or zero-inflation and more. Functions apply to a
8137 large variety of regression models, including generalized linear models, mixed
8138 effects models and Bayesian models.")
8139 (license license:gpl3)))
8140
8141 (define-public r-ggeffects
8142 (package
8143 (name "r-ggeffects")
8144 (version "0.10.0")
8145 (source
8146 (origin
8147 (method url-fetch)
8148 (uri (cran-uri "ggeffects" version))
8149 (sha256
8150 (base32
8151 "0gmqzjk8k8q6j4q6asv9f3b1fv4qrw5w8xa48ha3y98shzm5np9k"))))
8152 (build-system r-build-system)
8153 (propagated-inputs
8154 `(("r-dplyr" ,r-dplyr)
8155 ("r-insight" ,r-insight)
8156 ("r-magrittr" ,r-magrittr)
8157 ("r-mass" ,r-mass)
8158 ("r-purrr" ,r-purrr)
8159 ("r-rlang" ,r-rlang)
8160 ("r-scales" ,r-scales)
8161 ("r-sjlabelled" ,r-sjlabelled)
8162 ("r-sjmisc" ,r-sjmisc)))
8163 (home-page "https://github.com/strengejacke/ggeffects")
8164 (synopsis "Create tidy data frames of marginal effects for ggplot")
8165 (description
8166 "This package provides tools to compute marginal effects from statistical
8167 models and return the result as tidy data frames. These data frames are ready
8168 to use with the @code{ggplot2} package. Marginal effects can be calculated
8169 for many different models. Interaction terms, splines and polynomial terms
8170 are also supported. The two main functions are @code{ggpredict()} and
8171 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
8172 results using @code{ggplot2}.")
8173 (license license:gpl3)))
8174
8175 (define-public r-sjplot
8176 (package
8177 (name "r-sjplot")
8178 (version "2.6.3")
8179 (source
8180 (origin
8181 (method url-fetch)
8182 (uri (cran-uri "sjPlot" version))
8183 (sha256
8184 (base32
8185 "0h1mkmp5mrkbf7y3zh6m4cnm737cpg1m5si0lrmal7j2ixqicwjy"))))
8186 (properties `((upstream-name . "sjPlot")))
8187 (build-system r-build-system)
8188 (propagated-inputs
8189 `(("r-bayestestr" ,r-bayestestr)
8190 ("r-broom" ,r-broom)
8191 ("r-dplyr" ,r-dplyr)
8192 ("r-forcats" ,r-forcats)
8193 ("r-ggeffects" ,r-ggeffects)
8194 ("r-ggplot2" ,r-ggplot2)
8195 ("r-glmmtmb" ,r-glmmtmb)
8196 ("r-insight" ,r-insight)
8197 ("r-knitr" ,r-knitr)
8198 ("r-lme4" ,r-lme4)
8199 ("r-magrittr" ,r-magrittr)
8200 ("r-mass" ,r-mass)
8201 ("r-modelr" ,r-modelr)
8202 ("r-nlme" ,r-nlme)
8203 ("r-performance" ,r-performance)
8204 ("r-psych" ,r-psych)
8205 ("r-purrr" ,r-purrr)
8206 ("r-rlang" ,r-rlang)
8207 ("r-scales" ,r-scales)
8208 ("r-sjlabelled" ,r-sjlabelled)
8209 ("r-sjmisc" ,r-sjmisc)
8210 ("r-sjstats" ,r-sjstats)
8211 ("r-tidyr" ,r-tidyr)))
8212 (home-page "https://strengejacke.github.io/sjPlot/")
8213 (synopsis "Data visualization for statistics in social science")
8214 (description
8215 "This package represents a collection of plotting and table output
8216 functions for data visualization. Results of various statistical
8217 analyses (that are commonly used in social sciences) can be visualized using
8218 this package, including simple and cross tabulated frequencies, histograms,
8219 box plots, (generalized) linear models, mixed effects models, principal
8220 component analysis and correlation matrices, cluster analyses, scatter plots,
8221 stacked scales, effects plots of regression models (including interaction
8222 terms) and much more. This package supports labelled data.")
8223 (license license:gpl3)))
8224
8225 (define-public r-ini
8226 (package
8227 (name "r-ini")
8228 (version "0.3.1")
8229 (source
8230 (origin
8231 (method url-fetch)
8232 (uri (cran-uri "ini" version))
8233 (sha256
8234 (base32
8235 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
8236 (build-system r-build-system)
8237 (home-page "https://github.com/dvdscripter/ini")
8238 (synopsis "Read and write configuration files")
8239 (description
8240 "This package provides tools to parse simple @code{.ini} configuration
8241 files to an structured list. Users can manipulate this resulting list with
8242 @code{lapply()} functions. This same structured list can be used to write
8243 back to file after modifications.")
8244 (license license:gpl3)))
8245
8246 (define-public r-gh
8247 (package
8248 (name "r-gh")
8249 (version "1.0.1")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (cran-uri "gh" version))
8254 (sha256
8255 (base32
8256 "1llinfajb0g7006jd2w1hpskxpmkjhnqarcjb71r1qvsccb2ph7k"))))
8257 (build-system r-build-system)
8258 (propagated-inputs
8259 `(("r-httr" ,r-httr)
8260 ("r-ini" ,r-ini)
8261 ("r-jsonlite" ,r-jsonlite)))
8262 (home-page "https://github.com/r-lib/gh#readme")
8263 (synopsis "Access the GitHub API via R")
8264 (description
8265 "This package provides a minimal R client to access the GitHub API.")
8266 (license license:expat)))
8267
8268 (define-public r-fs
8269 (package
8270 (name "r-fs")
8271 (version "1.3.1")
8272 (source
8273 (origin
8274 (method url-fetch)
8275 (uri (cran-uri "fs" version))
8276 (sha256
8277 (base32
8278 "1g26rgx13dzigp2vrlld6h28q33lwbax97zvwdrq2pc3iz54v4yn"))))
8279 (build-system r-build-system)
8280 (propagated-inputs
8281 `(("r-rcpp" ,r-rcpp)))
8282 (native-inputs
8283 `(("pkg-config" ,pkg-config)))
8284 (home-page "http://fs.r-lib.org")
8285 (synopsis "Cross-platform file system operations based on libuv")
8286 (description
8287 "This package provides a cross-platform interface to file system
8288 operations, built on top of the libuv C library.")
8289 (license license:gpl3)))
8290
8291 (define-public r-clisymbols
8292 (package
8293 (name "r-clisymbols")
8294 (version "1.2.0")
8295 (source
8296 (origin
8297 (method url-fetch)
8298 (uri (cran-uri "clisymbols" version))
8299 (sha256
8300 (base32
8301 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
8302 (build-system r-build-system)
8303 (home-page "https://github.com/gaborcsardi/clisymbols")
8304 (synopsis "Unicode symbols at the R prompt")
8305 (description
8306 "This package provides a small subset of Unicode symbols, that are useful
8307 when building command line applications. They fall back to alternatives on
8308 terminals that do not support Unicode.")
8309 (license license:expat)))
8310
8311 (define-public r-usethis
8312 (package
8313 (name "r-usethis")
8314 (version "1.5.0")
8315 (source
8316 (origin
8317 (method url-fetch)
8318 (uri (cran-uri "usethis" version))
8319 (sha256
8320 (base32
8321 "0pn6ka3726psaqlx573g6nxi90apf0rn5m4k2lz1jr66xdc19sag"))))
8322 (build-system r-build-system)
8323 (propagated-inputs
8324 `(("r-clipr" ,r-clipr)
8325 ("r-clisymbols" ,r-clisymbols)
8326 ("r-crayon" ,r-crayon)
8327 ("r-curl" ,r-curl)
8328 ("r-desc" ,r-desc)
8329 ("r-fs" ,r-fs)
8330 ("r-gh" ,r-gh)
8331 ("r-git2r" ,r-git2r)
8332 ("r-glue" ,r-glue)
8333 ("r-purrr" ,r-purrr)
8334 ("r-rlang" ,r-rlang)
8335 ("r-rprojroot" ,r-rprojroot)
8336 ("r-rstudioapi" ,r-rstudioapi)
8337 ("r-whisker" ,r-whisker)
8338 ("r-withr" ,r-withr)
8339 ("r-yaml" ,r-yaml)))
8340 (home-page "https://github.com/r-lib/usethis")
8341 (synopsis "Automate R package and project setup")
8342 (description
8343 "This package helps you to automate R package and project setup tasks
8344 that are otherwise performed manually. This includes setting up unit testing,
8345 test coverage, continuous integration, Git, GitHub integration, licenses,
8346 Rcpp, RStudio projects, and more.")
8347 (license license:gpl3)))
8348
8349 (define-public r-sessioninfo
8350 (package
8351 (name "r-sessioninfo")
8352 (version "1.1.1")
8353 (source
8354 (origin
8355 (method url-fetch)
8356 (uri (cran-uri "sessioninfo" version))
8357 (sha256
8358 (base32
8359 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
8360 (build-system r-build-system)
8361 (propagated-inputs
8362 `(("r-cli" ,r-cli)
8363 ("r-withr" ,r-withr)))
8364 (home-page "https://github.com/r-lib/sessioninfo#readme")
8365 (synopsis "R session information")
8366 (description
8367 "This package provides tools to query and print information about the
8368 current R session. It is similar to @code{utils::sessionInfo()}, but includes
8369 more information about packages, and where they were installed from.")
8370 (license license:gpl2)))
8371
8372 (define-public r-remotes
8373 (package
8374 (name "r-remotes")
8375 (version "2.1.0")
8376 (source
8377 (origin
8378 (method url-fetch)
8379 (uri (cran-uri "remotes" version))
8380 (sha256
8381 (base32
8382 "19v8dmnk9l4i9m64p7zgmj7y1vhnnwhi5kyn0k5d034zzkvchi49"))))
8383 (build-system r-build-system)
8384 (home-page "https://github.com/r-lib/remotes#readme")
8385 (synopsis "R package installation from remote repositories")
8386 (description
8387 "Download and install R packages stored in GitHub, BitBucket, or plain
8388 subversion or git repositories. This package is a lightweight replacement of
8389 the @code{install_*} functions in the @code{devtools} package. Indeed most of
8390 the code was copied over from @code{devtools}.")
8391 (license license:gpl2+)))
8392
8393 (define-public r-xopen
8394 (package
8395 (name "r-xopen")
8396 (version "1.0.0")
8397 (source
8398 (origin
8399 (method url-fetch)
8400 (uri (cran-uri "xopen" version))
8401 (sha256
8402 (base32
8403 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
8404 (build-system r-build-system)
8405 (propagated-inputs
8406 `(("r-processx" ,r-processx)))
8407 (home-page "https://github.com/r-lib/xopen#readme")
8408 (synopsis "Open system files, URLs, anything")
8409 (description
8410 "This package provides a cross-platform solution to open files,
8411 directories or URLs with their associated programs.")
8412 (license license:expat)))
8413
8414 (define-public r-rcmdcheck
8415 (package
8416 (name "r-rcmdcheck")
8417 (version "1.3.3")
8418 (source
8419 (origin
8420 (method url-fetch)
8421 (uri (cran-uri "rcmdcheck" version))
8422 (sha256
8423 (base32
8424 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
8425 (build-system r-build-system)
8426 (propagated-inputs
8427 `(("r-callr" ,r-callr)
8428 ("r-cli" ,r-cli)
8429 ("r-crayon" ,r-crayon)
8430 ("r-desc" ,r-desc)
8431 ("r-digest" ,r-digest)
8432 ("r-pkgbuild" ,r-pkgbuild)
8433 ("r-prettyunits" ,r-prettyunits)
8434 ("r-r6" ,r-r6)
8435 ("r-rprojroot" ,r-rprojroot)
8436 ("r-sessioninfo" ,r-sessioninfo)
8437 ("r-withr" ,r-withr)
8438 ("r-xopen" ,r-xopen)))
8439 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
8440 (synopsis "Run R CMD check from R and capture results")
8441 (description
8442 "Run @code{R CMD check} from R programmatically, and capture the results
8443 of the individual checks.")
8444 (license license:expat)))
8445
8446 (define-public r-rapportools
8447 (package
8448 (name "r-rapportools")
8449 (version "1.0")
8450 (source
8451 (origin
8452 (method url-fetch)
8453 (uri (cran-uri "rapportools" version))
8454 (sha256
8455 (base32
8456 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
8457 (build-system r-build-system)
8458 (propagated-inputs
8459 `(("r-pander" ,r-pander)
8460 ("r-plyr" ,r-plyr)
8461 ("r-reshape" ,r-reshape)))
8462 (home-page "https://cran.r-project.org/web/packages/rapportools/")
8463 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
8464 (description
8465 "This package provides helper functions that act as wrappers to more
8466 advanced statistical methods with the advantage of having sane defaults for
8467 quick reporting.")
8468 (license license:agpl3+)))
8469
8470 (define-public r-pander
8471 (package
8472 (name "r-pander")
8473 (version "0.6.3")
8474 (source
8475 (origin
8476 (method url-fetch)
8477 (uri (cran-uri "pander" version))
8478 (sha256
8479 (base32
8480 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
8481 (build-system r-build-system)
8482 (propagated-inputs
8483 `(("r-digest" ,r-digest)
8484 ("r-rcpp" ,r-rcpp)))
8485 (home-page "https://rapporter.github.io/pander")
8486 (synopsis "Render R objects into Pandoc's markdown")
8487 (description
8488 "The main aim of the pander R package is to provide a minimal and easy
8489 tool for rendering R objects into Pandoc's markdown. The package is also
8490 capable of exporting/converting complex Pandoc documents (reports) in various
8491 ways.")
8492 ;; This package is licensed under either the AGPLv3+ or the very rarely
8493 ;; used OSL 3.0.
8494 (license license:agpl3+)))
8495
8496 (define-public r-summarytools
8497 (package
8498 (name "r-summarytools")
8499 (version "0.9.3")
8500 (source
8501 (origin
8502 (method url-fetch)
8503 (uri (cran-uri "summarytools" version))
8504 (sha256
8505 (base32
8506 "1wfbkgvicaic37zgpr6zcm4a58yx43p59h0sqggdj44ncqs7147f"))))
8507 (build-system r-build-system)
8508 (propagated-inputs
8509 `(("r-checkmate" ,r-checkmate)
8510 ("r-dplyr" ,r-dplyr)
8511 ("r-htmltools" ,r-htmltools)
8512 ("r-lubridate" ,r-lubridate)
8513 ("r-magick" ,r-magick)
8514 ("r-matrixstats" ,r-matrixstats)
8515 ("r-pander" ,r-pander)
8516 ("r-pryr" ,r-pryr)
8517 ("r-rapportools" ,r-rapportools)
8518 ("r-rcurl" ,r-rcurl)
8519 ("r-tibble" ,r-tibble)
8520 ("r-tidyr" ,r-tidyr)))
8521 (home-page "https://github.com/dcomtois/summarytools")
8522 (synopsis "Tools to quickly and neatly summarize data")
8523 (description
8524 "This package provides tools for data frame summaries, cross-tabulations,
8525 weight-enabled frequency tables and common univariate statistics in concise
8526 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
8527 good point-of-entry for exploring data, both for experienced and new R
8528 users.")
8529 (license license:gpl2)))
8530
8531 (define-public r-lsei
8532 (package
8533 (name "r-lsei")
8534 (version "1.2-0")
8535 (source
8536 (origin
8537 (method url-fetch)
8538 (uri (cran-uri "lsei" version))
8539 (sha256
8540 (base32
8541 "1xl06fb3is744pxlh42wx5hn1h0ab1k31wnmsmh0524kxzcyp0a7"))))
8542 (build-system r-build-system)
8543 (native-inputs
8544 `(("gfortran" ,gfortran)))
8545 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8546 (synopsis "Solve regression problems under equality/inequality constraints")
8547 (description
8548 "It contains functions that solve least squares linear regression
8549 problems under linear equality/inequality constraints. Functions for solving
8550 quadratic programming problems are also available, which transform such
8551 problems into least squares ones first.")
8552 (license license:gpl2+)))
8553
8554 (define-public r-npsurv
8555 (package
8556 (name "r-npsurv")
8557 (version "0.4-0")
8558 (source
8559 (origin
8560 (method url-fetch)
8561 (uri (cran-uri "npsurv" version))
8562 (sha256
8563 (base32
8564 "1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
8565 (build-system r-build-system)
8566 (propagated-inputs
8567 `(("r-lsei" ,r-lsei)))
8568 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
8569 (synopsis "Nonparametric survival analysis")
8570 (description
8571 "This package contains functions for non-parametric survival analysis of
8572 exact and interval-censored observations.")
8573 (license license:gpl2+)))
8574
8575 (define-public r-clusteval
8576 (package
8577 (name "r-clusteval")
8578 (version "0.1")
8579 (source
8580 (origin
8581 (method url-fetch)
8582 (uri (cran-uri "clusteval" version))
8583 (sha256
8584 (base32
8585 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
8586 (build-system r-build-system)
8587 (propagated-inputs
8588 `(("r-mvtnorm" ,r-mvtnorm)
8589 ("r-rcpp" ,r-rcpp)))
8590 (home-page "https://cran.r-project.org/web/packages/clusteval/")
8591 (synopsis "Evaluation of clustering algorithms")
8592 (description
8593 "This R package provides a suite of tools to evaluate clustering
8594 algorithms, clusterings, and individual clusters.")
8595 (license license:expat)))
8596
8597 (define-public r-tweedie
8598 (package
8599 (name "r-tweedie")
8600 (version "2.3.2")
8601 (source
8602 (origin
8603 (method url-fetch)
8604 (uri (cran-uri "tweedie" version))
8605 (sha256
8606 (base32
8607 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
8608 (build-system r-build-system)
8609 (native-inputs `(("gfortran" ,gfortran)))
8610 (home-page "https://cran.r-project.org/web/packages/tweedie/")
8611 (synopsis "Evaluation of Tweedie exponential family models")
8612 (description
8613 "Maximum likelihood computations for Tweedie families, including the
8614 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
8615 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
8616 and related methods.")
8617 (license license:gpl2+)))
8618
8619 (define-public r-rcppgsl
8620 (package
8621 (name "r-rcppgsl")
8622 (version "0.3.6")
8623 (source
8624 (origin
8625 (method url-fetch)
8626 (uri (cran-uri "RcppGSL" version))
8627 (sha256
8628 (base32
8629 "16pdapq31729db53agnb48jkvdm97167n3bigy5zazc3q3isis1m"))))
8630 (properties `((upstream-name . "RcppGSL")))
8631 (build-system r-build-system)
8632 (propagated-inputs
8633 `(("r-rcpp" ,r-rcpp)
8634 ("gsl" ,gsl)))
8635 (native-inputs
8636 `(("r-knitr" ,r-knitr))) ; for vignettes
8637 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
8638 (synopsis "Rcpp integration for GSL vectors and matrices")
8639 (description
8640 "The GNU Scientific Library (or GSL) is a collection of numerical
8641 routines for scientific computing. It is particularly useful for C and C++
8642 programs as it provides a standard C interface to a wide range of mathematical
8643 routines. There are over 1000 functions in total with an extensive test
8644 suite. The RcppGSL package provides an easy-to-use interface between GSL data
8645 structures and R using concepts from Rcpp which is itself a package that eases
8646 the interfaces between R and C++.")
8647 (license license:gpl2+)))
8648
8649 (define-public r-mvabund
8650 (package
8651 (name "r-mvabund")
8652 (version "4.0.1")
8653 (source
8654 (origin
8655 (method url-fetch)
8656 (uri (cran-uri "mvabund" version))
8657 (sha256
8658 (base32
8659 "0la935gsiryfc0zixxr1dqj0av271x96pqxbi3bp6dksbw5gm68k"))))
8660 (build-system r-build-system)
8661 (propagated-inputs
8662 `(("r-mass" ,r-mass)
8663 ("r-rcpp" ,r-rcpp)
8664 ("r-rcppgsl" ,r-rcppgsl)
8665 ("r-statmod" ,r-statmod)
8666 ("r-tweedie" ,r-tweedie)))
8667 (home-page "https://cran.r-project.org/web/packages/mvabund/")
8668 (synopsis "Statistical methods for analysing multivariate abundance data")
8669 (description
8670 "This package provides a set of tools for displaying, modeling and
8671 analysing multivariate abundance data in community ecology.")
8672 (license license:lgpl2.1+)))
8673
8674 (define-public r-afex
8675 (package
8676 (name "r-afex")
8677 (version "0.23-0")
8678 (source
8679 (origin
8680 (method url-fetch)
8681 (uri (cran-uri "afex" version))
8682 (sha256
8683 (base32
8684 "0yv4s7461swn0116y4wq9v139p1br5rr6hhnq1cmkbvybmwj2vp7"))))
8685 (build-system r-build-system)
8686 (propagated-inputs
8687 `(("r-car" ,r-car)
8688 ("r-lme4" ,r-lme4)
8689 ("r-lmertest" ,r-lmertest)
8690 ("r-pbkrtest" ,r-pbkrtest)
8691 ("r-reshape2" ,r-reshape2)))
8692 (home-page "https://afex.singmann.science/")
8693 (synopsis "Analysis of factorial experiments")
8694 (description
8695 "This package provides convenience functions for analyzing factorial
8696 experiments using ANOVA or mixed models.")
8697 (license license:gpl2+)))
8698
8699 (define-public r-lmertest
8700 (package
8701 (name "r-lmertest")
8702 (version "3.1-0")
8703 (source
8704 (origin
8705 (method url-fetch)
8706 (uri (cran-uri "lmerTest" version))
8707 (sha256
8708 (base32
8709 "1nkz8cmxa5yb8q4i65bmhnn5pd4bhwcyjplyscynb24z3f64xp9b"))))
8710 (properties `((upstream-name . "lmerTest")))
8711 (build-system r-build-system)
8712 (propagated-inputs
8713 `(("r-ggplot2" ,r-ggplot2)
8714 ("r-lme4" ,r-lme4)
8715 ("r-mass" ,r-mass)
8716 ("r-numderiv" ,r-numderiv)))
8717 (home-page "https://github.com/runehaubo/lmerTestR")
8718 (synopsis "Tests in linear mixed effects models")
8719 (description
8720 "This package provides p-values in type I, II or III anova and summary
8721 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
8722 method. A Kenward-Roger method is also available via the @code{pbkrtest}
8723 package. Model selection methods include step, drop1 and anova-like tables
8724 for random effects (ranova). Methods for Least-Square means (LS-means) and
8725 tests of linear contrasts of fixed effects are also available.")
8726 (license license:gpl2+)))
8727
8728 (define-public r-r2glmm
8729 (package
8730 (name "r-r2glmm")
8731 (version "0.1.2")
8732 (source
8733 (origin
8734 (method url-fetch)
8735 (uri (cran-uri "r2glmm" version))
8736 (sha256
8737 (base32
8738 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
8739 (build-system r-build-system)
8740 (propagated-inputs
8741 `(("r-afex" ,r-afex)
8742 ("r-data-table" ,r-data-table)
8743 ("r-dplyr" ,r-dplyr)
8744 ("r-ggplot2" ,r-ggplot2)
8745 ("r-gridextra" ,r-gridextra)
8746 ("r-lmertest" ,r-lmertest)
8747 ("r-mass" ,r-mass)
8748 ("r-matrix" ,r-matrix)
8749 ("r-mgcv" ,r-mgcv)
8750 ("r-pbkrtest" ,r-pbkrtest)))
8751 (home-page "https://github.com/bcjaeger/r2glmm")
8752 (synopsis "Compute R squared for mixed (multilevel) models")
8753 (description
8754 "This package computes model and semi partial R squared with confidence
8755 limits for the linear and generalized linear mixed model (LMM and GLMM). The
8756 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
8757 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
8758 al. (2016)).")
8759 (license license:gpl2)))
8760
8761 (define-public r-weights
8762 (package
8763 (name "r-weights")
8764 (version "1.0")
8765 (source
8766 (origin
8767 (method url-fetch)
8768 (uri (cran-uri "weights" version))
8769 (sha256
8770 (base32
8771 "0186bfpkhxngrshac6bpg37alp6slwhwd43inrm8hqg0vhpfgc4c"))))
8772 (build-system r-build-system)
8773 (propagated-inputs
8774 `(("r-gdata" ,r-gdata)
8775 ("r-hmisc" ,r-hmisc)
8776 ("r-mice" ,r-mice)))
8777 (home-page
8778 "https://cran.r-project.org/web/packages/weights/")
8779 (synopsis "Weighting and weighted statistics")
8780 (description "This package Provides a variety of functions for producing
8781 simple weighted statistics, such as weighted Pearson's correlations, partial
8782 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
8783 includes some software for quickly recoding survey data and plotting point
8784 estimates from interaction terms in regressions (and multiply imputed
8785 regressions). NOTE: Weighted partial correlation calculations pulled to
8786 address a bug.")
8787 (license license:gpl2+)))
8788
8789 (define-public r-rcppannoy
8790 (package
8791 (name "r-rcppannoy")
8792 (version "0.0.12")
8793 (source
8794 (origin
8795 (method url-fetch)
8796 (uri (cran-uri "RcppAnnoy" version))
8797 (sha256
8798 (base32
8799 "1b0fmip9c4i0my1yjrvqy8jxfiiqcggq2kms135q0b53njxnqwwg"))))
8800 (properties `((upstream-name . "RcppAnnoy")))
8801 (build-system r-build-system)
8802 (propagated-inputs
8803 `(("r-rcpp" ,r-rcpp)))
8804 (native-inputs
8805 `(("r-knitr" ,r-knitr))) ; for vignettes
8806 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
8807 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
8808 (description
8809 "Annoy is a small C++ library for Approximate Nearest Neighbors written
8810 for efficient memory usage as well an ability to load from and save to disk.
8811 This package provides an R interface.")
8812 ;; Annoy is released under ASL 2.0, but this wrapper is released under
8813 ;; GPLv2+.
8814 (license (list license:gpl2+ license:asl2.0))))
8815
8816 (define-public r-rcpphnsw
8817 (package
8818 (name "r-rcpphnsw")
8819 (version "0.1.0")
8820 (source
8821 (origin
8822 (method url-fetch)
8823 (uri (cran-uri "RcppHNSW" version))
8824 (sha256
8825 (base32
8826 "158a069n42pbnjrlmvqsr6bm2cfp9hxpnk3nhp3dwi9qjlq4r9bm"))))
8827 (properties `((upstream-name . "RcppHNSW")))
8828 (build-system r-build-system)
8829 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8830 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
8831 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
8832 (description
8833 "Hnswlib is a C++ library for approximate nearest neighbors. This
8834 package provides a minimal R interface by relying on the Rcpp package.")
8835 ;; hnswlib is released under Version 2.0 of the Apache License.
8836 (license (list license:gpl3 license:asl2.0))))
8837
8838 (define-public r-rcppparallel
8839 (package
8840 (name "r-rcppparallel")
8841 (version "4.4.3")
8842 (source
8843 (origin
8844 (method url-fetch)
8845 (uri (cran-uri "RcppParallel" version))
8846 (sha256
8847 (base32
8848 "1ym0bzs9g6bsg2lz24fisxxa3gypr6xcvrczn304czmrrag9413s"))))
8849 (properties `((upstream-name . "RcppParallel")))
8850 (build-system r-build-system)
8851 (home-page "http://rcppcore.github.io/RcppParallel")
8852 (synopsis "Parallel programming tools for Rcpp")
8853 (description
8854 "This package provides high level functions for parallel programming with
8855 Rcpp. For example, the @code{parallelFor()} function can be used to convert
8856 the work of a standard serial @code{for} loop into a parallel one and the
8857 @code{parallelReduce()} function can be used for accumulating aggregates or
8858 other values.")
8859 (license license:gpl2)))
8860
8861 (define-public r-ncdf4
8862 (package
8863 (name "r-ncdf4")
8864 (version "1.16.1")
8865 (source
8866 (origin
8867 (method url-fetch)
8868 (uri (cran-uri "ncdf4" version))
8869 (sha256
8870 (base32
8871 "083sb24anyd4sw0il3x07pqn9rbx5y5ayqass6mz8x443rnjvphd"))))
8872 (build-system r-build-system)
8873 (inputs
8874 `(("netcdf" ,netcdf)
8875 ("zlib" ,zlib)))
8876 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
8877 (synopsis "R interface to Unidata netCDF format data files")
8878 (description
8879 "This package provides a high-level R interface to data files written
8880 using Unidata's netCDF library (version 4 or earlier), which are binary data
8881 files that are portable across platforms and include metadata information in
8882 addition to the data sets. Using this package, netCDF files can be opened and
8883 data sets read in easily. It is also easy to create new netCDF dimensions,
8884 variables, and files, in either version 3 or 4 format, and manipulate existing
8885 netCDF files.")
8886 (license license:gpl3+)))
8887
8888 (define-public r-biocmanager
8889 (package
8890 (name "r-biocmanager")
8891 (version "1.30.4")
8892 (source
8893 (origin
8894 (method url-fetch)
8895 (uri (cran-uri "BiocManager" version))
8896 (sha256
8897 (base32
8898 "0kxs76pixk1d2lpvkyrq6nnvv1rqf55ph5f7igkadyyqirf3y2ah"))))
8899 (properties `((upstream-name . "BiocManager")))
8900 (build-system r-build-system)
8901 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
8902 (synopsis "Access the Bioconductor project package repository")
8903 (description
8904 "This package provides a convenient tool to install and update
8905 Bioconductor packages.")
8906 (license license:artistic2.0)))
8907
8908 (define-public r-rgl
8909 (package
8910 (name "r-rgl")
8911 (version "0.100.24")
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (cran-uri "rgl" version))
8916 (sha256
8917 (base32
8918 "0nm3iyvhhmh0zlywkfmrq3vyh8z1l296xxfmcky0ifd2qnysfcqj"))))
8919 (build-system r-build-system)
8920 (native-inputs
8921 `(("pkg-config" ,pkg-config)))
8922 (inputs
8923 `(("freetype" ,freetype)
8924 ("libpng" ,libpng)
8925 ("glu" ,glu)
8926 ("libx11" ,libx11)
8927 ("ghc-pandoc" ,ghc-pandoc)
8928 ("zlib" ,zlib)))
8929 (propagated-inputs
8930 `(("r-crosstalk" ,r-crosstalk)
8931 ("r-htmltools" ,r-htmltools)
8932 ("r-htmlwidgets" ,r-htmlwidgets)
8933 ("r-jsonlite" ,r-jsonlite)
8934 ("r-knitr" ,r-knitr)
8935 ("r-magrittr" ,r-magrittr)
8936 ("r-manipulatewidget" ,r-manipulatewidget)
8937 ("r-shiny" ,r-shiny)))
8938 (home-page "https://r-forge.r-project.org/projects/rgl/")
8939 (synopsis "3D visualization using OpenGL")
8940 (description
8941 "This package provides medium to high level functions for 3D interactive graphics,
8942 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
8943 as functions for constructing representations of geometric
8944 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
8945 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
8946 image formats, including PNG, Postscript, SVG, PGF.")
8947 ;; Any version of the GPL.
8948 (license (list license:gpl2+ license:gpl3+))))
8949
8950 (define-public r-multicool
8951 (package
8952 (name "r-multicool")
8953 (version "0.1-10")
8954 (source
8955 (origin
8956 (method url-fetch)
8957 (uri (cran-uri "multicool" version))
8958 (sha256
8959 (base32
8960 "1ybg9piya9psqg42w9i3zsnavbxhkfklfwl7cb420i5nkq6wpc2v"))))
8961 (build-system r-build-system)
8962 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8963 (home-page "https://cran.r-project.org/web/packages/multicool/")
8964 (synopsis "Permutations of multisets in cool-lex order")
8965 (description
8966 "This package provides a set of tools to permute multisets without loops
8967 or hash tables and to generate integer partitions. Cool-lex order is similar
8968 to colexicographical order.")
8969 (license license:gpl2)))
8970
8971 (define-public r-misc3d
8972 (package
8973 (name "r-misc3d")
8974 (version "0.8-4")
8975 (source
8976 (origin
8977 (method url-fetch)
8978 (uri (cran-uri "misc3d" version))
8979 (sha256
8980 (base32
8981 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
8982 (build-system r-build-system)
8983 (home-page "https://cran.r-project.org/web/packages/misc3d/")
8984 (synopsis "Miscellaneous 3D Plots")
8985 (description
8986 "This package provides a collection of miscellaneous 3d plots, including
8987 isosurfaces.")
8988 ;; Any version of the GPL.
8989 (license (list license:gpl2+ license:gpl3+))))
8990
8991 (define-public r-ks
8992 (package
8993 (name "r-ks")
8994 (version "1.11.5")
8995 (source
8996 (origin
8997 (method url-fetch)
8998 (uri (cran-uri "ks" version))
8999 (sha256
9000 (base32
9001 "06ymx244yknmpl6935l4pafqbm4gcbpnhqg7rinql6rrfr9mcrag"))))
9002 (build-system r-build-system)
9003 (propagated-inputs
9004 `(("r-fnn" ,r-fnn)
9005 ("r-kernlab" ,r-kernlab)
9006 ("r-kernsmooth" ,r-kernsmooth)
9007 ("r-matrix" ,r-matrix)
9008 ("r-mclust" ,r-mclust)
9009 ("r-mgcv" ,r-mgcv)
9010 ("r-multicool" ,r-multicool)
9011 ("r-mvtnorm" ,r-mvtnorm)))
9012 (home-page "http://www.mvstat.net/tduong/")
9013 (synopsis "Kernel smoothing")
9014 (description
9015 "This package provides kernel smoothers for univariate and multivariate
9016 data, including density functions, density derivatives, cumulative
9017 distributions, modal clustering, discriminant analysis, and two-sample
9018 hypothesis testing.")
9019 ;; Either version of the GPL.
9020 (license (list license:gpl2 license:gpl3))))
9021
9022 (define-public r-feature
9023 (package
9024 (name "r-feature")
9025 (version "1.2.13")
9026 (source
9027 (origin
9028 (method url-fetch)
9029 (uri (cran-uri "feature" version))
9030 (sha256
9031 (base32
9032 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9033 (build-system r-build-system)
9034 (propagated-inputs
9035 `(("r-ks" ,r-ks)
9036 ("r-misc3d" ,r-misc3d)
9037 ("r-rgl" ,r-rgl)))
9038 (home-page "http://www.mvstat.net/tduong/")
9039 (synopsis "Inferential feature significance for kernel density estimation")
9040 (description
9041 "The feature package contains functions to display and compute kernel
9042 density estimates, significant gradient and significant curvature regions.
9043 Significant gradient and/or curvature regions often correspond to significant
9044 features (e.g. local modes).")
9045 ;; Either version of the GPL.
9046 (license (list license:gpl2 license:gpl3))))
9047
9048 (define-public r-arm
9049 (package
9050 (name "r-arm")
9051 (version "1.10-1")
9052 (source
9053 (origin
9054 (method url-fetch)
9055 (uri (cran-uri "arm" version))
9056 (sha256
9057 (base32
9058 "0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
9059 (build-system r-build-system)
9060 (propagated-inputs
9061 `(("r-abind" ,r-abind)
9062 ("r-coda" ,r-coda)
9063 ("r-lme4" ,r-lme4)
9064 ("r-mass" ,r-mass)
9065 ("r-matrix" ,r-matrix)
9066 ("r-nlme" ,r-nlme)))
9067 (home-page "https://cran.r-project.org/web/packages/arm/")
9068 (synopsis "Data analysis using regression and multilevel/hierarchical models")
9069 (description
9070 "This package provides functions to accompany A. Gelman and J. Hill,
9071 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
9072 University Press, 2007.")
9073 (license license:gpl3+)))
9074
9075 (define-public r-circular
9076 (package
9077 (name "r-circular")
9078 (version "0.4-93")
9079 (source
9080 (origin
9081 (method url-fetch)
9082 (uri (cran-uri "circular" version))
9083 (sha256
9084 (base32
9085 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
9086 (build-system r-build-system)
9087 (propagated-inputs
9088 `(("r-boot" ,r-boot)
9089 ("r-mvtnorm" ,r-mvtnorm)))
9090 (native-inputs
9091 `(("gfortran" ,gfortran)))
9092 (home-page "https://cran.r-project.org/web/packages/circular/")
9093 (synopsis "Circular statistics")
9094 (description
9095 "This package provides tools for circular statistics, from \"Topics in
9096 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
9097 Scientific.")
9098 (license license:gpl2+)))
9099
9100 (define-public r-activity
9101 (package
9102 (name "r-activity")
9103 (version "1.2")
9104 (source
9105 (origin
9106 (method url-fetch)
9107 (uri (cran-uri "activity" version))
9108 (sha256
9109 (base32
9110 "11w2bz6p9xbzdh6773dmbbh6rws0h5dj18p8m0ivzizgq932vdzs"))))
9111 (build-system r-build-system)
9112 (propagated-inputs
9113 `(("r-circular" ,r-circular)
9114 ("r-pbapply" ,r-pbapply)))
9115 (home-page "https://cran.r-project.org/web/packages/activity/")
9116 (synopsis "Animal activity statistics")
9117 (description
9118 "This package provides functions to fit kernel density functions to
9119 animal activity time data; plot activity distributions; quantify overall
9120 levels of activity; statistically compare activity metrics through
9121 bootstrapping; and evaluate variation in linear variables with time (or other
9122 circular variables).")
9123 (license license:gpl3)))
9124
9125 (define-public r-ouch
9126 (package
9127 (name "r-ouch")
9128 (version "2.14-1")
9129 (source
9130 (origin
9131 (method url-fetch)
9132 (uri (cran-uri "ouch" version))
9133 (sha256
9134 (base32
9135 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
9136 (build-system r-build-system)
9137 (propagated-inputs `(("r-subplex" ,r-subplex)))
9138 (home-page "http://kingaa.github.io/ouch/")
9139 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
9140 (description
9141 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
9142 for evolution along a phylogenetic tree.")
9143 (license license:gpl2+)))
9144
9145 (define-public r-fmsb
9146 (package
9147 (name "r-fmsb")
9148 (version "0.6.3")
9149 (source
9150 (origin
9151 (method url-fetch)
9152 (uri (cran-uri "fmsb" version))
9153 (sha256
9154 (base32
9155 "1n29bnyp20pvpk2lsa9fblsj5w7amp14snc74pk5w3yr5y6rj0s5"))))
9156 (build-system r-build-system)
9157 (home-page "http://minato.sip21c.org/msb/")
9158 (synopsis "Functions for medical statistics book with demographic data")
9159 (description
9160 "This package provides several utility functions for the book entitled
9161 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
9162 Japan, 2007) with Japanese demographic data and some demographic analysis
9163 related functions.")
9164 (license license:gpl2+)))
9165
9166 (define-public r-stabledist
9167 (package
9168 (name "r-stabledist")
9169 (version "0.7-1")
9170 (source
9171 (origin
9172 (method url-fetch)
9173 (uri (cran-uri "stabledist" version))
9174 (sha256
9175 (base32
9176 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
9177 (build-system r-build-system)
9178 (home-page "http://www.rmetrics.org")
9179 (synopsis "Stable distribution functions")
9180 (description
9181 "This package provides density, probability and quantile functions, and
9182 random number generation for (skew) stable distributions, using the
9183 parametrizations of Nolan.")
9184 (license license:gpl2+)))
9185
9186 (define-public r-gsl
9187 (package
9188 (name "r-gsl")
9189 (version "2.1-6")
9190 (source
9191 (origin
9192 (method url-fetch)
9193 (uri (cran-uri "gsl" version))
9194 (sha256
9195 (base32
9196 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
9197 (build-system r-build-system)
9198 (inputs
9199 `(("gsl" ,gsl)))
9200 (home-page "https://cran.r-project.org/web/packages/gsl")
9201 (synopsis "Wrapper for the GNU Scientific Library")
9202 (description
9203 "This package provides an R wrapper for the special functions and quasi
9204 random number generators of the GNU Scientific Library.")
9205 (license license:gpl2+)))
9206
9207 (define-public r-adgoftest
9208 (package
9209 (name "r-adgoftest")
9210 (version "0.3")
9211 (source
9212 (origin
9213 (method url-fetch)
9214 (uri (cran-uri "ADGofTest" version))
9215 (sha256
9216 (base32
9217 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
9218 (properties `((upstream-name . "ADGofTest")))
9219 (build-system r-build-system)
9220 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
9221 (synopsis "Anderson-Darling GoF test")
9222 (description
9223 "This package provides an implementation of the Anderson-Darling GoF test
9224 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
9225 Anderson-Darling Distribution\".")
9226 ;; Any version of the GPL.
9227 (license license:gpl3+)))
9228
9229 (define-public r-softimpute
9230 (package
9231 (name "r-softimpute")
9232 (version "1.4")
9233 (source
9234 (origin
9235 (method url-fetch)
9236 (uri (cran-uri "softImpute" version))
9237 (sha256
9238 (base32
9239 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
9240 (properties `((upstream-name . "softImpute")))
9241 (build-system r-build-system)
9242 (propagated-inputs
9243 `(("r-matrix" ,r-matrix)))
9244 (native-inputs
9245 `(("gfortran" ,gfortran)))
9246 (home-page "https://cran.r-project.org/web/packages/softImpute")
9247 (synopsis "Matrix completion via iterative soft-thresholded SVD")
9248 (description
9249 "This package provides iterative methods for matrix completion that use
9250 nuclear-norm regularization. The package includes procedures for centering
9251 and scaling rows, columns or both, and for computing low-rank @dfn{single
9252 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
9253 components).")
9254 (license license:gpl2)))
9255
9256 (define-public r-fftwtools
9257 (package
9258 (name "r-fftwtools")
9259 (version "0.9-8")
9260 (source
9261 (origin
9262 (method url-fetch)
9263 (uri (cran-uri "fftwtools" version))
9264 (sha256
9265 (base32
9266 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
9267 (build-system r-build-system)
9268 (inputs `(("fftw" ,fftw)))
9269 (home-page "https://github.com/krahim/fftwtools")
9270 (synopsis "Wrapper for FFTW3")
9271 (description
9272 "This package provides a wrapper for several FFTW functions. It provides
9273 access to the two-dimensional FFT, the multivariate FFT, and the
9274 one-dimensional real to complex FFT using the FFTW3 library. The package
9275 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
9276 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
9277 The FFT functions have a parameter that allows them to not return the
9278 redundant complex conjugate when the input is real data.")
9279 (license license:gpl2+)))
9280
9281 (define-public r-tiff
9282 (package
9283 (name "r-tiff")
9284 (version "0.1-5")
9285 (source
9286 (origin
9287 (method url-fetch)
9288 (uri (cran-uri "tiff" version))
9289 (sha256
9290 (base32
9291 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
9292 (build-system r-build-system)
9293 (inputs
9294 `(("libtiff" ,libtiff)
9295 ("libjpeg" ,libjpeg)
9296 ("zlib" ,zlib)))
9297 (home-page "http://www.rforge.net/tiff/")
9298 (synopsis "Read and write TIFF images")
9299 (description
9300 "This package provides an easy and simple way to read, write and display
9301 bitmap images stored in the TIFF format. It can read and write both files and
9302 in-memory raw vectors.")
9303 ;; Either of these two license versions.
9304 (license (list license:gpl2 license:gpl3))))
9305
9306 (define-public r-waveslim
9307 (package
9308 (name "r-waveslim")
9309 (version "1.7.5.1")
9310 (source
9311 (origin
9312 (method url-fetch)
9313 (uri (cran-uri "waveslim" version))
9314 (sha256
9315 (base32
9316 "0mky0nb4xxp8rybp87mxw2f1q6k400wpxv01zr4injv7ja6028xk"))))
9317 (build-system r-build-system)
9318 (native-inputs
9319 `(("gfortran" ,gfortran)))
9320 (home-page "http://waveslim.blogspot.com")
9321 (synopsis "Basic wavelet routines for signal processing")
9322 (description
9323 "This package provides basic wavelet routines for time series (1D),
9324 image (2D) and array (3D) analysis. The code provided here is based on
9325 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
9326 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
9327 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
9328 pairs (Selesnick 2001, 2002).")
9329 (license license:bsd-3)))
9330
9331 (define-public r-wordcloud
9332 (package
9333 (name "r-wordcloud")
9334 (version "2.6")
9335 (source
9336 (origin
9337 (method url-fetch)
9338 (uri (cran-uri "wordcloud" version))
9339 (sha256
9340 (base32
9341 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
9342 (build-system r-build-system)
9343 (propagated-inputs
9344 `(("r-rcolorbrewer" ,r-rcolorbrewer)
9345 ("r-rcpp" ,r-rcpp)))
9346 (home-page "https://cran.r-project.org/web/packages/wordcloud")
9347 (synopsis "Word clouds")
9348 (description
9349 "This package provides functionality to create pretty word clouds,
9350 visualize differences and similarity between documents, and avoid
9351 over-plotting in scatter plots with text.")
9352 (license license:lgpl2.1)))
9353
9354 (define-public r-colorramps
9355 (package
9356 (name "r-colorramps")
9357 (version "2.3")
9358 (source
9359 (origin
9360 (method url-fetch)
9361 (uri (cran-uri "colorRamps" version))
9362 (sha256
9363 (base32
9364 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
9365 (properties `((upstream-name . "colorRamps")))
9366 (build-system r-build-system)
9367 (home-page "https://cran.r-project.org/web/packages/colorRamps")
9368 (synopsis "Build color tables")
9369 (description "This package provides features to build gradient color
9370 maps.")
9371 ;; Any version of the GPL
9372 (license license:gpl3+)))
9373
9374 (define-public r-tidytree
9375 (package
9376 (name "r-tidytree")
9377 (version "0.2.4")
9378 (source
9379 (origin
9380 (method url-fetch)
9381 (uri (cran-uri "tidytree" version))
9382 (sha256
9383 (base32
9384 "04bznlfs617plv258nmsyq2pywnijcnzy2pbn5b2fgjk2xqkp29w"))))
9385 (build-system r-build-system)
9386 (propagated-inputs
9387 `(("r-ape" ,r-ape)
9388 ("r-dplyr" ,r-dplyr)
9389 ("r-lazyeval" ,r-lazyeval)
9390 ("r-magrittr" ,r-magrittr)
9391 ("r-rlang" ,r-rlang)
9392 ("r-tibble" ,r-tibble)))
9393 (home-page "https://github.com/GuangchuangYu/tidytree")
9394 (synopsis "Tidy tool for phylogenetic tree data manipulation")
9395 (description
9396 "Phylogenetic trees generally contain multiple components including nodes,
9397 edges, branches and associated data. This package provides an approach to
9398 convert tree objects to tidy data frames. It also provides tidy interfaces to
9399 manipulate tree data.")
9400 (license license:artistic2.0)))
9401
9402 (define-public r-rvcheck
9403 (package
9404 (name "r-rvcheck")
9405 (version "0.1.3")
9406 (source
9407 (origin
9408 (method url-fetch)
9409 (uri (cran-uri "rvcheck" version))
9410 (sha256
9411 (base32
9412 "1i2g6gyiqyd1pn6y0h6vmlcmg1qb5pv7rym8mkw8jnyc3in9hn8b"))))
9413 (build-system r-build-system)
9414 (propagated-inputs
9415 `(("r-rlang" ,r-rlang)))
9416 (home-page "https://cran.r-project.org/web/packages/rvcheck")
9417 (synopsis "R package version check")
9418 (description
9419 "This package provides tools to check the latest release version of R and
9420 R packages (on CRAN, Bioconductor or Github).")
9421 (license license:artistic2.0)))
9422
9423 (define-public r-docopt
9424 (package
9425 (name "r-docopt")
9426 (version "0.6.1")
9427 (source
9428 (origin
9429 (method url-fetch)
9430 (uri (cran-uri "docopt" version))
9431 (sha256
9432 (base32
9433 "06zknnd0c5s2y0hbddzdlr3m63ib783izpck6pgz7sjbab5pd068"))))
9434 (build-system r-build-system)
9435 (home-page "https://github.com/docopt/docopt.R")
9436 (synopsis "Command-line interface specification language")
9437 (description
9438 "This package enables you to define a command-line interface by just
9439 giving it a description in the specific format.")
9440 (license license:expat)))
9441
9442 (define-public r-sparsesvd
9443 (package
9444 (name "r-sparsesvd")
9445 (version "0.1-4")
9446 (source
9447 (origin
9448 (method url-fetch)
9449 (uri (cran-uri "sparsesvd" version))
9450 (sha256
9451 (base32
9452 "1yf373552wvdnd65r7hfcqa3v29dqn7jd4cn431mqd2acnqjrsam"))))
9453 (build-system r-build-system)
9454 (propagated-inputs `(("r-matrix" ,r-matrix)))
9455 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
9456 (synopsis "Sparse truncated singular value decomposition")
9457 (description
9458 "This package provides a Wrapper around the SVDLIBC library
9459 for (truncated) singular value decomposition of a sparse matrix. Currently,
9460 only sparse real matrices in Matrix package format are supported.")
9461 ;; SVDLIBC is released under BSD-2. The R interface is released under
9462 ;; BSD-3.
9463 (license (list license:bsd-3 license:bsd-2))))
9464
9465 (define-public r-speedglm
9466 (package
9467 (name "r-speedglm")
9468 (version "0.3-2")
9469 (source
9470 (origin
9471 (method url-fetch)
9472 (uri (cran-uri "speedglm" version))
9473 (sha256
9474 (base32
9475 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
9476 (build-system r-build-system)
9477 (propagated-inputs
9478 `(("r-mass" ,r-mass)
9479 ("r-matrix" ,r-matrix)))
9480 (home-page "https://cran.r-project.org/web/packages/speedglm")
9481 (synopsis "Fit linear and generalized linear models to large data sets")
9482 (description
9483 "This package provides tools for fitting linear models and generalized
9484 linear models to large data sets by updating algorithms.")
9485 ;; Any version of the GPL
9486 (license license:gpl2+)))
9487
9488 (define-public r-densityclust
9489 (package
9490 (name "r-densityclust")
9491 (version "0.3")
9492 (source
9493 (origin
9494 (method url-fetch)
9495 (uri (cran-uri "densityClust" version))
9496 (sha256
9497 (base32
9498 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
9499 (properties `((upstream-name . "densityClust")))
9500 (build-system r-build-system)
9501 (propagated-inputs
9502 `(("r-fnn" ,r-fnn)
9503 ("r-ggplot2" ,r-ggplot2)
9504 ("r-ggrepel" ,r-ggrepel)
9505 ("r-gridextra" ,r-gridextra)
9506 ("r-rcolorbrewer" ,r-rcolorbrewer)
9507 ("r-rcpp" ,r-rcpp)
9508 ("r-rtsne" ,r-rtsne)))
9509 (home-page "https://cran.r-project.org/web/packages/densityClust")
9510 (synopsis "Clustering by fast search and find of density peaks")
9511 (description
9512 "This package provides an improved implementation (based on k-nearest
9513 neighbors) of the density peak clustering algorithm, originally described by
9514 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
9515 large datasets (> 100,000 samples) very efficiently.")
9516 (license license:gpl2+)))
9517
9518 (define-public r-combinat
9519 (package
9520 (name "r-combinat")
9521 (version "0.0-8")
9522 (source
9523 (origin
9524 (method url-fetch)
9525 (uri (cran-uri "combinat" version))
9526 (sha256
9527 (base32
9528 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
9529 (build-system r-build-system)
9530 (home-page "https://cran.r-project.org/web/packages/combinat")
9531 (synopsis "Combinatorics utilities")
9532 (description "This package provides assorted routines for combinatorics.")
9533 (license license:gpl2)))
9534
9535 (define-public r-qlcmatrix
9536 (package
9537 (name "r-qlcmatrix")
9538 (version "0.9.7")
9539 (source
9540 (origin
9541 (method url-fetch)
9542 (uri (cran-uri "qlcMatrix" version))
9543 (sha256
9544 (base32
9545 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
9546 (properties `((upstream-name . "qlcMatrix")))
9547 (build-system r-build-system)
9548 (propagated-inputs
9549 `(("r-docopt" ,r-docopt)
9550 ("r-matrix" ,r-matrix)
9551 ("r-slam" ,r-slam)
9552 ("r-sparsesvd" ,r-sparsesvd)))
9553 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
9554 (synopsis "Sparse matrix functions for quantitative language comparison")
9555 (description
9556 "This package provides an extension of the functionality of the Matrix
9557 package for using sparse matrices. Some of the functions are very general,
9558 while other are highly specific for the special data format used for
9559 @dfn{quantitative language comparison} (QLC).")
9560 (license license:gpl3)))
9561
9562 (define-public r-ddrtree
9563 (package
9564 (name "r-ddrtree")
9565 (version "0.1.5")
9566 (source
9567 (origin
9568 (method url-fetch)
9569 (uri (cran-uri "DDRTree" version))
9570 (sha256
9571 (base32
9572 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
9573 (properties `((upstream-name . "DDRTree")))
9574 (build-system r-build-system)
9575 (propagated-inputs
9576 `(("r-bh" ,r-bh)
9577 ("r-irlba" ,r-irlba)
9578 ("r-rcpp" ,r-rcpp)
9579 ("r-rcppeigen" ,r-rcppeigen)))
9580 (home-page "https://cran.r-project.org/web/packages/DDRTree")
9581 (synopsis "Learning principal graphs with DDRTree")
9582 (description
9583 "This package provides an implementation of the framework of
9584 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
9585 dimensional space while constructs a principal tree which passes through the
9586 middle of the data simultaneously. DDRTree shows superiority to
9587 alternatives (Wishbone, DPT) for inferring the ordering as well as the
9588 intrinsic structure of single cell genomics data. In general, it could be
9589 used to reconstruct the temporal progression as well as the bifurcation
9590 structure of any data type.")
9591 (license license:asl2.0)))
9592
9593 (define-public r-corpcor
9594 (package
9595 (name "r-corpcor")
9596 (version "1.6.9")
9597 (source
9598 (origin
9599 (method url-fetch)
9600 (uri (cran-uri "corpcor" version))
9601 (sha256
9602 (base32
9603 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
9604 (build-system r-build-system)
9605 (home-page "http://strimmerlab.org/software/corpcor/")
9606 (synopsis "Efficient estimation of covariance and (partial) correlation")
9607 (description
9608 "This package implements a James-Stein-type shrinkage estimator for the
9609 covariance matrix, with separate shrinkage for variances and correlations.
9610 Furthermore, functions are available for fast singular value decomposition,
9611 for computing the pseudoinverse, and for checking the rank and positive
9612 definiteness of a matrix.")
9613 (license license:gpl3+)))
9614
9615 (define-public r-rspectra
9616 (package
9617 (name "r-rspectra")
9618 (version "0.15-0")
9619 (source
9620 (origin
9621 (method url-fetch)
9622 (uri (cran-uri "RSpectra" version))
9623 (sha256
9624 (base32
9625 "1ab975scdqaxdna9sayjl6l14hz991y0pc8c8ah48w000616km8s"))))
9626 (properties `((upstream-name . "RSpectra")))
9627 (build-system r-build-system)
9628 (propagated-inputs
9629 `(("r-matrix" ,r-matrix)
9630 ("r-rcpp" ,r-rcpp)
9631 ("r-rcppeigen" ,r-rcppeigen)))
9632 (home-page "https://github.com/yixuan/RSpectra")
9633 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
9634 (description
9635 "This package provides an R interface to the Spectra library for
9636 large-scale eigenvalue and SVD problems. It is typically used to compute a
9637 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
9638 which is usually more efficient than @code{eigen()} if k << n.")
9639 ;; MPL 2 or later.
9640 (license license:mpl2.0)))
9641
9642 (define-public r-vbsr
9643 (package
9644 (name "r-vbsr")
9645 (version "0.0.5")
9646 (source
9647 (origin
9648 (method url-fetch)
9649 (uri (cran-uri "vbsr" version))
9650 (sha256
9651 (base32
9652 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
9653 (build-system r-build-system)
9654 (home-page "https://cran.r-project.org/web/packages/vbsr")
9655 (synopsis "Variational Bayes spike regression regularized linear models")
9656 (description
9657 "This package provides an efficient algorithm for solving ultra-sparse
9658 regularized regression models using a variational Bayes algorithm with a spike
9659 prior. The algorithm is solved on a path, with coordinate updates, and is
9660 capable of generating very sparse models. Very general model
9661 diagnostics for controlling type-1 errors are also provided.")
9662 (license license:gpl2)))
9663
9664 (define-public r-flare
9665 (package
9666 (name "r-flare")
9667 (version "1.6.0")
9668 (source
9669 (origin
9670 (method url-fetch)
9671 (uri (cran-uri "flare" version))
9672 (sha256
9673 (base32
9674 "0ygif9a7a99qwv0b488wymmmncp6f5ww9yz13s4qs6p8yf37x1r1"))))
9675 (build-system r-build-system)
9676 (propagated-inputs
9677 `(("r-igraph" ,r-igraph)
9678 ("r-lattice" ,r-lattice)
9679 ("r-mass" ,r-mass)
9680 ("r-matrix" ,r-matrix)))
9681 (home-page "https://cran.r-project.org/web/packages/flare")
9682 (synopsis "Family of Lasso regression implementations")
9683 (description
9684 "This package provides implementations of a family of Lasso variants
9685 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
9686 high dimensional sparse linear models.")
9687 (license license:gpl2)))
9688
9689 (define-public r-lassopv
9690 (package
9691 (name "r-lassopv")
9692 (version "0.2.0")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (cran-uri "lassopv" version))
9697 (sha256
9698 (base32
9699 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
9700 (build-system r-build-system)
9701 (propagated-inputs `(("r-lars" ,r-lars)))
9702 (home-page "https://github.com/lingfeiwang/lassopv")
9703 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
9704 (description
9705 "This package enables you to estimate the p-values for predictors x
9706 against target variable y in Lasso regression, using the regularization
9707 strength when each predictor enters the active set of regularization path for
9708 the first time as the statistic.")
9709 (license license:gpl3)))
9710
9711 (define-public r-splitstackshape
9712 (package
9713 (name "r-splitstackshape")
9714 (version "1.4.8")
9715 (source
9716 (origin
9717 (method url-fetch)
9718 (uri (cran-uri "splitstackshape" version))
9719 (sha256
9720 (base32
9721 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
9722 (build-system r-build-system)
9723 (propagated-inputs
9724 `(("r-data-table" ,r-data-table)))
9725 (home-page "https://github.com/mrdwab/splitstackshape")
9726 (synopsis "Stack and reshape datasets after splitting concatenated values")
9727 (description
9728 "Online data collection tools like Google Forms often export
9729 multiple-response questions with data concatenated in cells. The
9730 @code{concat.split} (cSplit) family of functions provided by this package
9731 splits such data into separate cells. This package also includes functions to
9732 stack groups of columns and to reshape wide data, even when the data are
9733 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
9734 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
9735 handle.")
9736 (license license:gpl3)))
9737
9738 (define-public r-tfmpvalue
9739 (package
9740 (name "r-tfmpvalue")
9741 (version "0.0.8")
9742 (source
9743 (origin
9744 (method url-fetch)
9745 (uri (cran-uri "TFMPvalue" version))
9746 (sha256
9747 (base32
9748 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
9749 (properties `((upstream-name . "TFMPvalue")))
9750 (build-system r-build-system)
9751 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9752 (home-page "https://github.com/ge11232002/TFMPvalue")
9753 (synopsis "P-value computation for position weight matrices")
9754 (description
9755 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
9756 identification from sequence/alignments, we are interested in the significance
9757 of certain match scores. TFMPvalue provides the accurate calculation of a
9758 p-value with a score threshold for position weight matrices, or the score with
9759 a given p-value. It is an interface to code originally made available by
9760 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
9761 Touzet and Varre (2007).")
9762 (license license:gpl2)))
9763
9764 (define-public r-rnifti
9765 (package
9766 (name "r-rnifti")
9767 (version "0.11.0")
9768 (source
9769 (origin
9770 (method url-fetch)
9771 (uri (cran-uri "RNifti" version))
9772 (sha256
9773 (base32
9774 "0zs8ffa6gpi9cygxk7xjin6k3vpvfgb540a506zlk50bf6kc5nlf"))))
9775 (properties `((upstream-name . "RNifti")))
9776 (build-system r-build-system)
9777 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9778 (home-page "https://github.com/jonclayden/RNifti")
9779 (synopsis "Fast R and C++ access to NIfTI images")
9780 (description
9781 "This package provides very fast read and write access to images stored
9782 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
9783 compiled C and interpreted R code. It also provides a C/C++ API that can be
9784 used by other packages.")
9785 (license license:gpl2)))
9786
9787 (define-public r-shades
9788 (package
9789 (name "r-shades")
9790 (version "1.3.1")
9791 (source
9792 (origin
9793 (method url-fetch)
9794 (uri (cran-uri "shades" version))
9795 (sha256
9796 (base32
9797 "0v0xp9l1zyq4iysmkrbdwk4r1rksjj8p5c1726yrcgyg55mj59nv"))))
9798 (build-system r-build-system)
9799 (home-page "https://github.com/jonclayden/shades")
9800 (synopsis "Simple color manipulation")
9801 (description
9802 "This package provides functions for easily manipulating colors,
9803 creating color scales and calculating color distances.")
9804 (license license:bsd-3)))
9805
9806 (define-public r-ore
9807 (package
9808 (name "r-ore")
9809 (version "1.6.2")
9810 (source
9811 (origin
9812 (method url-fetch)
9813 (uri (cran-uri "ore" version))
9814 (sha256
9815 (base32
9816 "1l1ziljgm5gwjhvjq42wi5vcwbxlaj5dl9w8bhz0wh8vx4ajj07m"))))
9817 (build-system r-build-system)
9818 (home-page "https://github.com/jonclayden/ore")
9819 (synopsis "R interface to the Onigmo regular expression library")
9820 (description
9821 "This package provides an alternative to R's built-in functionality for
9822 handling regular expressions, based on the Onigmo library. It offers
9823 first-class compiled regex objects, partial matching and function-based
9824 substitutions, amongst other features.")
9825 (license license:bsd-3)))
9826
9827 (define-public r-reportr
9828 (package
9829 (name "r-reportr")
9830 (version "1.3.0")
9831 (source
9832 (origin
9833 (method url-fetch)
9834 (uri (cran-uri "reportr" version))
9835 (sha256
9836 (base32
9837 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
9838 (build-system r-build-system)
9839 (propagated-inputs `(("r-ore" ,r-ore)))
9840 (home-page "https://github.com/jonclayden/reportr")
9841 (synopsis "General message and error reporting system")
9842 (description
9843 "This package provides a system for reporting messages, which offers
9844 certain useful features over the standard R system, such as the incorporation
9845 of output consolidation, message filtering, assertions, expression
9846 substitution, automatic generation of stack traces for debugging, and
9847 conditional reporting based on the current \"output level\".")
9848 (license license:gpl2)))
9849
9850 (define-public r-tractor-base
9851 (package
9852 (name "r-tractor-base")
9853 (version "3.3.2")
9854 (source
9855 (origin
9856 (method url-fetch)
9857 (uri (cran-uri "tractor.base" version))
9858 (sha256
9859 (base32
9860 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
9861 (properties `((upstream-name . "tractor.base")))
9862 (build-system r-build-system)
9863 (propagated-inputs
9864 `(("r-ore" ,r-ore)
9865 ("r-reportr" ,r-reportr)
9866 ("r-rnifti" ,r-rnifti)
9867 ("r-shades" ,r-shades)))
9868 (home-page "http://www.tractor-mri.org.uk")
9869 (synopsis "Read, manipulate and visualize magnetic resonance images")
9870 (description
9871 "This package provides functions for working with magnetic resonance
9872 images. It supports reading and writing of popular file formats (DICOM,
9873 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
9874 visualization; flexible image manipulation; metadata and sparse image
9875 handling.")
9876 (license license:gpl2)))
9877
9878 (define-public r-grimport
9879 (package
9880 (name "r-grimport")
9881 (version "0.9-2")
9882 (source
9883 (origin
9884 (method url-fetch)
9885 (uri (cran-uri "grImport" version))
9886 (sha256
9887 (base32
9888 "0n3y6dzy8s0ifvyrgwbly6cl14lmgd54dyi74s5i984apszpsp16"))))
9889 (properties `((upstream-name . "grImport")))
9890 (build-system r-build-system)
9891 (inputs
9892 `(("ghostscript" ,ghostscript)))
9893 (propagated-inputs
9894 `(("r-xml" ,r-xml)))
9895 (home-page "https://cran.r-project.org/web/packages/grImport")
9896 (synopsis "Convert, import, and draw PostScript pictures")
9897 (description
9898 "This package provides functions for converting, importing, and drawing
9899 PostScript pictures in R plots.")
9900 (license license:gpl2+)))
9901
9902 (define-public r-grimport2
9903 (package
9904 (name "r-grimport2")
9905 (version "0.1-5")
9906 (source
9907 (origin
9908 (method url-fetch)
9909 (uri (cran-uri "grImport2" version))
9910 (sha256
9911 (base32
9912 "0dyb3nrrvxnkk9q5b136bdivcz1jj3ajx1kscm3k0kkpqjif0pls"))))
9913 (properties `((upstream-name . "grImport2")))
9914 (build-system r-build-system)
9915 (propagated-inputs
9916 `(("r-base64enc" ,r-base64enc)
9917 ("r-jpeg" ,r-jpeg)
9918 ("r-png" ,r-png)
9919 ("r-xml" ,r-xml)))
9920 (home-page "https://cran.r-project.org/web/packages/grImport2/")
9921 (synopsis "Import SVG graphics")
9922 (description
9923 "This package provides functions for importing external vector images and
9924 drawing them as part of R plots. This package is different from the
9925 @code{grImport} package because, where that package imports PostScript format
9926 images, this package imports SVG format images. Furthermore, this package
9927 imports a specific subset of SVG, so external images must be preprocessed
9928 using a package like @code{rsvg} to produce SVG that this package can import.
9929 SVG features that are not supported by R graphics, such as gradient fills, can
9930 be imported and then exported via the @code{gridSVG} package.")
9931 (license license:gpl2+)))
9932
9933 (define-public r-kohonen
9934 (package
9935 (name "r-kohonen")
9936 (version "3.0.8")
9937 (source
9938 (origin
9939 (method url-fetch)
9940 (uri (cran-uri "kohonen" version))
9941 (sha256
9942 (base32
9943 "1zbfqa1qdlry8w6xhypkiknc5gn98v1ijhlsfka8zjg8ajhqgn1q"))))
9944 (build-system r-build-system)
9945 (propagated-inputs
9946 `(("r-mass" ,r-mass)
9947 ("r-rcpp" ,r-rcpp)))
9948 (home-page "https://cran.r-project.org/web/packages/kohonen")
9949 (synopsis "Supervised and unsupervised self-organising maps")
9950 (description
9951 "This package provides functions to train @dfn{self-organising
9952 maps} (SOMs). Also interrogation of the maps and prediction using trained
9953 maps are supported. The name of the package refers to Teuvo Kohonen, the
9954 inventor of the SOM.")
9955 (license license:gpl2+)))
9956
9957 (define-public r-nnls
9958 (package
9959 (name "r-nnls")
9960 (version "1.4")
9961 (source
9962 (origin
9963 (method url-fetch)
9964 (uri (cran-uri "nnls" version))
9965 (sha256
9966 (base32
9967 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
9968 (build-system r-build-system)
9969 (native-inputs `(("gfortran" ,gfortran)))
9970 (home-page "https://cran.r-project.org/web/packages/nnls")
9971 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
9972 (description
9973 "This package provides an R interface to the Lawson-Hanson implementation
9974 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
9975 the combination of non-negative and non-positive constraints.")
9976 (license license:gpl2+)))
9977
9978 (define-public r-iso
9979 (package
9980 (name "r-iso")
9981 (version "0.0-18")
9982 (source
9983 (origin
9984 (method url-fetch)
9985 (uri (cran-uri "Iso" version))
9986 (sha256
9987 (base32
9988 "014mm5b1f7i6nwlz3kyg1biph0y542kcx5bd13p68cv5a928qzid"))))
9989 (properties `((upstream-name . "Iso")))
9990 (build-system r-build-system)
9991 (native-inputs `(("gfortran" ,gfortran)))
9992 (home-page "http://www.stat.auckland.ac.nz/~rolf/")
9993 (synopsis "Functions to perform isotonic regression")
9994 (description
9995 "This package provides support for linear order and unimodal
9996 order (univariate) isotonic regression and bivariate isotonic regression with
9997 linear order on both variables.")
9998 (license license:gpl2+)))
9999
10000 (define-public r-chemometricswithr
10001 (package
10002 (name "r-chemometricswithr")
10003 (version "0.1.13")
10004 (source
10005 (origin
10006 (method url-fetch)
10007 (uri (cran-uri "ChemometricsWithR" version))
10008 (sha256
10009 (base32
10010 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
10011 (properties
10012 `((upstream-name . "ChemometricsWithR")))
10013 (build-system r-build-system)
10014 (propagated-inputs
10015 `(("r-devtools" ,r-devtools)
10016 ("r-kohonen" ,r-kohonen)
10017 ("r-mass" ,r-mass)
10018 ("r-pls" ,r-pls)))
10019 (home-page "https://github.com/rwehrens/CWR")
10020 (synopsis "Chemometrics with R")
10021 (description
10022 "This package provides functions and scripts used in the book
10023 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
10024 Life Sciences\" by Ron Wehrens, Springer (2011).")
10025 (license license:gpl2+)))
10026
10027 (define-public r-als
10028 (package
10029 (name "r-als")
10030 (version "0.0.6")
10031 (source
10032 (origin
10033 (method url-fetch)
10034 (uri (cran-uri "ALS" version))
10035 (sha256
10036 (base32
10037 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
10038 (properties `((upstream-name . "ALS")))
10039 (build-system r-build-system)
10040 (propagated-inputs
10041 `(("r-iso" ,r-iso)
10042 ("r-nnls" ,r-nnls)))
10043 (home-page "https://cran.r-project.org/web/packages/ALS")
10044 (synopsis "Multivariate curve resolution alternating least squares")
10045 (description
10046 "Alternating least squares is often used to resolve components
10047 contributing to data with a bilinear structure; the basic technique may be
10048 extended to alternating constrained least squares. This package provides an
10049 implementation of @dfn{multivariate curve resolution alternating least
10050 squares} (MCR-ALS).
10051
10052 Commonly applied constraints include unimodality, non-negativity, and
10053 normalization of components. Several data matrices may be decomposed
10054 simultaneously by assuming that one of the two matrices in the bilinear
10055 decomposition is shared between datasets.")
10056 (license license:gpl2+)))
10057
10058 (define-public r-strucchange
10059 (package
10060 (name "r-strucchange")
10061 (version "1.5-1")
10062 (source
10063 (origin
10064 (method url-fetch)
10065 (uri (cran-uri "strucchange" version))
10066 (sha256
10067 (base32
10068 "0cdgvl6kphm2i59bmnppn1y3kv65ml111bk7yzpcx7vv8wh2w3kl"))))
10069 (build-system r-build-system)
10070 (propagated-inputs
10071 `(("r-sandwich" ,r-sandwich)
10072 ("r-zoo" ,r-zoo)))
10073 (home-page "https://cran.r-project.org/web/packages/strucchange")
10074 (synopsis "Testing, monitoring, and dating structural changes")
10075 (description
10076 "This package provides tools for testing, monitoring and dating
10077 structural changes in (linear) regression models. It features tests/methods
10078 from the generalized fluctuation test framework as well as from the F
10079 test (Chow test) framework. This includes methods to fit, plot and test
10080 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
10081 statistics, respectively. It is possible to monitor incoming data online
10082 using fluctuation processes. Finally, the breakpoints in regression models
10083 with structural changes can be estimated together with confidence intervals.
10084 Emphasis is always given to methods for visualizing the data.")
10085 ;; Either of these two GPL versions
10086 (license (list license:gpl2 license:gpl3))))
10087
10088 (define-public r-pixmap
10089 (package
10090 (name "r-pixmap")
10091 (version "0.4-11")
10092 (source
10093 (origin
10094 (method url-fetch)
10095 (uri (cran-uri "pixmap" version))
10096 (sha256
10097 (base32
10098 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
10099 (build-system r-build-system)
10100 (home-page "https://cran.r-project.org/web/packages/pixmap")
10101 (synopsis "Tools for bitmap images")
10102 (description
10103 "This package provides functions for importing, exporting, plotting and
10104 other manipulations of bitmapped images.")
10105 (license license:gpl2)))
10106
10107 (define-public r-rapidjsonr
10108 (package
10109 (name "r-rapidjsonr")
10110 (version "1.1")
10111 (source
10112 (origin
10113 (method url-fetch)
10114 (uri (cran-uri "rapidjsonr" version))
10115 (sha256
10116 (base32
10117 "0h4phjjhykbb45rg5b1xn48vqxdcvcngbm0416ds8in7j469wbwd"))))
10118 (build-system r-build-system)
10119 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
10120 (synopsis "JSON parser")
10121 (description
10122 "This package provides JSON parsing capability through the Rapidjson
10123 library.")
10124 (license license:expat)))
10125
10126 (define-public r-ontologyindex
10127 (package
10128 (name "r-ontologyindex")
10129 (version "2.5")
10130 (source
10131 (origin
10132 (method url-fetch)
10133 (uri (cran-uri "ontologyIndex" version))
10134 (sha256
10135 (base32
10136 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
10137 (properties `((upstream-name . "ontologyIndex")))
10138 (build-system r-build-system)
10139 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
10140 (synopsis "Functions for processing ontologies in R")
10141 (description
10142 "This package provides functions for reading ontologies into R as lists
10143 and manipulating sets of ontological terms.")
10144 (license license:gpl2+)))
10145
10146 (define-public r-bigrquery
10147 (package
10148 (name "r-bigrquery")
10149 (version "1.1.1")
10150 (source
10151 (origin
10152 (method url-fetch)
10153 (uri (cran-uri "bigrquery" version))
10154 (sha256
10155 (base32
10156 "1if39xkr231xmjq10fx2g7bgg4jgfd3wzx1p9g3pq4hbf2s6x0is"))))
10157 (build-system r-build-system)
10158 (propagated-inputs
10159 `(("r-assertthat" ,r-assertthat)
10160 ("r-bit64" ,r-bit64)
10161 ("r-curl" ,r-curl)
10162 ("r-dbi" ,r-dbi)
10163 ("r-glue" ,r-glue)
10164 ("r-httr" ,r-httr)
10165 ("r-jsonlite" ,r-jsonlite)
10166 ("r-prettyunits" ,r-prettyunits)
10167 ("r-progress" ,r-progress)
10168 ("r-rapidjsonr" ,r-rapidjsonr)
10169 ("r-rcpp" ,r-rcpp)
10170 ("r-tibble" ,r-tibble)))
10171 (home-page "https://github.com/rstats-db/bigrquery")
10172 (synopsis "R interface to Google's BigQuery API")
10173 (description
10174 "This package provides an R interface to Google's BigQuery database.")
10175 (license license:gpl3)))
10176
10177 (define-public r-gmp
10178 (package
10179 (name "r-gmp")
10180 (version "0.5-13.5")
10181 (source
10182 (origin
10183 (method url-fetch)
10184 (uri (cran-uri "gmp" version))
10185 (sha256
10186 (base32
10187 "042mzsl6z6s61fy5m21yf9q83l08vnyqljn4iax7kqyiycpsp0gn"))))
10188 (build-system r-build-system)
10189 (arguments
10190 '(#:phases
10191 (modify-phases %standard-phases
10192 (add-after 'unpack 'set-CC
10193 (lambda _ (setenv "CC" "gcc") #t)))))
10194 (inputs `(("gmp" ,gmp)))
10195 (home-page "https://cran.r-project.org/web/packages/gmp")
10196 (synopsis "Multiple precision arithmetic")
10197 (description
10198 "This package supports multiple precision arithmetic (big integers and
10199 rationals, prime number tests, matrix computation), \"arithmetic without
10200 limitations\" using the GNU Multiple Precision library.")
10201 ;; Any version of the GPL.
10202 (license license:gpl3+)))
10203
10204 (define-public r-rmpfr
10205 (package
10206 (name "r-rmpfr")
10207 (version "0.7-2")
10208 (source
10209 (origin
10210 (method url-fetch)
10211 (uri (cran-uri "Rmpfr" version))
10212 (sha256
10213 (base32
10214 "1zq3as34r27v2yc729731997wdhxb6cs5ilmak4nmsljabnac7gc"))))
10215 (properties `((upstream-name . "Rmpfr")))
10216 (build-system r-build-system)
10217 (inputs
10218 `(("mpfr" ,mpfr)))
10219 (propagated-inputs
10220 `(("r-gmp" ,r-gmp)))
10221 (home-page "http://rmpfr.r-forge.r-project.org/")
10222 (synopsis "R bindings to the MPFR library")
10223 (description
10224 "This package supports arithmetic (via S4 classes and methods) for
10225 arbitrary precision floating point numbers, including transcendental
10226 functions. To this end, the package interfaces with the @dfn{Multiple
10227 Precision Floating-Point Reliable} (MPFR) library.")
10228 (license license:gpl2+)))
10229
10230 (define-public r-assertive-base
10231 (package
10232 (name "r-assertive-base")
10233 (version "0.0-7")
10234 (source
10235 (origin
10236 (method url-fetch)
10237 (uri (cran-uri "assertive.base" version))
10238 (sha256
10239 (base32
10240 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
10241 (properties
10242 `((upstream-name . "assertive.base")))
10243 (build-system r-build-system)
10244 (home-page "https://bitbucket.org/richierocks/assertive.base")
10245 (synopsis "Core of the assertive package")
10246 (description
10247 "This package provides a minimal set of predicates and assertions used by
10248 the assertive package. This is mainly for use by other package developers who
10249 want to include run-time testing features in their own packages.")
10250 (license license:gpl3+)))
10251
10252 (define-public r-assertive-properties
10253 (package
10254 (name "r-assertive-properties")
10255 (version "0.0-4")
10256 (source
10257 (origin
10258 (method url-fetch)
10259 (uri (cran-uri "assertive.properties" version))
10260 (sha256
10261 (base32
10262 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
10263 (properties
10264 `((upstream-name . "assertive.properties")))
10265 (build-system r-build-system)
10266 (propagated-inputs
10267 `(("r-assertive-base" ,r-assertive-base)))
10268 (home-page "https://bitbucket.org/richierocks/assertive.properties")
10269 (synopsis "Assertions to check properties of variables")
10270 (description
10271 "This package provides a set of predicates and assertions for checking
10272 the properties of variables, such as length, names and attributes. This is
10273 mainly for use by other package developers who want to include run-time
10274 testing features in their own packages.")
10275 (license license:gpl3+)))
10276
10277 (define-public r-assertive-numbers
10278 (package
10279 (name "r-assertive-numbers")
10280 (version "0.0-2")
10281 (source
10282 (origin
10283 (method url-fetch)
10284 (uri (cran-uri "assertive.numbers" version))
10285 (sha256
10286 (base32
10287 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
10288 (properties
10289 `((upstream-name . "assertive.numbers")))
10290 (build-system r-build-system)
10291 (propagated-inputs
10292 `(("r-assertive-base" ,r-assertive-base)))
10293 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
10294 (synopsis "Assertions to check properties of numbers")
10295 (description
10296 "This package provides a set of predicates and assertions for checking
10297 the properties of numbers. This is mainly for use by other package developers
10298 who want to include run-time testing features in their own packages.")
10299 (license license:gpl3+)))
10300
10301 (define-public r-assertive-sets
10302 (package
10303 (name "r-assertive-sets")
10304 (version "0.0-3")
10305 (source
10306 (origin
10307 (method url-fetch)
10308 (uri (cran-uri "assertive.sets" version))
10309 (sha256
10310 (base32
10311 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
10312 (properties
10313 `((upstream-name . "assertive.sets")))
10314 (build-system r-build-system)
10315 (propagated-inputs
10316 `(("r-assertive-base" ,r-assertive-base)))
10317 (home-page "https://bitbucket.org/richierocks/assertive.sets")
10318 (synopsis "Assertions to check properties of sets")
10319 (description
10320 "This package provides a set of predicates and assertions for checking
10321 the properties of sets. This is mainly for use by other package developers
10322 who want to include run-time testing features in their own packages.")
10323 (license license:gpl3+)))
10324
10325 (define-public r-assertive-matrices
10326 (package
10327 (name "r-assertive-matrices")
10328 (version "0.0-2")
10329 (source
10330 (origin
10331 (method url-fetch)
10332 (uri (cran-uri "assertive.matrices" version))
10333 (sha256
10334 (base32
10335 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
10336 (properties
10337 `((upstream-name . "assertive.matrices")))
10338 (build-system r-build-system)
10339 (propagated-inputs
10340 `(("r-assertive-base" ,r-assertive-base)))
10341 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
10342 (synopsis "Assertions to check properties of matrices")
10343 (description
10344 "This package provides a set of predicates and assertions for checking
10345 the properties of matrices. This is mainly for use by other package
10346 developers who want to include run-time testing features in their own
10347 packages.")
10348 (license license:gpl3+)))
10349
10350 (define-public r-assertive-models
10351 (package
10352 (name "r-assertive-models")
10353 (version "0.0-2")
10354 (source
10355 (origin
10356 (method url-fetch)
10357 (uri (cran-uri "assertive.models" version))
10358 (sha256
10359 (base32
10360 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
10361 (properties
10362 `((upstream-name . "assertive.models")))
10363 (build-system r-build-system)
10364 (propagated-inputs
10365 `(("r-assertive-base" ,r-assertive-base)))
10366 (home-page "https://bitbucket.org/richierocks/assertive.models")
10367 (synopsis "Assertions to check properties of models")
10368 (description
10369 "This package provides a set of predicates and assertions for checking
10370 the properties of models. This is mainly for use by other package developers
10371 who want to include run-time testing features in their own packages.")
10372 (license license:gpl3+)))
10373
10374 (define-public r-assertive-reflection
10375 (package
10376 (name "r-assertive-reflection")
10377 (version "0.0-4")
10378 (source
10379 (origin
10380 (method url-fetch)
10381 (uri (cran-uri "assertive.reflection" version))
10382 (sha256
10383 (base32
10384 "19zmsbn00crfqm0kwd9ys5gv87xs3gi6wmlikrz9xiwzm7hp4dhj"))))
10385 (properties
10386 `((upstream-name . "assertive.reflection")))
10387 (build-system r-build-system)
10388 (propagated-inputs
10389 `(("r-assertive-base" ,r-assertive-base)))
10390 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
10391 (synopsis "Assertions for checking the state of R")
10392 (description
10393 "This package provides a set of predicates and assertions for checking
10394 the state and capabilities of R, the operating system it is running on, and
10395 the IDE being used. This is mainly for use by other package developers who
10396 want to include run-time testing features in their own packages.")
10397 (license license:gpl3+)))
10398
10399 (define-public r-assertive-types
10400 (package
10401 (name "r-assertive-types")
10402 (version "0.0-3")
10403 (source
10404 (origin
10405 (method url-fetch)
10406 (uri (cran-uri "assertive.types" version))
10407 (sha256
10408 (base32
10409 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
10410 (properties
10411 `((upstream-name . "assertive.types")))
10412 (build-system r-build-system)
10413 (propagated-inputs
10414 `(("r-assertive-base" ,r-assertive-base)
10415 ("r-assertive-properties" ,r-assertive-properties)
10416 ("r-codetools" ,r-codetools)))
10417 (home-page "https://bitbucket.org/richierocks/assertive.types")
10418 (synopsis "Assertions to check types of variables")
10419 (description
10420 "This package provides a set of predicates and assertions for checking
10421 the types of variables. This is mainly for use by other package developers
10422 who want to include run-time testing features in their own packages.")
10423 (license license:gpl3+)))
10424
10425 (define-public r-assertive-files
10426 (package
10427 (name "r-assertive-files")
10428 (version "0.0-2")
10429 (source
10430 (origin
10431 (method url-fetch)
10432 (uri (cran-uri "assertive.files" version))
10433 (sha256
10434 (base32
10435 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
10436 (properties
10437 `((upstream-name . "assertive.files")))
10438 (build-system r-build-system)
10439 (propagated-inputs
10440 `(("r-assertive-base" ,r-assertive-base)
10441 ("r-assertive-numbers" ,r-assertive-numbers)))
10442 (home-page "https://bitbucket.org/richierocks/assertive.files")
10443 (synopsis "Assertions to check properties of files")
10444 (description
10445 "This package provides a set of predicates and assertions for checking
10446 the properties of files and connections. This is mainly for use by other
10447 package developers who want to include run-time testing features in their own
10448 packages.")
10449 (license license:gpl3+)))
10450
10451 (define-public r-assertive-code
10452 (package
10453 (name "r-assertive-code")
10454 (version "0.0-3")
10455 (source
10456 (origin
10457 (method url-fetch)
10458 (uri (cran-uri "assertive.code" version))
10459 (sha256
10460 (base32
10461 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
10462 (properties
10463 `((upstream-name . "assertive.code")))
10464 (build-system r-build-system)
10465 (propagated-inputs
10466 `(("r-assertive-base" ,r-assertive-base)
10467 ("r-assertive-properties" ,r-assertive-properties)
10468 ("r-assertive-types" ,r-assertive-types)))
10469 (home-page "https://bitbucket.org/richierocks/assertive.code")
10470 (synopsis "Assertions to check properties of code")
10471 (description
10472 "This package provides a set of predicates and assertions for checking
10473 the properties of code. This is mainly for use by other package developers
10474 who want to include run-time testing features in their own packages.")
10475 (license license:gpl3+)))
10476
10477 (define-public r-assertive-datetimes
10478 (package
10479 (name "r-assertive-datetimes")
10480 (version "0.0-2")
10481 (source
10482 (origin
10483 (method url-fetch)
10484 (uri (cran-uri "assertive.datetimes" version))
10485 (sha256
10486 (base32
10487 "00a98fx8p3pr3ckayh8wmxmm4rz01s67wah9697m92yci6pv3m78"))))
10488 (properties
10489 `((upstream-name . "assertive.datetimes")))
10490 (build-system r-build-system)
10491 (propagated-inputs
10492 `(("r-assertive-base" ,r-assertive-base)
10493 ("r-assertive-types" ,r-assertive-types)))
10494 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
10495 (synopsis "Assertions to check properties of dates and times")
10496 (description
10497 "This package provides a set of predicates and assertions for checking
10498 the properties of dates and times. This is mainly for use by other package
10499 developers who want to include run-time testing features in their own
10500 packages.")
10501 (license license:gpl3+)))
10502
10503 (define-public r-assertive-strings
10504 (package
10505 (name "r-assertive-strings")
10506 (version "0.0-3")
10507 (source
10508 (origin
10509 (method url-fetch)
10510 (uri (cran-uri "assertive.strings" version))
10511 (sha256
10512 (base32
10513 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
10514 (properties
10515 `((upstream-name . "assertive.strings")))
10516 (build-system r-build-system)
10517 (propagated-inputs
10518 `(("r-assertive-base" ,r-assertive-base)
10519 ("r-assertive-types" ,r-assertive-types)
10520 ("r-stringi" ,r-stringi)))
10521 (home-page "https://bitbucket.org/richierocks/assertive.strings")
10522 (synopsis "Assertions to check properties of strings")
10523 (description
10524 "This package provides a set of predicates and assertions for checking
10525 the properties of strings. This is mainly for use by other package developers
10526 who want to include run-time testing features in their own packages.")
10527 (license license:gpl3+)))
10528
10529 (define-public r-assertive-data-us
10530 (package
10531 (name "r-assertive-data-us")
10532 (version "0.0-2")
10533 (source
10534 (origin
10535 (method url-fetch)
10536 (uri (cran-uri "assertive.data.us" version))
10537 (sha256
10538 (base32
10539 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
10540 (properties
10541 `((upstream-name . "assertive.data.us")))
10542 (build-system r-build-system)
10543 (propagated-inputs
10544 `(("r-assertive-base" ,r-assertive-base)
10545 ("r-assertive-strings" ,r-assertive-strings)))
10546 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
10547 (synopsis "Assertions to check properties of strings")
10548 (description
10549 "This package provides a set of predicates and assertions for checking
10550 the properties of US-specific complex data types. This is mainly for use by
10551 other package developers who want to include run-time testing features in
10552 their own packages.")
10553 (license license:gpl3+)))
10554
10555 (define-public r-assertive-data-uk
10556 (package
10557 (name "r-assertive-data-uk")
10558 (version "0.0-2")
10559 (source
10560 (origin
10561 (method url-fetch)
10562 (uri (cran-uri "assertive.data.uk" version))
10563 (sha256
10564 (base32
10565 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
10566 (properties
10567 `((upstream-name . "assertive.data.uk")))
10568 (build-system r-build-system)
10569 (propagated-inputs
10570 `(("r-assertive-base" ,r-assertive-base)
10571 ("r-assertive-strings" ,r-assertive-strings)))
10572 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
10573 (synopsis "Assertions to check properties of strings")
10574 (description
10575 "This package provides a set of predicates and assertions for checking
10576 the properties of UK-specific complex data types. This is mainly for use by
10577 other package developers who want to include run-time testing features in
10578 their own packages.")
10579 (license license:gpl3+)))
10580
10581 (define-public r-assertive-data
10582 (package
10583 (name "r-assertive-data")
10584 (version "0.0-3")
10585 (source
10586 (origin
10587 (method url-fetch)
10588 (uri (cran-uri "assertive.data" version))
10589 (sha256
10590 (base32
10591 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
10592 (properties
10593 `((upstream-name . "assertive.data")))
10594 (build-system r-build-system)
10595 (propagated-inputs
10596 `(("r-assertive-base" ,r-assertive-base)
10597 ("r-assertive-strings" ,r-assertive-strings)))
10598 (home-page "https://bitbucket.org/richierocks/assertive.data")
10599 (synopsis "Assertions to check properties of data")
10600 (description
10601 "This package provides a set of predicates and assertions for checking
10602 the properties of (country independent) complex data types. This is mainly
10603 for use by other package developers who want to include run-time testing
10604 features in their own packages.")
10605 (license license:gpl3+)))
10606
10607 (define-public r-assertive
10608 (package
10609 (name "r-assertive")
10610 (version "0.3-5")
10611 (source
10612 (origin
10613 (method url-fetch)
10614 (uri (cran-uri "assertive" version))
10615 (sha256
10616 (base32
10617 "0blbbhlxcb5ffdxqxi62xs33ljiawh6s22a0pyvbbh79jf46rzr3"))))
10618 (build-system r-build-system)
10619 (propagated-inputs
10620 `(("r-assertive-base" ,r-assertive-base)
10621 ("r-assertive-code" ,r-assertive-code)
10622 ("r-assertive-data" ,r-assertive-data)
10623 ("r-assertive-data-uk" ,r-assertive-data-uk)
10624 ("r-assertive-data-us" ,r-assertive-data-us)
10625 ("r-assertive-datetimes" ,r-assertive-datetimes)
10626 ("r-assertive-files" ,r-assertive-files)
10627 ("r-assertive-matrices" ,r-assertive-matrices)
10628 ("r-assertive-models" ,r-assertive-models)
10629 ("r-assertive-numbers" ,r-assertive-numbers)
10630 ("r-assertive-properties" ,r-assertive-properties)
10631 ("r-assertive-reflection" ,r-assertive-reflection)
10632 ("r-assertive-sets" ,r-assertive-sets)
10633 ("r-assertive-strings" ,r-assertive-strings)
10634 ("r-assertive-types" ,r-assertive-types)
10635 ("r-knitr" ,r-knitr)))
10636 (home-page "https://bitbucket.org/richierocks/assertive")
10637 (synopsis "Readable check functions to ensure code integrity")
10638 (description
10639 "This package provides lots of predicates (@code{is_*} functions) to
10640 check the state of your variables, and assertions (@code{assert_*} functions)
10641 to throw errors if they aren't in the right form.")
10642 (license license:gpl3+)))
10643
10644 (define-public r-dotcall64
10645 (package
10646 (name "r-dotcall64")
10647 (version "1.0-0")
10648 (source
10649 (origin
10650 (method url-fetch)
10651 (uri (cran-uri "dotCall64" version))
10652 (sha256
10653 (base32
10654 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
10655 (properties `((upstream-name . "dotCall64")))
10656 (build-system r-build-system)
10657 (native-inputs `(("gfortran" ,gfortran)))
10658 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
10659 (synopsis "Enhanced foreign function interface supporting long vectors")
10660 (description
10661 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
10662 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
10663 supports long vectors, arguments of type 64-bit integer, and provides a
10664 mechanism to avoid unnecessary copies of read-only and write-only arguments.
10665 This makes it a convenient and fast interface to C/C++ and Fortran code.")
10666 (license license:gpl2+)))
10667
10668 (define-public r-spam
10669 (package
10670 (name "r-spam")
10671 (version "2.2-2")
10672 (source
10673 (origin
10674 (method url-fetch)
10675 (uri (cran-uri "spam" version))
10676 (sha256
10677 (base32
10678 "024dgfnjfxvsiymbzrhadinamj6qy509f4sbd1zxql8ymkyxn7vi"))))
10679 (build-system r-build-system)
10680 (propagated-inputs
10681 `(("r-dotcall64" ,r-dotcall64)))
10682 (native-inputs `(("gfortran" ,gfortran)))
10683 (home-page "https://www.math.uzh.ch/pages/spam/")
10684 (synopsis "Sparse matrix algebra")
10685 (description
10686 "This package provides a set of functions for sparse matrix algebra.
10687 Differences with other sparse matrix packages are:
10688
10689 @enumerate
10690 @item it only supports (essentially) one sparse matrix format;
10691 @item it is based on transparent and simple structure(s);
10692 @item it is tailored for MCMC calculations within G(M)RF;
10693 @item and it is fast and scalable (with the extension package @code{spam64}).
10694 @end enumerate\n")
10695 ;; Either of these licenses
10696 (license (list license:bsd-3 license:lgpl2.0))))
10697
10698 (define-public r-fields
10699 (package
10700 (name "r-fields")
10701 (version "9.8-3")
10702 (source
10703 (origin
10704 (method url-fetch)
10705 (uri (cran-uri "fields" version))
10706 (sha256
10707 (base32
10708 "1q9x68dczjym56v7x90x4x5br59vj3dww6w8v42zd3yl17h7c1h1"))))
10709 (build-system r-build-system)
10710 (propagated-inputs
10711 `(("r-maps" ,r-maps)
10712 ("r-spam" ,r-spam)))
10713 (native-inputs
10714 `(("gfortran" ,gfortran)))
10715 (home-page "http://www.image.ucar.edu/fields")
10716 (synopsis "Tools for spatial data")
10717 (description
10718 "This is a package for curve, surface and function fitting with an
10719 emphasis on splines, spatial data and spatial statistics. The major methods
10720 include cubic, and thin plate splines, Kriging, and compactly supported
10721 covariance functions for large data sets.")
10722 (license license:gpl2+)))
10723
10724 (define-public r-spatialextremes
10725 (package
10726 (name "r-spatialextremes")
10727 (version "2.0-7")
10728 (source
10729 (origin
10730 (method url-fetch)
10731 (uri (cran-uri "SpatialExtremes" version))
10732 (sha256
10733 (base32
10734 "1y0h1pcfqp9ynxsr3yrfbihlwm25ypyb88jmm5k2g7xvm8h9g050"))))
10735 (properties
10736 `((upstream-name . "SpatialExtremes")))
10737 (build-system r-build-system)
10738 (propagated-inputs
10739 `(("r-fields" ,r-fields)
10740 ("r-maps" ,r-maps)))
10741 (home-page "http://spatialextremes.r-forge.r-project.org/")
10742 (synopsis "Modelling spatial extremes")
10743 (description
10744 "This package provides tools for the statistical modelling of spatial
10745 extremes using max-stable processes, copula or Bayesian hierarchical models.
10746 More precisely, this package allows (conditional) simulations from various
10747 parametric max-stable models, analysis of the extremal spatial dependence, the
10748 fitting of such processes using composite likelihoods or least square (simple
10749 max-stable processes only), model checking and selection and prediction.")
10750 (license license:gpl2+)))
10751
10752 (define-public r-drc
10753 (package
10754 (name "r-drc")
10755 (version "3.0-1")
10756 (source
10757 (origin
10758 (method url-fetch)
10759 (uri (cran-uri "drc" version))
10760 (sha256
10761 (base32
10762 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
10763 (build-system r-build-system)
10764 (propagated-inputs
10765 `(("r-car" ,r-car)
10766 ("r-gtools" ,r-gtools)
10767 ("r-mass" ,r-mass)
10768 ("r-multcomp" ,r-multcomp)
10769 ("r-plotrix" ,r-plotrix)
10770 ("r-scales" ,r-scales)))
10771 (home-page "https://cran.r-project.org/web/packages/drc")
10772 (synopsis "Analysis of dose-response curves")
10773 (description
10774 "This package provides a suite of flexible and versatile model fitting
10775 and after-fitting functions for the analysis of dose-response data.")
10776 (license license:gpl2+)))
10777
10778 (define-public r-rmeta
10779 (package
10780 (name "r-rmeta")
10781 (version "3.0")
10782 (source
10783 (origin
10784 (method url-fetch)
10785 (uri (cran-uri "rmeta" version))
10786 (sha256
10787 (base32
10788 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
10789 (build-system r-build-system)
10790 (home-page "https://cran.r-project.org/web/packages/rmeta")
10791 (synopsis "Tools for meta-analysis")
10792 (description
10793 "This package provides functions for simple fixed and random effects
10794 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
10795 draws standard summary plots, funnel plots, and computes summaries and tests
10796 for association and heterogeneity.")
10797 (license license:gpl2)))
10798
10799 (define-public r-bootstrap
10800 (package
10801 (name "r-bootstrap")
10802 (version "2019.6")
10803 (source
10804 (origin
10805 (method url-fetch)
10806 (uri (cran-uri "bootstrap" version))
10807 (sha256
10808 (base32
10809 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
10810 (build-system r-build-system)
10811 (native-inputs `(("gfortran" ,gfortran)))
10812 (home-page "https://cran.r-project.org/web/packages/bootstrap")
10813 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
10814 (description
10815 "This package provides software and data for the book \"An Introduction
10816 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
10817 This package is primarily provided for projects already based on it, and for
10818 support of the book. New projects should preferentially use the recommended
10819 package \"boot\".")
10820 (license license:bsd-3)))
10821
10822 (define-public r-survivalroc
10823 (package
10824 (name "r-survivalroc")
10825 (version "1.0.3")
10826 (source
10827 (origin
10828 (method url-fetch)
10829 (uri (cran-uri "survivalROC" version))
10830 (sha256
10831 (base32
10832 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
10833 (properties `((upstream-name . "survivalROC")))
10834 (build-system r-build-system)
10835 (home-page "https://cran.r-project.org/web/packages/survivalROC")
10836 (synopsis "Time-dependent ROC curve estimation from censored survival data")
10837 (description
10838 "Compute time-dependent ROC curve from censored survival data using
10839 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
10840 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
10841 (license license:gpl2+)))
10842
10843 (define-public r-longitudinal
10844 (package
10845 (name "r-longitudinal")
10846 (version "1.1.12")
10847 (source
10848 (origin
10849 (method url-fetch)
10850 (uri (cran-uri "longitudinal" version))
10851 (sha256
10852 (base32
10853 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
10854 (build-system r-build-system)
10855 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
10856 (home-page "http://strimmerlab.org/software/longitudinal/")
10857 (synopsis "Analysis of multiple time course data")
10858 (description
10859 "This package contains general data structures and functions for
10860 longitudinal data with multiple variables, repeated measurements, and
10861 irregularly spaced time points. It also implements a shrinkage estimator of
10862 dynamical correlation and dynamical covariance.")
10863 (license license:gpl3+)))
10864
10865 (define-public r-genenet
10866 (package
10867 (name "r-genenet")
10868 (version "1.2.13")
10869 (source
10870 (origin
10871 (method url-fetch)
10872 (uri (cran-uri "GeneNet" version))
10873 (sha256
10874 (base32
10875 "0w52apk0nnr8nsskf26ff7ana8xiksr8wqmkjxzwhzgg7fncm61p"))))
10876 (properties `((upstream-name . "GeneNet")))
10877 (build-system r-build-system)
10878 (propagated-inputs
10879 `(("r-corpcor" ,r-corpcor)
10880 ("r-fdrtool" ,r-fdrtool)
10881 ("r-longitudinal" ,r-longitudinal)))
10882 (home-page "http://strimmerlab.org/software/genenet/")
10883 (synopsis "Modeling and inferring gene networks")
10884 (description
10885 "This package analyzes gene expression (time series) data with focus on
10886 the inference of gene networks. In particular, GeneNet implements the methods
10887 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
10888 for learning large-scale gene association networks (including assignment of
10889 putative directions).")
10890 (license license:gpl3+)))
10891
10892 (define-public r-rbamtools
10893 (package
10894 (name "r-rbamtools")
10895 (version "2.16.11.2")
10896 (source
10897 (origin
10898 (method url-fetch)
10899 (uri (cran-uri "rbamtools" version))
10900 (sha256
10901 (base32
10902 "0gzkb1xyrkriv45wq8gv7qfwjslnvwkfkk5jjc4wg5kmm0ydpdzj"))))
10903 (build-system r-build-system)
10904 (inputs `(("zlib" ,zlib)))
10905 (propagated-inputs
10906 `(("r-refgenome" ,r-refgenome)))
10907 (home-page "https://cran.r-project.org/web/packages/rbamtools")
10908 (synopsis "Read and write BAM (binary alignment) files")
10909 (description
10910 "This package provides an R interface to functions of the SAMtools
10911 library.")
10912 (license license:artistic2.0)))
10913
10914 (define-public r-protviz
10915 (package
10916 (name "r-protviz")
10917 (version "0.4.0")
10918 (source
10919 (origin
10920 (method url-fetch)
10921 (uri (cran-uri "protViz" version))
10922 (sha256
10923 (base32
10924 "150i2q4nakz28f39kmhrchz4qsr8ax6y02512md94k8hq4hamxg1"))))
10925 (properties `((upstream-name . "protViz")))
10926 (build-system r-build-system)
10927 (inputs
10928 `(("perl" ,perl)
10929 ("python-2" ,python-2)))
10930 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10931 (home-page "https://github.com/protViz/protViz/")
10932 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
10933 (description
10934 "This package helps with quality checks, visualizations and analysis of
10935 mass spectrometry data, coming from proteomics experiments. The package is
10936 developed, tested and used at the Functional Genomics Center Zurich, where it
10937 is used mainly for prototyping, teaching, and having fun with proteomics data.
10938 But it can also be used to do data analysis for small scale data sets.")
10939 (license license:gpl3)))
10940
10941 (define-public r-cmprsk
10942 (package
10943 (name "r-cmprsk")
10944 (version "2.2-8")
10945 (source
10946 (origin
10947 (method url-fetch)
10948 (uri (cran-uri "cmprsk" version))
10949 (sha256
10950 (base32
10951 "1nacbzx950ygaqgnj0949skhwpzar5i3xlscd44jsimk2gsppx6z"))))
10952 (build-system r-build-system)
10953 (propagated-inputs
10954 `(("r-survival" ,r-survival)))
10955 (native-inputs
10956 `(("gfortran" ,gfortran)))
10957 (home-page "https://cran.r-project.org/web/packages/cmprsk")
10958 (synopsis "Subdistribution analysis of competing risks")
10959 (description
10960 "This package provides tool for estimation, testing and regression
10961 modeling of subdistribution functions in competing risks, as described in
10962 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
10963 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
10964 A proportional hazards model for the subdistribution of a competing risk,
10965 JASA, 94:496-509.")
10966 (license license:gpl2+)))
10967
10968 (define-public r-etm
10969 (package
10970 (name "r-etm")
10971 (version "1.0.5")
10972 (source
10973 (origin
10974 (method url-fetch)
10975 (uri (cran-uri "etm" version))
10976 (sha256
10977 (base32
10978 "1yivbq8y0ijcl1m4nir4q9hp4pi6iphwxgjprygsdf7vp98wq677"))))
10979 (build-system r-build-system)
10980 (propagated-inputs
10981 `(("r-data-table" ,r-data-table)
10982 ("r-lattice" ,r-lattice)
10983 ("r-rcpp" ,r-rcpp)
10984 ("r-rcpparmadillo" ,r-rcpparmadillo)
10985 ("r-survival" ,r-survival)))
10986 (home-page "https://cran.r-project.org/web/packages/etm")
10987 (synopsis "Empirical transition matrix")
10988 (description
10989 "The @dfn{empirical transition matrix} (etm) package permits to estimate
10990 the matrix of transition probabilities for any time-inhomogeneous multistate
10991 model with finite state space using the Aalen-Johansen estimator.")
10992 (license license:expat)))
10993
10994 (define-public r-epi
10995 (package
10996 (name "r-epi")
10997 (version "2.37")
10998 (source
10999 (origin
11000 (method url-fetch)
11001 (uri (cran-uri "Epi" version))
11002 (sha256
11003 (base32
11004 "1lanr9x0c6w22406p56j7cwk6wck8njq6pscb4gzc613d68zj1lk"))))
11005 (properties `((upstream-name . "Epi")))
11006 (build-system r-build-system)
11007 (propagated-inputs
11008 `(("r-cmprsk" ,r-cmprsk)
11009 ("r-data-table" ,r-data-table)
11010 ("r-etm" ,r-etm)
11011 ("r-mass" ,r-mass)
11012 ("r-matrix" ,r-matrix)
11013 ("r-mgcv" ,r-mgcv)
11014 ("r-numderiv" ,r-numderiv)
11015 ("r-plyr" ,r-plyr)
11016 ("r-survival" ,r-survival)
11017 ("r-zoo" ,r-zoo)))
11018 (home-page "http://BendixCarstensen.com/Epi/")
11019 (synopsis "Statistical analysis in epidemiology")
11020 (description
11021 "This package provides functions for demographic and epidemiological
11022 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
11023 particular representation, manipulation and simulation of multistate data -
11024 the Lexis suite of functions, which includes interfaces to the @code{mstate},
11025 @code{etm} and @code{cmprsk} packages. It also contains functions for
11026 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
11027 data and some useful functions for tabulation and plotting, as well as a
11028 number of epidemiological data sets.")
11029 (license license:gpl2)))
11030
11031 (define-public r-ppls
11032 (package
11033 (name "r-ppls")
11034 (version "1.6-1.1")
11035 (source
11036 (origin
11037 (method url-fetch)
11038 (uri (cran-uri "ppls" version))
11039 (sha256
11040 (base32
11041 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
11042 (build-system r-build-system)
11043 (propagated-inputs `(("r-mass" ,r-mass)))
11044 (home-page "https://cran.r-project.org/web/packages/ppls")
11045 (synopsis "Penalized partial least squares")
11046 (description
11047 "This package contains linear and nonlinear regression methods based on
11048 partial least squares and penalization techniques. Model parameters are
11049 selected via cross-validation, and confidence intervals ans tests for the
11050 regression coefficients can be conducted via jackknifing.")
11051 (license license:gpl2+)))
11052
11053 (define-public r-huge
11054 (package
11055 (name "r-huge")
11056 (version "1.3.2")
11057 (source
11058 (origin
11059 (method url-fetch)
11060 (uri (cran-uri "huge" version))
11061 (sha256
11062 (base32
11063 "1j93gvi1jyq3ld9jhdqhrpm2is54rk3ilmf3yw7fx6gva0y6hjqd"))))
11064 (build-system r-build-system)
11065 (propagated-inputs
11066 `(("r-igraph" ,r-igraph)
11067 ("r-mass" ,r-mass)
11068 ("r-matrix" ,r-matrix)
11069 ("r-rcpp" ,r-rcpp)
11070 ("r-rcppeigen" ,r-rcppeigen)))
11071 (home-page "https://cran.r-project.org/web/packages/huge")
11072 (synopsis "High-dimensional undirected graph estimation")
11073 (description
11074 "This package provides a general framework for high-dimensional
11075 undirected graph estimation. It integrates data preprocessing, neighborhood
11076 screening, graph estimation, and model selection techniques into a pipeline.")
11077 (license license:gpl2)))
11078
11079 (define-public r-parcor
11080 (package
11081 (name "r-parcor")
11082 (version "0.2-6")
11083 (source
11084 (origin
11085 (method url-fetch)
11086 (uri (cran-uri "parcor" version))
11087 (sha256
11088 (base32
11089 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
11090 (build-system r-build-system)
11091 (propagated-inputs
11092 `(("r-epi" ,r-epi)
11093 ("r-genenet" ,r-genenet)
11094 ("r-glmnet" ,r-glmnet)
11095 ("r-mass" ,r-mass)
11096 ("r-ppls" ,r-ppls)))
11097 (home-page "https://cran.r-project.org/web/packages/parcor")
11098 (synopsis "Regularized estimation of partial correlation matrices")
11099 (description
11100 "This package estimates the matrix of partial correlations based on
11101 different regularized regression methods: lasso, adaptive lasso, PLS, and
11102 Ridge Regression. In addition, the package provides model selection for
11103 lasso, adaptive lasso and Ridge regression based on cross-validation.")
11104 (license license:gpl2+)))
11105
11106 (define-public r-mcmc
11107 (package
11108 (name "r-mcmc")
11109 (version "0.9-6")
11110 (source
11111 (origin
11112 (method url-fetch)
11113 (uri (cran-uri "mcmc" version))
11114 (sha256
11115 (base32
11116 "1fc6a6asn53lx7x7pnlb5mb716nv4pcmbp99f1i30y4hzygihfj4"))))
11117 (build-system r-build-system)
11118 (home-page "http://www.stat.umn.edu/geyer/mcmc/")
11119 (synopsis "Markov chain Monte Carlo")
11120 (description
11121 "This package simulates continuous distributions of random vectors using
11122 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
11123 function that evaluates the log unnormalized density. Algorithms are random
11124 walk Metropolis algorithm (function @code{metrop}), simulated
11125 tempering (function @code{temper}), and morphometric random walk
11126 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
11127 by change of variable.")
11128 (license license:expat)))
11129
11130 (define-public r-listenv
11131 (package
11132 (name "r-listenv")
11133 (version "0.7.0")
11134 (source
11135 (origin
11136 (method url-fetch)
11137 (uri (cran-uri "listenv" version))
11138 (sha256
11139 (base32
11140 "0ma5jsri2zqkrlsm9nqpikl7imbwfy1glsmk13mblw0q245h49k1"))))
11141 (build-system r-build-system)
11142 (native-inputs
11143 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11144 (home-page "https://github.com/HenrikBengtsson/listenv")
11145 (synopsis "Environments behaving (almost) as lists")
11146 (description
11147 "This package implements list environments. List environments are
11148 environments that have list-like properties. For instance, the elements of a
11149 list environment are ordered and can be accessed and iterated over using index
11150 subsetting.")
11151 (license license:lgpl2.1+)))
11152
11153 (define-public r-globals
11154 (package
11155 (name "r-globals")
11156 (version "0.12.4")
11157 (source
11158 (origin
11159 (method url-fetch)
11160 (uri (cran-uri "globals" version))
11161 (sha256
11162 (base32
11163 "0szyv1ayyk31bh3xqlkj43020w44xq6s4rw2bxwizyjssxm3b1br"))))
11164 (build-system r-build-system)
11165 (propagated-inputs
11166 `(("r-codetools" ,r-codetools)))
11167 (home-page "https://github.com/HenrikBengtsson/globals")
11168 (synopsis "Identify global objects in R expressions")
11169 (description
11170 "This package provides tools to identify global (\"unknown\" or \"free\")
11171 objects in R expressions by code inspection using various strategies, e.g.
11172 conservative or liberal. The objective of this package is to make it as
11173 simple as possible to identify global objects for the purpose of exporting
11174 them in distributed compute environments.")
11175 (license license:lgpl2.1+)))
11176
11177 (define-public r-future
11178 (package
11179 (name "r-future")
11180 (version "1.13.0")
11181 (source
11182 (origin
11183 (method url-fetch)
11184 (uri (cran-uri "future" version))
11185 (sha256
11186 (base32
11187 "0h8ng2a6vg4axd5f75xcb3ip9d95zi22fa048dq2bzlnncwlznjz"))))
11188 (build-system r-build-system)
11189 (propagated-inputs
11190 `(("r-digest" ,r-digest)
11191 ("r-globals" ,r-globals)
11192 ("r-listenv" ,r-listenv)))
11193 (native-inputs
11194 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11195 (home-page "https://github.com/HenrikBengtsson/future")
11196 (synopsis "Unified parallel and distributed processing in R")
11197 (description
11198 "The purpose of this package is to provide a lightweight and unified
11199 Future API for sequential and parallel processing of R expression via futures.
11200 This package implements sequential, multicore, multisession, and cluster
11201 futures. With these, R expressions can be evaluated on the local machine, in
11202 parallel a set of local machines, or distributed on a mix of local and remote
11203 machines. Extensions to this package implement additional backends for
11204 processing futures via compute cluster schedulers etc. Because of its unified
11205 API, there is no need to modify any code in order to switch from sequential on
11206 the local machine to, say, distributed processing on a remote compute cluster.")
11207 (license license:lgpl2.1+)))
11208
11209 (define-public r-future-apply
11210 (package
11211 (name "r-future-apply")
11212 (version "1.3.0")
11213 (source
11214 (origin
11215 (method url-fetch)
11216 (uri (cran-uri "future.apply" version))
11217 (sha256
11218 (base32
11219 "0wd3bh114zkvrqlpn8gqz4ix1igr9hr8x72h2g00a7mqkfjfqx33"))))
11220 (properties `((upstream-name . "future.apply")))
11221 (build-system r-build-system)
11222 (propagated-inputs
11223 `(("r-future" ,r-future)
11224 ("r-globals" ,r-globals)))
11225 (native-inputs
11226 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
11227 (home-page "https://github.com/HenrikBengtsson/future.apply")
11228 (synopsis "Apply function to elements in parallel using futures")
11229 (description
11230 "This package provides implementations of @code{apply()},
11231 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
11232 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
11233 can be resolved using any future-supported backend, e.g. parallel on the local
11234 machine or distributed on a compute cluster.")
11235 (license license:gpl2+)))
11236
11237 (define-public r-rsvd
11238 (package
11239 (name "r-rsvd")
11240 (version "1.0.1")
11241 (source
11242 (origin
11243 (method url-fetch)
11244 (uri (cran-uri "rsvd" version))
11245 (sha256
11246 (base32
11247 "1faskhf5j2bj9f971qljsmh182g3rnyilj1wwijz530a6skxidzz"))))
11248 (build-system r-build-system)
11249 (propagated-inputs
11250 `(("r-matrix" ,r-matrix)))
11251 (home-page "https://github.com/erichson/rSVD")
11252 (synopsis "Randomized singular value decomposition")
11253 (description
11254 "Low-rank matrix decompositions are fundamental tools and widely used for
11255 data analysis, dimension reduction, and data compression. Classically, highly
11256 accurate deterministic matrix algorithms are used for this task. However, the
11257 emergence of large-scale data has severely challenged our computational
11258 ability to analyze big data. The concept of randomness has been demonstrated
11259 as an effective strategy to quickly produce approximate answers to familiar
11260 problems such as the @dfn{singular value decomposition} (SVD). This package
11261 provides several randomized matrix algorithms such as the randomized singular
11262 value decomposition (@code{rsvd}), randomized principal component
11263 analysis (@code{rpca}), randomized robust principal component
11264 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
11265 and the randomized CUR decomposition (@code{rcur}). In addition several plot
11266 functions are provided.")
11267 (license license:gpl3+)))
11268
11269 (define-public r-sloop
11270 (package
11271 (name "r-sloop")
11272 (version "1.0.1")
11273 (source
11274 (origin
11275 (method url-fetch)
11276 (uri (cran-uri "sloop" version))
11277 (sha256
11278 (base32
11279 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
11280 (build-system r-build-system)
11281 (propagated-inputs
11282 `(("r-codetools" ,r-codetools)
11283 ("r-crayon" ,r-crayon)
11284 ("r-purrr" ,r-purrr)
11285 ("r-rlang" ,r-rlang)
11286 ("r-tibble" ,r-tibble)))
11287 (home-page "https://github.com/r-lib/sloop")
11288 (synopsis "Helpers for object-oriented programming in R")
11289 (description
11290 "This package provides a collection of helper functions designed to
11291 help you to better understand object oriented programming in R, particularly
11292 using @code{S3}.")
11293 (license license:gpl3)))
11294
11295 (define-public r-capushe
11296 (package
11297 (name "r-capushe")
11298 (version "1.1.1")
11299 (source
11300 (origin
11301 (method url-fetch)
11302 (uri (cran-uri "capushe" version))
11303 (sha256
11304 (base32
11305 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
11306 (build-system r-build-system)
11307 (propagated-inputs `(("r-mass" ,r-mass)))
11308 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
11309 (synopsis "Calibrating penalties using slope heuristics")
11310 (description
11311 "This package provides tools for the calibration of penalized criteria
11312 for model selection. The calibration methods available are based on the slope
11313 heuristics.")
11314 (license license:gpl2+)))
11315
11316 (define-public r-dorng
11317 (package
11318 (name "r-dorng")
11319 (version "1.7.1")
11320 (source
11321 (origin
11322 (method url-fetch)
11323 (uri (cran-uri "doRNG" version))
11324 (sha256
11325 (base32
11326 "1sb75aqkliprglfxc4x4wds6alqgzhvl2n812g1d32a88ra3slr7"))))
11327 (properties `((upstream-name . "doRNG")))
11328 (build-system r-build-system)
11329 (propagated-inputs
11330 `(("r-foreach" ,r-foreach)
11331 ("r-iterators" ,r-iterators)
11332 ("r-pkgmaker" ,r-pkgmaker)
11333 ("r-rngtools" ,r-rngtools)))
11334 (home-page "https://renozao.github.io/doRNG/")
11335 (synopsis "Generic reproducible parallel backend for foreach loops")
11336 (description
11337 "This package provides functions to perform reproducible parallel
11338 @code{foreach} loops, using independent random streams as generated by
11339 L'Ecuyer's combined multiple-recursive generator. It enables to easily
11340 convert standard @code{%dopar%} loops into fully reproducible loops,
11341 independently of the number of workers, the task scheduling strategy, or the
11342 chosen parallel environment and associated foreach backend.")
11343 (license license:gpl2+)))
11344
11345 (define-public r-blockmodeling
11346 (package
11347 (name "r-blockmodeling")
11348 (version "0.3.4")
11349 (source
11350 (origin
11351 (method url-fetch)
11352 (uri (cran-uri "blockmodeling" version))
11353 (sha256
11354 (base32
11355 "11v9903y9dwlzaqp8sx0fsibcg82phvappddy37r8lnxd4vchsd2"))))
11356 (build-system r-build-system)
11357 (propagated-inputs
11358 `(("r-doparallel" ,r-doparallel)
11359 ("r-dorng" ,r-dorng)
11360 ("r-foreach" ,r-foreach)
11361 ("r-matrix" ,r-matrix)))
11362 (native-inputs `(("gfortran" ,gfortran)))
11363 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
11364 (synopsis "Generalized and classical blockmodeling of valued networks")
11365 (description
11366 "This package is primarily meant as an implementation of generalized
11367 blockmodeling for valued networks. In addition, measures of similarity or
11368 dissimilarity based on structural equivalence and regular equivalence (REGE
11369 algorithms) can be computed and partitioned matrices can be plotted.")
11370 (license license:gpl2+)))
11371
11372 (define-public r-upsetr
11373 (package
11374 (name "r-upsetr")
11375 (version "1.4.0")
11376 (source
11377 (origin
11378 (method url-fetch)
11379 (uri (cran-uri "UpSetR" version))
11380 (sha256
11381 (base32
11382 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
11383 (properties `((upstream-name . "UpSetR")))
11384 (build-system r-build-system)
11385 (propagated-inputs
11386 `(("r-ggplot2" ,r-ggplot2)
11387 ("r-gridextra" ,r-gridextra)
11388 ("r-plyr" ,r-plyr)
11389 ("r-scales" ,r-scales)))
11390 (home-page "https://github.com/hms-dbmi/UpSetR")
11391 (synopsis "Visualize intersecting sets")
11392 (description
11393 "This package provides a more scalable alternative to Venn and Euler
11394 diagrams for visualizing intersecting sets. Create visualizations of
11395 intersecting sets using a novel matrix design, along with visualizations of
11396 several common set, element and attribute related tasks.")
11397 (license license:expat)))
11398
11399 ;; This package includes a JavaScript file, which is not minified. When
11400 ;; upgrading please check that there are no new minified JavaScript files.
11401 (define-public r-shinybs
11402 (package
11403 (name "r-shinybs")
11404 (version "0.61")
11405 (source
11406 (origin
11407 (method url-fetch)
11408 (uri (cran-uri "shinyBS" version))
11409 (sha256
11410 (base32
11411 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
11412 (properties `((upstream-name . "shinyBS")))
11413 (build-system r-build-system)
11414 ;; The tests spawn Shiny browser apps. They cannot be run
11415 ;; non-interactively.
11416 (arguments '(#:tests? #f))
11417 (propagated-inputs
11418 `(("r-htmltools" ,r-htmltools)
11419 ("r-shiny" ,r-shiny)))
11420 (home-page "https://ebailey78.github.io/shinyBS/")
11421 (synopsis "Twitter Bootstrap components for Shiny")
11422 (description
11423 "This package adds additional Twitter Bootstrap components to Shiny.")
11424 (license license:gpl3)))
11425
11426 (define-public r-outliers
11427 (package
11428 (name "r-outliers")
11429 (version "0.14")
11430 (source
11431 (origin
11432 (method url-fetch)
11433 (uri (cran-uri "outliers" version))
11434 (sha256
11435 (base32
11436 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
11437 (build-system r-build-system)
11438 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
11439 (synopsis "Tests for outliers")
11440 (description
11441 "This package provides a collection of some tests commonly used for
11442 identifying outliers.")
11443 (license license:gpl2+)))
11444
11445 (define-public r-bayesm
11446 (package
11447 (name "r-bayesm")
11448 (version "3.1-1")
11449 (source
11450 (origin
11451 (method url-fetch)
11452 (uri (cran-uri "bayesm" version))
11453 (sha256
11454 (base32
11455 "0y30cza92s6kgvmxjpr6f5g0qbcck7hslqp89ncprarhxiym2m28"))))
11456 (build-system r-build-system)
11457 (propagated-inputs
11458 `(("r-rcpp" ,r-rcpp)
11459 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11460 (home-page "http://www.perossi.org/home/bsm-1")
11461 (synopsis "Bayesian inference for marketing/micro-econometrics")
11462 (description
11463 "This package covers many important models used in marketing and
11464 micro-econometrics applications, including Bayes Regression (univariate or
11465 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
11466 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
11467 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
11468 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
11469 Estimation with normal base, Hierarchical Linear Models with normal prior and
11470 covariates, Hierarchical Linear Models with a mixture of normals prior and
11471 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
11472 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
11473 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
11474 analysis of choice-based conjoint data, Bayesian treatment of linear
11475 instrumental variables models, Analysis of Multivariate Ordinal survey data
11476 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
11477 Coefficient Logit Models.")
11478 (license license:gpl2+)))
11479
11480 (define-public r-tensora
11481 (package
11482 (name "r-tensora")
11483 (version "0.36.1")
11484 (source
11485 (origin
11486 (method url-fetch)
11487 (uri (cran-uri "tensorA" version))
11488 (sha256
11489 (base32
11490 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
11491 (properties `((upstream-name . "tensorA")))
11492 (build-system r-build-system)
11493 (home-page "http://www.stat.boogaart.de/tensorA")
11494 (synopsis "Advanced tensor arithmetic with named indices")
11495 (description
11496 "This package provides convenience functions for advanced linear algebra
11497 with tensors and computation with datasets of tensors on a higher level
11498 abstraction. It includes Einstein and Riemann summing conventions, dragging,
11499 co- and contravariate indices, and parallel computations on sequences of
11500 tensors.")
11501 (license license:gpl2+)))
11502
11503 (define-public r-rarpack
11504 (package
11505 (name "r-rarpack")
11506 (version "0.11-0")
11507 (source
11508 (origin
11509 (method url-fetch)
11510 (uri (cran-uri "rARPACK" version))
11511 (sha256
11512 (base32
11513 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
11514 (properties `((upstream-name . "rARPACK")))
11515 (build-system r-build-system)
11516 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
11517 (home-page "https://github.com/yixuan/rARPACK")
11518 (synopsis "Solvers for large scale eigenvalue and SVD problems")
11519 (description
11520 "This package was previously an R wrapper of the ARPACK library, and now
11521 a shell of the R package RSpectra, an R interface to the Spectra library for
11522 solving large scale eigenvalue/vector problems. The current version of
11523 rARPACK simply imports and exports the functions provided by RSpectra. New
11524 users of rARPACK are advised to switch to the RSpectra package.")
11525 (license license:bsd-3)))
11526
11527 (define-public r-compositions
11528 (package
11529 (name "r-compositions")
11530 (version "1.40-2")
11531 (source
11532 (origin
11533 (method url-fetch)
11534 (uri (cran-uri "compositions" version))
11535 (sha256
11536 (base32
11537 "12mp05yi7jkdqg9iwh6bc9sx6sdxagcnrirznxy9hq8502p7238i"))))
11538 (build-system r-build-system)
11539 (propagated-inputs
11540 `(("r-bayesm" ,r-bayesm)
11541 ("r-energy" ,r-energy)
11542 ("r-robustbase" ,r-robustbase)
11543 ("r-tensora" ,r-tensora)))
11544 (home-page "http://www.stat.boogaart.de/compositions")
11545 (synopsis "Compositional data analysis")
11546 (description
11547 "This package provides functions for the consistent analysis of
11548 compositional data (e.g. portions of substances) and positive
11549 numbers (e.g. concentrations).")
11550 (license license:gpl2+)))
11551
11552 (define-public r-cobs
11553 (package
11554 (name "r-cobs")
11555 (version "1.3-3")
11556 (source
11557 (origin
11558 (method url-fetch)
11559 (uri (cran-uri "cobs" version))
11560 (sha256
11561 (base32
11562 "1pqvz7czcchri4x79g78hbwyagb3bqzdqb047zkbdinyz067c7kb"))))
11563 (build-system r-build-system)
11564 (propagated-inputs
11565 `(("r-quantreg" ,r-quantreg)
11566 ("r-sparsem" ,r-sparsem)))
11567 (home-page "https://cran.r-project.org/web/packages/cobs")
11568 (synopsis "Constrained B-Splines (sparse matrix based)")
11569 (description
11570 "This package provides qualitatively constrained (regression) smoothing
11571 splines via linear programming and sparse matrices.")
11572 (license license:gpl2+)))
11573
11574 (define-public r-drimpute
11575 (package
11576 (name "r-drimpute")
11577 (version "1.0")
11578 (source
11579 (origin
11580 (method url-fetch)
11581 (uri (cran-uri "DrImpute" version))
11582 (sha256
11583 (base32
11584 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
11585 (properties `((upstream-name . "DrImpute")))
11586 (build-system r-build-system)
11587 (propagated-inputs
11588 `(("r-rcpp" ,r-rcpp)
11589 ("r-rcpparmadillo" ,r-rcpparmadillo)))
11590 (home-page "https://github.com/ikwak2/DrImpute")
11591 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
11592 (description
11593 "This is an R package for imputing dropout events. Many statistical
11594 methods in cell type identification, visualization and lineage reconstruction
11595 do not account for dropout events. DrImpute can improve the performance of
11596 such software by imputing dropout events.")
11597 (license license:gpl3)))
11598
11599 (define-public r-gamlss-dist
11600 (package
11601 (name "r-gamlss-dist")
11602 (version "5.1-4")
11603 (source
11604 (origin
11605 (method url-fetch)
11606 (uri (cran-uri "gamlss.dist" version))
11607 (sha256
11608 (base32
11609 "0zi87lgigr83l35zqq1y1g4cdq6ssjamripzz7yis74aznh6qg1l"))))
11610 (properties `((upstream-name . "gamlss.dist")))
11611 (build-system r-build-system)
11612 (propagated-inputs `(("r-mass" ,r-mass)))
11613 (home-page "http://www.gamlss.org/")
11614 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
11615 (description
11616 "This package provides a set of distributions which can be used for
11617 modelling the response variables in Generalized Additive Models for Location
11618 Scale and Shape. The distributions can be continuous, discrete or mixed
11619 distributions. Extra distributions can be created, by transforming, any
11620 continuous distribution defined on the real line, to a distribution defined on
11621 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
11622 transformation, respectively.")
11623 ;; Either version of the GPL.
11624 (license (list license:gpl2 license:gpl3))))
11625
11626 ;; This package includes JavaScript files, which are not minified. When
11627 ;; upgrading please check that there are no new minified JavaScript files.
11628 (define-public r-shinyjs
11629 (package
11630 (name "r-shinyjs")
11631 (version "1.0")
11632 (source
11633 (origin
11634 (method url-fetch)
11635 (uri (cran-uri "shinyjs" version))
11636 (sha256
11637 (base32
11638 "113zpijri0l80rlgrvqn6bxk0sdqgl79h7yhja2p76f9dc9i2sr8"))))
11639 (build-system r-build-system)
11640 (propagated-inputs
11641 `(("r-digest" ,r-digest)
11642 ("r-htmltools" ,r-htmltools)
11643 ("r-jsonlite" ,r-jsonlite)
11644 ("r-shiny" ,r-shiny)))
11645 (home-page "https://deanattali.com/shinyjs")
11646 (synopsis "Improve the user experience of your Shiny apps")
11647 (description
11648 "Perform common useful JavaScript operations in Shiny apps that will
11649 greatly improve your apps without having to know any JavaScript. Examples
11650 include: hiding an element, disabling an input, resetting an input back to its
11651 original value, delaying code execution by a few seconds, and many more useful
11652 functions for both the end user and the developer. Shinyjs can also be used
11653 to easily call your own custom JavaScript functions from R.")
11654 (license license:agpl3+)))
11655
11656 ;; This package includes minified JavaScript files. When upgrading please
11657 ;; check that there are no new minified JavaScript files.
11658 (define-public r-colourpicker
11659 (package
11660 (name "r-colourpicker")
11661 (version "1.0")
11662 (source
11663 (origin
11664 (method url-fetch)
11665 (uri (cran-uri "colourpicker" version))
11666 (sha256
11667 (base32
11668 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
11669 (build-system r-build-system)
11670 (arguments
11671 `(#:modules ((guix build utils)
11672 (guix build r-build-system)
11673 (srfi srfi-1)
11674 (ice-9 popen))
11675 #:phases
11676 (modify-phases %standard-phases
11677 (add-after 'unpack 'process-javascript
11678 (lambda* (#:key inputs #:allow-other-keys)
11679 (with-directory-excursion "inst"
11680 (call-with-values
11681 (lambda ()
11682 (unzip2
11683 `((,(assoc-ref inputs "js-salvattore")
11684 "examples/colourInput/www/salvattore.min.js")
11685 (,(assoc-ref inputs "js-jquery")
11686 "htmlwidgets/lib/jquery/jquery.min.js")
11687 ("www/shared/colourpicker/js/colourpicker.js"
11688 "www/shared/colourpicker/js/colourpicker.min.js"))))
11689 (lambda (sources targets)
11690 (for-each (lambda (source target)
11691 (format #t "Processing ~a --> ~a~%"
11692 source target)
11693 (delete-file target)
11694 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
11695 (call-with-output-file target
11696 (lambda (port)
11697 (dump-port minified port)))))
11698 sources targets))))
11699 #t)))))
11700 (propagated-inputs
11701 `(("r-ggplot2" ,r-ggplot2)
11702 ("r-htmltools" ,r-htmltools)
11703 ("r-htmlwidgets" ,r-htmlwidgets)
11704 ("r-jsonlite" ,r-jsonlite)
11705 ("r-miniui" ,r-miniui)
11706 ("r-shiny" ,r-shiny)
11707 ("r-shinyjs" ,r-shinyjs)))
11708 (native-inputs
11709 `(("uglify-js" ,uglify-js)
11710 ("js-jquery"
11711 ,(origin
11712 (method url-fetch)
11713 (uri "https://code.jquery.com/jquery-3.3.1.js")
11714 (sha256
11715 (base32
11716 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
11717 ("js-salvattore"
11718 ,(origin
11719 (method url-fetch)
11720 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
11721 (sha256
11722 (base32
11723 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
11724 (home-page "https://github.com/daattali/colourpicker")
11725 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
11726 (description
11727 "This package provides a color picker that can be used as an input in
11728 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
11729 custom color palettes, and many more options. A plot color helper tool is
11730 available as an RStudio Addin, which helps you pick colors to use in your
11731 plots. A more generic color picker RStudio Addin is also provided to let you
11732 select colors to use in your R code.")
11733 (license license:expat)))
11734
11735 (define-public r-ggextra
11736 (package
11737 (name "r-ggextra")
11738 (version "0.8")
11739 (source
11740 (origin
11741 (method url-fetch)
11742 (uri (cran-uri "ggExtra" version))
11743 (sha256
11744 (base32
11745 "1m5zpn3l3p1y3d2692gyz50m63d58m2a3b7zb595kvcffdx2qr5b"))))
11746 (properties `((upstream-name . "ggExtra")))
11747 (build-system r-build-system)
11748 (propagated-inputs
11749 `(("r-colourpicker" ,r-colourpicker)
11750 ("r-ggplot2" ,r-ggplot2)
11751 ("r-gtable" ,r-gtable)
11752 ("r-miniui" ,r-miniui)
11753 ("r-scales" ,r-scales)
11754 ("r-shiny" ,r-shiny)
11755 ("r-shinyjs" ,r-shinyjs)))
11756 (home-page "https://github.com/daattali/ggExtra")
11757 (synopsis "Marginal histograms for ggplot2 and other enhancements")
11758 (description
11759 "This package is a collection of functions and layers to enhance ggplot2.
11760 The flagship function is @code{ggMarginal()}, which can be used to add
11761 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
11762 (license license:expat)))
11763
11764 (define-public r-minpack-lm
11765 (package
11766 (name "r-minpack-lm")
11767 (version "1.2-1")
11768 (source
11769 (origin
11770 (method url-fetch)
11771 (uri (cran-uri "minpack.lm" version))
11772 (sha256
11773 (base32
11774 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
11775 (properties `((upstream-name . "minpack.lm")))
11776 (build-system r-build-system)
11777 (native-inputs `(("gfortran" ,gfortran)))
11778 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
11779 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
11780 (description
11781 "The @code{nls.lm} function provides an R interface to @code{lmder} and
11782 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
11783 problems by a modification of the Levenberg-Marquardt algorithm, with support
11784 for lower and upper parameter bounds. The implementation can be used via
11785 @code{nls}-like calls using the @code{nlsLM} function.")
11786 (license license:gpl3)))
11787
11788 (define-public r-moments
11789 (package
11790 (name "r-moments")
11791 (version "0.14")
11792 (source
11793 (origin
11794 (method url-fetch)
11795 (uri (cran-uri "moments" version))
11796 (sha256
11797 (base32
11798 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
11799 (build-system r-build-system)
11800 (home-page "https://cran.r-project.org/web/packages/moments")
11801 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
11802 (description
11803 "This package provides functions to calculate: moments, Pearson's
11804 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
11805 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
11806 (license license:gpl2+)))
11807
11808 (define-public r-msir
11809 (package
11810 (name "r-msir")
11811 (version "1.3.2")
11812 (source
11813 (origin
11814 (method url-fetch)
11815 (uri (cran-uri "msir" version))
11816 (sha256
11817 (base32
11818 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
11819 (build-system r-build-system)
11820 (propagated-inputs
11821 `(("r-mclust" ,r-mclust)))
11822 (home-page "https://cran.r-project.org/web/packages/msir")
11823 (synopsis "Model-based sliced inverse regression")
11824 (description
11825 "This is an R package for dimension reduction based on finite Gaussian
11826 mixture modeling of inverse regression.")
11827 (license license:gpl2+)))
11828
11829 (define-public r-pbivnorm
11830 (package
11831 (name "r-pbivnorm")
11832 (version "0.6.0")
11833 (source
11834 (origin
11835 (method url-fetch)
11836 (uri (cran-uri "pbivnorm" version))
11837 (sha256
11838 (base32
11839 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
11840 (build-system r-build-system)
11841 (native-inputs `(("gfortran" ,gfortran)))
11842 (home-page "https://github.com/brentonk/pbivnorm")
11843 (synopsis "Vectorized bivariate normal CDF")
11844 (description
11845 "This package provides a vectorized R function for calculating
11846 probabilities from a standard bivariate normal CDF.")
11847 (license license:gpl2+)))
11848
11849 (define-public r-lavaan
11850 (package
11851 (name "r-lavaan")
11852 (version "0.6-3")
11853 (source
11854 (origin
11855 (method url-fetch)
11856 (uri (cran-uri "lavaan" version))
11857 (sha256
11858 (base32
11859 "0hw856kv11zqn6nd4216rh19i6xbnc1rh044r7jvvxkhzgbqkyxz"))))
11860 (build-system r-build-system)
11861 (propagated-inputs
11862 `(("r-mass" ,r-mass)
11863 ("r-mnormt" ,r-mnormt)
11864 ("r-numderiv" ,r-numderiv)
11865 ("r-pbivnorm" ,r-pbivnorm)))
11866 (home-page "http://lavaan.ugent.be")
11867 (synopsis "Latent variable analysis")
11868 (description
11869 "This package provides tools to fit a variety of latent variable models,
11870 including confirmatory factor analysis, structural equation modeling and
11871 latent growth curve models.")
11872 (license license:gpl2+)))
11873
11874 (define-public r-nonnest2
11875 (package
11876 (name "r-nonnest2")
11877 (version "0.5-2")
11878 (source
11879 (origin
11880 (method url-fetch)
11881 (uri (cran-uri "nonnest2" version))
11882 (sha256
11883 (base32
11884 "1bq44qqmm59j91m0sny4xnqmxqlga4cm48qdsw8xfs3x19xwmxk6"))))
11885 (build-system r-build-system)
11886 (propagated-inputs
11887 `(("r-compquadform" ,r-compquadform)
11888 ("r-lavaan" ,r-lavaan)
11889 ("r-mvtnorm" ,r-mvtnorm)
11890 ("r-sandwich" ,r-sandwich)))
11891 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
11892 (synopsis "Tests of non-nested models")
11893 (description
11894 "This package allows for testing of non-nested models. It includes tests
11895 of model distinguishability and of model fit that can be applied to both
11896 nested and non-nested models. The package also includes functionality to
11897 obtain confidence intervals associated with AIC and BIC.")
11898 ;; Either version of the GPL.
11899 (license (list license:gpl2 license:gpl3))))
11900
11901 (define-public r-penalized
11902 (package
11903 (name "r-penalized")
11904 (version "0.9-51")
11905 (source
11906 (origin
11907 (method url-fetch)
11908 (uri (cran-uri "penalized" version))
11909 (sha256
11910 (base32
11911 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
11912 (build-system r-build-system)
11913 (propagated-inputs
11914 `(("r-rcpp" ,r-rcpp)
11915 ("r-rcpparmadillo" ,r-rcpparmadillo)
11916 ("r-survival" ,r-survival)))
11917 (home-page "https://cran.r-project.org/web/packages/penalized/")
11918 (synopsis "Penalized estimation in GLMs and in the Cox model")
11919 (description
11920 "This package provides tools for fitting possibly high dimensional
11921 penalized regression models. The penalty structure can be any combination of
11922 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
11923 constraint on the regression coefficients. The supported regression models
11924 are linear, logistic and Poisson regression and the Cox Proportional Hazards
11925 model. Cross-validation routines allow optimization of the tuning
11926 parameters.")
11927 (license license:gpl2+)))
11928
11929 (define-public r-zim
11930 (package
11931 (name "r-zim")
11932 (version "1.1.0")
11933 (source
11934 (origin
11935 (method url-fetch)
11936 (uri (cran-uri "ZIM" version))
11937 (sha256
11938 (base32
11939 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
11940 (properties `((upstream-name . "ZIM")))
11941 (build-system r-build-system)
11942 (propagated-inputs `(("r-mass" ,r-mass)))
11943 (home-page "https://github.com/biostatstudio/ZIM")
11944 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
11945 (description
11946 "Analyze count time series with excess zeros. Two types of statistical
11947 models are supported: Markov regression and state-space models. They are also
11948 known as observation-driven and parameter-driven models respectively in the
11949 time series literature. The functions used for Markov regression or
11950 observation-driven models can also be used to fit ordinary regression models
11951 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
11952 negative binomial (ZINB) assumption. The package also contains miscellaneous
11953 functions to compute density, distribution, quantile, and generate random
11954 numbers from ZIP and ZINB distributions.")
11955 (license license:gpl3)))
11956
11957 (define-public r-nor1mix
11958 (package
11959 (name "r-nor1mix")
11960 (version "1.3-0")
11961 (source
11962 (origin
11963 (method url-fetch)
11964 (uri (cran-uri "nor1mix" version))
11965 (sha256
11966 (base32
11967 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
11968 (build-system r-build-system)
11969 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
11970 (synopsis "Normal (1-d) mixture models")
11971 (description
11972 "This package provides S3 classes and methods for one-dimensional normal
11973 mixture models, for, e.g., density estimation or clustering algorithms
11974 research and teaching; it provides the widely used Marron-Wand densities. It
11975 also provides tools for efficient random number generation and graphics.")
11976 (license license:gpl2+)))
11977
11978 (define-public r-beanplot
11979 (package
11980 (name "r-beanplot")
11981 (version "1.2")
11982 (source
11983 (origin
11984 (method url-fetch)
11985 (uri (cran-uri "beanplot" version))
11986 (sha256
11987 (base32
11988 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
11989 (build-system r-build-system)
11990 (home-page "https://cran.r-project.org/web/packages/beanplot/")
11991 (synopsis "Visualization via beanplots")
11992 (description
11993 "This package provides beanplots, an alternative to
11994 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
11995 graphs.")
11996 (license license:gpl2)))
11997
11998 (define-public r-pbdzmq
11999 (package
12000 (name "r-pbdzmq")
12001 (version "0.3-3")
12002 (source
12003 (origin
12004 (method url-fetch)
12005 (uri (cran-uri "pbdZMQ" version))
12006 (sha256
12007 (base32
12008 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
12009 (properties `((upstream-name . "pbdZMQ")))
12010 (build-system r-build-system)
12011 (inputs
12012 `(("zeromq" ,zeromq)
12013 ("zlib" ,zlib)))
12014 (native-inputs
12015 `(("pkg-config" ,pkg-config)))
12016 (home-page "https://pbdr.org/")
12017 (synopsis "R interface to ZeroMQ")
12018 (description
12019 "ZeroMQ is a well-known library for high-performance asynchronous
12020 messaging in scalable, distributed applications. This package provides high
12021 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
12022 interactive client/server programming frameworks. A few wrapper functions
12023 compatible with @code{rzmq} are also provided.")
12024 (license license:gpl3)))
12025
12026 (define-public r-repr
12027 (package
12028 (name "r-repr")
12029 (version "1.0.1")
12030 (source
12031 (origin
12032 (method url-fetch)
12033 (uri (cran-uri "repr" version))
12034 (sha256
12035 (base32
12036 "0jy43g34r38fqprcdys0p9pliahrj5l64a9bbkzy206qgz0j5ppc"))))
12037 (build-system r-build-system)
12038 (propagated-inputs
12039 `(("r-base64enc" ,r-base64enc)
12040 ("r-htmltools" ,r-htmltools)
12041 ("r-jsonlite" ,r-jsonlite)
12042 ("r-pillar" ,r-pillar)))
12043 (home-page "https://cran.r-project.org/web/packages/repr/")
12044 (synopsis "Serializable representations")
12045 (description
12046 "This package provides string and binary representations of objects for
12047 several formats and MIME types.")
12048 (license license:gpl3)))
12049
12050 (define-public r-irdisplay
12051 (package
12052 (name "r-irdisplay")
12053 (version "0.7.0")
12054 (source
12055 (origin
12056 (method url-fetch)
12057 (uri (cran-uri "IRdisplay" version))
12058 (sha256
12059 (base32
12060 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
12061 (properties `((upstream-name . "IRdisplay")))
12062 (build-system r-build-system)
12063 (propagated-inputs
12064 `(("r-repr" ,r-repr)))
12065 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
12066 (synopsis "Jupyter display machinery")
12067 (description
12068 "This package provides an interface to the rich display capabilities of
12069 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
12070 running IRkernel session.")
12071 (license license:expat)))
12072
12073 (define-public r-irkernel
12074 (package
12075 (name "r-irkernel")
12076 (version "1.0.1")
12077 (source
12078 (origin
12079 (method url-fetch)
12080 (uri (cran-uri "IRkernel" version))
12081 (sha256
12082 (base32
12083 "1gij59b068qp7sbn9d0b9ghmnhfks15a9anj7bp26acv0yvdsg3s"))))
12084 (properties `((upstream-name . "IRkernel")))
12085 (build-system r-build-system)
12086 (arguments
12087 `(#:phases
12088 (modify-phases %standard-phases
12089 (add-after 'install 'install-kernelspec
12090 (lambda* (#:key outputs #:allow-other-keys)
12091 (let ((out (assoc-ref outputs "out")))
12092 (setenv "HOME" "/tmp")
12093 (invoke "jupyter" "kernelspec" "install"
12094 "--name" "ir"
12095 "--prefix" out
12096 (string-append out "/site-library/IRkernel/kernelspec"))
12097 #t))))))
12098 (inputs
12099 `(("jupyter" ,jupyter)))
12100 (propagated-inputs
12101 `(("r-crayon" ,r-crayon)
12102 ("r-digest" ,r-digest)
12103 ("r-evaluate" ,r-evaluate)
12104 ("r-irdisplay" ,r-irdisplay)
12105 ("r-jsonlite" ,r-jsonlite)
12106 ("r-pbdzmq" ,r-pbdzmq)
12107 ("r-repr" ,r-repr)
12108 ("r-uuid" ,r-uuid)))
12109 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
12110 (synopsis "Native R kernel for Jupyter")
12111 (description
12112 "The R kernel for the Jupyter environment executes R code which the
12113 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
12114 network.")
12115 (license license:expat)))
12116
12117 (define-public r-gmodels
12118 (package
12119 (name "r-gmodels")
12120 (version "2.18.1")
12121 (source
12122 (origin
12123 (method url-fetch)
12124 (uri (cran-uri "gmodels" version))
12125 (sha256
12126 (base32
12127 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
12128 (build-system r-build-system)
12129 (propagated-inputs
12130 `(("r-gdata" ,r-gdata)
12131 ("r-mass" ,r-mass)))
12132 (home-page "https://cran.r-project.org/web/packages/gmodels/")
12133 (synopsis "Various R programming tools for model fitting")
12134 (description
12135 "This package provides various R programming tools for model fitting.")
12136 (license license:gpl2)))
12137
12138 (define-public r-apcluster
12139 (package
12140 (name "r-apcluster")
12141 (version "1.4.7")
12142 (source
12143 (origin
12144 (method url-fetch)
12145 (uri (cran-uri "apcluster" version))
12146 (sha256
12147 (base32
12148 "188hdfmwjjx3aic599nwmkzjqm9j9jighi5bly6qd43c1vj6ih2s"))))
12149 (build-system r-build-system)
12150 (propagated-inputs
12151 `(("r-matrix" ,r-matrix)
12152 ("r-rcpp" ,r-rcpp)))
12153 (home-page "https://cran.r-project.org/web/packages/apcluster/")
12154 (synopsis "Affinity propagation clustering")
12155 (description
12156 "This package implements affinity propagation clustering introduced by
12157 Frey and Dueck (2007). The package further provides leveraged affinity
12158 propagation and an algorithm for exemplar-based agglomerative clustering that
12159 can also be used to join clusters obtained from affinity propagation. Various
12160 plotting functions are available for analyzing clustering results.")
12161 (license license:gpl2+)))
12162
12163 (define-public r-valr
12164 (package
12165 (name "r-valr")
12166 (version "0.5.0")
12167 (source
12168 (origin
12169 (method url-fetch)
12170 (uri (cran-uri "valr" version))
12171 (sha256
12172 (base32
12173 "14jhrwkiwmha3vlmm7b50n2xxyizj6ddmy89gb20mpzq7qhz1ika"))))
12174 (build-system r-build-system)
12175 (propagated-inputs
12176 `(("r-broom" ,r-broom)
12177 ("r-dplyr" ,r-dplyr)
12178 ("r-ggplot2" ,r-ggplot2)
12179 ("r-rcpp" ,r-rcpp)
12180 ("r-readr" ,r-readr)
12181 ("r-rlang" ,r-rlang)
12182 ("r-stringr" ,r-stringr)
12183 ("r-tibble" ,r-tibble)))
12184 (home-page "http://github.com/rnabioco/valr")
12185 (synopsis "Genome interval arithmetic in R")
12186 (description
12187 "This package enables you to read and manipulate genome intervals and
12188 signals. It provides functionality similar to command-line tool suites within
12189 R, enabling interactive analysis and visualization of genome-scale data.")
12190 (license license:expat)))
12191
12192 (define-public r-rematch2
12193 (package
12194 (name "r-rematch2")
12195 (version "2.0.1")
12196 (source
12197 (origin
12198 (method url-fetch)
12199 (uri (cran-uri "rematch2" version))
12200 (sha256
12201 (base32
12202 "16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6"))))
12203 (build-system r-build-system)
12204 (propagated-inputs
12205 `(("r-tibble" ,r-tibble)))
12206 (home-page "https://github.com/r-lib/rematch2")
12207 (synopsis "Tidy output from regular expression matching")
12208 (description
12209 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
12210 return the match results in tidy data frames.")
12211 (license license:expat)))
12212
12213 (define-public r-picante
12214 (package
12215 (name "r-picante")
12216 (version "1.8")
12217 (source
12218 (origin
12219 (method url-fetch)
12220 (uri (cran-uri "picante" version))
12221 (sha256
12222 (base32
12223 "1bcq2j7fs89c2jib68qq6la67rxyg9raryf162mwvjakpf6k19l1"))))
12224 (build-system r-build-system)
12225 (propagated-inputs
12226 `(("r-ape" ,r-ape)
12227 ("r-nlme" ,r-nlme)
12228 ("r-vegan" ,r-vegan)))
12229 (home-page "https://cran.r-project.org/web/packages/picante/")
12230 (synopsis "Integrating phylogenies and ecology")
12231 (description
12232 "This package provides functions for phylocom integration, community
12233 analyses, null-models, traits and evolution. It implements numerous
12234 ecophylogenetic approaches including measures of community phylogenetic and
12235 trait diversity, phylogenetic signal, estimation of trait values for
12236 unobserved taxa, null models for community and phylogeny randomizations, and
12237 utility functions for data input/output and phylogeny plotting. A full
12238 description of package functionality and methods are provided by Kembel et
12239 al. (2010).")
12240 (license license:gpl2)))
12241
12242 (define-public r-reinforcelearn
12243 (package
12244 (name "r-reinforcelearn")
12245 (version "0.2.1")
12246 (source
12247 (origin
12248 (method url-fetch)
12249 (uri (cran-uri "reinforcelearn" version))
12250 (sha256
12251 (base32
12252 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
12253 (build-system r-build-system)
12254 (propagated-inputs
12255 `(("r-checkmate" ,r-checkmate)
12256 ("r-nnet" ,r-nnet)
12257 ("r-purrr" ,r-purrr)
12258 ("r-r6" ,r-r6)))
12259 (home-page "https://markusdumke.github.io/reinforcelearn")
12260 (synopsis "Reinforcement learning")
12261 (description
12262 "This package implements reinforcement learning environments and
12263 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
12264 can be used with function approximation, eligibility traces (Singh & Sutton,
12265 1996) and experience replay (Mnih et al., 2013).")
12266 (license license:expat)))
12267
12268 (define-public r-lemon
12269 (package
12270 (name "r-lemon")
12271 (version "0.4.3")
12272 (source
12273 (origin
12274 (method url-fetch)
12275 (uri (cran-uri "lemon" version))
12276 (sha256
12277 (base32
12278 "0wsn5bfg10wq4dnrgpyraz2bzx9p19c7hf1pwj3h4zmpqfgsdbpw"))))
12279 (build-system r-build-system)
12280 (propagated-inputs
12281 `(("r-ggplot2" ,r-ggplot2)
12282 ("r-gridextra" ,r-gridextra)
12283 ("r-gtable" ,r-gtable)
12284 ("r-knitr" ,r-knitr)
12285 ("r-lattice" ,r-lattice)
12286 ("r-plyr" ,r-plyr)
12287 ("r-scales" ,r-scales)))
12288 (home-page "https://github.com/stefanedwards/lemon")
12289 (synopsis "Freshen up your ggplot2 plots")
12290 (description
12291 "This package provides functions for working with legends and axis lines
12292 of ggplot2, facets that repeat axis lines on all panels, and some knitr
12293 extensions.")
12294 (license license:gpl3)))
12295
12296 (define-public r-wgaim
12297 (package
12298 (name "r-wgaim")
12299 (version "1.4-11")
12300 (source
12301 (origin
12302 (method url-fetch)
12303 (uri (cran-uri "wgaim" version))
12304 (sha256
12305 (base32
12306 "1jjyp100dcjjczp61xlvhmy48ynniqcys535vzbgswhr7fvijymg"))))
12307 (build-system r-build-system)
12308 (propagated-inputs
12309 `(("r-lattice" ,r-lattice)
12310 ("r-qtl" ,r-qtl)))
12311 (home-page "https://cran.r-project.org/web/packages/wgaim")
12312 (synopsis "Whole genome average interval mapping for QTL detection")
12313 (description
12314 "This package integrates sophisticated mixed modelling methods with a
12315 whole genome approach to detecting significant QTL in linkage maps.")
12316 (license license:gpl2+)))
12317
12318 (define-public r-bedr
12319 (package
12320 (name "r-bedr")
12321 (version "1.0.7")
12322 (source
12323 (origin
12324 (method url-fetch)
12325 (uri (cran-uri "bedr" version))
12326 (sha256
12327 (base32
12328 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
12329 (build-system r-build-system)
12330 (propagated-inputs
12331 `(("r-data-table" ,r-data-table)
12332 ("r-r-utils" ,r-r-utils)
12333 ("r-testthat" ,r-testthat)
12334 ("r-venndiagram" ,r-venndiagram)
12335 ("r-yaml" ,r-yaml)
12336 ("bedops" ,bedops)
12337 ("bedtools" ,bedtools)
12338 ("htslib" ,htslib))) ; for tabix
12339 (native-inputs
12340 `(("r-knitr" ,r-knitr))) ; for vignettes
12341 (home-page "https://cran.r-project.org/web/packages/bedr")
12342 (synopsis "Genomic region processing")
12343 (description
12344 "This package is for genomic regions processing using command line tools
12345 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
12346 utilities to perform genome arithmetic e.g indexing, formatting and merging.
12347 The bedr package's API enhances access to these tools as well as offers
12348 additional utilities for genomic regions processing.")
12349 (license license:gpl2)))
12350
12351 (define-public r-partitions
12352 (package
12353 (name "r-partitions")
12354 (version "1.9-19")
12355 (source
12356 (origin
12357 (method url-fetch)
12358 (uri (cran-uri "partitions" version))
12359 (sha256
12360 (base32
12361 "1pklfnjdc094c8nzkqcdvqzdh8v3p5n8jbg4pf9678iw648saiyx"))))
12362 (build-system r-build-system)
12363 (propagated-inputs
12364 `(("r-gmp" ,r-gmp)
12365 ("r-polynom" ,r-polynom)))
12366 (home-page "https://cran.r-project.org/web/packages/partitions")
12367 (synopsis "Additive partitions of integers")
12368 (description
12369 "This package provides tools to enumerates the partitions, unequal
12370 partitions, and restricted partitions of an integer; the three corresponding
12371 partition functions are also given.")
12372 ;; Any version of the GPL
12373 (license license:gpl2+)))
12374
12375 (define-public r-brobdingnag
12376 (package
12377 (name "r-brobdingnag")
12378 (version "1.2-6")
12379 (source
12380 (origin
12381 (method url-fetch)
12382 (uri (cran-uri "Brobdingnag" version))
12383 (sha256
12384 (base32
12385 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
12386 (properties `((upstream-name . "Brobdingnag")))
12387 (build-system r-build-system)
12388 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
12389 (synopsis "Very large numbers in R")
12390 (description
12391 "This package handles very large numbers in R. Real numbers are held
12392 using their natural logarithms, plus a logical flag indicating sign. The
12393 package includes a vignette that gives a step-by-step introduction to using S4
12394 methods.")
12395 ;; Any version of the GPL
12396 (license license:gpl2+)))
12397
12398 (define-public r-untb
12399 (package
12400 (name "r-untb")
12401 (version "1.7-4")
12402 (source
12403 (origin
12404 (method url-fetch)
12405 (uri (cran-uri "untb" version))
12406 (sha256
12407 (base32
12408 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
12409 (build-system r-build-system)
12410 (propagated-inputs
12411 `(("r-brobdingnag" ,r-brobdingnag)
12412 ("r-partitions" ,r-partitions)
12413 ("r-polynom" ,r-polynom)))
12414 (home-page "https://github.com/RobinHankin/untb.git")
12415 (synopsis "Ecological drift under the UNTB")
12416 (description
12417 "This package provides numerical simulations, and visualizations, of
12418 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
12419 (license license:gpl2+)))
12420
12421 (define-public r-stepwise
12422 (package
12423 (name "r-stepwise")
12424 (version "0.3")
12425 (source
12426 (origin
12427 (method url-fetch)
12428 (uri (cran-uri "stepwise" version))
12429 (sha256
12430 (base32
12431 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
12432 (build-system r-build-system)
12433 (home-page "http://stat.sfu.ca/statgen/research/stepwise.html")
12434 (synopsis "Stepwise detection of recombination breakpoints")
12435 (description
12436 "This package provides a stepwise approach to identifying recombination
12437 breakpoints in a genomic sequence alignment.")
12438 (license license:gpl2+)))
12439
12440 (define-public r-snpmaxsel
12441 (package
12442 (name "r-snpmaxsel")
12443 (version "1.0-3")
12444 (source
12445 (origin
12446 (method url-fetch)
12447 (uri (cran-uri "SNPmaxsel" version))
12448 (sha256
12449 (base32
12450 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
12451 (properties `((upstream-name . "SNPmaxsel")))
12452 (build-system r-build-system)
12453 (propagated-inputs
12454 `(("r-combinat" ,r-combinat)
12455 ("r-mvtnorm" ,r-mvtnorm)))
12456 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
12457 (synopsis "Maximally selected statistics for SNP data")
12458 (description
12459 "This package implements asymptotic methods related to maximally selected
12460 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
12461 data.")
12462 (license license:gpl2+)))
12463
12464 (define-public r-acsnminer
12465 (package
12466 (name "r-acsnminer")
12467 (version "0.16.8.25")
12468 (source (origin
12469 (method url-fetch)
12470 (uri (cran-uri "ACSNMineR" version))
12471 (sha256
12472 (base32
12473 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
12474 (properties `((upstream-name . "ACSNMineR")))
12475 (build-system r-build-system)
12476 (propagated-inputs
12477 `(("r-ggplot2" ,r-ggplot2)
12478 ("r-gridextra" ,r-gridextra)))
12479 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
12480 (synopsis "Gene enrichment analysis")
12481 (description
12482 "This package provides tools to compute and represent gene set enrichment
12483 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
12484 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
12485 enrichment can be run with hypergeometric test or Fisher exact test, and can
12486 use multiple corrections. Visualization of data can be done either by
12487 barplots or heatmaps.")
12488 (license license:gpl2+)))
12489
12490 (define-public r-seqinr
12491 (package
12492 (name "r-seqinr")
12493 (version "3.4-5")
12494 (source
12495 (origin
12496 (method url-fetch)
12497 (uri (cran-uri "seqinr" version))
12498 (sha256
12499 (base32
12500 "17zv0n5cji17izwmwg0jcbxbjl3w5rls91w15svcnlpxjms38ahn"))))
12501 (build-system r-build-system)
12502 (propagated-inputs
12503 `(("r-ade4" ,r-ade4)
12504 ("r-segmented" ,r-segmented)))
12505 (inputs
12506 `(("zlib" ,zlib)))
12507 (home-page "http://seqinr.r-forge.r-project.org/")
12508 (synopsis "Biological sequences retrieval and analysis")
12509 (description
12510 "This package provides tools for exploratory data analysis and data
12511 visualization of biological sequence (DNA and protein) data. It also includes
12512 utilities for sequence data management under the ACNUC system.")
12513 (license license:gpl2+)))
12514
12515 (define-public r-units
12516 (package
12517 (name "r-units")
12518 (version "0.6-3")
12519 (source
12520 (origin
12521 (method url-fetch)
12522 (uri (cran-uri "units" version))
12523 (sha256
12524 (base32
12525 "0kx640h60s3zzkdr302asap7diap6vri6d41scnx507yvkcqiph3"))))
12526 (build-system r-build-system)
12527 (inputs
12528 `(("udunits" ,udunits)))
12529 (propagated-inputs
12530 `(("r-rcpp" ,r-rcpp)))
12531 (home-page "https://github.com/r-quantities/units/")
12532 (synopsis "Measurement Units for R Vectors")
12533 (description
12534 "This package provides support for measurement units in R vectors,
12535 matrices and arrays: automatic propagation, conversion, derivation and
12536 simplification of units; raising errors in case of unit incompatibility. It
12537 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
12538 classes.")
12539 (license license:gpl2)))
12540
12541 (define-public r-classint
12542 (package
12543 (name "r-classint")
12544 (version "0.3-3")
12545 (source
12546 (origin
12547 (method url-fetch)
12548 (uri (cran-uri "classInt" version))
12549 (sha256
12550 (base32
12551 "0c2z6shlxa928xa20yl956r06lx20mji3mwipdvmj3f4z5g6hgm9"))))
12552 (properties `((upstream-name . "classInt")))
12553 (build-system r-build-system)
12554 (propagated-inputs
12555 `(("r-class" ,r-class)
12556 ("r-e1071" ,r-e1071)
12557 ("r-kernsmooth" ,r-kernsmooth)))
12558 (native-inputs `(("gfortran" ,gfortran)))
12559 (home-page "https://github.com/r-spatial/classInt/")
12560 (synopsis "Choose univariate class intervals")
12561 (description
12562 "This package provides selected commonly used methods for choosing
12563 univariate class intervals for mapping or other graphics purposes.")
12564 (license license:gpl2+)))
12565
12566 (define-public r-spdata
12567 (package
12568 (name "r-spdata")
12569 (version "0.3.0")
12570 (source
12571 (origin
12572 (method url-fetch)
12573 (uri (cran-uri "spData" version))
12574 (sha256
12575 (base32
12576 "162cqb331ki43jx4r8lpkjpn2l712figd896rnawg9j1jmjyl96y"))))
12577 (properties `((upstream-name . "spData")))
12578 (build-system r-build-system)
12579 (home-page "https://github.com/Nowosad/spData")
12580 (synopsis "Datasets for spatial analysis")
12581 (description
12582 "This a package containing diverse spatial datasets for demonstrating,
12583 benchmarking and teaching spatial data analysis. It includes R data of class
12584 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
12585 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
12586 of the datasets are designed to illustrate specific analysis techniques.
12587 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
12588 illustrate point pattern analysis techniques.")
12589 (license license:cc0)))
12590
12591 (define-public r-learnbayes
12592 (package
12593 (name "r-learnbayes")
12594 (version "2.15.1")
12595 (source
12596 (origin
12597 (method url-fetch)
12598 (uri (cran-uri "LearnBayes" version))
12599 (sha256
12600 (base32
12601 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
12602 (properties `((upstream-name . "LearnBayes")))
12603 (build-system r-build-system)
12604 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
12605 (synopsis "Functions for learning Bayesian inference")
12606 (description
12607 "This package provides a collection of functions helpful in learning the
12608 basic tenets of Bayesian statistical inference. It contains functions for
12609 summarizing basic one and two parameter posterior distributions and predictive
12610 distributions. It contains MCMC algorithms for summarizing posterior
12611 distributions defined by the user. It also contains functions for regression
12612 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
12613 sampling.")
12614 (license license:gpl2+)))
12615
12616 (define-public r-deldir
12617 (package
12618 (name "r-deldir")
12619 (version "0.1-21")
12620 (source
12621 (origin
12622 (method url-fetch)
12623 (uri (cran-uri "deldir" version))
12624 (sha256
12625 (base32
12626 "03392pl6j8rm3n32xrfkyfx866k1vm5sj87pva70yyiwh70vrnmr"))))
12627 (build-system r-build-system)
12628 (native-inputs `(("gfortran" ,gfortran)))
12629 (home-page "https://cran.r-project.org/web/packages/deldir")
12630 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
12631 (description
12632 "This package provides tools for calculating the Delaunay triangulation
12633 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
12634 of a planar point set. It plots triangulations and tessellations in various
12635 ways, clips tessellations to sub-windows, calculates perimeters of
12636 tessellations, and summarizes information about the tiles of the
12637 tessellation.")
12638 (license license:gpl2+)))
12639
12640 (define-public r-sf
12641 (package
12642 (name "r-sf")
12643 (version "0.7-4")
12644 (source
12645 (origin
12646 (method url-fetch)
12647 (uri (cran-uri "sf" version))
12648 (sha256
12649 (base32
12650 "0vnyr7xyfcl928kbrb1k8l4fkd0cjrfq486g6gxpvy5j0cc2h4i1"))))
12651 (build-system r-build-system)
12652 (inputs
12653 `(("gdal" ,gdal)
12654 ("geos" ,geos)
12655 ("proj" ,proj.4)
12656 ("zlib" ,zlib)))
12657 (propagated-inputs
12658 `(("r-classint" ,r-classint)
12659 ("r-dbi" ,r-dbi)
12660 ("r-magrittr" ,r-magrittr)
12661 ("r-rcpp" ,r-rcpp)
12662 ("r-units" ,r-units)))
12663 (native-inputs `(("pkg-config" ,pkg-config)))
12664 (home-page "https://github.com/r-spatial/sf/")
12665 (synopsis "Simple features for R")
12666 (description
12667 "This package provides support for simple features, a standardized way to
12668 encode spatial vector data. It binds to GDAL for reading and writing data, to
12669 GEOS for geometrical operations, and to PROJ for projection conversions and
12670 datum transformations.")
12671 ;; Either of these licenses
12672 (license (list license:gpl2 license:expat))))
12673
12674 (define-public r-spdep
12675 (package
12676 (name "r-spdep")
12677 (version "1.1-2")
12678 (source
12679 (origin
12680 (method url-fetch)
12681 (uri (cran-uri "spdep" version))
12682 (sha256
12683 (base32
12684 "06mk81kc1ml2wjc8wwwgr0wasjcr4mwrxpfa8vfc373bmnha635s"))))
12685 (build-system r-build-system)
12686 (propagated-inputs
12687 `(("r-boot" ,r-boot)
12688 ("r-coda" ,r-coda)
12689 ("r-deldir" ,r-deldir)
12690 ("r-expm" ,r-expm)
12691 ("r-gmodels" ,r-gmodels)
12692 ("r-learnbayes" ,r-learnbayes)
12693 ("r-mass" ,r-mass)
12694 ("r-matrix" ,r-matrix)
12695 ("r-nlme" ,r-nlme)
12696 ("r-sf" ,r-sf)
12697 ("r-sp" ,r-sp)
12698 ("r-spdata" ,r-spdata)))
12699 (home-page "https://github.com/r-spatial/spdep/")
12700 (synopsis "Spatial dependence: weighting schemes, statistics and models")
12701 (description
12702 "This package provides a collection of functions to create spatial
12703 weights matrix objects from polygon contiguities, from point patterns by
12704 distance and tessellations, for summarizing these objects, and for permitting
12705 their use in spatial data analysis, including regional aggregation by minimum
12706 spanning tree.")
12707 (license license:gpl2+)))
12708
12709 (define-public r-adegenet
12710 (package
12711 (name "r-adegenet")
12712 (version "2.1.1")
12713 (source
12714 (origin
12715 (method url-fetch)
12716 (uri (cran-uri "adegenet" version))
12717 (sha256
12718 (base32
12719 "0ynfblp0hbd3dp3k86fn1wyhqr28lk6hs2bg4q7gyf0sfdfzwhrh"))))
12720 (build-system r-build-system)
12721 (propagated-inputs
12722 `(("r-ade4" ,r-ade4)
12723 ("r-ape" ,r-ape)
12724 ("r-boot" ,r-boot)
12725 ("r-dplyr" ,r-dplyr)
12726 ("r-ggplot2" ,r-ggplot2)
12727 ("r-igraph" ,r-igraph)
12728 ("r-mass" ,r-mass)
12729 ("r-reshape2" ,r-reshape2)
12730 ("r-seqinr" ,r-seqinr)
12731 ("r-shiny" ,r-shiny)
12732 ("r-spdep" ,r-spdep)
12733 ("r-vegan" ,r-vegan)))
12734 (home-page "https://github.com/thibautjombart/adegenet")
12735 (synopsis "Exploratory analysis of genetic and genomic data")
12736 (description
12737 "This package provides a toolset for the exploration of genetic and
12738 genomic data. Adegenet provides formal (S4) classes for storing and handling
12739 various genetic data, including genetic markers with varying ploidy and
12740 hierarchical population structure (@code{genind} class), alleles counts by
12741 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
12742 also implements original multivariate methods (DAPC, sPCA), graphics,
12743 statistical tests, simulation tools, distance and similarity measures, and
12744 several spatial methods. A range of both empirical and simulated datasets is
12745 also provided to illustrate various methods.")
12746 (license license:gpl2+)))
12747
12748 (define-public r-pegas
12749 (package
12750 (name "r-pegas")
12751 (version "0.11")
12752 (source
12753 (origin
12754 (method url-fetch)
12755 (uri (cran-uri "pegas" version))
12756 (sha256
12757 (base32
12758 "0l21bapzbjcvblbvks3jh9rpy9hng1ccd7f0glhqw695lc737bpx"))))
12759 (build-system r-build-system)
12760 (propagated-inputs
12761 `(("r-adegenet" ,r-adegenet)
12762 ("r-ape" ,r-ape)))
12763 (home-page "http://ape-package.ird.fr/pegas.html")
12764 (synopsis "Population and evolutionary genetics analysis system")
12765 (description
12766 "This package provides functions for reading, writing, plotting,
12767 analysing, and manipulating allelic and haplotypic data, including from VCF
12768 files, and for the analysis of population nucleotide sequences and
12769 micro-satellites including coalescent analyses, linkage disequilibrium,
12770 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
12771 minimum spanning tree and network, and median-joining networks.")
12772 (license license:gpl2+)))
12773
12774 (define-public r-rmetasim
12775 (package
12776 (name "r-rmetasim")
12777 (version "3.1.7")
12778 (source
12779 (origin
12780 (method url-fetch)
12781 (uri (cran-uri "rmetasim" version))
12782 (sha256
12783 (base32
12784 "0sz4mdprdi6sgkfwfdvh2hr9nxiwq17sw0vggq3cvs7lzb0i6m9r"))))
12785 (build-system r-build-system)
12786 (propagated-inputs
12787 `(("r-ade4" ,r-ade4)
12788 ("r-adegenet" ,r-adegenet)
12789 ("r-gtools" ,r-gtools)
12790 ("r-pegas" ,r-pegas)))
12791 (home-page "https://cran.r-project.org/web/packages/rmetasim")
12792 (synopsis "Individual-based population genetic simulation environment")
12793 (description
12794 "This package provides an interface between R and the metasim simulation
12795 engine. The simulation environment is documented in: Strand, A.(2002),
12796 Metasim 1.0: an individual-based environment for simulating population
12797 genetics of complex population dynamics.")
12798 ;; Any GPL version
12799 (license license:gpl2+)))
12800
12801 (define-public r-genetics
12802 (package
12803 (name "r-genetics")
12804 (version "1.3.8.1.2")
12805 (source
12806 (origin
12807 (method url-fetch)
12808 (uri (cran-uri "genetics" version))
12809 (sha256
12810 (base32
12811 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
12812 (build-system r-build-system)
12813 (propagated-inputs
12814 `(("r-combinat" ,r-combinat)
12815 ("r-gdata" ,r-gdata)
12816 ("r-gtools" ,r-gtools)
12817 ("r-mass" ,r-mass)
12818 ("r-mvtnorm" ,r-mvtnorm)))
12819 (home-page "https://cran.r-project.org/web/packages/genetics/")
12820 (synopsis "Population genetics")
12821 (description
12822 "This package provides classes and methods for handling genetic data.
12823 It includes classes to represent genotypes and haplotypes at single markers up
12824 to multiple markers on multiple chromosomes. Function include allele
12825 frequencies, flagging homo/heterozygotes, flagging carriers of certain
12826 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
12827 and testing for linkage disequilibrium, ...")
12828 ;; Any GPL version.
12829 (license license:gpl2+)))
12830
12831 (define-public r-snp-plotter
12832 (package
12833 (name "r-snp-plotter")
12834 (version "0.5.1")
12835 (source
12836 (origin
12837 (method url-fetch)
12838 (uri (cran-uri "snp.plotter" version))
12839 (sha256
12840 (base32
12841 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
12842 (properties `((upstream-name . "snp.plotter")))
12843 (build-system r-build-system)
12844 (propagated-inputs `(("r-genetics" ,r-genetics)))
12845 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
12846 (synopsis "Plot p-values using single SNP and/or haplotype data")
12847 (description
12848 "This package helps you create plots of p-values using single SNP and/or
12849 haplotype data. Main features of the package include options to display a
12850 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
12851 datasets simultaneously. Plots can be created using global and/or individual
12852 haplotype p-values along with single SNP p-values. Images are created as
12853 either PDF/EPS files.")
12854 (license license:gpl2+)))
12855
12856 (define-public r-polspline
12857 (package
12858 (name "r-polspline")
12859 (version "1.1.15")
12860 (source
12861 (origin
12862 (method url-fetch)
12863 (uri (cran-uri "polspline" version))
12864 (sha256
12865 (base32
12866 "19zs4kpagsrzhng1byjbz1c4jxnfk58h4rgr096ml1bjwrgamnwc"))))
12867 (build-system r-build-system)
12868 (native-inputs `(("gfortran" ,gfortran)))
12869 (home-page "https://cran.r-project.org/web/packages/polspline/")
12870 (synopsis "Polynomial spline routines")
12871 (description
12872 "This package provides routines for the polynomial spline fitting
12873 routines hazard regression, hazard estimation with flexible tails, logspline,
12874 lspec, polyclass, and polymars.")
12875 (license license:gpl2+)))
12876
12877 (define-public r-rms
12878 (package
12879 (name "r-rms")
12880 (version "5.1-3.1")
12881 (source
12882 (origin
12883 (method url-fetch)
12884 (uri (cran-uri "rms" version))
12885 (sha256
12886 (base32
12887 "0drbr3g0x5pbxyzy50wnf92rbal8izizrcqslqhg0gsfg9adjih9"))))
12888 (build-system r-build-system)
12889 (propagated-inputs
12890 `(("r-ggplot2" ,r-ggplot2)
12891 ("r-hmisc" ,r-hmisc)
12892 ("r-htmltable" ,r-htmltable)
12893 ("r-htmltools" ,r-htmltools)
12894 ("r-lattice" ,r-lattice)
12895 ("r-multcomp" ,r-multcomp)
12896 ("r-nlme" ,r-nlme)
12897 ("r-polspline" ,r-polspline)
12898 ("r-quantreg" ,r-quantreg)
12899 ("r-rpart" ,r-rpart)
12900 ("r-sparsem" ,r-sparsem)
12901 ("r-survival" ,r-survival)))
12902 (native-inputs `(("gfortran" ,gfortran)))
12903 (home-page "http://biostat.mc.vanderbilt.edu/rms")
12904 (synopsis "Regression modeling strategies")
12905 (description
12906 "This is a package for regression modeling, testing, estimation,
12907 validation, graphics, prediction, and typesetting by storing enhanced model
12908 design attributes in the fit. The rms package is a collection of functions
12909 that assist with and streamline modeling. It also contains functions for
12910 binary and ordinal logistic regression models, ordinal models for continuous Y
12911 with a variety of distribution families, and the Buckley-James multiple
12912 regression model for right-censored responses, and implements penalized
12913 maximum likelihood estimation for logistic and ordinary linear models. The
12914 package works with almost any regression model, but it was especially written
12915 to work with binary or ordinal regression models, Cox regression, accelerated
12916 failure time models, ordinary linear models, the Buckley-James model,
12917 generalized least squares for serially or spatially correlated observations,
12918 generalized linear models, and quantile regression.")
12919 (license license:gpl2+)))
12920
12921 (define-public r-haplo-stats
12922 (package
12923 (name "r-haplo-stats")
12924 (version "1.7.9")
12925 (source
12926 (origin
12927 (method url-fetch)
12928 (uri (cran-uri "haplo.stats" version))
12929 (sha256
12930 (base32
12931 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
12932 (properties `((upstream-name . "haplo.stats")))
12933 (build-system r-build-system)
12934 (propagated-inputs
12935 `(("r-rms" ,r-rms)))
12936 (native-inputs
12937 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
12938 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
12939 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
12940 (description
12941 "This package provides routines for the analysis of indirectly measured
12942 haplotypes. The statistical methods assume that all subjects are unrelated
12943 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
12944 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
12945 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
12946 examples in the vignette.")
12947 (license license:gpl2+)))
12948
12949 (define-public r-bqtl
12950 (package
12951 (name "r-bqtl")
12952 (version "1.0-32")
12953 (source
12954 (origin
12955 (method url-fetch)
12956 (uri (cran-uri "bqtl" version))
12957 (sha256
12958 (base32
12959 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
12960 (build-system r-build-system)
12961 (native-inputs `(("gfortran" ,gfortran)))
12962 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
12963 (synopsis "Bayesian QTL mapping toolkit")
12964 (description
12965 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
12966 lines. It includes maximum likelihood and Bayesian tools.")
12967 (license license:gpl2+)))
12968
12969 (define-public r-ibdreg
12970 (package
12971 (name "r-ibdreg")
12972 (version "0.2.5")
12973 (source
12974 (origin
12975 (method url-fetch)
12976 (uri (cran-uri "ibdreg" version))
12977 (sha256
12978 (base32
12979 "1kaa5q1byi30wzr0mw4w2cv1ssxprzcwf91wrpqwkgcsdy7dkh2g"))))
12980 (build-system r-build-system)
12981 (home-page "https://www.mayo.edu/research/labs/\
12982 statistical-genetics-genetic-epidemiology/software")
12983 (synopsis "Regression methods for IBD linkage with covariates")
12984 (description
12985 "This package provides a method to test genetic linkage with covariates
12986 by regression methods with response IBD sharing for relative pairs. Account
12987 for correlations of IBD statistics and covariates for relative pairs within
12988 the same pedigree.")
12989 (license license:gpl2+)))
12990
12991 (define-public r-dlmap
12992 (package
12993 (name "r-dlmap")
12994 (version "1.13")
12995 (source
12996 (origin
12997 (method url-fetch)
12998 (uri (cran-uri "dlmap" version))
12999 (sha256
13000 (base32
13001 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
13002 (build-system r-build-system)
13003 (propagated-inputs
13004 `(("r-ibdreg" ,r-ibdreg)
13005 ("r-mgcv" ,r-mgcv)
13006 ("r-nlme" ,r-nlme)
13007 ("r-qtl" ,r-qtl)
13008 ("r-wgaim" ,r-wgaim)))
13009 (home-page "https://cran.r-project.org/web/packages/dlmap/")
13010 (synopsis "Detection localization mapping for QTL")
13011 (description
13012 "This is package for QTL mapping in a mixed model framework with separate
13013 detection and localization stages. The first stage detects the number of QTL
13014 on each chromosome based on the genetic variation due to grouped markers on
13015 the chromosome; the second stage uses this information to determine the most
13016 likely QTL positions. The mixed model can accommodate general fixed and
13017 random effects, including spatial effects in field trials and pedigree
13018 effects. It is applicable to backcrosses, doubled haploids, recombinant
13019 inbred lines, F2 intercrosses, and association mapping populations.")
13020 (license license:gpl2)))
13021
13022 (define-public r-ldheatmap
13023 (package
13024 (name "r-ldheatmap")
13025 (version "0.99-5")
13026 (source
13027 (origin
13028 (method url-fetch)
13029 (uri (cran-uri "LDheatmap" version))
13030 (sha256
13031 (base32
13032 "0il3g3n3bzv74lz7dlhyiwc2x2417v6yhx2g47pahxdzqa09kf4s"))))
13033 (properties `((upstream-name . "LDheatmap")))
13034 (build-system r-build-system)
13035 (propagated-inputs
13036 `(("r-genetics" ,r-genetics)
13037 ("r-snpstats" ,r-snpstats)))
13038 (home-page "http://stat.sfu.ca/statgen/research/ldheatmap.html")
13039 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
13040 (description
13041 "This package provides tools to produce a graphical display, as a heat
13042 map, of measures of pairwise linkage disequilibria between SNPs. Users may
13043 optionally include the physical locations or genetic map distances of each SNP
13044 on the plot.")
13045 (license license:gpl3)))
13046
13047 (define-public r-hwde
13048 (package
13049 (name "r-hwde")
13050 (version "0.67")
13051 (source
13052 (origin
13053 (method url-fetch)
13054 (uri (cran-uri "hwde" version))
13055 (sha256
13056 (base32
13057 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
13058 (build-system r-build-system)
13059 (home-page "https://cran.r-project.org/web/packages/hwde/")
13060 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
13061 (description
13062 "This package fits models for genotypic disequilibria, as described in
13063 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
13064 terms are available that account for first order interactions between loci.
13065 It also implements, for a single locus in a single population, a conditional
13066 exact test for Hardy-Weinberg equilibrium.")
13067 (license license:gpl2+)))
13068
13069 (define-public r-tdthap
13070 (package
13071 (name "r-tdthap")
13072 (version "1.1-9")
13073 (source
13074 (origin
13075 (method url-fetch)
13076 (uri (cran-uri "tdthap" version))
13077 (sha256
13078 (base32
13079 "0y01x0hcf0rw06cpn4pk17b0shf4v2c9was7vfs0zhsbq8qcwx7r"))))
13080 (build-system r-build-system)
13081 (home-page "https://cran.r-project.org/web/packages/tdthap/")
13082 (synopsis "TDT tests for extended haplotypes")
13083 (description
13084 "Functions and examples are provided for transmission/disequilibrium
13085 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
13086 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
13087 (license license:artistic2.0)))
13088
13089 (define-public r-sparql
13090 (package
13091 (name "r-sparql")
13092 (version "1.16")
13093 (source (origin
13094 (method url-fetch)
13095 (uri (cran-uri "SPARQL" version))
13096 (sha256
13097 (base32
13098 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
13099 (properties `((upstream-name . "SPARQL")))
13100 (build-system r-build-system)
13101 (propagated-inputs
13102 `(("r-rcurl" ,r-rcurl)
13103 ("r-xml" ,r-xml)))
13104 (home-page "https://cran.r-project.org/web/packages/SPARQL")
13105 (synopsis "SPARQL client for R")
13106 (description "This package provides an interface to use SPARQL to pose
13107 SELECT or UPDATE queries to an end-point.")
13108 ;; The only license indication is found in the DESCRIPTION file,
13109 ;; which states GPL-3. So we cannot assume GPLv3+.
13110 (license license:gpl3)))
13111
13112 (define-public r-bookdown
13113 (package
13114 (name "r-bookdown")
13115 (version "0.11")
13116 (source (origin
13117 (method url-fetch)
13118 (uri (cran-uri "bookdown" version))
13119 (sha256
13120 (base32
13121 "0w4fkv5fqiaqgkx44p0s161imf29zir9742126xkz1pl1j25jn1r"))))
13122 (build-system r-build-system)
13123 (propagated-inputs
13124 `(("r-htmltools" ,r-htmltools)
13125 ("r-knitr" ,r-knitr)
13126 ("r-rmarkdown" ,r-rmarkdown)
13127 ("r-tinytex" ,r-tinytex)
13128 ("r-xfun" ,r-xfun)
13129 ("pandoc" ,ghc-pandoc)))
13130 (home-page "https://github.com/rstudio/bookdown")
13131 (synopsis "Authoring books and technical documents with R markdown")
13132 (description "This package provides output formats and utilities for
13133 authoring books and technical documents with R Markdown.")
13134 (license license:gpl3)))
13135
13136 (define-public r-optparse
13137 (package
13138 (name "r-optparse")
13139 (version "1.6.2")
13140 (source
13141 (origin
13142 (method url-fetch)
13143 (uri (cran-uri "optparse" version))
13144 (sha256
13145 (base32
13146 "0zrp6jakjhawrwfri270ym83vj5a7nvjk0w6b41z41ahw2da99dm"))))
13147 (build-system r-build-system)
13148 (propagated-inputs
13149 `(("r-getopt" ,r-getopt)))
13150 (home-page "https://github.com/trevorld/optparse")
13151 (synopsis "Command line option parser")
13152 (description
13153 "This package provides a command line parser inspired by Python's
13154 @code{optparse} library to be used with Rscript to write shebang scripts
13155 that accept short and long options.")
13156 (license license:gpl2+)))
13157
13158 (define-public r-wgcna
13159 (package
13160 (name "r-wgcna")
13161 (version "1.68")
13162 (source
13163 (origin
13164 (method url-fetch)
13165 (uri (cran-uri "WGCNA" version))
13166 (sha256
13167 (base32
13168 "1s7gy5vd7x67hpgli8r7ba2z99w3psiyv5hqmrh94zw141dg210a"))))
13169 (properties `((upstream-name . "WGCNA")))
13170 (build-system r-build-system)
13171 (propagated-inputs
13172 `(("r-annotationdbi" ,r-annotationdbi)
13173 ("r-doparallel" ,r-doparallel)
13174 ("r-dynamictreecut" ,r-dynamictreecut)
13175 ("r-fastcluster" ,r-fastcluster)
13176 ("r-foreach" ,r-foreach)
13177 ("r-go-db" ,r-go-db)
13178 ("r-hmisc" ,r-hmisc)
13179 ("r-impute" ,r-impute)
13180 ("r-rcpp" ,r-rcpp)
13181 ("r-robust" ,r-robust)
13182 ("r-survival" ,r-survival)
13183 ("r-matrixstats" ,r-matrixstats)
13184 ("r-preprocesscore" ,r-preprocesscore)))
13185 (home-page
13186 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
13187 (synopsis "Weighted correlation network analysis")
13188 (description
13189 "This package provides functions necessary to perform Weighted
13190 Correlation Network Analysis on high-dimensional data. It includes functions
13191 for rudimentary data cleaning, construction and summarization of correlation
13192 networks, module identification and functions for relating both variables and
13193 modules to sample traits. It also includes a number of utility functions for
13194 data manipulation and visualization.")
13195 (license license:gpl2+)))
13196
13197 (define-public r-kernlab
13198 (package
13199 (name "r-kernlab")
13200 (version "0.9-27")
13201 (source
13202 (origin
13203 (method url-fetch)
13204 (uri (cran-uri "kernlab" version))
13205 (sha256
13206 (base32
13207 "1m0xqf6gyvwayz7w3c83y32ayvnlz0jicj8ijk808zq9sh7dbbgn"))))
13208 (build-system r-build-system)
13209 (home-page "https://cran.r-project.org/web/packages/kernlab")
13210 (synopsis "Kernel-based machine learning tools")
13211 (description
13212 "This package provides kernel-based machine learning methods for
13213 classification, regression, clustering, novelty detection, quantile regression
13214 and dimensionality reduction. Among other methods @code{kernlab} includes
13215 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
13216 and a QP solver.")
13217 (license license:gpl2)))
13218
13219 (define-public r-hierfstat
13220 (package
13221 (name "r-hierfstat")
13222 (version "0.04-22")
13223 (source
13224 (origin
13225 (method url-fetch)
13226 (uri (cran-uri "hierfstat" version))
13227 (sha256
13228 (base32
13229 "1fav2v2996v5kb1ffa6v5wxfm921syxg6as034vd3j4jfhdibyfx"))))
13230 (build-system r-build-system)
13231 (propagated-inputs
13232 `(("r-ade4" ,r-ade4)
13233 ("r-adegenet" ,r-adegenet)
13234 ("r-gtools" ,r-gtools)))
13235 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
13236 (synopsis "Estimation and tests of hierarchical F-statistics")
13237 (description
13238 "This package allows the estimation of hierarchical F-statistics from
13239 haploid or diploid genetic data with any numbers of levels in the hierarchy,
13240 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
13241 are also given to test via randomisations the significance of each F and
13242 variance components, using the likelihood-ratio statistics G.")
13243 (license license:gpl2+)))
13244
13245 (define-public r-hapassoc
13246 (package
13247 (name "r-hapassoc")
13248 (version "1.2-8")
13249 (source
13250 (origin
13251 (method url-fetch)
13252 (uri (cran-uri "hapassoc" version))
13253 (sha256
13254 (base32
13255 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
13256 (build-system r-build-system)
13257 (home-page "http://stat.sfu.ca/statgen/research/hapassoc.html")
13258 (synopsis "Inference of trait associations with SNP haplotypes")
13259 (description
13260 "Hapassoc performs likelihood inference of trait associations with
13261 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
13262 functions are developed primarily for data collected in cohort or
13263 cross-sectional studies. They can accommodate uncertain haplotype phase and
13264 handle missing genotypes at some SNPs.")
13265 (license license:gpl2)))
13266
13267 (define-public r-sampling
13268 (package
13269 (name "r-sampling")
13270 (version "2.8")
13271 (source
13272 (origin
13273 (method url-fetch)
13274 (uri (cran-uri "sampling" version))
13275 (sha256
13276 (base32
13277 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
13278 (build-system r-build-system)
13279 (propagated-inputs
13280 `(("r-lpsolve" ,r-lpsolve)
13281 ("r-mass" ,r-mass)))
13282 (home-page "https://cran.r-project.org/web/packages/sampling/")
13283 (synopsis "Survey sampling")
13284 (description
13285 "This package provides functions for drawing and calibrating samples.")
13286 (license license:gpl2+)))
13287
13288 (define-public r-r2html
13289 (package
13290 (name "r-r2html")
13291 (version "2.3.2")
13292 (source
13293 (origin
13294 (method url-fetch)
13295 (uri (cran-uri "R2HTML" version))
13296 (sha256
13297 (base32
13298 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
13299 (properties `((upstream-name . "R2HTML")))
13300 (build-system r-build-system)
13301 (home-page "https://github.com/nalimilan/R2HTML")
13302 (synopsis "HTML export for R objects")
13303 (description
13304 "This package includes HTML functions and methods to write in an HTML
13305 file. Thus, making HTML reports is easy. It includes a function that allows
13306 redirection on the fly, which appears to be very useful for teaching purposes,
13307 as the student can keep a copy of the produced output to keep all that they
13308 did during the course. The package comes with a vignette describing how to
13309 write HTML reports for statistical analysis. Finally, a driver for Sweave
13310 allows to parse HTML flat files containing R code and to automatically write
13311 the corresponding outputs (tables and graphs).")
13312 (license license:gpl2+)))
13313
13314 (define-public r-rjava
13315 (package
13316 (name "r-rjava")
13317 (version "0.9-11")
13318 (source
13319 (origin
13320 (method url-fetch)
13321 (uri (cran-uri "rJava" version))
13322 (sha256
13323 (base32
13324 "0s9cjy1wh7snmbqwznh8f1r4ipylr7mgda4a979z963a8lqy32n2"))))
13325 (properties `((upstream-name . "rJava")))
13326 (build-system r-build-system)
13327 (arguments
13328 `(#:modules ((guix build utils)
13329 (guix build r-build-system)
13330 (ice-9 match))
13331 #:phases
13332 (modify-phases %standard-phases
13333 (add-after 'unpack 'set-JAVA_HOME
13334 (lambda* (#:key inputs #:allow-other-keys)
13335 (let ((jdk (assoc-ref inputs "jdk")))
13336 (setenv "JAVA_HOME" jdk)
13337 (setenv "JAVA" (which "java"))
13338 (setenv "JAR" (which "jar"))
13339 (setenv "JAVAC" (which "javac"))
13340 (setenv "JAVAH" (which "javah"))
13341 (setenv "JAVA_CPPFLAGS"
13342 (string-append "-I" jdk "/include "
13343 "-I" jdk "/include/linux"))
13344 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
13345 ((lib) (setenv "JAVA_LIBS" lib))
13346 (_ (error "Could not find libjvm.so"))))
13347 #t)))))
13348 (inputs
13349 `(("icu4c" ,icu4c)
13350 ("jdk" ,icedtea-8 "jdk")
13351 ("pcre" ,pcre)
13352 ("zlib" ,zlib)))
13353 (home-page "http://www.rforge.net/rJava/")
13354 (synopsis "Low-Level R to Java interface")
13355 (description
13356 "This package provides a low-level interface to the Java VM very much
13357 like .C/.Call and friends. It allows the creation of objects, calling methods
13358 and accessing fields.")
13359 (license license:gpl2)))
13360
13361 (define-public r-svmisc
13362 (package
13363 (name "r-svmisc")
13364 (version "1.1.0")
13365 (source
13366 (origin
13367 (method url-fetch)
13368 (uri (cran-uri "svMisc" version))
13369 (sha256
13370 (base32
13371 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
13372 (properties `((upstream-name . "svMisc")))
13373 (build-system r-build-system)
13374 (home-page "https://github.com/SciViews/svMisc")
13375 (synopsis "Miscellaneous functions for SciViews")
13376 (description
13377 "This package provides miscellaneous functions for SciViews or general
13378 use, including tools to manage a temporary environment attached to the search
13379 path for temporary variables you do not want to @code{save()} or
13380 @code{load()}; test the current platform; showing progress bars, etc.")
13381 (license license:gpl2)))
13382
13383 (define-public r-xyz
13384 (package
13385 (name "r-xyz")
13386 (version "0.2")
13387 (source
13388 (origin
13389 (method url-fetch)
13390 (uri (cran-uri "xyz" version))
13391 (sha256
13392 (base32
13393 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
13394 (build-system r-build-system)
13395 (propagated-inputs
13396 `(("r-rcpp" ,r-rcpp)))
13397 (home-page "https://cran.r-project.org/web/packages/xyz/")
13398 (synopsis "Algorithm for fast interaction search in high-dimensional data")
13399 (description
13400 "High dimensional interaction search by brute force requires a quadratic
13401 computational cost in the number of variables. The xyz algorithm provably
13402 finds strong interactions in almost linear time. For details of the algorithm
13403 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
13404 interaction search in high-dimensional data.")
13405 ;; Any version of the GPL.
13406 (license license:gpl2+)))
13407
13408 (define-public r-rttf2pt1
13409 (package
13410 (name "r-rttf2pt1")
13411 (version "1.3.7")
13412 (source
13413 (origin
13414 (method url-fetch)
13415 (uri (cran-uri "Rttf2pt1" version))
13416 (sha256
13417 (base32
13418 "12hf9r3mhjr9sawdvf7qhjf1zph2q64f77i81jwvy7awidbm0kja"))))
13419 (properties `((upstream-name . "Rttf2pt1")))
13420 (build-system r-build-system)
13421 (home-page "https://github.com/wch/Rttf2pt1")
13422 (synopsis "Font conversion utility")
13423 (description
13424 "This package contains the program @code{ttf2pt1}, for use with the
13425 @code{extrafont} package.")
13426 ;; Most of the files are covered under the Expat license. Some files are
13427 ;; covered under BSD-3. Deviations for individual files are recorded in
13428 ;; the LICENSE file.
13429 (license (list license:bsd-3 license:expat
13430 (license:non-copyleft "file://LICENSE")))))
13431
13432 (define-public r-extrafontdb
13433 (package
13434 (name "r-extrafontdb")
13435 (version "1.0")
13436 (source
13437 (origin
13438 (method url-fetch)
13439 (uri (cran-uri "extrafontdb" version))
13440 (sha256
13441 (base32
13442 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
13443 (build-system r-build-system)
13444 (home-page "https://github.com/wch/extrafontdb")
13445 (synopsis "Database for the extrafont package")
13446 (description
13447 "This package holds the database for the @code{extrafont} package.")
13448 (license license:gpl2)))
13449
13450 (define-public r-extrafont
13451 (package
13452 (name "r-extrafont")
13453 (version "0.17")
13454 (source
13455 (origin
13456 (method url-fetch)
13457 (uri (cran-uri "extrafont" version))
13458 (sha256
13459 (base32
13460 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
13461 (build-system r-build-system)
13462 (propagated-inputs
13463 `(("r-extrafontdb" ,r-extrafontdb)
13464 ("r-rttf2pt1" ,r-rttf2pt1)))
13465 (home-page "https://github.com/wch/extrafont")
13466 (synopsis "Tools for using fonts in R")
13467 (description
13468 "The extrafont package makes it easier to use fonts other than the basic
13469 PostScript fonts that R uses. Fonts that are imported into extrafont can be
13470 used with PDF or PostScript output files. There are two hurdles for using
13471 fonts in PDF (or Postscript) output files:
13472
13473 @enumerate
13474 @item Making R aware of the font and the dimensions of the characters.
13475 @item Embedding the fonts in the PDF file so that the PDF can be displayed
13476 properly on a device that doesn't have the font. This is usually needed if
13477 you want to print the PDF file or share it with others.
13478 @end enumerate
13479
13480 The extrafont package makes both of these things easier.")
13481 (license license:gpl2)))
13482
13483 (define-public r-xkcd
13484 (package
13485 (name "r-xkcd")
13486 (version "0.0.6")
13487 (source
13488 (origin
13489 (method url-fetch)
13490 (uri (cran-uri "xkcd" version))
13491 (sha256
13492 (base32
13493 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
13494 (build-system r-build-system)
13495 (propagated-inputs
13496 `(("r-extrafont" ,r-extrafont)
13497 ("r-ggplot2" ,r-ggplot2)
13498 ("r-hmisc" ,r-hmisc)))
13499 (home-page "https://cran.r-project.org/web/packages/xkcd/")
13500 (synopsis "Plot ggplot2 graphics in the XKCD style")
13501 (description
13502 "This package provides the means to plot ggplot2 graphs in the style of
13503 the XKCD web comic.")
13504 (license license:gpl3)))
13505
13506 (define-public r-msigdbr
13507 (package
13508 (name "r-msigdbr")
13509 (version "6.2.1")
13510 (source
13511 (origin
13512 (method url-fetch)
13513 (uri (cran-uri "msigdbr" version))
13514 (sha256
13515 (base32
13516 "1264j1hs74kq7hyh68vfynadfi6mdpq46qm1hnwzkzzhmbzpb9cg"))))
13517 (build-system r-build-system)
13518 (propagated-inputs
13519 `(("r-dplyr" ,r-dplyr)
13520 ("r-magrittr" ,r-magrittr)
13521 ("r-rlang" ,r-rlang)
13522 ("r-tibble" ,r-tibble)))
13523 (home-page "https://github.com/igordot/msigdbr")
13524 (synopsis "MSigDB gene sets for multiple organisms")
13525 (description
13526 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
13527 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
13528 software in a standard R data frame with key-value pairs. Included are the
13529 original human gene symbols and Entrez IDs as well as the equivalents for
13530 various frequently studied model organisms such as mouse, rat, pig, fly, and
13531 yeast.")
13532 ;; The package is covered under the Expat license, but the upstream MSigDB
13533 ;; files are made available under the Creative Commons Attribution 4.0
13534 ;; International license.
13535 (license (list license:expat license:cc-by4.0))))
13536
13537 (define-public r-gridgraphics
13538 (package
13539 (name "r-gridgraphics")
13540 (version "0.4-1")
13541 (source
13542 (origin
13543 (method url-fetch)
13544 (uri (cran-uri "gridGraphics" version))
13545 (sha256
13546 (base32
13547 "1kr3p54bkv2q7agxrva30y9bkwkiq1k2cfl5z1kvyjv6f5xi4w5p"))))
13548 (properties `((upstream-name . "gridGraphics")))
13549 (build-system r-build-system)
13550 (home-page "https://github.com/pmur002/gridgraphics")
13551 (synopsis "Redraw base graphics using @code{grid} graphics")
13552 (description
13553 "This package provides functions to convert a page of plots drawn with
13554 the @code{graphics} package into identical output drawn with the @code{grid}
13555 package. The result looks like the original @code{graphics}-based plot, but
13556 consists of @code{grid} grobs and viewports that can then be manipulated with
13557 @code{grid} functions (e.g., edit grobs and revisit viewports).")
13558 (license license:gpl2+)))
13559
13560 (define-public r-farver
13561 (package
13562 (name "r-farver")
13563 (version "1.1.0")
13564 (source
13565 (origin
13566 (method url-fetch)
13567 (uri (cran-uri "farver" version))
13568 (sha256
13569 (base32
13570 "1dllgx121al374gyp9pjv1m8ip4imm8zhbgyh1970dsz2c4z71i0"))))
13571 (build-system r-build-system)
13572 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13573 (home-page "https://github.com/thomasp85/farver")
13574 (synopsis "Vectorized color conversion and comparison")
13575 (description
13576 "The encoding of color can be handled in many different ways, using
13577 different color spaces. As different color spaces have different uses,
13578 efficient conversion between these representations are important. This
13579 package provides a set of functions that gives access to very fast color space
13580 conversion and comparisons implemented in C++, and offers 100-fold speed
13581 improvements over the @code{convertColor} function in the @code{grDevices}
13582 package.")
13583 (license license:expat)))
13584
13585 (define-public r-ggplotify
13586 (package
13587 (name "r-ggplotify")
13588 (version "0.0.3")
13589 (source
13590 (origin
13591 (method url-fetch)
13592 (uri (cran-uri "ggplotify" version))
13593 (sha256
13594 (base32
13595 "14hqlpvnaq5psz1ljcpw9isa06827rg3fm5c1dx159rsjfi56yby"))))
13596 (build-system r-build-system)
13597 (propagated-inputs
13598 `(("r-ggplot2" ,r-ggplot2)
13599 ("r-gridgraphics" ,r-gridgraphics)
13600 ("r-rvcheck" ,r-rvcheck)))
13601 (home-page "https://github.com/GuangchuangYu/ggplotify")
13602 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
13603 (description
13604 "This package provides tools to convert plot function calls (using
13605 expression or formula) to @code{grob} or @code{ggplot} objects that are
13606 compatible with the @code{grid} and @code{ggplot2} environment. With this
13607 package, we are able to e.g. use @code{cowplot} to align plots produced by
13608 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
13609 converting them to @code{ggplot} objects.")
13610 (license license:artistic2.0)))
13611
13612 (define-public r-triebeard
13613 (package
13614 (name "r-triebeard")
13615 (version "0.3.0")
13616 (source
13617 (origin
13618 (method url-fetch)
13619 (uri (cran-uri "triebeard" version))
13620 (sha256
13621 (base32
13622 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
13623 (build-system r-build-system)
13624 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13625 (home-page "https://github.com/Ironholds/triebeard/")
13626 (synopsis "Radix trees in Rcpp")
13627 (description
13628 "Radix trees, or tries, are key-value data structures optimized for
13629 efficient lookups, similar in purpose to hash tables. This package provides
13630 an implementation of radix trees for use in R programming and in developing
13631 packages with Rcpp.")
13632 (license license:expat)))
13633
13634 (define-public r-tweenr
13635 (package
13636 (name "r-tweenr")
13637 (version "1.0.1")
13638 (source
13639 (origin
13640 (method url-fetch)
13641 (uri (cran-uri "tweenr" version))
13642 (sha256
13643 (base32
13644 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
13645 (build-system r-build-system)
13646 (propagated-inputs
13647 `(("r-farver" ,r-farver)
13648 ("r-magrittr" ,r-magrittr)
13649 ("r-rcpp" ,r-rcpp)
13650 ("r-rlang" ,r-rlang)))
13651 (home-page "https://github.com/thomasp85/tweenr")
13652 (synopsis "Interpolate data for smooth animations")
13653 (description
13654 "In order to create smooth animation between states of data, tweening is
13655 necessary. This package provides a range of functions for creating tweened
13656 data that can be used as basis for animation. Furthermore it adds a number of
13657 vectorized interpolaters for common R data types such as numeric, date and
13658 color.")
13659 (license license:expat)))
13660
13661 (define-public r-polyclip
13662 (package
13663 (name "r-polyclip")
13664 (version "1.10-0")
13665 (source
13666 (origin
13667 (method url-fetch)
13668 (uri (cran-uri "polyclip" version))
13669 (sha256
13670 (base32
13671 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
13672 (build-system r-build-system)
13673 (native-inputs `(("pkg-config" ,pkg-config)))
13674 (home-page "http://www.angusj.com/delphi/clipper.php")
13675 (synopsis "Polygon clipping")
13676 (description
13677 "This package provides an R port of the library Clipper. It performs
13678 polygon clipping operations (intersection, union, set minus, set difference)
13679 for polygonal regions of arbitrary complexity, including holes. It computes
13680 offset polygons (spatial buffer zones, morphological dilations, Minkowski
13681 dilations) for polygonal regions and polygonal lines. It computes the
13682 Minkowski Sum of general polygons. There is a function for removing
13683 self-intersections from polygon data.")
13684 (license license:boost1.0)))
13685
13686 (define-public r-urltools
13687 (package
13688 (name "r-urltools")
13689 (version "1.7.3")
13690 (source
13691 (origin
13692 (method url-fetch)
13693 (uri (cran-uri "urltools" version))
13694 (sha256
13695 (base32
13696 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
13697 (build-system r-build-system)
13698 (propagated-inputs
13699 `(("r-rcpp" ,r-rcpp)
13700 ("r-triebeard" ,r-triebeard)))
13701 (home-page "https://github.com/Ironholds/urltools/")
13702 (synopsis "Vectorized tools for URL handling and parsing")
13703 (description
13704 "This package provides a toolkit for all URL-handling needs, including
13705 encoding and decoding, parsing, parameter extraction and modification. All
13706 functions are designed to be both fast and entirely vectorized. It is
13707 intended to be useful for people dealing with web-related datasets, such as
13708 server-side logs, although may be useful for other situations involving large
13709 sets of URLs.")
13710 (license license:expat)))
13711
13712 (define-public r-ggforce
13713 (package
13714 (name "r-ggforce")
13715 (version "0.2.2")
13716 (source
13717 (origin
13718 (method url-fetch)
13719 (uri (cran-uri "ggforce" version))
13720 (sha256
13721 (base32
13722 "0snxx9zhcccxa7pz9pf3bjqmcmv9mz4m47v81hklnhm25jj40xg2"))))
13723 (build-system r-build-system)
13724 (propagated-inputs
13725 `(("r-ggplot2" ,r-ggplot2)
13726 ("r-gtable" ,r-gtable)
13727 ("r-mass" ,r-mass)
13728 ("r-polyclip" ,r-polyclip)
13729 ("r-rcpp" ,r-rcpp)
13730 ("r-rcppeigen" ,r-rcppeigen)
13731 ("r-rlang" ,r-rlang)
13732 ("r-scales" ,r-scales)
13733 ("r-tweenr" ,r-tweenr)))
13734 (home-page "https://ggforce.data-imaginist.com")
13735 (synopsis "Accelerating ggplot2")
13736 (description
13737 "The aim of the ggplot2 package is to aid in visual data investigations.
13738 This focus has led to a lack of facilities for composing specialized plots.
13739 Thi package aims to be a collection of mainly new statistics and geometries
13740 that fills this gap.")
13741 (license license:expat)))
13742
13743 (define-public r-europepmc
13744 (package
13745 (name "r-europepmc")
13746 (version "0.3")
13747 (source
13748 (origin
13749 (method url-fetch)
13750 (uri (cran-uri "europepmc" version))
13751 (sha256
13752 (base32
13753 "1ngqs1sqzkbwv98dd5z4cxj8bnz41wyd0g060a2vpqi3s99s4i2h"))))
13754 (build-system r-build-system)
13755 (propagated-inputs
13756 `(("r-dplyr" ,r-dplyr)
13757 ("r-httr" ,r-httr)
13758 ("r-jsonlite" ,r-jsonlite)
13759 ("r-plyr" ,r-plyr)
13760 ("r-progress" ,r-progress)
13761 ("r-purrr" ,r-purrr)
13762 ("r-urltools" ,r-urltools)
13763 ("r-xml2" ,r-xml2)))
13764 (home-page "https://github.com/ropensci/europepmc/")
13765 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
13766 (description
13767 "This package provides an R Client for the
13768 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
13769 Service}. It gives access to both metadata on life science literature and
13770 open access full texts. Europe PMC indexes all PubMed content and other
13771 literature sources including Agricola, a bibliographic database of citations
13772 to the agricultural literature, or Biological Patents. In addition to
13773 bibliographic metadata, the client allows users to fetch citations and
13774 reference lists. Links between life-science literature and other EBI
13775 databases, including ENA, PDB or ChEMBL are also accessible.")
13776 (license license:gpl3)))
13777
13778 (define-public r-ggraph
13779 (package
13780 (name "r-ggraph")
13781 (version "1.0.2")
13782 (source
13783 (origin
13784 (method url-fetch)
13785 (uri (cran-uri "ggraph" version))
13786 (sha256
13787 (base32
13788 "0fpmp326mryd1k1qvacjadksrnhbla8h960i18lmrimzrag7692c"))))
13789 (build-system r-build-system)
13790 (propagated-inputs
13791 `(("r-digest" ,r-digest)
13792 ("r-dplyr" ,r-dplyr)
13793 ("r-ggforce" ,r-ggforce)
13794 ("r-ggplot2" ,r-ggplot2)
13795 ("r-ggrepel" ,r-ggrepel)
13796 ("r-gtable" ,r-gtable)
13797 ("r-igraph" ,r-igraph)
13798 ("r-mass" ,r-mass)
13799 ("r-plyr" ,r-plyr)
13800 ("r-rcpp" ,r-rcpp)
13801 ("r-scales" ,r-scales)
13802 ("r-viridis" ,r-viridis)))
13803 (home-page "https://cran.r-project.org/web/packages/ggraph/")
13804 (synopsis "Implementation of grammar of graphics for graphs and networks")
13805 (description
13806 "The grammar of graphics as implemented in ggplot2 is a poor fit for
13807 graph and network visualizations due to its reliance on tabular data input.
13808 The ggraph package is an extension of the ggplot2 API tailored to graph
13809 visualizations and provides the same flexible approach to building up plots
13810 layer by layer.")
13811 (license license:gpl3)))
13812
13813 (define-public r-varselrf
13814 (package
13815 (name "r-varselrf")
13816 (version "0.7-8")
13817 (source
13818 (origin
13819 (method url-fetch)
13820 (uri (cran-uri "varSelRF" version))
13821 (sha256
13822 (base32
13823 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
13824 (properties `((upstream-name . "varSelRF")))
13825 (build-system r-build-system)
13826 (propagated-inputs
13827 `(("r-randomforest" ,r-randomforest)))
13828 (home-page "http://ligarto.org/rdiaz/Software/Software.html")
13829 (synopsis "Variable selection using random forests")
13830 (description
13831 "This package provides tools for the variable selection from random
13832 forests using both backwards variable elimination (for the selection of small
13833 sets of non-redundant variables) and selection based on the importance
13834 spectrum (somewhat similar to scree plots; for the selection of large,
13835 potentially highly-correlated variables). The main applications are in
13836 high-dimensional data (e.g., microarray data, and other genomics and
13837 proteomics applications).")
13838 (license license:gpl2+)))
13839
13840 (define-public r-pamr
13841 (package
13842 (name "r-pamr")
13843 (version "1.56.1")
13844 (source
13845 (origin
13846 (method url-fetch)
13847 (uri (cran-uri "pamr" version))
13848 (sha256
13849 (base32
13850 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
13851 (build-system r-build-system)
13852 (propagated-inputs
13853 `(("r-cluster" ,r-cluster)
13854 ("r-survival" ,r-survival)))
13855 (native-inputs `(("gfortran" ,gfortran)))
13856 (home-page "https://cran.r-project.org/web/packages/pamr/")
13857 (synopsis "Prediction Analysis for Microarrays")
13858 (description
13859 "This package provides some functions for sample classification in
13860 microarrays.")
13861 (license license:gpl2)))
13862
13863 (define-public r-rda
13864 (package
13865 (name "r-rda")
13866 (version "1.0.2-2.1")
13867 (source
13868 (origin
13869 (method url-fetch)
13870 (uri (cran-uri "rda" version))
13871 (sha256
13872 (base32
13873 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
13874 (build-system r-build-system)
13875 (home-page "https://cran.r-project.org/web/packages/rda/")
13876 (synopsis "Shrunken centroids regularized discriminant analysis")
13877 (description
13878 "This package provides tools for shrunken centroids regularized
13879 discriminant analysis for the purpose of classifying high dimensional data.")
13880 (license license:gpl2+)))
13881
13882 (define-public r-ggvis
13883 (package
13884 (name "r-ggvis")
13885 (version "0.4.4")
13886 (source
13887 (origin
13888 (method url-fetch)
13889 (uri (cran-uri "ggvis" version))
13890 (sha256
13891 (base32
13892 "1bxggjr2313kfy895j0fvrv4bg7yh2z87907lk48i1kn5c9flchk"))))
13893 (build-system r-build-system)
13894 (propagated-inputs
13895 `(("r-assertthat" ,r-assertthat)
13896 ("r-dplyr" ,r-dplyr)
13897 ("r-htmltools" ,r-htmltools)
13898 ("r-jsonlite" ,r-jsonlite)
13899 ("r-lazyeval" ,r-lazyeval)
13900 ("r-magrittr" ,r-magrittr)
13901 ("r-shiny" ,r-shiny)))
13902 (home-page "https://ggvis.rstudio.com/")
13903 (synopsis "Interactive grammar of graphics")
13904 (description
13905 "This package is a data visualization package for R providing an
13906 implementation of an interactive grammar of graphics, taking the best parts of
13907 ggplot2, combining them with the reactive framework of Shiny and drawing web
13908 graphics using Vega.")
13909 (license license:gpl2)))
13910
13911 (define-public r-gbm
13912 (package
13913 (name "r-gbm")
13914 (version "2.1.5")
13915 (source
13916 (origin
13917 (method url-fetch)
13918 (uri (cran-uri "gbm" version))
13919 (sha256
13920 (base32
13921 "0vs6ljaqhwwpgr8wlbhmm4v147rd82kl16rpaijqiylxcc8dxyq6"))))
13922 (build-system r-build-system)
13923 (propagated-inputs
13924 `(("r-gridextra" ,r-gridextra)
13925 ("r-lattice" ,r-lattice)
13926 ("r-survival" ,r-survival)))
13927 (home-page "https://github.com/gbm-developers/gbm")
13928 (synopsis "Generalized boosted regression models")
13929 (description
13930 "This package is an implementation of extensions to Freund and Schapire's
13931 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
13932 regression methods for least squares, absolute loss, t-distribution loss,
13933 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
13934 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
13935 and Learning to Rank measures (LambdaMart).")
13936 (license license:gpl2+)))
13937
13938 (define-public r-threejs
13939 (package
13940 (name "r-threejs")
13941 (version "0.3.1")
13942 (source
13943 (origin
13944 (method url-fetch)
13945 (uri (cran-uri "threejs" version))
13946 (sha256
13947 (base32
13948 "1s3rdlzy7man6177ycayg6xsh6k8y1r9rdj9yzn3b93j2rs0nxbi"))))
13949 (build-system r-build-system)
13950 (arguments
13951 `(#:modules ((guix build utils)
13952 (guix build r-build-system)
13953 (srfi srfi-1)
13954 (ice-9 popen))
13955 #:phases
13956 (modify-phases %standard-phases
13957 (add-after 'unpack 'process-javascript
13958 (lambda* (#:key inputs #:allow-other-keys)
13959 (with-directory-excursion "inst"
13960 (call-with-values
13961 (lambda ()
13962 (unzip2
13963 `((,(assoc-ref inputs "js-jquery")
13964 "htmlwidgets/lib/jquery/jquery.min.js")
13965 (,(assoc-ref inputs "js-threejs-85")
13966 "htmlwidgets/lib/threejs-85/three.min.js"))))
13967 (lambda (sources targets)
13968 (for-each (lambda (source target)
13969 (format #t "Processing ~a --> ~a~%"
13970 source target)
13971 (delete-file target)
13972 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
13973 (call-with-output-file target
13974 (lambda (port)
13975 (dump-port minified port)))))
13976 sources targets))))
13977 #t)))))
13978 (propagated-inputs
13979 `(("r-base64enc" ,r-base64enc)
13980 ("r-crosstalk" ,r-crosstalk)
13981 ("r-htmlwidgets" ,r-htmlwidgets)
13982 ("r-igraph" ,r-igraph)))
13983 (native-inputs
13984 `(("uglify-js" ,uglify-js)
13985 ("js-jquery"
13986 ,(origin
13987 (method url-fetch)
13988 (uri "https://code.jquery.com/jquery-3.3.1.js")
13989 (sha256
13990 (base32
13991 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
13992 ("js-threejs-85"
13993 ,(origin
13994 (method url-fetch)
13995 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r85/build/three.js")
13996 (sha256
13997 (base32
13998 "17khh3dmijdjw4qb9qih1rqhxgrmm3pc6w8lzdx6rf6a3mrc9xnl"))))))
13999 (home-page "https://bwlewis.github.io/rthreejs")
14000 (synopsis "Interactive 3D scatter plots, networks and globes")
14001 (description
14002 "Create interactive 3D scatter plots, network plots, and globes in R
14003 using the three.js visualization library.")
14004 (license license:expat)))
14005
14006 (define-public r-mlbench
14007 (package
14008 (name "r-mlbench")
14009 (version "2.1-1")
14010 (source
14011 (origin
14012 (method url-fetch)
14013 (uri (cran-uri "mlbench" version))
14014 (sha256
14015 (base32
14016 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
14017 (build-system r-build-system)
14018 (home-page "https://cran.r-project.org/web/packages/mlbench/")
14019 (synopsis "Machine learning benchmark problems")
14020 (description
14021 "This package provides a collection of artificial and real-world machine
14022 learning benchmark problems, including, e.g., several data sets from the UCI
14023 repository.")
14024 (license license:gpl2)))
14025
14026 (define-public r-mpm
14027 (package
14028 (name "r-mpm")
14029 (version "1.0-22")
14030 (source
14031 (origin
14032 (method url-fetch)
14033 (uri (cran-uri "mpm" version))
14034 (sha256
14035 (base32
14036 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
14037 (build-system r-build-system)
14038 (propagated-inputs
14039 `(("r-kernsmooth" ,r-kernsmooth)
14040 ("r-mass" ,r-mass)))
14041 (home-page "http://mpm.r-forge.r-project.org")
14042 (synopsis "Multivariate projection methods")
14043 (description
14044 "This is a package for exploratory graphical analysis of multivariate
14045 data, specifically gene expression data with different projection methods:
14046 principal component analysis, correspondence analysis, spectral map
14047 analysis.")
14048 (license license:gpl2+)))
14049
14050 (define-public r-png
14051 (package
14052 (name "r-png")
14053 (version "0.1-7")
14054 (source (origin
14055 (method url-fetch)
14056 (uri (cran-uri "png" version))
14057 (sha256
14058 (base32
14059 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
14060 (build-system r-build-system)
14061 (inputs
14062 `(("libpng" ,libpng)
14063 ("zlib" ,zlib)))
14064 (home-page "http://www.rforge.net/png/")
14065 (synopsis "Read and write PNG images")
14066 (description
14067 "This package provides an easy and simple way to read, write and display
14068 bitmap images stored in the PNG format. It can read and write both files and
14069 in-memory raw vectors.")
14070 ;; Any of these GPL versions.
14071 (license (list license:gpl2 license:gpl3))))
14072
14073 (define-public r-ggcorrplot
14074 (package
14075 (name "r-ggcorrplot")
14076 (version "0.1.3")
14077 (source
14078 (origin
14079 (method url-fetch)
14080 (uri (cran-uri "ggcorrplot" version))
14081 (sha256
14082 (base32
14083 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
14084 (build-system r-build-system)
14085 (propagated-inputs
14086 `(("r-ggplot2" ,r-ggplot2)
14087 ("r-reshape2" ,r-reshape2)))
14088 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
14089 (synopsis "Visualization of a correlation matrix using ggplot2")
14090 (description
14091 "The ggcorrplot package can be used to visualize easily a correlation
14092 matrix using ggplot2. It provides a solution for reordering the correlation
14093 matrix and displays the significance level on the plot. It also includes a
14094 function for computing a matrix of correlation p-values.")
14095 (license license:gpl2)))
14096
14097 (define-public r-flexdashboard
14098 (package
14099 (name "r-flexdashboard")
14100 (version "0.5.1.1")
14101 (source
14102 (origin
14103 (method url-fetch)
14104 (uri (cran-uri "flexdashboard" version))
14105 (sha256
14106 (base32
14107 "0fy3nbrr67zqgd44r2mc850s5sp0hzfcw3zqs15m8kxzj1aw067x"))))
14108 (build-system r-build-system)
14109 (arguments
14110 `(#:modules ((guix build utils)
14111 (guix build r-build-system)
14112 (srfi srfi-1)
14113 (srfi srfi-26)
14114 (ice-9 popen)
14115 (ice-9 textual-ports))
14116 #:phases
14117 (modify-phases %standard-phases
14118 (add-after 'unpack 'process-javascript
14119 (lambda* (#:key inputs #:allow-other-keys)
14120 (with-directory-excursion "inst"
14121 ;; Concatenate all components of prism.js
14122 (let ((contents (string-join
14123 (map (lambda (name)
14124 (call-with-input-file
14125 (assoc-ref inputs name)
14126 get-string-all))
14127 (list "js-prism"
14128 "js-prism-r"
14129 "js-prism-line-numbers"))
14130 "\n")))
14131 (call-with-output-file "prism-src.js"
14132 (cut display contents <>)))
14133 (call-with-values
14134 (lambda ()
14135 (unzip2
14136 `(("www/stickytableheaders/jquery.stickytableheaders.js"
14137 "www/stickytableheaders/jquery.stickytableheaders.min.js")
14138 ("www/sly/sly.js"
14139 "www/sly/sly.min.js")
14140 ("prism-src.js"
14141 "www/prism/prism.js")
14142 (,(assoc-ref inputs "js-raphael")
14143 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
14144 (,(assoc-ref inputs "js-featherlight")
14145 "www/featherlight/featherlight.min.js"))))
14146 (lambda (sources targets)
14147 (for-each (lambda (source target)
14148 (format #t "Processing ~a --> ~a~%"
14149 source target)
14150 (delete-file target)
14151 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14152 (call-with-output-file target
14153 (lambda (port)
14154 (dump-port minified port)))))
14155 sources targets))))
14156 #t)))))
14157 (propagated-inputs
14158 `(("r-htmltools" ,r-htmltools)
14159 ("r-htmlwidgets" ,r-htmlwidgets)
14160 ("r-jsonlite" ,r-jsonlite)
14161 ("r-knitr" ,r-knitr)
14162 ("r-rmarkdown" ,r-rmarkdown)
14163 ("r-shiny" ,r-shiny)))
14164 (native-inputs
14165 `(("uglify-js" ,uglify-js)
14166 ("js-raphael"
14167 ,(origin
14168 (method url-fetch)
14169 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
14170 (sha256
14171 (base32
14172 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
14173 ("js-prism"
14174 ,(origin
14175 (method url-fetch)
14176 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
14177 (sha256
14178 (base32
14179 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
14180 ("js-prism-r"
14181 ,(origin
14182 (method url-fetch)
14183 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
14184 (sha256
14185 (base32
14186 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
14187 ("js-prism-line-numbers"
14188 ,(origin
14189 (method url-fetch)
14190 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
14191 (sha256
14192 (base32
14193 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
14194 ("js-featherlight"
14195 ,(origin
14196 (method url-fetch)
14197 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
14198 (sha256
14199 (base32
14200 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
14201 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
14202 (synopsis "R Markdown format for flexible dashboards")
14203 (description
14204 "This package provides an R Markdown format for converting an R Markdown
14205 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
14206 of its components to the containing web page.")
14207 (license license:expat)))
14208
14209 (define-public r-preseqr
14210 (package
14211 (name "r-preseqr")
14212 (version "4.0.0")
14213 (source
14214 (origin
14215 (method url-fetch)
14216 (uri (cran-uri "preseqR" version))
14217 (sha256
14218 (base32
14219 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
14220 (properties `((upstream-name . "preseqR")))
14221 (build-system r-build-system)
14222 (propagated-inputs
14223 `(("r-polynom" ,r-polynom)))
14224 (home-page "https://cran.r-project.org/web/packages/preseqR/")
14225 (synopsis "Predicting species accumulation curves")
14226 (description
14227 "This package can be used to predict the r-species accumulation
14228 curve (r-SAC), which is the number of species represented at least r times as
14229 a function of the sampling effort. When r = 1, the curve is known as the
14230 species accumulation curve, or the library complexity curve in high-throughput
14231 genomic sequencing. The package includes both parametric and nonparametric
14232 methods, as described by Deng C, et al. (2018).")
14233 (license license:gpl3)))
14234
14235 (define-public r-mapplots
14236 (package
14237 (name "r-mapplots")
14238 (version "1.5.1")
14239 (source
14240 (origin
14241 (method url-fetch)
14242 (uri (cran-uri "mapplots" version))
14243 (sha256
14244 (base32
14245 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
14246 (build-system r-build-system)
14247 (home-page "https://cran.r-project.org/web/packages/mapplots/")
14248 (synopsis "Data visualization on maps")
14249 (description
14250 "This package helps you create simple maps; add sub-plots like pie plots
14251 to a map or any other plot; format, plot and export gridded data. The package
14252 was developed for displaying fisheries data but most functions can be used for
14253 more generic data visualisation.")
14254 (license license:gpl2+)))
14255
14256 (define-public r-pmcmr
14257 (package
14258 (name "r-pmcmr")
14259 (version "4.3")
14260 (source
14261 (origin
14262 (method url-fetch)
14263 (uri (cran-uri "PMCMR" version))
14264 (sha256
14265 (base32
14266 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
14267 (properties `((upstream-name . "PMCMR")))
14268 (build-system r-build-system)
14269 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
14270 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
14271 (description
14272 "This is a deprecated package for calculating pairwise multiple
14273 comparisons of mean rank sums. This package is superseded by the novel
14274 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
14275 compatibility of dependent packages for some time.")
14276 (license license:gpl3+)))
14277
14278 (define-public r-downloader
14279 (package
14280 (name "r-downloader")
14281 (version "0.4")
14282 (source
14283 (origin
14284 (method url-fetch)
14285 (uri (cran-uri "downloader" version))
14286 (sha256
14287 (base32
14288 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
14289 (build-system r-build-system)
14290 (propagated-inputs
14291 `(("r-digest" ,r-digest)))
14292 (home-page "https://github.com/wch/downloader")
14293 (synopsis "Download files over HTTP and HTTPS")
14294 (description
14295 "This package provides a wrapper for the @code{download.file} function,
14296 making it possible to download files over HTTPS across platforms. The
14297 @code{RCurl} package provides this functionality (and much more) but has
14298 external dependencies. This package has is implemented purely in R.")
14299 (license license:gpl2)))
14300
14301 (define-public r-rex
14302 (package
14303 (name "r-rex")
14304 (version "1.1.2")
14305 (source
14306 (origin
14307 (method url-fetch)
14308 (uri (cran-uri "rex" version))
14309 (sha256
14310 (base32
14311 "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x"))))
14312 (build-system r-build-system)
14313 (propagated-inputs
14314 `(("r-lazyeval" ,r-lazyeval)
14315 ("r-magrittr" ,r-magrittr)))
14316 (home-page "https://github.com/kevinushey/rex")
14317 (synopsis "Friendly regular expressions")
14318 (description
14319 "This package provides a friendly interface for the construction of
14320 regular expressions. Regular expressions are a very powerful feature, however
14321 they are often difficult to interpret. Rex allows you to build complex
14322 regular expressions from human readable expressions")
14323 (license license:expat)))
14324
14325 (define-public r-sctransform
14326 (package
14327 (name "r-sctransform")
14328 (version "0.2.0")
14329 (source
14330 (origin
14331 (method url-fetch)
14332 (uri (cran-uri "sctransform" version))
14333 (sha256
14334 (base32
14335 "1r5kiqqs318q59h2i8m7c6nhghp9w6q26ss2y5a390lkhsawgx6p"))))
14336 (build-system r-build-system)
14337 (propagated-inputs
14338 `(("r-future" ,r-future)
14339 ("r-future-apply" ,r-future-apply)
14340 ("r-ggplot2" ,r-ggplot2)
14341 ("r-gridextra" ,r-gridextra)
14342 ("r-mass" ,r-mass)
14343 ("r-matrix" ,r-matrix)
14344 ("r-rcpp" ,r-rcpp)
14345 ("r-rcppeigen" ,r-rcppeigen)
14346 ("r-reshape2" ,r-reshape2)))
14347 (home-page "https://github.com/ChristophH/sctransform")
14348 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
14349 (description
14350 "This package provides a normalization method for single-cell UMI count
14351 data using a variance stabilizing transformation. The transformation is based
14352 on a negative binomial regression model with regularized parameters. As part
14353 of the same regression framework, this package also provides functions for
14354 batch correction, and data correction.")
14355 (license license:gpl3)))
14356
14357 (define-public r-styler
14358 (package
14359 (name "r-styler")
14360 (version "1.1.1")
14361 (source
14362 (origin
14363 (method url-fetch)
14364 (uri (cran-uri "styler" version))
14365 (sha256
14366 (base32
14367 "1k660lpjvd64gnf6bndcb1cq3qxsvik928kcn6271zmkhja5rgyb"))))
14368 (build-system r-build-system)
14369 (propagated-inputs
14370 `(("r-backports" ,r-backports)
14371 ("r-cli" ,r-cli)
14372 ("r-magrittr" ,r-magrittr)
14373 ("r-purrr" ,r-purrr)
14374 ("r-rematch2" ,r-rematch2)
14375 ("r-rlang" ,r-rlang)
14376 ("r-rprojroot" ,r-rprojroot)
14377 ("r-tibble" ,r-tibble)
14378 ("r-withr" ,r-withr)
14379 ("r-xfun" ,r-xfun)))
14380 (home-page "https://github.com/r-lib/styler")
14381 (synopsis "Non-invasive pretty printing of R code")
14382 (description
14383 "This is a package for pretty-printing R code without changing the user's
14384 formatting intent.")
14385 (license license:gpl3)))
14386
14387 (define-public r-scrime
14388 (package
14389 (name "r-scrime")
14390 (version "1.3.5")
14391 (source
14392 (origin
14393 (method url-fetch)
14394 (uri (cran-uri "scrime" version))
14395 (sha256
14396 (base32
14397 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
14398 (build-system r-build-system)
14399 (home-page "https://cran.r-project.org/web/packages/scrime/")
14400 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
14401 (description
14402 "This package provides tools for the analysis of high-dimensional data
14403 developed/implemented at the group \"Statistical Complexity Reduction In
14404 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
14405 the functions can also be applied to other types of categorical data.")
14406 (license license:gpl2)))
14407
14408 (define-public r-pbmcapply
14409 (package
14410 (name "r-pbmcapply")
14411 (version "1.5.0")
14412 (source
14413 (origin
14414 (method url-fetch)
14415 (uri (cran-uri "pbmcapply" version))
14416 (sha256
14417 (base32
14418 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
14419 (build-system r-build-system)
14420 (home-page "https://github.com/kvnkuang/pbmcapply")
14421 (synopsis "Track the progress of apply procedures with a progress bar")
14422 (description
14423 "This light-weight package helps you track and visualize the progress of
14424 parallel versions of vectorized R functions of the @code{mc*apply} family.")
14425 (license license:expat)))
14426
14427 (define-public r-blme
14428 (package
14429 (name "r-blme")
14430 (version "1.0-4")
14431 (source
14432 (origin
14433 (method url-fetch)
14434 (uri (cran-uri "blme" version))
14435 (sha256
14436 (base32
14437 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
14438 (build-system r-build-system)
14439 (propagated-inputs `(("r-lme4" ,r-lme4)))
14440 (home-page "https://github.com/vdorie/blme")
14441 (synopsis "Bayesian linear mixed-effects models")
14442 (description
14443 "This package provides tools for maximum a posteriori estimation for
14444 linear and generalized linear mixed-effects models in a Bayesian setting. It
14445 extends the lme4 package.")
14446 (license license:gpl2+)))
14447
14448 (define-public r-batchtools
14449 (package
14450 (name "r-batchtools")
14451 (version "0.9.11")
14452 (source
14453 (origin
14454 (method url-fetch)
14455 (uri (cran-uri "batchtools" version))
14456 (sha256
14457 (base32
14458 "02mj21ypcjv5fs7ajf63p6bq0cyvihdl55hlpqx6kmsfjin1cr0v"))))
14459 (build-system r-build-system)
14460 (propagated-inputs
14461 `(("r-backports" ,r-backports)
14462 ("r-base64url" ,r-base64url)
14463 ("r-brew" ,r-brew)
14464 ("r-checkmate" ,r-checkmate)
14465 ("r-data-table" ,r-data-table)
14466 ("r-digest" ,r-digest)
14467 ("r-fs" ,r-fs)
14468 ("r-progress" ,r-progress)
14469 ("r-r6" ,r-r6)
14470 ("r-rappdirs" ,r-rappdirs)
14471 ("r-stringi" ,r-stringi)
14472 ("r-withr" ,r-withr)))
14473 (home-page "https://github.com/mllg/batchtools")
14474 (synopsis "Tools for computation on batch systems")
14475 (description
14476 "As a successor of the packages BatchJobs and BatchExperiments, this
14477 package provides a parallel implementation of the Map function for high
14478 performance computing systems managed by various schedulers. A multicore and
14479 socket mode allow the parallelization on a local machines, and multiple
14480 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
14481 the package provides an abstraction mechanism to define large-scale computer
14482 experiments in a well-organized and reproducible way.")
14483 (license license:lgpl3)))
14484
14485 (define-public r-clue
14486 (package
14487 (name "r-clue")
14488 (version "0.3-57")
14489 (source
14490 (origin
14491 (method url-fetch)
14492 (uri (cran-uri "clue" version))
14493 (sha256
14494 (base32
14495 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
14496 (build-system r-build-system)
14497 (propagated-inputs `(("r-cluster" ,r-cluster)))
14498 (home-page "https://cran.r-project.org/web/packages/clue/")
14499 (synopsis "Tools for analyzing cluster ensembles")
14500 (description "Cluster ensembles are collections of individual solutions to
14501 a given clustering problem which are useful or necessary to consider in a wide
14502 range of applications. This R package provides an extensible computational
14503 environment for creating and analyzing cluster ensembles, with basic data
14504 structures for representing partitions and hierarchies, and facilities for
14505 computing on them, including methods for measuring proximity and obtaining
14506 consensus and secondary clusterings.")
14507 (license license:gpl2)))
14508
14509 (define-public r-sitmo
14510 (package
14511 (name "r-sitmo")
14512 (version "2.0.1")
14513 (source
14514 (origin
14515 (method url-fetch)
14516 (uri (cran-uri "sitmo" version))
14517 (sha256
14518 (base32
14519 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
14520 (build-system r-build-system)
14521 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14522 (home-page "https://github.com/coatless/sitmo/")
14523 (synopsis "Parallel pseudo random number generator header files")
14524 (description
14525 "This package provides two high quality and fast PPRNGs that may be used
14526 in an OpenMP parallel environment. In addition, there is a generator for one
14527 dimensional low-discrepancy sequence.")
14528 (license license:expat)))
14529
14530 (define-public r-dqrng
14531 (package
14532 (name "r-dqrng")
14533 (version "0.2.1")
14534 (source
14535 (origin
14536 (method url-fetch)
14537 (uri (cran-uri "dqrng" version))
14538 (sha256
14539 (base32
14540 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
14541 (build-system r-build-system)
14542 (propagated-inputs
14543 `(("r-bh" ,r-bh)
14544 ("r-rcpp" ,r-rcpp)
14545 ("r-sitmo" ,r-sitmo)))
14546 (home-page "https://www.daqana.org/dqrng")
14547 (synopsis "Fast pseudo random number generators")
14548 (description
14549 "Several fast random number generators are provided as C++ header-only
14550 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
14551 Additionally, fast functions for generating random numbers according to a
14552 uniform, normal and exponential distribution are included. The latter two use
14553 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
14554 functions are exported to R and as a C++ interface and are enabled for use
14555 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
14556 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
14557 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
14558 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
14559 ;; whole is distributed under the terms of the AGPL 3.
14560 (license license:agpl3)))
14561
14562 (define-public r-dalex
14563 (package
14564 (name "r-dalex")
14565 (version "0.4")
14566 (source
14567 (origin
14568 (method url-fetch)
14569 (uri (cran-uri "DALEX" version))
14570 (sha256
14571 (base32
14572 "1mr8lqq8s4aacmh7xdhmkmv8vsjqjczlqlaw27xnsljgj2kgq87a"))))
14573 (properties `((upstream-name . "DALEX")))
14574 (build-system r-build-system)
14575 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
14576 (home-page "https://pbiecek.github.io/DALEX/")
14577 (synopsis "Descriptive machine learning explanations")
14578 (description
14579 "Machine Learning models are widely used and have various applications in
14580 classification or regression. Models created with boosting, bagging, stacking
14581 or similar techniques are often used due to their high performance, but such
14582 black-box models usually lack interpretability. The DALEX package contains
14583 various explainers that help to understand the link between input variables
14584 and model output.")
14585 ;; Any version of the GPL
14586 (license license:gpl3+)))
14587
14588 (define-public r-enrichr
14589 (package
14590 (name "r-enrichr")
14591 (version "1.0")
14592 (source
14593 (origin
14594 (method url-fetch)
14595 (uri (cran-uri "enrichR" version))
14596 (sha256
14597 (base32
14598 "0lfdr45sdyqhvgz8q4qdbk12mpv86d6id665kq6aaslgr8jggfmn"))))
14599 (properties `((upstream-name . "enrichR")))
14600 (build-system r-build-system)
14601 (propagated-inputs
14602 `(("r-httr" ,r-httr)
14603 ("r-rjson" ,r-rjson)))
14604 (home-page "https://cran.r-project.org/web/packages/enrichR/")
14605 (synopsis "R Interface to Enrichr database for analyzing gene sets")
14606 (description
14607 "This package provides an R interface to all Enrichr databases, a
14608 web-based tool for analyzing gene sets and returns any enrichment of common
14609 annotated biological functions.")
14610 (license license:gpl2+)))
14611
14612 (define-public r-plot3d
14613 (package
14614 (name "r-plot3d")
14615 (version "1.1.1")
14616 (source
14617 (origin
14618 (method url-fetch)
14619 (uri (cran-uri "plot3D" version))
14620 (sha256
14621 (base32
14622 "0chn70fqwyca8lbnjnpbcj08ni0dfbax2gjmzhk2c4w72c04mzpn"))))
14623 (properties `((upstream-name . "plot3D")))
14624 (build-system r-build-system)
14625 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
14626 (home-page "https://cran.r-project.org/web/packages/plot3D")
14627 (synopsis "Plot multi-dimensional data")
14628 (description
14629 "This package provides functions for viewing 2D and 3D data, including
14630 perspective plots, slice plots, surface plots, scatter plots, etc. It
14631 includes data sets from oceanography.")
14632 (license license:gpl3+)))
14633
14634 (define-public r-ggfortify
14635 (package
14636 (name "r-ggfortify")
14637 (version "0.4.7")
14638 (source
14639 (origin
14640 (method url-fetch)
14641 (uri (cran-uri "ggfortify" version))
14642 (sha256
14643 (base32
14644 "1wk9j0xg5hj9i1vf62qjiphv8cbsgq7y6baay3pfl3wyb2dwgci0"))))
14645 (build-system r-build-system)
14646 (propagated-inputs
14647 `(("r-dplyr" ,r-dplyr)
14648 ("r-ggplot2" ,r-ggplot2)
14649 ("r-gridextra" ,r-gridextra)
14650 ("r-scales" ,r-scales)
14651 ("r-stringr" ,r-stringr)
14652 ("r-tibble" ,r-tibble)
14653 ("r-tidyr" ,r-tidyr)))
14654 (home-page "https://github.com/sinhrks/ggfortify")
14655 (synopsis "Data visualization tools for statistical analysis results")
14656 (description
14657 "This package provides unified plotting tools for statistics commonly
14658 used, such as GLM, time series, PCA families, clustering and survival
14659 analysis. The package offers a single plotting interface for these analysis
14660 results and plots in a unified style using the @code{ggplot2} package.")
14661 (license license:gpl2)))
14662
14663 (define-public r-refmanager
14664 (package
14665 (name "r-refmanager")
14666 (version "1.2.12")
14667 (source
14668 (origin
14669 (method url-fetch)
14670 (uri (cran-uri "RefManageR" version))
14671 (sha256
14672 (base32
14673 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
14674 (properties `((upstream-name . "RefManageR")))
14675 (build-system r-build-system)
14676 (propagated-inputs
14677 `(("r-bibtex" ,r-bibtex)
14678 ("r-httr" ,r-httr)
14679 ("r-jsonlite" ,r-jsonlite)
14680 ("r-lubridate" ,r-lubridate)
14681 ("r-plyr" ,r-plyr)
14682 ("r-stringr" ,r-stringr)
14683 ("r-xml2" ,r-xml2)))
14684 (home-page "https://github.com/ropensci/RefManageR/")
14685 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
14686 (description
14687 "This package provides tools for importing and working with bibliographic
14688 references. It greatly enhances the @code{bibentry} class by providing a
14689 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
14690 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
14691 by various formats for name lists (author by last names, translator by full
14692 names, etc.). Entries can be updated, combined, sorted, printed in a number
14693 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
14694 into R and converted to @code{BibEntry} objects.")
14695 ;; Any of these licenses may be picked.
14696 (license (list license:gpl2 license:gpl3 license:bsd-3))))
14697
14698 (define-public r-citr
14699 (package
14700 (name "r-citr")
14701 (version "0.3.0")
14702 (source
14703 (origin
14704 (method url-fetch)
14705 (uri (cran-uri "citr" version))
14706 (sha256
14707 (base32
14708 "0pik6s6xk5768s3kkppw2192dj455py53gsn6k2b7xgg96ircy0g"))))
14709 (build-system r-build-system)
14710 (propagated-inputs
14711 `(("r-assertthat" ,r-assertthat)
14712 ("r-bibtex" ,r-bibtex)
14713 ("r-curl" ,r-curl)
14714 ("r-httr" ,r-httr)
14715 ("r-miniui" ,r-miniui)
14716 ("r-refmanager" ,r-refmanager)
14717 ("r-rstudioapi" ,r-rstudioapi)
14718 ("r-shiny" ,r-shiny)
14719 ("r-shinyjs" ,r-shinyjs)
14720 ("r-yaml" ,r-yaml)))
14721 (home-page "https://github.com/crsh/citr")
14722 (synopsis "RStudio add-in to insert Markdown citations")
14723 (description
14724 "This package provides functions and an RStudio add-in that search a
14725 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
14726 the current document.")
14727 (license license:expat)))
14728
14729 (define-public r-xgboost
14730 (package
14731 (name "r-xgboost")
14732 (version "0.82.1")
14733 (source
14734 (origin
14735 (method url-fetch)
14736 (uri (cran-uri "xgboost" version))
14737 (sha256
14738 (base32
14739 "0plhx63wcm4syslzmjfv6bdgaqn96fnav048hrj0vxk4dzgfp8sq"))))
14740 (build-system r-build-system)
14741 (propagated-inputs
14742 `(("r-data-table" ,r-data-table)
14743 ("r-magrittr" ,r-magrittr)
14744 ("r-matrix" ,r-matrix)
14745 ("r-stringi" ,r-stringi)))
14746 (home-page "https://github.com/dmlc/xgboost")
14747 (synopsis "Extreme gradient boosting")
14748 (description
14749 "This package provides an R interface to Extreme Gradient Boosting, which
14750 is an efficient implementation of the gradient boosting framework from Chen
14751 and Guestrin (2016). The package includes efficient linear model solver and
14752 tree learning algorithms. The package can automatically do parallel
14753 computation on a single machine. It supports various objective functions,
14754 including regression, classification and ranking. The package is made to be
14755 extensible, so that users are also allowed to define their own objectives
14756 easily.")
14757 (license license:asl2.0)))
14758
14759 (define-public r-umap
14760 (package
14761 (name "r-umap")
14762 (version "0.2.2.0")
14763 (source
14764 (origin
14765 (method url-fetch)
14766 (uri (cran-uri "umap" version))
14767 (sha256
14768 (base32
14769 "1s82w9gy1387h7cprjfbhp49l89zbmn3gc9s0wzqb1s73nza9n31"))))
14770 (build-system r-build-system)
14771 (propagated-inputs
14772 `(("r-rcpp" ,r-rcpp)
14773 ("r-reticulate" ,r-reticulate)
14774 ("r-rspectra" ,r-rspectra)))
14775 (home-page "https://github.com/tkonopka/umap")
14776 (synopsis "Uniform manifold approximation and projection")
14777 (description
14778 "Uniform manifold approximation and projection is a technique for
14779 dimension reduction. This package provides an interface to the UMAP algorithm
14780 in R, including a translation of the original algorithm into R.")
14781 (license license:expat)))
14782
14783 (define-public r-uwot
14784 (package
14785 (name "r-uwot")
14786 (version "0.1.3")
14787 (source
14788 (origin
14789 (method url-fetch)
14790 (uri (cran-uri "uwot" version))
14791 (sha256
14792 (base32
14793 "1mq6qi8q9xslh1b99srj480s2a08pfv4bs9m2ykyijj44j9fcdj9"))))
14794 (build-system r-build-system)
14795 (propagated-inputs
14796 `(("r-dqrng" ,r-dqrng)
14797 ("r-fnn" ,r-fnn)
14798 ("r-irlba" ,r-irlba)
14799 ("r-matrix" ,r-matrix)
14800 ("r-rcpp" ,r-rcpp)
14801 ("r-rcppannoy" ,r-rcppannoy)
14802 ("r-rcppparallel" ,r-rcppparallel)
14803 ("r-rcppprogress" ,r-rcppprogress)
14804 ("r-rspectra" ,r-rspectra)))
14805 (home-page "https://github.com/jlmelville/uwot")
14806 (synopsis "Uniform manifold approximation and projection")
14807 (description
14808 "This package provides an implementation of the Uniform Manifold
14809 Approximation and Projection dimensionality reduction by McInnes et
14810 al. (2018). It also provides means to transform new data and to carry out
14811 supervised dimensionality reduction. An implementation of the related
14812 LargeVis method of Tang et al. (2016) is also provided.")
14813 (license license:gpl3)))
14814
14815 (define-public r-kableextra
14816 (package
14817 (name "r-kableextra")
14818 (version "1.1.0")
14819 (source
14820 (origin
14821 (method url-fetch)
14822 (uri (cran-uri "kableExtra" version))
14823 (sha256
14824 (base32
14825 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
14826 (properties `((upstream-name . "kableExtra")))
14827 (build-system r-build-system)
14828 (propagated-inputs
14829 `(("r-digest" ,r-digest)
14830 ("r-glue" ,r-glue)
14831 ("r-htmltools" ,r-htmltools)
14832 ("r-knitr" ,r-knitr)
14833 ("r-magrittr" ,r-magrittr)
14834 ("r-readr" ,r-readr)
14835 ("r-rmarkdown" ,r-rmarkdown)
14836 ("r-rstudioapi" ,r-rstudioapi)
14837 ("r-rvest" ,r-rvest)
14838 ("r-scales" ,r-scales)
14839 ("r-stringr" ,r-stringr)
14840 ("r-viridislite" ,r-viridislite)
14841 ("r-webshot" ,r-webshot)
14842 ("r-xml2" ,r-xml2)))
14843 (home-page "https://haozhu233.github.io/kableExtra/")
14844 (synopsis "Construct complex tables with pipe syntax")
14845 (description
14846 "Build complex HTML or LaTeX tables using @code{kable()} from
14847 @code{knitr} and the piping syntax from @code{magrittr}. The function
14848 @code{kable()} is a light weight table generator coming from @code{knitr}.
14849 This package simplifies the way to manipulate the HTML or LaTeX codes
14850 generated by @code{kable()} and allows users to construct complex tables and
14851 customize styles using a readable syntax.")
14852 (license license:expat)))
14853
14854 (define-public r-glasso
14855 (package
14856 (name "r-glasso")
14857 (version "1.10")
14858 (source
14859 (origin
14860 (method url-fetch)
14861 (uri (cran-uri "glasso" version))
14862 (sha256
14863 (base32
14864 "0nshpx14v2yny7lr8ll6nnz71n0f02sddh2c2dglfprbk89p9yp6"))))
14865 (build-system r-build-system)
14866 (native-inputs `(("gfortran" ,gfortran)))
14867 (home-page "http://www-stat.stanford.edu/~tibs/glasso")
14868 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
14869 (description
14870 "This is a package for estimation of a sparse inverse covariance matrix
14871 using a lasso (L1) penalty. Facilities are provided for estimates along a
14872 path of values for the regularization parameter.")
14873 (license license:gpl2)))
14874
14875 (define-public r-rhpcblasctl
14876 (package
14877 (name "r-rhpcblasctl")
14878 (version "0.18-205")
14879 (source
14880 (origin
14881 (method url-fetch)
14882 (uri (cran-uri "RhpcBLASctl" version))
14883 (sha256
14884 (base32
14885 "1ls2286fvrp1g7p8v4l6axznychh3qndranfpzqz806cm9ml1cdp"))))
14886 (properties `((upstream-name . "RhpcBLASctl")))
14887 (build-system r-build-system)
14888 (home-page "http://prs.ism.ac.jp/~nakama/Rhpc/")
14889 (synopsis "Control the number of threads on BLAS")
14890 (description
14891 "This package allows you to control the number of threads the BLAS
14892 library uses. It is also possible to control the number of threads in
14893 OpenMP.")
14894 (license license:agpl3+)))