gnu: Add ronn-ng
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
5 ;;; Copyright © 2016, 2017, 2018, 2020 Roel Janssen <roel@gnu.org>
6 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
7 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
8 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
9 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
10 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
11 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
12 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
13 ;;; Copyright © 2018, 2020 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
14 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
15 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
16 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
18 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
19 ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
20 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
21 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
22 ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
23 ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
24 ;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
25 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
26 ;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
27 ;;;
28 ;;; This file is part of GNU Guix.
29 ;;;
30 ;;; GNU Guix is free software; you can redistribute it and/or modify it
31 ;;; under the terms of the GNU General Public License as published by
32 ;;; the Free Software Foundation; either version 3 of the License, or (at
33 ;;; your option) any later version.
34 ;;;
35 ;;; GNU Guix is distributed in the hope that it will be useful, but
36 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
37 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 ;;; GNU General Public License for more details.
39 ;;;
40 ;;; You should have received a copy of the GNU General Public License
41 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
42
43 (define-module (gnu packages cran)
44 #:use-module ((guix licenses) #:prefix license:)
45 #:use-module (guix packages)
46 #:use-module (guix download)
47 #:use-module (guix git-download)
48 #:use-module (guix utils)
49 #:use-module (guix build-system r)
50 #:use-module (gnu packages algebra)
51 #:use-module (gnu packages autotools)
52 #:use-module (gnu packages base)
53 #:use-module (gnu packages bioinformatics)
54 #:use-module (gnu packages c)
55 #:use-module (gnu packages compression)
56 #:use-module (gnu packages curl)
57 #:use-module (gnu packages databases)
58 #:use-module (gnu packages fontutils)
59 #:use-module (gnu packages gcc)
60 #:use-module (gnu packages geo)
61 #:use-module (gnu packages ghostscript)
62 #:use-module (gnu packages gl)
63 #:use-module (gnu packages gnome)
64 #:use-module (gnu packages graph)
65 #:use-module (gnu packages gtk)
66 #:use-module (gnu packages haskell-xyz)
67 #:use-module (gnu packages icu4c)
68 #:use-module (gnu packages image)
69 #:use-module (gnu packages imagemagick)
70 #:use-module (gnu packages java)
71 #:use-module (gnu packages javascript)
72 #:use-module (gnu packages lisp-xyz)
73 #:use-module (gnu packages machine-learning)
74 #:use-module (gnu packages maths)
75 #:use-module (gnu packages mpi)
76 #:use-module (gnu packages multiprecision)
77 #:use-module (gnu packages networking)
78 #:use-module (gnu packages node)
79 #:use-module (gnu packages pcre)
80 #:use-module (gnu packages perl)
81 #:use-module (gnu packages pkg-config)
82 #:use-module (gnu packages pulseaudio) ;libsndfile
83 #:use-module (gnu packages python)
84 #:use-module (gnu packages python-xyz)
85 #:use-module (gnu packages statistics)
86 #:use-module (gnu packages tcl)
87 #:use-module (gnu packages tls)
88 #:use-module (gnu packages web)
89 #:use-module (gnu packages xorg))
90
91 (define-public r-rticles
92 (package
93 (name "r-rticles")
94 (version "0.14")
95 (source
96 (origin
97 (method url-fetch)
98 (uri (cran-uri "rticles" version))
99 (sha256
100 (base32
101 "1377fib4asazhhki4aajvld0wa35vd3zjvyl3lf2hjm2qk3vyak7"))))
102 (properties `((upstream-name . "rticles")))
103 (build-system r-build-system)
104 (propagated-inputs
105 `(("r-knitr" ,r-knitr)
106 ("r-rmarkdown" ,r-rmarkdown)
107 ("r-tinytex" ,r-tinytex)
108 ("r-xfun" ,r-xfun)
109 ("r-yaml" ,r-yaml)))
110 (home-page "https://github.com/rstudio/rticles")
111 (synopsis "Article formats for R Markdown")
112 (description
113 "This package provides a suite of custom R Markdown formats and templates
114 for authoring journal articles and conference submissions.")
115 (license license:gpl3)))
116
117 (define-public r-bezier
118 (package
119 (name "r-bezier")
120 (version "1.1.2")
121 (source (origin
122 (method url-fetch)
123 (uri (cran-uri "bezier" version))
124 (sha256
125 (base32
126 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
127 (build-system r-build-system)
128 (home-page "https://cran.r-project.org/web/packages/bezier/")
129 (synopsis "Bezier curve and spline toolkit")
130 (description
131 "This package is a toolkit for working with Bezier curves and splines.
132 The package provides functions for point generation, arc length estimation,
133 degree elevation and curve fitting.")
134 (license license:gpl2+)))
135
136 (define-public r-v8
137 (package
138 (name "r-v8")
139 (version "3.2.0")
140 (source
141 (origin
142 (method url-fetch)
143 (uri (cran-uri "V8" version))
144 (sha256
145 (base32
146 "0z0dwa538lkggawiwrlplz698xznzlgv9fwhdslm7g7gdxyf0xgm"))))
147 (properties `((upstream-name . "V8")))
148 (build-system r-build-system)
149 (arguments
150 `(#:phases
151 (modify-phases %standard-phases
152 (add-after 'unpack 'find-v8
153 (lambda* (#:key inputs #:allow-other-keys)
154 (substitute* "configure"
155 (("^PKG_LIBS=.*")
156 (string-append "PKG_LIBS="
157 (assoc-ref inputs "node")
158 "/lib/libnode.so.64\n")))
159 (setenv "INCLUDE_DIR"
160 (string-append
161 (assoc-ref inputs "node")
162 "/include/node"))
163 (setenv "LIB_DIR"
164 (string-append
165 (assoc-ref inputs "node") "/lib"))
166 #t)))))
167 (inputs
168 `(("node" ,libnode)))
169 (propagated-inputs
170 `(("r-curl" ,r-curl)
171 ("r-jsonlite" ,r-jsonlite)
172 ("r-rcpp" ,r-rcpp)))
173 (native-inputs
174 `(("r-knitr" ,r-knitr)))
175 (home-page "https://jeroen.cran.dev/V8")
176 (synopsis "Embedded JavaScript and WebAssembly engine for R")
177 (description
178 "This package provides an R interface to V8: Google's JavaScript and
179 WebAssembly engine.")
180 (license license:expat)))
181
182 (define-public r-dot
183 (package
184 (name "r-dot")
185 (version "0.1")
186 (source
187 (origin
188 (method url-fetch)
189 (uri (cran-uri "DOT" version))
190 (sha256
191 (base32
192 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
193 (properties `((upstream-name . "DOT")))
194 (build-system r-build-system)
195 (propagated-inputs
196 `(("r-v8" ,r-v8)))
197 (home-page "http://haghish.com/dot")
198 (synopsis "Render and Export DOT Graphs in R")
199 (description
200 "This package provides tools to render DOT diagram markup language in R
201 and also provides the possibility to export the graphs in PostScript and
202 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
203 programming packages such as @code{knitr} and @code{rmarkdown}.")
204 (license license:expat)))
205
206 (define-public r-clipr
207 (package
208 (name "r-clipr")
209 (version "0.7.0")
210 (source
211 (origin
212 (method url-fetch)
213 (uri (cran-uri "clipr" version))
214 (sha256
215 (base32
216 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
217 (build-system r-build-system)
218 (home-page "https://github.com/mdlincoln/clipr")
219 (synopsis "Read and write from the system clipboard")
220 (description
221 "This package provides simple utility functions to read from and write to
222 the system clipboards.")
223 (license license:gpl3)))
224
225 (define-public r-zoo
226 (package
227 (name "r-zoo")
228 (version "1.8-8")
229 (source (origin
230 (method url-fetch)
231 (uri (cran-uri "zoo" version))
232 (sha256
233 (base32
234 "1rrw431jwaxd9xljp73f15rhcxvwc0xlyrmr0ghi5fj7a03c932f"))))
235 (build-system r-build-system)
236 (propagated-inputs
237 `(("r-lattice" ,r-lattice)))
238 (home-page "http://zoo.R-Forge.R-project.org/")
239 (synopsis "S3 infrastructure for regular and irregular time series")
240 (description "This package contains an S3 class with methods for totally
241 ordered indexed observations. It is particularly aimed at irregular time
242 series of numeric vectors/matrices and factors.")
243 (license license:gpl2+)))
244
245 (define-public r-ggpmisc
246 (package
247 (name "r-ggpmisc")
248 (version "0.3.5")
249 (source (origin
250 (method url-fetch)
251 (uri (cran-uri "ggpmisc" version))
252 (sha256
253 (base32
254 "0ma2d3a3v8n85sghxr9anl6vgbs8gi82i1dllw99n81gsm59wgin"))))
255 (build-system r-build-system)
256 (propagated-inputs
257 `(("r-broom" ,r-broom)
258 ("r-dplyr" ,r-dplyr)
259 ("r-ggplot2" ,r-ggplot2)
260 ("r-gridextra" ,r-gridextra)
261 ("r-lubridate" ,r-lubridate)
262 ("r-magrittr" ,r-magrittr)
263 ("r-mass" ,r-mass)
264 ("r-plyr" ,r-plyr)
265 ("r-polynom" ,r-polynom)
266 ("r-rlang" ,r-rlang)
267 ("r-scales" ,r-scales)
268 ("r-splus2r" ,r-splus2r)
269 ("r-stringr" ,r-stringr)
270 ("r-tibble" ,r-tibble)
271 ("r-xts" ,r-xts)
272 ("r-zoo" ,r-zoo)))
273 (native-inputs
274 `(("r-knitr" ,r-knitr)))
275 (home-page "https://www.r4photobiology.info/")
276 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
277 (description "This package provides extensions to @code{ggplot2},
278 respecting the grammar of its graphics paradigm.")
279 (license license:gpl2+)))
280
281 (define-public r-gprofiler
282 (package
283 (name "r-gprofiler")
284 (version "0.7.0")
285 (source
286 (origin
287 (method url-fetch)
288 (uri (cran-uri "gProfileR" version))
289 (sha256
290 (base32
291 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
292 (properties `((upstream-name . "gProfileR")))
293 (build-system r-build-system)
294 (propagated-inputs
295 `(("r-plyr" ,r-plyr)
296 ("r-rcurl" ,r-rcurl)))
297 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
298 (synopsis "Interface to the g:Profiler toolkit")
299 (description
300 "This package provides tools for functional enrichment analysis,
301 gene identifier conversion and mapping homologous genes across related
302 organisms via the @code{g:Profiler} toolkit.")
303 (license license:gpl2+)))
304
305 (define-public r-gprofiler2
306 (package
307 (name "r-gprofiler2")
308 (version "0.1.9")
309 (source
310 (origin
311 (method url-fetch)
312 (uri (cran-uri "gprofiler2" version))
313 (sha256
314 (base32
315 "112hmmvdwg8xz90w1bsbzc55y4xi9jj4dqy0q4bsgp49x58r92rb"))))
316 (properties `((upstream-name . "gprofiler2")))
317 (build-system r-build-system)
318 (propagated-inputs
319 `(("r-crosstalk" ,r-crosstalk)
320 ("r-dplyr" ,r-dplyr)
321 ("r-ggplot2" ,r-ggplot2)
322 ("r-gridextra" ,r-gridextra)
323 ("r-jsonlite" ,r-jsonlite)
324 ("r-plotly" ,r-plotly)
325 ("r-rcurl" ,r-rcurl)
326 ("r-tidyr" ,r-tidyr)
327 ("r-viridislite" ,r-viridislite)))
328 (native-inputs `(("r-knitr" ,r-knitr)))
329 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
330 (synopsis "Interface to the g:Profiler toolset")
331 (description
332 "This package provides a toolset for functional enrichment analysis and
333 visualization, gene/protein/SNP identifier conversion and mapping orthologous
334 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
335 The main tools are:
336
337 @enumerate
338 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
339 lists;
340 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
341 various namespaces;
342 @item @code{g:Orth}, orthology search across species;
343 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
344 genes and variant effects.
345 @end enumerate
346
347 This package is an R interface corresponding to the 2019 update of
348 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
349 higher.")
350 (license license:gpl2+)))
351
352 (define-public r-oenb
353 (package
354 (name "r-oenb")
355 (version "0.0.1")
356 (source
357 (origin
358 (method url-fetch)
359 (uri (cran-uri "oenb" version))
360 (sha256
361 (base32
362 "1x1jlqp6r27c4gb7wafzpmh5rq6yq61a2d395r5lsmv2g5jb4biz"))))
363 (properties `((upstream-name . "oenb")))
364 (build-system r-build-system)
365 (propagated-inputs
366 `(("r-dplyr" ,r-dplyr)
367 ("r-xml" ,r-xml)))
368 (native-inputs `(("r-knitr" ,r-knitr)))
369 (home-page "https://github.com/franzmohr/oenb")
370 (synopsis "Tools for the OeNB Data Web Service")
371 (description
372 "Tools to access data from the data web service of the
373 @acronym{OeNB, Oesterreichische Nationalbank},
374 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
375 (license license:gpl2+)))
376
377 (define-public r-scales
378 (package
379 (name "r-scales")
380 (version "1.1.1")
381 (source
382 (origin
383 (method url-fetch)
384 (uri (cran-uri "scales" version))
385 (sha256
386 (base32 "019ps0njjc0rzrjygqiyn8b9vp0c3c0jd56h1yi19wzi49jvdcj0"))))
387 (build-system r-build-system)
388 (propagated-inputs
389 `(("r-farver" ,r-farver)
390 ("r-labeling" ,r-labeling)
391 ("r-lifecycle" ,r-lifecycle)
392 ("r-munsell" ,r-munsell)
393 ("r-rcolorbrewer" ,r-rcolorbrewer)
394 ("r-r6" ,r-r6)
395 ("r-viridislite" ,r-viridislite)))
396 (home-page "https://github.com/hadley/scales")
397 (synopsis "Scale functions for visualization")
398 (description
399 "This package provides graphical scales that map data to aesthetics, and
400 provides methods for automatically determining breaks and labels for axes and
401 legends.")
402 (license license:expat)))
403
404 (define-public r-pheatmap
405 (package
406 (name "r-pheatmap")
407 (version "1.0.12")
408 (source
409 (origin
410 (method url-fetch)
411 (uri (cran-uri "pheatmap" version))
412 (sha256
413 (base32
414 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
415 (build-system r-build-system)
416 (propagated-inputs
417 `(("r-gtable" ,r-gtable)
418 ("r-rcolorbrewer" ,r-rcolorbrewer)
419 ("r-scales" ,r-scales)))
420 (home-page "https://cran.r-project.org/web/packages/pheatmap")
421 (synopsis "Pretty heatmaps")
422 (description
423 "This package provides an implementation of heatmaps that offers more
424 control over dimensions and appearance.")
425 (license license:gpl2+)))
426
427 (define-public r-ecp
428 (package
429 (name "r-ecp")
430 (version "3.1.2")
431 (source (origin
432 (method url-fetch)
433 (uri (cran-uri "ecp" version))
434 (sha256
435 (base32
436 "11f9p869xr0zg779i46gmflxlq4xclk9wxbab0nj2fan26pn4sfy"))))
437 (build-system r-build-system)
438 (propagated-inputs
439 `(("r-rcpp" ,r-rcpp)))
440 (home-page "https://cran.r-project.org/web/packages/ecp/")
441 (synopsis "Multiple change-point analysis of multivariate data")
442 (description
443 "This package implements various procedures for finding multiple
444 change-points. Two methods make use of dynamic programming and pruning, with
445 no distributional assumptions other than the existence of certain absolute
446 moments in one method. Hierarchical and exact search methods are included.
447 All methods return the set of estimated change-points as well as other summary
448 information.")
449 (license license:gpl2+)))
450
451 (define-public r-ellipsis
452 (package
453 (name "r-ellipsis")
454 (version "0.3.1")
455 (source
456 (origin
457 (method url-fetch)
458 (uri (cran-uri "ellipsis" version))
459 (sha256
460 (base32
461 "1nvmkcca57d9067rcggw1gby80ibx5hplk2myz0cs9zwilaib2jg"))))
462 (build-system r-build-system)
463 (propagated-inputs
464 `(("r-rlang" ,r-rlang)))
465 (home-page "https://github.com/hadley/ellipsis")
466 (synopsis "Tools for working with additional arguments")
467 (description
468 "In S3 generics, it's useful to take @code{...} so that methods can have
469 additional arguments. But this flexibility comes at a cost: misspelled
470 arguments will be silently ignored. The @code{ellipsis} package is an
471 experiment that allows a generic to warn if any arguments passed in @code{...}
472 are not used.")
473 (license license:gpl3)))
474
475 (define-public r-grr
476 (package
477 (name "r-grr")
478 (version "0.9.5")
479 (source
480 (origin
481 (method url-fetch)
482 (uri (cran-uri "grr" version))
483 (sha256
484 (base32
485 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
486 (build-system r-build-system)
487 (home-page "https://cran.r-project.org/web/packages/grr")
488 (synopsis "Alternative implementations of base R functions")
489 (description
490 "This package provides alternative implementations of some base R
491 functions, including @code{sort}, @code{order}, and @code{match}. The
492 functions are simplified but can be faster or have other advantages.")
493 (license license:gpl3)))
494
495 (define-public r-matrix-utils
496 (package
497 (name "r-matrix-utils")
498 (version "0.9.8")
499 (source
500 (origin
501 (method url-fetch)
502 (uri (cran-uri "Matrix.utils" version))
503 (sha256
504 (base32
505 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
506 (properties `((upstream-name . "Matrix.utils")))
507 (build-system r-build-system)
508 (propagated-inputs
509 `(("r-grr" ,r-grr)
510 ("r-matrix" ,r-matrix)))
511 (home-page "https://github.com/cvarrichio/Matrix.utils")
512 (synopsis
513 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
514 (description
515 "This package implements data manipulation methods such as @code{cast},
516 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
517 objects.")
518 (license license:gpl3)))
519
520 (define-public r-sys
521 (package
522 (name "r-sys")
523 (version "3.4")
524 (source
525 (origin
526 (method url-fetch)
527 (uri (cran-uri "sys" version))
528 (sha256
529 (base32
530 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
531 (build-system r-build-system)
532 (home-page "https://github.com/jeroen/sys")
533 (synopsis "Powerful and reliable tools for running system commands in R")
534 (description
535 "This package provides drop-in replacements for the base @code{system2()}
536 function with fine control and consistent behavior across platforms. It
537 supports clean interruption, timeout, background tasks, and streaming STDIN /
538 STDOUT / STDERR over binary or text connections. The package also provides
539 functions for evaluating expressions inside a temporary fork. Such
540 evaluations have no side effects on the main R process, and support reliable
541 interrupts and timeouts. This provides the basis for a sandboxing
542 mechanism.")
543 (license license:expat)))
544
545 (define-public r-askpass
546 (package
547 (name "r-askpass")
548 (version "1.1")
549 (source
550 (origin
551 (method url-fetch)
552 (uri (cran-uri "askpass" version))
553 (sha256
554 (base32
555 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
556 (build-system r-build-system)
557 (propagated-inputs `(("r-sys" ,r-sys)))
558 (home-page "https://github.com/jeroen/askpass")
559 (synopsis "Safe password entry for R")
560 (description
561 "This package provides cross-platform utilities for prompting the user
562 for credentials or a passphrase, for example to authenticate with a server or
563 read a protected key.")
564 (license license:expat)))
565
566 (define-public r-vegan
567 (package
568 (name "r-vegan")
569 (version "2.5-6")
570 (source
571 (origin
572 (method url-fetch)
573 (uri (cran-uri "vegan" version))
574 (sha256
575 (base32
576 "0g60rgn1i7wqf9pf5m1yki1m45gcp7i5hmjic0ci0f6vng70mh5k"))))
577 (build-system r-build-system)
578 (native-inputs
579 `(("gfortran" ,gfortran)))
580 (propagated-inputs
581 `(("r-cluster" ,r-cluster)
582 ("r-knitr" ,r-knitr) ; needed for vignettes
583 ("r-lattice" ,r-lattice)
584 ("r-mass" ,r-mass)
585 ("r-mgcv" ,r-mgcv)
586 ("r-permute" ,r-permute)))
587 (home-page "https://cran.r-project.org/web/packages/vegan")
588 (synopsis "Functions for community ecology")
589 (description
590 "The vegan package provides tools for descriptive community ecology. It
591 has most basic functions of diversity analysis, community ordination and
592 dissimilarity analysis. Most of its multivariate tools can be used for other
593 data types as well.")
594 (license license:gpl2+)))
595
596 (define-public r-tidyverse
597 (package
598 (name "r-tidyverse")
599 (version "1.3.0")
600 (source
601 (origin
602 (method url-fetch)
603 (uri (cran-uri "tidyverse" version))
604 (sha256
605 (base32
606 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
607 (build-system r-build-system)
608 (propagated-inputs
609 `(("r-broom" ,r-broom)
610 ("r-cli" ,r-cli)
611 ("r-crayon" ,r-crayon)
612 ("r-dbplyr" ,r-dbplyr)
613 ("r-dplyr" ,r-dplyr)
614 ("r-forcats" ,r-forcats)
615 ("r-ggplot2" ,r-ggplot2)
616 ("r-haven" ,r-haven)
617 ("r-hms" ,r-hms)
618 ("r-httr" ,r-httr)
619 ("r-jsonlite" ,r-jsonlite)
620 ("r-lubridate" ,r-lubridate)
621 ("r-magrittr" ,r-magrittr)
622 ("r-modelr" ,r-modelr)
623 ("r-pillar" ,r-pillar)
624 ("r-purrr" ,r-purrr)
625 ("r-readr" ,r-readr)
626 ("r-readxl" ,r-readxl)
627 ("r-reprex" ,r-reprex)
628 ("r-rlang" ,r-rlang)
629 ("r-rstudioapi" ,r-rstudioapi)
630 ("r-rvest" ,r-rvest)
631 ("r-stringr" ,r-stringr)
632 ("r-tibble" ,r-tibble)
633 ("r-tidyr" ,r-tidyr)
634 ("r-xml2" ,r-xml2)))
635 (home-page "https://tidyverse.tidyverse.org")
636 (synopsis "Install and load packages from the \"Tidyverse\"")
637 (description
638 "The @code{tidyverse} is a set of packages that work in harmony because
639 they share common data representations and API design. This package is
640 designed to make it easy to install and load multiple tidyverse packages in a
641 single step.")
642 (license license:gpl3)))
643
644 (define-public r-rvest
645 (package
646 (name "r-rvest")
647 (version "0.3.6")
648 (source
649 (origin
650 (method url-fetch)
651 (uri (cran-uri "rvest" version))
652 (sha256
653 (base32 "1yh2p429a0zr8pqmlw5rzf6m797j20j5w6xwxlqq0wrdbnif6bka"))))
654 (build-system r-build-system)
655 (propagated-inputs
656 `(("r-httr" ,r-httr)
657 ("r-magrittr" ,r-magrittr)
658 ("r-selectr" ,r-selectr)
659 ("r-xml2" ,r-xml2)))
660 (native-inputs
661 `(("r-knitr" ,r-knitr)))
662 (home-page "https://github.com/hadley/rvest")
663 (synopsis "Simple web scraping for R")
664 (description
665 "@code{r-rvest} helps you scrape information from web pages. It is
666 designed to work with @code{magrittr} to make it easy to express common web
667 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
668 (license license:gpl3)))
669
670 (define-public r-selectr
671 (package
672 (name "r-selectr")
673 (version "0.4-2")
674 (source
675 (origin
676 (method url-fetch)
677 (uri (cran-uri "selectr" version))
678 (sha256
679 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
680 (build-system r-build-system)
681 (propagated-inputs
682 `(("r-stringr" ,r-stringr)
683 ("r-r6" ,r-r6)))
684 (home-page "https://sjp.co.nz/projects/selectr/")
685 (synopsis "Translate CSS selectors to XPath expressions")
686 (description
687 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
688 expression. This allows you to use CSS selectors when working with the XML
689 package as it can only evaluate XPath expressions. Also provided are
690 convenience functions useful for using CSS selectors on XML nodes. This
691 package is a port of the Python package @code{cssselect}.")
692 (license license:bsd-3)))
693
694 (define-public r-reprex
695 (package
696 (name "r-reprex")
697 (version "0.3.0")
698 (source
699 (origin
700 (method url-fetch)
701 (uri (cran-uri "reprex" version))
702 (sha256
703 (base32
704 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
705 (build-system r-build-system)
706 (propagated-inputs
707 `(("r-callr" ,r-callr)
708 ("r-clipr" ,r-clipr)
709 ("r-fs" ,r-fs)
710 ("r-rlang" ,r-rlang)
711 ("r-rmarkdown" ,r-rmarkdown)
712 ("r-whisker" ,r-whisker)
713 ("r-withr" ,r-withr)))
714 (home-page "https://github.com/tidyverse/reprex")
715 (synopsis "Prepare reproducible R code examples for sharing")
716 (description
717 "This package provides a convenience wrapper that uses the
718 @code{rmarkdown} package to render small snippets of code to target formats
719 that include both code and output. The goal is to encourage the sharing of
720 small, reproducible, and runnable examples on code-oriented websites or email.
721 @code{reprex} also extracts clean, runnable R code from various common formats,
722 such as copy/paste from an R session.")
723 (license license:expat)))
724
725 (define-public r-reordercluster
726 (package
727 (name "r-reordercluster")
728 (version "1.0")
729 (source (origin
730 (method url-fetch)
731 (uri (cran-uri "ReorderCluster" version))
732 (sha256
733 (base32
734 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
735 (build-system r-build-system)
736 (propagated-inputs
737 `(("r-gplots" ,r-gplots)
738 ("r-rcpp" ,r-rcpp)))
739 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
740 (synopsis "Reordering the dendrogram according to the class labels")
741 (description "This package provides tools for performing the leaf reordering
742 for the dendrogram that preserves the hierarchical clustering result and at the
743 same time tries to group instances from the same class together.")
744 (license license:gpl3+)))
745
746 (define-public r-callr
747 (package
748 (name "r-callr")
749 (version "3.4.3")
750 (source
751 (origin
752 (method url-fetch)
753 (uri (cran-uri "callr" version))
754 (sha256
755 (base32
756 "1dc20gdawy9mhnc452qlshv2p4krs6c2gymvpv365mn141zjgdq1"))))
757 (build-system r-build-system)
758 (propagated-inputs
759 `(("r-r6" ,r-r6)
760 ("r-processx" ,r-processx)))
761 (home-page "https://github.com/r-lib/callr#readme")
762 (synopsis "Call R from R")
763 (description
764 "It is sometimes useful to perform a computation in a separate R process,
765 without affecting the current R process at all. This package does exactly
766 that.")
767 (license license:expat)))
768
769 (define-public r-readxl
770 (package
771 (name "r-readxl")
772 (version "1.3.1")
773 (source
774 (origin
775 (method url-fetch)
776 (uri (cran-uri "readxl" version))
777 (sha256
778 (base32
779 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
780 (build-system r-build-system)
781 (propagated-inputs
782 `(("r-cellranger" ,r-cellranger)
783 ("r-progress" ,r-progress)
784 ("r-rcpp" ,r-rcpp)
785 ("r-tibble" ,r-tibble)))
786 (home-page "https://readxl.tidyverse.org")
787 (synopsis "Read Excel files")
788 (description
789 "This package lets you import Excel files into R. It supports
790 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
791 the embedded @code{RapidXML} C++ library.")
792 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
793 ;; 'rapidxml' which is Boost.
794 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
795
796 (define-public r-modelr
797 (package
798 (name "r-modelr")
799 (version "0.1.8")
800 (source
801 (origin
802 (method url-fetch)
803 (uri (cran-uri "modelr" version))
804 (sha256
805 (base32
806 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
807 (build-system r-build-system)
808 (propagated-inputs
809 `(("r-broom" ,r-broom)
810 ("r-magrittr" ,r-magrittr)
811 ("r-purrr" ,r-purrr)
812 ("r-rlang" ,r-rlang)
813 ("r-tibble" ,r-tibble)
814 ("r-tidyr" ,r-tidyr)
815 ("r-tidyselect" ,r-tidyselect)
816 ("r-vctrs" ,r-vctrs)))
817 (home-page "https://github.com/tidyverse/modelr")
818 (synopsis "Helper functions for modelling in pipelines")
819 (description
820 "Functions for modelling that help you seamlessly integrate modelling
821 into a pipeline of data manipulation and visualisation.")
822 (license license:gpl3)))
823
824 (define-public r-httpuv
825 (package
826 (name "r-httpuv")
827 (version "1.5.4")
828 (source (origin
829 (method url-fetch)
830 (uri (cran-uri "httpuv" version))
831 (sha256
832 (base32
833 "066rprqvz9qln6xd85x1yh1wbbmzd157xjl8zq1zbgr8l6347inm"))))
834 (build-system r-build-system)
835 (propagated-inputs
836 `(("r-bh" ,r-bh)
837 ("r-later" ,r-later)
838 ("r-promises" ,r-promises)
839 ("r-r6" ,r-r6)
840 ("r-rcpp" ,r-rcpp)))
841 (home-page "https://github.com/rstudio/httpuv")
842 (synopsis "HTTP and WebSocket server library for R")
843 (description
844 "The httpuv package provides low-level socket and protocol support for
845 handling HTTP and WebSocket requests directly from within R. It is primarily
846 intended as a building block for other packages, rather than making it
847 particularly easy to create complete web applications using httpuv alone.")
848 ;; This package includes third-party code that was originally released
849 ;; under various non-copyleft licenses. Full licensing information can be
850 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
851 (license license:gpl3+)))
852
853 (define-public r-jsonlite
854 (package
855 (name "r-jsonlite")
856 (version "1.7.0")
857 (source (origin
858 (method url-fetch)
859 (uri (cran-uri "jsonlite" version))
860 (sha256
861 (base32
862 "1izfrk5yahsz6s69wanfspn72qdffjglbr5305akj72ig9fnladq"))))
863 (build-system r-build-system)
864 (native-inputs
865 `(("r-knitr" ,r-knitr)))
866 (home-page "https://arxiv.org/abs/1403.2805")
867 (synopsis "Robust, high performance JSON parser and generator for R")
868 (description
869 "The jsonlite package provides a fast JSON parser and generator optimized
870 for statistical data and the web. It offers flexible, robust, high
871 performance tools for working with JSON in R and is particularly powerful for
872 building pipelines and interacting with a web API. In addition to converting
873 JSON data from/to R objects, jsonlite contains functions to stream, validate,
874 and prettify JSON data. The unit tests included with the package verify that
875 all edge cases are encoded and decoded consistently for use with dynamic data
876 in systems and applications.")
877 (license license:expat)))
878
879 (define-public r-servr
880 (package
881 (name "r-servr")
882 (version "0.18")
883 (source (origin
884 (method url-fetch)
885 (uri (cran-uri "servr" version))
886 (sha256
887 (base32
888 "0xfbf1a1w34hbsx4jrdr4rqf22v7gf1p37ngknglv1dyxih7ipja"))))
889 (build-system r-build-system)
890 (propagated-inputs
891 `(("r-httpuv" ,r-httpuv)
892 ("r-jsonlite" ,r-jsonlite)
893 ("r-mime" ,r-mime)
894 ("r-xfun" ,r-xfun)))
895 (home-page "https://github.com/yihui/servr")
896 (synopsis "Simple HTTP server to serve static files or dynamic documents")
897 (description
898 "Servr provides an HTTP server in R to serve static files, or dynamic
899 documents that can be converted to HTML files (e.g., R Markdown) under a given
900 directory.")
901 (license license:expat)))
902
903 (define-public r-htmltools
904 (package
905 (name "r-htmltools")
906 (version "0.5.0")
907 (source (origin
908 (method url-fetch)
909 (uri (cran-uri "htmltools" version))
910 (sha256
911 (base32
912 "07fjznax5sin563ddnzlb7iwc8b39wzf7ymjn66pbmxgskijq2pz"))))
913 (build-system r-build-system)
914 (propagated-inputs
915 `(("r-base64enc" ,r-base64enc)
916 ("r-digest" ,r-digest)
917 ("r-rlang" ,r-rlang)))
918 (home-page "https://cran.r-project.org/web/packages/htmltools")
919 (synopsis "R tools for HTML")
920 (description
921 "This package provides tools for HTML generation and output in R.")
922 (license license:expat)))
923
924 (define-public r-htmlwidgets
925 (package
926 (name "r-htmlwidgets")
927 (version "1.5.1")
928 (source (origin
929 (method url-fetch)
930 (uri (cran-uri "htmlwidgets" version))
931 (sha256
932 (base32
933 "10fp306l1nybkah6jrlrqwwdb6zvklbddp8i3w9v9naj8la5jbnl"))))
934 (build-system r-build-system)
935 (propagated-inputs
936 `(("r-htmltools" ,r-htmltools)
937 ("r-jsonlite" ,r-jsonlite)
938 ("r-yaml" ,r-yaml)))
939 (home-page "https://github.com/ramnathv/htmlwidgets")
940 (synopsis "HTML Widgets for R")
941 (description
942 "HTML widgets is a framework for creating HTML widgets that render in
943 various contexts including the R console, R Markdown documents, and Shiny web
944 applications.")
945 (license license:expat)))
946
947 (define-public r-htmltable
948 (package
949 (name "r-htmltable")
950 (version "2.0.1")
951 (source
952 (origin
953 (method url-fetch)
954 (uri (cran-uri "htmlTable" version))
955 (sha256
956 (base32 "0ma52kajzxfg9w811d6ldhghzn9xhyr8bh7k5v265k82bzx7rac6"))))
957 (properties `((upstream-name . "htmlTable")))
958 (build-system r-build-system)
959 (propagated-inputs
960 `(("r-checkmate" ,r-checkmate)
961 ("r-htmltools" ,r-htmltools)
962 ("r-htmlwidgets" ,r-htmlwidgets)
963 ("r-knitr" ,r-knitr)
964 ("r-magrittr" ,r-magrittr)
965 ("r-rstudioapi" ,r-rstudioapi)
966 ("r-stringr" ,r-stringr)))
967 (native-inputs
968 `(("r-knitr" ,r-knitr)))
969 (home-page "http://gforge.se/packages/")
970 (synopsis "Advanced tables for Markdown/HTML")
971 (description
972 "This package provides functions to build tables with advanced layout
973 elements such as row spanners, column spanners, table spanners, zebra
974 striping, and more. While allowing advanced layout, the underlying
975 CSS-structure is simple in order to maximize compatibility with word
976 processors such as LibreOffice. The package also contains a few text
977 formatting functions that help outputting text compatible with HTML or
978 LaTeX.")
979 (license license:gpl3+)))
980
981 (define-public r-curl
982 (package
983 (name "r-curl")
984 (version "4.3")
985 (source (origin
986 (method url-fetch)
987 (uri (cran-uri "curl" version))
988 (sha256
989 (base32
990 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
991 (build-system r-build-system)
992 (arguments
993 `(#:phases
994 (modify-phases %standard-phases
995 ;; The environment variable CURL_CA_BUNDLE is only respected when
996 ;; running Windows, so we disable the platform checks.
997 ;; This can be removed once the libcurl has been patched.
998 (add-after 'unpack 'allow-CURL_CA_BUNDLE
999 (lambda _
1000 (substitute* "R/onload.R"
1001 (("if \\(!grepl\\(\"mingw\".*")
1002 "if (FALSE)\n"))
1003 (substitute* "src/handle.c"
1004 (("/\\* Only set" m)
1005 (string-append "\
1006 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
1007 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
1008 " m)))
1009 #t)))))
1010 (inputs
1011 `(("libcurl" ,curl)
1012 ("zlib" ,zlib)))
1013 (native-inputs
1014 `(("pkg-config" ,pkg-config)))
1015 (home-page "https://github.com/jeroenooms/curl")
1016 (synopsis "HTTP client for R")
1017 (description
1018 "The @code{curl()} and @code{curl_download()} functions provide highly
1019 configurable drop-in replacements for base @code{url()} and
1020 @code{download.file()} with better performance, support for encryption, gzip
1021 compression, authentication, and other @code{libcurl} goodies. The core of
1022 the package implements a framework for performing fully customized requests
1023 where data can be processed either in memory, on disk, or streaming via the
1024 callback or connection interfaces.")
1025 (license license:expat)))
1026
1027 (define-public r-hwriter
1028 (package
1029 (name "r-hwriter")
1030 (version "1.3.2")
1031 (source
1032 (origin
1033 (method url-fetch)
1034 (uri (cran-uri "hwriter" version))
1035 (sha256
1036 (base32
1037 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
1038 (build-system r-build-system)
1039 (home-page "https://cran.r-project.org/web/packages/hwriter")
1040 (synopsis "Output R objects in HTML format")
1041 (description
1042 "This package provides easy-to-use and versatile functions to output R
1043 objects in HTML format.")
1044 (license license:lgpl2.1+)))
1045
1046 (define-public r-rjson
1047 (package
1048 (name "r-rjson")
1049 (version "0.2.20")
1050 (source
1051 (origin
1052 (method url-fetch)
1053 (uri (cran-uri "rjson" version))
1054 (sha256
1055 (base32
1056 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
1057 (build-system r-build-system)
1058 (home-page "https://cran.r-project.org/web/packages/rjson")
1059 (synopsis "JSON library for R")
1060 (description
1061 "This package provides functions to convert R objects into JSON objects
1062 and vice-versa.")
1063 (license license:gpl2+)))
1064
1065 (define-public r-fastmap
1066 (package
1067 (name "r-fastmap")
1068 (version "1.0.1")
1069 (source
1070 (origin
1071 (method url-fetch)
1072 (uri (cran-uri "fastmap" version))
1073 (sha256
1074 (base32
1075 "1v7sp56xiha0bh78g3w92k52p9vkp7ryzpw0z66nyddxzrfv0y27"))))
1076 (properties `((upstream-name . "fastmap")))
1077 (build-system r-build-system)
1078 (home-page "https://r-lib.github.io/fastmap/")
1079 (synopsis "Fast implementation of a key-value store")
1080 (description
1081 "This package provides a fast implementation of a key-value store.
1082 Environments are commonly used as key-value stores, but every time a new key
1083 is used, it is added to R's global symbol table, causing a small amount of
1084 memory leakage. This can be problematic in cases where many different keys
1085 are used. Fastmap avoids this memory leak issue by implementing the map using
1086 data structures in C++.")
1087 (license license:expat)))
1088
1089 (define-public r-shiny
1090 (package
1091 (name "r-shiny")
1092 (version "1.4.0.2")
1093 (source
1094 (origin
1095 (method git-fetch)
1096 (uri (git-reference
1097 (url "https://github.com/rstudio/shiny")
1098 (commit (string-append "v" version))))
1099 (file-name (git-file-name name version))
1100 (sha256
1101 (base32
1102 "005wgcxq7f2q9g6wvfk29n2nms262w0abpz93sfvx79yv6qxppzs"))))
1103 (build-system r-build-system)
1104 (arguments
1105 `(#:modules ((guix build r-build-system)
1106 (guix build minify-build-system)
1107 (guix build utils)
1108 (ice-9 match))
1109 #:imported-modules (,@%r-build-system-modules
1110 (guix build minify-build-system))
1111 #:phases
1112 (modify-phases (@ (guix build r-build-system) %standard-phases)
1113 (add-after 'unpack 'replace-bundled-minified-JavaScript
1114 (lambda* (#:key inputs #:allow-other-keys)
1115 (let ((replace-file (lambda (old new)
1116 (format #t "replacing ~a with ~a\n" old new)
1117 (delete-file old)
1118 (symlink new old))))
1119 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
1120 ;; contain just data. They are not minified code, so we don't
1121 ;; replace them.
1122 (with-directory-excursion "inst/www/shared"
1123 (replace-file "bootstrap/shim/respond.min.js"
1124 (string-append (assoc-ref inputs "js-respond")
1125 "/share/javascript/respond.min.js"))
1126 (replace-file "bootstrap/shim/html5shiv.min.js"
1127 (string-append (assoc-ref inputs "js-html5shiv")
1128 "/share/javascript/html5shiv.min.js"))
1129 (replace-file "json2-min.js"
1130 (string-append (assoc-ref inputs "js-json2")
1131 "/share/javascript/json2-min.js"))
1132 (replace-file "strftime/strftime-min.js"
1133 (string-append (assoc-ref inputs "js-strftime")
1134 "/share/javascript/strftime.min.js"))
1135 (replace-file "highlight/highlight.pack.js"
1136 (string-append (assoc-ref inputs "js-highlight")
1137 "/share/javascript/highlight.min.js"))
1138 (replace-file "datatables/js/jquery.dataTables.min.js"
1139 (string-append (assoc-ref inputs "js-datatables")
1140 "/share/javascript/jquery.dataTables.min.js"))
1141 (replace-file "selectize/js/selectize.min.js"
1142 (string-append (assoc-ref inputs "js-selectize")
1143 "/share/javascript/selectize.min.js"))
1144 (replace-file "selectize/js/es5-shim.min.js"
1145 (string-append (assoc-ref inputs "js-es5-shim")
1146 "/share/javascript/es5-shim.min.js"))
1147 (for-each (match-lambda
1148 ((source . target)
1149 (delete-file target)
1150 (minify source #:target target)))
1151 '(("jqueryui/jquery-ui.js" .
1152 "jqueryui/jquery-ui.min.js")
1153 ("datepicker/js/bootstrap-datepicker.js" .
1154 "datepicker/js/bootstrap-datepicker.min.js")
1155 ("ionrangeslider/js/ion.rangeSlider.js" .
1156 "ionrangeslider/js/ion.rangeSlider.min.js")
1157 ("bootstrap/js/bootstrap.js" .
1158 "bootstrap/js/bootstrap.min.js")
1159 ("shiny.js" .
1160 "shiny.min.js")
1161 ("jquery.js" .
1162 "jquery.min.js")
1163 ("legacy/jquery.js" .
1164 "legacy/jquery.min.js")
1165 ("showdown/src/showdown.js" .
1166 "showdown/compressed/showdown.js")))))
1167 #t)))))
1168 (propagated-inputs
1169 `(("r-crayon" ,r-crayon)
1170 ("r-digest" ,r-digest)
1171 ("r-fastmap" ,r-fastmap)
1172 ("r-htmltools" ,r-htmltools)
1173 ("r-httpuv" ,r-httpuv)
1174 ("r-jsonlite" ,r-jsonlite)
1175 ("r-later" ,r-later)
1176 ("r-mime" ,r-mime)
1177 ("r-promises" ,r-promises)
1178 ("r-r6" ,r-r6)
1179 ("r-rlang" ,r-rlang)
1180 ("r-sourcetools" ,r-sourcetools)
1181 ("r-withr" ,r-withr)
1182 ("r-xtable" ,r-xtable)))
1183 (inputs
1184 `(("js-datatables" ,js-datatables)
1185 ("js-html5shiv" ,js-html5shiv)
1186 ("js-json2" ,js-json2)
1187 ("js-respond" ,js-respond)
1188 ("js-selectize" ,js-selectize)
1189 ("js-strftime" ,js-strftime)
1190 ("js-highlight" ,js-highlight)
1191 ("js-es5-shim" ,js-es5-shim)))
1192 (native-inputs
1193 `(("uglify-js" ,uglify-js)
1194 ("gfortran" ,gfortran)))
1195 (home-page "http://shiny.rstudio.com")
1196 (synopsis "Easy interactive web applications with R")
1197 (description
1198 "Makes it incredibly easy to build interactive web applications
1199 with R. Automatic \"reactive\" binding between inputs and outputs and
1200 extensive prebuilt widgets make it possible to build beautiful,
1201 responsive, and powerful applications with minimal effort.")
1202 (license license:artistic2.0)))
1203
1204 ;; This package includes minified JavaScript files. When upgrading please
1205 ;; check that there are no new minified JavaScript files.
1206 (define-public r-shinytree
1207 (package
1208 (name "r-shinytree")
1209 (version "0.2.7")
1210 (source
1211 (origin
1212 (method url-fetch)
1213 (uri (cran-uri "shinyTree" version))
1214 (sha256
1215 (base32
1216 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
1217 (modules '((guix build utils)))
1218 (snippet
1219 '(begin
1220 ;; Delete minified JavaScript
1221 (for-each delete-file
1222 '("inst/www/jsTree-3.3.7/libs/require.js"
1223 "inst/www/jsTree-3.3.7/libs/jquery.js"
1224 "inst/www/jsTree-3.3.7/jstree.min.js"))
1225 #t))))
1226 (properties `((upstream-name . "shinyTree")))
1227 (build-system r-build-system)
1228 (arguments
1229 `(#:modules ((guix build utils)
1230 (guix build r-build-system)
1231 (srfi srfi-1)
1232 (ice-9 popen))
1233 #:phases
1234 (modify-phases %standard-phases
1235 (add-after 'unpack 'replace-minified-javascript
1236 (lambda* (#:key inputs #:allow-other-keys)
1237 (with-directory-excursion "inst/www/jsTree-3.3.7/"
1238 (symlink (string-append (assoc-ref inputs "js-requirejs")
1239 "/share/javascript/require.min.js")
1240 "libs/require.js")
1241 (call-with-values
1242 (lambda ()
1243 (unzip2
1244 `((,(assoc-ref inputs "js-jquery")
1245 "libs/jquery.js")
1246 ("jstree.js"
1247 "jstree.min.js"))))
1248 (lambda (sources targets)
1249 (for-each (lambda (source target)
1250 (format #t "Processing ~a --> ~a~%"
1251 source target)
1252 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1253 (call-with-output-file target
1254 (lambda (port)
1255 (dump-port minified port)))))
1256 sources targets))))
1257 #t)))))
1258 (propagated-inputs
1259 `(("r-htmlwidgets" ,r-htmlwidgets)
1260 ("r-jsonlite" ,r-jsonlite)
1261 ("r-promises" ,r-promises)
1262 ("r-shiny" ,r-shiny)
1263 ("r-stringr" ,r-stringr)))
1264 (inputs
1265 `(("js-requirejs" ,js-requirejs)))
1266 (native-inputs
1267 `(("uglify-js" ,uglify-js)
1268 ("js-jquery"
1269 ,(origin
1270 (method url-fetch)
1271 (uri "https://code.jquery.com/jquery-3.3.1.js")
1272 (sha256
1273 (base32
1274 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
1275 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
1276 (synopsis "jsTree bindings for Shiny")
1277 (description
1278 "This package exposes R bindings to jsTree, a JavaScript library that
1279 supports interactive trees, to enable rich, editable trees in Shiny.")
1280 (license license:expat)))
1281
1282 (define-public r-shinydashboard
1283 (package
1284 (name "r-shinydashboard")
1285 (version "0.7.1")
1286 (source (origin
1287 (method url-fetch)
1288 (uri (cran-uri "shinydashboard" version))
1289 (sha256
1290 (base32
1291 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
1292 (build-system r-build-system)
1293 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
1294 ;; Regenerate it from the included sources.
1295 (arguments
1296 `(#:modules ((guix build utils)
1297 (guix build r-build-system)
1298 (ice-9 popen))
1299 #:phases
1300 (modify-phases %standard-phases
1301 (add-after 'unpack 'generate-minified-javascript
1302 (lambda _
1303 (with-directory-excursion "inst/AdminLTE"
1304 (delete-file "app.min.js")
1305 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1306 (call-with-output-file "app.min.js"
1307 (lambda (port)
1308 (dump-port minified port))))))))))
1309 (propagated-inputs
1310 `(("r-htmltools" ,r-htmltools)
1311 ("r-promises" ,r-promises)
1312 ("r-shiny" ,r-shiny)))
1313 (native-inputs
1314 `(("uglify-js" ,uglify-js)))
1315 (home-page "https://rstudio.github.io/shinydashboard/")
1316 (synopsis "Create dashboards with shiny")
1317 (description "This package provides an extension to the Shiny web
1318 application framework for R, making it easy to create attractive dashboards.")
1319 ;; This package includes software that was released under the Expat
1320 ;; license, but the whole package is released under GPL version 2 or
1321 ;; later.
1322 (license license:gpl2+)))
1323
1324 (define-public r-shinyfiles
1325 (package
1326 (name "r-shinyfiles")
1327 (version "0.8.0")
1328 (source
1329 (origin
1330 (method url-fetch)
1331 (uri (cran-uri "shinyFiles" version))
1332 (sha256
1333 (base32 "0gwyx37f2r86cldsyknws9pafpj8g5mg3mchlyl9ymgnk5f4b88w"))))
1334 (properties `((upstream-name . "shinyFiles")))
1335 (build-system r-build-system)
1336 (propagated-inputs
1337 `(("r-fs" ,r-fs)
1338 ("r-htmltools" ,r-htmltools)
1339 ("r-jsonlite" ,r-jsonlite)
1340 ("r-shiny" ,r-shiny)
1341 ("r-tibble" ,r-tibble)))
1342 (home-page "https://github.com/thomasp85/shinyFiles")
1343 (synopsis "Server-side file system viewer for Shiny")
1344 (description
1345 "This package provides functionality for client-side navigation of the
1346 server side file system in shiny apps. In case the app is running locally
1347 this gives the user direct access to the file system without the need to
1348 \"download\" files to a temporary location. Both file and folder selection as
1349 well as file saving is available.")
1350 (license license:gpl2+)))
1351
1352 (define-public r-shinythemes
1353 (package
1354 (name "r-shinythemes")
1355 (version "1.1.2")
1356 (source
1357 (origin
1358 (method url-fetch)
1359 (uri (cran-uri "shinythemes" version))
1360 (sha256
1361 (base32
1362 "12miz44n2zxfswnia7p8dirxj3miw0aqn4pkx2111ikz67ax84rf"))))
1363 (properties `((upstream-name . "shinythemes")))
1364 (build-system r-build-system)
1365 (propagated-inputs `(("r-shiny" ,r-shiny)))
1366 (home-page "https://rstudio.github.io/shinythemes/")
1367 (synopsis "Themes for Shiny")
1368 (description
1369 "This package provides themes for use with Shiny. It includes several
1370 Bootstrap themes, which are packaged for use with Shiny applications.")
1371 ;; The package is released under version 3 of the GPL, but it includes
1372 ;; source files that are covered by the Expat license. It also includes
1373 ;; fonts under SIL or the ASL.
1374 (license (list license:gpl3 license:expat
1375 license:silofl1.1 license:asl2.0))))
1376
1377 ;; The package sources include minified variants of d3.js and non-minified
1378 ;; source code of d3-jetpack.
1379 (define-public r-d3r
1380 (package
1381 (name "r-d3r")
1382 (version "0.9.0")
1383 (source
1384 (origin
1385 (method url-fetch)
1386 (uri (cran-uri "d3r" version))
1387 (sha256
1388 (base32
1389 "0vd1qk8yr18xdfkv5ybhqvf0mmccpi721wqa7c881nzm9nnlzc4y"))))
1390 (build-system r-build-system)
1391 (arguments
1392 `(#:modules ((guix build utils)
1393 (guix build r-build-system)
1394 (srfi srfi-1)
1395 (ice-9 popen))
1396 #:phases
1397 (modify-phases %standard-phases
1398 (add-after 'unpack 'process-javascript
1399 (lambda* (#:key inputs #:allow-other-keys)
1400 (with-directory-excursion "inst/www/d3/"
1401 (call-with-values
1402 (lambda ()
1403 (unzip2
1404 `((,(assoc-ref inputs "d3.v3.js")
1405 "v3/dist/d3.min.js")
1406 (,(assoc-ref inputs "d3.v4.js")
1407 "v4/dist/d3.min.js")
1408 (,(assoc-ref inputs "d3.v5.js")
1409 "v5/dist/d3.min.js"))))
1410 (lambda (sources targets)
1411 (for-each (lambda (source target)
1412 (format #t "Processing ~a --> ~a~%"
1413 source target)
1414 (delete-file target)
1415 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1416 (call-with-output-file target
1417 (lambda (port)
1418 (dump-port minified port)))))
1419 sources targets))))
1420 #t)))))
1421 (propagated-inputs
1422 `(("r-dplyr" ,r-dplyr)
1423 ("r-htmltools" ,r-htmltools)
1424 ("r-rlang" ,r-rlang)
1425 ("r-tidyr" ,r-tidyr)))
1426 (native-inputs
1427 `(("uglify-js" ,uglify-js)
1428 ("d3.v3.js"
1429 ,(origin
1430 (method url-fetch)
1431 (uri "https://d3js.org/d3.v3.js")
1432 (sha256
1433 (base32
1434 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1435 ("d3.v4.js"
1436 ,(origin
1437 (method url-fetch)
1438 (uri "https://d3js.org/d3.v4.js")
1439 (sha256
1440 (base32
1441 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1442 ("d3.v5.js"
1443 ,(origin
1444 (method url-fetch)
1445 (uri "https://d3js.org/d3.v5.js")
1446 (sha256
1447 (base32
1448 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
1449 (home-page "https://github.com/timelyportfolio/d3r")
1450 (synopsis "d3.js utilities for R")
1451 (description
1452 "This package provides a suite of functions to help ease the use of the
1453 d3.js visualization library in R. These helpers include
1454 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1455 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1456 R objects into the JSON format that the d3.js library expects.")
1457 (license license:bsd-3)))
1458
1459 ;; We use the latest commit here because the last release was in 2016 while
1460 ;; the latest commit was in 2018.
1461 (define-public r-sankeyd3
1462 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1463 (revision "1"))
1464 (package
1465 (name "r-sankeyd3")
1466 (version (git-version "0.3.2" revision commit))
1467 (source
1468 (origin
1469 (method git-fetch)
1470 (uri (git-reference
1471 (url "https://github.com/fbreitwieser/sankeyD3")
1472 (commit commit)))
1473 (file-name (git-file-name name version))
1474 (sha256
1475 (base32
1476 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1477 (build-system r-build-system)
1478 (propagated-inputs
1479 `(("r-d3r" ,r-d3r)
1480 ("r-htmlwidgets" ,r-htmlwidgets)
1481 ("r-shiny" ,r-shiny)
1482 ("r-magrittr" ,r-magrittr)))
1483 (home-page "https://github.com/fbreitwieser/sankeyD3")
1484 (synopsis "Sankey network graphs from R")
1485 (description
1486 "This package provides an R library to generate Sankey network graphs
1487 in R and Shiny via the D3 visualization library.")
1488 ;; The R code is licensed under GPLv3+. It includes the non-minified
1489 ;; JavaScript source code of d3-sankey, which is released under the
1490 ;; 3-clause BSD license.
1491 (license (list license:gpl3+ license:bsd-3)))))
1492
1493 (define-public r-crosstalk
1494 (package
1495 (name "r-crosstalk")
1496 (version "1.1.0.1")
1497 (source
1498 (origin
1499 (method url-fetch)
1500 (uri (cran-uri "crosstalk" version))
1501 (sha256
1502 (base32
1503 "03ihj7cimkklrbad9zic78xsrfcisygmgy859hqnx0hiph80p9rn"))))
1504 (build-system r-build-system)
1505 (propagated-inputs
1506 `(("r-htmltools" ,r-htmltools)
1507 ("r-jsonlite" ,r-jsonlite)
1508 ("r-lazyeval" ,r-lazyeval)
1509 ("r-r6" ,r-r6)))
1510 (home-page "https://rstudio.github.io/crosstalk/")
1511 (synopsis "Inter-widget interactivity for HTML widgets")
1512 (description
1513 "This package provides building blocks for allowing HTML widgets to
1514 communicate with each other, with Shiny or without (i.e. static @code{.html}
1515 files). It currently supports linked brushing and filtering.")
1516 (license license:expat)))
1517
1518 (define-public r-rook
1519 (package
1520 (name "r-rook")
1521 (version "1.1-1")
1522 (source
1523 (origin
1524 (method url-fetch)
1525 (uri (cran-uri "Rook" version))
1526 (sha256
1527 (base32
1528 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1529 (properties `((upstream-name . "Rook")))
1530 (build-system r-build-system)
1531 (propagated-inputs `(("r-brew" ,r-brew)))
1532 (home-page "https://cran.r-project.org/web/packages/Rook")
1533 (synopsis "Web server interface for R")
1534 (description
1535 "This package contains the Rook specification and convenience software
1536 for building and running Rook applications. A Rook application is an R
1537 reference class object that implements a @code{call} method or an R closure
1538 that takes exactly one argument, an environment, and returns a list with three
1539 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1540 (license license:gpl2)))
1541
1542 (define-public r-miniui
1543 (package
1544 (name "r-miniui")
1545 (version "0.1.1.1")
1546 (source
1547 (origin
1548 (method url-fetch)
1549 (uri (cran-uri "miniUI" version))
1550 (sha256
1551 (base32
1552 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1553 (properties `((upstream-name . "miniUI")))
1554 (build-system r-build-system)
1555 (propagated-inputs
1556 `(("r-htmltools" ,r-htmltools)
1557 ("r-shiny" ,r-shiny)))
1558 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1559 (synopsis "Shiny UI widgets for small screens")
1560 (description
1561 "This package provides UI widget and layout functions for writing Shiny apps that
1562 work well on small screens.")
1563 (license license:gpl3)))
1564
1565 (define-public r-feather
1566 (package
1567 (name "r-feather")
1568 (version "0.3.5")
1569 (source
1570 (origin
1571 (method url-fetch)
1572 (uri (cran-uri "feather" version))
1573 (sha256
1574 (base32
1575 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
1576 (build-system r-build-system)
1577 (propagated-inputs
1578 `(("r-hms" ,r-hms)
1579 ("r-rcpp" ,r-rcpp)
1580 ("r-tibble" ,r-tibble)))
1581 (home-page "https://github.com/wesm/feather")
1582 (synopsis "R Bindings to the Feather API")
1583 (description "Read and write feather files, a lightweight binary columnar
1584 data store designed for maximum speed.")
1585 (license license:asl2.0)))
1586
1587 (define-public r-maps
1588 (package
1589 (name "r-maps")
1590 (version "3.3.0")
1591 (source
1592 (origin
1593 (method url-fetch)
1594 (uri (cran-uri "maps" version))
1595 (sha256
1596 (base32
1597 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1598 (build-system r-build-system)
1599 (home-page "https://cran.r-project.org/web/packages/maps")
1600 (synopsis "Draw geographical maps")
1601 (description "This package provides an R module for display of maps.
1602 Projection code and larger maps are in separate packages (@code{mapproj} and
1603 @code{mapdata}).")
1604 (license license:gpl2)))
1605
1606 (define-public r-mapproj
1607 (package
1608 (name "r-mapproj")
1609 (version "1.2.7")
1610 (source
1611 (origin
1612 (method url-fetch)
1613 (uri (cran-uri "mapproj" version))
1614 (sha256
1615 (base32
1616 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
1617 (build-system r-build-system)
1618 (propagated-inputs `(("r-maps" ,r-maps)))
1619 (home-page "https://cran.r-project.org/web/packages/mapproj")
1620 (synopsis "Map projection in R")
1621 (description "This package converts latitude/longitude into projected
1622 coordinates.")
1623 (license (list license:gpl2 ; The R interface
1624 (license:non-copyleft ; The C code
1625 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1626 "Lucent Public License Version 1.02")))))
1627
1628 (define-public r-rgooglemaps
1629 (package
1630 (name "r-rgooglemaps")
1631 (version "1.4.5.3")
1632 (source
1633 (origin
1634 (method url-fetch)
1635 (uri (cran-uri "RgoogleMaps" version))
1636 (sha256
1637 (base32
1638 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
1639 (properties `((upstream-name . "RgoogleMaps")))
1640 (build-system r-build-system)
1641 (propagated-inputs
1642 `(("r-png" ,r-png)
1643 ("r-sp" ,r-sp)))
1644 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1645 (synopsis "Use Google Maps in R")
1646 (description "This package serves two purposes:
1647 @enumerate
1648 @item Provide a comfortable R interface to query the Google server for static
1649 maps, and
1650 @item Use the map as a background image to overlay plots within R. This
1651 requires proper coordinate scaling.
1652 @end enumerate\n")
1653 (license license:gpl2+)))
1654
1655 (define-public r-geosphere
1656 (package
1657 (name "r-geosphere")
1658 (version "1.5-10")
1659 (source
1660 (origin
1661 (method url-fetch)
1662 (uri (cran-uri "geosphere" version))
1663 (sha256
1664 (base32
1665 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1666 (build-system r-build-system)
1667 (propagated-inputs `(("r-sp" ,r-sp)))
1668 (home-page "https://cran.r-project.org/web/packages/geosphere")
1669 (synopsis "Spherical trigonometry")
1670 (description "This package computes spherical trigonometry for geographic
1671 applications. That is, compute distances and related measures for angular
1672 (longitude/latitude) locations.")
1673 (license license:gpl3+)))
1674
1675 (define-public r-jpeg
1676 (package
1677 (name "r-jpeg")
1678 (version "0.1-8.1")
1679 (source
1680 (origin
1681 (method url-fetch)
1682 (uri (cran-uri "jpeg" version))
1683 (sha256
1684 (base32
1685 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
1686 (build-system r-build-system)
1687 (inputs `(("libjpeg" ,libjpeg-turbo)))
1688 (home-page "https://www.rforge.net/jpeg/")
1689 (synopsis "Read and write JPEG images with R")
1690 (description "This package provides a way to read, write and display
1691 bitmap images stored in the JPEG format with R. It can read and write both
1692 files and in-memory raw vectors.")
1693 (license license:gpl2+)))
1694
1695 (define-public r-ggmap
1696 (package
1697 (name "r-ggmap")
1698 (version "3.0.0")
1699 (source
1700 (origin
1701 (method url-fetch)
1702 (uri (cran-uri "ggmap" version))
1703 (sha256
1704 (base32
1705 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1706 (build-system r-build-system)
1707 (propagated-inputs
1708 `(("r-bitops" ,r-bitops)
1709 ("r-digest" ,r-digest)
1710 ("r-dplyr" ,r-dplyr)
1711 ("r-ggplot2" ,r-ggplot2)
1712 ("r-glue" ,r-glue)
1713 ("r-httr" ,r-httr)
1714 ("r-jpeg" ,r-jpeg)
1715 ("r-magrittr" ,r-magrittr)
1716 ("r-plyr" ,r-plyr)
1717 ("r-png" ,r-png)
1718 ("r-purrr" ,r-purrr)
1719 ("r-rgooglemaps" ,r-rgooglemaps)
1720 ("r-rjson" ,r-rjson)
1721 ("r-scales" ,r-scales)
1722 ("r-stringr" ,r-stringr)
1723 ("r-tibble" ,r-tibble)
1724 ("r-tidyr" ,r-tidyr)))
1725 (home-page "https://github.com/dkahle/ggmap")
1726 (synopsis "Spatial visualization with ggplot2")
1727 (description "This package provides a collection of functions to visualize
1728 spatial data and models on top of static maps from various online sources (e.g
1729 Google Maps and Stamen Maps). It includes tools common to those tasks,
1730 including functions for geolocation and routing.")
1731 (license license:gpl2)))
1732
1733 (define-public r-haven
1734 (package
1735 (name "r-haven")
1736 (version "2.3.1")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (cran-uri "haven" version))
1741 (sha256
1742 (base32
1743 "03cypgqhdkrfbfpl1yx2wb7flczrbak1w654wkicmd5ajwr9zvkf"))))
1744 (build-system r-build-system)
1745 (inputs
1746 `(("zlib" ,zlib)))
1747 (native-inputs
1748 `(("r-knitr" ,r-knitr)))
1749 (propagated-inputs
1750 `(("r-forcats" ,r-forcats)
1751 ("r-hms" ,r-hms)
1752 ("r-rcpp" ,r-rcpp)
1753 ("r-rlang" ,r-rlang)
1754 ("r-readr" ,r-readr)
1755 ("r-tibble" ,r-tibble)
1756 ("r-tidyselect" ,r-tidyselect)
1757 ("r-vctrs" ,r-vctrs)))
1758 (home-page "https://haven.tidyverse.org")
1759 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1760 (description
1761 "This package lets you mport foreign statistical formats into R via the
1762 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1763 (license license:expat)))
1764
1765 (define-public r-amap
1766 (package
1767 (name "r-amap")
1768 (version "0.8-18")
1769 (source (origin
1770 (method url-fetch)
1771 (uri (cran-uri "amap" version))
1772 (sha256
1773 (base32
1774 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
1775 (build-system r-build-system)
1776 (native-inputs
1777 `(("gfortran" ,gfortran)))
1778 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1779 (synopsis "Another multidimensional analysis package")
1780 (description "This package provides tools for clustering and principal
1781 component analysis (with robust methods, and parallelized functions).")
1782 (license license:gpl2+)))
1783
1784 (define-public r-ape
1785 (package
1786 (name "r-ape")
1787 (version "5.4-1")
1788 (source
1789 (origin
1790 (method url-fetch)
1791 (uri (cran-uri "ape" version))
1792 (sha256
1793 (base32
1794 "1r7fwyz30ippcl1ibqiv1xryf44x5crcks5kx19h146ffj76qcgh"))))
1795 (build-system r-build-system)
1796 (propagated-inputs
1797 `(("r-lattice" ,r-lattice)
1798 ("r-nlme" ,r-nlme)
1799 ("r-rcpp" ,r-rcpp)))
1800 (home-page "http://ape-package.ird.fr/")
1801 (synopsis "Analyses of phylogenetics and evolution")
1802 (description
1803 "This package provides functions for reading, writing, plotting, and
1804 manipulating phylogenetic trees, analyses of comparative data in a
1805 phylogenetic framework, ancestral character analyses, analyses of
1806 diversification and macroevolution, computing distances from DNA sequences,
1807 and several other tools.")
1808 (license license:gpl2+)))
1809
1810 (define-public r-abbyyr
1811 (package
1812 (name "r-abbyyr")
1813 (version "0.5.5")
1814 (source
1815 (origin
1816 (method url-fetch)
1817 (uri (cran-uri "abbyyR" version))
1818 (sha256
1819 (base32
1820 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1821 (properties `((upstream-name . "abbyyR")))
1822 (build-system r-build-system)
1823 (propagated-inputs
1824 `(("r-curl" ,r-curl)
1825 ("r-httr" ,r-httr)
1826 ("r-plyr" ,r-plyr)
1827 ("r-progress" ,r-progress)
1828 ("r-readr" ,r-readr)
1829 ("r-xml" ,r-xml)))
1830 (home-page "https://github.com/soodoku/abbyyR")
1831 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1832 (description
1833 "This package provides tools to get text from images of text using Abbyy
1834 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1835 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1836 passports and get the results in a variety of formats including plain text and
1837 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1838 (license license:expat)))
1839
1840 (define-public r-colorspace
1841 (package
1842 (name "r-colorspace")
1843 (version "1.4-1")
1844 (source
1845 (origin
1846 (method url-fetch)
1847 (uri (cran-uri "colorspace" version))
1848 (sha256
1849 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1850 (build-system r-build-system)
1851 (home-page "https://cran.r-project.org/web/packages/colorspace")
1852 (synopsis "Color space manipulation")
1853 (description
1854 "This package carries out a mapping between assorted color spaces
1855 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1856 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1857 colors are provided.")
1858 (license license:bsd-3)))
1859
1860 (define-public r-glue
1861 (package
1862 (name "r-glue")
1863 (version "1.4.1")
1864 (source
1865 (origin
1866 (method url-fetch)
1867 (uri (cran-uri "glue" version))
1868 (sha256
1869 (base32
1870 "1j1va4vi3g9sl0cyjdwxvh5lvh10x8k9qvnsr9zyxddcbk9qgdpq"))))
1871 (build-system r-build-system)
1872 ;; knitr depends on glue, so we can't add knitr here to build the
1873 ;; vignettes.
1874 #;
1875 (native-inputs
1876 `(("r-knitr" ,r-knitr)))
1877 (home-page "https://github.com/tidyverse/glue")
1878 (synopsis "Interpreted string literals")
1879 (description
1880 "This package provides an implementation of interpreted string literals,
1881 inspired by Python's Literal String Interpolation (PEP-0498) and
1882 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1883 (license license:expat)))
1884
1885 (define-public r-pastecs
1886 (package
1887 (name "r-pastecs")
1888 (version "1.3.21")
1889 (source (origin
1890 (method url-fetch)
1891 (uri (cran-uri "pastecs" version))
1892 (sha256
1893 (base32
1894 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1895 (build-system r-build-system)
1896 (propagated-inputs
1897 `(("r-boot" ,r-boot)))
1898 (home-page "http://www.sciviews.org/pastecs")
1899 (synopsis "Analysis of space-time ecological series")
1900 (description
1901 "This package provides functions for regulation, decomposition and analysis
1902 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1903 initiative to bring PASSTEC 2000 functionalities to R.")
1904 (license license:gpl2+)))
1905
1906 (define-public r-plogr
1907 (package
1908 (name "r-plogr")
1909 (version "0.2.0")
1910 (source
1911 (origin
1912 (method url-fetch)
1913 (uri (cran-uri "plogr" version))
1914 (sha256
1915 (base32
1916 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1917 (build-system r-build-system)
1918 (home-page "https://github.com/krlmlr/plogr")
1919 (synopsis "R bindings for the plog C++ logging library")
1920 (description
1921 "This package provides the header files for a stripped-down version of
1922 the plog header-only C++ logging library, and a method to log to R's standard
1923 error stream.")
1924 (license license:expat)))
1925
1926 (define-public r-pls
1927 (package
1928 (name "r-pls")
1929 (version "2.7-3")
1930 (source
1931 (origin
1932 (method url-fetch)
1933 (uri (cran-uri "pls" version))
1934 (sha256
1935 (base32 "0b3ls12w19wc4xkhnsgmb333y9lyzwq3syjc3k8zs1agnw59c7cg"))))
1936 (build-system r-build-system)
1937 (home-page "https://mevik.net/work/software/pls.html")
1938 (synopsis "Partial Least Squares and Principal Component Regression")
1939 (description
1940 "The pls package implements multivariate regression methods: Partial Least
1941 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1942 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1943
1944 @itemize
1945 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1946 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1947 @item multi-response models (or @dfn{PLS2})
1948 @item flexible cross-validation
1949 @item Jackknife variance estimates of regression coefficients
1950 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1951 (R)MSEP, R², and correlation loadings
1952 @item formula interface, modelled after @code{lm()}, with methods for predict,
1953 print, summary, plot, update, etc.
1954 @item extraction functions for coefficients, scores, and loadings
1955 @item MSEP, RMSEP, and R² estimates
1956 @item multiplicative scatter correction (@dfn{MSC})
1957 @end itemize\n")
1958 (license license:gpl2)))
1959
1960 (define-public r-ps
1961 (package
1962 (name "r-ps")
1963 (version "1.3.4")
1964 (source
1965 (origin
1966 (method url-fetch)
1967 (uri (cran-uri "ps" version))
1968 (sha256
1969 (base32 "1cxfhnff22fbsr9vynhql0rhhrqfxvkb6kv11h2m740r9scwcs44"))))
1970 (build-system r-build-system)
1971 (home-page "https://ps.r-lib.org")
1972 (synopsis "List, query, and manipulate system processes")
1973 (description
1974 "The ps package implements an API to list, query, and manipulate system
1975 processes. Most of its code is based on the @code{psutil} Python package.")
1976 (license license:bsd-3)))
1977
1978 (define-public r-pkgbuild
1979 (package
1980 (name "r-pkgbuild")
1981 (version "1.1.0")
1982 (source
1983 (origin
1984 (method url-fetch)
1985 (uri (cran-uri "pkgbuild" version))
1986 (sha256
1987 (base32 "1gdbrjq4kiwm45c6pb23mp327qyjvslhyf72ca4zhlzwc5vgp6xk"))))
1988 (build-system r-build-system)
1989 (propagated-inputs
1990 `(("r-callr" ,r-callr)
1991 ("r-cli" ,r-cli)
1992 ("r-crayon" ,r-crayon)
1993 ("r-desc" ,r-desc)
1994 ("r-prettyunits" ,r-prettyunits)
1995 ("r-r6" ,r-r6)
1996 ("r-rprojroot" ,r-rprojroot)
1997 ("r-withr" ,r-withr)))
1998 (home-page "https://github.com/r-pkgs/pkgbuild")
1999 (synopsis "Find tools needed to build R packages")
2000 (description
2001 "This package provides functions used to build R packages. It locates
2002 compilers needed to build R packages on various platforms and ensures the PATH
2003 is configured appropriately so R can use them.")
2004 (license license:gpl3)))
2005
2006 (define-public r-pkgload
2007 (package
2008 (name "r-pkgload")
2009 (version "1.1.0")
2010 (source
2011 (origin
2012 (method url-fetch)
2013 (uri (cran-uri "pkgload" version))
2014 (sha256
2015 (base32
2016 "03bv8xq4s6s7m34y1kjs99jzlb95vwrfi76mbnhmzcx2pc6ld78q"))))
2017 (build-system r-build-system)
2018 (propagated-inputs
2019 `(("r-cli" ,r-cli)
2020 ("r-crayon" ,r-crayon)
2021 ("r-desc" ,r-desc)
2022 ("r-pkgbuild" ,r-pkgbuild)
2023 ("r-rlang" ,r-rlang)
2024 ("r-rprojroot" ,r-rprojroot)
2025 ("r-rstudioapi" ,r-rstudioapi)
2026 ("r-withr" ,r-withr)))
2027 (home-page "https://github.com/r-lib/pkgload")
2028 (synopsis "Simulate package installation and attach")
2029 (description
2030 "This package simulates the process of installing a package and then
2031 attaching it. This is a key part of the @code{devtools} package as it allows
2032 you to rapidly iterate while developing a package.")
2033 (license license:gpl3)))
2034
2035 (define-public r-rcpp
2036 (package
2037 (name "r-rcpp")
2038 (version "1.0.5")
2039 (source
2040 (origin
2041 (method url-fetch)
2042 (uri (cran-uri "Rcpp" version))
2043 (sha256
2044 (base32 "012wbj446k1wz6bp6bpf6h77ypvcsw69xvnax6qf6vyc7dj2qimq"))))
2045 (build-system r-build-system)
2046 (home-page "http://www.rcpp.org")
2047 (synopsis "Seamless R and C++ integration")
2048 (description
2049 "The Rcpp package provides R functions as well as C++ classes which offer
2050 a seamless integration of R and C++. Many R data types and objects can be
2051 mapped back and forth to C++ equivalents which facilitates both writing of new
2052 code as well as easier integration of third-party libraries. Documentation
2053 about Rcpp is provided by several vignettes included in this package, via the
2054 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
2055 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
2056 @code{citation(\"Rcpp\")} for details on these last two.")
2057 (license license:gpl2+)))
2058
2059 (define-public r-bindr
2060 (package
2061 (name "r-bindr")
2062 (version "0.1.1")
2063 (source
2064 (origin
2065 (method url-fetch)
2066 (uri (cran-uri "bindr" version))
2067 (sha256
2068 (base32
2069 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
2070 (build-system r-build-system)
2071 (home-page "https://github.com/krlmlr/bindr")
2072 (synopsis "Parametrized active bindings")
2073 (description
2074 "This package provides a simple interface for creating active bindings
2075 where the bound function accepts additional arguments.")
2076 (license license:expat)))
2077
2078 (define-public r-bindrcpp
2079 (package
2080 (name "r-bindrcpp")
2081 (version "0.2.2")
2082 (source
2083 (origin
2084 (method url-fetch)
2085 (uri (cran-uri "bindrcpp" version))
2086 (sha256
2087 (base32
2088 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
2089 (build-system r-build-system)
2090 (propagated-inputs
2091 `(("r-bindr" ,r-bindr)
2092 ("r-plogr" ,r-plogr)
2093 ("r-rcpp" ,r-rcpp)))
2094 (home-page "https://github.com/krlmlr/bindrcpp")
2095 (synopsis "Rcpp interface to active bindings")
2096 (description
2097 "This package provides an easy way to fill an environment with active
2098 bindings that call a C++ function.")
2099 (license license:expat)))
2100
2101 (define-public r-auc
2102 (package
2103 (name "r-auc")
2104 (version "0.3.0")
2105 (source
2106 (origin
2107 (method url-fetch)
2108 (uri (cran-uri "AUC" version))
2109 (sha256
2110 (base32
2111 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
2112 (properties `((upstream-name . "AUC")))
2113 (build-system r-build-system)
2114 (home-page "https://cran.r-project.org/web/packages/AUC")
2115 (synopsis "Compute the area under the curve of selected measures")
2116 (description
2117 "This package includes functions to compute the area under the curve of
2118 selected measures: the area under the sensitivity curve (AUSEC), the area
2119 under the specificity curve (AUSPC), the area under the accuracy
2120 curve (AUACC), and the area under the receiver operating characteristic
2121 curve (AUROC). The curves can also be visualized. Support for partial areas
2122 is provided.")
2123 (license license:gpl2+)))
2124
2125 (define-public r-calibrate
2126 (package
2127 (name "r-calibrate")
2128 (version "1.7.7")
2129 (source
2130 (origin
2131 (method url-fetch)
2132 (uri (cran-uri "calibrate" version))
2133 (sha256
2134 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
2135 (build-system r-build-system)
2136 (propagated-inputs
2137 `(("r-mass" ,r-mass)))
2138 (home-page "https://cran.r-project.org/web/packages/calibrate")
2139 (synopsis "Calibration of scatterplot and biplot axes")
2140 (description
2141 "This is a package for drawing calibrated scales with tick marks
2142 on (non-orthogonal) variable vectors in scatterplots and biplots.")
2143 (license license:gpl2)))
2144
2145 (define-public r-shape
2146 (package
2147 (name "r-shape")
2148 (version "1.4.4")
2149 (source
2150 (origin
2151 (method url-fetch)
2152 (uri (cran-uri "shape" version))
2153 (sha256
2154 (base32
2155 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
2156 (build-system r-build-system)
2157 (home-page "https://cran.r-project.org/web/packages/shape")
2158 (synopsis "Functions for plotting graphical shapes")
2159 (description
2160 "This package provides functions for plotting graphical shapes such as
2161 ellipses, circles, cylinders, arrows, ...")
2162 (license license:gpl3+)))
2163
2164 (define-public r-globaloptions
2165 (package
2166 (name "r-globaloptions")
2167 (version "0.1.2")
2168 (source
2169 (origin
2170 (method url-fetch)
2171 (uri (cran-uri "GlobalOptions" version))
2172 (sha256
2173 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
2174 (properties `((upstream-name . "GlobalOptions")))
2175 (build-system r-build-system)
2176 (native-inputs
2177 `(("r-knitr" ,r-knitr)))
2178 (home-page "https://github.com/jokergoo/GlobalOptions")
2179 (synopsis "Generate functions to get or set global options")
2180 (description
2181 "This package provides more controls on the option values such as
2182 validation and filtering on the values, making options invisible or private.")
2183 (license license:gpl2+)))
2184
2185 (define-public r-circlize
2186 (package
2187 (name "r-circlize")
2188 (version "0.4.10")
2189 (source
2190 (origin
2191 (method url-fetch)
2192 (uri (cran-uri "circlize" version))
2193 (sha256
2194 (base32
2195 "1xb1jq3mg4kw1513zv1i09vhn7rj7f8vp0bnms2qml74s47wxsgk"))))
2196 (build-system r-build-system)
2197 (propagated-inputs
2198 `(("r-colorspace" ,r-colorspace)
2199 ("r-globaloptions" ,r-globaloptions)
2200 ("r-shape" ,r-shape)))
2201 (native-inputs
2202 `(("r-knitr" ,r-knitr)))
2203 (home-page "https://github.com/jokergoo/circlize")
2204 (synopsis "Circular visualization")
2205 (description
2206 "Circular layout is an efficient way to visualise huge amounts of
2207 information. This package provides an implementation of circular layout
2208 generation in R as well as an enhancement of available software. Its
2209 flexibility is based on the usage of low-level graphics functions such that
2210 self-defined high-level graphics can be easily implemented by users for
2211 specific purposes. Together with the seamless connection between the powerful
2212 computational and visual environment in R, it gives users more convenience and
2213 freedom to design figures for better understanding complex patterns behind
2214 multi-dimensional data.")
2215 (license license:gpl2+)))
2216
2217 (define-public r-powerlaw
2218 (package
2219 (name "r-powerlaw")
2220 (version "0.70.6")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (cran-uri "poweRlaw" version))
2225 (sha256
2226 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
2227 (properties `((upstream-name . "poweRlaw")))
2228 (build-system r-build-system)
2229 (propagated-inputs
2230 `(("r-pracma" ,r-pracma)))
2231 (native-inputs
2232 `(("r-knitr" ,r-knitr)))
2233 (home-page "https://github.com/csgillespie/poweRlaw")
2234 (synopsis "Tools for the analysis of heavy tailed distributions")
2235 (description
2236 "This package provides an implementation of maximum likelihood estimators
2237 for a variety of heavy tailed distributions, including both the discrete and
2238 continuous power law distributions. Additionally, a goodness-of-fit based
2239 approach is used to estimate the lower cut-off for the scaling region.")
2240 ;; Any of these GPL versions.
2241 (license (list license:gpl2 license:gpl3))))
2242
2243 (define-public r-compare
2244 (package
2245 (name "r-compare")
2246 (version "0.2-6")
2247 (source
2248 (origin
2249 (method url-fetch)
2250 (uri (cran-uri "compare" version))
2251 (sha256
2252 (base32
2253 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
2254 (build-system r-build-system)
2255 (home-page "https://cran.r-project.org/web/packages/compare")
2256 (synopsis "Comparing objects for differences")
2257 (description
2258 "This package provides functions to compare a model object to a
2259 comparison object. If the objects are not identical, the functions can be
2260 instructed to explore various modifications of the objects (e.g., sorting
2261 rows, dropping names) to see if the modified versions are identical.")
2262 (license license:gpl2+)))
2263
2264 (define-public r-dendextend
2265 (package
2266 (name "r-dendextend")
2267 (version "1.13.4")
2268 (source
2269 (origin
2270 (method url-fetch)
2271 (uri (cran-uri "dendextend" version))
2272 (sha256
2273 (base32
2274 "1pjbz6sb4pgh3d5pm53vmf3q8y6lq3hrgjd6547xxs3m63sb8mn4"))))
2275 (build-system r-build-system)
2276 (propagated-inputs
2277 `(("r-ggplot2" ,r-ggplot2)
2278 ("r-magrittr" ,r-magrittr)
2279 ("r-viridis" ,r-viridis)))
2280 (home-page "https://cran.r-project.org/web/packages/dendextend")
2281 (synopsis "Extending 'dendrogram' functionality in R")
2282 (description
2283 "This package offers a set of functions for extending @code{dendrogram}
2284 objects in R, letting you visualize and compare trees of hierarchical
2285 clusterings. You can adjust a tree's graphical parameters (the color, size,
2286 type, etc of its branches, nodes and labels) and visually and statistically
2287 compare different dendrograms to one another.")
2288 ;; Any of these versions
2289 (license (list license:gpl2 license:gpl3))))
2290
2291 (define-public r-getoptlong
2292 (package
2293 (name "r-getoptlong")
2294 (version "1.0.2")
2295 (source
2296 (origin
2297 (method url-fetch)
2298 (uri (cran-uri "GetoptLong" version))
2299 (sha256
2300 (base32
2301 "1p89v2qzqfxyrmqzkv245716n9i4bllnq77a6gw811mgdhxbd51l"))))
2302 (properties `((upstream-name . "GetoptLong")))
2303 (build-system r-build-system)
2304 (inputs
2305 `(("perl" ,perl)))
2306 (propagated-inputs
2307 `(("r-crayon" ,r-crayon)
2308 ("r-globaloptions" ,r-globaloptions)
2309 ("r-rjson" ,r-rjson)))
2310 (native-inputs
2311 `(("r-knitr" ,r-knitr)))
2312 (home-page "https://github.com/jokergoo/GetoptLong")
2313 (synopsis "Parsing command-line arguments and variable interpolation")
2314 (description
2315 "This is yet another command-line argument parser which wraps the
2316 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
2317 use in R. It also provides a simple way for variable interpolation in R.")
2318 (license license:gpl2+)))
2319
2320 (define-public r-fastmatch
2321 (package
2322 (name "r-fastmatch")
2323 (version "1.1-0")
2324 (source
2325 (origin
2326 (method url-fetch)
2327 (uri (cran-uri "fastmatch" version))
2328 (sha256
2329 (base32
2330 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
2331 (build-system r-build-system)
2332 (home-page "https://www.rforge.net/fastmatch")
2333 (synopsis "Fast match function")
2334 (description
2335 "This package provides a fast @code{match} replacement for cases that
2336 require repeated look-ups. It is slightly faster that R's built-in
2337 @code{match} function on first match against a table, but extremely fast on
2338 any subsequent lookup as it keeps the hash table in memory.")
2339 (license license:gpl2)))
2340
2341 (define-public r-ff
2342 (package
2343 (name "r-ff")
2344 (version "4.0.2")
2345 (source
2346 (origin
2347 (method url-fetch)
2348 (uri (cran-uri "ff" version))
2349 (sha256
2350 (base32
2351 "1qbfmhk4v76q145yalqaiaffklvkfs615b5m0imxyjyjcvx1nbn0"))))
2352 (build-system r-build-system)
2353 (propagated-inputs `(("r-bit" ,r-bit)))
2354 (home-page "http://ff.r-forge.r-project.org/")
2355 (synopsis "Memory-efficient storage of large data on disk and access functions")
2356 (description
2357 "This package provides data structures that are stored on disk but
2358 behave (almost) as if they were in RAM by transparently mapping only a section
2359 in main memory.")
2360 ;; error Architecture not supported.
2361 (supported-systems (delete "aarch64-linux" %supported-systems))
2362 (license license:gpl2)))
2363
2364 (define-public r-ffbase
2365 (package
2366 (name "r-ffbase")
2367 (version "0.12.8")
2368 (source
2369 (origin
2370 (method url-fetch)
2371 (uri (cran-uri "ffbase" version))
2372 (sha256
2373 (base32
2374 "0mjk7dkq1ginqqfvngzny747ggf9a8fd7kblq96n5ys1jrwjyqhq"))))
2375 (build-system r-build-system)
2376 (propagated-inputs
2377 `(("r-bit" ,r-bit)
2378 ("r-fastmatch" ,r-fastmatch)
2379 ("r-ff" ,r-ff)))
2380 (home-page "https://github.com/edwindj/ffbase")
2381 (synopsis "Basic statistical functions for package 'ff'")
2382 (description
2383 "This package extends the out of memory vectors of @code{ff} with
2384 statistical functions and other utilities to ease their usage.")
2385 (license license:gpl3)))
2386
2387 (define-public r-prettyunits
2388 (package
2389 (name "r-prettyunits")
2390 (version "1.1.1")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (cran-uri "prettyunits" version))
2395 (sha256
2396 (base32
2397 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
2398 (build-system r-build-system)
2399 (home-page "https://github.com/gaborcsardi/prettyunits")
2400 (synopsis "Pretty, human readable formatting of quantities")
2401 (description
2402 "This package provides tools for pretty, human readable formatting of
2403 quantities.")
2404 (license license:expat)))
2405
2406 (define-public r-reshape
2407 (package
2408 (name "r-reshape")
2409 (version "0.8.8")
2410 (source
2411 (origin
2412 (method url-fetch)
2413 (uri (cran-uri "reshape" version))
2414 (sha256
2415 (base32
2416 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
2417 (build-system r-build-system)
2418 (propagated-inputs
2419 `(("r-plyr" ,r-plyr)
2420 ("r-rcpp" ,r-rcpp)))
2421 (home-page "http://had.co.nz/reshape")
2422 (synopsis "Flexibly reshape data")
2423 (description
2424 "Flexibly restructure and aggregate data using just two functions:
2425 @code{melt} and @code{cast}. This package provides them.")
2426 (license license:expat)))
2427
2428 (define-public r-progress
2429 (package
2430 (name "r-progress")
2431 (version "1.2.2")
2432 (source
2433 (origin
2434 (method url-fetch)
2435 (uri (cran-uri "progress" version))
2436 (sha256
2437 (base32
2438 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
2439 (build-system r-build-system)
2440 (propagated-inputs
2441 `(("r-crayon" ,r-crayon)
2442 ("r-hms" ,r-hms)
2443 ("r-prettyunits" ,r-prettyunits)
2444 ("r-r6" ,r-r6)))
2445 (home-page "https://github.com/gaborcsardi/progress")
2446 (synopsis "Terminal progress bars")
2447 (description
2448 "This package provides configurable progress bars. They may include
2449 percentage, elapsed time, and/or the estimated completion time. They work in
2450 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
2451 package also provides a C++ API, that works with or without Rcpp.")
2452 (license license:expat)))
2453
2454 (define-public r-ggally
2455 (package
2456 (name "r-ggally")
2457 (version "2.0.0")
2458 (source
2459 (origin
2460 (method url-fetch)
2461 (uri (cran-uri "GGally" version))
2462 (sha256
2463 (base32
2464 "1gkmpzh1yvwvypkw0nwqv3gsf6za3220wig3rfv8g23kss60rl1s"))))
2465 (properties `((upstream-name . "GGally")))
2466 (build-system r-build-system)
2467 (inputs
2468 `(("libressl" ,libressl)))
2469 (propagated-inputs
2470 `(("r-ggplot2" ,r-ggplot2)
2471 ("r-gtable" ,r-gtable)
2472 ("r-lifecycle" ,r-lifecycle)
2473 ("r-plyr" ,r-plyr)
2474 ("r-progress" ,r-progress)
2475 ("r-rcolorbrewer" ,r-rcolorbrewer)
2476 ("r-reshape" ,r-reshape)
2477 ("r-rlang" ,r-rlang)
2478 ("r-scales" ,r-scales)))
2479 (home-page "https://ggobi.github.io/ggally")
2480 (synopsis "Extension to ggplot2")
2481 (description
2482 "The R package ggplot2 is a plotting system based on the grammar of
2483 graphics. GGally extends ggplot2 by adding several functions to reduce the
2484 complexity of combining geometric objects with transformed data. Some of
2485 these functions include a pairwise plot matrix, a two group pairwise plot
2486 matrix, a parallel coordinates plot, a survival plot, and several functions to
2487 plot networks.")
2488 (license license:gpl2+)))
2489
2490 (define-public r-proxy
2491 (package
2492 (name "r-proxy")
2493 (version "0.4-24")
2494 (source
2495 (origin
2496 (method url-fetch)
2497 (uri (cran-uri "proxy" version))
2498 (sha256
2499 (base32
2500 "0z4wdnpv5x135nssxnmkkba7fivd5xgbpaabqjkl2na76vq9pzwc"))))
2501 (build-system r-build-system)
2502 (home-page "https://cran.r-project.org/web/packages/proxy")
2503 (synopsis "Distance and similarity measures")
2504 (description
2505 "This package provides an extensible framework for the efficient
2506 calculation of auto- and cross-proximities, along with implementations of the
2507 most popular ones.")
2508 (license license:gpl2)))
2509
2510 (define-public r-sp
2511 (package
2512 (name "r-sp")
2513 (version "1.4-2")
2514 (source
2515 (origin
2516 (method url-fetch)
2517 (uri (cran-uri "sp" version))
2518 (sha256
2519 (base32 "02jxsd30apzjbdbssirysq70d4svdwzn931jhxr0ladl72g9bqvk"))))
2520 (build-system r-build-system)
2521 (propagated-inputs
2522 `(("r-lattice" ,r-lattice)))
2523 (home-page "https://cran.r-project.org/web/packages/sp")
2524 (synopsis "Classes and methods for spatial data")
2525 (description
2526 "This package provides classes and methods for spatial data; the classes
2527 document where the spatial location information resides, for 2D or 3D data.
2528 Utility functions are provided, e.g. for plotting data as maps, spatial
2529 selection, as well as methods for retrieving coordinates, for subsetting,
2530 print, summary, etc.")
2531 (license license:gpl2+)))
2532
2533 (define-public r-rmtstat
2534 (package
2535 (name "r-rmtstat")
2536 (version "0.3")
2537 (source
2538 (origin
2539 (method url-fetch)
2540 (uri (cran-uri "RMTstat" version))
2541 (sha256
2542 (base32
2543 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2544 (properties `((upstream-name . "RMTstat")))
2545 (build-system r-build-system)
2546 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2547 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2548 (description
2549 "This package provides functions for working with the Tracy-Widom laws
2550 and other distributions related to the eigenvalues of large Wishart
2551 matrices.")
2552 (license license:bsd-3)))
2553
2554 (define-public r-rmpi
2555 (package
2556 (name "r-rmpi")
2557 (version "0.6-9")
2558 (source (origin
2559 (method url-fetch)
2560 (uri (cran-uri "Rmpi" version))
2561 (sha256
2562 (base32
2563 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2564 (properties `((upstream-name . "Rmpi")))
2565 (build-system r-build-system)
2566 (arguments
2567 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2568 #:phases (modify-phases %standard-phases
2569 (add-before 'install 'mpi-setup
2570 ,%openmpi-setup))))
2571 (inputs
2572 `(("openmpi" ,openmpi)))
2573 (native-inputs
2574 `(("pkg-config" ,pkg-config)))
2575 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2576 (synopsis "R interface to message-passing interface (MPI)")
2577 (description
2578 "This package provides an interface (wrapper) to MPI APIs. It also
2579 provides an interactive R manager and worker environment.")
2580 (license license:gpl2+)))
2581
2582 (define-public r-lmoments
2583 (package
2584 (name "r-lmoments")
2585 (version "1.3-1")
2586 (source
2587 (origin
2588 (method url-fetch)
2589 (uri (cran-uri "Lmoments" version))
2590 (sha256
2591 (base32
2592 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2593 (properties `((upstream-name . "Lmoments")))
2594 (build-system r-build-system)
2595 (propagated-inputs
2596 `(("r-rcpp" ,r-rcpp)
2597 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2598 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2599 (synopsis "L-moments and quantile mixtures")
2600 (description
2601 "This package contains functions to estimate L-moments and trimmed
2602 L-moments from the data. It also contains functions to estimate the
2603 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2604 quantile mixture from L-moments and trimmed L-moments.")
2605 (license license:gpl2)))
2606
2607 (define-public r-distillery
2608 (package
2609 (name "r-distillery")
2610 (version "1.1")
2611 (source
2612 (origin
2613 (method url-fetch)
2614 (uri (cran-uri "distillery" version))
2615 (sha256
2616 (base32
2617 "15qhvhg6wmvlxrvvw70sk8pv76z5pd04vyasgczvxa0599ih7bzh"))))
2618 (build-system r-build-system)
2619 (home-page "https://ral.ucar.edu/staff/ericg/")
2620 (synopsis "Functions for confidence intervals and object information")
2621 (description
2622 "This package provides some very simple method functions for confidence
2623 interval calculation and to distill pertinent information from a potentially
2624 complex object; primarily used in common with the packages extRemes and
2625 SpatialVx.")
2626 (license license:gpl2+)))
2627
2628 (define-public r-extremes
2629 (package
2630 (name "r-extremes")
2631 (version "2.0-12")
2632 (source
2633 (origin
2634 (method url-fetch)
2635 (uri (cran-uri "extRemes" version))
2636 (sha256
2637 (base32
2638 "0wldzvj1h93jksq31dw9zgnr1wrqwmfr9qwmg7qk7nznsn2yy1h2"))))
2639 (properties `((upstream-name . "extRemes")))
2640 (build-system r-build-system)
2641 (propagated-inputs
2642 `(("r-distillery" ,r-distillery)
2643 ("r-lmoments" ,r-lmoments)))
2644 (home-page "https://www.assessment.ucar.edu/toolkit/")
2645 (synopsis "Extreme value analysis")
2646 (description
2647 "ExtRemes is a suite of functions for carrying out analyses on the
2648 extreme values of a process of interest; be they block maxima over long blocks
2649 or excesses over a high threshold.")
2650 (license license:gpl2+)))
2651
2652 (define-public r-lmtest
2653 (package
2654 (name "r-lmtest")
2655 (version "0.9-37")
2656 (source
2657 (origin
2658 (method url-fetch)
2659 (uri (cran-uri "lmtest" version))
2660 (sha256
2661 (base32
2662 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
2663 (build-system r-build-system)
2664 (propagated-inputs
2665 `(("r-zoo" ,r-zoo)))
2666 (native-inputs
2667 `(("gfortran" ,gfortran)))
2668 (home-page "https://cran.r-project.org/web/packages/lmtest")
2669 (synopsis "Testing linear regression models")
2670 (description
2671 "This package provides a collection of tests, data sets, and examples for
2672 diagnostic checking in linear regression models. Furthermore, some generic
2673 tools for inference in parametric models are provided.")
2674 ;; Either version is okay
2675 (license (list license:gpl2 license:gpl3))))
2676
2677 (define-public r-idr
2678 (package
2679 (name "r-idr")
2680 (version "1.2")
2681 (source (origin
2682 (method url-fetch)
2683 (uri (cran-uri "idr" version))
2684 (sha256
2685 (base32
2686 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2687 (build-system r-build-system)
2688 (home-page "https://cran.r-project.org/web/packages/idr/")
2689 (synopsis "Irreproducible discovery rate")
2690 (description
2691 "This is a package for estimating the copula mixture model and plotting
2692 correspondence curves in \"Measuring reproducibility of high-throughput
2693 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2694 by Li, Brown, Huang, and Bickel")
2695 (license license:gpl2+)))
2696
2697 (define-public r-inline
2698 (package
2699 (name "r-inline")
2700 (version "0.3.15")
2701 (source (origin
2702 (method url-fetch)
2703 (uri (cran-uri "inline" version))
2704 (sha256
2705 (base32
2706 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2707 (build-system r-build-system)
2708 (home-page "https://cran.r-project.org/web/packages/inline")
2709 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2710 (description
2711 "This package provides functionality to dynamically define R functions
2712 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2713 @code{.Call} calling conventions.")
2714 ;; Any version of the LGPL.
2715 (license license:lgpl3+)))
2716
2717 (define-public r-inum
2718 (package
2719 (name "r-inum")
2720 (version "1.0-1")
2721 (source (origin
2722 (method url-fetch)
2723 (uri (cran-uri "inum" version))
2724 (sha256
2725 (base32
2726 "16d09391l65w557dkzhhx1aqn1ljamcmjj3yh42pwq037k0r8brw"))))
2727 (build-system r-build-system)
2728 (propagated-inputs
2729 `(("r-libcoin" ,r-libcoin)))
2730 (home-page "https://cran.r-project.org/web/packages/inum/")
2731 (synopsis "Interval and enum-type representation of vectors")
2732 (description
2733 "This package provides an enum-type representation of vectors and
2734 representation of intervals, including a method of coercing variables
2735 in data frames.")
2736 (license license:gpl2)))
2737
2738 (define-public r-bdsmatrix
2739 (package
2740 (name "r-bdsmatrix")
2741 (version "1.3-4")
2742 (source
2743 (origin
2744 (method url-fetch)
2745 (uri (cran-uri "bdsmatrix" version))
2746 (sha256
2747 (base32
2748 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
2749 (properties `((upstream-name . "bdsmatrix")))
2750 (build-system r-build-system)
2751 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
2752 (synopsis "Routines for block diagonal symmetric matrices")
2753 (description
2754 "This package provides procedures to work with block diagonal symmetric
2755 matrices, a special case of sparse matrices.")
2756 (license license:lgpl2.0)))
2757
2758 (define-public r-bbmle
2759 (package
2760 (name "r-bbmle")
2761 (version "1.0.23.1")
2762 (source
2763 (origin
2764 (method url-fetch)
2765 (uri (cran-uri "bbmle" version))
2766 (sha256
2767 (base32
2768 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
2769 (build-system r-build-system)
2770 (propagated-inputs
2771 `(("r-bdsmatrix" ,r-bdsmatrix)
2772 ("r-lattice" ,r-lattice)
2773 ("r-mass" ,r-mass)
2774 ("r-matrix" ,r-matrix)
2775 ("r-mvtnorm" ,r-mvtnorm)
2776 ("r-numderiv" ,r-numderiv)))
2777 (home-page "https://cran.r-project.org/web/packages/bbmle")
2778 (synopsis "Tools for General Maximum Likelihood Estimation")
2779 (description
2780 "This package provides methods and functions for fitting maximum
2781 likelihood models in R. This package modifies and extends the @code{mle}
2782 classes in the @code{stats4} package.")
2783 ;; Any version of the GPL
2784 (license license:gpl2+)))
2785
2786 (define-public r-emdbook
2787 (package
2788 (name "r-emdbook")
2789 (version "1.3.12")
2790 (source
2791 (origin
2792 (method url-fetch)
2793 (uri (cran-uri "emdbook" version))
2794 (sha256
2795 (base32
2796 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
2797 (build-system r-build-system)
2798 (propagated-inputs
2799 `(("r-bbmle" ,r-bbmle)
2800 ("r-coda" ,r-coda)
2801 ("r-lattice" ,r-lattice)
2802 ("r-mass" ,r-mass)
2803 ("r-plyr" ,r-plyr)))
2804 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2805 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2806 (description
2807 "This package provides auxiliary functions and data sets for \"Ecological
2808 Models and Data\", a book presenting maximum likelihood estimation and related
2809 topics for ecologists (ISBN 978-0-691-12522-0).")
2810 ;; Any GPL version
2811 (license (list license:gpl2 license:gpl3))))
2812
2813 (define-public r-lpsolve
2814 (package
2815 (name "r-lpsolve")
2816 (version "5.6.15")
2817 (source
2818 (origin
2819 (method url-fetch)
2820 (uri (cran-uri "lpSolve" version))
2821 (sha256
2822 (base32
2823 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
2824 (properties `((upstream-name . "lpSolve")))
2825 (build-system r-build-system)
2826 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2827 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2828 (description
2829 "Lp_solve is software for solving linear, integer and mixed integer
2830 programs. This implementation supplies a \"wrapper\" function in C and some R
2831 functions that solve general linear/integer problems, assignment problems, and
2832 transportation problems.")
2833 (license license:lgpl2.0)))
2834
2835 (define-public r-limsolve
2836 (package
2837 (name "r-limsolve")
2838 (version "1.5.6")
2839 (source
2840 (origin
2841 (method url-fetch)
2842 (uri (cran-uri "limSolve" version))
2843 (sha256
2844 (base32
2845 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
2846 (properties `((upstream-name . "limSolve")))
2847 (build-system r-build-system)
2848 (propagated-inputs
2849 `(("r-lpsolve" ,r-lpsolve)
2850 ("r-mass" ,r-mass)
2851 ("r-quadprog" ,r-quadprog)))
2852 (native-inputs `(("gfortran" ,gfortran)))
2853 (home-page "https://cran.r-project.org/web/packages/limSolve")
2854 (synopsis "Solving linear inverse models")
2855 (description
2856 "This package provides functions that:
2857
2858 @enumerate
2859 @item find the minimum/maximum of a linear or quadratic function,
2860 @item sample an underdetermined or overdetermined system,
2861 @item solve a linear system Ax=B for the unknown x.
2862 @end enumerate
2863
2864 It includes banded and tridiagonal linear systems. The package calls Fortran
2865 functions from LINPACK.")
2866 ;; Any GPL version.
2867 (license (list license:gpl2+ license:gpl3+))))
2868
2869 (define-public r-fitdistrplus
2870 (package
2871 (name "r-fitdistrplus")
2872 (version "1.1-1")
2873 (source
2874 (origin
2875 (method url-fetch)
2876 (uri (cran-uri "fitdistrplus" version))
2877 (sha256
2878 (base32
2879 "1rnfnwmxa495fql7q0h9018cnwygwhj8gfh6ryz1vbf474570vjl"))))
2880 (build-system r-build-system)
2881 (propagated-inputs
2882 `(("r-mass" ,r-mass)
2883 ("r-survival" ,r-survival)))
2884 (native-inputs
2885 `(("r-knitr" ,r-knitr)))
2886 (home-page "http://riskassessment.r-forge.r-project.org")
2887 (synopsis "Fitting a parametric distribution from data")
2888 (description
2889 "This package extends the @code{fitdistr} function of the MASS package
2890 with several functions to help the fit of a parametric distribution to
2891 non-censored or censored data. Censored data may contain left-censored,
2892 right-censored and interval-censored values, with several lower and upper
2893 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2894 provides moment matching (MME), quantile matching (QME) and maximum
2895 goodness-of-fit estimation (MGE) methods (available only for non-censored
2896 data). Weighted versions of MLE, MME and QME are available.")
2897 (license license:gpl2+)))
2898
2899 (define-public r-energy
2900 (package
2901 (name "r-energy")
2902 (version "1.7-7")
2903 (source
2904 (origin
2905 (method url-fetch)
2906 (uri (cran-uri "energy" version))
2907 (sha256
2908 (base32
2909 "13wnx5nwk7nsv7vf5sxhz4y0rxrnzm76ldgywk1bxrz67srqzf37"))))
2910 (build-system r-build-system)
2911 (propagated-inputs
2912 `(("r-boot" ,r-boot)
2913 ("r-rcpp" ,r-rcpp)))
2914 (home-page "https://cran.r-project.org/web/packages/energy")
2915 (synopsis "Multivariate inference via the energy of data")
2916 (description
2917 "This package provides e-statistics (energy) tests and statistics for
2918 multivariate and univariate inference, including distance correlation,
2919 one-sample, two-sample, and multi-sample tests for comparing multivariate
2920 distributions, are implemented. Measuring and testing multivariate
2921 independence based on distance correlation, partial distance correlation,
2922 multivariate goodness-of-fit tests, clustering based on energy distance,
2923 testing for multivariate normality, distance components (disco) for
2924 non-parametric analysis of structured data, and other energy
2925 statistics/methods are implemented.")
2926 (license license:gpl2+)))
2927
2928 (define-public r-suppdists
2929 (package
2930 (name "r-suppdists")
2931 (version "1.1-9.5")
2932 (source
2933 (origin
2934 (method url-fetch)
2935 (uri (cran-uri "SuppDists" version))
2936 (sha256
2937 (base32
2938 "01j6p94m1g363nph2158fq2rmd6z3h5dvcv6aidh2d6syw131xak"))))
2939 (properties `((upstream-name . "SuppDists")))
2940 (build-system r-build-system)
2941 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2942 (synopsis "Supplementary distributions")
2943 (description
2944 "This package provides ten distributions supplementing those built into
2945 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2946 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2947 coefficient, Johnson distributions, normal scores and generalized
2948 hypergeometric distributions. In addition two random number generators of
2949 George Marsaglia are included.")
2950 (license license:gpl2+)))
2951
2952 (define-public r-ksamples
2953 (package
2954 (name "r-ksamples")
2955 (version "1.2-9")
2956 (source
2957 (origin
2958 (method url-fetch)
2959 (uri (cran-uri "kSamples" version))
2960 (sha256
2961 (base32
2962 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
2963 (properties `((upstream-name . "kSamples")))
2964 (build-system r-build-system)
2965 (propagated-inputs
2966 `(("r-suppdists" ,r-suppdists)))
2967 (home-page "https://cran.r-project.org/web/packages/kSamples")
2968 (synopsis "K-Sample rank tests and their combinations")
2969 (description
2970 "This package provides tools to compares k samples using the
2971 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2972 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2973 test. It computes asymptotic, simulated or (limited) exact P-values, all
2974 valid under randomization, with or without ties, or conditionally under random
2975 sampling from populations, given the observed tie pattern. Except for Steel's
2976 test and the JT test it also combines these tests across several blocks of
2977 samples.")
2978 (license license:gpl2+)))
2979
2980 (define-public r-cvst
2981 (package
2982 (name "r-cvst")
2983 (version "0.2-2")
2984 (source
2985 (origin
2986 (method url-fetch)
2987 (uri (cran-uri "CVST" version))
2988 (sha256
2989 (base32
2990 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2991 (properties `((upstream-name . "CVST")))
2992 (build-system r-build-system)
2993 (propagated-inputs
2994 `(("r-kernlab" ,r-kernlab)
2995 ("r-matrix" ,r-matrix)))
2996 (home-page "https://cran.r-project.org/web/packages/CVST")
2997 (synopsis "Fast cross-validation via sequential testing")
2998 (description
2999 "This package implements the fast cross-validation via sequential
3000 testing (CVST) procedure. CVST is an improved cross-validation procedure
3001 which uses non-parametric testing coupled with sequential analysis to
3002 determine the best parameter set on linearly increasing subsets of the data.
3003 Additionally to the CVST the package contains an implementation of the
3004 ordinary k-fold cross-validation with a flexible and powerful set of helper
3005 objects and methods to handle the overall model selection process. The
3006 implementations of the Cochran's Q test with permutations and the sequential
3007 testing framework of Wald are generic and can therefore also be used in other
3008 contexts.")
3009 (license license:gpl2+)))
3010
3011 (define-public r-squarem
3012 (package
3013 (name "r-squarem")
3014 (version "2020.3")
3015 (source
3016 (origin
3017 (method url-fetch)
3018 (uri (cran-uri "SQUAREM" version))
3019 (sha256
3020 (base32
3021 "17l05i87vwvcsk79fbg52zrx04zdlwiiyl3ga8qafs7mqx0j976q"))))
3022 (properties `((upstream-name . "SQUAREM")))
3023 (build-system r-build-system)
3024 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
3025 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
3026 (description
3027 "This package provides algorithms for accelerating the convergence of
3028 slow, monotone sequences from smooth, contraction mapping such as the EM
3029 algorithm. It can be used to accelerate any smooth, linearly convergent
3030 acceleration scheme. A tutorial style introduction to this package is
3031 available in a vignette.")
3032 (license license:gpl2+)))
3033
3034 (define-public r-lava
3035 (package
3036 (name "r-lava")
3037 (version "1.6.7")
3038 (source
3039 (origin
3040 (method url-fetch)
3041 (uri (cran-uri "lava" version))
3042 (sha256
3043 (base32
3044 "0ffzxbb8pvfh1m6j61az4ga37snyhylq2941fyc76w7w9i2sixv3"))))
3045 (build-system r-build-system)
3046 (propagated-inputs
3047 `(("r-numderiv" ,r-numderiv)
3048 ("r-squarem" ,r-squarem)
3049 ("r-survival" ,r-survival)))
3050 (home-page "https://github.com/kkholst/lava")
3051 (synopsis "Latent variable models")
3052 (description
3053 "This package provides tools for the estimation and simulation of latent
3054 variable models.")
3055 (license license:gpl3)))
3056
3057 (define-public r-drr
3058 (package
3059 (name "r-drr")
3060 (version "0.0.4")
3061 (source
3062 (origin
3063 (method url-fetch)
3064 (uri (cran-uri "DRR" version))
3065 (sha256
3066 (base32
3067 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
3068 (properties `((upstream-name . "DRR")))
3069 (build-system r-build-system)
3070 (propagated-inputs
3071 `(("r-cvst" ,r-cvst)
3072 ("r-kernlab" ,r-kernlab)
3073 ("r-matrix" ,r-matrix)))
3074 (home-page "https://cran.r-project.org/web/packages/DRR")
3075 (synopsis "Dimensionality reduction via regression")
3076 (description
3077 "This package provides an implementation of dimensionality reduction via
3078 regression using Kernel Ridge Regression.")
3079 (license license:gpl3)))
3080
3081 (define-public r-prodlim
3082 (package
3083 (name "r-prodlim")
3084 (version "2019.11.13")
3085 (source
3086 (origin
3087 (method url-fetch)
3088 (uri (cran-uri "prodlim" version))
3089 (sha256
3090 (base32
3091 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
3092 (build-system r-build-system)
3093 (propagated-inputs
3094 `(("r-kernsmooth" ,r-kernsmooth)
3095 ("r-lava" ,r-lava)
3096 ("r-rcpp" ,r-rcpp)
3097 ("r-survival" ,r-survival)))
3098 (home-page "https://cran.r-project.org/web/packages/prodlim")
3099 (synopsis "Product-limit estimation for censored event history analysis")
3100 (description
3101 "This package provides a fast and user-friendly implementation of
3102 nonparametric estimators for censored event history (survival) analysis with
3103 the Kaplan-Meier and Aalen-Johansen methods.")
3104 (license license:gpl2+)))
3105
3106 (define-public r-dimred
3107 (package
3108 (name "r-dimred")
3109 (version "0.2.3")
3110 (source
3111 (origin
3112 (method url-fetch)
3113 (uri (cran-uri "dimRed" version))
3114 (sha256
3115 (base32
3116 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
3117 (properties `((upstream-name . "dimRed")))
3118 (build-system r-build-system)
3119 (propagated-inputs
3120 `(("r-drr" ,r-drr)
3121 ("r-magrittr" ,r-magrittr)))
3122 (home-page "https://github.com/gdkrmr/dimRed")
3123 (synopsis "Framework for dimensionality reduction")
3124 (description
3125 "This package provides a collection of dimensionality reduction
3126 techniques from R packages and provides a common interface for calling the
3127 methods.")
3128 (license license:gpl3)))
3129
3130 (define-public r-timedate
3131 (package
3132 (name "r-timedate")
3133 (version "3043.102")
3134 (source
3135 (origin
3136 (method url-fetch)
3137 (uri (cran-uri "timeDate" version))
3138 (sha256
3139 (base32
3140 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
3141 (properties `((upstream-name . "timeDate")))
3142 (build-system r-build-system)
3143 (home-page "https://www.rmetrics.org")
3144 (synopsis "Chronological and calendar objects")
3145 (description
3146 "This package provides an environment for teaching \"Financial
3147 Engineering and Computational Finance\" and for managing chronological and
3148 calendar objects.")
3149 (license license:gpl2+)))
3150
3151 (define-public r-magic
3152 (package
3153 (name "r-magic")
3154 (version "1.5-9")
3155 (source
3156 (origin
3157 (method url-fetch)
3158 (uri (cran-uri "magic" version))
3159 (sha256
3160 (base32
3161 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
3162 (build-system r-build-system)
3163 (propagated-inputs
3164 `(("r-abind" ,r-abind)))
3165 (home-page "https://github.com/RobinHankin/magic.git")
3166 (synopsis "Create and investigate magic squares")
3167 (description
3168 "This package provides a collection of efficient, vectorized algorithms
3169 for the creation and investigation of magic squares and hypercubes, including
3170 a variety of functions for the manipulation and analysis of arbitrarily
3171 dimensioned arrays.")
3172 (license license:gpl2)))
3173
3174 (define-public r-rmysql
3175 (package
3176 (name "r-rmysql")
3177 (version "0.10.20")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (cran-uri "RMySQL" version))
3182 (sha256
3183 (base32
3184 "0lv9m6zpm8dgv7yixr6xhw379vbq45d7n7gkrmjrppdj8vcih77i"))))
3185 (properties `((upstream-name . "RMySQL")))
3186 (build-system r-build-system)
3187 (inputs
3188 `(("mariadb" ,mariadb "lib")
3189 ("mariadb-dev" ,mariadb "dev")
3190 ("zlib" ,zlib)))
3191 (propagated-inputs
3192 `(("r-dbi" ,r-dbi)))
3193 (home-page "https://github.com/r-dbi/RMySQL")
3194 (synopsis "Database interface and MySQL driver for R")
3195 (description
3196 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
3197 package contains an old implementation based on legacy code from S-PLUS which
3198 is being phased out. A modern MySQL client based on Rcpp is available from
3199 the RMariaDB package.")
3200 (license license:gpl2)))
3201
3202 (define-public r-rpostgresql
3203 (package
3204 (name "r-rpostgresql")
3205 (version "0.6-2")
3206 (source
3207 (origin
3208 (method url-fetch)
3209 (uri (cran-uri "RPostgreSQL" version))
3210 (sha256
3211 (base32
3212 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
3213 (properties `((upstream-name . "RPostgreSQL")))
3214 (build-system r-build-system)
3215 (inputs
3216 `(("postgresql" ,postgresql)))
3217 (propagated-inputs
3218 `(("r-dbi" ,r-dbi)))
3219 (home-page "https://github.com/tomoakin/RPostgreSQL")
3220 (synopsis "R interface to the PostgreSQL database system")
3221 (description
3222 "This package provides a Database Interface (DBI) compliant driver for R
3223 to access PostgreSQL database systems.")
3224 ;; The whole package is released under GPL version 2. It includes code
3225 ;; under the PostgreSQL license.
3226 (license license:gpl2)))
3227
3228 (define-public r-linprog
3229 (package
3230 (name "r-linprog")
3231 (version "0.9-2")
3232 (source
3233 (origin
3234 (method url-fetch)
3235 (uri (cran-uri "linprog" version))
3236 (sha256
3237 (base32
3238 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
3239 (build-system r-build-system)
3240 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
3241 (home-page "http://linprog.r-forge.r-project.org/")
3242 (synopsis "Linear programming and optimization")
3243 (description
3244 "This package can be used to solve Linear Programming / Linear
3245 Optimization problems by using the simplex algorithm.")
3246 (license license:gpl2+)))
3247
3248 (define-public r-geometry
3249 (package
3250 (name "r-geometry")
3251 (version "0.4.5")
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (cran-uri "geometry" version))
3256 (sha256
3257 (base32
3258 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
3259 (build-system r-build-system)
3260 (propagated-inputs
3261 `(("r-magic" ,r-magic)
3262 ("r-linprog" ,r-linprog)
3263 ("r-lpsolve" ,r-lpsolve)
3264 ("r-rcpp" ,r-rcpp)
3265 ("r-rcppprogress" ,r-rcppprogress)))
3266 (home-page "http://geometry.r-forge.r-project.org/")
3267 (synopsis "Mesh generation and surface tesselation")
3268 (description
3269 "This package makes the qhull library available in R, in a similar manner
3270 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
3271 intersections about a point, Voronoi diagrams, furthest-site Delaunay
3272 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
3273 and higher dimensions. It implements the Quickhull algorithm for computing
3274 the convex hull. Qhull does not support constrained Delaunay triangulations,
3275 or mesh generation of non-convex objects, but the package does include some R
3276 functions that allow for this. Currently the package only gives access to
3277 Delaunay triangulation and convex hull computation.")
3278 ;; The Qhull sources are included and are distributed under a custom
3279 ;; non-copyleft license. The R sources are released under GPL version 2.
3280 (license (list license:gpl2
3281 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
3282
3283 (define-public r-ddalpha
3284 (package
3285 (name "r-ddalpha")
3286 (version "1.3.11")
3287 (source
3288 (origin
3289 (method url-fetch)
3290 (uri (cran-uri "ddalpha" version))
3291 (sha256
3292 (base32
3293 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
3294 (build-system r-build-system)
3295 (propagated-inputs
3296 `(("r-bh" ,r-bh)
3297 ("r-class" ,r-class)
3298 ("r-geometry" ,r-geometry)
3299 ("r-mass" ,r-mass)
3300 ("r-rcpp" ,r-rcpp)
3301 ("r-robustbase" ,r-robustbase)
3302 ("r-sfsmisc" ,r-sfsmisc)))
3303 (native-inputs
3304 `(("gfortran" ,gfortran)))
3305 (home-page "https://cran.r-project.org/web/packages/ddalpha")
3306 (synopsis "Depth-Based classification and calculation of data depth")
3307 (description
3308 "This package contains procedures for depth-based supervised learning,
3309 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
3310 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
3311 statistical depth function to a compact low-dimensional space, where the final
3312 classification is done. It also offers an extension to functional data and
3313 routines for calculating certain notions of statistical depth functions. 50
3314 multivariate and 5 functional classification problems are included.")
3315 (license license:gpl2)))
3316
3317 (define-public r-gower
3318 (package
3319 (name "r-gower")
3320 (version "0.2.2")
3321 (source
3322 (origin
3323 (method url-fetch)
3324 (uri (cran-uri "gower" version))
3325 (sha256
3326 (base32
3327 "0c9n921wn4hhlvjq96r4nkk96s5788376cbldr7y7bwz348200iz"))))
3328 (build-system r-build-system)
3329 (home-page "https://github.com/markvanderloo/gower")
3330 (synopsis "Gower's distance")
3331 (description
3332 "This package provides tools to compute Gower's distance (or similarity)
3333 coefficient between records, and to compute the top-n matches between records.
3334 Core algorithms are executed in parallel on systems supporting OpenMP.")
3335 (license license:gpl3)))
3336
3337 (define-public r-rcpproll
3338 (package
3339 (name "r-rcpproll")
3340 (version "0.3.0")
3341 (source
3342 (origin
3343 (method url-fetch)
3344 (uri (cran-uri "RcppRoll" version))
3345 (sha256
3346 (base32
3347 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
3348 (properties `((upstream-name . "RcppRoll")))
3349 (build-system r-build-system)
3350 (propagated-inputs
3351 `(("r-rcpp" ,r-rcpp)))
3352 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
3353 (synopsis "Efficient rolling and windowed operations")
3354 (description
3355 "This package provides fast and efficient routines for common rolling /
3356 windowed operations. Routines for the efficient computation of windowed mean,
3357 median, sum, product, minimum, maximum, standard deviation and variance are
3358 provided.")
3359 (license license:gpl2+)))
3360
3361 (define-public r-ipred
3362 (package
3363 (name "r-ipred")
3364 (version "0.9-9")
3365 (source
3366 (origin
3367 (method url-fetch)
3368 (uri (cran-uri "ipred" version))
3369 (sha256
3370 (base32
3371 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
3372 (build-system r-build-system)
3373 (propagated-inputs
3374 `(("r-class" ,r-class)
3375 ("r-mass" ,r-mass)
3376 ("r-nnet" ,r-nnet)
3377 ("r-prodlim" ,r-prodlim)
3378 ("r-rpart" ,r-rpart)
3379 ("r-survival" ,r-survival)))
3380 (home-page "https://cran.r-project.org/web/packages/ipred")
3381 (synopsis "Improved predictors")
3382 (description
3383 "This package provides improved predictive models by indirect
3384 classification and bagging for classification, regression and survival
3385 problems as well as resampling based estimators of prediction error.")
3386 (license license:gpl2+)))
3387
3388 (define-public r-psych
3389 (package
3390 (name "r-psych")
3391 (version "2.0.7")
3392 (source
3393 (origin
3394 (method url-fetch)
3395 (uri (cran-uri "psych" version))
3396 (sha256
3397 (base32
3398 "13z26yk9nrgviyakkij3jc7mja8wy7al9ripab07mvy21kli79bc"))))
3399 (build-system r-build-system)
3400 (propagated-inputs
3401 `(("r-lattice" ,r-lattice)
3402 ("r-mnormt" ,r-mnormt)
3403 ("r-nlme" ,r-nlme)))
3404 (home-page "https://cran.r-project.org/web/packages/psych/")
3405 (synopsis "Procedures for psychological, psychometric, and personality research")
3406 (description
3407 "This package provides a general purpose toolbox for personality,
3408 psychometric theory and experimental psychology. Functions are primarily for
3409 multivariate analysis and scale construction using factor analysis, principal
3410 component analysis, cluster analysis and reliability analysis, although others
3411 provide basic descriptive statistics. Item Response Theory is done using
3412 factor analysis of tetrachoric and polychoric correlations. Functions for
3413 analyzing data at multiple levels include within and between group statistics,
3414 including correlations and factor analysis. Functions for simulating and
3415 testing particular item and test structures are included. Several functions
3416 serve as a useful front end for structural equation modeling. Graphical
3417 displays of path diagrams, factor analysis and structural equation models are
3418 created using basic graphics.")
3419 (license license:gpl2+)))
3420
3421 (define-public r-generics
3422 (package
3423 (name "r-generics")
3424 (version "0.0.2")
3425 (source
3426 (origin
3427 (method url-fetch)
3428 (uri (cran-uri "generics" version))
3429 (sha256
3430 (base32
3431 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
3432 (build-system r-build-system)
3433 (home-page "https://github.com/r-lib/generics")
3434 (synopsis "Common S3 generics not provided by base R methods")
3435 (description
3436 "In order to reduce potential package dependencies and conflicts,
3437 generics provides a number of commonly used S3 generics that are not provided
3438 by base R methods related to model fitting.")
3439 (license license:gpl2)))
3440
3441 (define-public r-broom
3442 (package
3443 (name "r-broom")
3444 (version "0.7.0")
3445 (source
3446 (origin
3447 (method url-fetch)
3448 (uri (cran-uri "broom" version))
3449 (sha256
3450 (base32
3451 "0bq8w1ckrladzck2g0mgiyjdrzi06kbqalk5q3pfvj1607fdv3d5"))))
3452 (build-system r-build-system)
3453 (propagated-inputs
3454 `(("r-backports" ,r-backports)
3455 ("r-dplyr" ,r-dplyr)
3456 ("r-ellipsis" ,r-ellipsis)
3457 ("r-generics" ,r-generics)
3458 ("r-glue" ,r-glue)
3459 ("r-purrr" ,r-purrr)
3460 ("r-rlang" ,r-rlang)
3461 ("r-stringr" ,r-stringr)
3462 ("r-tibble" ,r-tibble)
3463 ("r-tidyr" ,r-tidyr)))
3464 (native-inputs
3465 `(("r-knitr" ,r-knitr)))
3466 (home-page "https://github.com/tidyverse/broom")
3467 (synopsis "Convert statistical analysis objects into tidy data frames")
3468 (description
3469 "This package provides tools to convert statistical analysis objects from
3470 R into tidy data frames, so that they can more easily be combined, reshaped
3471 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
3472 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
3473 summarizes a model's statistical findings such as coefficients of a
3474 regression; @code{augment}, which adds columns to the original data such as
3475 predictions, residuals and cluster assignments; and @code{glance}, which
3476 provides a one-row summary of model-level statistics.")
3477 (license license:expat)))
3478
3479 (define-public r-recipes
3480 (package
3481 (name "r-recipes")
3482 (version "0.1.13")
3483 (source
3484 (origin
3485 (method url-fetch)
3486 (uri (cran-uri "recipes" version))
3487 (sha256
3488 (base32
3489 "1d3pmprkiz60w7lq5q4lpl5zlwf7fg7qghf7sq6xs1294w54gzbs"))))
3490 (build-system r-build-system)
3491 (propagated-inputs
3492 `(("r-dplyr" ,r-dplyr)
3493 ("r-generics" ,r-generics)
3494 ("r-glue" ,r-glue)
3495 ("r-gower" ,r-gower)
3496 ("r-ipred" ,r-ipred)
3497 ("r-lifecycle" ,r-lifecycle)
3498 ("r-lubridate" ,r-lubridate)
3499 ("r-magrittr" ,r-magrittr)
3500 ("r-matrix" ,r-matrix)
3501 ("r-purrr" ,r-purrr)
3502 ("r-rlang" ,r-rlang)
3503 ("r-tibble" ,r-tibble)
3504 ("r-tidyr" ,r-tidyr)
3505 ("r-tidyselect" ,r-tidyselect)
3506 ("r-timedate" ,r-timedate)
3507 ("r-withr" ,r-withr)))
3508 (native-inputs
3509 `(("r-knitr" ,r-knitr)))
3510 (home-page "https://github.com/topepo/recipes")
3511 (synopsis "Preprocessing tools to create design matrices")
3512 (description
3513 "Recipes is an extensible framework to create and preprocess design
3514 matrices. Recipes consist of one or more data manipulation and analysis
3515 \"steps\". Statistical parameters for the steps can be estimated from an
3516 initial data set and then applied to other data sets. The resulting design
3517 matrices can then be used as inputs into statistical or machine learning
3518 models.")
3519 (license license:gpl2)))
3520
3521 (define-public r-pdist
3522 (package
3523 (name "r-pdist")
3524 (version "1.2")
3525 (source
3526 (origin
3527 (method url-fetch)
3528 (uri (cran-uri "pdist" version))
3529 (sha256
3530 (base32
3531 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
3532 (build-system r-build-system)
3533 (home-page "https://github.com/jeffwong/pdist")
3534 (synopsis "Partitioned distance function")
3535 (description
3536 "Pdist computes the euclidean distance between rows of a matrix X and
3537 rows of another matrix Y. Previously, this could be done by binding the two
3538 matrices together and calling @code{dist}, but this creates unnecessary
3539 computation by computing the distances between a row of X and another row of
3540 X, and likewise for Y. Pdist strictly computes distances across the two
3541 matrices, not within the same matrix, making computations significantly faster
3542 for certain use cases.")
3543 (license license:gpl3+)))
3544
3545 (define-public r-ggrepel
3546 (package
3547 (name "r-ggrepel")
3548 (version "0.8.2")
3549 (source
3550 (origin
3551 (method url-fetch)
3552 (uri (cran-uri "ggrepel" version))
3553 (sha256
3554 (base32
3555 "1qaifn3dazdqbqlii210xhw7yf142iw7g9p2axmmxbz90p0by08d"))))
3556 (build-system r-build-system)
3557 (propagated-inputs
3558 `(("r-ggplot2" ,r-ggplot2)
3559 ("r-rcpp" ,r-rcpp)
3560 ("r-scales" ,r-scales)))
3561 (native-inputs
3562 `(("r-knitr" ,r-knitr))) ; for vignettes
3563 (home-page "https://github.com/slowkow/ggrepel")
3564 (synopsis "Repulsive text and label geometries for ggplot2")
3565 (description
3566 "This package provides text and label geometries for ggplot2 that help to
3567 avoid overlapping text labels. Labels repel away from each other and away
3568 from the data points.")
3569 (license license:gpl3)))
3570
3571 (define-public r-corrplot
3572 (package
3573 (name "r-corrplot")
3574 (version "0.84")
3575 (source
3576 (origin
3577 (method url-fetch)
3578 (uri (cran-uri "corrplot" version))
3579 (sha256
3580 (base32
3581 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
3582 (build-system r-build-system)
3583 (home-page "https://github.com/taiyun/corrplot")
3584 (synopsis "Visualization of a correlation matrix")
3585 (description
3586 "This package provides a graphical display of a correlation matrix or
3587 general matrix. It also contains some algorithms to do matrix reordering. In
3588 addition, corrplot is good at details, including choosing color, text labels,
3589 color labels, layout, etc.")
3590 ;; Any version of the GPL
3591 (license license:gpl2+)))
3592
3593 (define-public r-stringdist
3594 (package
3595 (name "r-stringdist")
3596 (version "0.9.6")
3597 (source
3598 (origin
3599 (method url-fetch)
3600 (uri (cran-uri "stringdist" version))
3601 (sha256
3602 (base32 "0nb3iwpl4f3xxirns1frwvarpyrl4i5f74h8r6h80cg0a4mpdgcb"))))
3603 (build-system r-build-system)
3604 (home-page "https://github.com/markvanderloo/stringdist")
3605 (synopsis "Approximate string matching and string distance functions")
3606 (description
3607 "This package implements an approximate string matching version of R's
3608 native @code{match} function. It can calculate various string distances based
3609 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
3610 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3611 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3612 can be computed between character vectors while taking proper care of encoding
3613 or between integer vectors representing generic sequences.")
3614 (license license:gpl3+)))
3615
3616 (define-public r-ucminf
3617 (package
3618 (name "r-ucminf")
3619 (version "1.1-4")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (cran-uri "ucminf" version))
3624 (sha256
3625 (base32
3626 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3627 (build-system r-build-system)
3628 (native-inputs `(("gfortran" ,gfortran)))
3629 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3630 (synopsis "General-purpose unconstrained non-linear optimization")
3631 (description
3632 "This package provides an implementation of an algorithm for
3633 general-purpose unconstrained non-linear optimization. The algorithm is of
3634 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3635 search with a trust region type monitoring of the input to the line search
3636 algorithm. The interface of @code{ucminf} is designed for easy interchange
3637 with the package @code{optim}.")
3638 (license license:gpl2+)))
3639
3640 (define-public r-ordinal
3641 (package
3642 (name "r-ordinal")
3643 (version "2019.12-10")
3644 (source
3645 (origin
3646 (method url-fetch)
3647 (uri (cran-uri "ordinal" version))
3648 (sha256
3649 (base32
3650 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
3651 (build-system r-build-system)
3652 (propagated-inputs
3653 `(("r-mass" ,r-mass)
3654 ("r-matrix" ,r-matrix)
3655 ("r-numderiv" ,r-numderiv)
3656 ("r-ucminf" ,r-ucminf)))
3657 (home-page "https://github.com/runehaubo/ordinal")
3658 (synopsis "Regression models for ordinal data")
3659 (description
3660 "This package provides an implementation of cumulative link (mixed)
3661 models also known as ordered regression models, proportional odds models,
3662 proportional hazards models for grouped survival times and ordered models.
3663 Estimation is via maximum likelihood and mixed models are fitted with the
3664 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3665 (license license:gpl2+)))
3666
3667 (define-public r-jomo
3668 (package
3669 (name "r-jomo")
3670 (version "2.7-2")
3671 (source
3672 (origin
3673 (method url-fetch)
3674 (uri (cran-uri "jomo" version))
3675 (sha256
3676 (base32
3677 "1sbcpacxnxbzwa8rr9x2bq7hh0s3sw6yznr90dkp43n6xk5xaqir"))))
3678 (build-system r-build-system)
3679 (propagated-inputs
3680 `(("r-lme4" ,r-lme4)
3681 ("r-mass" ,r-mass)
3682 ("r-ordinal" ,r-ordinal)
3683 ("r-survival" ,r-survival)))
3684 (home-page "https://cran.r-project.org/web/packages/jomo/")
3685 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3686 (description
3687 "Similarly to Schafer's package pan, jomo is a package for multilevel
3688 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3689 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3690 possibility of handling binary and categorical data through latent normal
3691 variables, the option to use cluster-specific covariance matrices and to
3692 impute compatibly with the substantive model.")
3693 (license license:gpl2)))
3694
3695 (define-public r-pan
3696 (package
3697 (name "r-pan")
3698 (version "1.6")
3699 (source
3700 (origin
3701 (method url-fetch)
3702 (uri (cran-uri "pan" version))
3703 (sha256
3704 (base32
3705 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3706 (build-system r-build-system)
3707 (native-inputs `(("gfortran" ,gfortran)))
3708 (home-page "https://cran.r-project.org/web/packages/pan/")
3709 (synopsis "Multiple imputation for multivariate panel or clustered data")
3710 (description
3711 "This package implements multiple imputation for multivariate panel or
3712 clustered data.")
3713 (license license:gpl3)))
3714
3715 (define-public r-mitml
3716 (package
3717 (name "r-mitml")
3718 (version "0.3-7")
3719 (source
3720 (origin
3721 (method url-fetch)
3722 (uri (cran-uri "mitml" version))
3723 (sha256
3724 (base32
3725 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3726 (build-system r-build-system)
3727 (propagated-inputs
3728 `(("r-haven" ,r-haven)
3729 ("r-jomo" ,r-jomo)
3730 ("r-pan" ,r-pan)))
3731 (home-page "https://cran.r-project.org/web/packages/mitml/")
3732 (synopsis "Tools for multiple imputation in multilevel modeling")
3733 (description
3734 "This package provides tools for multiple imputation of missing data in
3735 multilevel modeling. It includes a user-friendly interface to the packages
3736 pan and jomo, and several functions for visualization, data management and the
3737 analysis of multiply imputed data sets.")
3738 (license license:gpl2+)))
3739
3740 (define-public r-mice
3741 (package
3742 (name "r-mice")
3743 (version "3.11.0")
3744 (source
3745 (origin
3746 (method url-fetch)
3747 (uri (cran-uri "mice" version))
3748 (sha256
3749 (base32
3750 "1gawccw32l00rcriyxys0mzbxh44x04rziy0cbycc3i1qm39d4fq"))))
3751 (build-system r-build-system)
3752 (propagated-inputs
3753 `(("r-broom" ,r-broom)
3754 ("r-dplyr" ,r-dplyr)
3755 ("r-generics" ,r-generics)
3756 ("r-lattice" ,r-lattice)
3757 ("r-rcpp" ,r-rcpp)
3758 ("r-tidyr" ,r-tidyr)))
3759 (home-page "https://cran.r-project.org/web/packages/mice/")
3760 (synopsis "Multivariate imputation by chained equations")
3761 (description
3762 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3763 implemented by the MICE algorithm as described in @url{Van Buuren and
3764 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3765 variable has its own imputation model. Built-in imputation models are
3766 provided for continuous data (predictive mean matching, normal), binary
3767 data (logistic regression), unordered categorical data (polytomous logistic
3768 regression) and ordered categorical data (proportional odds). MICE can also
3769 impute continuous two-level data (normal model, pan, second-level variables).
3770 Passive imputation can be used to maintain consistency between variables.
3771 Various diagnostic plots are available to inspect the quality of the
3772 imputations.")
3773 ;; Any of these two versions.
3774 (license (list license:gpl2 license:gpl3))))
3775
3776 (define-public r-truncnorm
3777 (package
3778 (name "r-truncnorm")
3779 (version "1.0-8")
3780 (source
3781 (origin
3782 (method url-fetch)
3783 (uri (cran-uri "truncnorm" version))
3784 (sha256
3785 (base32
3786 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3787 (build-system r-build-system)
3788 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3789 (synopsis "Truncated normal distribution")
3790 (description "This package provides functions for the truncated normal
3791 distribution with mean equal to @code{mean} and standard deviation equal to
3792 @code{sd}. It includes density, distribution, quantile, and expected value
3793 functions, as well as a random generation function.")
3794 (license license:gpl2)))
3795
3796 (define-public r-rsolnp
3797 (package
3798 (name "r-rsolnp")
3799 (version "1.16")
3800 (source
3801 (origin
3802 (method url-fetch)
3803 (uri (cran-uri "Rsolnp" version))
3804 (sha256
3805 (base32
3806 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3807 (properties `((upstream-name . "Rsolnp")))
3808 (build-system r-build-system)
3809 (propagated-inputs
3810 `(("r-truncnorm" ,r-truncnorm)))
3811 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3812 (synopsis "General non-linear optimization")
3813 (description "The Rsolnp package implements a general non-linear augmented
3814 Lagrange multiplier method solver, a @dfn{sequential quadratic
3815 programming} (SQP) based solver).")
3816 ;; Any version of the GPL.
3817 (license license:gpl2+)))
3818
3819 (define-public r-hardyweinberg
3820 (package
3821 (name "r-hardyweinberg")
3822 (version "1.6.6")
3823 (source
3824 (origin
3825 (method url-fetch)
3826 (uri (cran-uri "HardyWeinberg" version))
3827 (sha256
3828 (base32
3829 "1qn1bbzfk4w3mqrzisshw5xx7x249sgmj6qdi39lkqb58a4mf4kh"))))
3830 (properties `((upstream-name . "HardyWeinberg")))
3831 (build-system r-build-system)
3832 (propagated-inputs
3833 `(("r-mice" ,r-mice)
3834 ("r-rcpp" ,r-rcpp)
3835 ("r-rsolnp" ,r-rsolnp)))
3836 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3837 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3838 (description
3839 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3840 diallelic genetic marker data. All classical tests (chi-square, exact,
3841 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3842 included in the package, as well as functions for power computation and for
3843 the simulation of marker data under equilibrium and disequilibrium. Routines
3844 for dealing with markers on the X-chromosome are included. Functions for
3845 testing equilibrium in the presence of missing data by using multiple
3846 imputation are also provided. Implements several graphics for exploring the
3847 equilibrium status of a large set of diallelic markers: ternary plots with
3848 acceptance regions, log-ratio plots and Q-Q plots.")
3849 (license license:gpl2+)))
3850
3851 (define-public r-sm
3852 (package
3853 (name "r-sm")
3854 (version "2.2-5.6")
3855 (source
3856 (origin
3857 (method url-fetch)
3858 (uri (cran-uri "sm" version))
3859 (sha256
3860 (base32
3861 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3862 (build-system r-build-system)
3863 (native-inputs `(("gfortran" ,gfortran)))
3864 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3865 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3866 (description
3867 "This is software accompanying the book 'Applied Smoothing Techniques for
3868 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3869 University Press. It provides smoothing methods for nonparametric regression
3870 and density estimation")
3871 (license license:gpl2+)))
3872
3873 (define-public r-venndiagram
3874 (package
3875 (name "r-venndiagram")
3876 (version "1.6.20")
3877 (source (origin
3878 (method url-fetch)
3879 (uri (cran-uri "VennDiagram" version))
3880 (sha256
3881 (base32
3882 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3883 (properties `((upstream-name . "VennDiagram")))
3884 (build-system r-build-system)
3885 (propagated-inputs
3886 `(("r-futile-logger" ,r-futile-logger)))
3887 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3888 (synopsis "Generate High-Resolution Venn and Euler Plots")
3889 (description
3890 "This package provides a set of functions to generate high-resolution
3891 Venn and Euler plots. It includes handling for several special cases,
3892 including two-case scaling, and extensive customization of plot shape and
3893 structure.")
3894 (license license:gpl2+)))
3895
3896 (define-public r-vioplot
3897 (package
3898 (name "r-vioplot")
3899 (version "0.3.5")
3900 (source
3901 (origin
3902 (method url-fetch)
3903 (uri (cran-uri "vioplot" version))
3904 (sha256
3905 (base32
3906 "0aiy615kn9lpr2cs757g3pklg81n01yhqh0wrwv111fn3cy86r0v"))))
3907 (build-system r-build-system)
3908 (propagated-inputs
3909 `(("r-sm" ,r-sm)
3910 ("r-zoo" ,r-zoo)))
3911 (native-inputs
3912 `(("r-knitr" ,r-knitr)))
3913 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3914 (synopsis "Violin plot")
3915 (description
3916 "This package provides a violin plot, which is a combination of a box
3917 plot and a kernel density plot.")
3918 (license license:bsd-3)))
3919
3920 (define-public r-rsofia
3921 (package
3922 (name "r-rsofia")
3923 (version "1.1")
3924 (source (origin
3925 (method url-fetch)
3926 ;; This package has been removed from CRAN, so we can
3927 ;; only fetch it from the archives.
3928 (uri (string-append "https://cran.r-project.org/src/"
3929 "contrib/Archive/RSofia/RSofia_"
3930 version ".tar.gz"))
3931 (sha256
3932 (base32
3933 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3934 (properties `((upstream-name . "RSofia")))
3935 (build-system r-build-system)
3936 (propagated-inputs
3937 `(("r-rcpp" ,r-rcpp)))
3938 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3939 (synopsis "Port of sofia-ml to R")
3940 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3941 suite of fast incremental algorithms for machine learning that can be used for
3942 training models for classification or ranking.")
3943 (license license:asl2.0)))
3944
3945 (define-public r-xts
3946 (package
3947 (name "r-xts")
3948 (version "0.12-0")
3949 (source
3950 (origin
3951 (method url-fetch)
3952 (uri (cran-uri "xts" version))
3953 (sha256
3954 (base32
3955 "0q4cc8ynp7ndmgll1jj3lxyl6wmgg89ad3wq09kjc2ngszdfc4fz"))))
3956 (build-system r-build-system)
3957 (propagated-inputs `(("r-zoo" ,r-zoo)))
3958 (home-page "https://github.com/joshuaulrich/xts")
3959 (synopsis "Extensible time series")
3960 (description
3961 "This package provides for uniform handling of R's different time-based
3962 data classes by extending @code{zoo}, maximizing native format information
3963 preservation and allowing for user-level customization and extension, while
3964 simplifying cross-class interoperability.")
3965 (license license:gpl2+)))
3966
3967 (define-public r-performanceanalytics
3968 (package
3969 (name "r-performanceanalytics")
3970 (version "2.0.4")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (cran-uri "PerformanceAnalytics" version))
3975 (sha256
3976 (base32
3977 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
3978 (properties
3979 `((upstream-name . "PerformanceAnalytics")))
3980 (build-system r-build-system)
3981 (propagated-inputs
3982 `(("r-quadprog" ,r-quadprog)
3983 ("r-xts" ,r-xts)
3984 ("r-zoo" ,r-zoo)))
3985 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3986 (synopsis "Econometric tools for performance and risk analysis")
3987 (description "This is a collection of econometric functions for
3988 performance and risk analysis. This package aims to aid practitioners and
3989 researchers in utilizing the latest research in analysis of non-normal return
3990 streams. In general, it is most tested on return (rather than price) data on
3991 a regular scale, but most functions will work with irregular return data as
3992 well, and increasing numbers of functions will work with P&L or price data
3993 where possible.")
3994 ;; Either version may be picked.
3995 (license (list license:gpl2 license:gpl3))))
3996
3997 (define-public r-laeken
3998 (package
3999 (name "r-laeken")
4000 (version "0.5.1")
4001 (source
4002 (origin
4003 (method url-fetch)
4004 (uri (cran-uri "laeken" version))
4005 (sha256
4006 (base32
4007 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
4008 (build-system r-build-system)
4009 (propagated-inputs
4010 `(("r-boot" ,r-boot)
4011 ("r-mass" ,r-mass)))
4012 (home-page "https://cran.r-project.org/web/packages/laeken/")
4013 (synopsis "Estimation of indicators on social exclusion and poverty")
4014 (description "This package provides tools for the estimation of indicators
4015 on social exclusion and poverty, as well as an implementation of Pareto tail
4016 modeling for empirical income distributions.")
4017 (license license:gpl2+)))
4018
4019 (define-public r-vcd
4020 (package
4021 (name "r-vcd")
4022 (version "1.4-7")
4023 (source
4024 (origin
4025 (method url-fetch)
4026 (uri (cran-uri "vcd" version))
4027 (sha256
4028 (base32
4029 "16aj688nhlcvdxzfsqh4s375v8f8vl8997dl8h1xg29b42nv52gc"))))
4030 (build-system r-build-system)
4031 (propagated-inputs
4032 `(("r-colorspace" ,r-colorspace)
4033 ("r-lmtest" ,r-lmtest)
4034 ("r-mass" ,r-mass)))
4035 (home-page "https://cran.r-project.org/web/packages/vcd/")
4036 (synopsis "Visualizing categorical data")
4037 (description "This package provides visualization techniques, data sets,
4038 summary and inference procedures aimed particularly at categorical data.
4039 Special emphasis is given to highly extensible grid graphics. The package was
4040 originally inspired by the book \"Visualizing Categorical Data\" by Michael
4041 Friendly and is now the main support package for a new book, \"Discrete Data
4042 Analysis with R\" by Michael Friendly and David Meyer (2015).")
4043 (license license:gpl2)))
4044
4045 (define-public r-ica
4046 (package
4047 (name "r-ica")
4048 (version "1.0-2")
4049 (source
4050 (origin
4051 (method url-fetch)
4052 (uri (cran-uri "ica" version))
4053 (sha256
4054 (base32
4055 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
4056 (build-system r-build-system)
4057 (home-page "https://cran.r-project.org/web/packages/ica/")
4058 (synopsis "Independent component analysis")
4059 (description "This package provides tools for @dfn{Independent Component
4060 Analysis} (ICA) using various algorithms: FastICA,
4061 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
4062 of Eigenmatrices} (JADE).")
4063 (license license:gpl2+)))
4064
4065 (define-public r-dtw
4066 (package
4067 (name "r-dtw")
4068 (version "1.21-3")
4069 (source
4070 (origin
4071 (method url-fetch)
4072 (uri (cran-uri "dtw" version))
4073 (sha256
4074 (base32
4075 "02hyhx1sy5h3vzh9zixy18a7d47df4k5d0wyflcvlcbsbcl6p90s"))))
4076 (build-system r-build-system)
4077 (propagated-inputs `(("r-proxy" ,r-proxy)))
4078 (home-page "http://dtw.r-forge.r-project.org/")
4079 (synopsis "Dynamic Time Warping Algorithms")
4080 (description "This package provides a comprehensive implementation of
4081 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
4082 optimal (least cumulative distance) alignment between points of two time
4083 series. Common DTW variants covered include local (slope) and global (window)
4084 constraints, subsequence matches, arbitrary distance definitions,
4085 normalizations, minimum variance matching, and so on.")
4086 (license license:gpl2+)))
4087
4088 (define-public r-sdmtools
4089 (package
4090 (name "r-sdmtools")
4091 (version "1.1-221.2")
4092 (source
4093 (origin
4094 (method url-fetch)
4095 (uri (cran-uri "SDMTools" version))
4096 (sha256
4097 (base32
4098 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
4099 (properties `((upstream-name . "SDMTools")))
4100 (build-system r-build-system)
4101 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
4102 (home-page "https://www.rforge.net/SDMTools/")
4103 (synopsis "Species distribution modelling tools")
4104 (description "This package provides a set of tools for post processing
4105 the outcomes of species distribution modeling exercises. It includes novel
4106 methods for comparing models and tracking changes in distributions through
4107 time. It further includes methods for visualizing outcomes, selecting
4108 thresholds, calculating measures of accuracy and landscape fragmentation
4109 statistics, etc.")
4110 (license license:gpl3+)))
4111
4112 (define-public r-scatterplot3d
4113 (package
4114 (name "r-scatterplot3d")
4115 (version "0.3-41")
4116 (source
4117 (origin
4118 (method url-fetch)
4119 (uri (cran-uri "scatterplot3d" version))
4120 (sha256
4121 (base32
4122 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
4123 (build-system r-build-system)
4124 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
4125 (synopsis "3D scatter plot")
4126 (description "This package provides an implementation of scatter plots for
4127 plotting. a three dimensional point cloud.")
4128 (license license:gpl2)))
4129
4130 (define-public r-ggridges
4131 (package
4132 (name "r-ggridges")
4133 (version "0.5.2")
4134 (source
4135 (origin
4136 (method url-fetch)
4137 (uri (cran-uri "ggridges" version))
4138 (sha256
4139 (base32
4140 "03pz257aw0mkh5k75rby9givkc1ky3n5scvhjhjiz9vry9fpffmh"))))
4141 (build-system r-build-system)
4142 (propagated-inputs
4143 `(("r-ggplot2" ,r-ggplot2)
4144 ("r-plyr" ,r-plyr)
4145 ("r-scales" ,r-scales)
4146 ("r-withr" ,r-withr)))
4147 (home-page "https://github.com/clauswilke/ggridges")
4148 (synopsis "Ridgeline plots in ggplot2")
4149 (description
4150 "Ridgeline plots provide a convenient way of visualizing changes in
4151 distributions over time or space. This package enables the creation of such
4152 plots in @code{ggplot2}.")
4153 (license license:gpl2)))
4154
4155 (define-public r-ggjoy
4156 (package
4157 (name "r-ggjoy")
4158 (version "0.4.1")
4159 (source
4160 (origin
4161 (method url-fetch)
4162 (uri (cran-uri "ggjoy" version))
4163 (sha256
4164 (base32
4165 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
4166 (build-system r-build-system)
4167 (propagated-inputs
4168 `(("r-ggplot2" ,r-ggplot2)
4169 ("r-ggridges" ,r-ggridges)))
4170 (home-page "https://github.com/clauswilke/ggjoy")
4171 (synopsis "Joyplots in ggplot2")
4172 (description "Joyplots provide a convenient way of visualizing changes in
4173 distributions over time or space. This package enables the creation of such
4174 plots in @code{ggplot2}.")
4175 (license license:gpl2)))
4176
4177 (define-public r-cli
4178 (package
4179 (name "r-cli")
4180 (version "2.0.2")
4181 (source
4182 (origin
4183 (method url-fetch)
4184 (uri (cran-uri "cli" version))
4185 (sha256
4186 (base32
4187 "1dhkah6jvr96k4h4agcc2rfls75bpjb0j58fzaz3dc0fp3jk8229"))))
4188 (build-system r-build-system)
4189 (propagated-inputs
4190 `(("r-assertthat" ,r-assertthat)
4191 ("r-crayon" ,r-crayon)
4192 ("r-fansi" ,r-fansi)
4193 ("r-glue" ,r-glue)))
4194 (home-page "https://github.com/r-lib/cli#readme")
4195 (synopsis "Helpers for developing command line interfaces")
4196 (description "This package provides a suite of tools designed to build
4197 attractive command line interfaces (CLIs). It includes tools for drawing
4198 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
4199 (license license:expat)))
4200
4201 (define-public r-argparser
4202 (package
4203 (name "r-argparser")
4204 (version "0.6")
4205 (source
4206 (origin
4207 (method url-fetch)
4208 (uri (cran-uri "argparser" version))
4209 (sha256
4210 (base32
4211 "1pxiz9jlhlnpzqn1lz349r07i7glw708w202x6dlnxp112fg7k4x"))))
4212 (build-system r-build-system)
4213 (home-page "https://bitbucket.org/djhshih/argparser")
4214 (synopsis "Command-line argument parser")
4215 (description
4216 "This package provides a cross-platform command-line argument parser
4217 written purely in R with no external dependencies. It is useful with the
4218 Rscript front-end and facilitates turning an R script into an executable
4219 script.")
4220 (license license:gpl3+)))
4221
4222 (define-public r-debugme
4223 (package
4224 (name "r-debugme")
4225 (version "1.1.0")
4226 (source
4227 (origin
4228 (method url-fetch)
4229 (uri (cran-uri "debugme" version))
4230 (sha256
4231 (base32
4232 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
4233 (build-system r-build-system)
4234 (propagated-inputs `(("r-crayon" ,r-crayon)))
4235 (home-page "https://github.com/r-lib/debugme#readme")
4236 (synopsis "Debug R packages")
4237 (description
4238 "This package allows the user to specify debug messages as special string
4239 constants, and control debugging of packages via environment variables.")
4240 (license license:expat)))
4241
4242 (define-public r-processx
4243 (package
4244 (name "r-processx")
4245 (version "3.4.3")
4246 (source
4247 (origin
4248 (method url-fetch)
4249 (uri (cran-uri "processx" version))
4250 (sha256
4251 (base32 "07dhzijqnj2zkm3qrk4ppsv8wscn8ysdsjbidlg9zrbj1wcg4izj"))))
4252 (build-system r-build-system)
4253 (propagated-inputs
4254 `(("r-ps" ,r-ps)
4255 ("r-r6" ,r-r6)))
4256 (home-page "https://github.com/r-lib/processx3")
4257 (synopsis "Execute and control system processes")
4258 (description
4259 "This package provides portable tools to run system processes in the
4260 background. It can check if a background process is running; wait on a
4261 background process to finish; get the exit status of finished processes; kill
4262 background processes and their children; restart processes. It can read the
4263 standard output and error of the processes, using non-blocking connections.
4264 @code{processx} can poll a process for standard output or error, with a
4265 timeout. It can also poll several processes at once.")
4266 (license license:expat)))
4267
4268 (define-public r-tsp
4269 (package
4270 (name "r-tsp")
4271 (version "1.1-10")
4272 (source
4273 (origin
4274 (method url-fetch)
4275 (uri (cran-uri "TSP" version))
4276 (sha256
4277 (base32
4278 "0z1v6m0vqjzxc4az3zyjaayygx0jr3mdmc56jjd421iqh0b9z5s4"))))
4279 (properties `((upstream-name . "TSP")))
4280 (build-system r-build-system)
4281 (propagated-inputs `(("r-foreach" ,r-foreach)))
4282 (home-page "https://cran.r-project.org/web/packages/TSP/")
4283 (synopsis "Traveling salesperson problem (TSP)")
4284 (description "This package provides basic infrastructure and some
4285 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
4286 traveling salesman problem).")
4287 (license license:gpl3)))
4288
4289 (define-public r-qap
4290 (package
4291 (name "r-qap")
4292 (version "0.1-1")
4293 (source
4294 (origin
4295 (method url-fetch)
4296 (uri (cran-uri "qap" version))
4297 (sha256
4298 (base32
4299 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
4300 (build-system r-build-system)
4301 (native-inputs `(("gfortran" ,gfortran)))
4302 (home-page "https://cran.r-project.org/web/packages/qap/")
4303 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
4304 (description "This package implements heuristics for the @dfn{quadratic
4305 assignment problem} (QAP). Currently only a simulated annealing heuristic is
4306 available.")
4307 (license license:gpl3)))
4308
4309 (define-public r-gclus
4310 (package
4311 (name "r-gclus")
4312 (version "1.3.2")
4313 (source
4314 (origin
4315 (method url-fetch)
4316 (uri (cran-uri "gclus" version))
4317 (sha256
4318 (base32
4319 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
4320 (build-system r-build-system)
4321 (propagated-inputs `(("r-cluster" ,r-cluster)))
4322 (home-page "https://cran.r-project.org/web/packages/gclus/")
4323 (synopsis "Clustering graphics")
4324 (description "This package orders panels in scatterplot matrices and
4325 parallel coordinate displays by some merit index. It contains various indices
4326 of merit, ordering functions, and enhanced versions of @code{pairs} and
4327 @code{parcoord} which color panels according to their merit level.")
4328 (license license:gpl2+)))
4329
4330 (define-public r-webshot
4331 (package
4332 (name "r-webshot")
4333 (version "0.5.2")
4334 (source
4335 (origin
4336 (method url-fetch)
4337 (uri (cran-uri "webshot" version))
4338 (sha256
4339 (base32
4340 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
4341 (build-system r-build-system)
4342 (propagated-inputs
4343 `(("r-callr" ,r-callr)
4344 ("r-jsonlite" ,r-jsonlite)
4345 ("r-magrittr" ,r-magrittr)))
4346 (home-page "https://github.com/wch/webshot/")
4347 (synopsis "Take screenshots of web pages")
4348 (description
4349 "Webshot makes it easy to take screenshots of web pages from within R.
4350 It can also run Shiny applications locally and take screenshots of the
4351 application; and it can render and screenshot static as well as interactive R
4352 Markdown documents.")
4353 (license license:gpl2)))
4354
4355 (define-public r-seriation
4356 (package
4357 (name "r-seriation")
4358 (version "1.2-8")
4359 (source
4360 (origin
4361 (method url-fetch)
4362 (uri (cran-uri "seriation" version))
4363 (sha256
4364 (base32
4365 "1zbdxq0s5rc5v307b69fw9k52m0654ls7pf22lh35ggirig6lwsk"))))
4366 (build-system r-build-system)
4367 (propagated-inputs
4368 `(("r-cluster" ,r-cluster)
4369 ("r-colorspace" ,r-colorspace)
4370 ("r-dendextend" ,r-dendextend)
4371 ("r-gclus" ,r-gclus)
4372 ("r-gplots" ,r-gplots)
4373 ("r-mass" ,r-mass)
4374 ("r-qap" ,r-qap)
4375 ("r-registry" ,r-registry)
4376 ("r-tsp" ,r-tsp)))
4377 (native-inputs `(("gfortran" ,gfortran)))
4378 (home-page "https://s2.smu.edu/IDA/seriation/")
4379 (synopsis "Infrastructure for ordering objects using seriation")
4380 (description
4381 "This package provides infrastructure for seriation with an
4382 implementation of several seriation/sequencing techniques to reorder matrices,
4383 dissimilarity matrices, and dendrograms. It also provides (optimally)
4384 reordered heatmaps, color images and clustering visualizations like
4385 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
4386 iVAT).")
4387 (license license:gpl3)))
4388
4389 (define-public r-xfun
4390 (package
4391 (name "r-xfun")
4392 (version "0.16")
4393 (source
4394 (origin
4395 (method url-fetch)
4396 (uri (cran-uri "xfun" version))
4397 (sha256
4398 (base32 "1x7b71xhbl44fyccz69l24nbgyxawm2km90s4h1l3zr5z2vly0sg"))))
4399 (build-system r-build-system)
4400 ;; knitr itself depends on xfun
4401 #;
4402 (native-inputs
4403 `(("r-knitr" ,r-knitr)))
4404 (home-page "https://github.com/yihui/xfun")
4405 (synopsis "Miscellaneous functions")
4406 (description
4407 "This package provides miscellaneous functions commonly used in other
4408 packages maintained by Yihui Xie.")
4409 (license license:expat)))
4410
4411 (define-public r-utf8
4412 (package
4413 (name "r-utf8")
4414 (version "1.1.4")
4415 (source
4416 (origin
4417 (method url-fetch)
4418 (uri (cran-uri "utf8" version))
4419 (sha256
4420 (base32
4421 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
4422 (build-system r-build-system)
4423 (home-page "https://github.com/patperry/r-utf8")
4424 (synopsis "Unicode text processing")
4425 (description
4426 "This package provides tools to process and print UTF-8 encoded
4427 international text (Unicode). Input, validate, normalize, encode, format, and
4428 display.")
4429 (license license:asl2.0)))
4430
4431 (define-public r-zeallot
4432 (package
4433 (name "r-zeallot")
4434 (version "0.1.0")
4435 (source
4436 (origin
4437 (method url-fetch)
4438 (uri (cran-uri "zeallot" version))
4439 (sha256
4440 (base32
4441 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
4442 (build-system r-build-system)
4443 (home-page "https://github.com/nteetor/zeallot")
4444 (synopsis "Multiple, unpacking, and destructuring assignment")
4445 (description
4446 "This package provides a @code{%<-%} operator to perform multiple,
4447 unpacking, and destructuring assignment in R. The operator unpacks the
4448 right-hand side of an assignment into multiple values and assigns these values
4449 to variables on the left-hand side of the assignment.")
4450 (license license:expat)))
4451
4452 (define-public r-vctrs
4453 (package
4454 (name "r-vctrs")
4455 (version "0.3.2")
4456 (source
4457 (origin
4458 (method url-fetch)
4459 (uri (cran-uri "vctrs" version))
4460 (sha256
4461 (base32
4462 "05s8v3ms4jaim44c7m4y0dnv8mysj9b26cdfyrfgcjpllayrjib2"))))
4463 (build-system r-build-system)
4464 (propagated-inputs
4465 `(("r-digest" ,r-digest)
4466 ("r-ellipsis" ,r-ellipsis)
4467 ("r-glue" ,r-glue)
4468 ("r-rlang" ,r-rlang)))
4469 (native-inputs
4470 `(("r-knitr" ,r-knitr)))
4471 (home-page "https://github.com/r-lib/vctrs")
4472 (synopsis "Vector helpers")
4473 (description
4474 "There are three main goals to the @code{vctrs} package:
4475
4476 @enumerate
4477 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4478 @code{length()} and @code{class()}. These definitions are paired with a
4479 framework for type-coercion and size-recycling.
4480 @item To define type- and size-stability as desirable function properties, use
4481 them to analyse existing base function, and to propose better alternatives.
4482 This work has been particularly motivated by thinking about the ideal
4483 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4484 @item To provide a new @code{vctr} base class that makes it easy to create new
4485 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4486 a few new @code{vctrs} generics, making implementation considerably simpler
4487 and more robust.
4488 @end enumerate\n")
4489 (license license:gpl3)))
4490
4491 (define-public r-pillar
4492 (package
4493 (name "r-pillar")
4494 (version "1.4.6")
4495 (source
4496 (origin
4497 (method url-fetch)
4498 (uri (cran-uri "pillar" version))
4499 (sha256
4500 (base32
4501 "01ck8ziqzjc9ibbj3g88siz1iw263dgl8jx6ryw2v50rjrr3y7fj"))))
4502 (build-system r-build-system)
4503 (propagated-inputs
4504 `(("r-cli" ,r-cli)
4505 ("r-crayon" ,r-crayon)
4506 ("r-ellipsis" ,r-ellipsis)
4507 ("r-fansi" ,r-fansi)
4508 ("r-lifecycle" ,r-lifecycle)
4509 ("r-rlang" ,r-rlang)
4510 ("r-utf8" ,r-utf8)
4511 ("r-vctrs" ,r-vctrs)))
4512 (home-page "https://github.com/r-lib/pillar")
4513 (synopsis "Coloured formatting for columns")
4514 (description
4515 "This package provides a @code{pillar} generic designed for formatting
4516 columns of data using the full range of colours provided by modern
4517 terminals.")
4518 (license license:gpl3)))
4519
4520 (define-public r-uuid
4521 (package
4522 (name "r-uuid")
4523 (version "0.1-4")
4524 (source
4525 (origin
4526 (method url-fetch)
4527 (uri (cran-uri "uuid" version))
4528 (sha256
4529 (base32
4530 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
4531 (build-system r-build-system)
4532 (home-page "https://www.rforge.net/uuid")
4533 (synopsis "Tools for generating and handling of UUIDs")
4534 (description
4535 "This package provides tools for generating and handling of
4536 @dfn{Universally Unique Identifiers} (UUIDs).")
4537 (license license:expat)))
4538
4539 (define-public r-tinytex
4540 (package
4541 (name "r-tinytex")
4542 (version "0.25")
4543 (source
4544 (origin
4545 (method url-fetch)
4546 (uri (cran-uri "tinytex" version))
4547 (sha256
4548 (base32
4549 "0zbhzxxjlkdj9byxyab477p7cnws5y87nyg989lkzarxdc7dglza"))))
4550 (build-system r-build-system)
4551 (propagated-inputs
4552 `(("r-xfun" ,r-xfun)))
4553 (home-page "https://github.com/yihui/tinytex")
4554 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4555 (description
4556 "This package provides helper functions to install and maintain the LaTeX
4557 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4558 easy-to-maintain version of TeX Live. This package also contains helper
4559 functions to compile LaTeX documents, and install missing LaTeX packages
4560 automatically.")
4561 (license license:expat)))
4562
4563 (define-public r-network
4564 (package
4565 (name "r-network")
4566 (version "1.16.0")
4567 (source
4568 (origin
4569 (method url-fetch)
4570 (uri (cran-uri "network" version))
4571 (sha256
4572 (base32
4573 "0dnf1wl3za2lhx2lwd8smhlijl1cfhckgr8zz9piiirrfi2m2kx2"))))
4574 (build-system r-build-system)
4575 (propagated-inputs
4576 `(("r-magrittr" ,r-magrittr)
4577 ("r-tibble" ,r-tibble)))
4578 (home-page "https://statnet.org/")
4579 (synopsis "Classes for relational data")
4580 (description
4581 "This package provides tools to create and modify network objects. The
4582 @code{network} class can represent a range of relational data types, and
4583 supports arbitrary vertex/edge/graph attributes.")
4584 (license license:gpl2+)))
4585
4586 (define-public r-statnet-common
4587 (package
4588 (name "r-statnet-common")
4589 (version "4.3.0")
4590 (source
4591 (origin
4592 (method url-fetch)
4593 (uri (cran-uri "statnet.common" version))
4594 (sha256
4595 (base32
4596 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4597 (properties
4598 `((upstream-name . "statnet.common")))
4599 (build-system r-build-system)
4600 (propagated-inputs
4601 `(("r-coda" ,r-coda)))
4602 (home-page "https://statnet.org")
4603 (synopsis "R scripts and utilities used by the Statnet software")
4604 (description "This package provides non-statistical utilities used by the
4605 software developed by the Statnet Project.")
4606 (license license:gpl3)))
4607
4608 (define-public r-statcheck
4609 (package
4610 (name "r-statcheck")
4611 (version "1.3.0")
4612 (source
4613 (origin
4614 (method url-fetch)
4615 (uri (cran-uri "statcheck" version))
4616 (sha256
4617 (base32
4618 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
4619 (build-system r-build-system)
4620 (propagated-inputs
4621 `(("r-ggplot2" ,r-ggplot2)
4622 ("r-plyr" ,r-plyr)
4623 ("r-rmarkdown" ,r-rmarkdown)))
4624 (home-page "https://cran.r-project.org/web/packages/statcheck/")
4625 (synopsis "Extract statistics from articles and recompute p-values")
4626 (description "This package can automatically extract statistical
4627 null-hypothesis significant testing (NHST) results from articles and recompute
4628 the p-values based on the reported test statistic and degrees of freedom to
4629 detect possible inconsistencies.")
4630 (license license:gpl2)))
4631
4632 (define-public r-sna
4633 (package
4634 (name "r-sna")
4635 (version "2.5")
4636 (source
4637 (origin
4638 (method url-fetch)
4639 (uri (cran-uri "sna" version))
4640 (sha256
4641 (base32
4642 "1j3i6300m686qqfmyvadim377cd3mplzgj6mandygw8brg50id8k"))))
4643 (build-system r-build-system)
4644 (propagated-inputs
4645 `(("r-network" ,r-network)
4646 ("r-statnet-common" ,r-statnet-common)))
4647 (home-page "https://statnet.org")
4648 (synopsis "Tools for social network analysis")
4649 (description
4650 "This package provides a range of tools for social network analysis,
4651 including node and graph-level indices, structural distance and covariance
4652 methods, structural equivalence detection, network regression, random graph
4653 generation, and 2D/3D network visualization.")
4654 (license license:gpl2+)))
4655
4656 (define-public r-tfisher
4657 (package
4658 (name "r-tfisher")
4659 (version "0.2.0")
4660 (source
4661 (origin
4662 (method url-fetch)
4663 (uri (cran-uri "TFisher" version))
4664 (sha256
4665 (base32
4666 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
4667 (properties `((upstream-name . "TFisher")))
4668 (build-system r-build-system)
4669 (propagated-inputs
4670 `(("r-matrix" ,r-matrix)
4671 ("r-mvtnorm" ,r-mvtnorm)
4672 ("r-sn" ,r-sn)))
4673 (home-page "https://cran.r-project.org/web/packages/TFisher/")
4674 (synopsis "Optimal thresholding Fisher's p-value combination method")
4675 (description
4676 "This package provides the @dfn{cumulative distribution function} (CDF),
4677 quantile, and statistical power calculator for a collection of thresholding
4678 Fisher's p-value combination methods, including Fisher's p-value combination
4679 method, truncated product method and, in particular, soft-thresholding
4680 Fisher's p-value combination method which is proven to be optimal in some
4681 context of signal detection. The p-value calculator for the omnibus version
4682 of these tests are also included.")
4683 (license license:gpl2)))
4684
4685 (define-public r-ttr
4686 (package
4687 (name "r-ttr")
4688 (version "0.24.0")
4689 (source
4690 (origin
4691 (method url-fetch)
4692 (uri (cran-uri "TTR" version))
4693 (sha256
4694 (base32
4695 "0dcmfr98bxhdhszsdr1yjhvy4kplnfm88fh8sdzrkjank1qsxia2"))))
4696 (properties `((upstream-name . "TTR")))
4697 (build-system r-build-system)
4698 (propagated-inputs
4699 `(("r-curl" ,r-curl)
4700 ("r-xts" ,r-xts)
4701 ("r-zoo" ,r-zoo)))
4702 (home-page "https://github.com/joshuaulrich/TTR")
4703 (synopsis "Technical trading rules")
4704 (description
4705 "This package provides functions and data to construct technical trading
4706 rules with R.")
4707 (license license:gpl2)))
4708
4709 (define-public r-leaps
4710 (package
4711 (name "r-leaps")
4712 (version "3.1")
4713 (source
4714 (origin
4715 (method url-fetch)
4716 (uri (cran-uri "leaps" version))
4717 (sha256
4718 (base32
4719 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
4720 (build-system r-build-system)
4721 (native-inputs `(("gfortran" ,gfortran)))
4722 (home-page "https://cran.r-project.org/web/packages/leaps/")
4723 (synopsis "Regression subset selection")
4724 (description
4725 "This package provides tools for regression subset selection, including
4726 exhaustive search.")
4727 (license license:gpl2+)))
4728
4729 (define-public r-splus2r
4730 (package
4731 (name "r-splus2r")
4732 (version "1.2-2")
4733 (source
4734 (origin
4735 (method url-fetch)
4736 (uri (cran-uri "splus2R" version))
4737 (sha256
4738 (base32
4739 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4740 (properties `((upstream-name . "splus2R")))
4741 (build-system r-build-system)
4742 (native-inputs `(("gfortran" ,gfortran)))
4743 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4744 (synopsis "Supplemental S-PLUS functionality in R")
4745 (description
4746 "Currently there are many functions in S-PLUS that are missing in R. To
4747 facilitate the conversion of S-PLUS packages to R packages, this package
4748 provides some missing S-PLUS functionality in R.")
4749 (license license:gpl2)))
4750
4751 (define-public r-ifultools
4752 (package
4753 (name "r-ifultools")
4754 (version "2.0-5")
4755 (source
4756 (origin
4757 (method url-fetch)
4758 (uri (cran-uri "ifultools" version))
4759 (sha256
4760 (base32
4761 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4762 (build-system r-build-system)
4763 (propagated-inputs
4764 `(("r-mass" ,r-mass)
4765 ("r-splus2r" ,r-splus2r)))
4766 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4767 (synopsis "Insightful research tools")
4768 (description "This package provides C code used by the wmtsa, fractal, and
4769 sapa R packages.")
4770 (license license:gpl2)))
4771
4772 (define-public r-sapa
4773 (package
4774 (name "r-sapa")
4775 (version "2.0-2")
4776 (source
4777 (origin
4778 (method url-fetch)
4779 (uri (cran-uri "sapa" version))
4780 (sha256
4781 (base32
4782 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4783 (build-system r-build-system)
4784 (propagated-inputs
4785 `(("r-ifultools" ,r-ifultools)
4786 ("r-splus2r" ,r-splus2r)))
4787 (home-page "https://cran.r-project.org/web/packages/sapa/")
4788 (synopsis "Spectral analysis for physical applications")
4789 (description "This package provides software for the book Spectral
4790 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4791 Cambridge University Press, 1993.")
4792 (license license:gpl2)))
4793
4794 (define-public r-aggregation
4795 (package
4796 (name "r-aggregation")
4797 (version "1.0.1")
4798 (source
4799 (origin
4800 (method url-fetch)
4801 (uri (cran-uri "aggregation" version))
4802 (sha256
4803 (base32
4804 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4805 (build-system r-build-system)
4806 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4807 (synopsis "Methods for p-value aggregation")
4808 (description
4809 "This package contains functionality for performing the following methods
4810 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4811 Fisher's method), and Sidak correction.")
4812 (license license:gpl3)))
4813
4814 (define-public r-quantmod
4815 (package
4816 (name "r-quantmod")
4817 (version "0.4.17")
4818 (source
4819 (origin
4820 (method url-fetch)
4821 (uri (cran-uri "quantmod" version))
4822 (sha256
4823 (base32
4824 "1ss441rwlr88kz212m0wgx0hwgwi41rhy1jncg2lgqzqfvr5dzqa"))))
4825 (build-system r-build-system)
4826 (propagated-inputs
4827 `(("r-curl" ,r-curl)
4828 ("r-ttr" ,r-ttr)
4829 ("r-xts" ,r-xts)
4830 ("r-zoo" ,r-zoo)))
4831 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4832 (synopsis "Quantitative financial modelling framework")
4833 (description "This package provides a quantitative financial modelling
4834 framework to allow users to specify, build, trade, and analyse quantitative
4835 financial trading strategies.")
4836 (license license:gpl3)))
4837
4838 (define-public r-tseries
4839 (package
4840 (name "r-tseries")
4841 (version "0.10-47")
4842 (source
4843 (origin
4844 (method url-fetch)
4845 (uri (cran-uri "tseries" version))
4846 (sha256
4847 (base32
4848 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4849 (build-system r-build-system)
4850 (propagated-inputs
4851 `(("r-quadprog" ,r-quadprog)
4852 ("r-quantmod" ,r-quantmod)
4853 ("r-zoo" ,r-zoo)))
4854 (native-inputs
4855 `(("gfortran" ,gfortran)))
4856 (home-page "https://cran.r-project.org/web/packages/tseries/")
4857 (synopsis "Time series analysis and computational finance")
4858 (description
4859 "This package provides functions relating to time series analysis and
4860 computational finance.")
4861 (license license:gpl2)))
4862
4863 (define-public r-wmtsa
4864 (package
4865 (name "r-wmtsa")
4866 (version "2.0-3")
4867 (source
4868 (origin
4869 (method url-fetch)
4870 (uri (cran-uri "wmtsa" version))
4871 (sha256
4872 (base32
4873 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4874 (build-system r-build-system)
4875 (propagated-inputs
4876 `(("r-ifultools" ,r-ifultools)
4877 ("r-mass" ,r-mass)
4878 ("r-splus2r" ,r-splus2r)))
4879 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4880 (synopsis "Wavelet methods for time series analysis")
4881 (description
4882 "This package provides software to accompany the book \"Wavelet Methods
4883 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4884 University Press, 2000.")
4885 (license license:gpl2)))
4886
4887 (define-public r-tsa
4888 (package
4889 (name "r-tsa")
4890 (version "1.2")
4891 (source
4892 (origin
4893 (method url-fetch)
4894 (uri (cran-uri "TSA" version))
4895 (sha256
4896 (base32
4897 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4898 (properties `((upstream-name . "TSA")))
4899 (build-system r-build-system)
4900 (propagated-inputs
4901 `(("r-leaps" ,r-leaps)
4902 ("r-locfit" ,r-locfit)
4903 ("r-mgcv" ,r-mgcv)))
4904 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
4905 (synopsis "Time series analysis")
4906 (description
4907 "This package contains R functions and datasets detailed in the book
4908 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4909 Cryer and Kung-Sik Chan.")
4910 (license license:gpl2+)))
4911
4912 (define-public r-extradistr
4913 (package
4914 (name "r-extradistr")
4915 (version "1.8.11")
4916 (source
4917 (origin
4918 (method url-fetch)
4919 (uri (cran-uri "extraDistr" version))
4920 (sha256
4921 (base32
4922 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4923 (properties `((upstream-name . "extraDistr")))
4924 (build-system r-build-system)
4925 (propagated-inputs
4926 `(("r-rcpp" ,r-rcpp)))
4927 (home-page "https://github.com/twolodzko/extraDistr")
4928 (synopsis "Additional univariate and multivariate distributions")
4929 (description
4930 "This package implements density, distribution functions, quantile
4931 functions and random generation functions for a large number of univariate and
4932 multivariate distributions.")
4933 (license license:gpl2)))
4934
4935 (define-public r-fractal
4936 (package
4937 (name "r-fractal")
4938 (version "2.0-4")
4939 (source
4940 (origin
4941 (method url-fetch)
4942 (uri (cran-uri "fractal" version))
4943 (sha256
4944 (base32
4945 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4946 (build-system r-build-system)
4947 (propagated-inputs
4948 `(("r-ifultools" ,r-ifultools)
4949 ("r-mass" ,r-mass)
4950 ("r-sapa" ,r-sapa)
4951 ("r-scatterplot3d" ,r-scatterplot3d)
4952 ("r-splus2r" ,r-splus2r)
4953 ("r-wmtsa" ,r-wmtsa)))
4954 (home-page "https://cran.r-project.org/web/packages/fractal/")
4955 (synopsis "Fractal time series modeling and analysis")
4956 (description
4957 "This package provides tools for stochastic fractal and deterministic
4958 chaotic time series analysis.")
4959 (license license:gpl2)))
4960
4961 (define-public r-urca
4962 (package
4963 (name "r-urca")
4964 (version "1.3-0")
4965 (source
4966 (origin
4967 (method url-fetch)
4968 (uri (cran-uri "urca" version))
4969 (sha256
4970 (base32
4971 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4972 (build-system r-build-system)
4973 (propagated-inputs `(("r-nlme" ,r-nlme)))
4974 (native-inputs `(("gfortran" ,gfortran)))
4975 (home-page "https://cran.r-project.org/web/packages/urca/")
4976 (synopsis "Unit root and cointegration tests for time series data")
4977 (description
4978 "This package provides unit root and cointegration tests encountered in
4979 applied econometric analysis.")
4980 (license license:gpl2+)))
4981
4982 (define-public r-cubature
4983 (package
4984 (name "r-cubature")
4985 (version "2.0.4.1")
4986 (source
4987 (origin
4988 (method url-fetch)
4989 (uri (cran-uri "cubature" version))
4990 (sha256
4991 (base32
4992 "006la36gxdikvmdnq4ny7ik7r30id4z3b3fqsl57dpqwkpsbsgrq"))))
4993 (build-system r-build-system)
4994 (propagated-inputs
4995 `(("r-rcpp" ,r-rcpp)))
4996 (native-inputs
4997 `(("r-knitr" ,r-knitr)))
4998 (home-page "https://github.com/bnaras/cubature")
4999 (synopsis "Adaptive multivariate integration over hypercubes")
5000 (description
5001 "This package is an R wrapper around the cubature C library for adaptive
5002 multivariate integration over hypercubes. This version provides both
5003 @code{hcubature} and @code{pcubature} routines in addition to a vector
5004 interface.")
5005 ;; The included cubature C library is released under GPLv2+, but the
5006 ;; wrapper declares the license to be GPLv3+.
5007 (license (list license:gpl2+ license:gpl3+))))
5008
5009 (define-public r-trend
5010 (package
5011 (name "r-trend")
5012 (version "1.1.2")
5013 (source
5014 (origin
5015 (method url-fetch)
5016 (uri (cran-uri "trend" version))
5017 (sha256
5018 (base32
5019 "09b6ycyfgs4xlhx6kn6qm5rl2acp58hzhv8qclzn3kb1wjjyvxy5"))))
5020 (build-system r-build-system)
5021 (propagated-inputs
5022 `(("r-extradistr" ,r-extradistr)))
5023 (native-inputs
5024 `(("gfortran" ,gfortran)))
5025 (home-page "https://cran.r-project.org/web/packages/trend/")
5026 (synopsis "Non-parametric trend tests and change-point detection")
5027 (description
5028 "The analysis of environmental data often requires the detection of
5029 trends and change-points. This package includes tests for trend
5030 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
5031 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
5032 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
5033 correlation trend test), change-point detection (Lanzante's test procedures,
5034 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
5035 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
5036 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
5037 sample Robust Rank-Order Distributional Test.")
5038 (license license:gpl3)))
5039
5040 (define-public r-expm
5041 (package
5042 (name "r-expm")
5043 (version "0.999-5")
5044 (source
5045 (origin
5046 (method url-fetch)
5047 (uri (cran-uri "expm" version))
5048 (sha256
5049 (base32
5050 "0y98ya8rhy891nysjlzzy7kcm13dsz8gvxwzvbkmcp1xx0vicxc7"))))
5051 (build-system r-build-system)
5052 (propagated-inputs `(("r-matrix" ,r-matrix)))
5053 (native-inputs `(("gfortran" ,gfortran)))
5054 (home-page "https://r-forge.r-project.org/projects/expm/")
5055 (synopsis "Tools for matrix exponentials and related quantities")
5056 (description
5057 "This package provides tools for the computation of the matrix
5058 exponential, logarithm, square root, and related quantities.")
5059 (license license:gpl2+)))
5060
5061 (define-public r-complexplus
5062 (package
5063 (name "r-complexplus")
5064 (version "2.1")
5065 (source
5066 (origin
5067 (method url-fetch)
5068 (uri (cran-uri "complexplus" version))
5069 (sha256
5070 (base32
5071 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
5072 (build-system r-build-system)
5073 (propagated-inputs
5074 `(("r-expm" ,r-expm)
5075 ("r-matrix" ,r-matrix)))
5076 (home-page "https://cran.r-project.org/web/packages/complexplus/")
5077 (synopsis "Functions of complex or real variables")
5078 (description
5079 "This package extends several functions to the complex domain, including
5080 the matrix exponential and logarithm, and the determinant.")
5081 (license license:gpl2)))
5082
5083 (define-public r-phontools
5084 (package
5085 (name "r-phontools")
5086 (version "0.2-2.1")
5087 (source
5088 (origin
5089 (method url-fetch)
5090 (uri (cran-uri "phonTools" version))
5091 (sha256
5092 (base32
5093 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
5094 (properties `((upstream-name . "phonTools")))
5095 (build-system r-build-system)
5096 (home-page "http://www.santiagobarreda.com/rscripts.html")
5097 (synopsis "Tools for phonetic and acoustic analyses")
5098 (description
5099 "This package contains tools for the organization, display, and analysis
5100 of the sorts of data frequently encountered in phonetics research and
5101 experimentation, including the easy creation of IPA vowel plots, and the
5102 creation and manipulation of WAVE audio files.")
5103 (license license:bsd-2)))
5104
5105 (define-public r-np
5106 (package
5107 (name "r-np")
5108 (version "0.60-10")
5109 (source
5110 (origin
5111 (method url-fetch)
5112 (uri (cran-uri "np" version))
5113 (sha256
5114 (base32
5115 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
5116 (build-system r-build-system)
5117 (propagated-inputs
5118 `(("r-boot" ,r-boot)
5119 ("r-cubature" ,r-cubature)
5120 ("r-quadprog" ,r-quadprog)
5121 ("r-quantreg" ,r-quantreg)))
5122 (home-page "https://github.com/JeffreyRacine/R-Package-np")
5123 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
5124 (description "This package provides non-parametric (and semi-parametric)
5125 kernel methods that seamlessly handle a mix of continuous, unordered, and
5126 ordered factor data types.")
5127 ;; Any version of the GPL.
5128 (license license:gpl3+)))
5129
5130 (define-public r-powerplus
5131 (package
5132 (name "r-powerplus")
5133 (version "3.1")
5134 (source
5135 (origin
5136 (method url-fetch)
5137 (uri (cran-uri "powerplus" version))
5138 (sha256
5139 (base32
5140 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
5141 (build-system r-build-system)
5142 (propagated-inputs
5143 `(("r-complexplus" ,r-complexplus)
5144 ("r-expm" ,r-expm)
5145 ("r-mass" ,r-mass)
5146 ("r-matrix" ,r-matrix)
5147 ("r-phontools" ,r-phontools)))
5148 (home-page "https://cran.r-project.org/web/packages/powerplus/")
5149 (synopsis "Exponentiation operations")
5150 (description
5151 "This package provides tools for the computation of matrix and scalar
5152 exponentiation.")
5153 (license license:gpl2)))
5154
5155 (define-public r-egg
5156 (package
5157 (name "r-egg")
5158 (version "0.4.5")
5159 (source
5160 (origin
5161 (method url-fetch)
5162 (uri (cran-uri "egg" version))
5163 (sha256
5164 (base32
5165 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
5166 (properties `((upstream-name . "egg")))
5167 (build-system r-build-system)
5168 (propagated-inputs
5169 `(("r-ggplot2" ,r-ggplot2)
5170 ("r-gridextra" ,r-gridextra)
5171 ("r-gtable" ,r-gtable)))
5172 (home-page "https://cran.r-project.org/web/packages/egg")
5173 (synopsis "Extensions for ggplot2")
5174 (description
5175 "This package provides miscellaneous functions to help customize ggplot2
5176 objects. High-level functions are provided to post-process ggplot2 layouts
5177 and allow alignment between plot panels, as well as setting panel sizes to
5178 fixed values. Other functions include a custom @code{geom}, and helper
5179 functions to enforce symmetric scales or add tags to facetted plots.")
5180 (license license:gpl3)))
5181
5182 (define-public r-heatmaply
5183 (package
5184 (name "r-heatmaply")
5185 (version "1.1.0")
5186 (source
5187 (origin
5188 (method url-fetch)
5189 (uri (cran-uri "heatmaply" version))
5190 (sha256
5191 (base32
5192 "133q8ir45vhfxs2lnd96k97g21ihg2arfhp349kmk339pk32fcxz"))))
5193 (build-system r-build-system)
5194 (propagated-inputs
5195 `(("r-assertthat" ,r-assertthat)
5196 ("r-colorspace" ,r-colorspace)
5197 ("r-dendextend" ,r-dendextend)
5198 ("r-egg" ,r-egg)
5199 ("r-ggplot2" ,r-ggplot2)
5200 ("r-htmlwidgets" ,r-htmlwidgets)
5201 ("r-magrittr" ,r-magrittr)
5202 ("r-plotly" ,r-plotly)
5203 ("r-rcolorbrewer" ,r-rcolorbrewer)
5204 ("r-reshape2" ,r-reshape2)
5205 ("r-scales" ,r-scales)
5206 ("r-seriation" ,r-seriation)
5207 ("r-viridis" ,r-viridis)
5208 ("r-webshot" ,r-webshot)))
5209 (native-inputs
5210 `(("r-knitr" ,r-knitr)))
5211 (home-page "https://cran.r-project.org/package=heatmaply")
5212 (synopsis "Interactive cluster heat maps using plotly")
5213 (description
5214 "This package enables you to create interactive cluster heatmaps that can
5215 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
5216 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
5217 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
5218 a popular graphical method for visualizing high-dimensional data, in which a
5219 table of numbers is encoded as a grid of colored cells. The rows and columns
5220 of the matrix are ordered to highlight patterns and are often accompanied by
5221 dendrograms.")
5222 ;; Either version of the license.
5223 (license (list license:gpl2 license:gpl3))))
5224
5225 (define-public r-h5
5226 (package
5227 (name "r-h5")
5228 (version "0.9.9")
5229 (source
5230 (origin
5231 (method url-fetch)
5232 (uri (cran-uri "h5" version))
5233 (sha256
5234 (base32
5235 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
5236 (build-system r-build-system)
5237 (inputs
5238 `(("zlib" ,zlib)
5239 ("hdf5" ,hdf5)))
5240 (native-inputs
5241 `(("which" ,which)))
5242 (propagated-inputs
5243 `(("r-rcpp" ,r-rcpp)))
5244 (home-page "https://github.com/mannau/h5")
5245 (synopsis "Interface to the HDF5 Library")
5246 (description
5247 "This package provides an S4 interface to the HDF5 library supporting
5248 fast storage and retrieval of R-objects like vectors, matrices and arrays to
5249 binary files in a language independent format. The HDF5 format can therefore
5250 be used as an alternative to R's save/load mechanism. Since h5 is able to
5251 access only subsets of stored data it can also handle data sets which do not
5252 fit into memory.")
5253 (license license:bsd-2)))
5254
5255 (define-public r-cgdsr
5256 (package
5257 (name "r-cgdsr")
5258 (version "1.3.0")
5259 (source
5260 (origin
5261 (method url-fetch)
5262 (uri (cran-uri "cgdsr" version))
5263 (sha256
5264 (base32
5265 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
5266 (build-system r-build-system)
5267 (propagated-inputs
5268 `(("r-httr" ,r-httr)
5269 ("r-r-methodss3" ,r-r-methodss3)
5270 ("r-r-oo" ,r-r-oo)))
5271 (home-page "https://github.com/cBioPortal/cgdsr")
5272 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
5273 (description
5274 "This package provides a basic set of R functions for querying the Cancer
5275 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
5276 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
5277 (license license:lgpl3)))
5278
5279 (define-public r-import
5280 (package
5281 (name "r-import")
5282 (version "1.1.0")
5283 (source
5284 (origin
5285 (method url-fetch)
5286 (uri (cran-uri "import" version))
5287 (sha256
5288 (base32
5289 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
5290 (build-system r-build-system)
5291 (home-page "https://github.com/smbache/import")
5292 (synopsis "Import mechanism for R")
5293 (description
5294 "This is an alternative mechanism for importing objects from packages.
5295 The syntax allows for importing multiple objects from a package with a single
5296 command in an expressive way. The import package bridges some of the gap
5297 between using @code{library} (or @code{require}) and direct (single-object)
5298 imports. Furthermore the imported objects are not placed in the current
5299 environment. It is also possible to import objects from stand-alone @code{.R}
5300 files.")
5301 (license license:expat)))
5302
5303 (define-public r-shinyace
5304 (package
5305 (name "r-shinyace")
5306 (version "0.4.1")
5307 (source
5308 (origin
5309 (method url-fetch)
5310 (uri (cran-uri "shinyAce" version))
5311 (sha256
5312 (base32
5313 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
5314 (properties `((upstream-name . "shinyAce")))
5315 (build-system r-build-system)
5316 (propagated-inputs
5317 `(("r-shiny" ,r-shiny)
5318 ("r-jsonlite" ,r-jsonlite)))
5319 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
5320 (synopsis "Ace editor bindings for Shiny")
5321 (description
5322 "This package provides Ace editor bindings to enable a rich text editing
5323 environment within Shiny.")
5324 (license license:expat)))
5325
5326 (define-public r-randomizr
5327 (package
5328 (name "r-randomizr")
5329 (version "0.20.0")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (uri (cran-uri "randomizr" version))
5334 (sha256
5335 (base32
5336 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
5337 (properties `((upstream-name . "randomizr")))
5338 (build-system r-build-system)
5339 (native-inputs
5340 `(("r-knitr" ,r-knitr)))
5341 (home-page "https://declaredesign.org/r/randomizr/")
5342 (synopsis "Tools for common forms of random assignment and sampling")
5343 (description
5344 "This package provides tools for generating random assignments for common
5345 experimental designs and random samples for common sampling designs.")
5346 (license license:expat)))
5347
5348 (define-public r-base64url
5349 (package
5350 (name "r-base64url")
5351 (version "1.4")
5352 (source
5353 (origin
5354 (method url-fetch)
5355 (uri (cran-uri "base64url" version))
5356 (sha256
5357 (base32
5358 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
5359 (build-system r-build-system)
5360 (propagated-inputs
5361 `(("r-backports" ,r-backports)))
5362 (home-page "https://github.com/mllg/base64url")
5363 (synopsis "Fast and URL-safe base64 encoder and decoder")
5364 (description
5365 "This package provides a URL-safe base64 encoder and decoder. In
5366 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
5367 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
5368 encoder does not fill the string with trailing @code{=}. The resulting
5369 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
5370 and thus are safe to use in URLs or for file names. The package also comes
5371 with a simple base32 encoder/decoder suited for case insensitive file
5372 systems.")
5373 (license license:gpl3)))
5374
5375 (define-public r-radiant-data
5376 (package
5377 (name "r-radiant-data")
5378 (version "1.3.10")
5379 (source
5380 (origin
5381 (method url-fetch)
5382 (uri (cran-uri "radiant.data" version))
5383 (sha256
5384 (base32
5385 "09a3wn3gl1zjq5zsc5zaxyq71dg5qnpk57bmwd6qy8w99g2clm8c"))
5386 (modules '((guix build utils)))
5387 (snippet
5388 '(begin
5389 ;; Delete files that are under CC-NC-SA.
5390 (delete-file-recursively "inst/app/tools/help")
5391 #t))))
5392 (properties `((upstream-name . "radiant.data")))
5393 (build-system r-build-system)
5394 (propagated-inputs
5395 `(("r-base64enc" ,r-base64enc)
5396 ("r-broom" ,r-broom)
5397 ("r-car" ,r-car)
5398 ("r-curl" ,r-curl)
5399 ("r-dplyr" ,r-dplyr)
5400 ("r-dt" ,r-dt)
5401 ("r-glue" ,r-glue)
5402 ("r-ggplot2" ,r-ggplot2)
5403 ("r-import" ,r-import)
5404 ("r-jsonlite" ,r-jsonlite)
5405 ("r-knitr" ,r-knitr)
5406 ("r-lubridate" ,r-lubridate)
5407 ("r-magrittr" ,r-magrittr)
5408 ("r-markdown" ,r-markdown)
5409 ("r-mass" ,r-mass)
5410 ("r-patchwork" ,r-patchwork)
5411 ("r-plotly" ,r-plotly)
5412 ("r-psych" ,r-psych)
5413 ("r-randomizr" ,r-randomizr)
5414 ("r-readr" ,r-readr)
5415 ("r-readxl" ,r-readxl)
5416 ("r-rlang" ,r-rlang)
5417 ("r-rmarkdown" ,r-rmarkdown)
5418 ("r-rstudioapi" ,r-rstudioapi)
5419 ("r-scales" ,r-scales)
5420 ("r-shiny" ,r-shiny)
5421 ("r-shinyfiles" ,r-shinyfiles)
5422 ("r-shinyace" ,r-shinyace)
5423 ("r-stringi" ,r-stringi)
5424 ("r-tibble" ,r-tibble)
5425 ("r-tidyr" ,r-tidyr)
5426 ("r-writexl" ,r-writexl)))
5427 (home-page "https://github.com/radiant-rstats/radiant.data")
5428 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
5429 (description
5430 "The Radiant Data menu includes interfaces for loading, saving, viewing,
5431 visualizing, summarizing, transforming, and combining data. It also contains
5432 functionality to generate reproducible reports of the analyses conducted in
5433 the application.")
5434 (license license:agpl3)))
5435
5436 (define-public r-algdesign
5437 (package
5438 (name "r-algdesign")
5439 (version "1.2.0")
5440 (source
5441 (origin
5442 (method url-fetch)
5443 (uri (cran-uri "AlgDesign" version))
5444 (sha256
5445 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
5446 (properties `((upstream-name . "AlgDesign")))
5447 (build-system r-build-system)
5448 (home-page "https://github.com/jvbraun/AlgDesign")
5449 (synopsis "Algorithmic experimental design")
5450 (description
5451 "This package provides tools to calculate exact and approximate theory
5452 experimental designs for D, A, and I criteria. Very large designs may be
5453 created. Experimental designs may be blocked or blocked designs created from
5454 a candidate list, using several criteria. The blocking can be done when whole
5455 and within plot factors interact.")
5456 (license license:gpl2+)))
5457
5458 (define-public r-signal
5459 (package
5460 (name "r-signal")
5461 (version "0.7-6")
5462 (source
5463 (origin
5464 (method url-fetch)
5465 (uri (cran-uri "signal" version))
5466 (sha256
5467 (base32
5468 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
5469 (build-system r-build-system)
5470 (propagated-inputs `(("r-mass" ,r-mass)))
5471 (native-inputs `(("gfortran" ,gfortran)))
5472 (home-page "https://cran.r-project.org/web/packages/signal/")
5473 (synopsis "Signal processing")
5474 (description
5475 "This package provides a set of signal processing functions originally
5476 written for Matlab and GNU Octave. It includes filter generation utilities,
5477 filtering functions, resampling routines, and visualization of filter models.
5478 It also includes interpolation functions.")
5479 (license license:gpl2)))
5480
5481 (define-public r-gsubfn
5482 (package
5483 (name "r-gsubfn")
5484 (version "0.7")
5485 (source
5486 (origin
5487 (method url-fetch)
5488 (uri (cran-uri "gsubfn" version))
5489 (sha256
5490 (base32
5491 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
5492 (build-system r-build-system)
5493 (propagated-inputs `(("r-proto" ,r-proto)))
5494 (home-page "https://code.google.com/archive/p/gsubfn/")
5495 (synopsis "Utilities for strings and function arguments.")
5496 (description
5497 "This package provides @code{gsubfn} which is like @code{gsub} but can
5498 take a replacement function or certain other objects instead of the
5499 replacement string. Matches and back references are input to the replacement
5500 function and replaced by the function output. @code{gsubfn} can be used to
5501 split strings based on content rather than delimiters and for quasi-perl-style
5502 string interpolation. The package also has facilities for translating
5503 formulas to functions and allowing such formulas in function calls instead of
5504 functions.")
5505 (license license:gpl2+)))
5506
5507 (define-public r-sqldf
5508 (package
5509 (name "r-sqldf")
5510 (version "0.4-11")
5511 (source
5512 (origin
5513 (method url-fetch)
5514 (uri (cran-uri "sqldf" version))
5515 (sha256
5516 (base32
5517 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
5518 (build-system r-build-system)
5519 (propagated-inputs
5520 `(("r-chron" ,r-chron)
5521 ("r-dbi" ,r-dbi)
5522 ("r-gsubfn" ,r-gsubfn)
5523 ("r-proto" ,r-proto)
5524 ("r-rsqlite" ,r-rsqlite)))
5525 (home-page "https://github.com/ggrothendieck/sqldf")
5526 (synopsis "Manipulate R data frames using SQL")
5527 (description
5528 "The @code{sqldf} function is typically passed a single argument which is
5529 an SQL select statement where the table names are ordinary R data frame names.
5530 @code{sqldf} transparently sets up a database, imports the data frames into
5531 that database, performs the SQL statement and returns the result using a
5532 heuristic to determine which class to assign to each column of the returned
5533 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
5534 used to read filtered files into R even if the original files are larger than
5535 R itself can handle.")
5536 (license license:gpl2)))
5537
5538 (define-public r-abind
5539 (package
5540 (name "r-abind")
5541 (version "1.4-5")
5542 (source
5543 (origin
5544 (method url-fetch)
5545 (uri (cran-uri "abind" version))
5546 (sha256
5547 (base32
5548 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5549 (build-system r-build-system)
5550 (home-page "https://cran.r-project.org/web/packages/abind/")
5551 (synopsis "Combine multidimensional arrays")
5552 (description
5553 "This package provides tools to combine multidimensional arrays into a
5554 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5555 works with vectors, matrices, and higher-dimensional arrays. It also provides
5556 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5557 extracting and replacing data in arrays.")
5558 (license license:lgpl2.0+)))
5559
5560 (define-public r-prroc
5561 (package
5562 (name "r-prroc")
5563 (version "1.3.1")
5564 (source
5565 (origin
5566 (method url-fetch)
5567 (uri (cran-uri "PRROC" version))
5568 (sha256
5569 (base32
5570 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5571 (properties `((upstream-name . "PRROC")))
5572 (build-system r-build-system)
5573 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5574 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5575 (description
5576 "This package computes the areas under the @dfn{precision-recall} (PR)
5577 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5578 contrast to other implementations, the interpolation between points of the PR
5579 curve is done by a non-linear piecewise function. In addition to the areas
5580 under the curves, the curves themselves can also be computed and plotted by a
5581 specific S3-method.")
5582 (license license:gpl3)))
5583
5584 (define-public r-vim
5585 (package
5586 (name "r-vim")
5587 (version "6.0.0")
5588 (source
5589 (origin
5590 (method url-fetch)
5591 (uri (cran-uri "VIM" version))
5592 (sha256
5593 (base32
5594 "0ddhca4v912q82rjpf1qld6i6g2c381g0v5b4hbnygr3lm6a7wiv"))))
5595 (properties `((upstream-name . "VIM")))
5596 (build-system r-build-system)
5597 (propagated-inputs
5598 `(("r-car" ,r-car)
5599 ("r-colorspace" ,r-colorspace)
5600 ("r-data-table" ,r-data-table)
5601 ("r-e1071" ,r-e1071)
5602 ("r-laeken" ,r-laeken)
5603 ("r-magrittr" ,r-magrittr)
5604 ("r-mass" ,r-mass)
5605 ("r-nnet" ,r-nnet)
5606 ("r-ranger" ,r-ranger)
5607 ("r-rcpp" ,r-rcpp)
5608 ("r-robustbase" ,r-robustbase)
5609 ("r-sp" ,r-sp)
5610 ("r-vcd" ,r-vcd)))
5611 (native-inputs
5612 `(("r-knitr" ,r-knitr)))
5613 (home-page "https://github.com/alexkowa/VIM")
5614 (synopsis "Visualization and imputation of missing values")
5615 (description
5616 "This package provides tools for the visualization of missing and/or
5617 imputed values are introduced, which can be used for exploring the data and
5618 the structure of the missing and/or imputed values. Depending on this
5619 structure of the missing values, the corresponding methods may help to
5620 identify the mechanism generating the missing values and allows to explore the
5621 data including missing values. In addition, the quality of imputation can be
5622 visually explored using various univariate, bivariate, multiple and
5623 multivariate plot methods.")
5624 (license license:gpl2+)))
5625
5626 (define-public r-fnn
5627 (package
5628 (name "r-fnn")
5629 (version "1.1.3")
5630 (source
5631 (origin
5632 (method url-fetch)
5633 (uri (cran-uri "FNN" version))
5634 (sha256
5635 (base32
5636 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5637 (properties `((upstream-name . "FNN")))
5638 (build-system r-build-system)
5639 (home-page "https://cran.r-project.org/web/packages/FNN")
5640 (synopsis "Fast nearest neighbor search algorithms and applications")
5641 (description
5642 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5643 search algorithms. Related applications including KNN classification,
5644 regression and information measures are implemented.")
5645 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5646 ;; later can be used.
5647 (license license:gpl2+)))
5648
5649 (define-public r-smoother
5650 (package
5651 (name "r-smoother")
5652 (version "1.1")
5653 (source
5654 (origin
5655 (method url-fetch)
5656 (uri (cran-uri "smoother" version))
5657 (sha256
5658 (base32
5659 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5660 (build-system r-build-system)
5661 (propagated-inputs
5662 `(("r-ttr" ,r-ttr)))
5663 (home-page "https://cran.r-project.org/web/packages/smoother")
5664 (synopsis "Functions relating to the smoothing of numerical data")
5665 (description
5666 "This package provides a collection of methods for smoothing numerical
5667 data, commencing with a port of the Matlab gaussian window smoothing function.
5668 In addition, several functions typically used in smoothing of financial data
5669 are included.")
5670 (license license:gpl2)))
5671
5672 (define-public r-riverplot
5673 (package
5674 (name "r-riverplot")
5675 (version "0.6")
5676 (source
5677 (origin
5678 (method url-fetch)
5679 (uri (cran-uri "riverplot" version))
5680 (sha256
5681 (base32
5682 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5683 (build-system r-build-system)
5684 (home-page "https://logfc.wordpress.com")
5685 (synopsis "Sankey or ribbon plots")
5686 (description
5687 "Sankey plots are a type of diagram that is convenient to illustrate how
5688 flow of information, resources etc. separates and joins, much like observing
5689 how rivers split and merge. For example, they can be used to compare
5690 different clusterings. This package provides an implementation of Sankey
5691 plots for R.")
5692 (license license:gpl2+)))
5693
5694 (define-public r-dyn
5695 (package
5696 (name "r-dyn")
5697 (version "0.2-9.6")
5698 (source
5699 (origin
5700 (method url-fetch)
5701 (uri (cran-uri "dyn" version))
5702 (sha256
5703 (base32
5704 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5705 (build-system r-build-system)
5706 (propagated-inputs
5707 `(("r-zoo" ,r-zoo)))
5708 (home-page "https://cran.r-project.org/web/packages/dyn")
5709 (synopsis "Time series regression")
5710 (description
5711 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5712 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5713 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5714 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5715 @code{randomForest::randomForest()} and other regression functions, allowing
5716 those functions to be used with time series including specifications that may
5717 contain lags, diffs and missing values.")
5718 ;; Any GPL version.
5719 (license license:gpl2+)))
5720
5721 (define-public r-catdap
5722 (package
5723 (name "r-catdap")
5724 (version "1.3.5")
5725 (source
5726 (origin
5727 (method url-fetch)
5728 (uri (cran-uri "catdap" version))
5729 (sha256
5730 (base32
5731 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
5732 (build-system r-build-system)
5733 (native-inputs
5734 `(("gfortran" ,gfortran)))
5735 (home-page "https://cran.r-project.org/web/packages/catdap/")
5736 (synopsis "Tools for categorical data analysis")
5737 (description
5738 "This package provides functions for analyzing multivariate data.
5739 Dependencies of the distribution of the specified variable (response
5740 variable) to other variables (explanatory variables) are derived and
5741 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5742 (license license:gpl2+)))
5743
5744 (define-public r-arules
5745 (package
5746 (name "r-arules")
5747 (version "1.6-6")
5748 (source
5749 (origin
5750 (method url-fetch)
5751 (uri (cran-uri "arules" version))
5752 (sha256
5753 (base32
5754 "1pk3jjizn2m5rwi7qkdkbq9f07acgpy0qdzzqmx0agg47cwahlkm"))))
5755 (build-system r-build-system)
5756 (propagated-inputs
5757 `(("r-matrix" ,r-matrix)))
5758 (home-page "https://github.com/mhahsler/arules")
5759 (synopsis "Mining association rules and frequent itemsets")
5760 (description
5761 "This package provides an infrastructure for representing, manipulating
5762 and analyzing transaction data and patterns (frequent itemsets and association rules).
5763 It also provides C implementations of the association mining algorithms Apriori
5764 and Eclat.")
5765 (license license:gpl3)))
5766
5767 (define-public r-parsedate
5768 (package
5769 (name "r-parsedate")
5770 (version "1.2.0")
5771 (source
5772 (origin
5773 (method url-fetch)
5774 (uri (cran-uri "parsedate" version))
5775 (sha256
5776 (base32
5777 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5778 (build-system r-build-system)
5779 (propagated-inputs
5780 `(("r-rematch2" ,r-rematch2)))
5781 (home-page "https://github.com/gaborcsardi/parsedate")
5782 (synopsis
5783 "Recognize and parse dates in various formats")
5784 (description
5785 "This package provides three functions for dealing with dates:
5786 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5787 time formats, @code{parse_date} parses dates in unspecified formats,
5788 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5789 (license license:gpl2)))
5790
5791 (define-public r-abc-data
5792 (package
5793 (name "r-abc-data")
5794 (version "1.0")
5795 (source
5796 (origin
5797 (method url-fetch)
5798 (uri (cran-uri "abc.data" version))
5799 (sha256
5800 (base32
5801 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5802 (properties `((upstream-name . "abc.data")))
5803 (build-system r-build-system)
5804 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5805 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5806 (description
5807 "This package contains data which are used by functions of the abc
5808 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5809 algorithms for performing parameter estimation, model selection, and
5810 goodness-of-fit.")
5811 (license license:gpl3+)))
5812
5813 (define-public r-abc
5814 (package
5815 (name "r-abc")
5816 (version "2.1")
5817 (source
5818 (origin
5819 (method url-fetch)
5820 (uri (cran-uri "abc" version))
5821 (sha256
5822 (base32
5823 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5824 (build-system r-build-system)
5825 (propagated-inputs
5826 `(("r-abc-data" ,r-abc-data)
5827 ("r-locfit" ,r-locfit)
5828 ("r-mass" ,r-mass)
5829 ("r-nnet" ,r-nnet)
5830 ("r-quantreg" ,r-quantreg)))
5831 (home-page "https://cran.r-project.org/web/packages/abc/")
5832 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5833 (description
5834 "This package implements several @dfn{Approximate Bayesian
5835 Computation} (ABC) algorithms for performing parameter estimation, model
5836 selection, and goodness-of-fit. Cross-validation tools are also available for
5837 measuring the accuracy of ABC estimates, and to calculate the
5838 misclassification probabilities of different models.")
5839 (license license:gpl3+)))
5840
5841 (define-public r-zip
5842 (package
5843 (name "r-zip")
5844 (version "2.1.0")
5845 (source
5846 (origin
5847 (method url-fetch)
5848 (uri (cran-uri "zip" version))
5849 (sha256
5850 (base32
5851 "1dfsagb7bx35x4zx6f5xk2sk057fbyhskkpw3w72b805cjw920da"))))
5852 (build-system r-build-system)
5853 (home-page "https://github.com/gaborcsardi/zip")
5854 (synopsis "Cross-platform Zip compression")
5855 (description
5856 "This package provides a cross-platform Zip compression library for R.
5857 It is a replacement for the @code{zip} function, that does not require any
5858 additional external tools on any platform.")
5859 (license license:cc0)))
5860
5861 (define-public r-openxlsx
5862 (package
5863 (name "r-openxlsx")
5864 (version "4.1.5")
5865 (source
5866 (origin
5867 (method url-fetch)
5868 (uri (cran-uri "openxlsx" version))
5869 (sha256
5870 (base32
5871 "0wkpa3wsd8rs0pib7cp67iv0s6jn99frcrw7clypqxmvvdwyb9kq"))))
5872 (build-system r-build-system)
5873 (propagated-inputs
5874 `(("r-rcpp" ,r-rcpp)
5875 ("r-stringi" ,r-stringi)
5876 ("r-zip" ,r-zip)))
5877 (native-inputs
5878 `(("r-knitr" ,r-knitr)))
5879 (home-page "https://github.com/awalker89/openxlsx")
5880 (synopsis "Read, write and edit XLSX files")
5881 (description
5882 "This package simplifies the creation of Excel @code{.xlsx} files by
5883 providing a high level interface to writing, styling and editing worksheets.
5884 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5885 and @code{XLConnect} packages with the added benefit of removing the
5886 dependency on Java.")
5887 (license license:gpl3)))
5888
5889 (define-public r-rio
5890 (package
5891 (name "r-rio")
5892 (version "0.5.16")
5893 (source
5894 (origin
5895 (method url-fetch)
5896 (uri (cran-uri "rio" version))
5897 (sha256
5898 (base32
5899 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5900 (build-system r-build-system)
5901 (propagated-inputs
5902 `(("r-curl" ,r-curl)
5903 ("r-data-table" ,r-data-table)
5904 ("r-foreign" ,r-foreign)
5905 ("r-haven" ,r-haven)
5906 ("r-openxlsx" ,r-openxlsx)
5907 ("r-readxl" ,r-readxl)
5908 ("r-tibble" ,r-tibble)))
5909 (home-page "https://github.com/leeper/rio")
5910 (synopsis "Swiss-army knife for data I/O")
5911 (description
5912 "This package provides streamlined data import and export infrastructure
5913 by making assumptions that the user is probably willing to make: @code{import}
5914 and @code{export} determine the data structure from the file extension,
5915 reasonable defaults are used for data import and export (e.g.,
5916 @code{stringsAsFactors=FALSE}), web-based import is natively
5917 supported (including from SSL/HTTPS), compressed files can be read directly
5918 without explicit decompression, and fast import packages are used where
5919 appropriate. An additional convenience function, @code{convert}, provides a
5920 simple method for converting between file types.")
5921 (license license:gpl2)))
5922
5923 (define-public r-maptools
5924 (package
5925 (name "r-maptools")
5926 (version "1.0-1")
5927 (source
5928 (origin
5929 (method url-fetch)
5930 (uri (cran-uri "maptools" version))
5931 (sha256
5932 (base32
5933 "0fs1y3cbymcq4f76wd27h5a7ihdmxii3ca8x29x32xgxhmasni4l"))))
5934 (build-system r-build-system)
5935 (propagated-inputs
5936 `(("r-foreign" ,r-foreign)
5937 ("r-lattice" ,r-lattice)
5938 ("r-sp" ,r-sp)))
5939 (home-page "https://r-forge.r-project.org/projects/maptools/")
5940 (synopsis "Tools for reading and handling spatial objects")
5941 (description
5942 "This package provides a set of tools for manipulating and reading
5943 geographic data, in particular ESRI Shapefiles. It includes binary access to
5944 GSHHG shoreline files. The package also provides interface wrappers for
5945 exchanging spatial objects with other R packages.")
5946 ;; The C source files from shapelib are released under the Expat license.
5947 ;; The R code is released under GPL version 2 or later.
5948 (license (list license:gpl2+
5949 license:expat))))
5950
5951 (define-public r-later
5952 (package
5953 (name "r-later")
5954 (version "1.1.0.1")
5955 (source
5956 (origin
5957 (method url-fetch)
5958 (uri (cran-uri "later" version))
5959 (sha256
5960 (base32
5961 "1k9n2j7zxw9gfclnx8zfqp6w64c5d6apn7g02yhkajkpmszagfki"))))
5962 (build-system r-build-system)
5963 (propagated-inputs
5964 `(("r-bh" ,r-bh)
5965 ("r-rcpp" ,r-rcpp)
5966 ("r-rlang" ,r-rlang)))
5967 (native-inputs
5968 `(("r-knitr" ,r-knitr)))
5969 (home-page "https://github.com/r-lib/later")
5970 (synopsis "Utilities for delaying function execution")
5971 (description
5972 "This package provides tools to execute arbitrary R or C functions some
5973 time after the current time, after the R execution stack has emptied.")
5974 (license license:gpl2+)))
5975
5976 (define-public r-promises
5977 (package
5978 (name "r-promises")
5979 (version "1.1.1")
5980 (source
5981 (origin
5982 (method url-fetch)
5983 (uri (cran-uri "promises" version))
5984 (sha256
5985 (base32
5986 "002qkhcn3ri6a3w5fizjvdvrjgvqiw8i7rl9jglcnqik5kmwc61p"))))
5987 (build-system r-build-system)
5988 (propagated-inputs
5989 `(("r-later" ,r-later)
5990 ("r-magrittr" ,r-magrittr)
5991 ("r-r6" ,r-r6)
5992 ("r-rcpp" ,r-rcpp)
5993 ("r-rlang" ,r-rlang)))
5994 (native-inputs
5995 `(("r-knitr" ,r-knitr)))
5996 (home-page "https://rstudio.github.io/promises")
5997 (synopsis "Abstractions for promise-based asynchronous programming")
5998 (description
5999 "This package provides fundamental abstractions for doing asynchronous
6000 programming in R using promises. Asynchronous programming is useful for
6001 allowing a single R process to orchestrate multiple tasks in the background
6002 while also attending to something else. Semantics are similar to JavaScript
6003 promises, but with a syntax that is idiomatic R.")
6004 (license license:expat)))
6005
6006 (define-public r-dosnow
6007 (package
6008 (name "r-dosnow")
6009 (version "1.0.18")
6010 (source
6011 (origin
6012 (method url-fetch)
6013 (uri (cran-uri "doSNOW" version))
6014 (sha256
6015 (base32
6016 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
6017 (properties `((upstream-name . "doSNOW")))
6018 (build-system r-build-system)
6019 (propagated-inputs
6020 `(("r-foreach" ,r-foreach)
6021 ("r-iterators" ,r-iterators)
6022 ("r-snow" ,r-snow)))
6023 (home-page "https://cran.r-project.org/web/packages/doSNOW")
6024 (synopsis "Foreach parallel adaptor for the snow package")
6025 (description
6026 "This package provides a parallel backend for the @code{%dopar%} function
6027 using the @code{snow} package.")
6028 (license license:gpl2)))
6029
6030 (define-public r-snowfall
6031 (package
6032 (name "r-snowfall")
6033 (version "1.84-6.1")
6034 (source (origin
6035 (method url-fetch)
6036 (uri (cran-uri "snowfall" version))
6037 (sha256
6038 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
6039 (build-system r-build-system)
6040 (propagated-inputs
6041 `(("r-snow" ,r-snow)))
6042 (home-page "https://cran.r-project.org/web/packages/snowfall/")
6043 (synopsis "Easier cluster computing")
6044 (description "This package is a usability wrapper around snow for easier
6045 development of parallel R programs. This package offers e.g. extended error
6046 checks, and additional functions. All functions work in sequential mode, too,
6047 if no cluster is present or wished. The package is also designed as connector
6048 to the cluster management tool @code{sfCluster}, but can also used without
6049 it.")
6050 (license license:gpl2+)))
6051
6052 (define-public r-rappdirs
6053 (package
6054 (name "r-rappdirs")
6055 (version "0.3.1")
6056 (source
6057 (origin
6058 (method url-fetch)
6059 (uri (cran-uri "rappdirs" version))
6060 (sha256
6061 (base32
6062 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
6063 (build-system r-build-system)
6064 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
6065 (synopsis "Determine where to save data, caches, and logs")
6066 (description
6067 "This package provides an easy way to determine which directories on the
6068 user's computer should be used to save data, caches and logs. It is a port of
6069 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
6070 (license license:expat)))
6071
6072 (define-public r-renv
6073 (package
6074 (name "r-renv")
6075 (version "0.11.0")
6076 (source
6077 (origin
6078 (method url-fetch)
6079 (uri (cran-uri "renv" version))
6080 (sha256
6081 (base32
6082 "0dd63jr240pg95a6p058s5kcclfmscihdy89v212msihmwvylwh3"))))
6083 (properties `((upstream-name . "renv")))
6084 (build-system r-build-system)
6085 (native-inputs
6086 `(("r-knitr" ,r-knitr)))
6087 (home-page "https://rstudio.github.io/renv")
6088 (synopsis "Project environments")
6089 (description
6090 "This package provides a dependency management toolkit for R. Using
6091 renv, you can create and manage project-local R libraries, save the state of
6092 these libraries to a lockfile, and later restore your library as required.
6093 Together, these tools can help make your projects more isolated, portable, and
6094 reproducible.")
6095 (license license:expat)))
6096
6097 (define-public r-learnr
6098 (package
6099 (name "r-learnr")
6100 (version "0.10.1")
6101 (source
6102 (origin
6103 (method url-fetch)
6104 (uri (cran-uri "learnr" version))
6105 (sha256
6106 (base32
6107 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
6108 (build-system r-build-system)
6109 (propagated-inputs
6110 `(("r-checkmate" ,r-checkmate)
6111 ("r-ellipsis" ,r-ellipsis)
6112 ("r-evaluate" ,r-evaluate)
6113 ("r-htmltools" ,r-htmltools)
6114 ("r-htmlwidgets" ,r-htmlwidgets)
6115 ("r-jsonlite" ,r-jsonlite)
6116 ("r-knitr" ,r-knitr)
6117 ("r-markdown" ,r-markdown)
6118 ("r-rappdirs" ,r-rappdirs)
6119 ("r-renv" ,r-renv)
6120 ("r-rmarkdown" ,r-rmarkdown)
6121 ("r-rprojroot" ,r-rprojroot)
6122 ("r-shiny" ,r-shiny)
6123 ("r-withr" ,r-withr)))
6124 (home-page "https://rstudio.github.io/learnr/")
6125 (synopsis "Interactive tutorials for R")
6126 (description
6127 "This package provides tools to create interactive tutorials using R
6128 Markdown. Use a combination of narrative, figures, videos, exercises, and
6129 quizzes to create self-paced tutorials for learning about R and R packages.")
6130 (license license:asl2.0)))
6131
6132 (define-public r-analytics
6133 (package
6134 (name "r-analytics")
6135 (version "3.0")
6136 (source
6137 (origin
6138 (method url-fetch)
6139 (uri (cran-uri "analytics" version))
6140 (sha256
6141 (base32
6142 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
6143 (build-system r-build-system)
6144 (propagated-inputs
6145 `(("r-car" ,r-car)
6146 ("r-cluster" ,r-cluster)
6147 ("r-fractal" ,r-fractal)
6148 ("r-lmtest" ,r-lmtest)
6149 ("r-mass" ,r-mass)
6150 ("r-np" ,r-np)
6151 ("r-powerplus" ,r-powerplus)
6152 ("r-robust" ,r-robust)
6153 ("r-trend" ,r-trend)
6154 ("r-tsa" ,r-tsa)
6155 ("r-urca" ,r-urca)
6156 ("r-vim" ,r-vim)))
6157 (home-page "https://cran.r-project.org/web/packages/analytics/")
6158 (synopsis "Collection of data analysis tools")
6159 (description
6160 "This package is a collection of data analysis tools. It includes tools
6161 for regression outlier detection in a fitted linear model, stationary
6162 bootstrap using a truncated geometric distribution, a comprehensive test for
6163 weak stationarity, column means by group, weighted biplots, and a heuristic to
6164 obtain a better initial configuration in non-metric MDS.")
6165 (license license:gpl2)))
6166
6167 (define-public r-reticulate
6168 (package
6169 (name "r-reticulate")
6170 (version "1.16")
6171 (source
6172 (origin
6173 (method url-fetch)
6174 (uri (cran-uri "reticulate" version))
6175 (sha256
6176 (base32
6177 "0ddx3xrlw55d8d3w7pxap618w2c5pd1n2jw4xsa185s8mf1zifkl"))))
6178 (build-system r-build-system)
6179 (inputs `(("python" ,python)))
6180 (propagated-inputs
6181 `(("r-rappdirs" ,r-rappdirs)
6182 ("r-jsonlite" ,r-jsonlite)
6183 ("r-matrix" ,r-matrix)
6184 ("r-rcpp" ,r-rcpp)))
6185 (native-inputs
6186 `(("r-knitr" ,r-knitr)))
6187 (home-page "https://github.com/rstudio/reticulate")
6188 (synopsis "R interface to Python")
6189 (description
6190 "This package provides an interface from R to Python modules, classes,
6191 and functions. When calling into Python, R data types are automatically
6192 converted to their equivalent Python types. When values are returned from
6193 Python to R they are converted back to R types.")
6194 (license license:asl2.0)))
6195
6196 (define-public r-bibtex
6197 (package
6198 (name "r-bibtex")
6199 (version "0.4.2.2")
6200 (source
6201 (origin
6202 (method url-fetch)
6203 (uri (cran-uri "bibtex" version))
6204 (sha256
6205 (base32
6206 "140hkjzdp3033cvji861rd06z1ixgpnn4n5amygqsmhnixk8ff07"))))
6207 (build-system r-build-system)
6208 (propagated-inputs `(("r-stringr" ,r-stringr)))
6209 (home-page "https://github.com/romainfrancois/bibtex")
6210 (synopsis "Bibtex parser")
6211 (description "This package provides a utility for R to parse a bibtex
6212 file.")
6213 (license license:gpl2+)))
6214
6215 (define-public r-ggseqlogo
6216 (package
6217 (name "r-ggseqlogo")
6218 (version "0.1")
6219 (source
6220 (origin
6221 (method url-fetch)
6222 (uri (cran-uri "ggseqlogo" version))
6223 (sha256
6224 (base32
6225 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
6226 (build-system r-build-system)
6227 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
6228 (home-page "https://github.com/omarwagih/ggseqlogo")
6229 (synopsis "ggplot2 extension for drawing genetic sequence logos")
6230 (description
6231 "The range of functions provided by this package makes it possible to
6232 draw highly versatile genomic sequence logos. Features include, but are not
6233 limited to, modifying colour schemes and fonts used to draw the logo,
6234 generating multiple logo plots, and aiding the visualisation with annotations.
6235 Sequence logos can easily be combined with other ggplot2 plots.")
6236 ;; Unspecified version of the LGPL.
6237 (license license:lgpl3+)))
6238
6239 (define-public r-ggsci
6240 (package
6241 (name "r-ggsci")
6242 (version "2.9")
6243 (source
6244 (origin
6245 (method url-fetch)
6246 (uri (cran-uri "ggsci" version))
6247 (sha256
6248 (base32
6249 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
6250 (build-system r-build-system)
6251 (propagated-inputs
6252 `(("r-ggplot2" ,r-ggplot2)
6253 ("r-scales" ,r-scales)))
6254 (home-page "https://nanx.me/ggsci/")
6255 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
6256 (description
6257 "This package provides a collection of ggplot2 color palettes inspired by
6258 plots in scientific journals, data visualization libraries, science fiction
6259 movies, and TV shows.")
6260 (license license:gpl3)))
6261
6262 (define-public r-ggsignif
6263 (package
6264 (name "r-ggsignif")
6265 (version "0.6.0")
6266 (source
6267 (origin
6268 (method url-fetch)
6269 (uri (cran-uri "ggsignif" version))
6270 (sha256
6271 (base32
6272 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
6273 (build-system r-build-system)
6274 (native-inputs
6275 `(("r-knitr" ,r-knitr)))
6276 (propagated-inputs
6277 `(("r-ggplot2" ,r-ggplot2)))
6278 (home-page "https://github.com/const-ae/ggsignif")
6279 (synopsis "Significance brackets for ggplot2")
6280 (description
6281 "Enrich your ggplots with group-wise comparisons. This package provides
6282 an easy way to indicate if two groups are significantly different. Commonly
6283 this is shown by a bracket on top connecting the groups of interest which
6284 itself is annotated with the level of significance. The package provides a
6285 single layer that takes the groups for comparison and the test as arguments
6286 and adds the annotation to the plot.")
6287 (license license:gpl3)))
6288
6289 (define-public r-rstatix
6290 (package
6291 (name "r-rstatix")
6292 (version "0.6.0")
6293 (source
6294 (origin
6295 (method url-fetch)
6296 (uri (cran-uri "rstatix" version))
6297 (sha256
6298 (base32
6299 "0nwwvxwr4z3j4n9z8cnvwghppc836g47n0ia98chk272qwh8xcpb"))))
6300 (properties `((upstream-name . "rstatix")))
6301 (build-system r-build-system)
6302 (propagated-inputs
6303 `(("r-broom" ,r-broom)
6304 ("r-car" ,r-car)
6305 ("r-corrplot" ,r-corrplot)
6306 ("r-dplyr" ,r-dplyr)
6307 ("r-generics" ,r-generics)
6308 ("r-magrittr" ,r-magrittr)
6309 ("r-purrr" ,r-purrr)
6310 ("r-rlang" ,r-rlang)
6311 ("r-tibble" ,r-tibble)
6312 ("r-tidyr" ,r-tidyr)
6313 ("r-tidyselect" ,r-tidyselect)))
6314 (home-page "https://rpkgs.datanovia.com/rstatix/")
6315 (synopsis "Pipe-friendly framework for basic statistical tests")
6316 (description
6317 "This package provides a simple and intuitive pipe-friendly framework,
6318 coherent with the @code{tidyverse} design philosophy, for performing basic
6319 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
6320 correlation analyses. The output of each test is automatically transformed
6321 into a tidy data frame to facilitate visualization. Additional functions are
6322 available for reshaping, reordering, manipulating and visualizing correlation
6323 matrix.")
6324 (license license:gpl2)))
6325
6326 (define-public r-ggpubr
6327 (package
6328 (name "r-ggpubr")
6329 (version "0.4.0")
6330 (source
6331 (origin
6332 (method url-fetch)
6333 (uri (cran-uri "ggpubr" version))
6334 (sha256
6335 (base32
6336 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
6337 (build-system r-build-system)
6338 (propagated-inputs
6339 `(("r-cowplot" ,r-cowplot)
6340 ("r-dplyr" ,r-dplyr)
6341 ("r-ggplot2" ,r-ggplot2)
6342 ("r-ggrepel" ,r-ggrepel)
6343 ("r-ggsci" ,r-ggsci)
6344 ("r-ggsignif" ,r-ggsignif)
6345 ("r-glue" ,r-glue)
6346 ("r-gridextra" ,r-gridextra)
6347 ("r-magrittr" ,r-magrittr)
6348 ("r-polynom" ,r-polynom)
6349 ("r-purrr" ,r-purrr)
6350 ("r-rlang" ,r-rlang)
6351 ("r-scales" ,r-scales)
6352 ("r-rstatix" ,r-rstatix)
6353 ("r-tibble" ,r-tibble)
6354 ("r-tidyr" ,r-tidyr)))
6355 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
6356 (synopsis "ggplot2-based publication-ready plots")
6357 (description
6358 "The ggplot2 package is an excellent and flexible package for elegant
6359 data visualization in R. However the default generated plots require some
6360 formatting before we can send them for publication. The ggpubr package
6361 provides some easy-to-use functions for creating and customizing ggplot2-based
6362 publication-ready plots.")
6363 (license license:gpl2)))
6364
6365 (define-public r-ellipse
6366 (package
6367 (name "r-ellipse")
6368 (version "0.4.2")
6369 (source
6370 (origin
6371 (method url-fetch)
6372 (uri (cran-uri "ellipse" version))
6373 (sha256
6374 (base32
6375 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
6376 (build-system r-build-system)
6377 (home-page "https://cran.r-project.org/web/packages/ellipse/")
6378 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
6379 (description
6380 "This package contains various routines for drawing ellipses and
6381 ellipse-like confidence regions, implementing the plots described in Murdoch
6382 and Chow (1996), A graphical display of large correlation matrices, The
6383 American Statistician 50, 178-180. There are also routines implementing the
6384 profile plots described in Bates and Watts (1988), Nonlinear Regression
6385 Analysis and its Applications.")
6386 (license license:gpl2+)))
6387
6388 (define-public r-flashclust
6389 (package
6390 (name "r-flashclust")
6391 (version "1.01-2")
6392 (source
6393 (origin
6394 (method url-fetch)
6395 (uri (cran-uri "flashClust" version))
6396 (sha256
6397 (base32
6398 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
6399 (properties `((upstream-name . "flashClust")))
6400 (build-system r-build-system)
6401 (native-inputs `(("gfortran" ,gfortran)))
6402 (home-page "https://cran.r-project.org/web/packages/flashClust/")
6403 (synopsis "Implementation of optimal hierarchical clustering")
6404 (description
6405 "This package provides a fast implementation of hierarchical
6406 clustering.")
6407 (license license:gpl2+)))
6408
6409 (define-public r-factominer
6410 (package
6411 (name "r-factominer")
6412 (version "2.3")
6413 (source
6414 (origin
6415 (method url-fetch)
6416 (uri (cran-uri "FactoMineR" version))
6417 (sha256
6418 (base32
6419 "0ldgf3daksh6lpblhqys67m4mxqx3q9s9n5plfam6dwshfik0ky6"))))
6420 (properties `((upstream-name . "FactoMineR")))
6421 (build-system r-build-system)
6422 (propagated-inputs
6423 `(("r-car" ,r-car)
6424 ("r-cluster" ,r-cluster)
6425 ("r-ellipse" ,r-ellipse)
6426 ("r-flashclust" ,r-flashclust)
6427 ("r-ggplot2" ,r-ggplot2)
6428 ("r-ggrepel" ,r-ggrepel)
6429 ("r-lattice" ,r-lattice)
6430 ("r-leaps" ,r-leaps)
6431 ("r-mass" ,r-mass)
6432 ("r-scatterplot3d" ,r-scatterplot3d)))
6433 (home-page "http://factominer.free.fr")
6434 (synopsis "Multivariate exploratory data analysis and data mining")
6435 (description
6436 "This package provides exploratory data analysis methods to summarize,
6437 visualize and describe datasets. The main principal component methods are
6438 available, those with the largest potential in terms of applications:
6439 principal component analysis (PCA) when variables are quantitative,
6440 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
6441 variables are categorical, Multiple Factor Analysis when variables are
6442 structured in groups, etc. and hierarchical cluster analysis.")
6443 (license license:gpl2+)))
6444
6445 (define-public r-factoextra
6446 (package
6447 (name "r-factoextra")
6448 (version "1.0.7")
6449 (source
6450 (origin
6451 (method url-fetch)
6452 (uri (cran-uri "factoextra" version))
6453 (sha256
6454 (base32
6455 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
6456 (build-system r-build-system)
6457 (propagated-inputs
6458 `(("r-abind" ,r-abind)
6459 ("r-cluster" ,r-cluster)
6460 ("r-dendextend" ,r-dendextend)
6461 ("r-factominer" ,r-factominer)
6462 ("r-ggplot2" ,r-ggplot2)
6463 ("r-ggpubr" ,r-ggpubr)
6464 ("r-ggrepel" ,r-ggrepel)
6465 ("r-reshape2" ,r-reshape2)
6466 ("r-tidyr" ,r-tidyr)))
6467 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
6468 (synopsis "Extract and visualize the results of multivariate data analyses")
6469 (description
6470 "This package provides some easy-to-use functions to extract and
6471 visualize the output of multivariate data analyses, including
6472 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
6473 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
6474 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
6475 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
6476 packages. It contains also functions for simplifying some clustering analysis
6477 steps and provides ggplot2-based elegant data visualization.")
6478 (license license:gpl2)))
6479
6480 (define-public r-fansi
6481 (package
6482 (name "r-fansi")
6483 (version "0.4.1")
6484 (source
6485 (origin
6486 (method url-fetch)
6487 (uri (cran-uri "fansi" version))
6488 (sha256
6489 (base32
6490 "028ywjy538psnmdnddvy5jr3idzffr4hikzr4x97x0m30g4fws9w"))))
6491 (build-system r-build-system)
6492 (native-inputs
6493 `(("r-knitr" ,r-knitr))) ; for vignettes
6494 (home-page "https://github.com/brodieG/fansi")
6495 (synopsis "ANSI control sequence aware string functions")
6496 (description
6497 "This package provides counterparts to R string manipulation functions
6498 that account for the effects of ANSI text formatting control sequences.")
6499 (license license:gpl2+)))
6500
6501 (define-public r-nbclust
6502 (package
6503 (name "r-nbclust")
6504 (version "3.0")
6505 (source
6506 (origin
6507 (method url-fetch)
6508 (uri (cran-uri "NbClust" version))
6509 (sha256
6510 (base32
6511 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
6512 (properties `((upstream-name . "NbClust")))
6513 (build-system r-build-system)
6514 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
6515 (synopsis "Determine the best number of clusters in a data set")
6516 (description
6517 "NbClust provides 30 indexes for determining the optimal number of
6518 clusters in a data set and offers the best clustering scheme from different
6519 results to the user.")
6520 (license license:gpl2)))
6521
6522 (define-public r-hdf5r
6523 (package
6524 (name "r-hdf5r")
6525 (version "1.3.3")
6526 (source
6527 (origin
6528 (method url-fetch)
6529 (uri (cran-uri "hdf5r" version))
6530 (sha256
6531 (base32
6532 "0i8m4yjxggrs05slq2afvz2ckl1yc9wq7gd1s7dq2gjn46zkry50"))))
6533 (build-system r-build-system)
6534 (inputs
6535 `(("hdf5" ,hdf5)
6536 ("zlib" ,zlib)))
6537 (propagated-inputs
6538 `(("r-bit64" ,r-bit64)
6539 ("r-r6" ,r-r6)))
6540 (native-inputs
6541 `(("r-knitr" ,r-knitr)))
6542 (home-page "https://hhoeflin.github.io/hdf5r")
6543 (synopsis "Interface to the HDF5 binary data format")
6544 (description
6545 "HDF5 is a data model, library and file format for storing and managing
6546 large amounts of data. This package provides a nearly feature complete,
6547 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
6548 functionality is added so that HDF5 objects behave very similar to their
6549 corresponding R counterparts.")
6550 (license license:asl2.0)))
6551
6552 (define-public r-itertools
6553 (package
6554 (name "r-itertools")
6555 (version "0.1-3")
6556 (source
6557 (origin
6558 (method url-fetch)
6559 (uri (cran-uri "itertools" version))
6560 (sha256
6561 (base32
6562 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
6563 (build-system r-build-system)
6564 (propagated-inputs
6565 `(("r-iterators" ,r-iterators)))
6566 (home-page "https://cran.r-project.org/web/packages/itertools/")
6567 (synopsis "Iterator tools")
6568 (description
6569 "This package provides various tools for creating iterators, many
6570 patterned after functions in the Python @code{itertools} module, and others
6571 patterned after functions in the snow package.")
6572 (license license:gpl2)))
6573
6574 (define-public r-polynom
6575 (package
6576 (name "r-polynom")
6577 (version "1.4-0")
6578 (source
6579 (origin
6580 (method url-fetch)
6581 (uri (cran-uri "polynom" version))
6582 (sha256
6583 (base32
6584 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
6585 (build-system r-build-system)
6586 (home-page "https://cran.r-project.org/web/packages/polynom/")
6587 (synopsis "Functions for univariate polynomial manipulations")
6588 (description
6589 "This package provides a collection of functions to implement a class for
6590 univariate polynomial manipulations.")
6591 (license license:gpl2)))
6592
6593 (define-public r-gbrd
6594 (package
6595 (name "r-gbrd")
6596 (version "0.4-11")
6597 (source
6598 (origin
6599 (method url-fetch)
6600 (uri (cran-uri "gbRd" version))
6601 (sha256
6602 (base32
6603 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6604 (properties `((upstream-name . "gbRd")))
6605 (build-system r-build-system)
6606 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6607 (synopsis "Utilities for processing Rd objects and files")
6608 (description
6609 "This package provides utilities for processing Rd objects and files.
6610 Extract argument descriptions and other parts of the help pages of
6611 functions.")
6612 (license license:gpl2+)))
6613
6614 (define-public r-rjags
6615 (package
6616 (name "r-rjags")
6617 (version "4-10")
6618 (source
6619 (origin
6620 (method url-fetch)
6621 (uri (cran-uri "rjags" version))
6622 (sha256
6623 (base32
6624 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6625 (build-system r-build-system)
6626 (propagated-inputs
6627 `(("r-coda" ,r-coda)))
6628 (inputs
6629 `(("jags" ,jags)))
6630 (native-inputs
6631 `(("pkg-config" ,pkg-config)))
6632 (home-page "http://mcmc-jags.sourceforge.net")
6633 (synopsis "Bayesian graphical models using MCMC")
6634 (description
6635 "This package provides an R interface to the JAGS MCMC library. JAGS is
6636 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6637 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6638 (license license:gpl2)))
6639
6640 (define-public r-rdpack
6641 (package
6642 (name "r-rdpack")
6643 (version "1.0.0")
6644 (source
6645 (origin
6646 (method url-fetch)
6647 (uri (cran-uri "Rdpack" version))
6648 (sha256
6649 (base32
6650 "069yh9h57z3gjl5ih1r6wyiwmgmfzkpjxrpxg8mfq7y6zr1mynsw"))))
6651 (properties `((upstream-name . "Rdpack")))
6652 (build-system r-build-system)
6653 (propagated-inputs
6654 `(("r-bibtex" ,r-bibtex)
6655 ("r-gbrd" ,r-gbrd)))
6656 (home-page "https://github.com/GeoBosh/Rdpack")
6657 (synopsis "Update and manipulate Rd documentation objects")
6658 (description
6659 "This package provides functions for manipulation of R documentation
6660 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6661 updating Rd documentation for functions, methods and classes; it also includes
6662 Rd macros for citations and import of references from bibtex files for use in
6663 Rd files and roxygen2 comments, as well as many functions for manipulation of
6664 references and Rd files.")
6665 (license license:gpl2+)))
6666
6667 (define-public r-officer
6668 (package
6669 (name "r-officer")
6670 (version "0.3.12")
6671 (source
6672 (origin
6673 (method url-fetch)
6674 (uri (cran-uri "officer" version))
6675 (sha256
6676 (base32
6677 "1wk9h6bz77s5j6lgksmlrmi1vyaa35c766gq6hgb1dp0dz0x342x"))))
6678 (build-system r-build-system)
6679 (propagated-inputs
6680 `(("r-magrittr" ,r-magrittr)
6681 ("r-r6" ,r-r6)
6682 ("r-uuid" ,r-uuid)
6683 ("r-xml2" ,r-xml2)
6684 ("r-zip" ,r-zip)))
6685 (native-inputs
6686 `(("r-knitr" ,r-knitr)))
6687 (home-page "https://davidgohel.github.io/officer")
6688 (synopsis "Manipulation of Word and PowerPoint documents")
6689 (description
6690 "This package provides tools to access and manipulate Word and PowerPoint
6691 documents from R. The package focuses on tabular and graphical reporting from
6692 R; it also provides two functions that let users get document content into
6693 data objects. A set of functions lets add and remove images, tables and
6694 paragraphs of text in new or existing documents. When working with PowerPoint
6695 presentations, slides can be added or removed; shapes inside slides can also
6696 be added or removed. When working with Word documents, a cursor can be used
6697 to help insert or delete content at a specific location in the document.")
6698 (license license:gpl3)))
6699
6700 (define-public r-profilemodel
6701 (package
6702 (name "r-profilemodel")
6703 (version "0.6.0")
6704 (source
6705 (origin
6706 (method url-fetch)
6707 (uri (cran-uri "profileModel" version))
6708 (sha256
6709 (base32
6710 "0yq8hy43h62hlz8bbf9ila4a3xcwizi1if27b78xc5y857ncwad8"))))
6711 (properties `((upstream-name . "profileModel")))
6712 (build-system r-build-system)
6713 (home-page "https://github.com/ikosmidis/profileModel")
6714 (synopsis "Profiling inference functions for various model classes")
6715 (description
6716 "This package provides tools that can be used to calculate, evaluate,
6717 plot and use for inference the profiles of *arbitrary* inference functions for
6718 arbitrary @code{glm}-like fitted models with linear predictors. More information
6719 on the methods that are implemented can be found in Kosmidis (2008)
6720 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
6721 (license license:gpl2+)))
6722
6723 (define-public r-brglm
6724 (package
6725 (name "r-brglm")
6726 (version "0.6.2")
6727 (source
6728 (origin
6729 (method url-fetch)
6730 (uri (cran-uri "brglm" version))
6731 (sha256
6732 (base32
6733 "0c9ngscc6zlfm90fqyggnj04qfkhp5qgf5q3wnfpxwyc8cm47by2"))))
6734 (properties `((upstream-name . "brglm")))
6735 (build-system r-build-system)
6736 (propagated-inputs
6737 `(("r-profilemodel" ,r-profilemodel)))
6738 (home-page "https://github.com/ikosmidis/brglm")
6739 (synopsis "Bias reduction in binomial-response generalized linear models")
6740 (description
6741 "Fit generalized linear models with binomial responses using either an
6742 adjusted-score approach to bias reduction or maximum penalized likelihood
6743 where penalization is by Jeffreys invariant prior. These procedures return
6744 estimates with improved frequentist properties (bias, mean squared error) that
6745 are always finite even in cases where the maximum likelihood estimates are
6746 infinite (data separation). Fitting takes place by fitting generalized linear
6747 models on iteratively updated pseudo-data. The interface is essentially the
6748 same as @code{glm}. More flexibility is provided by the fact that custom
6749 pseudo-data representations can be specified and used for model fitting.
6750 Functions are provided for the construction of confidence intervals for the
6751 reduced-bias estimates.")
6752 (license license:gpl2+)))
6753
6754 (define-public r-entropy
6755 (package
6756 (name "r-entropy")
6757 (version "1.2.1")
6758 (source
6759 (origin
6760 (method url-fetch)
6761 (uri (cran-uri "entropy" version))
6762 (sha256
6763 (base32
6764 "10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"))))
6765 (properties `((upstream-name . "entropy")))
6766 (build-system r-build-system)
6767 (home-page "https://www.strimmerlab.org/software/entropy/")
6768 (synopsis "Estimation of entropy, mutual information and related quantities")
6769 (description
6770 "This package implements various estimators of entropy, such as the
6771 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
6772 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
6773 estimator. It also offers an R interface to the NSB estimator. Furthermore,
6774 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
6775 mutual information, and chi-squared statistic of independence. In addition
6776 there are functions for discretizing continuous random variables.")
6777 (license license:gpl3+)))
6778
6779 (define-public r-abn
6780 (package
6781 (name "r-abn")
6782 (version "2.2.2")
6783 (source
6784 (origin
6785 (method url-fetch)
6786 (uri (cran-uri "abn" version))
6787 (sha256
6788 (base32
6789 "1wwnzv5yir8cyl0f0arxagbsg9ndgs0799m42wbjkpr8cg9sfdhc"))))
6790 (build-system r-build-system)
6791 (inputs
6792 `(("gsl" ,gsl)))
6793 (propagated-inputs
6794 `(("r-boot" ,r-boot)
6795 ("r-brglm" ,r-brglm)
6796 ("r-entropy" ,r-entropy)
6797 ("r-lme4" ,r-lme4)
6798 ("r-mass" ,r-mass)
6799 ("r-moments" ,r-moments)
6800 ("r-nnet" ,r-nnet)
6801 ("r-rcpp" ,r-rcpp)
6802 ("r-rcpparmadillo" ,r-rcpparmadillo)
6803 ("r-rjags" ,r-rjags)))
6804 (home-page "https://r-bayesian-networks.org/")
6805 (synopsis "Modelling multivariate data with additive bayesian networks")
6806 (description
6807 "Bayesian network analysis is a form of probabilistic graphical models
6808 which derives from empirical data a directed acyclic graph, DAG, describing
6809 the dependency structure between random variables. An additive Bayesian
6810 network model consists of a form of a DAG where each node comprises a
6811 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
6812 equivalent to Bayesian multivariate regression using graphical modelling, they
6813 generalises the usual multivariable regression, GLM, to multiple dependent
6814 variables. This package provides routines to help determine optimal Bayesian
6815 network models for a given data set, where these models are used to identify
6816 statistical dependencies in messy, complex data.")
6817 (license license:gpl2+)))
6818
6819 (define-public r-acd
6820 (package
6821 (name "r-acd")
6822 (version "1.5.3")
6823 (source
6824 (origin
6825 (method url-fetch)
6826 (uri (cran-uri "ACD" version))
6827 (sha256
6828 (base32
6829 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
6830 (properties `((upstream-name . "ACD")))
6831 (build-system r-build-system)
6832 (home-page "https://cran.r-project.org/web/packages/ACD/")
6833 (synopsis "Categorical data analysis with complete or missing responses")
6834 (description
6835 "This package provides tools for categorical data analysis with complete
6836 or missing responses.")
6837 (license license:gpl2+)))
6838
6839 (define-public r-acdm
6840 (package
6841 (name "r-acdm")
6842 (version "1.0.4")
6843 (source
6844 (origin
6845 (method url-fetch)
6846 (uri (cran-uri "ACDm" version))
6847 (sha256
6848 (base32
6849 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
6850 (properties `((upstream-name . "ACDm")))
6851 (build-system r-build-system)
6852 (propagated-inputs
6853 `(("r-dplyr" ,r-dplyr)
6854 ("r-ggplot2" ,r-ggplot2)
6855 ("r-plyr" ,r-plyr)
6856 ("r-rsolnp" ,r-rsolnp)
6857 ("r-zoo" ,r-zoo)))
6858 (home-page "https://cran.r-project.org/web/packages/ACDm/")
6859 (synopsis "Tools for Autoregressive Conditional Duration Models")
6860 (description
6861 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
6862 and Russell, 1998) models. It creates trade, price or volume durations from
6863 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6864 and tests them.")
6865 (license license:gpl2+)))
6866
6867 (define-public r-overlap
6868 (package
6869 (name "r-overlap")
6870 (version "0.3.3")
6871 (source
6872 (origin
6873 (method url-fetch)
6874 (uri (cran-uri "overlap" version))
6875 (sha256
6876 (base32
6877 "17cnr4qin1qy0df4k491267acna12gpbbps6w3gi8nccqxfrb1pd"))))
6878 (build-system r-build-system)
6879 (home-page "https://cran.r-project.org/web/packages/overlap/")
6880 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6881 (description
6882 "This package provides functions to fit kernel density functions to data
6883 on temporal activity patterns of animals; estimate coefficients of overlapping
6884 of densities for two species; and calculate bootstrap estimates of confidence
6885 intervals.")
6886 (license license:gpl3+)))
6887
6888 (define-public r-snakecase
6889 (package
6890 (name "r-snakecase")
6891 (version "0.11.0")
6892 (source
6893 (origin
6894 (method url-fetch)
6895 (uri (cran-uri "snakecase" version))
6896 (sha256
6897 (base32
6898 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6899 (build-system r-build-system)
6900 (propagated-inputs
6901 `(("r-stringi" ,r-stringi)
6902 ("r-stringr" ,r-stringr)))
6903 (home-page "https://github.com/Tazinho/snakecase")
6904 (synopsis "Convert strings into any case")
6905 (description
6906 "This package provides a consistent, flexible and easy to use tool to
6907 parse and convert strings into cases like snake or camel among others.")
6908 (license license:gpl3)))
6909
6910 (define-public r-prediction
6911 (package
6912 (name "r-prediction")
6913 (version "0.3.14")
6914 (source
6915 (origin
6916 (method url-fetch)
6917 (uri (cran-uri "prediction" version))
6918 (sha256
6919 (base32
6920 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6921 (build-system r-build-system)
6922 (propagated-inputs
6923 `(("r-data-table" ,r-data-table)))
6924 (home-page "https://github.com/leeper/prediction")
6925 (synopsis "Tidy, type-safe prediction methods")
6926 (description
6927 "This package provides the @code{prediction()} function, a type-safe
6928 alternative to @code{predict()} that always returns a data frame. The package
6929 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6930 from the @code{stats} package, as well as numerous other model classes from
6931 other add-on packages.")
6932 (license license:expat)))
6933
6934 (define-public r-insight
6935 (package
6936 (name "r-insight")
6937 (version "0.9.0")
6938 (source
6939 (origin
6940 (method url-fetch)
6941 (uri (cran-uri "insight" version))
6942 (sha256
6943 (base32
6944 "1ajc8c5mi3ma5411lmlqp2ihkk5n0h8a1c0r3j07wk33p31c1qvl"))))
6945 (build-system r-build-system)
6946 (native-inputs
6947 `(("r-knitr" ,r-knitr)))
6948 (home-page "https://easystats.github.io/insight/")
6949 (synopsis "Easy access to model information for various model objects")
6950 (description
6951 "This package provides a tool to provide an easy, intuitive and
6952 consistent access to information contained in various R models, like model
6953 formulas, model terms, information about random effects, data that was used to
6954 fit the model or data from response variables. The package mainly revolves
6955 around two types of functions: Functions that find (the names of) information,
6956 starting with @code{find_}, and functions that get the underlying data,
6957 starting with @code{get_}. The package has a consistent syntax and works with
6958 many different model objects, where otherwise functions to access these
6959 information are missing.")
6960 (license license:gpl3)))
6961
6962 (define-public r-sjlabelled
6963 (package
6964 (name "r-sjlabelled")
6965 (version "1.1.6")
6966 (source
6967 (origin
6968 (method url-fetch)
6969 (uri (cran-uri "sjlabelled" version))
6970 (sha256
6971 (base32
6972 "0xvb0yi7c7wiiqjbnbisyb2cjinm11i373jacfv1yzyc9cznzyzq"))))
6973 (build-system r-build-system)
6974 (propagated-inputs
6975 `(("r-insight" ,r-insight)))
6976 (native-inputs
6977 `(("r-knitr" ,r-knitr)))
6978 (home-page "https://github.com/strengejacke/sjlabelled")
6979 (synopsis "Labelled data utility functions")
6980 (description
6981 "This package provides a collection of functions dealing with labelled
6982 data, like reading and writing data between R and other statistical software
6983 packages. This includes easy ways to get, set or change value and variable
6984 label attributes, to convert labelled vectors into factors or numeric (and
6985 vice versa), or to deal with multiple declared missing values.")
6986 (license license:gpl3)))
6987
6988 (define-public r-sjmisc
6989 (package
6990 (name "r-sjmisc")
6991 (version "2.8.5")
6992 (source
6993 (origin
6994 (method url-fetch)
6995 (uri (cran-uri "sjmisc" version))
6996 (sha256
6997 (base32
6998 "0xl0s56d13bia89ai619rcr0fzbvc2k8f7hjxik4qp0g4v87zzlk"))))
6999 (build-system r-build-system)
7000 (propagated-inputs
7001 `(("r-dplyr" ,r-dplyr)
7002 ("r-insight" ,r-insight)
7003 ("r-magrittr" ,r-magrittr)
7004 ("r-purrr" ,r-purrr)
7005 ("r-rlang" ,r-rlang)
7006 ("r-sjlabelled" ,r-sjlabelled)
7007 ("r-tidyselect" ,r-tidyselect)))
7008 (native-inputs
7009 `(("r-knitr" ,r-knitr)))
7010 (home-page "https://github.com/strengejacke/sjmisc")
7011 (synopsis "Data and variable transformation functions")
7012 (description
7013 "This package is a collection of miscellaneous utility functions,
7014 supporting data transformation tasks like recoding, dichotomizing or grouping
7015 variables, setting and replacing missing values. The data transformation
7016 functions also support labelled data, and all integrate seamlessly into a
7017 tidyverse workflow.")
7018 (license license:gpl3)))
7019
7020 (define-public r-nortest
7021 (package
7022 (name "r-nortest")
7023 (version "1.0-4")
7024 (source
7025 (origin
7026 (method url-fetch)
7027 (uri (cran-uri "nortest" version))
7028 (sha256
7029 (base32
7030 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
7031 (build-system r-build-system)
7032 (home-page "https://cran.r-project.org/web/packages/nortest/")
7033 (synopsis "Tests for normality")
7034 (description
7035 "This package provides five omnibus tests for testing the composite
7036 hypothesis of normality.")
7037 (license license:gpl2+)))
7038
7039 (define-public r-moonbook
7040 (package
7041 (name "r-moonbook")
7042 (version "0.2.3")
7043 (source
7044 (origin
7045 (method url-fetch)
7046 (uri (cran-uri "moonBook" version))
7047 (sha256
7048 (base32
7049 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
7050 (properties `((upstream-name . "moonBook")))
7051 (build-system r-build-system)
7052 (propagated-inputs
7053 `(("r-magrittr" ,r-magrittr)
7054 ("r-nortest" ,r-nortest)
7055 ("r-purrr" ,r-purrr)
7056 ("r-sjmisc" ,r-sjmisc)
7057 ("r-stringr" ,r-stringr)
7058 ("r-survival" ,r-survival)))
7059 (home-page "https://github.com/cardiomoon/moonBook")
7060 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
7061 (description
7062 "This package provides several analysis-related functions for the book
7063 entitled \"R statistics and graph for medical articles\" (written in Korean),
7064 version 1, by Keon-Woong Moon with Korean demographic data with several plot
7065 functions.")
7066 (license license:gpl2)))
7067
7068 (define-public r-flextable
7069 (package
7070 (name "r-flextable")
7071 (version "0.5.10")
7072 (source
7073 (origin
7074 (method url-fetch)
7075 (uri (cran-uri "flextable" version))
7076 (sha256
7077 (base32
7078 "1j7yvjiavar21ywck6nyz0p6bd66fnj99bq8lljdz4rrl3314yb8"))))
7079 (build-system r-build-system)
7080 (propagated-inputs
7081 `(("r-base64enc" ,r-base64enc)
7082 ("r-data-table" ,r-data-table)
7083 ("r-gdtools" ,r-gdtools)
7084 ("r-htmltools" ,r-htmltools)
7085 ("r-knitr" ,r-knitr)
7086 ("r-officer" ,r-officer)
7087 ("r-rlang" ,r-rlang)
7088 ("r-rmarkdown" ,r-rmarkdown)
7089 ("r-uuid" ,r-uuid)
7090 ("r-xml2" ,r-xml2)))
7091 (home-page "https://davidgohel.github.io/flextable")
7092 (synopsis "Functions for tabular reporting")
7093 (description
7094 "This package provides tools to create pretty tables for HTML documents
7095 and other formats. Functions are provided to let users create tables, modify
7096 and format their content. It extends the @code{officer} package and can be
7097 used within R markdown documents when rendering to HTML and to Word
7098 documents.")
7099 (license license:gpl3)))
7100
7101 (define-public r-writexl
7102 (package
7103 (name "r-writexl")
7104 (version "1.3")
7105 (source
7106 (origin
7107 (method url-fetch)
7108 (uri (cran-uri "writexl" version))
7109 (sha256
7110 (base32
7111 "0lah0r2pd996s0vdbi614j3h52dbxmifha6f19v53p2b7fr32wjd"))))
7112 (build-system r-build-system)
7113 (inputs `(("zlib" ,zlib)))
7114 (home-page "https://github.com/ropensci/writexl")
7115 (synopsis "Export data frames to xlsx format")
7116 (description
7117 "This package provides a data frame to xlsx exporter based on
7118 libxlsxwriter.")
7119 (license license:bsd-2)))
7120
7121 (define-public r-biasedurn
7122 (package
7123 (name "r-biasedurn")
7124 (version "1.07")
7125 (source
7126 (origin
7127 (method url-fetch)
7128 (uri (cran-uri "BiasedUrn" version))
7129 (sha256
7130 (base32
7131 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
7132 (properties `((upstream-name . "BiasedUrn")))
7133 (build-system r-build-system)
7134 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
7135 (synopsis "Biased Urn model distributions")
7136 (description
7137 "This package provides statistical models of biased sampling in the form
7138 of univariate and multivariate noncentral hypergeometric distributions,
7139 including Wallenius' noncentral hypergeometric distribution and Fisher's
7140 noncentral hypergeometric distribution (also called extended hypergeometric
7141 distribution).")
7142 (license license:gpl3)))
7143
7144 (define-public r-goplot
7145 (package
7146 (name "r-goplot")
7147 (version "1.0.2")
7148 (source
7149 (origin
7150 (method url-fetch)
7151 (uri (cran-uri "GOplot" version))
7152 (sha256
7153 (base32
7154 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
7155 (properties `((upstream-name . "GOplot")))
7156 (build-system r-build-system)
7157 (propagated-inputs
7158 `(("r-ggdendro" ,r-ggdendro)
7159 ("r-ggplot2" ,r-ggplot2)
7160 ("r-gridextra" ,r-gridextra)
7161 ("r-rcolorbrewer" ,r-rcolorbrewer)))
7162 (home-page "https://github.com/wencke/wencke.github.io")
7163 (synopsis "Visualization of functional analysis data")
7164 (description
7165 "This package provides an implementation of multilayered visualizations
7166 for enhanced graphical representation of functional analysis data. It
7167 combines and integrates omics data derived from expression and functional
7168 annotation enrichment analyses. Its plotting functions have been developed
7169 with an hierarchical structure in mind: starting from a general overview to
7170 identify the most enriched categories (modified bar plot, bubble plot) to a
7171 more detailed one displaying different types of relevant information for the
7172 molecules in a given set of categories (circle plot, chord plot, cluster plot,
7173 Venn diagram, heatmap).")
7174 (license license:gpl2)))
7175
7176 (define-public r-getopt
7177 (package
7178 (name "r-getopt")
7179 (version "1.20.3")
7180 (source
7181 (origin
7182 (method url-fetch)
7183 (uri (cran-uri "getopt" version))
7184 (sha256
7185 (base32
7186 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
7187 (build-system r-build-system)
7188 (home-page "https://github.com/trevorld/getopt")
7189 (synopsis "Command-line option processor for R")
7190 (description
7191 "This package is designed to be used with Rscript to write shebang
7192 scripts that accept short and long options. Many users will prefer to
7193 use the packages @code{optparse} or @code{argparse} which add extra
7194 features like automatically generated help options and usage texts,
7195 support for default values, positional argument support, etc.")
7196 (license license:gpl2+)))
7197
7198 (define-public r-findpython
7199 (package
7200 (name "r-findpython")
7201 (version "1.0.5")
7202 (source
7203 (origin
7204 (method url-fetch)
7205 (uri (cran-uri "findpython" version))
7206 (sha256
7207 (base32
7208 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
7209 (build-system r-build-system)
7210 (home-page "https://github.com/trevorld/findpython")
7211 (synopsis "Functions to find an acceptable Python binary")
7212 (description
7213 "This package was designed to find an acceptable Python binary that
7214 matches version and feature constraints.")
7215 (license license:expat)))
7216
7217 ;; This in not the same as "r-argparser"
7218 (define-public r-argparse
7219 (package
7220 (name "r-argparse")
7221 (version "2.0.1")
7222 (source
7223 (origin
7224 (method url-fetch)
7225 (uri (cran-uri "argparse" version))
7226 (sha256
7227 (base32
7228 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
7229 (build-system r-build-system)
7230 (inputs `(("python" ,python)))
7231 (propagated-inputs
7232 `(("r-findpython" ,r-findpython)
7233 ("r-jsonlite" ,r-jsonlite)
7234 ("r-r6" ,r-r6)))
7235 (home-page "https://github.com/trevorld/argparse")
7236 (synopsis "Command line optional and positional argument parser")
7237 (description
7238 "This package provides a command line parser to be used with Rscript to
7239 write shebang scripts that gracefully accept positional and optional arguments
7240 and automatically generate usage notices.")
7241 (license license:gpl2+)))
7242
7243 (define-public r-hash
7244 (package
7245 (name "r-hash")
7246 (version "2.2.6.1")
7247 (source
7248 (origin
7249 (method url-fetch)
7250 (uri (cran-uri "hash" version))
7251 (sha256
7252 (base32
7253 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
7254 (build-system r-build-system)
7255 (home-page "https://cran.r-project.org/web/packages/hash/")
7256 (synopsis "Implementation of hash/associated arrays/dictionaries")
7257 (description
7258 "This package implements a data structure similar to hashes in Perl and
7259 dictionaries in Python but with a purposefully R flavor. For objects of
7260 appreciable size, access using hashes outperforms native named lists and
7261 vectors.")
7262 (license license:gpl2+)))
7263
7264 (define-public r-orddom
7265 (package
7266 (name "r-orddom")
7267 (version "3.1")
7268 (source
7269 (origin
7270 (method url-fetch)
7271 (uri (cran-uri "orddom" version))
7272 (sha256
7273 (base32
7274 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
7275 (build-system r-build-system)
7276 (propagated-inputs `(("r-psych" ,r-psych)))
7277 (home-page "https://cran.r-project.org/web/packages/orddom/")
7278 (synopsis "Ordinal dominance statistics")
7279 (description
7280 "This package provides tools to compute ordinal, statistics and effect
7281 sizes as an alternative to mean comparison: Cliff's delta or success rate
7282 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
7283 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
7284 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
7285 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
7286 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
7287 Group (Non-)Overlap considerations.")
7288 (license license:gpl2)))
7289
7290 (define-public r-deriv
7291 (package
7292 (name "r-deriv")
7293 (version "4.0")
7294 (source
7295 (origin
7296 (method url-fetch)
7297 (uri (cran-uri "Deriv" version))
7298 (sha256
7299 (base32
7300 "03mlfy8jzzzbh2l18gnmw0a71n9savx4cw72yhkxq93v2xj8fy3n"))))
7301 (properties `((upstream-name . "Deriv")))
7302 (build-system r-build-system)
7303 (home-page "https://cran.r-project.org/web/packages/Deriv")
7304 (synopsis "Symbolic differentiation")
7305 (description
7306 "This package provides an R-based solution for symbolic differentiation.
7307 It admits user-defined functions as well as function substitution in arguments
7308 of functions to be differentiated. Some symbolic simplification is part of
7309 the work.")
7310 (license license:gpl3+)))
7311
7312 (define-public r-doby
7313 (package
7314 (name "r-doby")
7315 (version "4.6.7")
7316 (source
7317 (origin
7318 (method url-fetch)
7319 (uri (cran-uri "doBy" version))
7320 (sha256
7321 (base32
7322 "16vg1aa272sfzyqxfb63fyis9hv6g5m3nmxxa6mk1gy0irqnl3jk"))))
7323 (properties `((upstream-name . "doBy")))
7324 (build-system r-build-system)
7325 (propagated-inputs
7326 `(("r-broom" ,r-broom)
7327 ("r-deriv" ,r-deriv)
7328 ("r-dplyr" ,r-dplyr)
7329 ("r-ggplot2" ,r-ggplot2)
7330 ("r-magrittr" ,r-magrittr)
7331 ("r-mass" ,r-mass)
7332 ("r-matrix" ,r-matrix)
7333 ("r-pbkrtest" ,r-pbkrtest)
7334 ("r-tibble" ,r-tibble)))
7335 (native-inputs
7336 `(("r-knitr" ,r-knitr)))
7337 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
7338 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
7339 (description
7340 "This package contains:
7341
7342 @itemize
7343 @item facilities for working with grouped data: @code{do}
7344 something to data stratified @code{by} some variables.
7345 @item implementations of least-squares means, general linear contrasts, and
7346 @item miscellaneous other utilities.
7347 @end itemize\n")
7348 (license license:gpl2+)))
7349
7350 (define-public r-refgenome
7351 (package
7352 (name "r-refgenome")
7353 (version "1.7.7")
7354 (source
7355 (origin
7356 (method url-fetch)
7357 (uri (cran-uri "refGenome" version))
7358 (sha256
7359 (base32
7360 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
7361 (properties `((upstream-name . "refGenome")))
7362 (build-system r-build-system)
7363 (propagated-inputs
7364 `(("r-dbi" ,r-dbi)
7365 ("r-doby" ,r-doby)
7366 ("r-rsqlite" ,r-rsqlite)))
7367 (home-page "https://cran.r-project.org/web/packages/refGenome/")
7368 (synopsis
7369 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
7370 (description
7371 "This package contains functionality for importing and managing of
7372 downloaded genome annotation data from the Ensembl genome browser (European
7373 Bioinformatics Institute) and from the UCSC genome browser (University of
7374 California, Santa Cruz) and annotation routines for genomic positions and
7375 splice site positions.")
7376 (license license:gpl2)))
7377
7378 (define-public r-basix
7379 (package
7380 (name "r-basix")
7381 (version "1.1")
7382 (source
7383 (origin
7384 (method url-fetch)
7385 (uri (cran-uri "BASIX" version))
7386 (sha256
7387 (base32
7388 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
7389 (properties `((upstream-name . "BASIX")))
7390 (build-system r-build-system)
7391 (home-page "https://cran.r-project.org/web/packages/BASIX/")
7392 (synopsis "Efficient C/C++ toolset for R")
7393 (description
7394 "BASIX provides some efficient C/C++ implementations of native R
7395 procedures to speed up calculations in R.")
7396 (license license:gpl2)))
7397
7398 (define-public r-blockfest
7399 (package
7400 (name "r-blockfest")
7401 (version "1.6")
7402 (source
7403 (origin
7404 (method url-fetch)
7405 (uri (cran-uri "BlockFeST" version))
7406 (sha256
7407 (base32
7408 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
7409 (properties `((upstream-name . "BlockFeST")))
7410 (build-system r-build-system)
7411 (propagated-inputs `(("r-basix" ,r-basix)))
7412 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
7413 (synopsis "Bayesian calculation of region-specific fixation index")
7414 (description
7415 "This package provides an R implementation of an extension of the
7416 BayeScan software for codominant markers, adding the option to group
7417 individual SNPs into pre-defined blocks. A typical application of this new
7418 approach is the identification of genomic regions, genes, or gene sets
7419 containing one or more SNPs that evolved under directional selection.")
7420 (license license:gpl2)))
7421
7422 (define-public r-proc
7423 (package
7424 (name "r-proc")
7425 (version "1.16.2")
7426 (source
7427 (origin
7428 (method url-fetch)
7429 (uri (cran-uri "pROC" version))
7430 (sha256
7431 (base32
7432 "0apwa5zzqh74pjnvf5a1s5qf6i9r5h44jdllfrwymkd2v479d2xn"))))
7433 (properties `((upstream-name . "pROC")))
7434 (build-system r-build-system)
7435 (propagated-inputs
7436 `(("r-plyr" ,r-plyr)
7437 ("r-rcpp" ,r-rcpp)))
7438 (home-page "https://web.expasy.org/pROC/")
7439 (synopsis "Display and analyze ROC curves")
7440 (description
7441 "This package provides tools for visualizing, smoothing and comparing
7442 receiver operating characteristic (ROC curves). The area under the
7443 curve (AUC) can be compared with statistical tests based on U-statistics or
7444 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
7445 (license license:gpl3+)))
7446
7447 (define-public r-rootsolve
7448 (package
7449 (name "r-rootsolve")
7450 (version "1.8.2.1")
7451 (source
7452 (origin
7453 (method url-fetch)
7454 (uri (cran-uri "rootSolve" version))
7455 (sha256
7456 (base32
7457 "0c9hhgq1pgqdg80a6n2ssfbj5nyaf97y4iiya7j7l6b34qc53128"))))
7458 (properties `((upstream-name . "rootSolve")))
7459 (build-system r-build-system)
7460 (native-inputs `(("gfortran" ,gfortran)))
7461 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
7462 (synopsis "Tools for the analysis of ordinary differential equations")
7463 (description
7464 "This package provides routines to find the root of nonlinear functions,
7465 and to perform steady-state and equilibrium analysis of @dfn{ordinary
7466 differential equations} (ODE). It includes routines that:
7467
7468 @enumerate
7469 @item generate gradient and jacobian matrices (full and banded),
7470 @item find roots of non-linear equations by the Newton-Raphson method,
7471 @item estimate steady-state conditions of a system of (differential) equations
7472 in full, banded or sparse form, using the Newton-Raphson method, or by
7473 dynamically running,
7474 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
7475 and 3-D partial differential equations, that have been converted to ordinary
7476 differential equations by numerical differencing (using the method-of-lines
7477 approach).
7478 @end enumerate\n")
7479 (license license:gpl2+)))
7480
7481 (define-public r-abcanalysis
7482 (package
7483 (name "r-abcanalysis")
7484 (version "1.2.1")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (cran-uri "ABCanalysis" version))
7489 (sha256
7490 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
7491 (properties `((upstream-name . "ABCanalysis")))
7492 (build-system r-build-system)
7493 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
7494 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
7495 (synopsis "Computed ABC Analysis")
7496 (description
7497 "Multivariate data sets often differ in several factors or derived statistical
7498 parameters, which have to be selected for a valid interpretation. Basing this
7499 selection on traditional statistical limits leads occasionally to the perception
7500 of losing information from a data set. This package provides tools to calculate
7501 these limits on the basis of the mathematical properties of the distribution of
7502 the analyzed items.")
7503 (license license:gpl3)))
7504
7505 (define-public r-slam
7506 (package
7507 (name "r-slam")
7508 (version "0.1-47")
7509 (source
7510 (origin
7511 (method url-fetch)
7512 (uri (cran-uri "slam" version))
7513 (sha256
7514 (base32 "12fggw2c7hz3bpvsaqm24g3r6lbpq6jgli24g7x5j859iak5cqv9"))))
7515 (build-system r-build-system)
7516 (home-page "https://cran.r-project.org/web/packages/slam/")
7517 (synopsis "Sparse lightweight arrays and matrices")
7518 (description
7519 "This package contains data structures and algorithms for sparse arrays and matrices,
7520 based on index arrays and simple triplet representations, respectively.")
7521 (license license:gpl2)))
7522
7523 (define-public r-manipulatewidget
7524 (package
7525 (name "r-manipulatewidget")
7526 (version "0.10.1")
7527 (source
7528 (origin
7529 (method url-fetch)
7530 (uri (cran-uri "manipulateWidget" version))
7531 (sha256
7532 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
7533 (properties
7534 `((upstream-name . "manipulateWidget")))
7535 (build-system r-build-system)
7536 (propagated-inputs
7537 `(("r-base64enc" ,r-base64enc)
7538 ("r-codetools" ,r-codetools)
7539 ("r-htmltools" ,r-htmltools)
7540 ("r-htmlwidgets" ,r-htmlwidgets)
7541 ("r-knitr" ,r-knitr)
7542 ("r-miniui" ,r-miniui)
7543 ("r-shiny" ,r-shiny)
7544 ("r-webshot" ,r-webshot)))
7545 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
7546 (synopsis "Add even more interactivity to interactive charts")
7547 (description
7548 "This package lets you create in just a few lines of R code a nice user interface to
7549 modify the data or the graphical parameters of one or multiple interactive
7550 charts. It is useful to quickly explore visually some data or for package
7551 developers to generate user interfaces easy to maintain.")
7552 (license license:gpl2+)))
7553
7554 (define-public r-a3
7555 (package
7556 (name "r-a3")
7557 (version "1.0.0")
7558 (source
7559 (origin
7560 (method url-fetch)
7561 (uri (cran-uri "A3" version))
7562 (sha256
7563 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
7564 (properties `((upstream-name . "A3")))
7565 (build-system r-build-system)
7566 (propagated-inputs
7567 `(("r-pbapply" ,r-pbapply)
7568 ("r-xtable" ,r-xtable)))
7569 (home-page "https://cran.r-project.org/web/packages/A3/")
7570 (synopsis "Error metrics for predictive models")
7571 (description
7572 "This package supplies tools for tabulating and analyzing the results of predictive
7573 models. The methods employed are applicable to virtually any predictive model
7574 and make comparisons between different methodologies straightforward.")
7575 (license license:gpl2+)))
7576
7577 (define-public r-infotheo
7578 (package
7579 (name "r-infotheo")
7580 (version "1.2.0")
7581 (source
7582 (origin
7583 (method url-fetch)
7584 (uri (cran-uri "infotheo" version))
7585 (sha256
7586 (base32
7587 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
7588 (build-system r-build-system)
7589 (home-page "http://homepage.meyerp.com/software")
7590 (synopsis "Information-theoretic measures")
7591 (description
7592 "This package implements various measures of information theory based on
7593 several entropy estimators.")
7594 (license license:gpl3+)))
7595
7596 (define-public r-abcoptim
7597 (package
7598 (name "r-abcoptim")
7599 (version "0.15.0")
7600 (source
7601 (origin
7602 (method url-fetch)
7603 (uri (cran-uri "ABCoptim" version))
7604 (sha256
7605 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
7606 (properties `((upstream-name . "ABCoptim")))
7607 (build-system r-build-system)
7608 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7609 (home-page "https://github.com/gvegayon/ABCoptim/")
7610 (synopsis "Optimization of Artificial Bee Colony algorithm")
7611 (description
7612 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
7613 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
7614 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
7615 algorithms, and uses only common control parameters such as colony size and
7616 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
7617 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
7618 This version is a work-in-progress and is written in R code.")
7619 (license license:expat)))
7620
7621 (define-public r-abcp2
7622 (package
7623 (name "r-abcp2")
7624 (version "1.2")
7625 (source
7626 (origin
7627 (method url-fetch)
7628 (uri (cran-uri "ABCp2" version))
7629 (sha256
7630 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
7631 (properties `((upstream-name . "ABCp2")))
7632 (build-system r-build-system)
7633 (propagated-inputs `(("r-mass" ,r-mass)))
7634 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
7635 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
7636 (description
7637 "This package tests the goodness of fit of a distribution of offspring to the Normal,
7638 Poisson, and Gamma distribution and estimates the proportional paternity of the
7639 second male (P2) based on the best fit distribution.")
7640 (license license:gpl2)))
7641
7642 (define-public r-abcrf
7643 (package
7644 (name "r-abcrf")
7645 (version "1.8.1")
7646 (source
7647 (origin
7648 (method url-fetch)
7649 (uri (cran-uri "abcrf" version))
7650 (sha256
7651 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
7652 (build-system r-build-system)
7653 (propagated-inputs
7654 `(("r-doparallel" ,r-doparallel)
7655 ("r-foreach" ,r-foreach)
7656 ("r-mass" ,r-mass)
7657 ("r-matrixstats" ,r-matrixstats)
7658 ("r-ranger" ,r-ranger)
7659 ("r-rcpp" ,r-rcpp)
7660 ("r-rcpparmadillo" ,r-rcpparmadillo)
7661 ("r-readr" ,r-readr)
7662 ("r-stringr" ,r-stringr)))
7663 (home-page "https://cran.r-project.org/web/packages/abcrf/")
7664 (synopsis "Approximate bayesian computation via random forests")
7665 (description
7666 "This package performs approximate bayesian computation (ABC) model choice and
7667 parameter inference via random forests. This machine learning tool named random
7668 forests (RF) can conduct selection among the highly complex models covered by
7669 ABC algorithms.")
7670 (license license:gpl2+)))
7671
7672 (define-public r-abctools
7673 (package
7674 (name "r-abctools")
7675 (version "1.1.3")
7676 (source
7677 (origin
7678 (method url-fetch)
7679 (uri (cran-uri "abctools" version))
7680 (sha256
7681 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
7682 (build-system r-build-system)
7683 (propagated-inputs
7684 `(("r-abc" ,r-abc)
7685 ("r-abind" ,r-abind)
7686 ("r-hmisc" ,r-hmisc)
7687 ("r-plyr" ,r-plyr)))
7688 (home-page "https://github.com/dennisprangle/abctools/")
7689 (synopsis "Tools for ABC analyses")
7690 (description
7691 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7692 including summary statistic selection and assessing coverage. This includes
7693 recent dimension reduction algorithms to tune the choice of summary statistics,
7694 and coverage methods to tune the choice of threshold.")
7695 (license license:gpl2+)))
7696
7697 (define-public r-ggstance
7698 (package
7699 (name "r-ggstance")
7700 (version "0.3.4")
7701 (source
7702 (origin
7703 (method url-fetch)
7704 (uri (cran-uri "ggstance" version))
7705 (sha256
7706 (base32 "0aqz3dn02cgij018a4sglqwrwr9dzzj12l8xr1064q7hfd4f64m1"))))
7707 (build-system r-build-system)
7708 (propagated-inputs
7709 `(("r-ggplot2" ,r-ggplot2)
7710 ("r-plyr" ,r-plyr)
7711 ("r-rlang" ,r-rlang)
7712 ("r-withr" ,r-withr)))
7713 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7714 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7715 (description
7716 "This package is a @code{r-ggplot2} extension that provides flipped components:
7717 @enumerate
7718 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7719 @item vertical versions of @code{r-ggplot2} positions.
7720 @end enumerate")
7721 (license license:gpl3)))
7722
7723 (define-public r-mosaiccore
7724 (package
7725 (name "r-mosaiccore")
7726 (version "0.6.0")
7727 (source
7728 (origin
7729 (method url-fetch)
7730 (uri (cran-uri "mosaicCore" version))
7731 (sha256
7732 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7733 (properties `((upstream-name . "mosaicCore")))
7734 (build-system r-build-system)
7735 (propagated-inputs
7736 `(("r-dplyr" ,r-dplyr)
7737 ("r-lazyeval" ,r-lazyeval)
7738 ("r-mass" ,r-mass)
7739 ("r-rlang" ,r-rlang)
7740 ("r-tidyr" ,r-tidyr)))
7741 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7742 (synopsis "Common utilities for mosaic family packages")
7743 (description
7744 "Common utilities used in other Mosaic family packages are collected here.")
7745 (license license:gpl2+)))
7746
7747 (define-public r-ggformula
7748 (package
7749 (name "r-ggformula")
7750 (version "0.9.4")
7751 (source
7752 (origin
7753 (method url-fetch)
7754 (uri (cran-uri "ggformula" version))
7755 (sha256
7756 (base32 "04vdhg1bbc1psrx9ggaphz7cx4fw5xsmhkqpqfcg2w4ba2bjy46f"))))
7757 (build-system r-build-system)
7758 (propagated-inputs
7759 `(("r-ggforce" ,r-ggforce)
7760 ("r-ggplot2" ,r-ggplot2)
7761 ("r-ggstance" ,r-ggstance)
7762 ("r-magrittr" ,r-magrittr)
7763 ("r-mosaiccore" ,r-mosaiccore)
7764 ("r-rlang" ,r-rlang)
7765 ("r-stringr" ,r-stringr)
7766 ("r-tibble" ,r-tibble)))
7767 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7768 (synopsis "Formula interface for the @code{r-ggplot2}")
7769 (description
7770 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7771 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7772 and extends the excellent simplicity of the lattice-graphics formula interface,
7773 while providing the intuitive capabilities of @code{r-ggplot2}.")
7774 (license license:expat)))
7775
7776 (define-public r-mosaicdata
7777 (package
7778 (name "r-mosaicdata")
7779 (version "0.18.0")
7780 (source
7781 (origin
7782 (method url-fetch)
7783 (uri (cran-uri "mosaicData" version))
7784 (sha256
7785 (base32 "0cx5dg26ha7nzkdyghkbbd6ikncj60qv1538az77lfgn2jylvkbz"))))
7786 (properties `((upstream-name . "mosaicData")))
7787 (build-system r-build-system)
7788 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7789 (synopsis "Data sets for project Mosaic")
7790 (description
7791 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7792 used to teach mathematics, statistics, computation and modeling.")
7793 (license license:gpl2+)))
7794
7795 (define-public r-raster
7796 (package
7797 (name "r-raster")
7798 (version "3.3-13")
7799 (source
7800 (origin
7801 (method url-fetch)
7802 (uri (cran-uri "raster" version))
7803 (sha256
7804 (base32
7805 "1s6457rq94qvm3s2lqscs2c2gn5kzcpxa13i8nhlgb1klx5kams7"))))
7806 (build-system r-build-system)
7807 (propagated-inputs
7808 `(("r-rcpp" ,r-rcpp)
7809 ("r-sp" ,r-sp)))
7810 (home-page "https://www.rspatial.org/")
7811 (synopsis "Geographic data analysis and modeling")
7812 (description
7813 "The package implements basic and high-level functions for reading,
7814 writing, manipulating, analyzing and modeling of gridded spatial data.
7815 Processing of very large files is supported.")
7816 (license license:gpl3+)))
7817
7818 (define-public r-mosaic
7819 (package
7820 (name "r-mosaic")
7821 (version "1.4.0")
7822 (source
7823 (origin
7824 (method url-fetch)
7825 (uri (cran-uri "mosaic" version))
7826 (sha256
7827 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
7828 (build-system r-build-system)
7829 (propagated-inputs
7830 `(("r-broom" ,r-broom)
7831 ("r-dplyr" ,r-dplyr)
7832 ("r-ggdendro" ,r-ggdendro)
7833 ("r-ggformula" ,r-ggformula)
7834 ("r-ggplot2" ,r-ggplot2)
7835 ("r-ggrepel" ,r-ggrepel)
7836 ("r-glue" ,r-glue)
7837 ("r-gridextra" ,r-gridextra)
7838 ("r-lattice" ,r-lattice)
7839 ("r-latticeextra" ,r-latticeextra)
7840 ("r-lazyeval" ,r-lazyeval)
7841 ("r-mass" ,r-mass)
7842 ("r-matrix" ,r-matrix)
7843 ("r-mosaiccore" ,r-mosaiccore)
7844 ("r-mosaicdata" ,r-mosaicdata)
7845 ("r-readr" ,r-readr)
7846 ("r-tidyr" ,r-tidyr)))
7847 (native-inputs
7848 `(("r-knitr" ,r-knitr)))
7849 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
7850 (synopsis "Mathematics, statistics, and computation teaching utilities")
7851 (description
7852 "This package contain data sets and utilities from
7853 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
7854 statistics, computation and modeling. Project MOSAIC is a community of
7855 educators working to tie together aspects of quantitative work that students
7856 in science, technology, engineering and mathematics will need in their
7857 professional lives, but which are usually taught in isolation, if at all.")
7858 (license license:gpl2+)))
7859
7860 (define-public r-abd
7861 (package
7862 (name "r-abd")
7863 (version "0.2-8")
7864 (source
7865 (origin
7866 (method url-fetch)
7867 (uri (cran-uri "abd" version))
7868 (sha256
7869 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
7870 (build-system r-build-system)
7871 (propagated-inputs
7872 `(("r-lattice" ,r-lattice)
7873 ("r-mosaic" ,r-mosaic)
7874 ("r-nlme" ,r-nlme)))
7875 (home-page "https://cran.r-project.org/web/packages/abd/")
7876 (synopsis "Analysis of biological data")
7877 (description
7878 "The @code{r-abd} package contains data sets and sample code for the Analysis of
7879 biological data by Michael Whitlock and Dolph Schluter.")
7880 (license license:gpl2)))
7881
7882 (define-public r-svgui
7883 (package
7884 (name "r-svgui")
7885 (version "1.0.0")
7886 (source
7887 (origin
7888 (method url-fetch)
7889 (uri (cran-uri "svGUI" version))
7890 (sha256
7891 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
7892 (properties `((upstream-name . "svGUI")))
7893 (build-system r-build-system)
7894 (home-page "https://github.com/SciViews/svGUI/")
7895 (synopsis "Functions for managing GUI clients in R")
7896 (description
7897 "The SciViews @code{svGUI} package eases the management of Graphical User
7898 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7899 centralizes info about GUI elements currently used, and it dispatches GUI
7900 calls to the particular toolkits in use in function of the context.")
7901 (license license:gpl2)))
7902
7903 (define-public r-svdialogs
7904 (package
7905 (name "r-svdialogs")
7906 (version "1.0.0")
7907 (source
7908 (origin
7909 (method url-fetch)
7910 (uri (cran-uri "svDialogs" version))
7911 (sha256
7912 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7913 (properties `((upstream-name . "svDialogs")))
7914 (build-system r-build-system)
7915 (inputs
7916 `(("yad" ,yad)
7917 ("zenity" ,zenity)))
7918 (propagated-inputs
7919 `(("r-rstudioapi" ,r-rstudioapi)
7920 ("r-svgui" ,r-svgui)))
7921 (home-page "https://github.com/SciViews/svDialogs/")
7922 (synopsis "Portable dialog boxes")
7923 (description
7924 "This package helps to construct standard dialog boxes for your GUI, including
7925 message boxes, input boxes, list, file or directory selection, and others. In
7926 case R cannot display GUI dialog boxes, a simpler command line version of these
7927 interactive elements is also provided as a fallback solution.")
7928 (license license:gpl2)))
7929
7930 (define-public r-abe
7931 (package
7932 (name "r-abe")
7933 (version "3.0.1")
7934 (source
7935 (origin
7936 (method url-fetch)
7937 (uri (cran-uri "abe" version))
7938 (sha256
7939 (base32
7940 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7941 (build-system r-build-system)
7942 (home-page "https://cran.r-project.org/web/packages/abe/")
7943 (synopsis "Augmented backward elimination")
7944 (description
7945 "This package performs augmented backward elimination and checks the
7946 stability of the obtained model. Augmented backward elimination combines
7947 significance or information based criteria with the change in estimate to
7948 either select the optimal model for prediction purposes or to serve as a tool
7949 to obtain a practically sound, highly interpretable model.")
7950 (license license:gpl2+)))
7951
7952 (define-public r-abf2
7953 (package
7954 (name "r-abf2")
7955 (version "0.7-1")
7956 (source
7957 (origin
7958 (method url-fetch)
7959 (uri (cran-uri "abf2" version))
7960 (sha256
7961 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7962 (build-system r-build-system)
7963 (home-page "https://cran.r-project.org/web/packages/abf2/")
7964 (synopsis "Load gap-free axon @code{r-abf2} files")
7965 (description
7966 "This package loads electrophysiology data from ABF2 files, as created by
7967 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7968 mode are currently supported.")
7969 (license license:artistic2.0)))
7970
7971 (define-public r-abhgenotyper
7972 (package
7973 (name "r-abhgenotyper")
7974 (version "1.0.1")
7975 (source
7976 (origin
7977 (method url-fetch)
7978 (uri (cran-uri "ABHgenotypeR" version))
7979 (sha256
7980 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7981 (properties `((upstream-name . "ABHgenotypeR")))
7982 (build-system r-build-system)
7983 (propagated-inputs
7984 `(("r-ggplot2" ,r-ggplot2)
7985 ("r-reshape2" ,r-reshape2)))
7986 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7987 (synopsis "Visualize and manipulate ABH genotypes")
7988 (description
7989 "The @code{r-abhgenotyper} package provides simple imputation,
7990 error-correction and plotting capacities for genotype data. The package is
7991 supposed to serve as an intermediate but independent analysis tool between the
7992 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7993 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7994 genotypes as \"graphical genotypes\".")
7995 (license license:gpl3)))
7996
7997 (define-public r-furrr
7998 (package
7999 (name "r-furrr")
8000 (version "0.1.0")
8001 (source
8002 (origin
8003 (method url-fetch)
8004 (uri (cran-uri "furrr" version))
8005 (sha256
8006 (base32
8007 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
8008 (build-system r-build-system)
8009 (propagated-inputs
8010 `(("r-future" ,r-future)
8011 ("r-globals" ,r-globals)
8012 ("r-purrr" ,r-purrr)
8013 ("r-rlang" ,r-rlang)))
8014 (home-page "https://github.com/DavisVaughan/furrr")
8015 (synopsis "Apply mapping functions in parallel using futures")
8016 (description
8017 "This package provides implementations of the family of @code{map()}
8018 functions from the @code{purrr} package that can be resolved using any
8019 @code{future}-supported backend, e.g. parallel on the local machine or
8020 distributed on a compute cluster.")
8021 (license license:lgpl2.1+)))
8022
8023 (define-public r-abjutils
8024 (package
8025 (name "r-abjutils")
8026 (version "0.3.1")
8027 (source
8028 (origin
8029 (method url-fetch)
8030 (uri (cran-uri "abjutils" version))
8031 (sha256
8032 (base32 "18mmlkqsrjfclk8islfjdsp8sbw6dpjj5x45kqilxdiss69gg5zd"))))
8033 (build-system r-build-system)
8034 (propagated-inputs
8035 `(("r-dplyr" ,r-dplyr)
8036 ("r-magrittr" ,r-magrittr)
8037 ("r-purrr" ,r-purrr)
8038 ("r-rlang" ,r-rlang)
8039 ("r-rstudioapi" ,r-rstudioapi)
8040 ("r-stringi" ,r-stringi)
8041 ("r-stringr" ,r-stringr)
8042 ("r-tidyr" ,r-tidyr)))
8043 (home-page "https://github.com/abjur/abjutils/")
8044 (synopsis "Collection of tools for jurimetrical analysis")
8045 (description
8046 "This package implements general purpose tools, such as functions for
8047 sampling and basic manipulation of Brazilian lawsuits identification number.
8048 It also implements functions for text cleaning, such as accentuation
8049 removal.")
8050 (license license:expat)))
8051
8052 (define-public r-abnormality
8053 (package
8054 (name "r-abnormality")
8055 (version "0.1.0")
8056 (source
8057 (origin
8058 (method url-fetch)
8059 (uri (cran-uri "abnormality" version))
8060 (sha256
8061 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
8062 (build-system r-build-system)
8063 (propagated-inputs
8064 `(("r-mass" ,r-mass)
8065 ("r-matrix" ,r-matrix)))
8066 (home-page "https://cran.r-project.org/web/packages/abnormality/")
8067 (synopsis "Measure a subject's abnormality with respect to a reference population")
8068 (description
8069 "This package contains functions to implement the methodology and
8070 considerations laid out by Marks et al. in the article \"Measuring abnormality
8071 in high dimensional spaces: applications in biomechanical gait analysis\".
8072 Using high-dimensional datasets to measure a subject's overall level of
8073 abnormality as compared to a reference population is often needed in outcomes
8074 research.")
8075 (license license:expat)))
8076
8077 (define-public r-abodoutlier
8078 (package
8079 (name "r-abodoutlier")
8080 (version "0.1")
8081 (source
8082 (origin
8083 (method url-fetch)
8084 (uri (cran-uri "abodOutlier" version))
8085 (sha256
8086 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
8087 (properties `((upstream-name . "abodOutlier")))
8088 (build-system r-build-system)
8089 (propagated-inputs
8090 `(("r-cluster" ,r-cluster)))
8091 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
8092 (synopsis "Angle-based outlier detection")
8093 (description
8094 "This package performs angle-based outlier detection on a given data
8095 frame. It offers three methods to process data:
8096 @enumerate
8097 @item full but slow implementation using all the data that has cubic
8098 complexity;
8099 @item a fully randomized method;
8100 @item a method using k-nearest neighbours.
8101 @end enumerate
8102 These algorithms are well suited for high dimensional data outlier
8103 detection.")
8104 (license license:expat)))
8105
8106 (define-public r-abps
8107 (package
8108 (name "r-abps")
8109 (version "0.3")
8110 (source
8111 (origin
8112 (method url-fetch)
8113 (uri (cran-uri "ABPS" version))
8114 (sha256
8115 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
8116 (properties `((upstream-name . "ABPS")))
8117 (build-system r-build-system)
8118 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
8119 (home-page "https://cran.r-project.org/web/packages/ABPS/")
8120 (synopsis "Abnormal blood profile score to detect blood doping")
8121 (description
8122 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
8123 The ABPS is a part of the Athlete biological passport program of the World
8124 anti-doping agency, which combines several blood parameters into a single
8125 score in order to detect blood doping. The package also contains functions to
8126 calculate other scores used in anti-doping programs, such as the ratio of
8127 hemoglobin to reticulocytes (OFF-score), as well as example data.")
8128 (license license:gpl2+)))
8129
8130 (define-public r-parmigene
8131 (package
8132 (name "r-parmigene")
8133 (version "1.1.0")
8134 (source
8135 (origin
8136 (method url-fetch)
8137 (uri (cran-uri "parmigene" version))
8138 (sha256
8139 (base32
8140 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
8141 (build-system r-build-system)
8142 (home-page "https://cran.r-project.org/web/packages/parmigene/")
8143 (synopsis "Mutual information estimation for gene network reconstruction")
8144 (description
8145 "This package provides a parallel estimation of the mutual information
8146 based on entropy estimates from k-nearest neighbors distances and algorithms
8147 for the reconstruction of gene regulatory networks.")
8148 (license license:agpl3+)))
8149
8150 (define-public r-pscl
8151 (package
8152 (name "r-pscl")
8153 (version "1.5.5")
8154 (source
8155 (origin
8156 (method url-fetch)
8157 (uri (cran-uri "pscl" version))
8158 (sha256
8159 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
8160 (build-system r-build-system)
8161 (propagated-inputs
8162 `(("r-mass" ,r-mass)))
8163 (home-page "https://github.com/atahk/pscl/")
8164 (synopsis "Political science computational laboratory")
8165 (description
8166 "The @code{pscl} is an R package providing classes and methods for:
8167 @enumerate
8168 @item Bayesian analysis of roll call data (item-response models);
8169 @item elementary Bayesian statistics;
8170 @item maximum likelihood estimation of zero-inflated and hurdle models for count
8171 data;
8172 @item utility functions.
8173 @end enumerate")
8174 (license license:gpl2)))
8175
8176 (define-public r-accelmissing
8177 (package
8178 (name "r-accelmissing")
8179 (version "1.4")
8180 (source
8181 (origin
8182 (method url-fetch)
8183 (uri (cran-uri "accelmissing" version))
8184 (sha256
8185 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
8186 (build-system r-build-system)
8187 (propagated-inputs
8188 `(("r-mice" ,r-mice)
8189 ("r-pscl" ,r-pscl)))
8190 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
8191 (synopsis "Missing value imputation for accelerometer data")
8192 (description
8193 "This package provides a statistical method to impute the missing values in
8194 accelerometer data. The methodology includes both parametric and
8195 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
8196 model. It also provides multiple functions to preprocess the accelerometer data
8197 previous to the missing data imputation. These include detecting the wearing
8198 and the non-wearing time, selecting valid days and subjects, and creating plots.")
8199 (license license:gpl2+)))
8200
8201 (define-public r-mhsmm
8202 (package
8203 (name "r-mhsmm")
8204 (version "0.4.16")
8205 (source
8206 (origin
8207 (method url-fetch)
8208 (uri (cran-uri "mhsmm" version))
8209 (sha256
8210 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
8211 (build-system r-build-system)
8212 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8213 (home-page "https://github.com/jaredo/mhsmm/")
8214 (synopsis "Inference for hidden Markov and semi-Markov models")
8215 (description
8216 "The @code{r-mhsmm} package implements estimation and prediction methods for
8217 hidden Markov and semi-Markov models for multiple observation sequences. Such
8218 techniques are of interest when observed data is thought to be dependent on some
8219 unobserved (or hidden) state. Also, this package is suitable for equidistant
8220 time series data, with multivariate and/or missing data. Allows user defined
8221 emission distributions.")
8222 (license license:gpl2+)))
8223
8224 (define-public r-nleqslv
8225 (package
8226 (name "r-nleqslv")
8227 (version "3.3.2")
8228 (source
8229 (origin
8230 (method url-fetch)
8231 (uri (cran-uri "nleqslv" version))
8232 (sha256
8233 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
8234 (build-system r-build-system)
8235 (native-inputs `(("gfortran" ,gfortran)))
8236 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
8237 (synopsis "Solve systems of nonlinear equations")
8238 (description
8239 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
8240 Broyden or a Newton method with a choice of global strategies such as line
8241 search and trust region. There are options for using a numerical or user
8242 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
8243 singular or ill-conditioned Jacobian.")
8244 (license license:gpl2+)))
8245
8246 (define-public r-physicalactivity
8247 (package
8248 (name "r-physicalactivity")
8249 (version "0.2-2")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (cran-uri "PhysicalActivity" version))
8254 (sha256
8255 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
8256 (properties
8257 `((upstream-name . "PhysicalActivity")))
8258 (build-system r-build-system)
8259 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
8260 (synopsis "Procesing accelerometer data for physical activity measurement")
8261 (description
8262 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
8263 for classification of monitor wear and nonwear time intervals in accelerometer
8264 data collected to assess physical activity. The package also contains functions
8265 for making plots of accelerometer data and obtaining the summary of various
8266 information including daily monitor wear time and the mean monitor wear time
8267 during valid days. The revised package version 0.2-1 improved the functions
8268 regarding speed, robustness and add better support for time zones and daylight
8269 saving. In addition, several functions were added:
8270 @enumerate
8271 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
8272 @item the @code{markPAI} can categorize physical activity intensity level based
8273 on user-defined cut-points of accelerometer counts.
8274 @end enumerate
8275 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
8276 @code{queryActigraph} functions.")
8277 (license license:gpl3+)))
8278
8279 (define-public r-acc
8280 (package
8281 (name "r-acc")
8282 (version "1.3.3")
8283 (source
8284 (origin
8285 (method url-fetch)
8286 (uri (cran-uri "acc" version))
8287 (sha256
8288 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
8289 (build-system r-build-system)
8290 (propagated-inputs
8291 `(("r-circlize" ,r-circlize)
8292 ("r-dbi" ,r-dbi)
8293 ("r-ggplot2" ,r-ggplot2)
8294 ("r-iterators" ,r-iterators)
8295 ("r-mhsmm" ,r-mhsmm)
8296 ("r-nleqslv" ,r-nleqslv)
8297 ("r-physicalactivity" ,r-physicalactivity)
8298 ("r-plyr" ,r-plyr)
8299 ("r-r-utils" ,r-r-utils)
8300 ("r-rcpp" ,r-rcpp)
8301 ("r-rcpparmadillo" ,r-rcpparmadillo)
8302 ("r-rsqlite" ,r-rsqlite)
8303 ("r-zoo" ,r-zoo)))
8304 (home-page "https://cran.r-project.org/web/packages/acc/")
8305 (synopsis "Exploring accelerometer data")
8306 (description
8307 "This package processes accelerometer data from uni-axial and tri-axial devices
8308 and generates data summaries. Also, includes functions to plot, analyze, and
8309 simulate accelerometer data.")
8310 (license license:gpl2+)))
8311
8312 (define-public r-rbenchmark
8313 (package
8314 (name "r-rbenchmark")
8315 (version "1.0.0")
8316 (source
8317 (origin
8318 (method url-fetch)
8319 (uri (cran-uri "rbenchmark" version))
8320 (sha256
8321 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
8322 (build-system r-build-system)
8323 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
8324 (synopsis "Benchmarking routine for R")
8325 (description
8326 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
8327 and is intended to facilitate benchmarking of arbitrary R code. The library
8328 consists of just one function, benchmark, which is a simple wrapper around
8329 system.time. Given a specification of the benchmarking process (counts of
8330 replications, evaluation environment) and an arbitrary number of expressions,
8331 benchmark evaluates each of the expressions in the specified environment,
8332 replicating the evaluation as many times as specified, and returning the results
8333 conveniently wrapped into a data frame.")
8334 (license license:gpl2+)))
8335
8336 (define-public r-mitools
8337 (package
8338 (name "r-mitools")
8339 (version "2.4")
8340 (source
8341 (origin
8342 (method url-fetch)
8343 (uri (cran-uri "mitools" version))
8344 (sha256
8345 (base32
8346 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
8347 (build-system r-build-system)
8348 (propagated-inputs `(("r-dbi" ,r-dbi)))
8349 (home-page "https://cran.r-project.org/web/packages/mitools/")
8350 (synopsis "Tools for multiple imputation of missing data")
8351 (description
8352 "This package provides tools to perform analyses and combine results from
8353 multiple-imputation datasets.")
8354 (license license:gpl2)))
8355
8356 (define-public r-magick
8357 (package
8358 (name "r-magick")
8359 (version "2.4.0")
8360 (source
8361 (origin
8362 (method url-fetch)
8363 (uri (cran-uri "magick" version))
8364 (sha256
8365 (base32
8366 "1y1p2blkg0h6061ay7mdwssxbswgrc25raffp6d8d9cqhdmsa72s"))))
8367 (build-system r-build-system)
8368 (inputs
8369 `(("imagemagick" ,imagemagick)
8370 ("zlib" ,zlib)))
8371 (propagated-inputs
8372 `(("r-curl" ,r-curl)
8373 ("r-magrittr" ,r-magrittr)
8374 ("r-rcpp" ,r-rcpp)))
8375 (native-inputs
8376 `(("pkg-config" ,pkg-config)
8377 ("r-knitr" ,r-knitr)))
8378 (home-page "https://github.com/ropensci/magick")
8379 (synopsis "Advanced graphics and image-processing in R")
8380 (description
8381 "This package provides bindings to ImageMagick, a comprehensive image
8382 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
8383 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
8384 operations are vectorized via the Magick++ STL meaning they operate either on
8385 a single frame or a series of frames for working with layers, collages, or
8386 animation. In RStudio, images are automatically previewed when printed to the
8387 console, resulting in an interactive editing environment.")
8388 (license license:expat)))
8389
8390 (define-public r-survey
8391 (package
8392 (name "r-survey")
8393 (version "4.0")
8394 (source
8395 (origin
8396 (method url-fetch)
8397 (uri (cran-uri "survey" version))
8398 (sha256
8399 (base32
8400 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
8401 (build-system r-build-system)
8402 (propagated-inputs
8403 `(("r-lattice" ,r-lattice)
8404 ("r-matrix" ,r-matrix)
8405 ("r-minqa" ,r-minqa)
8406 ("r-mitools" ,r-mitools)
8407 ("r-numderiv" ,r-numderiv)
8408 ("r-survival" ,r-survival)))
8409 (home-page "http://r-survey.r-forge.r-project.org/survey/")
8410 (synopsis "Analysis of complex survey samples")
8411 (description
8412 "This package provides tools for the analysis of complex survey samples.
8413 The provided features include: summary statistics, two-sample tests, rank
8414 tests, generalised linear models, cumulative link models, Cox models,
8415 loglinear models, and general maximum pseudolikelihood estimation for
8416 multistage stratified, cluster-sampled, unequally weighted survey samples;
8417 variances by Taylor series linearisation or replicate weights;
8418 post-stratification, calibration, and raking; two-phase subsampling designs;
8419 graphics; PPS sampling without replacement; principal components, and factor
8420 analysis.")
8421 ;; Either version of the GPL.
8422 (license (list license:gpl2 license:gpl3))))
8423
8424 (define-public r-gee
8425 (package
8426 (name "r-gee")
8427 (version "4.13-20")
8428 (source
8429 (origin
8430 (method url-fetch)
8431 (uri (cran-uri "gee" version))
8432 (sha256
8433 (base32
8434 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
8435 (properties `((upstream-name . "gee")))
8436 (build-system r-build-system)
8437 (native-inputs
8438 `(("gfortran" ,gfortran)))
8439 (home-page "https://cran.r-project.org/web/packages/gee/")
8440 (synopsis "Generalized estimation equation solver")
8441 (description
8442 "This package provides a solver for generalized estimation equations.")
8443 (license license:gpl2)))
8444
8445 (define-public r-tab
8446 (package
8447 (name "r-tab")
8448 (version "4.1.1")
8449 (source
8450 (origin
8451 (method url-fetch)
8452 (uri (cran-uri "tab" version))
8453 (sha256
8454 (base32
8455 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
8456 (properties `((upstream-name . "tab")))
8457 (build-system r-build-system)
8458 (propagated-inputs
8459 `(("r-dplyr" ,r-dplyr)
8460 ("r-gee" ,r-gee)
8461 ("r-knitr" ,r-knitr)
8462 ("r-mass" ,r-mass)
8463 ("r-survey" ,r-survey)
8464 ("r-survival" ,r-survival)
8465 ("r-xtable" ,r-xtable)))
8466 (home-page "https://cran.r-project.org/web/packages/tab/")
8467 (synopsis "Create summary tables for statistical reports")
8468 (description
8469 "This package contains functions for creating various types of summary
8470 tables, e.g. comparing characteristics across levels of a categorical variable
8471 and summarizing fitted generalized linear models, generalized estimating
8472 equations, and Cox proportional hazards models. Functions are available to
8473 handle data from simple random samples as well as complex surveys.")
8474 (license license:gpl3+)))
8475
8476 (define-public r-dvmisc
8477 (package
8478 (name "r-dvmisc")
8479 (version "1.1.4")
8480 (source
8481 (origin
8482 (method url-fetch)
8483 (uri (cran-uri "dvmisc" version))
8484 (sha256
8485 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
8486 (build-system r-build-system)
8487 (propagated-inputs
8488 `(("r-cubature" ,r-cubature)
8489 ("r-data-table" ,r-data-table)
8490 ("r-dplyr" ,r-dplyr)
8491 ("r-ggplot2" ,r-ggplot2)
8492 ("r-mass" ,r-mass)
8493 ("r-mvtnorm" ,r-mvtnorm)
8494 ("r-pracma" ,r-pracma)
8495 ("r-rbenchmark" ,r-rbenchmark)
8496 ("r-rcpp" ,r-rcpp)
8497 ("r-survey" ,r-survey)
8498 ("r-tab" ,r-tab)))
8499 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
8500 (synopsis "Faster computation of common statistics and miscellaneous functions")
8501 (description
8502 "This package implements faster versions of base R functions (e.g. mean, standard
8503 deviation, covariance, weighted mean), mostly written in C++, along with
8504 miscellaneous functions for various purposes (e.g. create the histogram with
8505 fitted probability density function or probability mass function curve, create
8506 the body mass index groups, assess the linearity assumption in logistic
8507 regression).")
8508 (license license:gpl2)))
8509
8510 (define-public r-accelerometry
8511 (package
8512 (name "r-accelerometry")
8513 (version "3.1.2")
8514 (source
8515 (origin
8516 (method url-fetch)
8517 (uri (cran-uri "accelerometry" version))
8518 (sha256
8519 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
8520 (build-system r-build-system)
8521 (propagated-inputs
8522 `(("r-dvmisc" ,r-dvmisc)
8523 ("r-rcpp" ,r-rcpp)))
8524 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
8525 (synopsis "Functions for processing accelerometer data")
8526 (description
8527 "This package provides a collection of functions that perform operations on
8528 time-series accelerometer data, such as identify the non-wear time, flag minutes
8529 that are part of an activity bout, and find the maximum 10-minute average count
8530 value. The functions are generally very flexible, allowing for a variety of
8531 algorithms to be implemented.")
8532 (license license:gpl3)))
8533
8534 (define-public r-absim
8535 (package
8536 (name "r-absim")
8537 (version "0.2.6")
8538 (source
8539 (origin
8540 (method url-fetch)
8541 (uri (cran-uri "AbSim" version))
8542 (sha256
8543 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
8544 (properties `((upstream-name . "AbSim")))
8545 (build-system r-build-system)
8546 (propagated-inputs
8547 `(("r-ape" ,r-ape)
8548 ("r-powerlaw" ,r-powerlaw)))
8549 (home-page "https://cran.r-project.org/web/packages/AbSim/")
8550 (synopsis "Time resolved simulations of antibody repertoires")
8551 (description
8552 "This package provides simulation methods for the evolution of antibody repertoires.
8553 The heavy and light chain variable region of both human and C57BL/6 mice can
8554 be simulated in a time-dependent fashion. Both single lineages using one set of
8555 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
8556 with an initial V-D-J recombination event, starting the first phylogenetic tree.
8557 Upon completion, the main loop of the algorithm begins, with each iteration
8558 representing one simulated time step. Various mutation events are possible at
8559 each time step, contributing to a diverse final repertoire.")
8560 (license license:gpl2)))
8561
8562 (define-public r-quic
8563 (package
8564 (name "r-quic")
8565 (version "1.1")
8566 (source
8567 (origin
8568 (method url-fetch)
8569 (uri (cran-uri "QUIC" version))
8570 (sha256
8571 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
8572 (properties `((upstream-name . "QUIC")))
8573 (build-system r-build-system)
8574 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
8575 (synopsis "Regularized sparse inverse covariance matrix estimation")
8576 (description
8577 "This package implements the regularized Gaussian maximum likelihood
8578 estimation of the inverse of a covariance matrix. It uses Newton's method and
8579 coordinate descent to solve the regularized inverse covariance matrix
8580 estimation problem.")
8581 ;; The project home page states that the release is under GPLv3 or later.
8582 ;; The CRAN page only says GPL-3.
8583 (license license:gpl3+)))
8584
8585 (define-public r-abundant
8586 (package
8587 (name "r-abundant")
8588 (version "1.1")
8589 (source
8590 (origin
8591 (method url-fetch)
8592 (uri (cran-uri "abundant" version))
8593 (sha256
8594 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
8595 (build-system r-build-system)
8596 (propagated-inputs
8597 `(("r-quic" ,r-quic)))
8598 (home-page "https://cran.r-project.org/web/packages/abundant/")
8599 (synopsis "Abundant regression and high-dimensional principal fitted components")
8600 (description
8601 "This package provides tools to fit and predict with the high-dimensional
8602 principal fitted components model. This model is described by Cook, Forzani,
8603 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
8604 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
8605 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
8606 (license license:gpl2+)))
8607
8608 (define-public r-ac3net
8609 (package
8610 (name "r-ac3net")
8611 (version "1.2.2")
8612 (source
8613 (origin
8614 (method url-fetch)
8615 (uri (cran-uri "Ac3net" version))
8616 (sha256
8617 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
8618 (properties `((upstream-name . "Ac3net")))
8619 (build-system r-build-system)
8620 (propagated-inputs
8621 `(("r-data-table" ,r-data-table)))
8622 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
8623 (synopsis "Inferring directional conservative causal core gene networks")
8624 (description "This package infers directional Conservative causal core
8625 (gene) networks (C3NET). This is a version of the algorithm C3NET with
8626 directional network.")
8627 (license license:gpl3+)))
8628
8629 (define-public r-aca
8630 (package
8631 (name "r-aca")
8632 (version "1.1")
8633 (source
8634 (origin
8635 (method url-fetch)
8636 (uri (cran-uri "ACA" version))
8637 (sha256
8638 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
8639 (properties `((upstream-name . "ACA")))
8640 (build-system r-build-system)
8641 (home-page "https://cran.r-project.org/web/packages/ACA/")
8642 (synopsis "Abrupt change-point or aberration detection in point series")
8643 (description
8644 "This package offers an interactive function for the detection of breakpoints in
8645 series.")
8646 ;; Any version of the GPL
8647 (license (list license:gpl2+ license:gpl3+))))
8648
8649 (define-public r-acceptancesampling
8650 (package
8651 (name "r-acceptancesampling")
8652 (version "1.0-6")
8653 (source
8654 (origin
8655 (method url-fetch)
8656 (uri (cran-uri "AcceptanceSampling" version))
8657 (sha256
8658 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
8659 (properties
8660 `((upstream-name . "AcceptanceSampling")))
8661 (build-system r-build-system)
8662 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
8663 (synopsis "Creation and evaluation of acceptance sampling plans")
8664 (description
8665 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
8666 acceptance sampling plans. Acceptance sampling is a methodology commonly used
8667 in quality control and improvement. International standards of acceptance
8668 sampling provide sampling plans for specific circumstances. The aim of this
8669 package is to provide an easy-to-use interface to visualize single, double or
8670 multiple sampling plans. In addition, methods have been provided to enable the
8671 user to assess sampling plans against pre-specified levels of performance, as
8672 measured by the probability of acceptance for a given level of quality in the
8673 lot.")
8674 (license license:gpl3+)))
8675
8676 (define-public r-acclma
8677 (package
8678 (name "r-acclma")
8679 (version "1.0")
8680 (source
8681 (origin
8682 (method url-fetch)
8683 (uri (cran-uri "ACCLMA" version))
8684 (sha256
8685 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
8686 (properties `((upstream-name . "ACCLMA")))
8687 (build-system r-build-system)
8688 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
8689 (synopsis "ACC & LMA graph plotting")
8690 (description
8691 "This package contains a function that imports data from a @acronym{CSV,
8692 Comma-Separated Values} file, or uses manually entered data from the format (x,
8693 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
8694 Curve} vs @acronym{LOI, Line of Independence} graph and
8695 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
8696 function is @code{plotLMA} (source file, header) that takes a data set and plots the
8697 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
8698 string) was passed, a manual data entry window is opened. The header parameter
8699 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
8700 a header row or not. The dataset should contain only one independent variable
8701 (x) and one dependent variable (y) and can contain a weight for each
8702 observation.")
8703 (license license:gpl2)))
8704
8705 (define-public r-aspi
8706 (package
8707 (name "r-aspi")
8708 (version "0.2.0")
8709 (source
8710 (origin
8711 (method url-fetch)
8712 (uri (cran-uri "aspi" version))
8713 (sha256
8714 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
8715 (build-system r-build-system)
8716 (home-page
8717 "https://cran.r-project.org/web/packages/aspi/")
8718 (synopsis
8719 "Analysis of symmetry of parasitic infections")
8720 (description
8721 "This package provides tools for the analysis and visualization of bilateral
8722 asymmetry in parasitic infections.")
8723 (license license:gpl3+)))
8724
8725 (define-public r-sandwich
8726 (package
8727 (name "r-sandwich")
8728 (version "2.5-1")
8729 (source
8730 (origin
8731 (method url-fetch)
8732 (uri (cran-uri "sandwich" version))
8733 (sha256
8734 (base32
8735 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8736 (build-system r-build-system)
8737 (propagated-inputs
8738 `(("r-zoo" ,r-zoo)))
8739 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8740 (synopsis "Robust Covariance Matrix Estimators")
8741 (description
8742 "This package provides model-robust standard error estimators for
8743 cross-sectional, time series, clustered, panel, and longitudinal data.")
8744 ;; Either version of the license.
8745 (license (list license:gpl2 license:gpl3))))
8746
8747 (define-public r-th-data
8748 (package
8749 (name "r-th-data")
8750 (version "1.0-10")
8751 (source
8752 (origin
8753 (method url-fetch)
8754 (uri (cran-uri "TH.data" version))
8755 (sha256
8756 (base32
8757 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8758 (properties `((upstream-name . "TH.data")))
8759 (build-system r-build-system)
8760 (propagated-inputs
8761 `(("r-mass" ,r-mass)
8762 ("r-survival" ,r-survival)))
8763 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8764 (synopsis "Shared data sets")
8765 (description
8766 "This package contains supporting data sets that are used in other
8767 packages maintained by Torsten Hothorn.")
8768 (license license:gpl3)))
8769
8770 (define-public r-multcomp
8771 (package
8772 (name "r-multcomp")
8773 (version "1.4-13")
8774 (source
8775 (origin
8776 (method url-fetch)
8777 (uri (cran-uri "multcomp" version))
8778 (sha256
8779 (base32
8780 "1nszi22rcc551yc75h9cdfkdqsxw1rz30vadazmpyzihp1bh63yk"))))
8781 (build-system r-build-system)
8782 (propagated-inputs
8783 `(("r-codetools" ,r-codetools)
8784 ("r-mvtnorm" ,r-mvtnorm)
8785 ("r-sandwich" ,r-sandwich)
8786 ("r-survival" ,r-survival)
8787 ("r-th-data" ,r-th-data)))
8788 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8789 (synopsis "Simultaneous inference in general parametric models")
8790 (description
8791 "Simultaneous tests and confidence intervals for general linear
8792 hypotheses in parametric models, including linear, generalized linear, linear
8793 mixed effects, and survival models. The package includes demos reproducing
8794 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8795 Hothorn, Westfall, 2010, CRC Press).")
8796 (license license:gpl2)))
8797
8798 (define-public r-emmeans
8799 (package
8800 (name "r-emmeans")
8801 (version "1.5.0")
8802 (source
8803 (origin
8804 (method url-fetch)
8805 (uri (cran-uri "emmeans" version))
8806 (sha256
8807 (base32
8808 "09nap4aazpbsswqzk0d4kjngwd8sib222s31yd08sd1sqw432c6k"))))
8809 (build-system r-build-system)
8810 (propagated-inputs
8811 `(("r-estimability" ,r-estimability)
8812 ("r-mvtnorm" ,r-mvtnorm)
8813 ("r-numderiv" ,r-numderiv)
8814 ("r-plyr" ,r-plyr)
8815 ("r-xtable" ,r-xtable)))
8816 (native-inputs
8817 `(("r-knitr" ,r-knitr)))
8818 (home-page "https://github.com/rvlenth/emmeans")
8819 (synopsis "Estimated marginal means, aka least-squares means")
8820 (description
8821 "This package provides tools to obtain @dfn{estimated marginal
8822 means} (EMMs) for many linear, generalized linear, and mixed models. It can
8823 be used to compute contrasts or linear functions of EMMs, trends, and
8824 comparisons of slopes.")
8825 ;; Either version of the license.
8826 (license (list license:gpl2 license:gpl3))))
8827
8828 (define-public r-pwr
8829 (package
8830 (name "r-pwr")
8831 (version "1.3-0")
8832 (source
8833 (origin
8834 (method url-fetch)
8835 (uri (cran-uri "pwr" version))
8836 (sha256
8837 (base32
8838 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
8839 (build-system r-build-system)
8840 (native-inputs
8841 `(("r-knitr" ,r-knitr)))
8842 (home-page "https://github.com/heliosdrm/pwr")
8843 (synopsis "Basic functions for power analysis")
8844 (description
8845 "This package provides power analysis functions along the lines of
8846 Cohen (1988).")
8847 (license license:gpl3+)))
8848
8849 (define-public r-libcoin
8850 (package
8851 (name "r-libcoin")
8852 (version "1.0-6")
8853 (source
8854 (origin
8855 (method url-fetch)
8856 (uri (cran-uri "libcoin" version))
8857 (sha256
8858 (base32 "0njfdbz4mkyasxm80p0fb0qibvzz7kdzddn8ybj2k6y8bx0w3bs8"))))
8859 (build-system r-build-system)
8860 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8861 (home-page "https://cran.r-project.org/web/packages/libcoin")
8862 (synopsis "Linear test statistics for permutation inference")
8863 (description
8864 "This package provides basic infrastructure for linear test statistics
8865 and permutation inference in the framework of Strasser and Weber (1999).")
8866 (license license:gpl2)))
8867
8868 (define-public r-coin
8869 (package
8870 (name "r-coin")
8871 (version "1.3-1")
8872 (source
8873 (origin
8874 (method url-fetch)
8875 (uri (cran-uri "coin" version))
8876 (sha256
8877 (base32
8878 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
8879 (build-system r-build-system)
8880 (propagated-inputs
8881 `(("r-libcoin" ,r-libcoin)
8882 ("r-matrixstats" ,r-matrixstats)
8883 ("r-modeltools" ,r-modeltools)
8884 ("r-multcomp" ,r-multcomp)
8885 ("r-mvtnorm" ,r-mvtnorm)
8886 ("r-survival" ,r-survival)))
8887 (home-page "http://coin.r-forge.r-project.org")
8888 (synopsis "Conditional inference procedures in a permutation test framework")
8889 (description
8890 "This package provides conditional inference procedures for the general
8891 independence problem including two-sample, K-sample (non-parametric ANOVA),
8892 correlation, censored, ordered and multivariate problems.")
8893 (license license:gpl2)))
8894
8895 (define-public r-bayesplot
8896 (package
8897 (name "r-bayesplot")
8898 (version "1.7.2")
8899 (source
8900 (origin
8901 (method url-fetch)
8902 (uri (cran-uri "bayesplot" version))
8903 (sha256
8904 (base32
8905 "0aqy4bfjq1fmds0vpacsmqih528cp8wk4v4w0balzkph6zqzpwcl"))))
8906 (build-system r-build-system)
8907 (inputs
8908 `(("pandoc" ,pandoc)
8909 ("pandoc-citeproc" ,pandoc-citeproc)))
8910 (native-inputs
8911 `(("r-knitr" ,r-knitr)))
8912 (propagated-inputs
8913 `(("r-dplyr" ,r-dplyr)
8914 ("r-ggplot2" ,r-ggplot2)
8915 ("r-ggridges" ,r-ggridges)
8916 ("r-glue" ,r-glue)
8917 ("r-reshape2" ,r-reshape2)
8918 ("r-rlang" ,r-rlang)
8919 ("r-tibble" ,r-tibble)
8920 ("r-tidyselect" ,r-tidyselect)))
8921 (home-page "https://mc-stan.org/bayesplot")
8922 (synopsis "Plotting for Bayesian models")
8923 (description
8924 "This package provides plotting functions for posterior analysis, model
8925 checking, and MCMC diagnostics. The package is designed not only to provide
8926 convenient functionality for users, but also a common set of functions that
8927 can be easily used by developers working on a variety of R packages for
8928 Bayesian modeling.")
8929 (license license:gpl3+)))
8930
8931 (define-public r-tmb
8932 (package
8933 (name "r-tmb")
8934 (version "1.7.18")
8935 (source
8936 (origin
8937 (method url-fetch)
8938 (uri (cran-uri "TMB" version))
8939 (sha256
8940 (base32
8941 "0dbps92sni9rnynj31z9zhg6l0vbczxhzlw7gnhpxjlzfnsglp3y"))))
8942 (properties `((upstream-name . "TMB")))
8943 (build-system r-build-system)
8944 (propagated-inputs
8945 `(("r-matrix" ,r-matrix)
8946 ("r-rcppeigen" ,r-rcppeigen)))
8947 (home-page "http://tmb-project.org")
8948 (synopsis "Template model builder: a general random effect tool")
8949 (description
8950 "With this tool, a user should be able to quickly implement complex
8951 random effect models through simple C++ templates. The package combines
8952 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8953 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8954 from R) to obtain an efficient implementation of the applied Laplace
8955 approximation with exact derivatives. Key features are: Automatic sparseness
8956 detection, parallelism through BLAS and parallel user templates.")
8957 (license license:gpl2)))
8958
8959 (define-public r-sjstats
8960 (package
8961 (name "r-sjstats")
8962 (version "0.18.0")
8963 (source
8964 (origin
8965 (method url-fetch)
8966 (uri (cran-uri "sjstats" version))
8967 (sha256
8968 (base32 "17b1fcrhgjw66qa8zk2jj1bvz3vp5bnjn3p4y1wsg5ng5nxq8jz0"))))
8969 (build-system r-build-system)
8970 (propagated-inputs
8971 `(("r-bayestestr" ,r-bayestestr)
8972 ("r-broom" ,r-broom)
8973 ("r-dplyr" ,r-dplyr)
8974 ("r-effectsize" ,r-effectsize)
8975 ("r-emmeans" ,r-emmeans)
8976 ("r-insight" ,r-insight)
8977 ("r-lme4" ,r-lme4)
8978 ("r-magrittr" ,r-magrittr)
8979 ("r-mass" ,r-mass)
8980 ("r-modelr" ,r-modelr)
8981 ("r-parameters" ,r-parameters)
8982 ("r-performance" ,r-performance)
8983 ("r-purrr" ,r-purrr)
8984 ("r-rlang" ,r-rlang)
8985 ("r-sjlabelled" ,r-sjlabelled)
8986 ("r-sjmisc" ,r-sjmisc)
8987 ("r-tidyr" ,r-tidyr)))
8988 (home-page "https://github.com/strengejacke/sjstats")
8989 (synopsis "Functions for common statistical computations")
8990 (description
8991 "This package provides a collection of convenient functions for common
8992 statistical computations, which are not directly provided by R's @code{base}
8993 or @code{stats} packages. This package aims at providing, first, shortcuts
8994 for statistical measures, which otherwise could only be calculated with
8995 additional effort. Second, these shortcut functions are generic, and can be
8996 applied not only to vectors, but also to other objects as well. The focus of
8997 most functions lies on summary statistics or fit measures for regression
8998 models, including generalized linear models, mixed effects models and Bayesian
8999 models.")
9000 (license license:gpl3)))
9001
9002 (define-public r-glmmtmb
9003 (package
9004 (name "r-glmmtmb")
9005 (version "1.0.2.1")
9006 (source
9007 (origin
9008 (method url-fetch)
9009 (uri (cran-uri "glmmTMB" version))
9010 (sha256
9011 (base32
9012 "1a35hxcxz1cdm3zd5s7fyjaw2qs00hkacgr7h9130amygc1262ab"))))
9013 (properties `((upstream-name . "glmmTMB")))
9014 (build-system r-build-system)
9015 (propagated-inputs
9016 `(("r-lme4" ,r-lme4)
9017 ("r-matrix" ,r-matrix)
9018 ("r-nlme" ,r-nlme)
9019 ("r-rcppeigen" ,r-rcppeigen)
9020 ("r-tmb" ,r-tmb)))
9021 (native-inputs
9022 `(("r-knitr" ,r-knitr))) ; for vignettes
9023 (home-page "https://github.com/glmmTMB")
9024 (synopsis "Generalized linear mixed models")
9025 (description
9026 "Fit linear and generalized linear mixed models with various extensions,
9027 including zero-inflation. The models are fitted using maximum likelihood
9028 estimation via the Template Model Builder. Random effects are assumed to be
9029 Gaussian on the scale of the linear predictor and are integrated out using the
9030 Laplace approximation. Gradients are calculated using automatic
9031 differentiation.")
9032 (license license:agpl3+)))
9033
9034 (define-public r-bayestestr
9035 (package
9036 (name "r-bayestestr")
9037 (version "0.7.2")
9038 (source
9039 (origin
9040 (method url-fetch)
9041 (uri (cran-uri "bayestestR" version))
9042 (sha256
9043 (base32
9044 "1c82bpxg2ha93rna4sy9pdp422dnk6b378dcg8x04clfg0y0lsi2"))))
9045 (properties `((upstream-name . "bayestestR")))
9046 (build-system r-build-system)
9047 (propagated-inputs
9048 `(("r-insight" ,r-insight)))
9049 (native-inputs
9050 `(("r-knitr" ,r-knitr)))
9051 (home-page "https://github.com/easystats/bayestestR")
9052 (synopsis "Describe Bayesian models and posterior distributions")
9053 (description
9054 "This package provides utilities to understand and describe posterior
9055 distributions and Bayesian models. It includes point-estimates such as
9056 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
9057 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
9058 ROPE percentage and pd).")
9059 (license license:gpl3)))
9060
9061 (define-public r-performance
9062 (package
9063 (name "r-performance")
9064 (version "0.4.8")
9065 (source
9066 (origin
9067 (method url-fetch)
9068 (uri (cran-uri "performance" version))
9069 (sha256
9070 (base32
9071 "1gl3m1pw0wrj9m9cgd0vzbj9swfwjg4aa40gpliplb9y7dcmgi4l"))))
9072 (build-system r-build-system)
9073 (propagated-inputs
9074 `(("r-bayestestr" ,r-bayestestr)
9075 ("r-insight" ,r-insight)))
9076 (home-page "https://easystats.github.io/performance/")
9077 (synopsis "Assessment of regression models performance")
9078 (description
9079 "This package provides utilities for computing measures to assess model
9080 quality, which are not directly provided by R's @code{base} or @code{stats}
9081 packages. These include e.g. measures like r-squared, intraclass correlation
9082 coefficient, root mean squared error or functions to check models for
9083 overdispersion, singularity or zero-inflation and more. Functions apply to a
9084 large variety of regression models, including generalized linear models, mixed
9085 effects models and Bayesian models.")
9086 (license license:gpl3)))
9087
9088 (define-public r-ggeffects
9089 (package
9090 (name "r-ggeffects")
9091 (version "0.15.1")
9092 (source
9093 (origin
9094 (method url-fetch)
9095 (uri (cran-uri "ggeffects" version))
9096 (sha256
9097 (base32
9098 "12z58casz0yl1w7nfs64bz4miz0mmc300ap3rz4d2cc4z0rg0r47"))))
9099 (build-system r-build-system)
9100 (propagated-inputs
9101 `(("r-insight" ,r-insight)
9102 ("r-mass" ,r-mass)
9103 ("r-sjlabelled" ,r-sjlabelled)))
9104 (native-inputs
9105 `(("r-knitr" ,r-knitr)))
9106 (home-page "https://github.com/strengejacke/ggeffects")
9107 (synopsis "Create tidy data frames of marginal effects for ggplot")
9108 (description
9109 "This package provides tools to compute marginal effects from statistical
9110 models and return the result as tidy data frames. These data frames are ready
9111 to use with the @code{ggplot2} package. Marginal effects can be calculated
9112 for many different models. Interaction terms, splines and polynomial terms
9113 are also supported. The two main functions are @code{ggpredict()} and
9114 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
9115 results using @code{ggplot2}.")
9116 (license license:gpl3)))
9117
9118 (define-public r-effectsize
9119 (package
9120 (name "r-effectsize")
9121 (version "0.3.2")
9122 (source
9123 (origin
9124 (method url-fetch)
9125 (uri (cran-uri "effectsize" version))
9126 (sha256
9127 (base32
9128 "0h9f260gb8707pcssf8dq7dakpq1ggkxr5kpbrbl8sn8h3qbvws9"))))
9129 (properties `((upstream-name . "effectsize")))
9130 (build-system r-build-system)
9131 (propagated-inputs
9132 `(("r-bayestestr" ,r-bayestestr)
9133 ("r-insight" ,r-insight)
9134 ("r-parameters" ,r-parameters)))
9135 (native-inputs
9136 `(("r-knitr" ,r-knitr)))
9137 (home-page "https://github.com/easystats/effectsize")
9138 (synopsis "Indices of effect size and standardized parameters")
9139 (description
9140 "This package provides utilities to work with indices of effect size and
9141 standardized parameters for a wide variety of models, allowing computation and
9142 conversion of indices such as Cohen's d, r, odds, etc.")
9143 (license license:gpl3)))
9144
9145 (define-public r-sjplot
9146 (package
9147 (name "r-sjplot")
9148 (version "2.8.4")
9149 (source
9150 (origin
9151 (method url-fetch)
9152 (uri (cran-uri "sjPlot" version))
9153 (sha256
9154 (base32 "0b7k0mshkk8k26w11xbxkb5v0klhq279zn2xdz83cn8k791xkqyd"))))
9155 (properties `((upstream-name . "sjPlot")))
9156 (build-system r-build-system)
9157 (propagated-inputs
9158 `(("r-bayestestr" ,r-bayestestr)
9159 ("r-dplyr" ,r-dplyr)
9160 ("r-effectsize" ,r-effectsize)
9161 ("r-ggeffects" ,r-ggeffects)
9162 ("r-ggplot2" ,r-ggplot2)
9163 ("r-insight" ,r-insight)
9164 ("r-knitr" ,r-knitr)
9165 ("r-mass" ,r-mass)
9166 ("r-parameters" ,r-parameters)
9167 ("r-performance" ,r-performance)
9168 ("r-purrr" ,r-purrr)
9169 ("r-rlang" ,r-rlang)
9170 ("r-scales" ,r-scales)
9171 ("r-sjlabelled" ,r-sjlabelled)
9172 ("r-sjmisc" ,r-sjmisc)
9173 ("r-sjstats" ,r-sjstats)
9174 ("r-tidyr" ,r-tidyr)))
9175 (native-inputs
9176 `(("r-knitr" ,r-knitr)))
9177 (home-page "https://strengejacke.github.io/sjPlot/")
9178 (synopsis "Data visualization for statistics in social science")
9179 (description
9180 "This package represents a collection of plotting and table output
9181 functions for data visualization. Results of various statistical
9182 analyses (that are commonly used in social sciences) can be visualized using
9183 this package, including simple and cross tabulated frequencies, histograms,
9184 box plots, (generalized) linear models, mixed effects models, principal
9185 component analysis and correlation matrices, cluster analyses, scatter plots,
9186 stacked scales, effects plots of regression models (including interaction
9187 terms) and much more. This package supports labelled data.")
9188 (license license:gpl3)))
9189
9190 (define-public r-ini
9191 (package
9192 (name "r-ini")
9193 (version "0.3.1")
9194 (source
9195 (origin
9196 (method url-fetch)
9197 (uri (cran-uri "ini" version))
9198 (sha256
9199 (base32
9200 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
9201 (build-system r-build-system)
9202 (home-page "https://github.com/dvdscripter/ini")
9203 (synopsis "Read and write configuration files")
9204 (description
9205 "This package provides tools to parse simple @code{.ini} configuration
9206 files to an structured list. Users can manipulate this resulting list with
9207 @code{lapply()} functions. This same structured list can be used to write
9208 back to file after modifications.")
9209 (license license:gpl3)))
9210
9211 (define-public r-gh
9212 (package
9213 (name "r-gh")
9214 (version "1.1.0")
9215 (source
9216 (origin
9217 (method url-fetch)
9218 (uri (cran-uri "gh" version))
9219 (sha256
9220 (base32
9221 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
9222 (build-system r-build-system)
9223 (propagated-inputs
9224 `(("r-cli" ,r-cli)
9225 ("r-httr" ,r-httr)
9226 ("r-ini" ,r-ini)
9227 ("r-jsonlite" ,r-jsonlite)))
9228 (home-page "https://github.com/r-lib/gh#readme")
9229 (synopsis "Access the GitHub API via R")
9230 (description
9231 "This package provides a minimal R client to access the GitHub API.")
9232 (license license:expat)))
9233
9234 (define-public r-fs
9235 (package
9236 (name "r-fs")
9237 (version "1.5.0")
9238 (source
9239 (origin
9240 (method url-fetch)
9241 (uri (cran-uri "fs" version))
9242 (sha256
9243 (base32
9244 "15rqc3ljmcmgfvadj1j1kq7kvibagxic8sgplhlcdqqxax9idprn"))))
9245 (build-system r-build-system)
9246 (native-inputs
9247 `(("r-knitr" ,r-knitr)))
9248 (home-page "https://fs.r-lib.org")
9249 (synopsis "Cross-platform file system operations based on libuv")
9250 (description
9251 "This package provides a cross-platform interface to file system
9252 operations, built on top of the libuv C library.")
9253 (license license:gpl3)))
9254
9255 (define-public r-clisymbols
9256 (package
9257 (name "r-clisymbols")
9258 (version "1.2.0")
9259 (source
9260 (origin
9261 (method url-fetch)
9262 (uri (cran-uri "clisymbols" version))
9263 (sha256
9264 (base32
9265 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
9266 (build-system r-build-system)
9267 (home-page "https://github.com/gaborcsardi/clisymbols")
9268 (synopsis "Unicode symbols at the R prompt")
9269 (description
9270 "This package provides a small subset of Unicode symbols, that are useful
9271 when building command line applications. They fall back to alternatives on
9272 terminals that do not support Unicode.")
9273 (license license:expat)))
9274
9275 (define-public r-usethis
9276 (package
9277 (name "r-usethis")
9278 (version "1.6.1")
9279 (source
9280 (origin
9281 (method url-fetch)
9282 (uri (cran-uri "usethis" version))
9283 (sha256
9284 (base32
9285 "0vwxsnq615mwc706a4a71gyy0hmvnllbh249gzm7vl3ym5cr0cv0"))))
9286 (build-system r-build-system)
9287 (propagated-inputs
9288 `(("r-cli" ,r-cli)
9289 ("r-clipr" ,r-clipr)
9290 ("r-crayon" ,r-crayon)
9291 ("r-curl" ,r-curl)
9292 ("r-desc" ,r-desc)
9293 ("r-fs" ,r-fs)
9294 ("r-gh" ,r-gh)
9295 ("r-git2r" ,r-git2r)
9296 ("r-glue" ,r-glue)
9297 ("r-purrr" ,r-purrr)
9298 ("r-rematch2" ,r-rematch2)
9299 ("r-rlang" ,r-rlang)
9300 ("r-rprojroot" ,r-rprojroot)
9301 ("r-rstudioapi" ,r-rstudioapi)
9302 ("r-whisker" ,r-whisker)
9303 ("r-withr" ,r-withr)
9304 ("r-yaml" ,r-yaml)))
9305 (home-page "https://github.com/r-lib/usethis")
9306 (synopsis "Automate R package and project setup")
9307 (description
9308 "This package helps you to automate R package and project setup tasks
9309 that are otherwise performed manually. This includes setting up unit testing,
9310 test coverage, continuous integration, Git, GitHub integration, licenses,
9311 Rcpp, RStudio projects, and more.")
9312 (license license:gpl3)))
9313
9314 (define-public r-sessioninfo
9315 (package
9316 (name "r-sessioninfo")
9317 (version "1.1.1")
9318 (source
9319 (origin
9320 (method url-fetch)
9321 (uri (cran-uri "sessioninfo" version))
9322 (sha256
9323 (base32
9324 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
9325 (build-system r-build-system)
9326 (propagated-inputs
9327 `(("r-cli" ,r-cli)
9328 ("r-withr" ,r-withr)))
9329 (home-page "https://github.com/r-lib/sessioninfo#readme")
9330 (synopsis "R session information")
9331 (description
9332 "This package provides tools to query and print information about the
9333 current R session. It is similar to @code{utils::sessionInfo()}, but includes
9334 more information about packages, and where they were installed from.")
9335 (license license:gpl2)))
9336
9337 (define-public r-remotes
9338 (package
9339 (name "r-remotes")
9340 (version "2.2.0")
9341 (source
9342 (origin
9343 (method url-fetch)
9344 (uri (cran-uri "remotes" version))
9345 (sha256
9346 (base32
9347 "1f1kdw9j1wald3fs8b3n68x1kljy07j60g3aw1aarx26ikyk9whj"))))
9348 (build-system r-build-system)
9349 (native-inputs
9350 `(("r-knitr" ,r-knitr)))
9351 (home-page "https://github.com/r-lib/remotes#readme")
9352 (synopsis "R package installation from remote repositories")
9353 (description
9354 "Download and install R packages stored in GitHub, BitBucket, or plain
9355 subversion or git repositories. This package is a lightweight replacement of
9356 the @code{install_*} functions in the @code{devtools} package. Indeed most of
9357 the code was copied over from @code{devtools}.")
9358 (license license:gpl2+)))
9359
9360 (define-public r-xopen
9361 (package
9362 (name "r-xopen")
9363 (version "1.0.0")
9364 (source
9365 (origin
9366 (method url-fetch)
9367 (uri (cran-uri "xopen" version))
9368 (sha256
9369 (base32
9370 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
9371 (build-system r-build-system)
9372 (propagated-inputs
9373 `(("r-processx" ,r-processx)))
9374 (home-page "https://github.com/r-lib/xopen#readme")
9375 (synopsis "Open system files, URLs, anything")
9376 (description
9377 "This package provides a cross-platform solution to open files,
9378 directories or URLs with their associated programs.")
9379 (license license:expat)))
9380
9381 (define-public r-rcmdcheck
9382 (package
9383 (name "r-rcmdcheck")
9384 (version "1.3.3")
9385 (source
9386 (origin
9387 (method url-fetch)
9388 (uri (cran-uri "rcmdcheck" version))
9389 (sha256
9390 (base32
9391 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
9392 (build-system r-build-system)
9393 (propagated-inputs
9394 `(("r-callr" ,r-callr)
9395 ("r-cli" ,r-cli)
9396 ("r-crayon" ,r-crayon)
9397 ("r-desc" ,r-desc)
9398 ("r-digest" ,r-digest)
9399 ("r-pkgbuild" ,r-pkgbuild)
9400 ("r-prettyunits" ,r-prettyunits)
9401 ("r-r6" ,r-r6)
9402 ("r-rprojroot" ,r-rprojroot)
9403 ("r-sessioninfo" ,r-sessioninfo)
9404 ("r-withr" ,r-withr)
9405 ("r-xopen" ,r-xopen)))
9406 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
9407 (synopsis "Run R CMD check from R and capture results")
9408 (description
9409 "Run @code{R CMD check} from R programmatically, and capture the results
9410 of the individual checks.")
9411 (license license:expat)))
9412
9413 (define-public r-rapportools
9414 (package
9415 (name "r-rapportools")
9416 (version "1.0")
9417 (source
9418 (origin
9419 (method url-fetch)
9420 (uri (cran-uri "rapportools" version))
9421 (sha256
9422 (base32
9423 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
9424 (build-system r-build-system)
9425 (propagated-inputs
9426 `(("r-pander" ,r-pander)
9427 ("r-plyr" ,r-plyr)
9428 ("r-reshape" ,r-reshape)))
9429 (home-page "https://cran.r-project.org/web/packages/rapportools/")
9430 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
9431 (description
9432 "This package provides helper functions that act as wrappers to more
9433 advanced statistical methods with the advantage of having sane defaults for
9434 quick reporting.")
9435 (license license:agpl3+)))
9436
9437 (define-public r-pander
9438 (package
9439 (name "r-pander")
9440 (version "0.6.3")
9441 (source
9442 (origin
9443 (method url-fetch)
9444 (uri (cran-uri "pander" version))
9445 (sha256
9446 (base32
9447 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
9448 (build-system r-build-system)
9449 (propagated-inputs
9450 `(("r-digest" ,r-digest)
9451 ("r-rcpp" ,r-rcpp)))
9452 (home-page "https://rapporter.github.io/pander")
9453 (synopsis "Render R objects into Pandoc's markdown")
9454 (description
9455 "The main aim of the pander R package is to provide a minimal and easy
9456 tool for rendering R objects into Pandoc's markdown. The package is also
9457 capable of exporting/converting complex Pandoc documents (reports) in various
9458 ways.")
9459 ;; This package is licensed under either the AGPLv3+ or the very rarely
9460 ;; used OSL 3.0.
9461 (license license:agpl3+)))
9462
9463 (define-public r-summarytools
9464 (package
9465 (name "r-summarytools")
9466 (version "0.9.6")
9467 (source
9468 (origin
9469 (method url-fetch)
9470 (uri (cran-uri "summarytools" version))
9471 (sha256
9472 (base32
9473 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
9474 (build-system r-build-system)
9475 (propagated-inputs
9476 `(("r-base64enc" ,r-base64enc)
9477 ("r-checkmate" ,r-checkmate)
9478 ("r-dplyr" ,r-dplyr)
9479 ("r-htmltools" ,r-htmltools)
9480 ("r-lubridate" ,r-lubridate)
9481 ("r-magick" ,r-magick)
9482 ("r-matrixstats" ,r-matrixstats)
9483 ("r-pander" ,r-pander)
9484 ("r-pryr" ,r-pryr)
9485 ("r-rapportools" ,r-rapportools)
9486 ("r-tibble" ,r-tibble)
9487 ("r-tidyr" ,r-tidyr)))
9488 (home-page "https://github.com/dcomtois/summarytools")
9489 (synopsis "Tools to quickly and neatly summarize data")
9490 (description
9491 "This package provides tools for data frame summaries, cross-tabulations,
9492 weight-enabled frequency tables and common univariate statistics in concise
9493 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9494 good point-of-entry for exploring data, both for experienced and new R
9495 users.")
9496 (license license:gpl2)))
9497
9498 (define-public r-lsei
9499 (package
9500 (name "r-lsei")
9501 (version "1.2-0.1")
9502 (source
9503 (origin
9504 (method url-fetch)
9505 (uri (cran-uri "lsei" version))
9506 (sha256
9507 (base32
9508 "1rvzdb33x9ykl5qfwxkps1iylxqzlf1qla3l88420nbq7pxp7m87"))))
9509 (build-system r-build-system)
9510 (native-inputs
9511 `(("gfortran" ,gfortran)))
9512 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9513 (synopsis "Solve regression problems under equality/inequality constraints")
9514 (description
9515 "It contains functions that solve least squares linear regression
9516 problems under linear equality/inequality constraints. Functions for solving
9517 quadratic programming problems are also available, which transform such
9518 problems into least squares ones first.")
9519 (license license:gpl2+)))
9520
9521 (define-public r-npsurv
9522 (package
9523 (name "r-npsurv")
9524 (version "0.4-0.1")
9525 (source
9526 (origin
9527 (method url-fetch)
9528 (uri (cran-uri "npsurv" version))
9529 (sha256
9530 (base32
9531 "09nxibp93bp9v8qcx0gnazk7fkvyh0fq9vlgxl639m6ndr7fwp88"))))
9532 (build-system r-build-system)
9533 (propagated-inputs
9534 `(("r-lsei" ,r-lsei)))
9535 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9536 (synopsis "Nonparametric survival analysis")
9537 (description
9538 "This package contains functions for non-parametric survival analysis of
9539 exact and interval-censored observations.")
9540 (license license:gpl2+)))
9541
9542 (define-public r-clusteval
9543 (package
9544 (name "r-clusteval")
9545 (version "0.1")
9546 (source
9547 (origin
9548 (method url-fetch)
9549 (uri (cran-uri "clusteval" version))
9550 (sha256
9551 (base32
9552 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9553 (build-system r-build-system)
9554 (propagated-inputs
9555 `(("r-mvtnorm" ,r-mvtnorm)
9556 ("r-rcpp" ,r-rcpp)))
9557 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9558 (synopsis "Evaluation of clustering algorithms")
9559 (description
9560 "This R package provides a suite of tools to evaluate clustering
9561 algorithms, clusterings, and individual clusters.")
9562 (license license:expat)))
9563
9564 (define-public r-tweedie
9565 (package
9566 (name "r-tweedie")
9567 (version "2.3.2")
9568 (source
9569 (origin
9570 (method url-fetch)
9571 (uri (cran-uri "tweedie" version))
9572 (sha256
9573 (base32
9574 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9575 (build-system r-build-system)
9576 (native-inputs `(("gfortran" ,gfortran)))
9577 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9578 (synopsis "Evaluation of Tweedie exponential family models")
9579 (description
9580 "Maximum likelihood computations for Tweedie families, including the
9581 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9582 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9583 and related methods.")
9584 (license license:gpl2+)))
9585
9586 (define-public r-rcppgsl
9587 (package
9588 (name "r-rcppgsl")
9589 (version "0.3.8")
9590 (source
9591 (origin
9592 (method url-fetch)
9593 (uri (cran-uri "RcppGSL" version))
9594 (sha256
9595 (base32 "17nlayy6gvwb3v6l5aiqm84i75yf4dfi3zclxrgpqwf3j9v09yvz"))))
9596 (properties `((upstream-name . "RcppGSL")))
9597 (build-system r-build-system)
9598 (propagated-inputs
9599 `(("r-rcpp" ,r-rcpp)
9600 ("gsl" ,gsl)))
9601 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9602 (synopsis "Rcpp integration for GSL vectors and matrices")
9603 (description
9604 "The GNU Scientific Library (or GSL) is a collection of numerical
9605 routines for scientific computing. It is particularly useful for C and C++
9606 programs as it provides a standard C interface to a wide range of mathematical
9607 routines. There are over 1000 functions in total with an extensive test
9608 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9609 structures and R using concepts from Rcpp which is itself a package that eases
9610 the interfaces between R and C++.")
9611 (license license:gpl2+)))
9612
9613 (define-public r-mvabund
9614 (package
9615 (name "r-mvabund")
9616 (version "4.1.3")
9617 (source
9618 (origin
9619 (method url-fetch)
9620 (uri (cran-uri "mvabund" version))
9621 (sha256
9622 (base32
9623 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9624 (build-system r-build-system)
9625 (propagated-inputs
9626 `(("r-mass" ,r-mass)
9627 ("r-rcpp" ,r-rcpp)
9628 ("r-rcppgsl" ,r-rcppgsl)
9629 ("r-statmod" ,r-statmod)
9630 ("r-tweedie" ,r-tweedie)))
9631 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9632 (synopsis "Statistical methods for analysing multivariate abundance data")
9633 (description
9634 "This package provides a set of tools for displaying, modeling and
9635 analysing multivariate abundance data in community ecology.")
9636 (license license:lgpl2.1+)))
9637
9638 (define-public r-afex
9639 (package
9640 (name "r-afex")
9641 (version "0.27-2")
9642 (source
9643 (origin
9644 (method url-fetch)
9645 (uri (cran-uri "afex" version))
9646 (sha256
9647 (base32
9648 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9649 (build-system r-build-system)
9650 (propagated-inputs
9651 `(("r-car" ,r-car)
9652 ("r-lme4" ,r-lme4)
9653 ("r-lmertest" ,r-lmertest)
9654 ("r-pbkrtest" ,r-pbkrtest)
9655 ("r-reshape2" ,r-reshape2)))
9656 (native-inputs
9657 `(("r-knitr" ,r-knitr)))
9658 (home-page "https://afex.singmann.science/")
9659 (synopsis "Analysis of factorial experiments")
9660 (description
9661 "This package provides convenience functions for analyzing factorial
9662 experiments using ANOVA or mixed models.")
9663 (license license:gpl2+)))
9664
9665 (define-public r-lmertest
9666 (package
9667 (name "r-lmertest")
9668 (version "3.1-2")
9669 (source
9670 (origin
9671 (method url-fetch)
9672 (uri (cran-uri "lmerTest" version))
9673 (sha256
9674 (base32
9675 "1qkdxx5sri65zgpb9gw4nkfkdam51kgy4hxclk5c40yk7y3p0n1q"))))
9676 (properties `((upstream-name . "lmerTest")))
9677 (build-system r-build-system)
9678 (propagated-inputs
9679 `(("r-ggplot2" ,r-ggplot2)
9680 ("r-lme4" ,r-lme4)
9681 ("r-mass" ,r-mass)
9682 ("r-numderiv" ,r-numderiv)))
9683 (home-page "https://github.com/runehaubo/lmerTestR")
9684 (synopsis "Tests in linear mixed effects models")
9685 (description
9686 "This package provides p-values in type I, II or III anova and summary
9687 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9688 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9689 package. Model selection methods include step, drop1 and anova-like tables
9690 for random effects (ranova). Methods for Least-Square means (LS-means) and
9691 tests of linear contrasts of fixed effects are also available.")
9692 (license license:gpl2+)))
9693
9694 (define-public r-r2glmm
9695 (package
9696 (name "r-r2glmm")
9697 (version "0.1.2")
9698 (source
9699 (origin
9700 (method url-fetch)
9701 (uri (cran-uri "r2glmm" version))
9702 (sha256
9703 (base32
9704 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9705 (build-system r-build-system)
9706 (propagated-inputs
9707 `(("r-afex" ,r-afex)
9708 ("r-data-table" ,r-data-table)
9709 ("r-dplyr" ,r-dplyr)
9710 ("r-ggplot2" ,r-ggplot2)
9711 ("r-gridextra" ,r-gridextra)
9712 ("r-lmertest" ,r-lmertest)
9713 ("r-mass" ,r-mass)
9714 ("r-matrix" ,r-matrix)
9715 ("r-mgcv" ,r-mgcv)
9716 ("r-pbkrtest" ,r-pbkrtest)))
9717 (home-page "https://github.com/bcjaeger/r2glmm")
9718 (synopsis "Compute R squared for mixed (multilevel) models")
9719 (description
9720 "This package computes model and semi partial R squared with confidence
9721 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9722 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9723 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9724 al. (2016)).")
9725 (license license:gpl2)))
9726
9727 (define-public r-weights
9728 (package
9729 (name "r-weights")
9730 (version "1.0.1")
9731 (source
9732 (origin
9733 (method url-fetch)
9734 (uri (cran-uri "weights" version))
9735 (sha256
9736 (base32
9737 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9738 (build-system r-build-system)
9739 (propagated-inputs
9740 `(("r-gdata" ,r-gdata)
9741 ("r-hmisc" ,r-hmisc)
9742 ("r-mice" ,r-mice)))
9743 (home-page
9744 "https://cran.r-project.org/web/packages/weights/")
9745 (synopsis "Weighting and weighted statistics")
9746 (description "This package Provides a variety of functions for producing
9747 simple weighted statistics, such as weighted Pearson's correlations, partial
9748 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9749 includes some software for quickly recoding survey data and plotting point
9750 estimates from interaction terms in regressions (and multiply imputed
9751 regressions). NOTE: Weighted partial correlation calculations pulled to
9752 address a bug.")
9753 (license license:gpl2+)))
9754
9755 (define-public r-rcppannoy
9756 (package
9757 (name "r-rcppannoy")
9758 (version "0.0.16")
9759 (source
9760 (origin
9761 (method url-fetch)
9762 (uri (cran-uri "RcppAnnoy" version))
9763 (sha256
9764 (base32
9765 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9766 (properties `((upstream-name . "RcppAnnoy")))
9767 (build-system r-build-system)
9768 (propagated-inputs
9769 `(("r-rcpp" ,r-rcpp)))
9770 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9771 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9772 (description
9773 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9774 for efficient memory usage as well an ability to load from and save to disk.
9775 This package provides an R interface.")
9776 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9777 ;; GPLv2+.
9778 (license (list license:gpl2+ license:asl2.0))))
9779
9780 (define-public r-rcpphnsw
9781 (package
9782 (name "r-rcpphnsw")
9783 (version "0.2.0")
9784 (source
9785 (origin
9786 (method url-fetch)
9787 (uri (cran-uri "RcppHNSW" version))
9788 (sha256
9789 (base32
9790 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9791 (properties `((upstream-name . "RcppHNSW")))
9792 (build-system r-build-system)
9793 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9794 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9795 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9796 (description
9797 "Hnswlib is a C++ library for approximate nearest neighbors. This
9798 package provides a minimal R interface by relying on the Rcpp package.")
9799 ;; hnswlib is released under Version 2.0 of the Apache License.
9800 (license (list license:gpl3 license:asl2.0))))
9801
9802 (define-public r-rcppparallel
9803 (package
9804 (name "r-rcppparallel")
9805 (version "5.0.2")
9806 (source
9807 (origin
9808 (method url-fetch)
9809 (uri (cran-uri "RcppParallel" version))
9810 (sha256
9811 (base32
9812 "10bg4fw38m64dhy543rwq2nnjjc9y24iggk343xslrb3ij8018lc"))))
9813 (properties `((upstream-name . "RcppParallel")))
9814 (build-system r-build-system)
9815 (home-page "https://rcppcore.github.io/RcppParallel/")
9816 (synopsis "Parallel programming tools for Rcpp")
9817 (description
9818 "This package provides high level functions for parallel programming with
9819 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9820 the work of a standard serial @code{for} loop into a parallel one and the
9821 @code{parallelReduce()} function can be used for accumulating aggregates or
9822 other values.")
9823 (license license:gpl2)))
9824
9825 (define-public r-ncdf4
9826 (package
9827 (name "r-ncdf4")
9828 (version "1.17")
9829 (source
9830 (origin
9831 (method url-fetch)
9832 (uri (cran-uri "ncdf4" version))
9833 (sha256
9834 (base32
9835 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9836 (build-system r-build-system)
9837 (inputs
9838 `(("netcdf" ,netcdf)
9839 ("zlib" ,zlib)))
9840 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9841 (synopsis "R interface to Unidata netCDF format data files")
9842 (description
9843 "This package provides a high-level R interface to data files written
9844 using Unidata's netCDF library (version 4 or earlier), which are binary data
9845 files that are portable across platforms and include metadata information in
9846 addition to the data sets. Using this package, netCDF files can be opened and
9847 data sets read in easily. It is also easy to create new netCDF dimensions,
9848 variables, and files, in either version 3 or 4 format, and manipulate existing
9849 netCDF files.")
9850 (license license:gpl3+)))
9851
9852 (define-public r-biocmanager
9853 (package
9854 (name "r-biocmanager")
9855 (version "1.30.10")
9856 (source
9857 (origin
9858 (method url-fetch)
9859 (uri (cran-uri "BiocManager" version))
9860 (sha256
9861 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9862 (properties `((upstream-name . "BiocManager")))
9863 (build-system r-build-system)
9864 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9865 (synopsis "Access the Bioconductor project package repository")
9866 (description
9867 "This package provides a convenient tool to install and update
9868 Bioconductor packages.")
9869 (license license:artistic2.0)))
9870
9871 (define-public r-rgl
9872 (package
9873 (name "r-rgl")
9874 (version "0.100.54")
9875 (source
9876 (origin
9877 (method url-fetch)
9878 (uri (cran-uri "rgl" version))
9879 (sha256
9880 (base32
9881 "1mgs2d8igmcdzzymfwbqdrypmaidd4pra5n5gnhsn9pm6pqzidqp"))))
9882 (build-system r-build-system)
9883 (native-inputs
9884 `(("pkg-config" ,pkg-config)))
9885 (inputs
9886 `(("freetype" ,freetype)
9887 ("libpng" ,libpng)
9888 ("glu" ,glu)
9889 ("libx11" ,libx11)
9890 ("pandoc" ,pandoc)
9891 ("zlib" ,zlib)))
9892 (propagated-inputs
9893 `(("r-crosstalk" ,r-crosstalk)
9894 ("r-htmltools" ,r-htmltools)
9895 ("r-htmlwidgets" ,r-htmlwidgets)
9896 ("r-jsonlite" ,r-jsonlite)
9897 ("r-knitr" ,r-knitr)
9898 ("r-magrittr" ,r-magrittr)
9899 ("r-manipulatewidget" ,r-manipulatewidget)
9900 ("r-shiny" ,r-shiny)))
9901 (home-page "https://r-forge.r-project.org/projects/rgl/")
9902 (synopsis "3D visualization using OpenGL")
9903 (description
9904 "This package provides medium to high level functions for 3D interactive graphics,
9905 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9906 as functions for constructing representations of geometric
9907 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9908 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9909 image formats, including PNG, Postscript, SVG, PGF.")
9910 ;; Any version of the GPL.
9911 (license (list license:gpl2+ license:gpl3+))))
9912
9913 (define-public r-multicool
9914 (package
9915 (name "r-multicool")
9916 (version "0.1-11")
9917 (source
9918 (origin
9919 (method url-fetch)
9920 (uri (cran-uri "multicool" version))
9921 (sha256
9922 (base32
9923 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
9924 (build-system r-build-system)
9925 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9926 (home-page "https://cran.r-project.org/web/packages/multicool/")
9927 (synopsis "Permutations of multisets in cool-lex order")
9928 (description
9929 "This package provides a set of tools to permute multisets without loops
9930 or hash tables and to generate integer partitions. Cool-lex order is similar
9931 to colexicographical order.")
9932 (license license:gpl2)))
9933
9934 (define-public r-misc3d
9935 (package
9936 (name "r-misc3d")
9937 (version "0.8-4")
9938 (source
9939 (origin
9940 (method url-fetch)
9941 (uri (cran-uri "misc3d" version))
9942 (sha256
9943 (base32
9944 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9945 (build-system r-build-system)
9946 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9947 (synopsis "Miscellaneous 3D Plots")
9948 (description
9949 "This package provides a collection of miscellaneous 3d plots, including
9950 isosurfaces.")
9951 ;; Any version of the GPL.
9952 (license (list license:gpl2+ license:gpl3+))))
9953
9954 (define-public r-ks
9955 (package
9956 (name "r-ks")
9957 (version "1.11.7")
9958 (source
9959 (origin
9960 (method url-fetch)
9961 (uri (cran-uri "ks" version))
9962 (sha256
9963 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
9964 (build-system r-build-system)
9965 (propagated-inputs
9966 `(("r-fnn" ,r-fnn)
9967 ("r-kernlab" ,r-kernlab)
9968 ("r-kernsmooth" ,r-kernsmooth)
9969 ("r-matrix" ,r-matrix)
9970 ("r-mclust" ,r-mclust)
9971 ("r-mgcv" ,r-mgcv)
9972 ("r-multicool" ,r-multicool)
9973 ("r-mvtnorm" ,r-mvtnorm)))
9974 (home-page "http://www.mvstat.net/tduong/")
9975 (synopsis "Kernel smoothing")
9976 (description
9977 "This package provides kernel smoothers for univariate and multivariate
9978 data, including density functions, density derivatives, cumulative
9979 distributions, modal clustering, discriminant analysis, and two-sample
9980 hypothesis testing.")
9981 ;; Either version of the GPL.
9982 (license (list license:gpl2 license:gpl3))))
9983
9984 (define-public r-feature
9985 (package
9986 (name "r-feature")
9987 (version "1.2.13")
9988 (source
9989 (origin
9990 (method url-fetch)
9991 (uri (cran-uri "feature" version))
9992 (sha256
9993 (base32
9994 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9995 (build-system r-build-system)
9996 (propagated-inputs
9997 `(("r-ks" ,r-ks)
9998 ("r-misc3d" ,r-misc3d)
9999 ("r-rgl" ,r-rgl)))
10000 (home-page "http://www.mvstat.net/tduong/")
10001 (synopsis "Inferential feature significance for kernel density estimation")
10002 (description
10003 "The feature package contains functions to display and compute kernel
10004 density estimates, significant gradient and significant curvature regions.
10005 Significant gradient and/or curvature regions often correspond to significant
10006 features (e.g. local modes).")
10007 ;; Either version of the GPL.
10008 (license (list license:gpl2 license:gpl3))))
10009
10010 (define-public r-arm
10011 (package
10012 (name "r-arm")
10013 (version "1.11-2")
10014 (source
10015 (origin
10016 (method url-fetch)
10017 (uri (cran-uri "arm" version))
10018 (sha256
10019 (base32
10020 "1grb27vayr2vhyalzfqbhx6p278r7c3l4pzi5nrz3dmnyqrbx1c3"))))
10021 (build-system r-build-system)
10022 (propagated-inputs
10023 `(("r-abind" ,r-abind)
10024 ("r-coda" ,r-coda)
10025 ("r-hmisc" ,r-hmisc)
10026 ("r-lme4" ,r-lme4)
10027 ("r-mass" ,r-mass)
10028 ("r-matrix" ,r-matrix)
10029 ("r-nlme" ,r-nlme)))
10030 (home-page "https://cran.r-project.org/web/packages/arm/")
10031 (synopsis "Data analysis using regression and multilevel/hierarchical models")
10032 (description
10033 "This package provides functions to accompany A. Gelman and J. Hill,
10034 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
10035 University Press, 2007.")
10036 (license license:gpl3+)))
10037
10038 (define-public r-circular
10039 (package
10040 (name "r-circular")
10041 (version "0.4-93")
10042 (source
10043 (origin
10044 (method url-fetch)
10045 (uri (cran-uri "circular" version))
10046 (sha256
10047 (base32
10048 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
10049 (build-system r-build-system)
10050 (propagated-inputs
10051 `(("r-boot" ,r-boot)
10052 ("r-mvtnorm" ,r-mvtnorm)))
10053 (native-inputs
10054 `(("gfortran" ,gfortran)))
10055 (home-page "https://cran.r-project.org/web/packages/circular/")
10056 (synopsis "Circular statistics")
10057 (description
10058 "This package provides tools for circular statistics, from \"Topics in
10059 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
10060 Scientific.")
10061 (license license:gpl2+)))
10062
10063 (define-public r-activity
10064 (package
10065 (name "r-activity")
10066 (version "1.3")
10067 (source
10068 (origin
10069 (method url-fetch)
10070 (uri (cran-uri "activity" version))
10071 (sha256
10072 (base32
10073 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
10074 (build-system r-build-system)
10075 (propagated-inputs
10076 `(("r-circular" ,r-circular)
10077 ("r-insol" ,r-insol)
10078 ("r-pbapply" ,r-pbapply)))
10079 (home-page "https://cran.r-project.org/web/packages/activity/")
10080 (synopsis "Animal activity statistics")
10081 (description
10082 "This package provides functions to fit kernel density functions to
10083 animal activity time data; plot activity distributions; quantify overall
10084 levels of activity; statistically compare activity metrics through
10085 bootstrapping; and evaluate variation in linear variables with time (or other
10086 circular variables).")
10087 (license license:gpl3)))
10088
10089 (define-public r-ouch
10090 (package
10091 (name "r-ouch")
10092 (version "2.14-1")
10093 (source
10094 (origin
10095 (method url-fetch)
10096 (uri (cran-uri "ouch" version))
10097 (sha256
10098 (base32
10099 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
10100 (build-system r-build-system)
10101 (propagated-inputs `(("r-subplex" ,r-subplex)))
10102 (home-page "https://kingaa.github.io/ouch/")
10103 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
10104 (description
10105 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
10106 for evolution along a phylogenetic tree.")
10107 (license license:gpl2+)))
10108
10109 (define-public r-fmsb
10110 (package
10111 (name "r-fmsb")
10112 (version "0.7.0")
10113 (source
10114 (origin
10115 (method url-fetch)
10116 (uri (cran-uri "fmsb" version))
10117 (sha256
10118 (base32
10119 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
10120 (build-system r-build-system)
10121 (home-page "http://minato.sip21c.org/msb/")
10122 (synopsis "Functions for medical statistics book with demographic data")
10123 (description
10124 "This package provides several utility functions for the book entitled
10125 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
10126 Japan, 2007) with Japanese demographic data and some demographic analysis
10127 related functions.")
10128 (license license:gpl2+)))
10129
10130 (define-public r-stabledist
10131 (package
10132 (name "r-stabledist")
10133 (version "0.7-1")
10134 (source
10135 (origin
10136 (method url-fetch)
10137 (uri (cran-uri "stabledist" version))
10138 (sha256
10139 (base32
10140 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
10141 (build-system r-build-system)
10142 (home-page "https://www.rmetrics.org")
10143 (synopsis "Stable distribution functions")
10144 (description
10145 "This package provides density, probability and quantile functions, and
10146 random number generation for (skew) stable distributions, using the
10147 parametrizations of Nolan.")
10148 (license license:gpl2+)))
10149
10150 (define-public r-gsl
10151 (package
10152 (name "r-gsl")
10153 (version "2.1-6")
10154 (source
10155 (origin
10156 (method url-fetch)
10157 (uri (cran-uri "gsl" version))
10158 (sha256
10159 (base32
10160 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
10161 (build-system r-build-system)
10162 (inputs
10163 `(("gsl" ,gsl)))
10164 (home-page "https://cran.r-project.org/web/packages/gsl")
10165 (synopsis "Wrapper for the GNU Scientific Library")
10166 (description
10167 "This package provides an R wrapper for the special functions and quasi
10168 random number generators of the GNU Scientific Library.")
10169 (license license:gpl2+)))
10170
10171 (define-public r-adgoftest
10172 (package
10173 (name "r-adgoftest")
10174 (version "0.3")
10175 (source
10176 (origin
10177 (method url-fetch)
10178 (uri (cran-uri "ADGofTest" version))
10179 (sha256
10180 (base32
10181 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
10182 (properties `((upstream-name . "ADGofTest")))
10183 (build-system r-build-system)
10184 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
10185 (synopsis "Anderson-Darling GoF test")
10186 (description
10187 "This package provides an implementation of the Anderson-Darling GoF test
10188 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
10189 Anderson-Darling Distribution\".")
10190 ;; Any version of the GPL.
10191 (license license:gpl3+)))
10192
10193 (define-public r-softimpute
10194 (package
10195 (name "r-softimpute")
10196 (version "1.4")
10197 (source
10198 (origin
10199 (method url-fetch)
10200 (uri (cran-uri "softImpute" version))
10201 (sha256
10202 (base32
10203 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
10204 (properties `((upstream-name . "softImpute")))
10205 (build-system r-build-system)
10206 (propagated-inputs
10207 `(("r-matrix" ,r-matrix)))
10208 (native-inputs
10209 `(("gfortran" ,gfortran)))
10210 (home-page "https://cran.r-project.org/web/packages/softImpute")
10211 (synopsis "Matrix completion via iterative soft-thresholded SVD")
10212 (description
10213 "This package provides iterative methods for matrix completion that use
10214 nuclear-norm regularization. The package includes procedures for centering
10215 and scaling rows, columns or both, and for computing low-rank @dfn{single
10216 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
10217 components).")
10218 (license license:gpl2)))
10219
10220 (define-public r-fftwtools
10221 (package
10222 (name "r-fftwtools")
10223 (version "0.9-8")
10224 (source
10225 (origin
10226 (method url-fetch)
10227 (uri (cran-uri "fftwtools" version))
10228 (sha256
10229 (base32
10230 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
10231 (build-system r-build-system)
10232 (inputs `(("fftw" ,fftw)))
10233 (home-page "https://github.com/krahim/fftwtools")
10234 (synopsis "Wrapper for FFTW3")
10235 (description
10236 "This package provides a wrapper for several FFTW functions. It provides
10237 access to the two-dimensional FFT, the multivariate FFT, and the
10238 one-dimensional real to complex FFT using the FFTW3 library. The package
10239 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
10240 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
10241 The FFT functions have a parameter that allows them to not return the
10242 redundant complex conjugate when the input is real data.")
10243 (license license:gpl2+)))
10244
10245 (define-public r-tiff
10246 (package
10247 (name "r-tiff")
10248 (version "0.1-5")
10249 (source
10250 (origin
10251 (method url-fetch)
10252 (uri (cran-uri "tiff" version))
10253 (sha256
10254 (base32
10255 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
10256 (build-system r-build-system)
10257 (inputs
10258 `(("libtiff" ,libtiff)
10259 ("libjpeg" ,libjpeg-turbo)
10260 ("zlib" ,zlib)))
10261 (home-page "https://www.rforge.net/tiff/")
10262 (synopsis "Read and write TIFF images")
10263 (description
10264 "This package provides an easy and simple way to read, write and display
10265 bitmap images stored in the TIFF format. It can read and write both files and
10266 in-memory raw vectors.")
10267 ;; Either of these two license versions.
10268 (license (list license:gpl2 license:gpl3))))
10269
10270 (define-public r-nlp
10271 (package
10272 (name "r-nlp")
10273 (version "0.2-0")
10274 (source
10275 (origin
10276 (method url-fetch)
10277 (uri (cran-uri "NLP" version))
10278 (sha256
10279 (base32
10280 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
10281 (properties `((upstream-name . "NLP")))
10282 (build-system r-build-system)
10283 (home-page "https://cran.r-project.org/web/packages/NLP/")
10284 (synopsis "Natural language processing infrastructure")
10285 (description
10286 "This package provides basic classes and methods for Natural Language
10287 Processing.")
10288 (license license:gpl3)))
10289
10290 (define-public r-tm
10291 (package
10292 (name "r-tm")
10293 (version "0.7-7")
10294 (source
10295 (origin
10296 (method url-fetch)
10297 (uri (cran-uri "tm" version))
10298 (sha256
10299 (base32
10300 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
10301 (properties `((upstream-name . "tm")))
10302 (build-system r-build-system)
10303 (propagated-inputs
10304 `(("r-bh" ,r-bh)
10305 ("r-nlp" ,r-nlp)
10306 ("r-rcpp" ,r-rcpp)
10307 ("r-slam" ,r-slam)
10308 ("r-xml2" ,r-xml2)))
10309 (home-page "http://tm.r-forge.r-project.org/")
10310 (synopsis "Text mining package")
10311 (description
10312 "This package provides a framework for text mining applications within R.")
10313 (license license:gpl3)))
10314
10315 (define-public r-waveslim
10316 (package
10317 (name "r-waveslim")
10318 (version "1.8.2")
10319 (source
10320 (origin
10321 (method url-fetch)
10322 (uri (cran-uri "waveslim" version))
10323 (sha256
10324 (base32
10325 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
10326 (build-system r-build-system)
10327 (native-inputs
10328 `(("gfortran" ,gfortran)))
10329 (home-page "http://waveslim.blogspot.com")
10330 (synopsis "Basic wavelet routines for signal processing")
10331 (description
10332 "This package provides basic wavelet routines for time series (1D),
10333 image (2D) and array (3D) analysis. The code provided here is based on
10334 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
10335 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
10336 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
10337 pairs (Selesnick 2001, 2002).")
10338 (license license:bsd-3)))
10339
10340 (define-public r-wordcloud
10341 (package
10342 (name "r-wordcloud")
10343 (version "2.6")
10344 (source
10345 (origin
10346 (method url-fetch)
10347 (uri (cran-uri "wordcloud" version))
10348 (sha256
10349 (base32
10350 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
10351 (build-system r-build-system)
10352 (propagated-inputs
10353 `(("r-rcolorbrewer" ,r-rcolorbrewer)
10354 ("r-rcpp" ,r-rcpp)
10355 ;; The "tm" package is only "suggested" according to CRAN, but the
10356 ;; wordcloud package cannot be loaded without it.
10357 ("r-tm" ,r-tm)))
10358 (home-page "https://cran.r-project.org/web/packages/wordcloud")
10359 (synopsis "Word clouds")
10360 (description
10361 "This package provides functionality to create pretty word clouds,
10362 visualize differences and similarity between documents, and avoid
10363 over-plotting in scatter plots with text.")
10364 (license license:lgpl2.1)))
10365
10366 (define-public r-colorramps
10367 (package
10368 (name "r-colorramps")
10369 (version "2.3")
10370 (source
10371 (origin
10372 (method url-fetch)
10373 (uri (cran-uri "colorRamps" version))
10374 (sha256
10375 (base32
10376 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
10377 (properties `((upstream-name . "colorRamps")))
10378 (build-system r-build-system)
10379 (home-page "https://cran.r-project.org/web/packages/colorRamps")
10380 (synopsis "Build color tables")
10381 (description "This package provides features to build gradient color
10382 maps.")
10383 ;; Any version of the GPL
10384 (license license:gpl3+)))
10385
10386 (define-public r-tidytree
10387 (package
10388 (name "r-tidytree")
10389 (version "0.3.3")
10390 (source
10391 (origin
10392 (method url-fetch)
10393 (uri (cran-uri "tidytree" version))
10394 (sha256
10395 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
10396 (build-system r-build-system)
10397 (propagated-inputs
10398 `(("r-ape" ,r-ape)
10399 ("r-dplyr" ,r-dplyr)
10400 ("r-lazyeval" ,r-lazyeval)
10401 ("r-magrittr" ,r-magrittr)
10402 ("r-rlang" ,r-rlang)
10403 ("r-tibble" ,r-tibble)))
10404 (native-inputs
10405 `(("r-knitr" ,r-knitr)))
10406 (home-page "https://github.com/GuangchuangYu/tidytree")
10407 (synopsis "Tidy tool for phylogenetic tree data manipulation")
10408 (description
10409 "Phylogenetic trees generally contain multiple components including nodes,
10410 edges, branches and associated data. This package provides an approach to
10411 convert tree objects to tidy data frames. It also provides tidy interfaces to
10412 manipulate tree data.")
10413 (license license:artistic2.0)))
10414
10415 (define-public r-rvcheck
10416 (package
10417 (name "r-rvcheck")
10418 (version "0.1.8")
10419 (source
10420 (origin
10421 (method url-fetch)
10422 (uri (cran-uri "rvcheck" version))
10423 (sha256
10424 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
10425 (build-system r-build-system)
10426 (propagated-inputs
10427 `(("r-biocmanager" ,r-biocmanager)
10428 ("r-rlang" ,r-rlang)))
10429 (home-page "https://cran.r-project.org/web/packages/rvcheck")
10430 (synopsis "R package version check")
10431 (description
10432 "This package provides tools to check the latest release version of R and
10433 R packages (on CRAN, Bioconductor or Github).")
10434 (license license:artistic2.0)))
10435
10436 (define-public r-docopt
10437 (package
10438 (name "r-docopt")
10439 (version "0.7.1")
10440 (source
10441 (origin
10442 (method url-fetch)
10443 (uri (cran-uri "docopt" version))
10444 (sha256
10445 (base32
10446 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
10447 (build-system r-build-system)
10448 (home-page "https://github.com/docopt/docopt.R")
10449 (synopsis "Command-line interface specification language")
10450 (description
10451 "This package enables you to define a command-line interface by just
10452 giving it a description in the specific format.")
10453 (license license:expat)))
10454
10455 (define-public r-sparsesvd
10456 (package
10457 (name "r-sparsesvd")
10458 (version "0.2")
10459 (source
10460 (origin
10461 (method url-fetch)
10462 (uri (cran-uri "sparsesvd" version))
10463 (sha256
10464 (base32
10465 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
10466 (build-system r-build-system)
10467 (propagated-inputs `(("r-matrix" ,r-matrix)))
10468 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
10469 (synopsis "Sparse truncated singular value decomposition")
10470 (description
10471 "This package provides a Wrapper around the SVDLIBC library
10472 for (truncated) singular value decomposition of a sparse matrix. Currently,
10473 only sparse real matrices in Matrix package format are supported.")
10474 ;; SVDLIBC is released under BSD-2. The R interface is released under
10475 ;; BSD-3.
10476 (license (list license:bsd-3 license:bsd-2))))
10477
10478 (define-public r-speedglm
10479 (package
10480 (name "r-speedglm")
10481 (version "0.3-2")
10482 (source
10483 (origin
10484 (method url-fetch)
10485 (uri (cran-uri "speedglm" version))
10486 (sha256
10487 (base32
10488 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
10489 (build-system r-build-system)
10490 (propagated-inputs
10491 `(("r-mass" ,r-mass)
10492 ("r-matrix" ,r-matrix)))
10493 (home-page "https://cran.r-project.org/web/packages/speedglm")
10494 (synopsis "Fit linear and generalized linear models to large data sets")
10495 (description
10496 "This package provides tools for fitting linear models and generalized
10497 linear models to large data sets by updating algorithms.")
10498 ;; Any version of the GPL
10499 (license license:gpl2+)))
10500
10501 (define-public r-densityclust
10502 (package
10503 (name "r-densityclust")
10504 (version "0.3")
10505 (source
10506 (origin
10507 (method url-fetch)
10508 (uri (cran-uri "densityClust" version))
10509 (sha256
10510 (base32
10511 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10512 (properties `((upstream-name . "densityClust")))
10513 (build-system r-build-system)
10514 (propagated-inputs
10515 `(("r-fnn" ,r-fnn)
10516 ("r-ggplot2" ,r-ggplot2)
10517 ("r-ggrepel" ,r-ggrepel)
10518 ("r-gridextra" ,r-gridextra)
10519 ("r-rcolorbrewer" ,r-rcolorbrewer)
10520 ("r-rcpp" ,r-rcpp)
10521 ("r-rtsne" ,r-rtsne)))
10522 (home-page "https://cran.r-project.org/web/packages/densityClust")
10523 (synopsis "Clustering by fast search and find of density peaks")
10524 (description
10525 "This package provides an improved implementation (based on k-nearest
10526 neighbors) of the density peak clustering algorithm, originally described by
10527 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10528 large datasets (> 100,000 samples) very efficiently.")
10529 (license license:gpl2+)))
10530
10531 (define-public r-combinat
10532 (package
10533 (name "r-combinat")
10534 (version "0.0-8")
10535 (source
10536 (origin
10537 (method url-fetch)
10538 (uri (cran-uri "combinat" version))
10539 (sha256
10540 (base32
10541 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10542 (build-system r-build-system)
10543 (home-page "https://cran.r-project.org/web/packages/combinat")
10544 (synopsis "Combinatorics utilities")
10545 (description "This package provides assorted routines for combinatorics.")
10546 (license license:gpl2)))
10547
10548 (define-public r-qlcmatrix
10549 (package
10550 (name "r-qlcmatrix")
10551 (version "0.9.7")
10552 (source
10553 (origin
10554 (method url-fetch)
10555 (uri (cran-uri "qlcMatrix" version))
10556 (sha256
10557 (base32
10558 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10559 (properties `((upstream-name . "qlcMatrix")))
10560 (build-system r-build-system)
10561 (propagated-inputs
10562 `(("r-docopt" ,r-docopt)
10563 ("r-matrix" ,r-matrix)
10564 ("r-slam" ,r-slam)
10565 ("r-sparsesvd" ,r-sparsesvd)))
10566 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10567 (synopsis "Sparse matrix functions for quantitative language comparison")
10568 (description
10569 "This package provides an extension of the functionality of the Matrix
10570 package for using sparse matrices. Some of the functions are very general,
10571 while other are highly specific for the special data format used for
10572 @dfn{quantitative language comparison} (QLC).")
10573 (license license:gpl3)))
10574
10575 (define-public r-ddrtree
10576 (package
10577 (name "r-ddrtree")
10578 (version "0.1.5")
10579 (source
10580 (origin
10581 (method url-fetch)
10582 (uri (cran-uri "DDRTree" version))
10583 (sha256
10584 (base32
10585 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10586 (properties `((upstream-name . "DDRTree")))
10587 (build-system r-build-system)
10588 (propagated-inputs
10589 `(("r-bh" ,r-bh)
10590 ("r-irlba" ,r-irlba)
10591 ("r-rcpp" ,r-rcpp)
10592 ("r-rcppeigen" ,r-rcppeigen)))
10593 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10594 (synopsis "Learning principal graphs with DDRTree")
10595 (description
10596 "This package provides an implementation of the framework of
10597 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10598 dimensional space while constructs a principal tree which passes through the
10599 middle of the data simultaneously. DDRTree shows superiority to
10600 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10601 intrinsic structure of single cell genomics data. In general, it could be
10602 used to reconstruct the temporal progression as well as the bifurcation
10603 structure of any data type.")
10604 (license license:asl2.0)))
10605
10606 (define-public r-corpcor
10607 (package
10608 (name "r-corpcor")
10609 (version "1.6.9")
10610 (source
10611 (origin
10612 (method url-fetch)
10613 (uri (cran-uri "corpcor" version))
10614 (sha256
10615 (base32
10616 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10617 (build-system r-build-system)
10618 (home-page "http://strimmerlab.org/software/corpcor/")
10619 (synopsis "Efficient estimation of covariance and (partial) correlation")
10620 (description
10621 "This package implements a James-Stein-type shrinkage estimator for the
10622 covariance matrix, with separate shrinkage for variances and correlations.
10623 Furthermore, functions are available for fast singular value decomposition,
10624 for computing the pseudoinverse, and for checking the rank and positive
10625 definiteness of a matrix.")
10626 (license license:gpl3+)))
10627
10628 (define-public r-rspectra
10629 (package
10630 (name "r-rspectra")
10631 (version "0.16-0")
10632 (source
10633 (origin
10634 (method url-fetch)
10635 (uri (cran-uri "RSpectra" version))
10636 (sha256
10637 (base32
10638 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10639 (properties `((upstream-name . "RSpectra")))
10640 (build-system r-build-system)
10641 (propagated-inputs
10642 `(("r-matrix" ,r-matrix)
10643 ("r-rcpp" ,r-rcpp)
10644 ("r-rcppeigen" ,r-rcppeigen)))
10645 (home-page "https://github.com/yixuan/RSpectra")
10646 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10647 (description
10648 "This package provides an R interface to the Spectra library for
10649 large-scale eigenvalue and SVD problems. It is typically used to compute a
10650 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10651 which is usually more efficient than @code{eigen()} if k << n.")
10652 ;; MPL 2 or later.
10653 (license license:mpl2.0)))
10654
10655 (define-public r-vbsr
10656 (package
10657 (name "r-vbsr")
10658 (version "0.0.5")
10659 (source
10660 (origin
10661 (method url-fetch)
10662 (uri (cran-uri "vbsr" version))
10663 (sha256
10664 (base32
10665 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10666 (build-system r-build-system)
10667 (home-page "https://cran.r-project.org/web/packages/vbsr")
10668 (synopsis "Variational Bayes spike regression regularized linear models")
10669 (description
10670 "This package provides an efficient algorithm for solving ultra-sparse
10671 regularized regression models using a variational Bayes algorithm with a spike
10672 prior. The algorithm is solved on a path, with coordinate updates, and is
10673 capable of generating very sparse models. Very general model
10674 diagnostics for controlling type-1 errors are also provided.")
10675 (license license:gpl2)))
10676
10677 (define-public r-flare
10678 (package
10679 (name "r-flare")
10680 (version "1.6.0.2")
10681 (source
10682 (origin
10683 (method url-fetch)
10684 (uri (cran-uri "flare" version))
10685 (sha256
10686 (base32
10687 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10688 (build-system r-build-system)
10689 (propagated-inputs
10690 `(("r-igraph" ,r-igraph)
10691 ("r-lattice" ,r-lattice)
10692 ("r-mass" ,r-mass)
10693 ("r-matrix" ,r-matrix)))
10694 (home-page "https://cran.r-project.org/web/packages/flare")
10695 (synopsis "Family of Lasso regression implementations")
10696 (description
10697 "This package provides implementations of a family of Lasso variants
10698 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10699 high dimensional sparse linear models.")
10700 (license license:gpl2)))
10701
10702 (define-public r-lassopv
10703 (package
10704 (name "r-lassopv")
10705 (version "0.2.0")
10706 (source
10707 (origin
10708 (method url-fetch)
10709 (uri (cran-uri "lassopv" version))
10710 (sha256
10711 (base32
10712 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10713 (build-system r-build-system)
10714 (propagated-inputs `(("r-lars" ,r-lars)))
10715 (home-page "https://github.com/lingfeiwang/lassopv")
10716 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10717 (description
10718 "This package enables you to estimate the p-values for predictors x
10719 against target variable y in Lasso regression, using the regularization
10720 strength when each predictor enters the active set of regularization path for
10721 the first time as the statistic.")
10722 (license license:gpl3)))
10723
10724 (define-public r-splitstackshape
10725 (package
10726 (name "r-splitstackshape")
10727 (version "1.4.8")
10728 (source
10729 (origin
10730 (method url-fetch)
10731 (uri (cran-uri "splitstackshape" version))
10732 (sha256
10733 (base32
10734 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10735 (build-system r-build-system)
10736 (propagated-inputs
10737 `(("r-data-table" ,r-data-table)))
10738 (home-page "https://github.com/mrdwab/splitstackshape")
10739 (synopsis "Stack and reshape datasets after splitting concatenated values")
10740 (description
10741 "Online data collection tools like Google Forms often export
10742 multiple-response questions with data concatenated in cells. The
10743 @code{concat.split} (cSplit) family of functions provided by this package
10744 splits such data into separate cells. This package also includes functions to
10745 stack groups of columns and to reshape wide data, even when the data are
10746 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10747 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10748 handle.")
10749 (license license:gpl3)))
10750
10751 (define-public r-tfmpvalue
10752 (package
10753 (name "r-tfmpvalue")
10754 (version "0.0.8")
10755 (source
10756 (origin
10757 (method url-fetch)
10758 (uri (cran-uri "TFMPvalue" version))
10759 (sha256
10760 (base32
10761 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10762 (properties `((upstream-name . "TFMPvalue")))
10763 (build-system r-build-system)
10764 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10765 (home-page "https://github.com/ge11232002/TFMPvalue")
10766 (synopsis "P-value computation for position weight matrices")
10767 (description
10768 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10769 identification from sequence/alignments, we are interested in the significance
10770 of certain match scores. TFMPvalue provides the accurate calculation of a
10771 p-value with a score threshold for position weight matrices, or the score with
10772 a given p-value. It is an interface to code originally made available by
10773 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10774 Touzet and Varre (2007).")
10775 (license license:gpl2)))
10776
10777 (define-public r-rnifti
10778 (package
10779 (name "r-rnifti")
10780 (version "1.1.0")
10781 (source
10782 (origin
10783 (method url-fetch)
10784 (uri (cran-uri "RNifti" version))
10785 (sha256
10786 (base32
10787 "1z8ninp3aq18w0slcfn8r2fp48cdz8l0k0namsrnvgyp8lzcpqpn"))))
10788 (properties `((upstream-name . "RNifti")))
10789 (build-system r-build-system)
10790 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10791 (home-page "https://github.com/jonclayden/RNifti")
10792 (synopsis "Fast R and C++ access to NIfTI images")
10793 (description
10794 "This package provides very fast read and write access to images stored
10795 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10796 compiled C and interpreted R code. It also provides a C/C++ API that can be
10797 used by other packages.")
10798 (license license:gpl2)))
10799
10800 (define-public r-shades
10801 (package
10802 (name "r-shades")
10803 (version "1.4.0")
10804 (source
10805 (origin
10806 (method url-fetch)
10807 (uri (cran-uri "shades" version))
10808 (sha256
10809 (base32
10810 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10811 (build-system r-build-system)
10812 (home-page "https://github.com/jonclayden/shades")
10813 (synopsis "Simple color manipulation")
10814 (description
10815 "This package provides functions for easily manipulating colors,
10816 creating color scales and calculating color distances.")
10817 (license license:bsd-3)))
10818
10819 (define-public r-ore
10820 (package
10821 (name "r-ore")
10822 (version "1.6.3")
10823 (source
10824 (origin
10825 (method url-fetch)
10826 (uri (cran-uri "ore" version))
10827 (sha256
10828 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10829 (build-system r-build-system)
10830 (home-page "https://github.com/jonclayden/ore")
10831 (synopsis "R interface to the Onigmo regular expression library")
10832 (description
10833 "This package provides an alternative to R's built-in functionality for
10834 handling regular expressions, based on the Onigmo library. It offers
10835 first-class compiled regex objects, partial matching and function-based
10836 substitutions, amongst other features.")
10837 (license license:bsd-3)))
10838
10839 (define-public r-reportr
10840 (package
10841 (name "r-reportr")
10842 (version "1.3.0")
10843 (source
10844 (origin
10845 (method url-fetch)
10846 (uri (cran-uri "reportr" version))
10847 (sha256
10848 (base32
10849 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10850 (build-system r-build-system)
10851 (propagated-inputs `(("r-ore" ,r-ore)))
10852 (home-page "https://github.com/jonclayden/reportr")
10853 (synopsis "General message and error reporting system")
10854 (description
10855 "This package provides a system for reporting messages, which offers
10856 certain useful features over the standard R system, such as the incorporation
10857 of output consolidation, message filtering, assertions, expression
10858 substitution, automatic generation of stack traces for debugging, and
10859 conditional reporting based on the current \"output level\".")
10860 (license license:gpl2)))
10861
10862 (define-public r-tractor-base
10863 (package
10864 (name "r-tractor-base")
10865 (version "3.3.2")
10866 (source
10867 (origin
10868 (method url-fetch)
10869 (uri (cran-uri "tractor.base" version))
10870 (sha256
10871 (base32
10872 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10873 (properties `((upstream-name . "tractor.base")))
10874 (build-system r-build-system)
10875 (propagated-inputs
10876 `(("r-ore" ,r-ore)
10877 ("r-reportr" ,r-reportr)
10878 ("r-rnifti" ,r-rnifti)
10879 ("r-shades" ,r-shades)))
10880 (home-page "https://www.tractor-mri.org.uk")
10881 (synopsis "Read, manipulate and visualize magnetic resonance images")
10882 (description
10883 "This package provides functions for working with magnetic resonance
10884 images. It supports reading and writing of popular file formats (DICOM,
10885 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10886 visualization; flexible image manipulation; metadata and sparse image
10887 handling.")
10888 (license license:gpl2)))
10889
10890 (define-public r-grimport
10891 (package
10892 (name "r-grimport")
10893 (version "0.9-3")
10894 (source
10895 (origin
10896 (method url-fetch)
10897 (uri (cran-uri "grImport" version))
10898 (sha256
10899 (base32
10900 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
10901 (properties `((upstream-name . "grImport")))
10902 (build-system r-build-system)
10903 (inputs
10904 `(("ghostscript" ,ghostscript)))
10905 (propagated-inputs
10906 `(("r-xml" ,r-xml)))
10907 (home-page "https://cran.r-project.org/web/packages/grImport")
10908 (synopsis "Convert, import, and draw PostScript pictures")
10909 (description
10910 "This package provides functions for converting, importing, and drawing
10911 PostScript pictures in R plots.")
10912 (license license:gpl2+)))
10913
10914 (define-public r-grimport2
10915 (package
10916 (name "r-grimport2")
10917 (version "0.2-0")
10918 (source
10919 (origin
10920 (method url-fetch)
10921 (uri (cran-uri "grImport2" version))
10922 (sha256
10923 (base32
10924 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
10925 (properties `((upstream-name . "grImport2")))
10926 (build-system r-build-system)
10927 (propagated-inputs
10928 `(("r-base64enc" ,r-base64enc)
10929 ("r-jpeg" ,r-jpeg)
10930 ("r-png" ,r-png)
10931 ("r-xml" ,r-xml)))
10932 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10933 (synopsis "Import SVG graphics")
10934 (description
10935 "This package provides functions for importing external vector images and
10936 drawing them as part of R plots. This package is different from the
10937 @code{grImport} package because, where that package imports PostScript format
10938 images, this package imports SVG format images. Furthermore, this package
10939 imports a specific subset of SVG, so external images must be preprocessed
10940 using a package like @code{rsvg} to produce SVG that this package can import.
10941 SVG features that are not supported by R graphics, such as gradient fills, can
10942 be imported and then exported via the @code{gridSVG} package.")
10943 (license license:gpl2+)))
10944
10945 (define-public r-kohonen
10946 (package
10947 (name "r-kohonen")
10948 (version "3.0.10")
10949 (source
10950 (origin
10951 (method url-fetch)
10952 (uri (cran-uri "kohonen" version))
10953 (sha256
10954 (base32
10955 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
10956 (build-system r-build-system)
10957 (propagated-inputs
10958 `(("r-rcpp" ,r-rcpp)))
10959 (home-page "https://cran.r-project.org/web/packages/kohonen")
10960 (synopsis "Supervised and unsupervised self-organising maps")
10961 (description
10962 "This package provides functions to train @dfn{self-organising
10963 maps} (SOMs). Also interrogation of the maps and prediction using trained
10964 maps are supported. The name of the package refers to Teuvo Kohonen, the
10965 inventor of the SOM.")
10966 (license license:gpl2+)))
10967
10968 (define-public r-nnls
10969 (package
10970 (name "r-nnls")
10971 (version "1.4")
10972 (source
10973 (origin
10974 (method url-fetch)
10975 (uri (cran-uri "nnls" version))
10976 (sha256
10977 (base32
10978 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10979 (build-system r-build-system)
10980 (native-inputs `(("gfortran" ,gfortran)))
10981 (home-page "https://cran.r-project.org/web/packages/nnls")
10982 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10983 (description
10984 "This package provides an R interface to the Lawson-Hanson implementation
10985 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10986 the combination of non-negative and non-positive constraints.")
10987 (license license:gpl2+)))
10988
10989 (define-public r-iso
10990 (package
10991 (name "r-iso")
10992 (version "0.0-18.1")
10993 (source
10994 (origin
10995 (method url-fetch)
10996 (uri (cran-uri "Iso" version))
10997 (sha256
10998 (base32
10999 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
11000 (properties `((upstream-name . "Iso")))
11001 (build-system r-build-system)
11002 (native-inputs `(("gfortran" ,gfortran)))
11003 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
11004 (synopsis "Functions to perform isotonic regression")
11005 (description
11006 "This package provides support for linear order and unimodal
11007 order (univariate) isotonic regression and bivariate isotonic regression with
11008 linear order on both variables.")
11009 (license license:gpl2+)))
11010
11011 (define-public r-chemometricswithr
11012 (package
11013 (name "r-chemometricswithr")
11014 (version "0.1.13")
11015 (source
11016 (origin
11017 (method url-fetch)
11018 (uri (cran-uri "ChemometricsWithR" version))
11019 (sha256
11020 (base32
11021 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
11022 (properties
11023 `((upstream-name . "ChemometricsWithR")))
11024 (build-system r-build-system)
11025 (propagated-inputs
11026 `(("r-devtools" ,r-devtools)
11027 ("r-kohonen" ,r-kohonen)
11028 ("r-mass" ,r-mass)
11029 ("r-pls" ,r-pls)))
11030 (home-page "https://github.com/rwehrens/CWR")
11031 (synopsis "Chemometrics with R")
11032 (description
11033 "This package provides functions and scripts used in the book
11034 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
11035 Life Sciences\" by Ron Wehrens, Springer (2011).")
11036 (license license:gpl2+)))
11037
11038 (define-public r-als
11039 (package
11040 (name "r-als")
11041 (version "0.0.6")
11042 (source
11043 (origin
11044 (method url-fetch)
11045 (uri (cran-uri "ALS" version))
11046 (sha256
11047 (base32
11048 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
11049 (properties `((upstream-name . "ALS")))
11050 (build-system r-build-system)
11051 (propagated-inputs
11052 `(("r-iso" ,r-iso)
11053 ("r-nnls" ,r-nnls)))
11054 (home-page "https://cran.r-project.org/web/packages/ALS")
11055 (synopsis "Multivariate curve resolution alternating least squares")
11056 (description
11057 "Alternating least squares is often used to resolve components
11058 contributing to data with a bilinear structure; the basic technique may be
11059 extended to alternating constrained least squares. This package provides an
11060 implementation of @dfn{multivariate curve resolution alternating least
11061 squares} (MCR-ALS).
11062
11063 Commonly applied constraints include unimodality, non-negativity, and
11064 normalization of components. Several data matrices may be decomposed
11065 simultaneously by assuming that one of the two matrices in the bilinear
11066 decomposition is shared between datasets.")
11067 (license license:gpl2+)))
11068
11069 (define-public r-strucchange
11070 (package
11071 (name "r-strucchange")
11072 (version "1.5-2")
11073 (source
11074 (origin
11075 (method url-fetch)
11076 (uri (cran-uri "strucchange" version))
11077 (sha256
11078 (base32
11079 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
11080 (build-system r-build-system)
11081 (propagated-inputs
11082 `(("r-sandwich" ,r-sandwich)
11083 ("r-zoo" ,r-zoo)))
11084 (home-page "https://cran.r-project.org/web/packages/strucchange")
11085 (synopsis "Testing, monitoring, and dating structural changes")
11086 (description
11087 "This package provides tools for testing, monitoring and dating
11088 structural changes in (linear) regression models. It features tests/methods
11089 from the generalized fluctuation test framework as well as from the F
11090 test (Chow test) framework. This includes methods to fit, plot and test
11091 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
11092 statistics, respectively. It is possible to monitor incoming data online
11093 using fluctuation processes. Finally, the breakpoints in regression models
11094 with structural changes can be estimated together with confidence intervals.
11095 Emphasis is always given to methods for visualizing the data.")
11096 ;; Either of these two GPL versions
11097 (license (list license:gpl2 license:gpl3))))
11098
11099 (define-public r-pixmap
11100 (package
11101 (name "r-pixmap")
11102 (version "0.4-11")
11103 (source
11104 (origin
11105 (method url-fetch)
11106 (uri (cran-uri "pixmap" version))
11107 (sha256
11108 (base32
11109 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
11110 (build-system r-build-system)
11111 (home-page "https://cran.r-project.org/web/packages/pixmap")
11112 (synopsis "Tools for bitmap images")
11113 (description
11114 "This package provides functions for importing, exporting, plotting and
11115 other manipulations of bitmapped images.")
11116 (license license:gpl2)))
11117
11118 (define-public r-rapidjsonr
11119 (package
11120 (name "r-rapidjsonr")
11121 (version "1.2.0")
11122 (source
11123 (origin
11124 (method url-fetch)
11125 (uri (cran-uri "rapidjsonr" version))
11126 (sha256
11127 (base32
11128 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
11129 (build-system r-build-system)
11130 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
11131 (synopsis "JSON parser")
11132 (description
11133 "This package provides JSON parsing capability through the Rapidjson
11134 library.")
11135 (license license:expat)))
11136
11137 (define-public r-ontologyindex
11138 (package
11139 (name "r-ontologyindex")
11140 (version "2.5")
11141 (source
11142 (origin
11143 (method url-fetch)
11144 (uri (cran-uri "ontologyIndex" version))
11145 (sha256
11146 (base32
11147 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
11148 (properties `((upstream-name . "ontologyIndex")))
11149 (build-system r-build-system)
11150 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
11151 (synopsis "Functions for processing ontologies in R")
11152 (description
11153 "This package provides functions for reading ontologies into R as lists
11154 and manipulating sets of ontological terms.")
11155 (license license:gpl2+)))
11156
11157 (define-public r-gargle
11158 (package
11159 (name "r-gargle")
11160 (version "0.5.0")
11161 (source
11162 (origin
11163 (method url-fetch)
11164 (uri (cran-uri "gargle" version))
11165 (sha256
11166 (base32
11167 "1fykmiv3x8c9ai31r9wr7qcca51h6kqn9cgwbxvxfj15fhwskh4n"))))
11168 (build-system r-build-system)
11169 (propagated-inputs
11170 `(("r-fs" ,r-fs)
11171 ("r-glue" ,r-glue)
11172 ("r-httr" ,r-httr)
11173 ("r-jsonlite" ,r-jsonlite)
11174 ("r-rlang" ,r-rlang)
11175 ("r-withr" ,r-withr)))
11176 (native-inputs
11177 `(("r-knitr" ,r-knitr)))
11178 (home-page "https://gargle.r-lib.org")
11179 (synopsis "Utilities for working with Google APIs")
11180 (description
11181 "This package provides utilities for working with Google APIs. This
11182 includes functions and classes for handling common credential types and for
11183 preparing, executing, and processing HTTP requests.")
11184 (license license:expat)))
11185
11186 (define-public r-bigrquery
11187 (package
11188 (name "r-bigrquery")
11189 (version "1.3.1")
11190 (source
11191 (origin
11192 (method url-fetch)
11193 (uri (cran-uri "bigrquery" version))
11194 (sha256
11195 (base32
11196 "0mq03sqv5lkyn3dlxvyd6lqqwnryfdaqh05pjvngzp194fxmd9cy"))))
11197 (build-system r-build-system)
11198 (propagated-inputs
11199 `(("r-assertthat" ,r-assertthat)
11200 ("r-bit64" ,r-bit64)
11201 ("r-curl" ,r-curl)
11202 ("r-dbi" ,r-dbi)
11203 ("r-gargle" ,r-gargle)
11204 ("r-glue" ,r-glue)
11205 ("r-httr" ,r-httr)
11206 ("r-jsonlite" ,r-jsonlite)
11207 ("r-prettyunits" ,r-prettyunits)
11208 ("r-progress" ,r-progress)
11209 ("r-rapidjsonr" ,r-rapidjsonr)
11210 ("r-rcpp" ,r-rcpp)
11211 ("r-rlang" ,r-rlang)
11212 ("r-tibble" ,r-tibble)))
11213 (home-page "https://github.com/rstats-db/bigrquery")
11214 (synopsis "R interface to Google's BigQuery API")
11215 (description
11216 "This package provides an R interface to Google's BigQuery database.")
11217 (license license:gpl3)))
11218
11219 (define-public r-gmp
11220 (package
11221 (name "r-gmp")
11222 (version "0.6-0")
11223 (source
11224 (origin
11225 (method url-fetch)
11226 (uri (cran-uri "gmp" version))
11227 (sha256
11228 (base32
11229 "1c9vpr6j6h5f6dm9l535nscl66rvr8sba5az2kswjhmzwb9xpjxc"))))
11230 (build-system r-build-system)
11231 (arguments
11232 '(#:phases
11233 (modify-phases %standard-phases
11234 (add-after 'unpack 'set-CC
11235 (lambda _ (setenv "CC" "gcc") #t)))))
11236 (inputs `(("gmp" ,gmp)))
11237 (home-page "https://cran.r-project.org/web/packages/gmp")
11238 (synopsis "Multiple precision arithmetic")
11239 (description
11240 "This package supports multiple precision arithmetic (big integers and
11241 rationals, prime number tests, matrix computation), \"arithmetic without
11242 limitations\" using the GNU Multiple Precision library.")
11243 ;; Any version of the GPL.
11244 (license license:gpl3+)))
11245
11246 (define-public r-rmpfr
11247 (package
11248 (name "r-rmpfr")
11249 (version "0.8-1")
11250 (source
11251 (origin
11252 (method url-fetch)
11253 (uri (cran-uri "Rmpfr" version))
11254 (sha256
11255 (base32
11256 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
11257 (properties `((upstream-name . "Rmpfr")))
11258 (build-system r-build-system)
11259 (inputs
11260 `(("mpfr" ,mpfr)
11261 ("gmp" ,gmp)))
11262 (propagated-inputs
11263 `(("r-gmp" ,r-gmp)))
11264 (native-inputs
11265 `(("pkg-config" ,pkg-config)))
11266 (home-page "http://rmpfr.r-forge.r-project.org/")
11267 (synopsis "R bindings to the MPFR library")
11268 (description
11269 "This package supports arithmetic (via S4 classes and methods) for
11270 arbitrary precision floating point numbers, including transcendental
11271 functions. To this end, the package interfaces with the @dfn{Multiple
11272 Precision Floating-Point Reliable} (MPFR) library.")
11273 (license license:gpl2+)))
11274
11275 (define-public r-assertive-base
11276 (package
11277 (name "r-assertive-base")
11278 (version "0.0-7")
11279 (source
11280 (origin
11281 (method url-fetch)
11282 (uri (cran-uri "assertive.base" version))
11283 (sha256
11284 (base32
11285 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
11286 (properties
11287 `((upstream-name . "assertive.base")))
11288 (build-system r-build-system)
11289 (home-page "https://bitbucket.org/richierocks/assertive.base")
11290 (synopsis "Core of the assertive package")
11291 (description
11292 "This package provides a minimal set of predicates and assertions used by
11293 the assertive package. This is mainly for use by other package developers who
11294 want to include run-time testing features in their own packages.")
11295 (license license:gpl3+)))
11296
11297 (define-public r-assertive-properties
11298 (package
11299 (name "r-assertive-properties")
11300 (version "0.0-4")
11301 (source
11302 (origin
11303 (method url-fetch)
11304 (uri (cran-uri "assertive.properties" version))
11305 (sha256
11306 (base32
11307 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
11308 (properties
11309 `((upstream-name . "assertive.properties")))
11310 (build-system r-build-system)
11311 (propagated-inputs
11312 `(("r-assertive-base" ,r-assertive-base)))
11313 (home-page "https://bitbucket.org/richierocks/assertive.properties")
11314 (synopsis "Assertions to check properties of variables")
11315 (description
11316 "This package provides a set of predicates and assertions for checking
11317 the properties of variables, such as length, names and attributes. This is
11318 mainly for use by other package developers who want to include run-time
11319 testing features in their own packages.")
11320 (license license:gpl3+)))
11321
11322 (define-public r-assertive-numbers
11323 (package
11324 (name "r-assertive-numbers")
11325 (version "0.0-2")
11326 (source
11327 (origin
11328 (method url-fetch)
11329 (uri (cran-uri "assertive.numbers" version))
11330 (sha256
11331 (base32
11332 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
11333 (properties
11334 `((upstream-name . "assertive.numbers")))
11335 (build-system r-build-system)
11336 (propagated-inputs
11337 `(("r-assertive-base" ,r-assertive-base)))
11338 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
11339 (synopsis "Assertions to check properties of numbers")
11340 (description
11341 "This package provides a set of predicates and assertions for checking
11342 the properties of numbers. This is mainly for use by other package developers
11343 who want to include run-time testing features in their own packages.")
11344 (license license:gpl3+)))
11345
11346 (define-public r-assertive-sets
11347 (package
11348 (name "r-assertive-sets")
11349 (version "0.0-3")
11350 (source
11351 (origin
11352 (method url-fetch)
11353 (uri (cran-uri "assertive.sets" version))
11354 (sha256
11355 (base32
11356 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
11357 (properties
11358 `((upstream-name . "assertive.sets")))
11359 (build-system r-build-system)
11360 (propagated-inputs
11361 `(("r-assertive-base" ,r-assertive-base)))
11362 (home-page "https://bitbucket.org/richierocks/assertive.sets")
11363 (synopsis "Assertions to check properties of sets")
11364 (description
11365 "This package provides a set of predicates and assertions for checking
11366 the properties of sets. This is mainly for use by other package developers
11367 who want to include run-time testing features in their own packages.")
11368 (license license:gpl3+)))
11369
11370 (define-public r-assertive-matrices
11371 (package
11372 (name "r-assertive-matrices")
11373 (version "0.0-2")
11374 (source
11375 (origin
11376 (method url-fetch)
11377 (uri (cran-uri "assertive.matrices" version))
11378 (sha256
11379 (base32
11380 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
11381 (properties
11382 `((upstream-name . "assertive.matrices")))
11383 (build-system r-build-system)
11384 (propagated-inputs
11385 `(("r-assertive-base" ,r-assertive-base)))
11386 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
11387 (synopsis "Assertions to check properties of matrices")
11388 (description
11389 "This package provides a set of predicates and assertions for checking
11390 the properties of matrices. This is mainly for use by other package
11391 developers who want to include run-time testing features in their own
11392 packages.")
11393 (license license:gpl3+)))
11394
11395 (define-public r-assertive-models
11396 (package
11397 (name "r-assertive-models")
11398 (version "0.0-2")
11399 (source
11400 (origin
11401 (method url-fetch)
11402 (uri (cran-uri "assertive.models" version))
11403 (sha256
11404 (base32
11405 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
11406 (properties
11407 `((upstream-name . "assertive.models")))
11408 (build-system r-build-system)
11409 (propagated-inputs
11410 `(("r-assertive-base" ,r-assertive-base)))
11411 (home-page "https://bitbucket.org/richierocks/assertive.models")
11412 (synopsis "Assertions to check properties of models")
11413 (description
11414 "This package provides a set of predicates and assertions for checking
11415 the properties of models. This is mainly for use by other package developers
11416 who want to include run-time testing features in their own packages.")
11417 (license license:gpl3+)))
11418
11419 (define-public r-assertive-reflection
11420 (package
11421 (name "r-assertive-reflection")
11422 (version "0.0-5")
11423 (source
11424 (origin
11425 (method url-fetch)
11426 (uri (cran-uri "assertive.reflection" version))
11427 (sha256
11428 (base32
11429 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
11430 (properties
11431 `((upstream-name . "assertive.reflection")))
11432 (build-system r-build-system)
11433 (propagated-inputs
11434 `(("r-assertive-base" ,r-assertive-base)))
11435 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
11436 (synopsis "Assertions for checking the state of R")
11437 (description
11438 "This package provides a set of predicates and assertions for checking
11439 the state and capabilities of R, the operating system it is running on, and
11440 the IDE being used. This is mainly for use by other package developers who
11441 want to include run-time testing features in their own packages.")
11442 (license license:gpl3+)))
11443
11444 (define-public r-assertive-types
11445 (package
11446 (name "r-assertive-types")
11447 (version "0.0-3")
11448 (source
11449 (origin
11450 (method url-fetch)
11451 (uri (cran-uri "assertive.types" version))
11452 (sha256
11453 (base32
11454 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
11455 (properties
11456 `((upstream-name . "assertive.types")))
11457 (build-system r-build-system)
11458 (propagated-inputs
11459 `(("r-assertive-base" ,r-assertive-base)
11460 ("r-assertive-properties" ,r-assertive-properties)
11461 ("r-codetools" ,r-codetools)))
11462 (home-page "https://bitbucket.org/richierocks/assertive.types")
11463 (synopsis "Assertions to check types of variables")
11464 (description
11465 "This package provides a set of predicates and assertions for checking
11466 the types of variables. This is mainly for use by other package developers
11467 who want to include run-time testing features in their own packages.")
11468 (license license:gpl3+)))
11469
11470 (define-public r-assertive-files
11471 (package
11472 (name "r-assertive-files")
11473 (version "0.0-2")
11474 (source
11475 (origin
11476 (method url-fetch)
11477 (uri (cran-uri "assertive.files" version))
11478 (sha256
11479 (base32
11480 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
11481 (properties
11482 `((upstream-name . "assertive.files")))
11483 (build-system r-build-system)
11484 (propagated-inputs
11485 `(("r-assertive-base" ,r-assertive-base)
11486 ("r-assertive-numbers" ,r-assertive-numbers)))
11487 (home-page "https://bitbucket.org/richierocks/assertive.files")
11488 (synopsis "Assertions to check properties of files")
11489 (description
11490 "This package provides a set of predicates and assertions for checking
11491 the properties of files and connections. This is mainly for use by other
11492 package developers who want to include run-time testing features in their own
11493 packages.")
11494 (license license:gpl3+)))
11495
11496 (define-public r-assertive-code
11497 (package
11498 (name "r-assertive-code")
11499 (version "0.0-3")
11500 (source
11501 (origin
11502 (method url-fetch)
11503 (uri (cran-uri "assertive.code" version))
11504 (sha256
11505 (base32
11506 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11507 (properties
11508 `((upstream-name . "assertive.code")))
11509 (build-system r-build-system)
11510 (propagated-inputs
11511 `(("r-assertive-base" ,r-assertive-base)
11512 ("r-assertive-properties" ,r-assertive-properties)
11513 ("r-assertive-types" ,r-assertive-types)))
11514 (home-page "https://bitbucket.org/richierocks/assertive.code")
11515 (synopsis "Assertions to check properties of code")
11516 (description
11517 "This package provides a set of predicates and assertions for checking
11518 the properties of code. This is mainly for use by other package developers
11519 who want to include run-time testing features in their own packages.")
11520 (license license:gpl3+)))
11521
11522 (define-public r-assertive-datetimes
11523 (package
11524 (name "r-assertive-datetimes")
11525 (version "0.0-3")
11526 (source
11527 (origin
11528 (method url-fetch)
11529 (uri (cran-uri "assertive.datetimes" version))
11530 (sha256
11531 (base32
11532 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
11533 (properties
11534 `((upstream-name . "assertive.datetimes")))
11535 (build-system r-build-system)
11536 (propagated-inputs
11537 `(("r-assertive-base" ,r-assertive-base)
11538 ("r-assertive-types" ,r-assertive-types)))
11539 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11540 (synopsis "Assertions to check properties of dates and times")
11541 (description
11542 "This package provides a set of predicates and assertions for checking
11543 the properties of dates and times. This is mainly for use by other package
11544 developers who want to include run-time testing features in their own
11545 packages.")
11546 (license license:gpl3+)))
11547
11548 (define-public r-assertive-strings
11549 (package
11550 (name "r-assertive-strings")
11551 (version "0.0-3")
11552 (source
11553 (origin
11554 (method url-fetch)
11555 (uri (cran-uri "assertive.strings" version))
11556 (sha256
11557 (base32
11558 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11559 (properties
11560 `((upstream-name . "assertive.strings")))
11561 (build-system r-build-system)
11562 (propagated-inputs
11563 `(("r-assertive-base" ,r-assertive-base)
11564 ("r-assertive-types" ,r-assertive-types)
11565 ("r-stringi" ,r-stringi)))
11566 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11567 (synopsis "Assertions to check properties of strings")
11568 (description
11569 "This package provides a set of predicates and assertions for checking
11570 the properties of strings. This is mainly for use by other package developers
11571 who want to include run-time testing features in their own packages.")
11572 (license license:gpl3+)))
11573
11574 (define-public r-assertive-data-us
11575 (package
11576 (name "r-assertive-data-us")
11577 (version "0.0-2")
11578 (source
11579 (origin
11580 (method url-fetch)
11581 (uri (cran-uri "assertive.data.us" version))
11582 (sha256
11583 (base32
11584 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11585 (properties
11586 `((upstream-name . "assertive.data.us")))
11587 (build-system r-build-system)
11588 (propagated-inputs
11589 `(("r-assertive-base" ,r-assertive-base)
11590 ("r-assertive-strings" ,r-assertive-strings)))
11591 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11592 (synopsis "Assertions to check properties of strings")
11593 (description
11594 "This package provides a set of predicates and assertions for checking
11595 the properties of US-specific complex data types. This is mainly for use by
11596 other package developers who want to include run-time testing features in
11597 their own packages.")
11598 (license license:gpl3+)))
11599
11600 (define-public r-assertive-data-uk
11601 (package
11602 (name "r-assertive-data-uk")
11603 (version "0.0-2")
11604 (source
11605 (origin
11606 (method url-fetch)
11607 (uri (cran-uri "assertive.data.uk" version))
11608 (sha256
11609 (base32
11610 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11611 (properties
11612 `((upstream-name . "assertive.data.uk")))
11613 (build-system r-build-system)
11614 (propagated-inputs
11615 `(("r-assertive-base" ,r-assertive-base)
11616 ("r-assertive-strings" ,r-assertive-strings)))
11617 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11618 (synopsis "Assertions to check properties of strings")
11619 (description
11620 "This package provides a set of predicates and assertions for checking
11621 the properties of UK-specific complex data types. This is mainly for use by
11622 other package developers who want to include run-time testing features in
11623 their own packages.")
11624 (license license:gpl3+)))
11625
11626 (define-public r-assertive-data
11627 (package
11628 (name "r-assertive-data")
11629 (version "0.0-3")
11630 (source
11631 (origin
11632 (method url-fetch)
11633 (uri (cran-uri "assertive.data" version))
11634 (sha256
11635 (base32
11636 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11637 (properties
11638 `((upstream-name . "assertive.data")))
11639 (build-system r-build-system)
11640 (propagated-inputs
11641 `(("r-assertive-base" ,r-assertive-base)
11642 ("r-assertive-strings" ,r-assertive-strings)))
11643 (home-page "https://bitbucket.org/richierocks/assertive.data")
11644 (synopsis "Assertions to check properties of data")
11645 (description
11646 "This package provides a set of predicates and assertions for checking
11647 the properties of (country independent) complex data types. This is mainly
11648 for use by other package developers who want to include run-time testing
11649 features in their own packages.")
11650 (license license:gpl3+)))
11651
11652 (define-public r-assertive
11653 (package
11654 (name "r-assertive")
11655 (version "0.3-6")
11656 (source
11657 (origin
11658 (method url-fetch)
11659 (uri (cran-uri "assertive" version))
11660 (sha256
11661 (base32
11662 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
11663 (build-system r-build-system)
11664 (propagated-inputs
11665 `(("r-assertive-base" ,r-assertive-base)
11666 ("r-assertive-code" ,r-assertive-code)
11667 ("r-assertive-data" ,r-assertive-data)
11668 ("r-assertive-data-uk" ,r-assertive-data-uk)
11669 ("r-assertive-data-us" ,r-assertive-data-us)
11670 ("r-assertive-datetimes" ,r-assertive-datetimes)
11671 ("r-assertive-files" ,r-assertive-files)
11672 ("r-assertive-matrices" ,r-assertive-matrices)
11673 ("r-assertive-models" ,r-assertive-models)
11674 ("r-assertive-numbers" ,r-assertive-numbers)
11675 ("r-assertive-properties" ,r-assertive-properties)
11676 ("r-assertive-reflection" ,r-assertive-reflection)
11677 ("r-assertive-sets" ,r-assertive-sets)
11678 ("r-assertive-strings" ,r-assertive-strings)
11679 ("r-assertive-types" ,r-assertive-types)
11680 ("r-knitr" ,r-knitr)))
11681 (native-inputs
11682 `(("r-knitr" ,r-knitr)))
11683 (home-page "https://bitbucket.org/richierocks/assertive")
11684 (synopsis "Readable check functions to ensure code integrity")
11685 (description
11686 "This package provides lots of predicates (@code{is_*} functions) to
11687 check the state of your variables, and assertions (@code{assert_*} functions)
11688 to throw errors if they aren't in the right form.")
11689 (license license:gpl3+)))
11690
11691 (define-public r-dotcall64
11692 (package
11693 (name "r-dotcall64")
11694 (version "1.0-0")
11695 (source
11696 (origin
11697 (method url-fetch)
11698 (uri (cran-uri "dotCall64" version))
11699 (sha256
11700 (base32
11701 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11702 (properties `((upstream-name . "dotCall64")))
11703 (build-system r-build-system)
11704 (native-inputs `(("gfortran" ,gfortran)))
11705 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11706 (synopsis "Enhanced foreign function interface supporting long vectors")
11707 (description
11708 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11709 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11710 supports long vectors, arguments of type 64-bit integer, and provides a
11711 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11712 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11713 (license license:gpl2+)))
11714
11715 (define-public r-spam
11716 (package
11717 (name "r-spam")
11718 (version "2.5-1")
11719 (source
11720 (origin
11721 (method url-fetch)
11722 (uri (cran-uri "spam" version))
11723 (sha256
11724 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11725 (build-system r-build-system)
11726 (propagated-inputs
11727 `(("r-dotcall64" ,r-dotcall64)))
11728 (native-inputs `(("gfortran" ,gfortran)))
11729 (home-page "https://www.math.uzh.ch/pages/spam/")
11730 (synopsis "Sparse matrix algebra")
11731 (description
11732 "This package provides a set of functions for sparse matrix algebra.
11733 Differences with other sparse matrix packages are:
11734
11735 @enumerate
11736 @item it only supports (essentially) one sparse matrix format;
11737 @item it is based on transparent and simple structure(s);
11738 @item it is tailored for MCMC calculations within G(M)RF;
11739 @item and it is fast and scalable (with the extension package @code{spam64}).
11740 @end enumerate\n")
11741 ;; Either of these licenses
11742 (license (list license:bsd-3 license:lgpl2.0))))
11743
11744 (define-public r-fields
11745 (package
11746 (name "r-fields")
11747 (version "10.3")
11748 (source
11749 (origin
11750 (method url-fetch)
11751 (uri (cran-uri "fields" version))
11752 (sha256
11753 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11754 (build-system r-build-system)
11755 (propagated-inputs
11756 `(("r-maps" ,r-maps)
11757 ("r-spam" ,r-spam)))
11758 (native-inputs
11759 `(("gfortran" ,gfortran)))
11760 (home-page "https://www.image.ucar.edu/fields")
11761 (synopsis "Tools for spatial data")
11762 (description
11763 "This is a package for curve, surface and function fitting with an
11764 emphasis on splines, spatial data and spatial statistics. The major methods
11765 include cubic, and thin plate splines, Kriging, and compactly supported
11766 covariance functions for large data sets.")
11767 (license license:gpl2+)))
11768
11769 (define-public r-spatialextremes
11770 (package
11771 (name "r-spatialextremes")
11772 (version "2.0-8")
11773 (source
11774 (origin
11775 (method url-fetch)
11776 (uri (cran-uri "SpatialExtremes" version))
11777 (sha256
11778 (base32
11779 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11780 (properties
11781 `((upstream-name . "SpatialExtremes")))
11782 (build-system r-build-system)
11783 (propagated-inputs
11784 `(("r-fields" ,r-fields)
11785 ("r-maps" ,r-maps)))
11786 (home-page "http://spatialextremes.r-forge.r-project.org/")
11787 (synopsis "Modelling spatial extremes")
11788 (description
11789 "This package provides tools for the statistical modelling of spatial
11790 extremes using max-stable processes, copula or Bayesian hierarchical models.
11791 More precisely, this package allows (conditional) simulations from various
11792 parametric max-stable models, analysis of the extremal spatial dependence, the
11793 fitting of such processes using composite likelihoods or least square (simple
11794 max-stable processes only), model checking and selection and prediction.")
11795 (license license:gpl2+)))
11796
11797 (define-public r-drc
11798 (package
11799 (name "r-drc")
11800 (version "3.0-1")
11801 (source
11802 (origin
11803 (method url-fetch)
11804 (uri (cran-uri "drc" version))
11805 (sha256
11806 (base32
11807 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11808 (build-system r-build-system)
11809 (propagated-inputs
11810 `(("r-car" ,r-car)
11811 ("r-gtools" ,r-gtools)
11812 ("r-mass" ,r-mass)
11813 ("r-multcomp" ,r-multcomp)
11814 ("r-plotrix" ,r-plotrix)
11815 ("r-scales" ,r-scales)))
11816 (home-page "https://cran.r-project.org/web/packages/drc")
11817 (synopsis "Analysis of dose-response curves")
11818 (description
11819 "This package provides a suite of flexible and versatile model fitting
11820 and after-fitting functions for the analysis of dose-response data.")
11821 (license license:gpl2+)))
11822
11823 (define-public r-rmeta
11824 (package
11825 (name "r-rmeta")
11826 (version "3.0")
11827 (source
11828 (origin
11829 (method url-fetch)
11830 (uri (cran-uri "rmeta" version))
11831 (sha256
11832 (base32
11833 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11834 (build-system r-build-system)
11835 (home-page "https://cran.r-project.org/web/packages/rmeta")
11836 (synopsis "Tools for meta-analysis")
11837 (description
11838 "This package provides functions for simple fixed and random effects
11839 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11840 draws standard summary plots, funnel plots, and computes summaries and tests
11841 for association and heterogeneity.")
11842 (license license:gpl2)))
11843
11844 (define-public r-bootstrap
11845 (package
11846 (name "r-bootstrap")
11847 (version "2019.6")
11848 (source
11849 (origin
11850 (method url-fetch)
11851 (uri (cran-uri "bootstrap" version))
11852 (sha256
11853 (base32
11854 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11855 (build-system r-build-system)
11856 (native-inputs `(("gfortran" ,gfortran)))
11857 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11858 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11859 (description
11860 "This package provides software and data for the book \"An Introduction
11861 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11862 This package is primarily provided for projects already based on it, and for
11863 support of the book. New projects should preferentially use the recommended
11864 package \"boot\".")
11865 (license license:bsd-3)))
11866
11867 (define-public r-survivalroc
11868 (package
11869 (name "r-survivalroc")
11870 (version "1.0.3")
11871 (source
11872 (origin
11873 (method url-fetch)
11874 (uri (cran-uri "survivalROC" version))
11875 (sha256
11876 (base32
11877 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11878 (properties `((upstream-name . "survivalROC")))
11879 (build-system r-build-system)
11880 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11881 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11882 (description
11883 "Compute time-dependent ROC curve from censored survival data using
11884 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11885 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11886 (license license:gpl2+)))
11887
11888 (define-public r-longitudinal
11889 (package
11890 (name "r-longitudinal")
11891 (version "1.1.12")
11892 (source
11893 (origin
11894 (method url-fetch)
11895 (uri (cran-uri "longitudinal" version))
11896 (sha256
11897 (base32
11898 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11899 (build-system r-build-system)
11900 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11901 (home-page "http://strimmerlab.org/software/longitudinal/")
11902 (synopsis "Analysis of multiple time course data")
11903 (description
11904 "This package contains general data structures and functions for
11905 longitudinal data with multiple variables, repeated measurements, and
11906 irregularly spaced time points. It also implements a shrinkage estimator of
11907 dynamical correlation and dynamical covariance.")
11908 (license license:gpl3+)))
11909
11910 (define-public r-genenet
11911 (package
11912 (name "r-genenet")
11913 (version "1.2.15")
11914 (source
11915 (origin
11916 (method url-fetch)
11917 (uri (cran-uri "GeneNet" version))
11918 (sha256
11919 (base32
11920 "11ba6ahsk3x9alvcw8bai2bpg84ki1m8nadrjjdhjg65svhw8njm"))))
11921 (properties `((upstream-name . "GeneNet")))
11922 (build-system r-build-system)
11923 (propagated-inputs
11924 `(("r-corpcor" ,r-corpcor)
11925 ("r-fdrtool" ,r-fdrtool)
11926 ("r-longitudinal" ,r-longitudinal)))
11927 (home-page "http://strimmerlab.org/software/genenet/")
11928 (synopsis "Modeling and inferring gene networks")
11929 (description
11930 "This package analyzes gene expression (time series) data with focus on
11931 the inference of gene networks. In particular, GeneNet implements the methods
11932 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11933 for learning large-scale gene association networks (including assignment of
11934 putative directions).")
11935 (license license:gpl3+)))
11936
11937 (define-public r-rbamtools
11938 (package
11939 (name "r-rbamtools")
11940 (version "2.16.17")
11941 (source
11942 (origin
11943 (method url-fetch)
11944 (uri (cran-uri "rbamtools" version))
11945 (sha256
11946 (base32
11947 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11948 (build-system r-build-system)
11949 (inputs `(("zlib" ,zlib)))
11950 (propagated-inputs
11951 `(("r-refgenome" ,r-refgenome)))
11952 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11953 (synopsis "Read and write BAM (binary alignment) files")
11954 (description
11955 "This package provides an R interface to functions of the SAMtools
11956 library.")
11957 (license license:artistic2.0)))
11958
11959 (define-public r-protviz
11960 (package
11961 (name "r-protviz")
11962 (version "0.6.8")
11963 (source
11964 (origin
11965 (method url-fetch)
11966 (uri (cran-uri "protViz" version))
11967 (sha256
11968 (base32
11969 "0rn8fjg7791a4j2k1kk1jwx40xz20bfaavvflmhyzpl398vmmy3a"))))
11970 (properties `((upstream-name . "protViz")))
11971 (build-system r-build-system)
11972 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11973 (home-page "https://github.com/protViz/protViz/")
11974 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11975 (description
11976 "This package helps with quality checks, visualizations and analysis of
11977 mass spectrometry data, coming from proteomics experiments. The package is
11978 developed, tested and used at the Functional Genomics Center Zurich, where it
11979 is used mainly for prototyping, teaching, and having fun with proteomics data.
11980 But it can also be used to do data analysis for small scale data sets.")
11981 (license license:gpl3)))
11982
11983 (define-public r-cmprsk
11984 (package
11985 (name "r-cmprsk")
11986 (version "2.2-10")
11987 (source
11988 (origin
11989 (method url-fetch)
11990 (uri (cran-uri "cmprsk" version))
11991 (sha256
11992 (base32 "1xnx2zanw548prxsw2zw5cddkkg6kj97jgyzw67achq5mnsvfbg8"))))
11993 (build-system r-build-system)
11994 (propagated-inputs
11995 `(("r-survival" ,r-survival)))
11996 (native-inputs
11997 `(("gfortran" ,gfortran)))
11998 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11999 (synopsis "Subdistribution analysis of competing risks")
12000 (description
12001 "This package provides tool for estimation, testing and regression
12002 modeling of subdistribution functions in competing risks, as described in
12003 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
12004 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
12005 A proportional hazards model for the subdistribution of a competing risk,
12006 JASA, 94:496-509.")
12007 (license license:gpl2+)))
12008
12009 (define-public r-etm
12010 (package
12011 (name "r-etm")
12012 (version "1.1")
12013 (source
12014 (origin
12015 (method url-fetch)
12016 (uri (cran-uri "etm" version))
12017 (sha256
12018 (base32
12019 "02yvh473l5qajaymhsxwb235a9r7q3nsig9a9mrfca68xih8yvgd"))))
12020 (build-system r-build-system)
12021 (propagated-inputs
12022 `(("r-data-table" ,r-data-table)
12023 ("r-lattice" ,r-lattice)
12024 ("r-rcpp" ,r-rcpp)
12025 ("r-rcpparmadillo" ,r-rcpparmadillo)
12026 ("r-survival" ,r-survival)))
12027 (home-page "https://cran.r-project.org/web/packages/etm")
12028 (synopsis "Empirical transition matrix")
12029 (description
12030 "The @dfn{empirical transition matrix} (etm) package estimates
12031 the matrix of transition probabilities for any time-inhomogeneous multistate
12032 model with finite state space using the Aalen-Johansen estimator.")
12033 (license license:expat)))
12034
12035 (define-public r-epi
12036 (package
12037 (name "r-epi")
12038 (version "2.41")
12039 (source
12040 (origin
12041 (method url-fetch)
12042 (uri (cran-uri "Epi" version))
12043 (sha256
12044 (base32
12045 "09miba6zk63bwc79n3030kgzlvy3whkq968pgqyghxnsjfh5ckp5"))))
12046 (properties `((upstream-name . "Epi")))
12047 (build-system r-build-system)
12048 (propagated-inputs
12049 `(("r-cmprsk" ,r-cmprsk)
12050 ("r-data-table" ,r-data-table)
12051 ("r-etm" ,r-etm)
12052 ("r-mass" ,r-mass)
12053 ("r-matrix" ,r-matrix)
12054 ("r-mgcv" ,r-mgcv)
12055 ("r-numderiv" ,r-numderiv)
12056 ("r-plyr" ,r-plyr)
12057 ("r-survival" ,r-survival)
12058 ("r-zoo" ,r-zoo)))
12059 (home-page "https://BendixCarstensen.com/Epi/")
12060 (synopsis "Statistical analysis in epidemiology")
12061 (description
12062 "This package provides functions for demographic and epidemiological
12063 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
12064 particular representation, manipulation and simulation of multistate data -
12065 the Lexis suite of functions, which includes interfaces to the @code{mstate},
12066 @code{etm} and @code{cmprsk} packages. It also contains functions for
12067 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
12068 data and some useful functions for tabulation and plotting, as well as a
12069 number of epidemiological data sets.")
12070 (license license:gpl2)))
12071
12072 (define-public r-ppls
12073 (package
12074 (name "r-ppls")
12075 (version "1.6-1.1")
12076 (source
12077 (origin
12078 (method url-fetch)
12079 (uri (cran-uri "ppls" version))
12080 (sha256
12081 (base32
12082 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
12083 (build-system r-build-system)
12084 (propagated-inputs `(("r-mass" ,r-mass)))
12085 (home-page "https://cran.r-project.org/web/packages/ppls")
12086 (synopsis "Penalized partial least squares")
12087 (description
12088 "This package contains linear and nonlinear regression methods based on
12089 partial least squares and penalization techniques. Model parameters are
12090 selected via cross-validation, and confidence intervals ans tests for the
12091 regression coefficients can be conducted via jackknifing.")
12092 (license license:gpl2+)))
12093
12094 (define-public r-huge
12095 (package
12096 (name "r-huge")
12097 (version "1.3.4.1")
12098 (source
12099 (origin
12100 (method url-fetch)
12101 (uri (cran-uri "huge" version))
12102 (sha256
12103 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
12104 (build-system r-build-system)
12105 (propagated-inputs
12106 `(("r-igraph" ,r-igraph)
12107 ("r-mass" ,r-mass)
12108 ("r-matrix" ,r-matrix)
12109 ("r-rcpp" ,r-rcpp)
12110 ("r-rcppeigen" ,r-rcppeigen)))
12111 (home-page "https://cran.r-project.org/web/packages/huge")
12112 (synopsis "High-dimensional undirected graph estimation")
12113 (description
12114 "This package provides a general framework for high-dimensional
12115 undirected graph estimation. It integrates data preprocessing, neighborhood
12116 screening, graph estimation, and model selection techniques into a pipeline.")
12117 (license license:gpl2)))
12118
12119 (define-public r-parcor
12120 (package
12121 (name "r-parcor")
12122 (version "0.2-6")
12123 (source
12124 (origin
12125 (method url-fetch)
12126 (uri (cran-uri "parcor" version))
12127 (sha256
12128 (base32
12129 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
12130 (build-system r-build-system)
12131 (propagated-inputs
12132 `(("r-epi" ,r-epi)
12133 ("r-genenet" ,r-genenet)
12134 ("r-glmnet" ,r-glmnet)
12135 ("r-mass" ,r-mass)
12136 ("r-ppls" ,r-ppls)))
12137 (home-page "https://cran.r-project.org/web/packages/parcor")
12138 (synopsis "Regularized estimation of partial correlation matrices")
12139 (description
12140 "This package estimates the matrix of partial correlations based on
12141 different regularized regression methods: lasso, adaptive lasso, PLS, and
12142 Ridge Regression. In addition, the package provides model selection for
12143 lasso, adaptive lasso and Ridge regression based on cross-validation.")
12144 (license license:gpl2+)))
12145
12146 (define-public r-mcmc
12147 (package
12148 (name "r-mcmc")
12149 (version "0.9-7")
12150 (source
12151 (origin
12152 (method url-fetch)
12153 (uri (cran-uri "mcmc" version))
12154 (sha256
12155 (base32
12156 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
12157 (build-system r-build-system)
12158 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
12159 (synopsis "Markov chain Monte Carlo")
12160 (description
12161 "This package simulates continuous distributions of random vectors using
12162 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
12163 function that evaluates the log unnormalized density. Algorithms are random
12164 walk Metropolis algorithm (function @code{metrop}), simulated
12165 tempering (function @code{temper}), and morphometric random walk
12166 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
12167 by change of variable.")
12168 (license license:expat)))
12169
12170 (define-public r-listenv
12171 (package
12172 (name "r-listenv")
12173 (version "0.8.0")
12174 (source
12175 (origin
12176 (method url-fetch)
12177 (uri (cran-uri "listenv" version))
12178 (sha256
12179 (base32
12180 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
12181 (build-system r-build-system)
12182 (native-inputs
12183 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12184 (home-page "https://github.com/HenrikBengtsson/listenv")
12185 (synopsis "Environments behaving (almost) as lists")
12186 (description
12187 "This package implements list environments. List environments are
12188 environments that have list-like properties. For instance, the elements of a
12189 list environment are ordered and can be accessed and iterated over using index
12190 subsetting.")
12191 (license license:lgpl2.1+)))
12192
12193 (define-public r-globals
12194 (package
12195 (name "r-globals")
12196 (version "0.12.5")
12197 (source
12198 (origin
12199 (method url-fetch)
12200 (uri (cran-uri "globals" version))
12201 (sha256
12202 (base32
12203 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
12204 (build-system r-build-system)
12205 (propagated-inputs
12206 `(("r-codetools" ,r-codetools)))
12207 (home-page "https://github.com/HenrikBengtsson/globals")
12208 (synopsis "Identify global objects in R expressions")
12209 (description
12210 "This package provides tools to identify global (\"unknown\" or \"free\")
12211 objects in R expressions by code inspection using various strategies, e.g.
12212 conservative or liberal. The objective of this package is to make it as
12213 simple as possible to identify global objects for the purpose of exporting
12214 them in distributed compute environments.")
12215 (license license:lgpl2.1+)))
12216
12217 (define-public r-future
12218 (package
12219 (name "r-future")
12220 (version "1.18.0")
12221 (source
12222 (origin
12223 (method url-fetch)
12224 (uri (cran-uri "future" version))
12225 (sha256
12226 (base32
12227 "01fp8kgjf0k6c83q1w3dy9z90g72cc9d0004d1qw6n1j65nwxg4f"))))
12228 (build-system r-build-system)
12229 (propagated-inputs
12230 `(("r-digest" ,r-digest)
12231 ("r-globals" ,r-globals)
12232 ("r-listenv" ,r-listenv)))
12233 (native-inputs
12234 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12235 (home-page "https://github.com/HenrikBengtsson/future")
12236 (synopsis "Unified parallel and distributed processing in R")
12237 (description
12238 "The purpose of this package is to provide a lightweight and unified
12239 Future API for sequential and parallel processing of R expression via futures.
12240 This package implements sequential, multicore, multisession, and cluster
12241 futures. With these, R expressions can be evaluated on the local machine, in
12242 parallel a set of local machines, or distributed on a mix of local and remote
12243 machines. Extensions to this package implement additional backends for
12244 processing futures via compute cluster schedulers etc. Because of its unified
12245 API, there is no need to modify any code in order to switch from sequential on
12246 the local machine to, say, distributed processing on a remote compute cluster.")
12247 (license license:lgpl2.1+)))
12248
12249 (define-public r-future-apply
12250 (package
12251 (name "r-future-apply")
12252 (version "1.6.0")
12253 (source
12254 (origin
12255 (method url-fetch)
12256 (uri (cran-uri "future.apply" version))
12257 (sha256
12258 (base32
12259 "1zbfycjfvxnrigm6l2fd2zgnw96g0apiw426c73gkv3xv7bdy6ms"))))
12260 (properties `((upstream-name . "future.apply")))
12261 (build-system r-build-system)
12262 (propagated-inputs
12263 `(("r-future" ,r-future)
12264 ("r-globals" ,r-globals)))
12265 (native-inputs
12266 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12267 (home-page "https://github.com/HenrikBengtsson/future.apply")
12268 (synopsis "Apply function to elements in parallel using futures")
12269 (description
12270 "This package provides implementations of @code{apply()},
12271 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
12272 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
12273 can be resolved using any future-supported backend, e.g. parallel on the local
12274 machine or distributed on a compute cluster.")
12275 (license license:gpl2+)))
12276
12277 (define-public r-rsvd
12278 (package
12279 (name "r-rsvd")
12280 (version "1.0.3")
12281 (source
12282 (origin
12283 (method url-fetch)
12284 (uri (cran-uri "rsvd" version))
12285 (sha256
12286 (base32
12287 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
12288 (build-system r-build-system)
12289 (propagated-inputs
12290 `(("r-matrix" ,r-matrix)))
12291 (home-page "https://github.com/erichson/rSVD")
12292 (synopsis "Randomized singular value decomposition")
12293 (description
12294 "Low-rank matrix decompositions are fundamental tools and widely used for
12295 data analysis, dimension reduction, and data compression. Classically, highly
12296 accurate deterministic matrix algorithms are used for this task. However, the
12297 emergence of large-scale data has severely challenged our computational
12298 ability to analyze big data. The concept of randomness has been demonstrated
12299 as an effective strategy to quickly produce approximate answers to familiar
12300 problems such as the @dfn{singular value decomposition} (SVD). This package
12301 provides several randomized matrix algorithms such as the randomized singular
12302 value decomposition (@code{rsvd}), randomized principal component
12303 analysis (@code{rpca}), randomized robust principal component
12304 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
12305 and the randomized CUR decomposition (@code{rcur}). In addition several plot
12306 functions are provided.")
12307 (license license:gpl3+)))
12308
12309 (define-public r-sloop
12310 (package
12311 (name "r-sloop")
12312 (version "1.0.1")
12313 (source
12314 (origin
12315 (method url-fetch)
12316 (uri (cran-uri "sloop" version))
12317 (sha256
12318 (base32
12319 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
12320 (build-system r-build-system)
12321 (propagated-inputs
12322 `(("r-codetools" ,r-codetools)
12323 ("r-crayon" ,r-crayon)
12324 ("r-purrr" ,r-purrr)
12325 ("r-rlang" ,r-rlang)
12326 ("r-tibble" ,r-tibble)))
12327 (home-page "https://github.com/r-lib/sloop")
12328 (synopsis "Helpers for object-oriented programming in R")
12329 (description
12330 "This package provides a collection of helper functions designed to
12331 help you to better understand object oriented programming in R, particularly
12332 using @code{S3}.")
12333 (license license:gpl3)))
12334
12335 (define-public r-capushe
12336 (package
12337 (name "r-capushe")
12338 (version "1.1.1")
12339 (source
12340 (origin
12341 (method url-fetch)
12342 (uri (cran-uri "capushe" version))
12343 (sha256
12344 (base32
12345 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
12346 (build-system r-build-system)
12347 (propagated-inputs `(("r-mass" ,r-mass)))
12348 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
12349 (synopsis "Calibrating penalties using slope heuristics")
12350 (description
12351 "This package provides tools for the calibration of penalized criteria
12352 for model selection. The calibration methods available are based on the slope
12353 heuristics.")
12354 (license license:gpl2+)))
12355
12356 (define-public r-dorng
12357 (package
12358 (name "r-dorng")
12359 (version "1.8.2")
12360 (source
12361 (origin
12362 (method url-fetch)
12363 (uri (cran-uri "doRNG" version))
12364 (sha256
12365 (base32
12366 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
12367 (properties `((upstream-name . "doRNG")))
12368 (build-system r-build-system)
12369 (propagated-inputs
12370 `(("r-foreach" ,r-foreach)
12371 ("r-iterators" ,r-iterators)
12372 ("r-rngtools" ,r-rngtools)))
12373 (home-page "https://renozao.github.io/doRNG/")
12374 (synopsis "Generic reproducible parallel backend for foreach loops")
12375 (description
12376 "This package provides functions to perform reproducible parallel
12377 @code{foreach} loops, using independent random streams as generated by
12378 L'Ecuyer's combined multiple-recursive generator. It enables to easily
12379 convert standard @code{%dopar%} loops into fully reproducible loops,
12380 independently of the number of workers, the task scheduling strategy, or the
12381 chosen parallel environment and associated foreach backend.")
12382 (license license:gpl2+)))
12383
12384 (define-public r-blockmodeling
12385 (package
12386 (name "r-blockmodeling")
12387 (version "1.0.0")
12388 (source
12389 (origin
12390 (method url-fetch)
12391 (uri (cran-uri "blockmodeling" version))
12392 (sha256
12393 (base32
12394 "1z4w2kq0id0gb5d0lqcdaw3clplhzywarkpvvx3drivdypzl237i"))))
12395 (build-system r-build-system)
12396 (propagated-inputs
12397 `(("r-matrix" ,r-matrix)))
12398 (native-inputs `(("gfortran" ,gfortran)))
12399 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
12400 (synopsis "Generalized and classical blockmodeling of valued networks")
12401 (description
12402 "This package is primarily meant as an implementation of generalized
12403 blockmodeling for valued networks. In addition, measures of similarity or
12404 dissimilarity based on structural equivalence and regular equivalence (REGE
12405 algorithms) can be computed and partitioned matrices can be plotted.")
12406 (license license:gpl2+)))
12407
12408 (define-public r-upsetr
12409 (package
12410 (name "r-upsetr")
12411 (version "1.4.0")
12412 (source
12413 (origin
12414 (method url-fetch)
12415 (uri (cran-uri "UpSetR" version))
12416 (sha256
12417 (base32
12418 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
12419 (properties `((upstream-name . "UpSetR")))
12420 (build-system r-build-system)
12421 (propagated-inputs
12422 `(("r-ggplot2" ,r-ggplot2)
12423 ("r-gridextra" ,r-gridextra)
12424 ("r-plyr" ,r-plyr)
12425 ("r-scales" ,r-scales)))
12426 (home-page "https://github.com/hms-dbmi/UpSetR")
12427 (synopsis "Visualize intersecting sets")
12428 (description
12429 "This package provides a more scalable alternative to Venn and Euler
12430 diagrams for visualizing intersecting sets. Create visualizations of
12431 intersecting sets using a novel matrix design, along with visualizations of
12432 several common set, element and attribute related tasks.")
12433 (license license:expat)))
12434
12435 ;; This package includes a JavaScript file, which is not minified. When
12436 ;; upgrading please check that there are no new minified JavaScript files.
12437 (define-public r-shinybs
12438 (package
12439 (name "r-shinybs")
12440 (version "0.61")
12441 (source
12442 (origin
12443 (method url-fetch)
12444 (uri (cran-uri "shinyBS" version))
12445 (sha256
12446 (base32
12447 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
12448 (properties `((upstream-name . "shinyBS")))
12449 (build-system r-build-system)
12450 ;; The tests spawn Shiny browser apps. They cannot be run
12451 ;; non-interactively.
12452 (arguments '(#:tests? #f))
12453 (propagated-inputs
12454 `(("r-htmltools" ,r-htmltools)
12455 ("r-shiny" ,r-shiny)))
12456 (home-page "https://ebailey78.github.io/shinyBS/")
12457 (synopsis "Twitter Bootstrap components for Shiny")
12458 (description
12459 "This package adds additional Twitter Bootstrap components to Shiny.")
12460 (license license:gpl3)))
12461
12462 (define-public r-outliers
12463 (package
12464 (name "r-outliers")
12465 (version "0.14")
12466 (source
12467 (origin
12468 (method url-fetch)
12469 (uri (cran-uri "outliers" version))
12470 (sha256
12471 (base32
12472 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
12473 (build-system r-build-system)
12474 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
12475 (synopsis "Tests for outliers")
12476 (description
12477 "This package provides a collection of some tests commonly used for
12478 identifying outliers.")
12479 (license license:gpl2+)))
12480
12481 (define-public r-bayesm
12482 (package
12483 (name "r-bayesm")
12484 (version "3.1-4")
12485 (source
12486 (origin
12487 (method url-fetch)
12488 (uri (cran-uri "bayesm" version))
12489 (sha256
12490 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
12491 (build-system r-build-system)
12492 (propagated-inputs
12493 `(("r-rcpp" ,r-rcpp)
12494 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12495 (home-page "http://www.perossi.org/home/bsm-1")
12496 (synopsis "Bayesian inference for marketing/micro-econometrics")
12497 (description
12498 "This package covers many important models used in marketing and
12499 micro-econometrics applications, including Bayes Regression (univariate or
12500 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12501 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12502 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12503 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12504 Estimation with normal base, Hierarchical Linear Models with normal prior and
12505 covariates, Hierarchical Linear Models with a mixture of normals prior and
12506 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12507 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12508 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12509 analysis of choice-based conjoint data, Bayesian treatment of linear
12510 instrumental variables models, Analysis of Multivariate Ordinal survey data
12511 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12512 Coefficient Logit Models.")
12513 (license license:gpl2+)))
12514
12515 (define-public r-tensora
12516 (package
12517 (name "r-tensora")
12518 (version "0.36.1")
12519 (source
12520 (origin
12521 (method url-fetch)
12522 (uri (cran-uri "tensorA" version))
12523 (sha256
12524 (base32
12525 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12526 (properties `((upstream-name . "tensorA")))
12527 (build-system r-build-system)
12528 (home-page "http://www.stat.boogaart.de/tensorA")
12529 (synopsis "Advanced tensor arithmetic with named indices")
12530 (description
12531 "This package provides convenience functions for advanced linear algebra
12532 with tensors and computation with datasets of tensors on a higher level
12533 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12534 co- and contravariate indices, and parallel computations on sequences of
12535 tensors.")
12536 (license license:gpl2+)))
12537
12538 (define-public r-rarpack
12539 (package
12540 (name "r-rarpack")
12541 (version "0.11-0")
12542 (source
12543 (origin
12544 (method url-fetch)
12545 (uri (cran-uri "rARPACK" version))
12546 (sha256
12547 (base32
12548 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12549 (properties `((upstream-name . "rARPACK")))
12550 (build-system r-build-system)
12551 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12552 (home-page "https://github.com/yixuan/rARPACK")
12553 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12554 (description
12555 "This package was previously an R wrapper of the ARPACK library, and now
12556 a shell of the R package RSpectra, an R interface to the Spectra library for
12557 solving large scale eigenvalue/vector problems. The current version of
12558 rARPACK simply imports and exports the functions provided by RSpectra. New
12559 users of rARPACK are advised to switch to the RSpectra package.")
12560 (license license:bsd-3)))
12561
12562 (define-public r-compositions
12563 (package
12564 (name "r-compositions")
12565 (version "2.0-0")
12566 (source
12567 (origin
12568 (method url-fetch)
12569 (uri (cran-uri "compositions" version))
12570 (sha256
12571 (base32
12572 "0xsx4n699q2r4pk2jrvifi3wi49lih7d1j3j6qgqqd31brg53jqr"))))
12573 (build-system r-build-system)
12574 (propagated-inputs
12575 `(("r-bayesm" ,r-bayesm)
12576 ("r-mass" ,r-mass)
12577 ("r-robustbase" ,r-robustbase)
12578 ("r-tensora" ,r-tensora)))
12579 (native-inputs
12580 `(("r-knitr" ,r-knitr)))
12581 (home-page "http://www.stat.boogaart.de/compositions")
12582 (synopsis "Compositional data analysis")
12583 (description
12584 "This package provides functions for the consistent analysis of
12585 compositional data (e.g. portions of substances) and positive
12586 numbers (e.g. concentrations).")
12587 (license license:gpl2+)))
12588
12589 (define-public r-cobs
12590 (package
12591 (name "r-cobs")
12592 (version "1.3-4")
12593 (source
12594 (origin
12595 (method url-fetch)
12596 (uri (cran-uri "cobs" version))
12597 (sha256
12598 (base32
12599 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12600 (build-system r-build-system)
12601 (propagated-inputs
12602 `(("r-quantreg" ,r-quantreg)
12603 ("r-sparsem" ,r-sparsem)))
12604 (home-page "https://cran.r-project.org/web/packages/cobs")
12605 (synopsis "Constrained B-Splines (sparse matrix based)")
12606 (description
12607 "This package provides qualitatively constrained (regression) smoothing
12608 splines via linear programming and sparse matrices.")
12609 (license license:gpl2+)))
12610
12611 (define-public r-drimpute
12612 (package
12613 (name "r-drimpute")
12614 (version "1.0")
12615 (source
12616 (origin
12617 (method url-fetch)
12618 (uri (cran-uri "DrImpute" version))
12619 (sha256
12620 (base32
12621 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12622 (properties `((upstream-name . "DrImpute")))
12623 (build-system r-build-system)
12624 (propagated-inputs
12625 `(("r-rcpp" ,r-rcpp)
12626 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12627 (home-page "https://github.com/ikwak2/DrImpute")
12628 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12629 (description
12630 "This is an R package for imputing dropout events. Many statistical
12631 methods in cell type identification, visualization and lineage reconstruction
12632 do not account for dropout events. DrImpute can improve the performance of
12633 such software by imputing dropout events.")
12634 (license license:gpl3)))
12635
12636 (define-public r-gamlss-dist
12637 (package
12638 (name "r-gamlss-dist")
12639 (version "5.1-7")
12640 (source
12641 (origin
12642 (method url-fetch)
12643 (uri (cran-uri "gamlss.dist" version))
12644 (sha256
12645 (base32 "0nzgq3rnziy0i2zxn88hqy3pakpyin2m2csk9j3zg39si66c6wcq"))))
12646 (properties `((upstream-name . "gamlss.dist")))
12647 (build-system r-build-system)
12648 (propagated-inputs `(("r-mass" ,r-mass)))
12649 (home-page "http://www.gamlss.org/")
12650 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12651 (description
12652 "This package provides a set of distributions which can be used for
12653 modelling the response variables in Generalized Additive Models for Location
12654 Scale and Shape. The distributions can be continuous, discrete or mixed
12655 distributions. Extra distributions can be created, by transforming, any
12656 continuous distribution defined on the real line, to a distribution defined on
12657 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12658 transformation, respectively.")
12659 ;; Either version of the GPL.
12660 (license (list license:gpl2 license:gpl3))))
12661
12662 ;; This package includes JavaScript files, which are not minified. When
12663 ;; upgrading please check that there are no new minified JavaScript files.
12664 (define-public r-shinyjs
12665 (package
12666 (name "r-shinyjs")
12667 (version "1.1")
12668 (source
12669 (origin
12670 (method url-fetch)
12671 (uri (cran-uri "shinyjs" version))
12672 (sha256
12673 (base32
12674 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12675 (build-system r-build-system)
12676 (propagated-inputs
12677 `(("r-digest" ,r-digest)
12678 ("r-htmltools" ,r-htmltools)
12679 ("r-jsonlite" ,r-jsonlite)
12680 ("r-shiny" ,r-shiny)))
12681 (home-page "https://deanattali.com/shinyjs")
12682 (synopsis "Improve the user experience of your Shiny apps")
12683 (description
12684 "Perform common useful JavaScript operations in Shiny apps that will
12685 greatly improve your apps without having to know any JavaScript. Examples
12686 include: hiding an element, disabling an input, resetting an input back to its
12687 original value, delaying code execution by a few seconds, and many more useful
12688 functions for both the end user and the developer. Shinyjs can also be used
12689 to easily call your own custom JavaScript functions from R.")
12690 (license license:agpl3+)))
12691
12692 ;; This package includes minified JavaScript files. When upgrading please
12693 ;; check that there are no new minified JavaScript files.
12694 (define-public r-colourpicker
12695 (package
12696 (name "r-colourpicker")
12697 (version "1.0")
12698 (source
12699 (origin
12700 (method url-fetch)
12701 (uri (cran-uri "colourpicker" version))
12702 (sha256
12703 (base32
12704 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12705 (build-system r-build-system)
12706 (arguments
12707 `(#:modules ((guix build utils)
12708 (guix build r-build-system)
12709 (srfi srfi-1)
12710 (ice-9 popen))
12711 #:phases
12712 (modify-phases %standard-phases
12713 (add-after 'unpack 'process-javascript
12714 (lambda* (#:key inputs #:allow-other-keys)
12715 (with-directory-excursion "inst"
12716 (call-with-values
12717 (lambda ()
12718 (unzip2
12719 `((,(assoc-ref inputs "js-salvattore")
12720 "examples/colourInput/www/salvattore.min.js")
12721 (,(assoc-ref inputs "js-jquery")
12722 "htmlwidgets/lib/jquery/jquery.min.js")
12723 ("www/shared/colourpicker/js/colourpicker.js"
12724 "www/shared/colourpicker/js/colourpicker.min.js"))))
12725 (lambda (sources targets)
12726 (for-each (lambda (source target)
12727 (format #t "Processing ~a --> ~a~%"
12728 source target)
12729 (delete-file target)
12730 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12731 (call-with-output-file target
12732 (lambda (port)
12733 (dump-port minified port)))))
12734 sources targets))))
12735 #t)))))
12736 (propagated-inputs
12737 `(("r-ggplot2" ,r-ggplot2)
12738 ("r-htmltools" ,r-htmltools)
12739 ("r-htmlwidgets" ,r-htmlwidgets)
12740 ("r-jsonlite" ,r-jsonlite)
12741 ("r-miniui" ,r-miniui)
12742 ("r-shiny" ,r-shiny)
12743 ("r-shinyjs" ,r-shinyjs)))
12744 (native-inputs
12745 `(("uglify-js" ,uglify-js)
12746 ("js-jquery"
12747 ,(origin
12748 (method url-fetch)
12749 (uri "https://code.jquery.com/jquery-3.3.1.js")
12750 (sha256
12751 (base32
12752 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12753 ("js-salvattore"
12754 ,(origin
12755 (method url-fetch)
12756 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12757 (sha256
12758 (base32
12759 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12760 (home-page "https://github.com/daattali/colourpicker")
12761 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12762 (description
12763 "This package provides a color picker that can be used as an input in
12764 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12765 custom color palettes, and many more options. A plot color helper tool is
12766 available as an RStudio Addin, which helps you pick colors to use in your
12767 plots. A more generic color picker RStudio Addin is also provided to let you
12768 select colors to use in your R code.")
12769 (license license:expat)))
12770
12771 (define-public r-ggextra
12772 (package
12773 (name "r-ggextra")
12774 (version "0.9")
12775 (source
12776 (origin
12777 (method url-fetch)
12778 (uri (cran-uri "ggExtra" version))
12779 (sha256
12780 (base32
12781 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12782 (properties `((upstream-name . "ggExtra")))
12783 (build-system r-build-system)
12784 (propagated-inputs
12785 `(("r-colourpicker" ,r-colourpicker)
12786 ("r-ggplot2" ,r-ggplot2)
12787 ("r-gtable" ,r-gtable)
12788 ("r-miniui" ,r-miniui)
12789 ("r-r6" ,r-r6)
12790 ("r-scales" ,r-scales)
12791 ("r-shiny" ,r-shiny)
12792 ("r-shinyjs" ,r-shinyjs)))
12793 (native-inputs
12794 `(("r-knitr" ,r-knitr)))
12795 (home-page "https://github.com/daattali/ggExtra")
12796 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12797 (description
12798 "This package is a collection of functions and layers to enhance ggplot2.
12799 The flagship function is @code{ggMarginal()}, which can be used to add
12800 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12801 (license license:expat)))
12802
12803 (define-public r-minpack-lm
12804 (package
12805 (name "r-minpack-lm")
12806 (version "1.2-1")
12807 (source
12808 (origin
12809 (method url-fetch)
12810 (uri (cran-uri "minpack.lm" version))
12811 (sha256
12812 (base32
12813 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12814 (properties `((upstream-name . "minpack.lm")))
12815 (build-system r-build-system)
12816 (native-inputs `(("gfortran" ,gfortran)))
12817 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12818 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12819 (description
12820 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12821 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12822 problems by a modification of the Levenberg-Marquardt algorithm, with support
12823 for lower and upper parameter bounds. The implementation can be used via
12824 @code{nls}-like calls using the @code{nlsLM} function.")
12825 (license license:gpl3)))
12826
12827 (define-public r-moments
12828 (package
12829 (name "r-moments")
12830 (version "0.14")
12831 (source
12832 (origin
12833 (method url-fetch)
12834 (uri (cran-uri "moments" version))
12835 (sha256
12836 (base32
12837 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12838 (build-system r-build-system)
12839 (home-page "https://cran.r-project.org/web/packages/moments")
12840 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12841 (description
12842 "This package provides functions to calculate: moments, Pearson's
12843 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12844 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12845 (license license:gpl2+)))
12846
12847 (define-public r-msir
12848 (package
12849 (name "r-msir")
12850 (version "1.3.2")
12851 (source
12852 (origin
12853 (method url-fetch)
12854 (uri (cran-uri "msir" version))
12855 (sha256
12856 (base32
12857 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12858 (build-system r-build-system)
12859 (propagated-inputs
12860 `(("r-mclust" ,r-mclust)))
12861 (home-page "https://cran.r-project.org/web/packages/msir")
12862 (synopsis "Model-based sliced inverse regression")
12863 (description
12864 "This is an R package for dimension reduction based on finite Gaussian
12865 mixture modeling of inverse regression.")
12866 (license license:gpl2+)))
12867
12868 (define-public r-pbivnorm
12869 (package
12870 (name "r-pbivnorm")
12871 (version "0.6.0")
12872 (source
12873 (origin
12874 (method url-fetch)
12875 (uri (cran-uri "pbivnorm" version))
12876 (sha256
12877 (base32
12878 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12879 (build-system r-build-system)
12880 (native-inputs `(("gfortran" ,gfortran)))
12881 (home-page "https://github.com/brentonk/pbivnorm")
12882 (synopsis "Vectorized bivariate normal CDF")
12883 (description
12884 "This package provides a vectorized R function for calculating
12885 probabilities from a standard bivariate normal CDF.")
12886 (license license:gpl2+)))
12887
12888 (define-public r-lavaan
12889 (package
12890 (name "r-lavaan")
12891 (version "0.6-7")
12892 (source
12893 (origin
12894 (method url-fetch)
12895 (uri (cran-uri "lavaan" version))
12896 (sha256
12897 (base32
12898 "0ks62wrwghbm1brzmqvr92h5n1295dpc87m1g3xrfx0mkdaqdcdk"))))
12899 (build-system r-build-system)
12900 (propagated-inputs
12901 `(("r-mass" ,r-mass)
12902 ("r-mnormt" ,r-mnormt)
12903 ("r-numderiv" ,r-numderiv)
12904 ("r-pbivnorm" ,r-pbivnorm)))
12905 (home-page "http://lavaan.ugent.be")
12906 (synopsis "Latent variable analysis")
12907 (description
12908 "This package provides tools to fit a variety of latent variable models,
12909 including confirmatory factor analysis, structural equation modeling and
12910 latent growth curve models.")
12911 (license license:gpl2+)))
12912
12913 (define-public r-nonnest2
12914 (package
12915 (name "r-nonnest2")
12916 (version "0.5-5")
12917 (source
12918 (origin
12919 (method url-fetch)
12920 (uri (cran-uri "nonnest2" version))
12921 (sha256
12922 (base32
12923 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
12924 (build-system r-build-system)
12925 (propagated-inputs
12926 `(("r-compquadform" ,r-compquadform)
12927 ("r-lavaan" ,r-lavaan)
12928 ("r-mvtnorm" ,r-mvtnorm)
12929 ("r-sandwich" ,r-sandwich)))
12930 (native-inputs
12931 `(("r-knitr" ,r-knitr)))
12932 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12933 (synopsis "Tests of non-nested models")
12934 (description
12935 "This package allows for testing of non-nested models. It includes tests
12936 of model distinguishability and of model fit that can be applied to both
12937 nested and non-nested models. The package also includes functionality to
12938 obtain confidence intervals associated with AIC and BIC.")
12939 ;; Either version of the GPL.
12940 (license (list license:gpl2 license:gpl3))))
12941
12942 (define-public r-penalized
12943 (package
12944 (name "r-penalized")
12945 (version "0.9-51")
12946 (source
12947 (origin
12948 (method url-fetch)
12949 (uri (cran-uri "penalized" version))
12950 (sha256
12951 (base32
12952 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12953 (build-system r-build-system)
12954 (propagated-inputs
12955 `(("r-rcpp" ,r-rcpp)
12956 ("r-rcpparmadillo" ,r-rcpparmadillo)
12957 ("r-survival" ,r-survival)))
12958 (home-page "https://cran.r-project.org/web/packages/penalized/")
12959 (synopsis "Penalized estimation in GLMs and in the Cox model")
12960 (description
12961 "This package provides tools for fitting possibly high dimensional
12962 penalized regression models. The penalty structure can be any combination of
12963 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12964 constraint on the regression coefficients. The supported regression models
12965 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12966 model. Cross-validation routines allow optimization of the tuning
12967 parameters.")
12968 (license license:gpl2+)))
12969
12970 (define-public r-zim
12971 (package
12972 (name "r-zim")
12973 (version "1.1.0")
12974 (source
12975 (origin
12976 (method url-fetch)
12977 (uri (cran-uri "ZIM" version))
12978 (sha256
12979 (base32
12980 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12981 (properties `((upstream-name . "ZIM")))
12982 (build-system r-build-system)
12983 (propagated-inputs `(("r-mass" ,r-mass)))
12984 (home-page "https://github.com/biostatstudio/ZIM")
12985 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12986 (description
12987 "Analyze count time series with excess zeros. Two types of statistical
12988 models are supported: Markov regression and state-space models. They are also
12989 known as observation-driven and parameter-driven models respectively in the
12990 time series literature. The functions used for Markov regression or
12991 observation-driven models can also be used to fit ordinary regression models
12992 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12993 negative binomial (ZINB) assumption. The package also contains miscellaneous
12994 functions to compute density, distribution, quantile, and generate random
12995 numbers from ZIP and ZINB distributions.")
12996 (license license:gpl3)))
12997
12998 (define-public r-nor1mix
12999 (package
13000 (name "r-nor1mix")
13001 (version "1.3-0")
13002 (source
13003 (origin
13004 (method url-fetch)
13005 (uri (cran-uri "nor1mix" version))
13006 (sha256
13007 (base32
13008 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
13009 (build-system r-build-system)
13010 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
13011 (synopsis "Normal (1-d) mixture models")
13012 (description
13013 "This package provides S3 classes and methods for one-dimensional normal
13014 mixture models, for, e.g., density estimation or clustering algorithms
13015 research and teaching; it provides the widely used Marron-Wand densities. It
13016 also provides tools for efficient random number generation and graphics.")
13017 (license license:gpl2+)))
13018
13019 (define-public r-beanplot
13020 (package
13021 (name "r-beanplot")
13022 (version "1.2")
13023 (source
13024 (origin
13025 (method url-fetch)
13026 (uri (cran-uri "beanplot" version))
13027 (sha256
13028 (base32
13029 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
13030 (build-system r-build-system)
13031 (home-page "https://cran.r-project.org/web/packages/beanplot/")
13032 (synopsis "Visualization via beanplots")
13033 (description
13034 "This package provides beanplots, an alternative to
13035 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
13036 graphs.")
13037 (license license:gpl2)))
13038
13039 (define-public r-pbdzmq
13040 (package
13041 (name "r-pbdzmq")
13042 (version "0.3-3")
13043 (source
13044 (origin
13045 (method url-fetch)
13046 (uri (cran-uri "pbdZMQ" version))
13047 (sha256
13048 (base32
13049 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
13050 (properties `((upstream-name . "pbdZMQ")))
13051 (build-system r-build-system)
13052 (inputs
13053 `(("zeromq" ,zeromq)
13054 ("zlib" ,zlib)))
13055 (native-inputs
13056 `(("pkg-config" ,pkg-config)))
13057 (home-page "https://pbdr.org/")
13058 (synopsis "R interface to ZeroMQ")
13059 (description
13060 "ZeroMQ is a well-known library for high-performance asynchronous
13061 messaging in scalable, distributed applications. This package provides high
13062 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
13063 interactive client/server programming frameworks. A few wrapper functions
13064 compatible with @code{rzmq} are also provided.")
13065 (license license:gpl3)))
13066
13067 (define-public r-repr
13068 (package
13069 (name "r-repr")
13070 (version "1.1.0")
13071 (source
13072 (origin
13073 (method url-fetch)
13074 (uri (cran-uri "repr" version))
13075 (sha256
13076 (base32
13077 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
13078 (build-system r-build-system)
13079 (propagated-inputs
13080 `(("r-base64enc" ,r-base64enc)
13081 ("r-htmltools" ,r-htmltools)
13082 ("r-jsonlite" ,r-jsonlite)
13083 ("r-pillar" ,r-pillar)))
13084 (home-page "https://cran.r-project.org/web/packages/repr/")
13085 (synopsis "Serializable representations")
13086 (description
13087 "This package provides string and binary representations of objects for
13088 several formats and MIME types.")
13089 (license license:gpl3)))
13090
13091 (define-public r-irdisplay
13092 (package
13093 (name "r-irdisplay")
13094 (version "0.7.0")
13095 (source
13096 (origin
13097 (method url-fetch)
13098 (uri (cran-uri "IRdisplay" version))
13099 (sha256
13100 (base32
13101 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
13102 (properties `((upstream-name . "IRdisplay")))
13103 (build-system r-build-system)
13104 (propagated-inputs
13105 `(("r-repr" ,r-repr)))
13106 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
13107 (synopsis "Jupyter display machinery")
13108 (description
13109 "This package provides an interface to the rich display capabilities of
13110 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
13111 running IRkernel session.")
13112 (license license:expat)))
13113
13114 (define-public r-irkernel
13115 (package
13116 (name "r-irkernel")
13117 (version "1.1.1")
13118 (source
13119 (origin
13120 (method url-fetch)
13121 (uri (cran-uri "IRkernel" version))
13122 (sha256
13123 (base32
13124 "1y06v3difaiihxfm2abm88nnjzvkla4p346cm1nxmga4iwb2k8gm"))))
13125 (properties `((upstream-name . "IRkernel")))
13126 (build-system r-build-system)
13127 (arguments
13128 `(#:phases
13129 (modify-phases %standard-phases
13130 (add-after 'install 'install-kernelspec
13131 (lambda* (#:key outputs #:allow-other-keys)
13132 (let ((out (assoc-ref outputs "out")))
13133 (setenv "HOME" "/tmp")
13134 (invoke "jupyter" "kernelspec" "install"
13135 "--name" "ir"
13136 "--prefix" out
13137 (string-append out "/site-library/IRkernel/kernelspec"))
13138 ;; Record the absolute file name of the 'R' executable in
13139 ;; 'kernel.json'.
13140 (substitute* (string-append out "/share/jupyter"
13141 "/kernels/ir/kernel.json")
13142 (("\\[\"R\",")
13143 (string-append "[\"" (which "R") "\",")))
13144 #t))))))
13145 (inputs
13146 `(("jupyter" ,jupyter)))
13147 (propagated-inputs
13148 `(("r-crayon" ,r-crayon)
13149 ("r-digest" ,r-digest)
13150 ("r-evaluate" ,r-evaluate)
13151 ("r-irdisplay" ,r-irdisplay)
13152 ("r-jsonlite" ,r-jsonlite)
13153 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
13154 ("r-minimal" ,r-minimal)
13155 ("r-pbdzmq" ,r-pbdzmq)
13156 ("r-repr" ,r-repr)
13157 ("r-uuid" ,r-uuid)))
13158 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
13159 (synopsis "Native R kernel for Jupyter")
13160 (description
13161 "The R kernel for the Jupyter environment executes R code which the
13162 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
13163 network.")
13164 (license license:expat)))
13165
13166 (define-public r-gmodels
13167 (package
13168 (name "r-gmodels")
13169 (version "2.18.1")
13170 (source
13171 (origin
13172 (method url-fetch)
13173 (uri (cran-uri "gmodels" version))
13174 (sha256
13175 (base32
13176 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
13177 (build-system r-build-system)
13178 (propagated-inputs
13179 `(("r-gdata" ,r-gdata)
13180 ("r-mass" ,r-mass)))
13181 (home-page "https://cran.r-project.org/web/packages/gmodels/")
13182 (synopsis "Various R programming tools for model fitting")
13183 (description
13184 "This package provides various R programming tools for model fitting.")
13185 (license license:gpl2)))
13186
13187 (define-public r-apcluster
13188 (package
13189 (name "r-apcluster")
13190 (version "1.4.8")
13191 (source
13192 (origin
13193 (method url-fetch)
13194 (uri (cran-uri "apcluster" version))
13195 (sha256
13196 (base32
13197 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
13198 (build-system r-build-system)
13199 (propagated-inputs
13200 `(("r-matrix" ,r-matrix)
13201 ("r-rcpp" ,r-rcpp)))
13202 (home-page "https://cran.r-project.org/web/packages/apcluster/")
13203 (synopsis "Affinity propagation clustering")
13204 (description
13205 "This package implements affinity propagation clustering introduced by
13206 Frey and Dueck (2007). The package further provides leveraged affinity
13207 propagation and an algorithm for exemplar-based agglomerative clustering that
13208 can also be used to join clusters obtained from affinity propagation. Various
13209 plotting functions are available for analyzing clustering results.")
13210 (license license:gpl2+)))
13211
13212 (define-public r-valr
13213 (package
13214 (name "r-valr")
13215 (version "0.6.1")
13216 (source
13217 (origin
13218 (method url-fetch)
13219 (uri (cran-uri "valr" version))
13220 (sha256
13221 (base32
13222 "1qxw6h63i2vfb2w6q453zzwk0ypma3xdwwpj15i06669vzgyy3bb"))))
13223 (build-system r-build-system)
13224 (propagated-inputs
13225 `(("r-broom" ,r-broom)
13226 ("r-dplyr" ,r-dplyr)
13227 ("r-ggplot2" ,r-ggplot2)
13228 ("r-rcpp" ,r-rcpp)
13229 ("r-readr" ,r-readr)
13230 ("r-rlang" ,r-rlang)
13231 ("r-stringr" ,r-stringr)
13232 ("r-tibble" ,r-tibble)))
13233 (native-inputs
13234 `(("r-knitr" ,r-knitr)))
13235 (home-page "https://github.com/rnabioco/valr")
13236 (synopsis "Genome interval arithmetic in R")
13237 (description
13238 "This package enables you to read and manipulate genome intervals and
13239 signals. It provides functionality similar to command-line tool suites within
13240 R, enabling interactive analysis and visualization of genome-scale data.")
13241 (license license:expat)))
13242
13243 (define-public r-rematch2
13244 (package
13245 (name "r-rematch2")
13246 (version "2.1.2")
13247 (source
13248 (origin
13249 (method url-fetch)
13250 (uri (cran-uri "rematch2" version))
13251 (sha256
13252 (base32
13253 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
13254 (build-system r-build-system)
13255 (propagated-inputs
13256 `(("r-tibble" ,r-tibble)))
13257 (home-page "https://github.com/r-lib/rematch2")
13258 (synopsis "Tidy output from regular expression matching")
13259 (description
13260 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
13261 return the match results in tidy data frames.")
13262 (license license:expat)))
13263
13264 (define-public r-picante
13265 (package
13266 (name "r-picante")
13267 (version "1.8.2")
13268 (source
13269 (origin
13270 (method url-fetch)
13271 (uri (cran-uri "picante" version))
13272 (sha256
13273 (base32
13274 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
13275 (build-system r-build-system)
13276 (propagated-inputs
13277 `(("r-ape" ,r-ape)
13278 ("r-nlme" ,r-nlme)
13279 ("r-vegan" ,r-vegan)))
13280 (home-page "https://cran.r-project.org/web/packages/picante/")
13281 (synopsis "Integrating phylogenies and ecology")
13282 (description
13283 "This package provides functions for phylocom integration, community
13284 analyses, null-models, traits and evolution. It implements numerous
13285 ecophylogenetic approaches including measures of community phylogenetic and
13286 trait diversity, phylogenetic signal, estimation of trait values for
13287 unobserved taxa, null models for community and phylogeny randomizations, and
13288 utility functions for data input/output and phylogeny plotting. A full
13289 description of package functionality and methods are provided by Kembel et
13290 al. (2010).")
13291 (license license:gpl2)))
13292
13293 (define-public r-reinforcelearn
13294 (package
13295 (name "r-reinforcelearn")
13296 (version "0.2.1")
13297 (source
13298 (origin
13299 (method url-fetch)
13300 (uri (cran-uri "reinforcelearn" version))
13301 (sha256
13302 (base32
13303 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
13304 (build-system r-build-system)
13305 (propagated-inputs
13306 `(("r-checkmate" ,r-checkmate)
13307 ("r-nnet" ,r-nnet)
13308 ("r-purrr" ,r-purrr)
13309 ("r-r6" ,r-r6)))
13310 (home-page "https://markusdumke.github.io/reinforcelearn")
13311 (synopsis "Reinforcement learning")
13312 (description
13313 "This package implements reinforcement learning environments and
13314 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
13315 can be used with function approximation, eligibility traces (Singh & Sutton,
13316 1996) and experience replay (Mnih et al., 2013).")
13317 (license license:expat)))
13318
13319 (define-public r-lemon
13320 (package
13321 (name "r-lemon")
13322 (version "0.4.5")
13323 (source
13324 (origin
13325 (method url-fetch)
13326 (uri (cran-uri "lemon" version))
13327 (sha256
13328 (base32
13329 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
13330 (build-system r-build-system)
13331 (propagated-inputs
13332 `(("r-ggplot2" ,r-ggplot2)
13333 ("r-gridextra" ,r-gridextra)
13334 ("r-gtable" ,r-gtable)
13335 ("r-knitr" ,r-knitr)
13336 ("r-lattice" ,r-lattice)
13337 ("r-plyr" ,r-plyr)
13338 ("r-rlang" ,r-rlang)
13339 ("r-scales" ,r-scales)))
13340 (native-inputs
13341 `(("r-knitr" ,r-knitr)))
13342 (home-page "https://github.com/stefanedwards/lemon")
13343 (synopsis "Freshen up your ggplot2 plots")
13344 (description
13345 "This package provides functions for working with legends and axis lines
13346 of ggplot2, facets that repeat axis lines on all panels, and some knitr
13347 extensions.")
13348 (license license:gpl3)))
13349
13350 (define-public r-wgaim
13351 (package
13352 (name "r-wgaim")
13353 (version "2.0-1")
13354 (source
13355 (origin
13356 (method url-fetch)
13357 (uri (cran-uri "wgaim" version))
13358 (sha256
13359 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
13360 (build-system r-build-system)
13361 (propagated-inputs
13362 `(("r-ggplot2" ,r-ggplot2)
13363 ("r-qtl" ,r-qtl)))
13364 (home-page "https://cran.r-project.org/web/packages/wgaim")
13365 (synopsis "Whole genome average interval mapping for QTL detection")
13366 (description
13367 "This package integrates sophisticated mixed modelling methods with a
13368 whole genome approach to detecting significant QTL in linkage maps.")
13369 (license license:gpl2+)))
13370
13371 (define-public r-bedr
13372 (package
13373 (name "r-bedr")
13374 (version "1.0.7")
13375 (source
13376 (origin
13377 (method url-fetch)
13378 (uri (cran-uri "bedr" version))
13379 (sha256
13380 (base32
13381 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
13382 (build-system r-build-system)
13383 (propagated-inputs
13384 `(("r-data-table" ,r-data-table)
13385 ("r-r-utils" ,r-r-utils)
13386 ("r-testthat" ,r-testthat)
13387 ("r-venndiagram" ,r-venndiagram)
13388 ("r-yaml" ,r-yaml)
13389 ("bedops" ,bedops)
13390 ("bedtools" ,bedtools)
13391 ("htslib" ,htslib))) ; for tabix
13392 (native-inputs
13393 `(("r-knitr" ,r-knitr))) ; for vignettes
13394 (home-page "https://cran.r-project.org/web/packages/bedr")
13395 (synopsis "Genomic region processing")
13396 (description
13397 "This package is for genomic regions processing using command line tools
13398 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
13399 utilities to perform genome arithmetic e.g indexing, formatting and merging.
13400 The bedr package's API enhances access to these tools as well as offers
13401 additional utilities for genomic regions processing.")
13402 (license license:gpl2)))
13403
13404 (define-public r-sets
13405 (package
13406 (name "r-sets")
13407 (version "1.0-18")
13408 (source
13409 (origin
13410 (method url-fetch)
13411 (uri (cran-uri "sets" version))
13412 (sha256
13413 (base32
13414 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
13415 (properties `((upstream-name . "sets")))
13416 (build-system r-build-system)
13417 (home-page "https://cran.r-project.org/web/packages/sets")
13418 (synopsis "Sets, generalized sets, customizable sets and intervals")
13419 (description
13420 "This package provides data structures and basic operations for ordinary
13421 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
13422 customizable sets, and intervals.")
13423 (license license:gpl2)))
13424
13425 (define-public r-partitions
13426 (package
13427 (name "r-partitions")
13428 (version "1.9-22")
13429 (source
13430 (origin
13431 (method url-fetch)
13432 (uri (cran-uri "partitions" version))
13433 (sha256
13434 (base32
13435 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
13436 (build-system r-build-system)
13437 (propagated-inputs
13438 `(("r-gmp" ,r-gmp)
13439 ("r-polynom" ,r-polynom)
13440 ("r-sets" ,r-sets)))
13441 (home-page "https://cran.r-project.org/web/packages/partitions")
13442 (synopsis "Additive partitions of integers")
13443 (description
13444 "This package provides tools to enumerates the partitions, unequal
13445 partitions, and restricted partitions of an integer; the three corresponding
13446 partition functions are also given.")
13447 ;; Any version of the GPL
13448 (license license:gpl2+)))
13449
13450 (define-public r-brobdingnag
13451 (package
13452 (name "r-brobdingnag")
13453 (version "1.2-6")
13454 (source
13455 (origin
13456 (method url-fetch)
13457 (uri (cran-uri "Brobdingnag" version))
13458 (sha256
13459 (base32
13460 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
13461 (properties `((upstream-name . "Brobdingnag")))
13462 (build-system r-build-system)
13463 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
13464 (synopsis "Very large numbers in R")
13465 (description
13466 "This package handles very large numbers in R. Real numbers are held
13467 using their natural logarithms, plus a logical flag indicating sign. The
13468 package includes a vignette that gives a step-by-step introduction to using S4
13469 methods.")
13470 ;; Any version of the GPL
13471 (license license:gpl2+)))
13472
13473 (define-public r-untb
13474 (package
13475 (name "r-untb")
13476 (version "1.7-4")
13477 (source
13478 (origin
13479 (method url-fetch)
13480 (uri (cran-uri "untb" version))
13481 (sha256
13482 (base32
13483 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
13484 (build-system r-build-system)
13485 (propagated-inputs
13486 `(("r-brobdingnag" ,r-brobdingnag)
13487 ("r-partitions" ,r-partitions)
13488 ("r-polynom" ,r-polynom)))
13489 (home-page "https://github.com/RobinHankin/untb.git")
13490 (synopsis "Ecological drift under the UNTB")
13491 (description
13492 "This package provides numerical simulations, and visualizations, of
13493 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
13494 (license license:gpl2+)))
13495
13496 (define-public r-stepwise
13497 (package
13498 (name "r-stepwise")
13499 (version "0.3")
13500 (source
13501 (origin
13502 (method url-fetch)
13503 (uri (cran-uri "stepwise" version))
13504 (sha256
13505 (base32
13506 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13507 (build-system r-build-system)
13508 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13509 (synopsis "Stepwise detection of recombination breakpoints")
13510 (description
13511 "This package provides a stepwise approach to identifying recombination
13512 breakpoints in a genomic sequence alignment.")
13513 (license license:gpl2+)))
13514
13515 (define-public r-snpmaxsel
13516 (package
13517 (name "r-snpmaxsel")
13518 (version "1.0-3")
13519 (source
13520 (origin
13521 (method url-fetch)
13522 (uri (cran-uri "SNPmaxsel" version))
13523 (sha256
13524 (base32
13525 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13526 (properties `((upstream-name . "SNPmaxsel")))
13527 (build-system r-build-system)
13528 (propagated-inputs
13529 `(("r-combinat" ,r-combinat)
13530 ("r-mvtnorm" ,r-mvtnorm)))
13531 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13532 (synopsis "Maximally selected statistics for SNP data")
13533 (description
13534 "This package implements asymptotic methods related to maximally selected
13535 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13536 data.")
13537 (license license:gpl2+)))
13538
13539 (define-public r-acsnminer
13540 (package
13541 (name "r-acsnminer")
13542 (version "0.16.8.25")
13543 (source (origin
13544 (method url-fetch)
13545 (uri (cran-uri "ACSNMineR" version))
13546 (sha256
13547 (base32
13548 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13549 (properties `((upstream-name . "ACSNMineR")))
13550 (build-system r-build-system)
13551 (propagated-inputs
13552 `(("r-ggplot2" ,r-ggplot2)
13553 ("r-gridextra" ,r-gridextra)))
13554 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13555 (synopsis "Gene enrichment analysis")
13556 (description
13557 "This package provides tools to compute and represent gene set enrichment
13558 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13559 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13560 enrichment can be run with hypergeometric test or Fisher exact test, and can
13561 use multiple corrections. Visualization of data can be done either by
13562 barplots or heatmaps.")
13563 (license license:gpl2+)))
13564
13565 (define-public r-seqinr
13566 (package
13567 (name "r-seqinr")
13568 (version "3.6-1")
13569 (source
13570 (origin
13571 (method url-fetch)
13572 (uri (cran-uri "seqinr" version))
13573 (sha256
13574 (base32
13575 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13576 (build-system r-build-system)
13577 (propagated-inputs
13578 `(("r-ade4" ,r-ade4)
13579 ("r-segmented" ,r-segmented)))
13580 (inputs
13581 `(("zlib" ,zlib)))
13582 (home-page "http://seqinr.r-forge.r-project.org/")
13583 (synopsis "Biological sequences retrieval and analysis")
13584 (description
13585 "This package provides tools for exploratory data analysis and data
13586 visualization of biological sequence (DNA and protein) data. It also includes
13587 utilities for sequence data management under the ACNUC system.")
13588 (license license:gpl2+)))
13589
13590 (define-public r-units
13591 (package
13592 (name "r-units")
13593 (version "0.6-7")
13594 (source
13595 (origin
13596 (method url-fetch)
13597 (uri (cran-uri "units" version))
13598 (sha256
13599 (base32
13600 "1rdpbkiqcabz00fqzzs98v89v4cgvcd4pb00pwxzkq6vmwmscwrz"))))
13601 (build-system r-build-system)
13602 (inputs
13603 `(("udunits" ,udunits)))
13604 (propagated-inputs
13605 `(("r-rcpp" ,r-rcpp)))
13606 (native-inputs
13607 `(("r-knitr" ,r-knitr)))
13608 (home-page "https://github.com/r-quantities/units/")
13609 (synopsis "Measurement Units for R Vectors")
13610 (description
13611 "This package provides support for measurement units in R vectors,
13612 matrices and arrays: automatic propagation, conversion, derivation and
13613 simplification of units; raising errors in case of unit incompatibility. It
13614 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13615 classes.")
13616 (license license:gpl2)))
13617
13618 (define-public r-classint
13619 (package
13620 (name "r-classint")
13621 (version "0.4-3")
13622 (source
13623 (origin
13624 (method url-fetch)
13625 (uri (cran-uri "classInt" version))
13626 (sha256
13627 (base32
13628 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
13629 (properties `((upstream-name . "classInt")))
13630 (build-system r-build-system)
13631 (propagated-inputs
13632 `(("r-class" ,r-class)
13633 ("r-e1071" ,r-e1071)
13634 ("r-kernsmooth" ,r-kernsmooth)))
13635 (native-inputs
13636 `(("gfortran" ,gfortran)
13637 ("r-knitr" ,r-knitr)))
13638 (home-page "https://github.com/r-spatial/classInt/")
13639 (synopsis "Choose univariate class intervals")
13640 (description
13641 "This package provides selected commonly used methods for choosing
13642 univariate class intervals for mapping or other graphics purposes.")
13643 (license license:gpl2+)))
13644
13645 (define-public r-spdata
13646 (package
13647 (name "r-spdata")
13648 (version "0.3.8")
13649 (source
13650 (origin
13651 (method url-fetch)
13652 (uri (cran-uri "spData" version))
13653 (sha256
13654 (base32
13655 "1mlsqy9cbilfc80cbdlbgsngvzdkrd9yjdkxnw2b1gzxnj6jcqbs"))))
13656 (properties `((upstream-name . "spData")))
13657 (build-system r-build-system)
13658 (propagated-inputs
13659 `(("r-raster" ,r-raster)
13660 ("r-sp" ,r-sp)))
13661 (home-page "https://github.com/Nowosad/spData")
13662 (synopsis "Datasets for spatial analysis")
13663 (description
13664 "This a package containing diverse spatial datasets for demonstrating,
13665 benchmarking and teaching spatial data analysis. It includes R data of class
13666 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13667 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13668 of the datasets are designed to illustrate specific analysis techniques.
13669 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13670 illustrate point pattern analysis techniques.")
13671 (license license:cc0)))
13672
13673 (define-public r-learnbayes
13674 (package
13675 (name "r-learnbayes")
13676 (version "2.15.1")
13677 (source
13678 (origin
13679 (method url-fetch)
13680 (uri (cran-uri "LearnBayes" version))
13681 (sha256
13682 (base32
13683 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13684 (properties `((upstream-name . "LearnBayes")))
13685 (build-system r-build-system)
13686 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13687 (synopsis "Functions for learning Bayesian inference")
13688 (description
13689 "This package provides a collection of functions helpful in learning the
13690 basic tenets of Bayesian statistical inference. It contains functions for
13691 summarizing basic one and two parameter posterior distributions and predictive
13692 distributions. It contains MCMC algorithms for summarizing posterior
13693 distributions defined by the user. It also contains functions for regression
13694 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13695 sampling.")
13696 (license license:gpl2+)))
13697
13698 (define-public r-deldir
13699 (package
13700 (name "r-deldir")
13701 (version "0.1-28")
13702 (source
13703 (origin
13704 (method url-fetch)
13705 (uri (cran-uri "deldir" version))
13706 (sha256
13707 (base32
13708 "12ys8jdcrgzhf9m2yirlqfars397qb0q0pbypahmfa66lgr6wdx5"))))
13709 (build-system r-build-system)
13710 (native-inputs `(("gfortran" ,gfortran)))
13711 (home-page "https://cran.r-project.org/web/packages/deldir")
13712 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13713 (description
13714 "This package provides tools for calculating the Delaunay triangulation
13715 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13716 of a planar point set. It plots triangulations and tessellations in various
13717 ways, clips tessellations to sub-windows, calculates perimeters of
13718 tessellations, and summarizes information about the tiles of the
13719 tessellation.")
13720 (license license:gpl2+)))
13721
13722 (define-public r-sf
13723 (package
13724 (name "r-sf")
13725 (version "0.9-5")
13726 (source
13727 (origin
13728 (method url-fetch)
13729 (uri (cran-uri "sf" version))
13730 (sha256
13731 (base32
13732 "0c58asqrvz1pkdkb0lkzwz8cwb43pmxd39z0jp217hk7p7q3ngwf"))))
13733 (build-system r-build-system)
13734 (inputs
13735 `(("gdal" ,gdal)
13736 ("geos" ,geos)
13737 ("proj" ,proj.4)
13738 ("zlib" ,zlib)))
13739 (propagated-inputs
13740 `(("r-classint" ,r-classint)
13741 ("r-dbi" ,r-dbi)
13742 ("r-magrittr" ,r-magrittr)
13743 ("r-rcpp" ,r-rcpp)
13744 ("r-units" ,r-units)))
13745 (native-inputs
13746 `(("pkg-config" ,pkg-config)
13747 ("r-knitr" ,r-knitr)))
13748 (home-page "https://github.com/r-spatial/sf/")
13749 (synopsis "Simple features for R")
13750 (description
13751 "This package provides support for simple features, a standardized way to
13752 encode spatial vector data. It binds to GDAL for reading and writing data, to
13753 GEOS for geometrical operations, and to PROJ for projection conversions and
13754 datum transformations.")
13755 ;; Either of these licenses
13756 (license (list license:gpl2 license:expat))))
13757
13758 (define-public r-spdep
13759 (package
13760 (name "r-spdep")
13761 (version "1.1-5")
13762 (source
13763 (origin
13764 (method url-fetch)
13765 (uri (cran-uri "spdep" version))
13766 (sha256
13767 (base32
13768 "0pbd7wrg5v44p2yxsjp774lpyzap3madir5mn5p3ix7ibk7ldjs7"))))
13769 (build-system r-build-system)
13770 (propagated-inputs
13771 `(("r-boot" ,r-boot)
13772 ("r-coda" ,r-coda)
13773 ("r-deldir" ,r-deldir)
13774 ("r-expm" ,r-expm)
13775 ("r-gmodels" ,r-gmodels)
13776 ("r-learnbayes" ,r-learnbayes)
13777 ("r-mass" ,r-mass)
13778 ("r-matrix" ,r-matrix)
13779 ("r-nlme" ,r-nlme)
13780 ("r-sf" ,r-sf)
13781 ("r-sp" ,r-sp)
13782 ("r-spdata" ,r-spdata)))
13783 (native-inputs
13784 `(("r-knitr" ,r-knitr)))
13785 (home-page "https://github.com/r-spatial/spdep/")
13786 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13787 (description
13788 "This package provides a collection of functions to create spatial
13789 weights matrix objects from polygon contiguities, from point patterns by
13790 distance and tessellations, for summarizing these objects, and for permitting
13791 their use in spatial data analysis, including regional aggregation by minimum
13792 spanning tree.")
13793 (license license:gpl2+)))
13794
13795 (define-public r-adegenet
13796 (package
13797 (name "r-adegenet")
13798 (version "2.1.3")
13799 (source
13800 (origin
13801 (method url-fetch)
13802 (uri (cran-uri "adegenet" version))
13803 (sha256
13804 (base32
13805 "1ipnawi0qfd4rfwj37igvh36x1a9d8x4n7xynn1jcr12rd713407"))))
13806 (build-system r-build-system)
13807 (propagated-inputs
13808 `(("r-ade4" ,r-ade4)
13809 ("r-ape" ,r-ape)
13810 ("r-boot" ,r-boot)
13811 ("r-dplyr" ,r-dplyr)
13812 ("r-ggplot2" ,r-ggplot2)
13813 ("r-igraph" ,r-igraph)
13814 ("r-mass" ,r-mass)
13815 ("r-reshape2" ,r-reshape2)
13816 ("r-seqinr" ,r-seqinr)
13817 ("r-shiny" ,r-shiny)
13818 ("r-spdep" ,r-spdep)
13819 ("r-vegan" ,r-vegan)))
13820 (home-page "https://github.com/thibautjombart/adegenet")
13821 (synopsis "Exploratory analysis of genetic and genomic data")
13822 (description
13823 "This package provides a toolset for the exploration of genetic and
13824 genomic data. Adegenet provides formal (S4) classes for storing and handling
13825 various genetic data, including genetic markers with varying ploidy and
13826 hierarchical population structure (@code{genind} class), alleles counts by
13827 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13828 also implements original multivariate methods (DAPC, sPCA), graphics,
13829 statistical tests, simulation tools, distance and similarity measures, and
13830 several spatial methods. A range of both empirical and simulated datasets is
13831 also provided to illustrate various methods.")
13832 (license license:gpl2+)))
13833
13834 (define-public r-pegas
13835 (package
13836 (name "r-pegas")
13837 (version "0.13")
13838 (source
13839 (origin
13840 (method url-fetch)
13841 (uri (cran-uri "pegas" version))
13842 (sha256
13843 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
13844 (build-system r-build-system)
13845 (propagated-inputs
13846 `(("r-adegenet" ,r-adegenet)
13847 ("r-ape" ,r-ape)))
13848 (home-page "http://ape-package.ird.fr/pegas.html")
13849 (synopsis "Population and evolutionary genetics analysis system")
13850 (description
13851 "This package provides functions for reading, writing, plotting,
13852 analysing, and manipulating allelic and haplotypic data, including from VCF
13853 files, and for the analysis of population nucleotide sequences and
13854 micro-satellites including coalescent analyses, linkage disequilibrium,
13855 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13856 minimum spanning tree and network, and median-joining networks.")
13857 (license license:gpl2+)))
13858
13859 (define-public r-rmetasim
13860 (package
13861 (name "r-rmetasim")
13862 (version "3.1.14")
13863 (source
13864 (origin
13865 (method url-fetch)
13866 (uri (cran-uri "rmetasim" version))
13867 (sha256
13868 (base32
13869 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
13870 (build-system r-build-system)
13871 (propagated-inputs
13872 `(("r-ade4" ,r-ade4)
13873 ("r-adegenet" ,r-adegenet)
13874 ("r-gtools" ,r-gtools)
13875 ("r-pegas" ,r-pegas)))
13876 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13877 (synopsis "Individual-based population genetic simulation environment")
13878 (description
13879 "This package provides an interface between R and the metasim simulation
13880 engine. The simulation environment is documented in: Strand, A.(2002),
13881 Metasim 1.0: an individual-based environment for simulating population
13882 genetics of complex population dynamics.")
13883 ;; Any GPL version
13884 (license license:gpl2+)))
13885
13886 (define-public r-genetics
13887 (package
13888 (name "r-genetics")
13889 (version "1.3.8.1.2")
13890 (source
13891 (origin
13892 (method url-fetch)
13893 (uri (cran-uri "genetics" version))
13894 (sha256
13895 (base32
13896 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13897 (build-system r-build-system)
13898 (propagated-inputs
13899 `(("r-combinat" ,r-combinat)
13900 ("r-gdata" ,r-gdata)
13901 ("r-gtools" ,r-gtools)
13902 ("r-mass" ,r-mass)
13903 ("r-mvtnorm" ,r-mvtnorm)))
13904 (home-page "https://cran.r-project.org/web/packages/genetics/")
13905 (synopsis "Population genetics")
13906 (description
13907 "This package provides classes and methods for handling genetic data.
13908 It includes classes to represent genotypes and haplotypes at single markers up
13909 to multiple markers on multiple chromosomes. Function include allele
13910 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13911 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13912 and testing for linkage disequilibrium, ...")
13913 ;; Any GPL version.
13914 (license license:gpl2+)))
13915
13916 (define-public r-snp-plotter
13917 (package
13918 (name "r-snp-plotter")
13919 (version "0.5.1")
13920 (source
13921 (origin
13922 (method url-fetch)
13923 (uri (cran-uri "snp.plotter" version))
13924 (sha256
13925 (base32
13926 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13927 (properties `((upstream-name . "snp.plotter")))
13928 (build-system r-build-system)
13929 (propagated-inputs `(("r-genetics" ,r-genetics)))
13930 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13931 (synopsis "Plot p-values using single SNP and/or haplotype data")
13932 (description
13933 "This package helps you create plots of p-values using single SNP and/or
13934 haplotype data. Main features of the package include options to display a
13935 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13936 datasets simultaneously. Plots can be created using global and/or individual
13937 haplotype p-values along with single SNP p-values. Images are created as
13938 either PDF/EPS files.")
13939 (license license:gpl2+)))
13940
13941 (define-public r-polspline
13942 (package
13943 (name "r-polspline")
13944 (version "1.1.19")
13945 (source
13946 (origin
13947 (method url-fetch)
13948 (uri (cran-uri "polspline" version))
13949 (sha256
13950 (base32 "0rhzf735hmbqfn2xbgcln4sqx7m9far72g5gq9mghgkw016kqglm"))))
13951 (build-system r-build-system)
13952 (native-inputs `(("gfortran" ,gfortran)))
13953 (home-page "https://cran.r-project.org/web/packages/polspline/")
13954 (synopsis "Polynomial spline routines")
13955 (description
13956 "This package provides routines for the polynomial spline fitting
13957 routines hazard regression, hazard estimation with flexible tails, logspline,
13958 lspec, polyclass, and polymars.")
13959 (license license:gpl2+)))
13960
13961 (define-public r-rms
13962 (package
13963 (name "r-rms")
13964 (version "6.0-1")
13965 (source
13966 (origin
13967 (method url-fetch)
13968 (uri (cran-uri "rms" version))
13969 (sha256
13970 (base32 "1zkcsqcvldfj4kyn0346vi51igq951qrnpxlv2pfvap6n2v5wbxq"))))
13971 (build-system r-build-system)
13972 (propagated-inputs
13973 `(("r-cluster" ,r-cluster)
13974 ("r-digest" ,r-digest)
13975 ("r-ggplot2" ,r-ggplot2)
13976 ("r-hmisc" ,r-hmisc)
13977 ("r-htmltable" ,r-htmltable)
13978 ("r-htmltools" ,r-htmltools)
13979 ("r-lattice" ,r-lattice)
13980 ("r-mass" ,r-mass)
13981 ("r-multcomp" ,r-multcomp)
13982 ("r-nlme" ,r-nlme)
13983 ("r-polspline" ,r-polspline)
13984 ("r-quantreg" ,r-quantreg)
13985 ("r-rpart" ,r-rpart)
13986 ("r-sparsem" ,r-sparsem)
13987 ("r-survival" ,r-survival)))
13988 (native-inputs `(("gfortran" ,gfortran)))
13989 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13990 (synopsis "Regression modeling strategies")
13991 (description
13992 "This is a package for regression modeling, testing, estimation,
13993 validation, graphics, prediction, and typesetting by storing enhanced model
13994 design attributes in the fit. The rms package is a collection of functions
13995 that assist with and streamline modeling. It also contains functions for
13996 binary and ordinal logistic regression models, ordinal models for continuous Y
13997 with a variety of distribution families, and the Buckley-James multiple
13998 regression model for right-censored responses, and implements penalized
13999 maximum likelihood estimation for logistic and ordinary linear models. The
14000 package works with almost any regression model, but it was especially written
14001 to work with binary or ordinal regression models, Cox regression, accelerated
14002 failure time models, ordinary linear models, the Buckley-James model,
14003 generalized least squares for serially or spatially correlated observations,
14004 generalized linear models, and quantile regression.")
14005 (license license:gpl2+)))
14006
14007 (define-public r-arsenal
14008 (package
14009 (name "r-arsenal")
14010 (version "3.5.0")
14011 (source
14012 (origin
14013 (method url-fetch)
14014 (uri (cran-uri "arsenal" version))
14015 (sha256
14016 (base32
14017 "0avi434wkk3w7axd89a4jwsbb11fi0239mkkla6zasnjwbqgjim0"))))
14018 (properties `((upstream-name . "arsenal")))
14019 (build-system r-build-system)
14020 (propagated-inputs `(("r-knitr" ,r-knitr)))
14021 (native-inputs `(("r-knitr" ,r-knitr)))
14022 (home-page "https://github.com/mayoverse/arsenal")
14023 (synopsis "Functions for large-scale statistical summaries")
14024 (description
14025 "This package provides an arsenal of R functions for large-scale
14026 statistical summaries, which are streamlined to work within the latest
14027 reporting tools in R and RStudio and which use formulas and versatile
14028 summary statistics for summary tables and models. The primary functions
14029 include
14030
14031 @enumerate
14032 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
14033 levels of one or more categorical variables;
14034 @item @code{paired}, a Table-1-like summary of multiple variable types paired
14035 across two time points;
14036 @item @code{modelsum}, which performs simple model fits on one or more
14037 endpoints for many variables (univariate or adjusted for covariates);
14038 @item @code{freqlist}, a powerful frequency table across many categorical
14039 variables;
14040 @item @code{comparedf}, a function for comparing @code{data.frames}; and
14041 @item @code{write2}, a function to output tables to a document.
14042 @end enumerate
14043 ")
14044 (license license:gpl2+)))
14045
14046 (define-public r-haplo-stats
14047 (package
14048 (name "r-haplo-stats")
14049 (version "1.8.2")
14050 (source
14051 (origin
14052 (method url-fetch)
14053 (uri (cran-uri "haplo.stats" version))
14054 (sha256
14055 (base32
14056 "13gc980jk1pas7mz9b4nmwqd64qhh2c0xhq1z06z67jgv7k8n7dc"))))
14057 (properties `((upstream-name . "haplo.stats")))
14058 (build-system r-build-system)
14059 (propagated-inputs
14060 `(("r-arsenal" ,r-arsenal)
14061 ("r-rms" ,r-rms)))
14062 (native-inputs
14063 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
14064 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
14065 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
14066 (description
14067 "This package provides routines for the analysis of indirectly measured
14068 haplotypes. The statistical methods assume that all subjects are unrelated
14069 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
14070 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
14071 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
14072 examples in the vignette.")
14073 (license license:gpl2+)))
14074
14075 (define-public r-bqtl
14076 (package
14077 (name "r-bqtl")
14078 (version "1.0-32")
14079 (source
14080 (origin
14081 (method url-fetch)
14082 (uri (cran-uri "bqtl" version))
14083 (sha256
14084 (base32
14085 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
14086 (build-system r-build-system)
14087 (native-inputs `(("gfortran" ,gfortran)))
14088 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
14089 (synopsis "Bayesian QTL mapping toolkit")
14090 (description
14091 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
14092 lines. It includes maximum likelihood and Bayesian tools.")
14093 (license license:gpl2+)))
14094
14095 (define-public r-ibdreg
14096 (package
14097 (name "r-ibdreg")
14098 (version "0.3.1")
14099 (source
14100 (origin
14101 (method url-fetch)
14102 (uri (cran-uri "ibdreg" version))
14103 (sha256
14104 (base32
14105 "0kgx9iavgm6d6njhki7bm82d6lw2c7kcch2pryd339js2hm0l5gq"))))
14106 (build-system r-build-system)
14107 (home-page "https://www.mayo.edu/research/labs/\
14108 statistical-genetics-genetic-epidemiology/software")
14109 (synopsis "Regression methods for IBD linkage with covariates")
14110 (description
14111 "This package provides a method to test genetic linkage with covariates
14112 by regression methods with response IBD sharing for relative pairs. Account
14113 for correlations of IBD statistics and covariates for relative pairs within
14114 the same pedigree.")
14115 (license license:gpl2+)))
14116
14117 (define-public r-dlmap
14118 (package
14119 (name "r-dlmap")
14120 (version "1.13")
14121 (source
14122 (origin
14123 (method url-fetch)
14124 (uri (cran-uri "dlmap" version))
14125 (sha256
14126 (base32
14127 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
14128 (build-system r-build-system)
14129 (propagated-inputs
14130 `(("r-ibdreg" ,r-ibdreg)
14131 ("r-mgcv" ,r-mgcv)
14132 ("r-nlme" ,r-nlme)
14133 ("r-qtl" ,r-qtl)
14134 ("r-wgaim" ,r-wgaim)))
14135 (home-page "https://cran.r-project.org/web/packages/dlmap/")
14136 (synopsis "Detection localization mapping for QTL")
14137 (description
14138 "This is package for QTL mapping in a mixed model framework with separate
14139 detection and localization stages. The first stage detects the number of QTL
14140 on each chromosome based on the genetic variation due to grouped markers on
14141 the chromosome; the second stage uses this information to determine the most
14142 likely QTL positions. The mixed model can accommodate general fixed and
14143 random effects, including spatial effects in field trials and pedigree
14144 effects. It is applicable to backcrosses, doubled haploids, recombinant
14145 inbred lines, F2 intercrosses, and association mapping populations.")
14146 (license license:gpl2)))
14147
14148 (define-public r-ldheatmap
14149 (package
14150 (name "r-ldheatmap")
14151 (version "0.99-8")
14152 (source
14153 (origin
14154 (method url-fetch)
14155 (uri (cran-uri "LDheatmap" version))
14156 (sha256
14157 (base32
14158 "1x3da3rbhyqb2ddngi48qv7vzb6vc347n9qhryr70qgcc1xvqj4z"))))
14159 (properties `((upstream-name . "LDheatmap")))
14160 (build-system r-build-system)
14161 (propagated-inputs
14162 `(("r-genetics" ,r-genetics)
14163 ("r-rcpp" ,r-rcpp)
14164 ("r-snpstats" ,r-snpstats)))
14165 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
14166 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
14167 (description
14168 "This package provides tools to produce a graphical display, as a heat
14169 map, of measures of pairwise linkage disequilibria between SNPs. Users may
14170 optionally include the physical locations or genetic map distances of each SNP
14171 on the plot.")
14172 (license license:gpl3)))
14173
14174 (define-public r-hwde
14175 (package
14176 (name "r-hwde")
14177 (version "0.67")
14178 (source
14179 (origin
14180 (method url-fetch)
14181 (uri (cran-uri "hwde" version))
14182 (sha256
14183 (base32
14184 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
14185 (build-system r-build-system)
14186 (home-page "https://cran.r-project.org/web/packages/hwde/")
14187 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
14188 (description
14189 "This package fits models for genotypic disequilibria, as described in
14190 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
14191 terms are available that account for first order interactions between loci.
14192 It also implements, for a single locus in a single population, a conditional
14193 exact test for Hardy-Weinberg equilibrium.")
14194 (license license:gpl2+)))
14195
14196 (define-public r-tdthap
14197 (package
14198 (name "r-tdthap")
14199 (version "1.1-11")
14200 (source
14201 (origin
14202 (method url-fetch)
14203 (uri (cran-uri "tdthap" version))
14204 (sha256
14205 (base32
14206 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
14207 (build-system r-build-system)
14208 (home-page "https://cran.r-project.org/web/packages/tdthap/")
14209 (synopsis "TDT tests for extended haplotypes")
14210 (description
14211 "Functions and examples are provided for transmission/disequilibrium
14212 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
14213 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
14214 (license license:artistic2.0)))
14215
14216 (define-public r-sparql
14217 (package
14218 (name "r-sparql")
14219 (version "1.16")
14220 (source (origin
14221 (method url-fetch)
14222 (uri (cran-uri "SPARQL" version))
14223 (sha256
14224 (base32
14225 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
14226 (properties `((upstream-name . "SPARQL")))
14227 (build-system r-build-system)
14228 (propagated-inputs
14229 `(("r-rcurl" ,r-rcurl)
14230 ("r-xml" ,r-xml)))
14231 (home-page "https://cran.r-project.org/web/packages/SPARQL")
14232 (synopsis "SPARQL client for R")
14233 (description "This package provides an interface to use SPARQL to pose
14234 SELECT or UPDATE queries to an end-point.")
14235 ;; The only license indication is found in the DESCRIPTION file,
14236 ;; which states GPL-3. So we cannot assume GPLv3+.
14237 (license license:gpl3)))
14238
14239 (define-public r-bookdown
14240 (package
14241 (name "r-bookdown")
14242 (version "0.20")
14243 (source (origin
14244 (method url-fetch)
14245 (uri (cran-uri "bookdown" version))
14246 (sha256
14247 (base32
14248 "0gnshkp1aj7f29sjkhzxn890hz39nwaqdln61x8apmrc658nacdg"))))
14249 (build-system r-build-system)
14250 (propagated-inputs
14251 `(("r-htmltools" ,r-htmltools)
14252 ("r-knitr" ,r-knitr)
14253 ("r-rmarkdown" ,r-rmarkdown)
14254 ("r-tinytex" ,r-tinytex)
14255 ("r-xfun" ,r-xfun)
14256 ("pandoc" ,pandoc)))
14257 (home-page "https://github.com/rstudio/bookdown")
14258 (synopsis "Authoring books and technical documents with R markdown")
14259 (description "This package provides output formats and utilities for
14260 authoring books and technical documents with R Markdown.")
14261 (license license:gpl3)))
14262
14263 (define-public r-optparse
14264 (package
14265 (name "r-optparse")
14266 (version "1.6.6")
14267 (source
14268 (origin
14269 (method url-fetch)
14270 (uri (cran-uri "optparse" version))
14271 (sha256
14272 (base32
14273 "1l301dy3gc8pn7j00awcjh41wmc1ks9kswak255kbsa6f54rsxsi"))))
14274 (build-system r-build-system)
14275 (propagated-inputs
14276 `(("r-getopt" ,r-getopt)))
14277 (native-inputs
14278 `(("r-knitr" ,r-knitr)))
14279 (home-page "https://github.com/trevorld/optparse")
14280 (synopsis "Command line option parser")
14281 (description
14282 "This package provides a command line parser inspired by Python's
14283 @code{optparse} library to be used with Rscript to write shebang scripts
14284 that accept short and long options.")
14285 (license license:gpl2+)))
14286
14287 (define-public r-wgcna
14288 (package
14289 (name "r-wgcna")
14290 (version "1.69")
14291 (source
14292 (origin
14293 (method url-fetch)
14294 (uri (cran-uri "WGCNA" version))
14295 (sha256
14296 (base32
14297 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
14298 (properties `((upstream-name . "WGCNA")))
14299 (build-system r-build-system)
14300 (propagated-inputs
14301 `(("r-annotationdbi" ,r-annotationdbi)
14302 ("r-doparallel" ,r-doparallel)
14303 ("r-dynamictreecut" ,r-dynamictreecut)
14304 ("r-fastcluster" ,r-fastcluster)
14305 ("r-foreach" ,r-foreach)
14306 ("r-go-db" ,r-go-db)
14307 ("r-hmisc" ,r-hmisc)
14308 ("r-impute" ,r-impute)
14309 ("r-rcpp" ,r-rcpp)
14310 ("r-survival" ,r-survival)
14311 ("r-matrixstats" ,r-matrixstats)
14312 ("r-preprocesscore" ,r-preprocesscore)))
14313 (home-page
14314 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
14315 (synopsis "Weighted correlation network analysis")
14316 (description
14317 "This package provides functions necessary to perform Weighted
14318 Correlation Network Analysis on high-dimensional data. It includes functions
14319 for rudimentary data cleaning, construction and summarization of correlation
14320 networks, module identification and functions for relating both variables and
14321 modules to sample traits. It also includes a number of utility functions for
14322 data manipulation and visualization.")
14323 (license license:gpl2+)))
14324
14325 (define-public r-kernlab
14326 (package
14327 (name "r-kernlab")
14328 (version "0.9-29")
14329 (source
14330 (origin
14331 (method url-fetch)
14332 (uri (cran-uri "kernlab" version))
14333 (sha256
14334 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
14335 (build-system r-build-system)
14336 (home-page "https://cran.r-project.org/web/packages/kernlab")
14337 (synopsis "Kernel-based machine learning tools")
14338 (description
14339 "This package provides kernel-based machine learning methods for
14340 classification, regression, clustering, novelty detection, quantile regression
14341 and dimensionality reduction. Among other methods @code{kernlab} includes
14342 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
14343 and a QP solver.")
14344 (license license:gpl2)))
14345
14346 (define-public r-hierfstat
14347 (package
14348 (name "r-hierfstat")
14349 (version "0.5-7")
14350 (source
14351 (origin
14352 (method url-fetch)
14353 (uri (cran-uri "hierfstat" version))
14354 (sha256
14355 (base32
14356 "0dp8k1z5a8gqnax99y1hwfvxilzf4n2i751zr0z6ihrzirsvb3m3"))))
14357 (build-system r-build-system)
14358 (propagated-inputs
14359 `(("r-ade4" ,r-ade4)
14360 ("r-adegenet" ,r-adegenet)
14361 ("r-gaston" ,r-gaston)
14362 ("r-gtools" ,r-gtools)))
14363 (native-inputs
14364 `(("r-knitr" ,r-knitr)))
14365 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
14366 (synopsis "Estimation and tests of hierarchical F-statistics")
14367 (description
14368 "This package allows the estimation of hierarchical F-statistics from
14369 haploid or diploid genetic data with any numbers of levels in the hierarchy,
14370 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
14371 are also given to test via randomisations the significance of each F and
14372 variance components, using the likelihood-ratio statistics G.")
14373 (license license:gpl2+)))
14374
14375 (define-public r-hapassoc
14376 (package
14377 (name "r-hapassoc")
14378 (version "1.2-8")
14379 (source
14380 (origin
14381 (method url-fetch)
14382 (uri (cran-uri "hapassoc" version))
14383 (sha256
14384 (base32
14385 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
14386 (build-system r-build-system)
14387 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
14388 (synopsis "Inference of trait associations with SNP haplotypes")
14389 (description
14390 "Hapassoc performs likelihood inference of trait associations with
14391 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
14392 functions are developed primarily for data collected in cohort or
14393 cross-sectional studies. They can accommodate uncertain haplotype phase and
14394 handle missing genotypes at some SNPs.")
14395 (license license:gpl2)))
14396
14397 (define-public r-sampling
14398 (package
14399 (name "r-sampling")
14400 (version "2.8")
14401 (source
14402 (origin
14403 (method url-fetch)
14404 (uri (cran-uri "sampling" version))
14405 (sha256
14406 (base32
14407 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
14408 (build-system r-build-system)
14409 (propagated-inputs
14410 `(("r-lpsolve" ,r-lpsolve)
14411 ("r-mass" ,r-mass)))
14412 (home-page "https://cran.r-project.org/web/packages/sampling/")
14413 (synopsis "Survey sampling")
14414 (description
14415 "This package provides functions for drawing and calibrating samples.")
14416 (license license:gpl2+)))
14417
14418 (define-public r-r2html
14419 (package
14420 (name "r-r2html")
14421 (version "2.3.2")
14422 (source
14423 (origin
14424 (method url-fetch)
14425 (uri (cran-uri "R2HTML" version))
14426 (sha256
14427 (base32
14428 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
14429 (properties `((upstream-name . "R2HTML")))
14430 (build-system r-build-system)
14431 (home-page "https://github.com/nalimilan/R2HTML")
14432 (synopsis "HTML export for R objects")
14433 (description
14434 "This package includes HTML functions and methods to write in an HTML
14435 file. Thus, making HTML reports is easy. It includes a function that allows
14436 redirection on the fly, which appears to be very useful for teaching purposes,
14437 as the student can keep a copy of the produced output to keep all that they
14438 did during the course. The package comes with a vignette describing how to
14439 write HTML reports for statistical analysis. Finally, a driver for Sweave
14440 parses HTML flat files containing R code and to automatically write
14441 the corresponding outputs (tables and graphs).")
14442 (license license:gpl2+)))
14443
14444 (define-public r-rjava
14445 (package
14446 (name "r-rjava")
14447 (version "0.9-13")
14448 (source
14449 (origin
14450 (method url-fetch)
14451 (uri (cran-uri "rJava" version))
14452 (sha256
14453 (base32
14454 "1x3mihyqzr61j52rwaqciw43mkjzmhib4s6qf57v6xj40ksqh5jv"))))
14455 (properties `((upstream-name . "rJava")))
14456 (build-system r-build-system)
14457 (arguments
14458 `(#:modules ((guix build utils)
14459 (guix build r-build-system)
14460 (ice-9 match))
14461 #:phases
14462 (modify-phases %standard-phases
14463 (add-after 'unpack 'set-JAVA_HOME
14464 (lambda* (#:key inputs #:allow-other-keys)
14465 (let ((jdk (assoc-ref inputs "jdk")))
14466 (setenv "JAVA_HOME" jdk)
14467 (setenv "JAVA" (which "java"))
14468 (setenv "JAR" (which "jar"))
14469 (setenv "JAVAC" (which "javac"))
14470 (setenv "JAVAH" (which "javah"))
14471 (setenv "JAVA_CPPFLAGS"
14472 (string-append "-I" jdk "/include "
14473 "-I" jdk "/include/linux"))
14474 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
14475 ((lib) (setenv "JAVA_LIBS" lib))
14476 (_ (error "Could not find libjvm.so"))))
14477 #t)))))
14478 (inputs
14479 `(("icu4c" ,icu4c)
14480 ("jdk" ,icedtea-8 "jdk")
14481 ("pcre" ,pcre)
14482 ("zlib" ,zlib)))
14483 (home-page "https://www.rforge.net/rJava/")
14484 (synopsis "Low-Level R to Java interface")
14485 (description
14486 "This package provides a low-level interface to the Java VM very much
14487 like .C/.Call and friends. It allows the creation of objects, calling methods
14488 and accessing fields.")
14489 (license license:gpl2)))
14490
14491 (define-public r-svmisc
14492 (package
14493 (name "r-svmisc")
14494 (version "1.1.0")
14495 (source
14496 (origin
14497 (method url-fetch)
14498 (uri (cran-uri "svMisc" version))
14499 (sha256
14500 (base32
14501 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
14502 (properties `((upstream-name . "svMisc")))
14503 (build-system r-build-system)
14504 (home-page "https://github.com/SciViews/svMisc")
14505 (synopsis "Miscellaneous functions for SciViews")
14506 (description
14507 "This package provides miscellaneous functions for SciViews or general
14508 use, including tools to manage a temporary environment attached to the search
14509 path for temporary variables you do not want to @code{save()} or
14510 @code{load()}; test the current platform; showing progress bars, etc.")
14511 (license license:gpl2)))
14512
14513 (define-public r-xyz
14514 (package
14515 (name "r-xyz")
14516 (version "0.2")
14517 (source
14518 (origin
14519 (method url-fetch)
14520 (uri (cran-uri "xyz" version))
14521 (sha256
14522 (base32
14523 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
14524 (build-system r-build-system)
14525 (propagated-inputs
14526 `(("r-rcpp" ,r-rcpp)))
14527 (home-page "https://cran.r-project.org/web/packages/xyz/")
14528 (synopsis "Algorithm for fast interaction search in high-dimensional data")
14529 (description
14530 "High dimensional interaction search by brute force requires a quadratic
14531 computational cost in the number of variables. The xyz algorithm provably
14532 finds strong interactions in almost linear time. For details of the algorithm
14533 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
14534 interaction search in high-dimensional data.")
14535 ;; Any version of the GPL.
14536 (license license:gpl2+)))
14537
14538 (define-public r-rttf2pt1
14539 (package
14540 (name "r-rttf2pt1")
14541 (version "1.3.8")
14542 (source
14543 (origin
14544 (method url-fetch)
14545 (uri (cran-uri "Rttf2pt1" version))
14546 (sha256
14547 (base32
14548 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
14549 (properties `((upstream-name . "Rttf2pt1")))
14550 (build-system r-build-system)
14551 (home-page "https://github.com/wch/Rttf2pt1")
14552 (synopsis "Font conversion utility")
14553 (description
14554 "This package contains the program @code{ttf2pt1}, for use with the
14555 @code{extrafont} package.")
14556 ;; Most of the files are covered under the Expat license. Some files are
14557 ;; covered under BSD-3. Deviations for individual files are recorded in
14558 ;; the LICENSE file.
14559 (license (list license:bsd-3 license:expat
14560 (license:non-copyleft "file://LICENSE")))))
14561
14562 (define-public r-extrafontdb
14563 (package
14564 (name "r-extrafontdb")
14565 (version "1.0")
14566 (source
14567 (origin
14568 (method url-fetch)
14569 (uri (cran-uri "extrafontdb" version))
14570 (sha256
14571 (base32
14572 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14573 (build-system r-build-system)
14574 (home-page "https://github.com/wch/extrafontdb")
14575 (synopsis "Database for the extrafont package")
14576 (description
14577 "This package holds the database for the @code{extrafont} package.")
14578 (license license:gpl2)))
14579
14580 (define-public r-extrafont
14581 (package
14582 (name "r-extrafont")
14583 (version "0.17")
14584 (source
14585 (origin
14586 (method url-fetch)
14587 (uri (cran-uri "extrafont" version))
14588 (sha256
14589 (base32
14590 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14591 (build-system r-build-system)
14592 (propagated-inputs
14593 `(("r-extrafontdb" ,r-extrafontdb)
14594 ("r-rttf2pt1" ,r-rttf2pt1)))
14595 (home-page "https://github.com/wch/extrafont")
14596 (synopsis "Tools for using fonts in R")
14597 (description
14598 "The extrafont package makes it easier to use fonts other than the basic
14599 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14600 used with PDF or PostScript output files. There are two hurdles for using
14601 fonts in PDF (or Postscript) output files:
14602
14603 @enumerate
14604 @item Making R aware of the font and the dimensions of the characters.
14605 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14606 properly on a device that doesn't have the font. This is usually needed if
14607 you want to print the PDF file or share it with others.
14608 @end enumerate
14609
14610 The extrafont package makes both of these things easier.")
14611 (license license:gpl2)))
14612
14613 (define-public r-xkcd
14614 (package
14615 (name "r-xkcd")
14616 (version "0.0.6")
14617 (source
14618 (origin
14619 (method url-fetch)
14620 (uri (cran-uri "xkcd" version))
14621 (sha256
14622 (base32
14623 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14624 (build-system r-build-system)
14625 (propagated-inputs
14626 `(("r-extrafont" ,r-extrafont)
14627 ("r-ggplot2" ,r-ggplot2)
14628 ("r-hmisc" ,r-hmisc)))
14629 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14630 (synopsis "Plot ggplot2 graphics in the XKCD style")
14631 (description
14632 "This package provides the means to plot ggplot2 graphs in the style of
14633 the XKCD web comic.")
14634 (license license:gpl3)))
14635
14636 (define-public r-msigdbr
14637 (package
14638 (name "r-msigdbr")
14639 (version "7.1.1")
14640 (source
14641 (origin
14642 (method url-fetch)
14643 (uri (cran-uri "msigdbr" version))
14644 (sha256
14645 (base32
14646 "0jvi49qa7616s58p0rx66pcw7h12rc8kgcg9225jk7pc3934hnzh"))))
14647 (build-system r-build-system)
14648 (propagated-inputs
14649 `(("r-dplyr" ,r-dplyr)
14650 ("r-magrittr" ,r-magrittr)
14651 ("r-rlang" ,r-rlang)
14652 ("r-tibble" ,r-tibble)))
14653 (native-inputs
14654 `(("r-knitr" ,r-knitr)))
14655 (home-page "https://github.com/igordot/msigdbr")
14656 (synopsis "MSigDB gene sets for multiple organisms")
14657 (description
14658 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14659 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14660 software in a standard R data frame with key-value pairs. Included are the
14661 original human gene symbols and Entrez IDs as well as the equivalents for
14662 various frequently studied model organisms such as mouse, rat, pig, fly, and
14663 yeast.")
14664 ;; The package is covered under the Expat license, but the upstream MSigDB
14665 ;; files are made available under the Creative Commons Attribution 4.0
14666 ;; International license.
14667 (license (list license:expat license:cc-by4.0))))
14668
14669 (define-public r-gridgraphics
14670 (package
14671 (name "r-gridgraphics")
14672 (version "0.5-0")
14673 (source
14674 (origin
14675 (method url-fetch)
14676 (uri (cran-uri "gridGraphics" version))
14677 (sha256
14678 (base32
14679 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14680 (properties `((upstream-name . "gridGraphics")))
14681 (build-system r-build-system)
14682 (home-page "https://github.com/pmur002/gridgraphics")
14683 (synopsis "Redraw base graphics using @code{grid} graphics")
14684 (description
14685 "This package provides functions to convert a page of plots drawn with
14686 the @code{graphics} package into identical output drawn with the @code{grid}
14687 package. The result looks like the original @code{graphics}-based plot, but
14688 consists of @code{grid} grobs and viewports that can then be manipulated with
14689 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14690 (license license:gpl2+)))
14691
14692 (define-public r-farver
14693 (package
14694 (name "r-farver")
14695 (version "2.0.3")
14696 (source
14697 (origin
14698 (method url-fetch)
14699 (uri (cran-uri "farver" version))
14700 (sha256
14701 (base32
14702 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14703 (build-system r-build-system)
14704 (home-page "https://github.com/thomasp85/farver")
14705 (synopsis "Vectorized color conversion and comparison")
14706 (description
14707 "The encoding of color can be handled in many different ways, using
14708 different color spaces. As different color spaces have different uses,
14709 efficient conversion between these representations are important. This
14710 package provides a set of functions that gives access to very fast color space
14711 conversion and comparisons implemented in C++, and offers 100-fold speed
14712 improvements over the @code{convertColor} function in the @code{grDevices}
14713 package.")
14714 (license license:expat)))
14715
14716 (define-public r-ggplotify
14717 (package
14718 (name "r-ggplotify")
14719 (version "0.0.5")
14720 (source
14721 (origin
14722 (method url-fetch)
14723 (uri (cran-uri "ggplotify" version))
14724 (sha256
14725 (base32
14726 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14727 (build-system r-build-system)
14728 (propagated-inputs
14729 `(("r-ggplot2" ,r-ggplot2)
14730 ("r-gridgraphics" ,r-gridgraphics)
14731 ("r-rvcheck" ,r-rvcheck)))
14732 (native-inputs
14733 `(("r-knitr" ,r-knitr)))
14734 (home-page "https://github.com/GuangchuangYu/ggplotify")
14735 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14736 (description
14737 "This package provides tools to convert plot function calls (using
14738 expression or formula) to @code{grob} or @code{ggplot} objects that are
14739 compatible with the @code{grid} and @code{ggplot2} environment. With this
14740 package, we are able to e.g. use @code{cowplot} to align plots produced by
14741 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14742 converting them to @code{ggplot} objects.")
14743 (license license:artistic2.0)))
14744
14745 (define-public r-triebeard
14746 (package
14747 (name "r-triebeard")
14748 (version "0.3.0")
14749 (source
14750 (origin
14751 (method url-fetch)
14752 (uri (cran-uri "triebeard" version))
14753 (sha256
14754 (base32
14755 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14756 (build-system r-build-system)
14757 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14758 (home-page "https://github.com/Ironholds/triebeard/")
14759 (synopsis "Radix trees in Rcpp")
14760 (description
14761 "Radix trees, or tries, are key-value data structures optimized for
14762 efficient lookups, similar in purpose to hash tables. This package provides
14763 an implementation of radix trees for use in R programming and in developing
14764 packages with Rcpp.")
14765 (license license:expat)))
14766
14767 (define-public r-tweenr
14768 (package
14769 (name "r-tweenr")
14770 (version "1.0.1")
14771 (source
14772 (origin
14773 (method url-fetch)
14774 (uri (cran-uri "tweenr" version))
14775 (sha256
14776 (base32
14777 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14778 (build-system r-build-system)
14779 (propagated-inputs
14780 `(("r-farver" ,r-farver)
14781 ("r-magrittr" ,r-magrittr)
14782 ("r-rcpp" ,r-rcpp)
14783 ("r-rlang" ,r-rlang)))
14784 (home-page "https://github.com/thomasp85/tweenr")
14785 (synopsis "Interpolate data for smooth animations")
14786 (description
14787 "In order to create smooth animation between states of data, tweening is
14788 necessary. This package provides a range of functions for creating tweened
14789 data that can be used as basis for animation. Furthermore it adds a number of
14790 vectorized interpolaters for common R data types such as numeric, date and
14791 color.")
14792 (license license:expat)))
14793
14794 (define-public r-polyclip
14795 (package
14796 (name "r-polyclip")
14797 (version "1.10-0")
14798 (source
14799 (origin
14800 (method url-fetch)
14801 (uri (cran-uri "polyclip" version))
14802 (sha256
14803 (base32
14804 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14805 (build-system r-build-system)
14806 (native-inputs `(("pkg-config" ,pkg-config)))
14807 (home-page "http://www.angusj.com/delphi/clipper.php")
14808 (synopsis "Polygon clipping")
14809 (description
14810 "This package provides an R port of the library Clipper. It performs
14811 polygon clipping operations (intersection, union, set minus, set difference)
14812 for polygonal regions of arbitrary complexity, including holes. It computes
14813 offset polygons (spatial buffer zones, morphological dilations, Minkowski
14814 dilations) for polygonal regions and polygonal lines. It computes the
14815 Minkowski Sum of general polygons. There is a function for removing
14816 self-intersections from polygon data.")
14817 (license license:boost1.0)))
14818
14819 (define-public r-urltools
14820 (package
14821 (name "r-urltools")
14822 (version "1.7.3")
14823 (source
14824 (origin
14825 (method url-fetch)
14826 (uri (cran-uri "urltools" version))
14827 (sha256
14828 (base32
14829 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14830 (build-system r-build-system)
14831 (propagated-inputs
14832 `(("r-rcpp" ,r-rcpp)
14833 ("r-triebeard" ,r-triebeard)))
14834 (home-page "https://github.com/Ironholds/urltools/")
14835 (synopsis "Vectorized tools for URL handling and parsing")
14836 (description
14837 "This package provides a toolkit for all URL-handling needs, including
14838 encoding and decoding, parsing, parameter extraction and modification. All
14839 functions are designed to be both fast and entirely vectorized. It is
14840 intended to be useful for people dealing with web-related datasets, such as
14841 server-side logs, although may be useful for other situations involving large
14842 sets of URLs.")
14843 (license license:expat)))
14844
14845 (define-public r-ggforce
14846 (package
14847 (name "r-ggforce")
14848 (version "0.3.2")
14849 (source
14850 (origin
14851 (method url-fetch)
14852 (uri (cran-uri "ggforce" version))
14853 (sha256
14854 (base32
14855 "1lplxyq5bgx90dgaimhynpcywag1gp6vlsy7q52ay1nfc35qmkjc"))))
14856 (build-system r-build-system)
14857 (propagated-inputs
14858 `(("r-ggplot2" ,r-ggplot2)
14859 ("r-gtable" ,r-gtable)
14860 ("r-mass" ,r-mass)
14861 ("r-polyclip" ,r-polyclip)
14862 ("r-rcpp" ,r-rcpp)
14863 ("r-rcppeigen" ,r-rcppeigen)
14864 ("r-rlang" ,r-rlang)
14865 ("r-scales" ,r-scales)
14866 ("r-tidyselect" ,r-tidyselect)
14867 ("r-tweenr" ,r-tweenr)
14868 ("r-withr" ,r-withr)))
14869 (home-page "https://ggforce.data-imaginist.com")
14870 (synopsis "Accelerating ggplot2")
14871 (description
14872 "The aim of the ggplot2 package is to aid in visual data investigations.
14873 This focus has led to a lack of facilities for composing specialized plots.
14874 Thi package aims to be a collection of mainly new statistics and geometries
14875 that fills this gap.")
14876 (license license:expat)))
14877
14878 (define-public r-europepmc
14879 (package
14880 (name "r-europepmc")
14881 (version "0.4")
14882 (source
14883 (origin
14884 (method url-fetch)
14885 (uri (cran-uri "europepmc" version))
14886 (sha256
14887 (base32
14888 "174nnyc2mbgqxb5kgqabn1vf71c2mps7ig2bclq4is0f7nb64pym"))))
14889 (build-system r-build-system)
14890 (propagated-inputs
14891 `(("r-dplyr" ,r-dplyr)
14892 ("r-httr" ,r-httr)
14893 ("r-jsonlite" ,r-jsonlite)
14894 ("r-plyr" ,r-plyr)
14895 ("r-progress" ,r-progress)
14896 ("r-purrr" ,r-purrr)
14897 ("r-rlang" ,r-rlang)
14898 ("r-tibble" ,r-tibble)
14899 ("r-tidyr" ,r-tidyr)
14900 ("r-urltools" ,r-urltools)
14901 ("r-xml2" ,r-xml2)))
14902 (native-inputs
14903 `(("r-knitr" ,r-knitr)))
14904 (home-page "https://github.com/ropensci/europepmc/")
14905 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14906 (description
14907 "This package provides an R Client for the
14908 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14909 Service}. It gives access to both metadata on life science literature and
14910 open access full texts. Europe PMC indexes all PubMed content and other
14911 literature sources including Agricola, a bibliographic database of citations
14912 to the agricultural literature, or Biological Patents. In addition to
14913 bibliographic metadata, the client allows users to fetch citations and
14914 reference lists. Links between life-science literature and other EBI
14915 databases, including ENA, PDB or ChEMBL are also accessible.")
14916 (license license:gpl3)))
14917
14918 (define-public r-ggraph
14919 (package
14920 (name "r-ggraph")
14921 (version "2.0.3")
14922 (source
14923 (origin
14924 (method url-fetch)
14925 (uri (cran-uri "ggraph" version))
14926 (sha256
14927 (base32
14928 "1pz06j0za4p6dc3fqjzcw8bpym70bmnfcvpv1q34r74rnwzjdyvq"))))
14929 (build-system r-build-system)
14930 (propagated-inputs
14931 `(("r-digest" ,r-digest)
14932 ("r-dplyr" ,r-dplyr)
14933 ("r-ggforce" ,r-ggforce)
14934 ("r-ggplot2" ,r-ggplot2)
14935 ("r-ggrepel" ,r-ggrepel)
14936 ("r-graphlayouts" ,r-graphlayouts)
14937 ("r-gtable" ,r-gtable)
14938 ("r-igraph" ,r-igraph)
14939 ("r-mass" ,r-mass)
14940 ("r-rcpp" ,r-rcpp)
14941 ("r-rlang" ,r-rlang)
14942 ("r-scales" ,r-scales)
14943 ("r-tidygraph" ,r-tidygraph)
14944 ("r-viridis" ,r-viridis)))
14945 (native-inputs
14946 `(("r-knitr" ,r-knitr)))
14947 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14948 (synopsis "Implementation of grammar of graphics for graphs and networks")
14949 (description
14950 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14951 graph and network visualizations due to its reliance on tabular data input.
14952 The ggraph package is an extension of the ggplot2 API tailored to graph
14953 visualizations and provides the same flexible approach to building up plots
14954 layer by layer.")
14955 (license license:gpl3)))
14956
14957 (define-public r-varselrf
14958 (package
14959 (name "r-varselrf")
14960 (version "0.7-8")
14961 (source
14962 (origin
14963 (method url-fetch)
14964 (uri (cran-uri "varSelRF" version))
14965 (sha256
14966 (base32
14967 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14968 (properties `((upstream-name . "varSelRF")))
14969 (build-system r-build-system)
14970 (propagated-inputs
14971 `(("r-randomforest" ,r-randomforest)))
14972 (home-page "https://www.ligarto.org/rdiaz/software/software")
14973 (synopsis "Variable selection using random forests")
14974 (description
14975 "This package provides tools for the variable selection from random
14976 forests using both backwards variable elimination (for the selection of small
14977 sets of non-redundant variables) and selection based on the importance
14978 spectrum (somewhat similar to scree plots; for the selection of large,
14979 potentially highly-correlated variables). The main applications are in
14980 high-dimensional data (e.g., microarray data, and other genomics and
14981 proteomics applications).")
14982 (license license:gpl2+)))
14983
14984 (define-public r-pamr
14985 (package
14986 (name "r-pamr")
14987 (version "1.56.1")
14988 (source
14989 (origin
14990 (method url-fetch)
14991 (uri (cran-uri "pamr" version))
14992 (sha256
14993 (base32
14994 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14995 (build-system r-build-system)
14996 (propagated-inputs
14997 `(("r-cluster" ,r-cluster)
14998 ("r-survival" ,r-survival)))
14999 (native-inputs `(("gfortran" ,gfortran)))
15000 (home-page "https://cran.r-project.org/web/packages/pamr/")
15001 (synopsis "Prediction Analysis for Microarrays")
15002 (description
15003 "This package provides some functions for sample classification in
15004 microarrays.")
15005 (license license:gpl2)))
15006
15007 (define-public r-rda
15008 (package
15009 (name "r-rda")
15010 (version "1.0.2-2.1")
15011 (source
15012 (origin
15013 (method url-fetch)
15014 (uri (cran-uri "rda" version))
15015 (sha256
15016 (base32
15017 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
15018 (build-system r-build-system)
15019 (home-page "https://cran.r-project.org/web/packages/rda/")
15020 (synopsis "Shrunken centroids regularized discriminant analysis")
15021 (description
15022 "This package provides tools for shrunken centroids regularized
15023 discriminant analysis for the purpose of classifying high dimensional data.")
15024 (license license:gpl2+)))
15025
15026 (define-public r-ggvis
15027 (package
15028 (name "r-ggvis")
15029 (version "0.4.5")
15030 (source
15031 (origin
15032 (method url-fetch)
15033 (uri (cran-uri "ggvis" version))
15034 (sha256
15035 (base32
15036 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
15037 (build-system r-build-system)
15038 (propagated-inputs
15039 `(("r-assertthat" ,r-assertthat)
15040 ("r-dplyr" ,r-dplyr)
15041 ("r-htmltools" ,r-htmltools)
15042 ("r-jsonlite" ,r-jsonlite)
15043 ("r-lazyeval" ,r-lazyeval)
15044 ("r-magrittr" ,r-magrittr)
15045 ("r-shiny" ,r-shiny)))
15046 (home-page "https://ggvis.rstudio.com/")
15047 (synopsis "Interactive grammar of graphics")
15048 (description
15049 "This package is a data visualization package for R providing an
15050 implementation of an interactive grammar of graphics, taking the best parts of
15051 ggplot2, combining them with the reactive framework of Shiny and drawing web
15052 graphics using Vega.")
15053 (license license:gpl2)))
15054
15055 (define-public r-gbm
15056 (package
15057 (name "r-gbm")
15058 (version "2.1.8")
15059 (source
15060 (origin
15061 (method url-fetch)
15062 (uri (cran-uri "gbm" version))
15063 (sha256
15064 (base32
15065 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
15066 (build-system r-build-system)
15067 (propagated-inputs
15068 `(("r-lattice" ,r-lattice)
15069 ("r-survival" ,r-survival)))
15070 (native-inputs
15071 `(("r-knitr" ,r-knitr)))
15072 (home-page "https://github.com/gbm-developers/gbm")
15073 (synopsis "Generalized boosted regression models")
15074 (description
15075 "This package is an implementation of extensions to Freund and Schapire's
15076 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
15077 regression methods for least squares, absolute loss, t-distribution loss,
15078 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
15079 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
15080 and Learning to Rank measures (LambdaMart).")
15081 (license license:gpl2+)))
15082
15083 (define-public r-threejs
15084 (package
15085 (name "r-threejs")
15086 (version "0.3.3")
15087 (source
15088 (origin
15089 (method url-fetch)
15090 (uri (cran-uri "threejs" version))
15091 (sha256
15092 (base32
15093 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
15094 (build-system r-build-system)
15095 (arguments
15096 `(#:modules ((guix build utils)
15097 (guix build r-build-system)
15098 (srfi srfi-1)
15099 (ice-9 popen))
15100 #:phases
15101 (modify-phases %standard-phases
15102 (add-after 'unpack 'process-javascript
15103 (lambda* (#:key inputs #:allow-other-keys)
15104 (with-directory-excursion "inst"
15105 (call-with-values
15106 (lambda ()
15107 (unzip2
15108 `((,(assoc-ref inputs "js-jquery")
15109 "htmlwidgets/lib/jquery/jquery.min.js")
15110 (,(assoc-ref inputs "js-threejs-111")
15111 "htmlwidgets/lib/threejs-111/three.min.js"))))
15112 (lambda (sources targets)
15113 (for-each (lambda (source target)
15114 (format #t "Processing ~a --> ~a~%"
15115 source target)
15116 (delete-file target)
15117 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
15118 (call-with-output-file target
15119 (lambda (port)
15120 (dump-port minified port)))))
15121 sources targets))))
15122 #t)))))
15123 (propagated-inputs
15124 `(("r-base64enc" ,r-base64enc)
15125 ("r-crosstalk" ,r-crosstalk)
15126 ("r-htmlwidgets" ,r-htmlwidgets)
15127 ("r-igraph" ,r-igraph)))
15128 (native-inputs
15129 `(("uglify-js" ,uglify-js)
15130 ("js-jquery"
15131 ,(origin
15132 (method url-fetch)
15133 (uri "https://code.jquery.com/jquery-1.12.4.js")
15134 (sha256
15135 (base32
15136 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
15137 ("js-threejs-111"
15138 ,(origin
15139 (method url-fetch)
15140 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
15141 (sha256
15142 (base32
15143 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
15144 (home-page "https://bwlewis.github.io/rthreejs")
15145 (synopsis "Interactive 3D scatter plots, networks and globes")
15146 (description
15147 "Create interactive 3D scatter plots, network plots, and globes in R
15148 using the three.js visualization library.")
15149 (license license:expat)))
15150
15151 (define-public r-mlbench
15152 (package
15153 (name "r-mlbench")
15154 (version "2.1-1")
15155 (source
15156 (origin
15157 (method url-fetch)
15158 (uri (cran-uri "mlbench" version))
15159 (sha256
15160 (base32
15161 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
15162 (build-system r-build-system)
15163 (home-page "https://cran.r-project.org/web/packages/mlbench/")
15164 (synopsis "Machine learning benchmark problems")
15165 (description
15166 "This package provides a collection of artificial and real-world machine
15167 learning benchmark problems, including, e.g., several data sets from the UCI
15168 repository.")
15169 (license license:gpl2)))
15170
15171 (define-public r-mpm
15172 (package
15173 (name "r-mpm")
15174 (version "1.0-22")
15175 (source
15176 (origin
15177 (method url-fetch)
15178 (uri (cran-uri "mpm" version))
15179 (sha256
15180 (base32
15181 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
15182 (build-system r-build-system)
15183 (propagated-inputs
15184 `(("r-kernsmooth" ,r-kernsmooth)
15185 ("r-mass" ,r-mass)))
15186 (home-page "http://mpm.r-forge.r-project.org")
15187 (synopsis "Multivariate projection methods")
15188 (description
15189 "This is a package for exploratory graphical analysis of multivariate
15190 data, specifically gene expression data with different projection methods:
15191 principal component analysis, correspondence analysis, spectral map
15192 analysis.")
15193 (license license:gpl2+)))
15194
15195 (define-public r-png
15196 (package
15197 (name "r-png")
15198 (version "0.1-7")
15199 (source (origin
15200 (method url-fetch)
15201 (uri (cran-uri "png" version))
15202 (sha256
15203 (base32
15204 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
15205 (build-system r-build-system)
15206 (inputs
15207 `(("libpng" ,libpng)
15208 ("zlib" ,zlib)))
15209 (home-page "https://www.rforge.net/png/")
15210 (synopsis "Read and write PNG images")
15211 (description
15212 "This package provides an easy and simple way to read, write and display
15213 bitmap images stored in the PNG format. It can read and write both files and
15214 in-memory raw vectors.")
15215 ;; Any of these GPL versions.
15216 (license (list license:gpl2 license:gpl3))))
15217
15218 (define-public r-ggcorrplot
15219 (package
15220 (name "r-ggcorrplot")
15221 (version "0.1.3")
15222 (source
15223 (origin
15224 (method url-fetch)
15225 (uri (cran-uri "ggcorrplot" version))
15226 (sha256
15227 (base32
15228 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
15229 (build-system r-build-system)
15230 (propagated-inputs
15231 `(("r-ggplot2" ,r-ggplot2)
15232 ("r-reshape2" ,r-reshape2)))
15233 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
15234 (synopsis "Visualization of a correlation matrix using ggplot2")
15235 (description
15236 "The ggcorrplot package can be used to visualize easily a correlation
15237 matrix using ggplot2. It provides a solution for reordering the correlation
15238 matrix and displays the significance level on the plot. It also includes a
15239 function for computing a matrix of correlation p-values.")
15240 (license license:gpl2)))
15241
15242 ;; This package includes minified JavaScript files. When upgrading please
15243 ;; check that there are no new minified JavaScript files.
15244 (define-public r-flexdashboard
15245 (package
15246 (name "r-flexdashboard")
15247 (version "0.5.2")
15248 (source
15249 (origin
15250 (method url-fetch)
15251 (uri (cran-uri "flexdashboard" version))
15252 (sha256
15253 (base32
15254 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
15255 (modules '((guix build utils)))
15256 (snippet
15257 '(begin
15258 ;; Delete bundled minified JavaScript files
15259 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
15260 (delete-file "inst/www/sly/sly.min.js")
15261 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
15262 (delete-file "inst/www/prism/prism.js")
15263 #t))))
15264 (build-system r-build-system)
15265 (arguments
15266 `(#:modules ((guix build utils)
15267 (guix build r-build-system)
15268 (srfi srfi-1)
15269 (srfi srfi-26)
15270 (ice-9 popen)
15271 (ice-9 textual-ports))
15272 #:phases
15273 (modify-phases %standard-phases
15274 (add-after 'unpack 'process-javascript
15275 (lambda* (#:key inputs #:allow-other-keys)
15276 (with-directory-excursion "inst"
15277 ;; Concatenate all components of prism.js
15278 (let ((contents (string-join
15279 (map (lambda (name)
15280 (call-with-input-file
15281 (assoc-ref inputs name)
15282 get-string-all))
15283 (list "js-prism"
15284 "js-prism-r"
15285 "js-prism-line-numbers"))
15286 "\n")))
15287 (call-with-output-file "prism-src.js"
15288 (cut display contents <>)))
15289 (call-with-values
15290 (lambda ()
15291 (unzip2
15292 `(("www/stickytableheaders/jquery.stickytableheaders.js"
15293 "www/stickytableheaders/jquery.stickytableheaders.min.js")
15294 ("www/sly/sly.js"
15295 "www/sly/sly.min.js")
15296 ("prism-src.js"
15297 "www/prism/prism.js")
15298 (,(assoc-ref inputs "js-raphael")
15299 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
15300 (,(assoc-ref inputs "js-featherlight")
15301 "www/featherlight/featherlight.min.js"))))
15302 (lambda (sources targets)
15303 (for-each (lambda (source target)
15304 (format #t "Processing ~a --> ~a~%"
15305 source target)
15306 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
15307 (call-with-output-file target
15308 (lambda (port)
15309 (dump-port minified port)))))
15310 sources targets))))
15311 #t)))))
15312 (propagated-inputs
15313 `(("r-htmltools" ,r-htmltools)
15314 ("r-htmlwidgets" ,r-htmlwidgets)
15315 ("r-jsonlite" ,r-jsonlite)
15316 ("r-knitr" ,r-knitr)
15317 ("r-rmarkdown" ,r-rmarkdown)
15318 ("r-shiny" ,r-shiny)))
15319 (native-inputs
15320 `(("uglify-js" ,uglify-js)
15321 ("js-raphael"
15322 ,(origin
15323 (method url-fetch)
15324 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
15325 (sha256
15326 (base32
15327 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
15328 ("js-prism"
15329 ,(origin
15330 (method url-fetch)
15331 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
15332 (sha256
15333 (base32
15334 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
15335 ("js-prism-r"
15336 ,(origin
15337 (method url-fetch)
15338 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
15339 (sha256
15340 (base32
15341 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
15342 ("js-prism-line-numbers"
15343 ,(origin
15344 (method url-fetch)
15345 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
15346 (sha256
15347 (base32
15348 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
15349 ("js-featherlight"
15350 ,(origin
15351 (method url-fetch)
15352 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
15353 (sha256
15354 (base32
15355 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
15356 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
15357 (synopsis "R Markdown format for flexible dashboards")
15358 (description
15359 "This package provides an R Markdown format for converting an R Markdown
15360 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
15361 of its components to the containing web page.")
15362 (license license:expat)))
15363
15364 (define-public r-preseqr
15365 (package
15366 (name "r-preseqr")
15367 (version "4.0.0")
15368 (source
15369 (origin
15370 (method url-fetch)
15371 (uri (cran-uri "preseqR" version))
15372 (sha256
15373 (base32
15374 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
15375 (properties `((upstream-name . "preseqR")))
15376 (build-system r-build-system)
15377 (propagated-inputs
15378 `(("r-polynom" ,r-polynom)))
15379 (home-page "https://cran.r-project.org/web/packages/preseqR/")
15380 (synopsis "Predicting species accumulation curves")
15381 (description
15382 "This package can be used to predict the r-species accumulation
15383 curve (r-SAC), which is the number of species represented at least r times as
15384 a function of the sampling effort. When r = 1, the curve is known as the
15385 species accumulation curve, or the library complexity curve in high-throughput
15386 genomic sequencing. The package includes both parametric and nonparametric
15387 methods, as described by Deng C, et al. (2018).")
15388 (license license:gpl3)))
15389
15390 (define-public r-mapplots
15391 (package
15392 (name "r-mapplots")
15393 (version "1.5.1")
15394 (source
15395 (origin
15396 (method url-fetch)
15397 (uri (cran-uri "mapplots" version))
15398 (sha256
15399 (base32
15400 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
15401 (build-system r-build-system)
15402 (home-page "https://cran.r-project.org/web/packages/mapplots/")
15403 (synopsis "Data visualization on maps")
15404 (description
15405 "This package helps you create simple maps; add sub-plots like pie plots
15406 to a map or any other plot; format, plot and export gridded data. The package
15407 was developed for displaying fisheries data but most functions can be used for
15408 more generic data visualisation.")
15409 (license license:gpl2+)))
15410
15411 (define-public r-pmcmr
15412 (package
15413 (name "r-pmcmr")
15414 (version "4.3")
15415 (source
15416 (origin
15417 (method url-fetch)
15418 (uri (cran-uri "PMCMR" version))
15419 (sha256
15420 (base32
15421 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
15422 (properties `((upstream-name . "PMCMR")))
15423 (build-system r-build-system)
15424 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
15425 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
15426 (description
15427 "This is a deprecated package for calculating pairwise multiple
15428 comparisons of mean rank sums. This package is superseded by the novel
15429 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
15430 compatibility of dependent packages for some time.")
15431 (license license:gpl3+)))
15432
15433 (define-public r-downloader
15434 (package
15435 (name "r-downloader")
15436 (version "0.4")
15437 (source
15438 (origin
15439 (method url-fetch)
15440 (uri (cran-uri "downloader" version))
15441 (sha256
15442 (base32
15443 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
15444 (build-system r-build-system)
15445 (propagated-inputs
15446 `(("r-digest" ,r-digest)))
15447 (home-page "https://github.com/wch/downloader")
15448 (synopsis "Download files over HTTP and HTTPS")
15449 (description
15450 "This package provides a wrapper for the @code{download.file} function,
15451 making it possible to download files over HTTPS across platforms. The
15452 @code{RCurl} package provides this functionality (and much more) but has
15453 external dependencies. This package has is implemented purely in R.")
15454 (license license:gpl2)))
15455
15456 (define-public r-rex
15457 (package
15458 (name "r-rex")
15459 (version "1.2.0")
15460 (source
15461 (origin
15462 (method url-fetch)
15463 (uri (cran-uri "rex" version))
15464 (sha256
15465 (base32
15466 "0m7bq8db3m5dhf01rw7xc7xy1ciq3m7dfgsl80p8cy4h8vqr3d06"))))
15467 (build-system r-build-system)
15468 (propagated-inputs
15469 `(("r-lazyeval" ,r-lazyeval)))
15470 (native-inputs
15471 `(("r-knitr" ,r-knitr)))
15472 (home-page "https://github.com/kevinushey/rex")
15473 (synopsis "Friendly regular expressions")
15474 (description
15475 "This package provides a friendly interface for the construction of
15476 regular expressions. Regular expressions are a very powerful feature, however
15477 they are often difficult to interpret. Rex allows you to build complex
15478 regular expressions from human readable expressions")
15479 (license license:expat)))
15480
15481 (define-public r-xmlparsedata
15482 (package
15483 (name "r-xmlparsedata")
15484 (version "1.0.3")
15485 (source
15486 (origin
15487 (method url-fetch)
15488 (uri (cran-uri "xmlparsedata" version))
15489 (sha256
15490 (base32
15491 "0gjr3l5z5dp276lchr2649as1rkj56d2mlvbr66yg393zzw50lsh"))))
15492 (properties `((upstream-name . "xmlparsedata")))
15493 (build-system r-build-system)
15494 (home-page "https://github.com/r-lib/xmlparsedata#readme")
15495 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
15496 (description
15497 "This package provides tools to convert the output of
15498 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
15499 @code{XPath}, and is easier to manipulate in general.")
15500 (license license:expat)))
15501
15502 (define-public r-cyclocomp
15503 (package
15504 (name "r-cyclocomp")
15505 (version "1.1.0")
15506 (source
15507 (origin
15508 (method url-fetch)
15509 (uri (cran-uri "cyclocomp" version))
15510 (sha256
15511 (base32
15512 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
15513 (properties `((upstream-name . "cyclocomp")))
15514 (build-system r-build-system)
15515 (propagated-inputs
15516 `(("r-callr" ,r-callr)
15517 ("r-crayon" ,r-crayon)
15518 ("r-desc" ,r-desc)
15519 ("r-remotes" ,r-remotes)
15520 ("r-withr" ,r-withr)))
15521 (home-page "https://github.com/MangoTheCat/cyclocomp")
15522 (synopsis "Cyclomatic complexity of R code")
15523 (description
15524 "Cyclomatic complexity is a software metric, used to indicate the
15525 complexity of a program. It is a quantitative measure of the number of
15526 linearly independent paths through a program's source code. This package
15527 provides tools to compute this metric.")
15528 (license license:expat)))
15529
15530 (define-public r-lintr
15531 (package
15532 (name "r-lintr")
15533 (version "2.0.1")
15534 (source
15535 (origin
15536 (method url-fetch)
15537 (uri (cran-uri "lintr" version))
15538 (sha256
15539 (base32
15540 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
15541 (properties `((upstream-name . "lintr")))
15542 (build-system r-build-system)
15543 (propagated-inputs
15544 `(("r-codetools" ,r-codetools)
15545 ("r-crayon" ,r-crayon)
15546 ("r-cyclocomp" ,r-cyclocomp)
15547 ("r-digest" ,r-digest)
15548 ("r-httr" ,r-httr)
15549 ("r-jsonlite" ,r-jsonlite)
15550 ("r-knitr" ,r-knitr)
15551 ("r-rex" ,r-rex)
15552 ("r-rstudioapi" ,r-rstudioapi)
15553 ("r-testthat" ,r-testthat)
15554 ("r-xml2" ,r-xml2)
15555 ("r-xmlparsedata" ,r-xmlparsedata)))
15556 (home-page "https://github.com/jimhester/lintr")
15557 (synopsis "Linter for R code")
15558 (description "This package checks adherence to a given style, syntax
15559 errors and possible semantic issues. It supports on the fly checking of R
15560 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
15561 (license license:expat)))
15562
15563 (define-public r-sctransform
15564 (package
15565 (name "r-sctransform")
15566 (version "0.2.1")
15567 (source
15568 (origin
15569 (method url-fetch)
15570 (uri (cran-uri "sctransform" version))
15571 (sha256
15572 (base32
15573 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
15574 (build-system r-build-system)
15575 (propagated-inputs
15576 `(("r-future-apply" ,r-future-apply)
15577 ("r-ggplot2" ,r-ggplot2)
15578 ("r-gridextra" ,r-gridextra)
15579 ("r-mass" ,r-mass)
15580 ("r-matrix" ,r-matrix)
15581 ("r-rcpp" ,r-rcpp)
15582 ("r-rcppeigen" ,r-rcppeigen)
15583 ("r-reshape2" ,r-reshape2)))
15584 (home-page "https://github.com/ChristophH/sctransform")
15585 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15586 (description
15587 "This package provides a normalization method for single-cell UMI count
15588 data using a variance stabilizing transformation. The transformation is based
15589 on a negative binomial regression model with regularized parameters. As part
15590 of the same regression framework, this package also provides functions for
15591 batch correction, and data correction.")
15592 (license license:gpl3)))
15593
15594 (define-public r-styler
15595 (package
15596 (name "r-styler")
15597 (version "1.3.2")
15598 (source
15599 (origin
15600 (method url-fetch)
15601 (uri (cran-uri "styler" version))
15602 (sha256
15603 (base32
15604 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15605 (build-system r-build-system)
15606 (propagated-inputs
15607 `(("r-backports" ,r-backports)
15608 ("r-cli" ,r-cli)
15609 ("r-magrittr" ,r-magrittr)
15610 ("r-purrr" ,r-purrr)
15611 ("r-r-cache" ,r-r-cache)
15612 ("r-rematch2" ,r-rematch2)
15613 ("r-rlang" ,r-rlang)
15614 ("r-rprojroot" ,r-rprojroot)
15615 ("r-tibble" ,r-tibble)
15616 ("r-withr" ,r-withr)
15617 ("r-xfun" ,r-xfun)))
15618 (home-page "https://github.com/r-lib/styler")
15619 (synopsis "Non-invasive pretty printing of R code")
15620 (description
15621 "This is a package for pretty-printing R code without changing the user's
15622 formatting intent.")
15623 (license license:gpl3)))
15624
15625 (define-public r-scrime
15626 (package
15627 (name "r-scrime")
15628 (version "1.3.5")
15629 (source
15630 (origin
15631 (method url-fetch)
15632 (uri (cran-uri "scrime" version))
15633 (sha256
15634 (base32
15635 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15636 (build-system r-build-system)
15637 (home-page "https://cran.r-project.org/web/packages/scrime/")
15638 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15639 (description
15640 "This package provides tools for the analysis of high-dimensional data
15641 developed/implemented at the group \"Statistical Complexity Reduction In
15642 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15643 the functions can also be applied to other types of categorical data.")
15644 (license license:gpl2)))
15645
15646 (define-public r-pbmcapply
15647 (package
15648 (name "r-pbmcapply")
15649 (version "1.5.0")
15650 (source
15651 (origin
15652 (method url-fetch)
15653 (uri (cran-uri "pbmcapply" version))
15654 (sha256
15655 (base32
15656 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15657 (build-system r-build-system)
15658 (home-page "https://github.com/kvnkuang/pbmcapply")
15659 (synopsis "Track the progress of apply procedures with a progress bar")
15660 (description
15661 "This light-weight package helps you track and visualize the progress of
15662 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15663 (license license:expat)))
15664
15665 (define-public r-blme
15666 (package
15667 (name "r-blme")
15668 (version "1.0-4")
15669 (source
15670 (origin
15671 (method url-fetch)
15672 (uri (cran-uri "blme" version))
15673 (sha256
15674 (base32
15675 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15676 (build-system r-build-system)
15677 (propagated-inputs `(("r-lme4" ,r-lme4)))
15678 (home-page "https://github.com/vdorie/blme")
15679 (synopsis "Bayesian linear mixed-effects models")
15680 (description
15681 "This package provides tools for maximum a posteriori estimation for
15682 linear and generalized linear mixed-effects models in a Bayesian setting. It
15683 extends the lme4 package.")
15684 (license license:gpl2+)))
15685
15686 (define-public r-batchtools
15687 (package
15688 (name "r-batchtools")
15689 (version "0.9.13")
15690 (source
15691 (origin
15692 (method url-fetch)
15693 (uri (cran-uri "batchtools" version))
15694 (sha256
15695 (base32
15696 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15697 (build-system r-build-system)
15698 (propagated-inputs
15699 `(("r-backports" ,r-backports)
15700 ("r-base64url" ,r-base64url)
15701 ("r-brew" ,r-brew)
15702 ("r-checkmate" ,r-checkmate)
15703 ("r-data-table" ,r-data-table)
15704 ("r-digest" ,r-digest)
15705 ("r-fs" ,r-fs)
15706 ("r-progress" ,r-progress)
15707 ("r-r6" ,r-r6)
15708 ("r-rappdirs" ,r-rappdirs)
15709 ("r-stringi" ,r-stringi)
15710 ("r-withr" ,r-withr)))
15711 (native-inputs
15712 `(("r-knitr" ,r-knitr)))
15713 (home-page "https://github.com/mllg/batchtools")
15714 (synopsis "Tools for computation on batch systems")
15715 (description
15716 "As a successor of the packages BatchJobs and BatchExperiments, this
15717 package provides a parallel implementation of the Map function for high
15718 performance computing systems managed by various schedulers. A multicore and
15719 socket mode allow the parallelization on a local machines, and multiple
15720 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15721 the package provides an abstraction mechanism to define large-scale computer
15722 experiments in a well-organized and reproducible way.")
15723 (license license:lgpl3)))
15724
15725 (define-public r-clue
15726 (package
15727 (name "r-clue")
15728 (version "0.3-57")
15729 (source
15730 (origin
15731 (method url-fetch)
15732 (uri (cran-uri "clue" version))
15733 (sha256
15734 (base32
15735 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15736 (build-system r-build-system)
15737 (propagated-inputs `(("r-cluster" ,r-cluster)))
15738 (home-page "https://cran.r-project.org/web/packages/clue/")
15739 (synopsis "Tools for analyzing cluster ensembles")
15740 (description "Cluster ensembles are collections of individual solutions to
15741 a given clustering problem which are useful or necessary to consider in a wide
15742 range of applications. This R package provides an extensible computational
15743 environment for creating and analyzing cluster ensembles, with basic data
15744 structures for representing partitions and hierarchies, and facilities for
15745 computing on them, including methods for measuring proximity and obtaining
15746 consensus and secondary clusterings.")
15747 (license license:gpl2)))
15748
15749 (define-public r-sitmo
15750 (package
15751 (name "r-sitmo")
15752 (version "2.0.1")
15753 (source
15754 (origin
15755 (method url-fetch)
15756 (uri (cran-uri "sitmo" version))
15757 (sha256
15758 (base32
15759 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15760 (build-system r-build-system)
15761 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15762 (home-page "https://github.com/coatless/sitmo/")
15763 (synopsis "Parallel pseudo random number generator header files")
15764 (description
15765 "This package provides two high quality and fast PPRNGs that may be used
15766 in an OpenMP parallel environment. In addition, there is a generator for one
15767 dimensional low-discrepancy sequence.")
15768 (license license:expat)))
15769
15770 (define-public r-dqrng
15771 (package
15772 (name "r-dqrng")
15773 (version "0.2.1")
15774 (source
15775 (origin
15776 (method url-fetch)
15777 (uri (cran-uri "dqrng" version))
15778 (sha256
15779 (base32
15780 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15781 (build-system r-build-system)
15782 (propagated-inputs
15783 `(("r-bh" ,r-bh)
15784 ("r-rcpp" ,r-rcpp)
15785 ("r-sitmo" ,r-sitmo)))
15786 (home-page "https://www.daqana.org/dqrng")
15787 (synopsis "Fast pseudo random number generators")
15788 (description
15789 "Several fast random number generators are provided as C++ header-only
15790 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15791 Additionally, fast functions for generating random numbers according to a
15792 uniform, normal and exponential distribution are included. The latter two use
15793 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15794 functions are exported to R and as a C++ interface and are enabled for use
15795 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15796 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15797 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15798 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15799 ;; whole is distributed under the terms of the AGPL 3.
15800 (license license:agpl3)))
15801
15802 (define-public r-ingredients
15803 (package
15804 (name "r-ingredients")
15805 (version "1.3.1")
15806 (source
15807 (origin
15808 (method url-fetch)
15809 (uri (cran-uri "ingredients" version))
15810 (sha256
15811 (base32
15812 "0l0dqrm9am6wk8jcf8cdhc6xnrna9cqr5wz6lsnczq2gf6ybhjg1"))))
15813 (properties `((upstream-name . "ingredients")))
15814 (build-system r-build-system)
15815 (propagated-inputs
15816 `(("r-ggplot2" ,r-ggplot2)
15817 ("r-gridextra" ,r-gridextra)
15818 ("r-scales" ,r-scales)))
15819 (native-inputs `(("r-knitr" ,r-knitr)))
15820 (home-page "https://ModelOriented.github.io/ingredients/")
15821 (synopsis "Effects and importances of model ingredients")
15822 (description
15823 "This is a collection of tools for assessment of feature importance and
15824 feature effects. Key functions are:
15825
15826 @itemize
15827 @item @code{feature_importance()} for assessment of global level feature
15828 importance,
15829 @item @code{ceteris_paribus()} for calculation of the what-if plots,
15830 @item @code{partial_dependence()} for partial dependence plots,
15831 @item @code{conditional_dependence()} for conditional dependence plots,
15832 @item @code{accumulated_dependence()} for accumulated local effects plots,
15833 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
15834 aggregation of ceteris paribus profiles,
15835 @item generic @code{print()} and @code{plot()} for better usability of
15836 selected explainers,
15837 @item generic @code{plotD3()} for interactive, D3 based explanations, and
15838 @item generic @code{describe()} for explanations in natural language.
15839 @end itemize\n")
15840 (license license:gpl3)))
15841
15842 (define-public r-ibreakdown
15843 (package
15844 (name "r-ibreakdown")
15845 (version "1.3.1")
15846 (source
15847 (origin
15848 (method url-fetch)
15849 (uri (cran-uri "iBreakDown" version))
15850 (sha256
15851 (base32
15852 "1bfl5bh0x6z5a0cmdmx68sap9zdxa3kwdnyk57csxapc362yz108"))))
15853 (properties `((upstream-name . "iBreakDown")))
15854 (build-system r-build-system)
15855 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
15856 (native-inputs `(("r-knitr" ,r-knitr)))
15857 (home-page "https://ModelOriented.github.io/iBreakDown/")
15858 (synopsis "Model agnostic instance level variable attributions")
15859 (description
15860 "This package provides a model agnostic tool for decomposition of
15861 predictions from black boxes. It supports additive attributions and
15862 attributions with interactions. The Break Down Table shows contributions of
15863 every variable to a final prediction. The Break Down Plot presents variable
15864 contributions in a concise graphical way. This package works for
15865 classification and regression models.")
15866 (license license:gpl3)))
15867
15868 (define-public r-dae
15869 (package
15870 (name "r-dae")
15871 (version "3.1-27")
15872 (source
15873 (origin
15874 (method url-fetch)
15875 (uri (cran-uri "dae" version))
15876 (sha256
15877 (base32
15878 "14q3cxhcz0zqjdkas0dl71k2bp5qwvb60gha47s78hdr38r46kml"))))
15879 (build-system r-build-system)
15880 (propagated-inputs
15881 `(("r-ggplot2" ,r-ggplot2)
15882 ("r-plyr" ,r-plyr)))
15883 (native-inputs
15884 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
15885 (home-page "http://chris.brien.name")
15886 (synopsis "Functions useful in the design and ANOVA of experiments")
15887 (description
15888 "This package provides functions useful in the design and ANOVA of
15889 experiments. The content falls into the following groupings:
15890
15891 @enumerate
15892 @item data,
15893 @item factor manipulation functions,
15894 @item design functions,
15895 @item ANOVA functions,
15896 @item matrix functions,
15897 @item projector and canonical efficiency functions, and
15898 @item miscellaneous functions.
15899 @end enumerate
15900
15901 There is a vignette called @code{DesignNotes} describing how to use the design
15902 functions for randomizing and assessing designs. The ANOVA functions
15903 facilitate the extraction of information when the @code{Error} function has
15904 been used in the call to @code{aov}.")
15905 (license license:gpl2)))
15906
15907 (define-public r-dalex
15908 (package
15909 (name "r-dalex")
15910 (version "1.3.1.1")
15911 (source
15912 (origin
15913 (method url-fetch)
15914 (uri (cran-uri "DALEX" version))
15915 (sha256
15916 (base32
15917 "0akw1yzhb3shpg6yb89vralqd2z80z5yk9azqaa55dx56as52kjs"))))
15918 (properties `((upstream-name . "DALEX")))
15919 (build-system r-build-system)
15920 (propagated-inputs
15921 `(("r-ggplot2" ,r-ggplot2)
15922 ("r-ibreakdown" ,r-ibreakdown)
15923 ("r-ingredients" ,r-ingredients)))
15924 (home-page "https://pbiecek.github.io/DALEX/")
15925 (synopsis "Descriptive machine learning explanations")
15926 (description
15927 "Machine Learning models are widely used and have various applications in
15928 classification or regression. Models created with boosting, bagging, stacking
15929 or similar techniques are often used due to their high performance, but such
15930 black-box models usually lack interpretability. The DALEX package contains
15931 various explainers that help to understand the link between input variables
15932 and model output.")
15933 ;; Any version of the GPL
15934 (license license:gpl3+)))
15935
15936 (define-public r-enrichr
15937 (package
15938 (name "r-enrichr")
15939 (version "2.1")
15940 (source
15941 (origin
15942 (method url-fetch)
15943 (uri (cran-uri "enrichR" version))
15944 (sha256
15945 (base32
15946 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
15947 (properties `((upstream-name . "enrichR")))
15948 (build-system r-build-system)
15949 (propagated-inputs
15950 `(("r-httr" ,r-httr)
15951 ("r-rjson" ,r-rjson)))
15952 (home-page "https://cran.r-project.org/web/packages/enrichR/")
15953 (synopsis "R Interface to Enrichr database for analyzing gene sets")
15954 (description
15955 "This package provides an R interface to all Enrichr databases, a
15956 web-based tool for analyzing gene sets and returns any enrichment of common
15957 annotated biological functions.")
15958 (license license:gpl2+)))
15959
15960 (define-public r-plot3d
15961 (package
15962 (name "r-plot3d")
15963 (version "1.3")
15964 (source
15965 (origin
15966 (method url-fetch)
15967 (uri (cran-uri "plot3D" version))
15968 (sha256
15969 (base32
15970 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
15971 (properties `((upstream-name . "plot3D")))
15972 (build-system r-build-system)
15973 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
15974 (home-page "https://cran.r-project.org/web/packages/plot3D")
15975 (synopsis "Plot multi-dimensional data")
15976 (description
15977 "This package provides functions for viewing 2D and 3D data, including
15978 perspective plots, slice plots, surface plots, scatter plots, etc. It
15979 includes data sets from oceanography.")
15980 (license license:gpl3+)))
15981
15982 (define-public r-ggfortify
15983 (package
15984 (name "r-ggfortify")
15985 (version "0.4.10")
15986 (source
15987 (origin
15988 (method url-fetch)
15989 (uri (cran-uri "ggfortify" version))
15990 (sha256
15991 (base32
15992 "0wmcwp63h90v3f00ixszvis4z28im621jickvc0wgi6qvjvnayq0"))))
15993 (build-system r-build-system)
15994 (propagated-inputs
15995 `(("r-dplyr" ,r-dplyr)
15996 ("r-ggplot2" ,r-ggplot2)
15997 ("r-gridextra" ,r-gridextra)
15998 ("r-scales" ,r-scales)
15999 ("r-stringr" ,r-stringr)
16000 ("r-tibble" ,r-tibble)
16001 ("r-tidyr" ,r-tidyr)))
16002 (native-inputs
16003 `(("r-knitr" ,r-knitr)))
16004 (home-page "https://github.com/sinhrks/ggfortify")
16005 (synopsis "Data visualization tools for statistical analysis results")
16006 (description
16007 "This package provides unified plotting tools for statistics commonly
16008 used, such as GLM, time series, PCA families, clustering and survival
16009 analysis. The package offers a single plotting interface for these analysis
16010 results and plots in a unified style using the @code{ggplot2} package.")
16011 (license license:gpl2)))
16012
16013 (define-public r-refmanager
16014 (package
16015 (name "r-refmanager")
16016 (version "1.2.12")
16017 (source
16018 (origin
16019 (method url-fetch)
16020 (uri (cran-uri "RefManageR" version))
16021 (sha256
16022 (base32
16023 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
16024 (properties `((upstream-name . "RefManageR")))
16025 (build-system r-build-system)
16026 (propagated-inputs
16027 `(("r-bibtex" ,r-bibtex)
16028 ("r-httr" ,r-httr)
16029 ("r-jsonlite" ,r-jsonlite)
16030 ("r-lubridate" ,r-lubridate)
16031 ("r-plyr" ,r-plyr)
16032 ("r-stringr" ,r-stringr)
16033 ("r-xml2" ,r-xml2)))
16034 (home-page "https://github.com/ropensci/RefManageR/")
16035 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
16036 (description
16037 "This package provides tools for importing and working with bibliographic
16038 references. It greatly enhances the @code{bibentry} class by providing a
16039 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
16040 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
16041 by various formats for name lists (author by last names, translator by full
16042 names, etc.). Entries can be updated, combined, sorted, printed in a number
16043 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
16044 into R and converted to @code{BibEntry} objects.")
16045 ;; Any of these licenses may be picked.
16046 (license (list license:gpl2 license:gpl3 license:bsd-3))))
16047
16048 (define-public r-citr
16049 (package
16050 (name "r-citr")
16051 (version "0.3.2")
16052 (source
16053 (origin
16054 (method url-fetch)
16055 (uri (cran-uri "citr" version))
16056 (sha256
16057 (base32
16058 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
16059 (build-system r-build-system)
16060 (propagated-inputs
16061 `(("r-assertthat" ,r-assertthat)
16062 ("r-curl" ,r-curl)
16063 ("r-httr" ,r-httr)
16064 ("r-miniui" ,r-miniui)
16065 ("r-refmanager" ,r-refmanager)
16066 ("r-rstudioapi" ,r-rstudioapi)
16067 ("r-shiny" ,r-shiny)
16068 ("r-shinyjs" ,r-shinyjs)
16069 ("r-yaml" ,r-yaml)))
16070 (home-page "https://github.com/crsh/citr")
16071 (synopsis "RStudio add-in to insert Markdown citations")
16072 (description
16073 "This package provides functions and an RStudio add-in that search a
16074 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
16075 the current document.")
16076 (license license:expat)))
16077
16078 (define-public r-xgboost
16079 (package
16080 (name "r-xgboost")
16081 (version "1.1.1.1")
16082 (source
16083 (origin
16084 (method url-fetch)
16085 (uri (cran-uri "xgboost" version))
16086 (sha256
16087 (base32
16088 "13njhcxljhbcs37ni6r5174fk8kx9b5p7rlw1an1ak3w92jn56cq"))))
16089 (build-system r-build-system)
16090 (propagated-inputs
16091 `(("r-data-table" ,r-data-table)
16092 ("r-magrittr" ,r-magrittr)
16093 ("r-matrix" ,r-matrix)
16094 ("r-stringi" ,r-stringi)))
16095 (native-inputs
16096 `(("r-knitr" ,r-knitr)))
16097 (home-page "https://github.com/dmlc/xgboost")
16098 (synopsis "Extreme gradient boosting")
16099 (description
16100 "This package provides an R interface to Extreme Gradient Boosting, which
16101 is an efficient implementation of the gradient boosting framework from Chen
16102 and Guestrin (2016). The package includes efficient linear model solver and
16103 tree learning algorithms. The package can automatically do parallel
16104 computation on a single machine. It supports various objective functions,
16105 including regression, classification and ranking. The package is made to be
16106 extensible, so that users are also allowed to define their own objectives
16107 easily.")
16108 (license license:asl2.0)))
16109
16110 (define-public r-umap
16111 (package
16112 (name "r-umap")
16113 (version "0.2.6.0")
16114 (source
16115 (origin
16116 (method url-fetch)
16117 (uri (cran-uri "umap" version))
16118 (sha256
16119 (base32
16120 "0zajn2sk705sckljxl5vz4q2sxpsqim2grmjq2jwwc8ysr1h2s9f"))))
16121 (build-system r-build-system)
16122 (propagated-inputs
16123 `(("r-openssl" ,r-openssl)
16124 ("r-rcpp" ,r-rcpp)
16125 ("r-reticulate" ,r-reticulate)
16126 ("r-rspectra" ,r-rspectra)))
16127 (native-inputs
16128 `(("r-knitr" ,r-knitr)))
16129 (home-page "https://github.com/tkonopka/umap")
16130 (synopsis "Uniform manifold approximation and projection")
16131 (description
16132 "Uniform manifold approximation and projection is a technique for
16133 dimension reduction. This package provides an interface to the UMAP algorithm
16134 in R, including a translation of the original algorithm into R.")
16135 (license license:expat)))
16136
16137 (define-public r-uwot
16138 (package
16139 (name "r-uwot")
16140 (version "0.1.8")
16141 (source
16142 (origin
16143 (method url-fetch)
16144 (uri (cran-uri "uwot" version))
16145 (sha256
16146 (base32
16147 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
16148 (build-system r-build-system)
16149 (propagated-inputs
16150 `(("r-dqrng" ,r-dqrng)
16151 ("r-fnn" ,r-fnn)
16152 ("r-irlba" ,r-irlba)
16153 ("r-matrix" ,r-matrix)
16154 ("r-rcpp" ,r-rcpp)
16155 ("r-rcppannoy" ,r-rcppannoy)
16156 ("r-rcppprogress" ,r-rcppprogress)
16157 ("r-rspectra" ,r-rspectra)))
16158 (home-page "https://github.com/jlmelville/uwot")
16159 (synopsis "Uniform manifold approximation and projection")
16160 (description
16161 "This package provides an implementation of the Uniform Manifold
16162 Approximation and Projection dimensionality reduction by McInnes et
16163 al. (2018). It also provides means to transform new data and to carry out
16164 supervised dimensionality reduction. An implementation of the related
16165 LargeVis method of Tang et al. (2016) is also provided.")
16166 (license license:gpl3)))
16167
16168 (define-public r-kableextra
16169 (package
16170 (name "r-kableextra")
16171 (version "1.1.0")
16172 (source
16173 (origin
16174 (method url-fetch)
16175 (uri (cran-uri "kableExtra" version))
16176 (sha256
16177 (base32
16178 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
16179 (properties `((upstream-name . "kableExtra")))
16180 (build-system r-build-system)
16181 (propagated-inputs
16182 `(("r-digest" ,r-digest)
16183 ("r-glue" ,r-glue)
16184 ("r-htmltools" ,r-htmltools)
16185 ("r-knitr" ,r-knitr)
16186 ("r-magrittr" ,r-magrittr)
16187 ("r-readr" ,r-readr)
16188 ("r-rmarkdown" ,r-rmarkdown)
16189 ("r-rstudioapi" ,r-rstudioapi)
16190 ("r-rvest" ,r-rvest)
16191 ("r-scales" ,r-scales)
16192 ("r-stringr" ,r-stringr)
16193 ("r-viridislite" ,r-viridislite)
16194 ("r-webshot" ,r-webshot)
16195 ("r-xml2" ,r-xml2)))
16196 (home-page "https://haozhu233.github.io/kableExtra/")
16197 (synopsis "Construct complex tables with pipe syntax")
16198 (description
16199 "Build complex HTML or LaTeX tables using @code{kable()} from
16200 @code{knitr} and the piping syntax from @code{magrittr}. The function
16201 @code{kable()} is a light weight table generator coming from @code{knitr}.
16202 This package simplifies the way to manipulate the HTML or LaTeX codes
16203 generated by @code{kable()} and allows users to construct complex tables and
16204 customize styles using a readable syntax.")
16205 (license license:expat)))
16206
16207 (define-public r-glasso
16208 (package
16209 (name "r-glasso")
16210 (version "1.11")
16211 (source
16212 (origin
16213 (method url-fetch)
16214 (uri (cran-uri "glasso" version))
16215 (sha256
16216 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
16217 (build-system r-build-system)
16218 (native-inputs `(("gfortran" ,gfortran)))
16219 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
16220 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
16221 (description
16222 "This is a package for estimation of a sparse inverse covariance matrix
16223 using a lasso (L1) penalty. Facilities are provided for estimates along a
16224 path of values for the regularization parameter.")
16225 (license license:gpl2)))
16226
16227 (define-public r-rhpcblasctl
16228 (package
16229 (name "r-rhpcblasctl")
16230 (version "0.20-137")
16231 (source
16232 (origin
16233 (method url-fetch)
16234 (uri (cran-uri "RhpcBLASctl" version))
16235 (sha256
16236 (base32
16237 "0vv144sgjhf7fazk633i16fc06g9k43syyxj1g34pi9gsgdcn0nv"))))
16238 (properties `((upstream-name . "RhpcBLASctl")))
16239 (build-system r-build-system)
16240 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
16241 (synopsis "Control the number of threads on BLAS")
16242 (description
16243 "This package allows you to control the number of threads the BLAS
16244 library uses. It is also possible to control the number of threads in
16245 OpenMP.")
16246 (license license:agpl3+)))
16247
16248 (define-public r-lda
16249 (package
16250 (name "r-lda")
16251 (version "1.4.2")
16252 (source
16253 (origin
16254 (method url-fetch)
16255 (uri (cran-uri "lda" version))
16256 (sha256
16257 (base32
16258 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
16259 (build-system r-build-system)
16260 (home-page "https://cran.r-project.org/web/packages/lda/")
16261 (synopsis "Collapsed Gibbs sampling methods for topic models")
16262 (description
16263 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
16264 related models. This includes (but is not limited to) sLDA, corrLDA, and the
16265 mixed-membership stochastic blockmodel. Inference for all of these models is
16266 implemented via a fast collapsed Gibbs sampler written in C. Utility
16267 functions for reading/writing data typically used in topic models, as well as
16268 tools for examining posterior distributions are also included.")
16269 ;; Any version of the LGPL
16270 (license license:lgpl3+)))
16271
16272 (define-public r-rann-l1
16273 (package
16274 (name "r-rann-l1")
16275 (version "2.5.2")
16276 (source
16277 (origin
16278 (method url-fetch)
16279 (uri (cran-uri "RANN.L1" version))
16280 (sha256
16281 (base32
16282 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
16283 (properties `((upstream-name . "RANN.L1")))
16284 (build-system r-build-system)
16285 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
16286 (synopsis "Fast nearest neighbour search using L1 metric")
16287 (description
16288 "This package provides tools to find the k nearest neighbours for every
16289 point in a given dataset in O(N log N) time using Arya and Mount's ANN
16290 library. There is support for approximate as well as exact searches, fixed
16291 radius searches and @code{bd} as well as @code{kd} trees. The distance is
16292 computed using the L1 (Manhattan, taxicab) metric.")
16293 (license license:gpl3+)))
16294
16295 (define-public r-leiden
16296 (package
16297 (name "r-leiden")
16298 (version "0.3.3")
16299 (source
16300 (origin
16301 (method url-fetch)
16302 (uri (cran-uri "leiden" version))
16303 (sha256
16304 (base32
16305 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
16306 (properties `((upstream-name . "leiden")))
16307 (build-system r-build-system)
16308 (propagated-inputs
16309 `(("r-igraph" ,r-igraph)
16310 ("r-matrix" ,r-matrix)
16311 ("r-reticulate" ,r-reticulate)))
16312 (home-page "https://github.com/TomKellyGenetics/leiden")
16313 (synopsis "R implementation of Leiden clustering algorithm")
16314 (description
16315 "This package implements the Python @code{leidenalg} module to be called
16316 in R. It enables clustering using the Leiden algorithm for partitioning a
16317 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
16318 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
16319 (license license:gpl3)))
16320
16321 (define-public r-patchwork
16322 (package
16323 (name "r-patchwork")
16324 (version "1.0.1")
16325 (source
16326 (origin
16327 (method url-fetch)
16328 (uri (cran-uri "patchwork" version))
16329 (sha256
16330 (base32
16331 "0wm93a40idrkzn5hpnykhznvh7hdbfqw0dkzzn0zk83qlwyc9g02"))))
16332 (build-system r-build-system)
16333 (propagated-inputs
16334 `(("r-ggplot2" ,r-ggplot2)
16335 ("r-gtable" ,r-gtable)))
16336 (native-inputs
16337 `(("r-knitr" ,r-knitr)))
16338 (home-page "https://github.com/thomasp85/patchwork")
16339 (synopsis "Compose ggplot2 plots")
16340 (description
16341 "The @code{ggplot2} package provides a strong API for sequentially
16342 building up a plot, but does not concern itself with composition of multiple
16343 plots. Patchwork is a package that expands the API to allow for arbitrarily
16344 complex composition of plots by providing mathmatical operators for combining
16345 multiple plots.")
16346 (license license:expat)))
16347
16348 (define-public r-liger
16349 (package
16350 (name "r-liger")
16351 (version "0.4.2")
16352 (source
16353 (origin
16354 (method git-fetch)
16355 (uri (git-reference
16356 (url "https://github.com/MacoskoLab/liger")
16357 (commit (string-append "v" version))))
16358 (file-name (git-file-name name version))
16359 (sha256
16360 (base32
16361 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
16362 (modules '((guix build utils)))
16363 (snippet
16364 '(begin
16365 (delete-file "inst/java/ModularityOptimizer.jar")
16366 #t))))
16367 (build-system r-build-system)
16368 (arguments
16369 `(#:phases
16370 (modify-phases %standard-phases
16371 (add-after 'unpack 'build-java-part
16372 (lambda* (#:key inputs #:allow-other-keys)
16373 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
16374 (for-each (lambda (file) (invoke "javac" file))
16375 (find-files "." "\\.java$"))
16376 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
16377 (find-files "." "\\.class$"))
16378 #t)))))
16379 (propagated-inputs
16380 `(("r-cowplot" ,r-cowplot)
16381 ("r-dosnow" ,r-dosnow)
16382 ("r-dplyr" ,r-dplyr)
16383 ("r-fnn" ,r-fnn)
16384 ("r-foreach" ,r-foreach)
16385 ("r-ggplot2" ,r-ggplot2)
16386 ("r-ggrepel" ,r-ggrepel)
16387 ("r-hmisc" ,r-hmisc)
16388 ("r-ica" ,r-ica)
16389 ("r-irlba" ,r-irlba)
16390 ("r-matrix" ,r-matrix)
16391 ("r-mclust" ,r-mclust)
16392 ("r-patchwork" ,r-patchwork)
16393 ("r-plyr" ,r-plyr)
16394 ("r-rann-l1" ,r-rann-l1)
16395 ("r-rcpp" ,r-rcpp)
16396 ("r-rcpparmadillo" ,r-rcpparmadillo)
16397 ("r-riverplot" ,r-riverplot)
16398 ("r-rtsne" ,r-rtsne)
16399 ("r-snow" ,r-snow)))
16400 (native-inputs
16401 `(("jdk" ,icedtea "jdk")
16402 ;; See https://github.com/MacoskoLab/liger/issues/96
16403 ;; The optimizer is released under the Expat license.
16404 ("optimizer-src"
16405 ,(origin
16406 (method url-fetch)
16407 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
16408 (sha256
16409 (base32
16410 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
16411 ("unzip" ,unzip)
16412 ("r-knitr" ,r-knitr))) ; for vignettes
16413 (home-page "https://github.com/MacoskoLab/liger")
16414 (synopsis "Integrate and analyze multiple single-cell datasets")
16415 (description
16416 "LIGER is a package for integrating and analyzing multiple single-cell
16417 datasets, developed and maintained by the Macosko lab. It relies on
16418 integrative non-negative matrix factorization to identify shared and
16419 dataset-specific factors.")
16420 (license license:gpl3)))
16421
16422 (define-public r-harmony
16423 (package
16424 (name "r-harmony")
16425 (version "0.1")
16426 (source
16427 (origin
16428 (method git-fetch)
16429 (uri (git-reference
16430 (url "https://github.com/immunogenomics/harmony")
16431 (commit version)))
16432 (file-name (git-file-name name version))
16433 (sha256
16434 (base32
16435 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
16436 (modules '((guix build utils)))
16437 (snippet
16438 '(begin
16439 (for-each delete-file '("config.status" "configure"))
16440 #t))))
16441 (build-system r-build-system)
16442 (propagated-inputs
16443 `(("r-cowplot" ,r-cowplot)
16444 ("r-dplyr" ,r-dplyr)
16445 ("r-ggplot2" ,r-ggplot2)
16446 ("r-irlba" ,r-irlba)
16447 ("r-matrix" ,r-matrix)
16448 ("r-rcpp" ,r-rcpp)
16449 ("r-rcpparmadillo" ,r-rcpparmadillo)
16450 ("r-rcppprogress" ,r-rcppprogress)
16451 ("r-rlang" ,r-rlang)
16452 ("r-tibble" ,r-tibble)
16453 ("r-tidyr" ,r-tidyr)))
16454 (native-inputs
16455 `(("autoconf" ,autoconf)))
16456 (home-page "https://github.com/immunogenomics/harmony")
16457 (synopsis "Integration of single cell sequencing data")
16458 (description
16459 "This package provides an implementation of the Harmony algorithm for
16460 single cell integration, described in Korsunsky et al
16461 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
16462 function and interfaces to external frameworks.")
16463 (license license:gpl3)))
16464
16465 (define-public r-covr
16466 (package
16467 (name "r-covr")
16468 (version "3.5.0")
16469 (source
16470 (origin
16471 (method url-fetch)
16472 (uri (cran-uri "covr" version))
16473 (sha256
16474 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
16475 (properties `((upstream-name . "covr")))
16476 (build-system r-build-system)
16477 (propagated-inputs
16478 `(("r-crayon" ,r-crayon)
16479 ("r-digest" ,r-digest)
16480 ("r-httr" ,r-httr)
16481 ("r-jsonlite" ,r-jsonlite)
16482 ("r-rex" ,r-rex)
16483 ("r-withr" ,r-withr)
16484 ("r-yaml" ,r-yaml)))
16485 (native-inputs
16486 `(("r-knitr" ,r-knitr))) ; for vignettes
16487 (home-page "https://github.com/r-lib/covr")
16488 (synopsis "Test coverage for R packages")
16489 (description
16490 "Thisp package enables you to track and report code coverage for your
16491 package and (optionally) upload the results to a coverage service. Code
16492 coverage is a measure of the amount of code being exercised by a set of tests.
16493 It is an indirect measure of test quality and completeness. This package is
16494 compatible with any testing methodology or framework and tracks coverage of
16495 both R code and compiled C/C++/FORTRAN code.")
16496 (license license:gpl3)))
16497
16498 (define-public r-systemfonts
16499 (package
16500 (name "r-systemfonts")
16501 (version "0.2.3")
16502 (source
16503 (origin
16504 (method url-fetch)
16505 (uri (cran-uri "systemfonts" version))
16506 (sha256
16507 (base32
16508 "0wf62mfam5zlrck0wrdbyi4hi7pn5j0739rihgp8sj2cjypm2lnb"))))
16509 (properties `((upstream-name . "systemfonts")))
16510 (build-system r-build-system)
16511 (inputs
16512 `(("fontconfig" ,fontconfig)
16513 ("zlib" ,zlib)))
16514 (native-inputs
16515 `(("pkg-config" ,pkg-config)
16516 ("r-knitr" ,r-knitr)))
16517 (home-page "https://github.com/r-lib/systemfonts")
16518 (synopsis "System native font finding")
16519 (description
16520 "This package provides system native access to the font catalogue. As
16521 font handling varies between systems it is difficult to correctly locate
16522 installed fonts across different operating systems. The 'systemfonts' package
16523 provides bindings to the native libraries for finding font files that can then
16524 be used further by e.g. graphic devices.")
16525 (license license:expat)))
16526
16527 (define-public r-graphlayouts
16528 (package
16529 (name "r-graphlayouts")
16530 (version "0.7.0")
16531 (source
16532 (origin
16533 (method url-fetch)
16534 (uri (cran-uri "graphlayouts" version))
16535 (sha256
16536 (base32
16537 "17lc75k8i3c696hfj44zj7j1a5sb0nap8spc5r98v7vd6xh4nii0"))))
16538 (properties `((upstream-name . "graphlayouts")))
16539 (build-system r-build-system)
16540 (propagated-inputs
16541 `(("r-igraph" ,r-igraph)
16542 ("r-rcpp" ,r-rcpp)
16543 ("r-rcpparmadillo" ,r-rcpparmadillo)))
16544 (home-page "https://github.com/schochastics/graphlayouts")
16545 (synopsis "Additional layout algorithms for network visualizations")
16546 (description
16547 "This package provides several layout algorithms to visualize networks
16548 which are not part of the igraph library. Most are based on the concept of
16549 stress majorization by Gansner et al. (2004)
16550 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
16551 emphasize hidden group structures in networks or focus on specific nodes.")
16552 (license license:expat)))
16553
16554 (define-public r-tidygraph
16555 (package
16556 (name "r-tidygraph")
16557 (version "1.2.0")
16558 (source
16559 (origin
16560 (method url-fetch)
16561 (uri (cran-uri "tidygraph" version))
16562 (sha256
16563 (base32
16564 "17qjns33zcj82jcsl7bn7i4zxcm7ric50zyf7agi0i01zi16qz85"))))
16565 (properties `((upstream-name . "tidygraph")))
16566 (build-system r-build-system)
16567 (propagated-inputs
16568 `(("r-dplyr" ,r-dplyr)
16569 ("r-igraph" ,r-igraph)
16570 ("r-magrittr" ,r-magrittr)
16571 ("r-pillar" ,r-pillar)
16572 ("r-r6" ,r-r6)
16573 ("r-rcpp" ,r-rcpp)
16574 ("r-rlang" ,r-rlang)
16575 ("r-tibble" ,r-tibble)
16576 ("r-tidyr" ,r-tidyr)))
16577 (home-page "https://github.com/thomasp85/tidygraph")
16578 (synopsis "Tidy API for graph manipulation")
16579 (description
16580 "This package provides a graph implementation that can be thought of as
16581 two tidy data frames describing node and edge data respectively. It provides
16582 an approach to manipulate these two virtual data frames using the API defined
16583 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
16584 common graph algorithms.")
16585 (license license:expat)))
16586
16587 (define-public r-soupx
16588 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
16589 (revision "1"))
16590 (package
16591 (name "r-soupx")
16592 (version (git-version "0.3.1" revision commit))
16593 (source
16594 (origin
16595 (method git-fetch)
16596 (uri (git-reference
16597 (url "https://github.com/constantAmateur/SoupX")
16598 (commit commit)))
16599 (file-name (git-file-name name version))
16600 (sha256
16601 (base32
16602 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
16603 (properties `((upstream-name . "SoupX")))
16604 (build-system r-build-system)
16605 (propagated-inputs
16606 `(("r-ggplot2" ,r-ggplot2)
16607 ("r-matrix" ,r-matrix)
16608 ("r-seurat" ,r-seurat)))
16609 (home-page "https://github.com/constantAmateur/SoupX")
16610 (synopsis "Single cell mRNA Soup eXterminator")
16611 (description
16612 "This package provides a package for quantifying, profiling and
16613 removing cell free mRNA contamination (the \"soup\") from droplet based single
16614 cell RNA-seq experiments.")
16615 (license license:gpl2))))
16616
16617 (define-public r-assertr
16618 (package
16619 (name "r-assertr")
16620 (version "2.7")
16621 (source
16622 (origin
16623 (method url-fetch)
16624 (uri (cran-uri "assertr" version))
16625 (sha256
16626 (base32
16627 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
16628 (build-system r-build-system)
16629 (propagated-inputs
16630 `(("r-dplyr" ,r-dplyr)
16631 ("r-mass" ,r-mass)
16632 ("r-rlang" ,r-rlang)))
16633 (native-inputs
16634 `(("r-knitr" ,r-knitr))) ; needed for vignette
16635 (home-page "https://github.com/ropensci/assertr")
16636 (synopsis "Assertive programming for R analysis pipelines")
16637 (description
16638 "This package provides functionality to assert conditions that have to be
16639 met so that errors in data used in analysis pipelines can fail quickly. It is
16640 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
16641 in pipelines.")
16642 (license license:expat)))
16643
16644 (define-public r-parameters
16645 (package
16646 (name "r-parameters")
16647 (version "0.8.2")
16648 (source
16649 (origin
16650 (method url-fetch)
16651 (uri (cran-uri "parameters" version))
16652 (sha256
16653 (base32
16654 "0kamszscywvdh4gikl5mmma7s5p7spmhirq3wrgf7x7f4gppbbmh"))))
16655 (properties `((upstream-name . "parameters")))
16656 (build-system r-build-system)
16657 (propagated-inputs
16658 `(("r-bayestestr" ,r-bayestestr)
16659 ("r-insight" ,r-insight)))
16660 (native-inputs
16661 `(("r-knitr" ,r-knitr)))
16662 (home-page "https://cran.r-project.org/web/packages/parameters")
16663 (synopsis "Processing of model parameters")
16664 (description
16665 "This package provides utilities for processing the parameters of various
16666 statistical models. Beyond computing p values, CIs, and other indices for a
16667 wide variety of models, this package implements features like standardization
16668 or bootstrapping of parameters and models, feature reduction (feature
16669 extraction and variable selection) as well as conversion between indices of
16670 effect size.")
16671 (license license:gpl3)))
16672
16673 (define-public r-rgdal
16674 (package
16675 (name "r-rgdal")
16676 (version "1.5-16")
16677 (source
16678 (origin
16679 (method url-fetch)
16680 (uri (cran-uri "rgdal" version))
16681 (sha256
16682 (base32 "0rwlsafqxgqflfid4ciaa9qz3f75fgw8hilhaqj558gdxg8bzigp"))))
16683 (properties `((upstream-name . "rgdal")))
16684 (build-system r-build-system)
16685 (inputs
16686 `(("gdal" ,gdal)
16687 ("proj.4" ,proj.4)
16688 ("zlib" ,zlib)))
16689 (propagated-inputs
16690 `(("r-sp" ,r-sp)))
16691 (native-inputs
16692 `(("pkg-config" ,pkg-config)
16693 ("r-knitr" ,r-knitr)))
16694 (home-page "http://rgdal.r-forge.r-project.org")
16695 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16696 (description
16697 "This package provides bindings to the Geospatial Data Abstraction
16698 Library (GDAL) and access to projection/transformation operations from the
16699 PROJ.4 library.")
16700 (license license:gpl2+)))
16701
16702 (define-public r-insol
16703 (package
16704 (name "r-insol")
16705 (version "1.2.1")
16706 (source
16707 (origin
16708 (method url-fetch)
16709 (uri (cran-uri "insol" version))
16710 (sha256
16711 (base32
16712 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16713 (properties `((upstream-name . "insol")))
16714 (build-system r-build-system)
16715 (propagated-inputs
16716 `(("r-raster" ,r-raster)))
16717 (native-inputs
16718 `(("gfortran" ,gfortran)))
16719 (home-page "https://meteoexploration.com/R/insol/index.html")
16720 (synopsis "Tools for calculating solar radiation")
16721 (description
16722 "This package provides functions to compute insolation on tilted
16723 surfaces, computes atmospheric transmittance and related parameters such as:
16724 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16725 time, vector in the direction of the sun, vector normal to surface, and some
16726 atmospheric physics.")
16727 (license license:gpl2+)))
16728
16729 (define-public r-lifecycle
16730 (package
16731 (name "r-lifecycle")
16732 (version "0.2.0")
16733 (source
16734 (origin
16735 (method url-fetch)
16736 (uri (cran-uri "lifecycle" version))
16737 (sha256
16738 (base32
16739 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16740 (properties `((upstream-name . "lifecycle")))
16741 (build-system r-build-system)
16742 (propagated-inputs
16743 `(("r-glue" ,r-glue)
16744 ("r-rlang" ,r-rlang)))
16745 (native-inputs
16746 `(("r-knitr" ,r-knitr))) ; for vignettes
16747 (home-page "https://github.com/r-lib/lifecycle")
16748 (synopsis "Manage the life cycle of your package functions")
16749 (description
16750 "Manage the life cycle of your exported functions with shared
16751 conventions, documentation badges, and non-invasive deprecation warnings. The
16752 lifecycle package defines four development stages (experimental, maturing,
16753 stable, and questioning) and three deprecation stages (soft-deprecated,
16754 deprecated, and defunct). It makes it easy to insert badges corresponding to
16755 these stages in your documentation. Usage of deprecated functions are
16756 signalled with increasing levels of non-invasive verbosity.")
16757 (license license:gpl3)))
16758
16759 (define-public r-assertable
16760 (package
16761 (name "r-assertable")
16762 (version "0.2.7")
16763 (source
16764 (origin
16765 (method url-fetch)
16766 (uri (cran-uri "assertable" version))
16767 (sha256
16768 (base32
16769 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16770 (build-system r-build-system)
16771 (propagated-inputs
16772 `(("r-data-table" ,r-data-table)))
16773 (home-page "https://cran.r-project.org/web/packages/assertable/")
16774 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16775 (description "This package provides simple, flexible assertions on
16776 data.frame or data.table objects with verbose output for vetting. While other
16777 assertion packages apply towards more general use-cases, @code{assertable} is
16778 tailored towards tabular data. It includes functions to check variable names
16779 and values, whether the dataset contains all combinations of a given set of
16780 unique identifiers, and whether it is a certain length. In addition,
16781 @code{assertable} includes utility functions to check the existence of target
16782 files and to efficiently import multiple tabular data files into one
16783 data.table.")
16784 (license license:gpl3)))
16785
16786 (define-public r-quadprog
16787 (package
16788 (name "r-quadprog")
16789 (version "1.5-8")
16790 (source
16791 (origin
16792 (method url-fetch)
16793 (uri (cran-uri "quadprog" version))
16794 (sha256
16795 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16796 (build-system r-build-system)
16797 (native-inputs
16798 `(("gfortran" ,gfortran)))
16799 (home-page "https://cran.r-project.org/web/packages/quadprog")
16800 (synopsis "Functions to solve quadratic programming problems")
16801 (description
16802 "This package contains routines and documentation for solving quadratic
16803 programming problems.")
16804 (license license:gpl3+)))
16805
16806 (define-public r-desolve
16807 (package
16808 (name "r-desolve")
16809 (version "1.28")
16810 (source
16811 (origin
16812 (method url-fetch)
16813 (uri (cran-uri "deSolve" version))
16814 (sha256
16815 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
16816 (properties `((upstream-name . "deSolve")))
16817 (build-system r-build-system)
16818 (native-inputs
16819 `(("gfortran" ,gfortran)))
16820 (home-page "https://desolve.r-forge.r-project.org/")
16821 (synopsis "Solvers for initial value problems of differential equations")
16822 (description "This package provides functions that solve initial value
16823 problems of a system of first-order @dfn{ordinary differential
16824 equations} (ODE), of @dfn{partial differential equations} (PDE), of
16825 @dfn{differential algebraic equations} (DAE), and of delay differential
16826 equations. The functions provide an interface to the FORTRAN functions
16827 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
16828 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
16829 C-implementation of solvers of the Runge-Kutta family with fixed or variable
16830 time steps. The package contains routines designed for solving ODEs resulting
16831 from 1-D, 2-D and 3-D partial differential equations that have been converted
16832 to ODEs by numerical differencing.")
16833 (license license:gpl2+)))
16834
16835 (define-public r-pracma
16836 (package
16837 (name "r-pracma")
16838 (version "2.2.9")
16839 (source (origin
16840 (method url-fetch)
16841 (uri (cran-uri "pracma" version))
16842 (sha256
16843 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
16844 (build-system r-build-system)
16845 (home-page "https://cran.r-project.org/web/packages/pracma/")
16846 (synopsis "Practical numerical math functions")
16847 (description "This package provides functions for numerical analysis and
16848 linear algebra, numerical optimization, differential equations, plus some
16849 special functions. It uses Matlab function names where appropriate to simplify
16850 porting.")
16851 (license license:gpl3+)))
16852
16853 (define-public r-subplex
16854 (package
16855 (name "r-subplex")
16856 (version "1.6")
16857 (source
16858 (origin
16859 (method url-fetch)
16860 (uri (cran-uri "subplex" version))
16861 (sha256
16862 (base32
16863 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
16864 (build-system r-build-system)
16865 (native-inputs
16866 `(("gfortran" ,gfortran)))
16867 (home-page "https://cran.r-project.org/web/packages/subplex")
16868 (synopsis "Unconstrained optimization using the subplex algorithm")
16869 (description
16870 "This package implements the Subplex optimization algorithm.
16871 It solves unconstrained optimization problems using a simplex method on
16872 subspaces. The method is well suited for optimizing objective functions that
16873 are noisy or are discontinuous at the solution.")
16874 (license license:gpl3+)))
16875
16876 (define-public r-txtplot
16877 (package
16878 (name "r-txtplot")
16879 (version "1.0-4")
16880 (source
16881 (origin
16882 (method url-fetch)
16883 (uri (cran-uri "txtplot" version))
16884 (sha256
16885 (base32
16886 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
16887 (build-system r-build-system)
16888 (home-page "https://cran.r-project.org/web/packages/txtplot/")
16889 (synopsis "Text-based plotting")
16890 (description "This package provides functions to produce rudimentary ASCII
16891 graphics directly in the terminal window. This package provides a basic
16892 plotting function (and equivalents of curve, density, acf and barplot) as well
16893 as a boxplot function.")
16894 (license license:lgpl3+)))
16895
16896 (define-public r-bio3d
16897 (package
16898 (name "r-bio3d")
16899 (version "2.4-1")
16900 (source
16901 (origin
16902 (method url-fetch)
16903 (uri (cran-uri "bio3d" version))
16904 (sha256
16905 (base32
16906 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
16907 (properties `((upstream-name . "bio3d")))
16908 (build-system r-build-system)
16909 (inputs `(("zlib" ,zlib)))
16910 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16911 (home-page "http://thegrantlab.org/bio3d/")
16912 (synopsis "Biological structure analysis")
16913 (description
16914 "This package provides utilities to process, organize and explore protein
16915 structure, sequence and dynamics data. Features include the ability to read
16916 and write structure, sequence and dynamic trajectory data, perform sequence
16917 and structure database searches, data summaries, atom selection, alignment,
16918 superposition, rigid core identification, clustering, torsion analysis,
16919 distance matrix analysis, structure and sequence conservation analysis, normal
16920 mode analysis, principal component analysis of heterogeneous structure data,
16921 and correlation network analysis from normal mode and molecular dynamics data.
16922 In addition, various utility functions are provided to enable the statistical
16923 and graphical power of the R environment to work with biological sequence and
16924 structural data.")
16925 (license license:gpl2+)))
16926
16927 (define-public r-bios2cor
16928 (package
16929 (name "r-bios2cor")
16930 (version "2.1")
16931 (source
16932 (origin
16933 (method url-fetch)
16934 (uri (cran-uri "Bios2cor" version))
16935 (sha256
16936 (base32
16937 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
16938 (properties `((upstream-name . "Bios2cor")))
16939 (build-system r-build-system)
16940 (propagated-inputs
16941 `(("r-bigmemory" ,r-bigmemory)
16942 ("r-bio3d" ,r-bio3d)
16943 ("r-circular" ,r-circular)
16944 ("r-igraph" ,r-igraph)))
16945 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
16946 (synopsis "From biological sequences and simulations to correlation analysis")
16947 (description
16948 "This package provides utilities for computation and analysis of
16949 correlation/covariation in multiple sequence alignments and in side chain
16950 motions during molecular dynamics simulations. Features include the
16951 computation of correlation/covariation scores using a variety of scoring
16952 functions between either sequence positions in alignments or side chain
16953 dihedral angles in molecular dynamics simulations and utilities to analyze the
16954 correlation/covariation matrix through a variety of tools including network
16955 representation and principal components analysis. In addition, several
16956 utility functions are based on the R graphical environment to provide friendly
16957 tools for help in data interpretation.")
16958 (license license:gpl2+)))
16959
16960 ;; This package includes minified JavaScript files. When upgrading please
16961 ;; check that there are no new minified JavaScript files.
16962 (define-public r-networkd3
16963 (package
16964 (name "r-networkd3")
16965 (version "0.4")
16966 (source
16967 (origin
16968 (method url-fetch)
16969 (uri (cran-uri "networkD3" version))
16970 (sha256
16971 (base32
16972 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
16973 (snippet
16974 '(begin
16975 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
16976 #t))))
16977 (properties `((upstream-name . "networkD3")))
16978 (build-system r-build-system)
16979 (arguments
16980 `(#:modules ((guix build utils)
16981 (guix build r-build-system)
16982 (srfi srfi-1)
16983 (ice-9 popen))
16984 #:phases
16985 (modify-phases %standard-phases
16986 (add-after 'unpack 'process-javascript
16987 (lambda* (#:key inputs #:allow-other-keys)
16988 (with-directory-excursion "inst/htmlwidgets/lib/"
16989 (call-with-values
16990 (lambda ()
16991 (unzip2
16992 `((,(assoc-ref inputs "d3.v4.js")
16993 "d3-4.5.0/d3.min.js"))))
16994 (lambda (sources targets)
16995 (for-each (lambda (source target)
16996 (format #t "Processing ~a --> ~a~%"
16997 source target)
16998 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16999 (call-with-output-file target
17000 (lambda (port)
17001 (dump-port minified port)))))
17002 sources targets))))
17003 #t)))))
17004 (native-inputs
17005 `(("uglify-js" ,uglify-js)
17006 ;; NOTE: Make sure that this version of d3 is still valid when
17007 ;; upgrading the package.
17008 ("d3.v4.js"
17009 ,(origin
17010 (method url-fetch)
17011 (uri "https://d3js.org/d3.v4.js")
17012 (sha256
17013 (base32
17014 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
17015 (propagated-inputs
17016 `(("r-htmlwidgets" ,r-htmlwidgets)
17017 ("r-igraph" ,r-igraph)
17018 ("r-magrittr" ,r-magrittr)))
17019 (home-page "https://cran.r-project.org/package=networkD3")
17020 (synopsis "D3 JavaScript network graphs from R")
17021 (description
17022 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
17023 graphs from R.")
17024 (license license:gpl3+)))
17025
17026 (define-public r-aasea
17027 (package
17028 (name "r-aasea")
17029 (version "1.1.0")
17030 (source
17031 (origin
17032 (method url-fetch)
17033 (uri (cran-uri "aaSEA" version))
17034 (sha256
17035 (base32
17036 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
17037 (properties `((upstream-name . "aaSEA")))
17038 (build-system r-build-system)
17039 (propagated-inputs
17040 `(("r-bios2cor" ,r-bios2cor)
17041 ("r-dt" ,r-dt)
17042 ("r-hmisc" ,r-hmisc)
17043 ("r-magrittr" ,r-magrittr)
17044 ("r-networkd3" ,r-networkd3)
17045 ("r-plotly" ,r-plotly)
17046 ("r-seqinr" ,r-seqinr)
17047 ("r-shiny" ,r-shiny)
17048 ("r-shinydashboard" ,r-shinydashboard)))
17049 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
17050 (synopsis "Amino acid substitution effect analyzer")
17051 (description
17052 "Given a protein multiple sequence alignment, it is a daunting task to
17053 assess the effects of substitutions along sequence length. The aaSEA package
17054 is intended to help researchers to rapidly analyze property changes caused by
17055 single, multiple and correlated amino acid substitutions in proteins.")
17056 (license license:gpl3)))
17057
17058 (define-public r-abacus
17059 (package
17060 (name "r-abacus")
17061 (version "1.0.0")
17062 (source
17063 (origin
17064 (method url-fetch)
17065 (uri (cran-uri "ABACUS" version))
17066 (sha256
17067 (base32
17068 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
17069 (properties `((upstream-name . "ABACUS")))
17070 (build-system r-build-system)
17071 (propagated-inputs
17072 `(("r-ggplot2" ,r-ggplot2)
17073 ("r-shiny" ,r-shiny)))
17074 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
17075 (synopsis "Apps-based activities for communicating and understanding statistics")
17076 (description
17077 "This package provides a set of Shiny apps for effective communication
17078 and understanding in statistics. The current version includes properties of
17079 normal distribution, properties of sampling distribution, one-sample z and t
17080 tests, two samples independent (unpaired) t test and analysis of variance.")
17081 (license license:gpl3)))
17082
17083 (define-public r-abc-rap
17084 (package
17085 (name "r-abc-rap")
17086 (version "0.9.0")
17087 (source
17088 (origin
17089 (method url-fetch)
17090 (uri (cran-uri "ABC.RAP" version))
17091 (sha256
17092 (base32
17093 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
17094 (properties `((upstream-name . "ABC.RAP")))
17095 (build-system r-build-system)
17096 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
17097 (synopsis "Array-based CpG region analysis pipeline")
17098 (description
17099 "This package aims to identify candidate genes that are differentially
17100 methylated between cases and controls. It applies Student's t-test and delta
17101 beta analysis to identify candidate genes containing multiple CpG sites.")
17102 (license license:gpl3)))
17103
17104 (define-public r-abcadm
17105 (package
17106 (name "r-abcadm")
17107 (version "1.0")
17108 (source
17109 (origin
17110 (method url-fetch)
17111 (uri (cran-uri "abcADM" version))
17112 (sha256
17113 (base32
17114 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
17115 (properties `((upstream-name . "abcADM")))
17116 (build-system r-build-system)
17117 (propagated-inputs
17118 `(("r-bh" ,r-bh)
17119 ("r-rcpp" ,r-rcpp)))
17120 (home-page "https://cran.r-project.org/web/packages/abcADM/")
17121 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
17122 (description
17123 "This package provides tools to estimate parameters of accumulated
17124 damage (load duration) models based on failure time data under a Bayesian
17125 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
17126 long-term reliability under stochastic load profiles.")
17127 (license license:gpl3)))
17128
17129 (define-public r-rglpk
17130 (package
17131 (name "r-rglpk")
17132 (version "0.6-4")
17133 (source
17134 (origin
17135 (method url-fetch)
17136 (uri (cran-uri "Rglpk" version))
17137 (sha256
17138 (base32
17139 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
17140 (properties `((upstream-name . "Rglpk")))
17141 (build-system r-build-system)
17142 (propagated-inputs
17143 `(("r-slam" ,r-slam)))
17144 (inputs
17145 `(("glpk" ,glpk)))
17146 (home-page "https://r-forge.r-project.org/projects/rglp/")
17147 (synopsis "R interface to the GNU Linear Programming Kit")
17148 (description
17149 "This package provides an R interface to the GNU Linear Programming Kit,
17150 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
17151 integer linear programming} (MILP) and other related problems.")
17152 ;; Either license
17153 (license (list license:gpl2 license:gpl3))))
17154
17155 (define-public r-abcdefba
17156 (package
17157 (name "r-abcdefba")
17158 (version "0.4")
17159 (source
17160 (origin
17161 (method url-fetch)
17162 (uri (cran-uri "abcdeFBA" version))
17163 (sha256
17164 (base32
17165 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
17166 (properties `((upstream-name . "abcdeFBA")))
17167 (build-system r-build-system)
17168 (propagated-inputs
17169 `(("r-corrplot" ,r-corrplot)
17170 ("r-lattice" ,r-lattice)
17171 ("r-rgl" ,r-rgl)
17172 ("r-rglpk" ,r-rglpk)))
17173 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
17174 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
17175 (description
17176 "This package provides functions for Constraint Based Simulation using
17177 Flux Balance Analysis and informative analysis of the data generated during
17178 simulation.")
17179 (license license:gpl2)))
17180
17181 (define-public r-abcrlda
17182 (package
17183 (name "r-abcrlda")
17184 (version "1.0.3")
17185 (source
17186 (origin
17187 (method url-fetch)
17188 (uri (cran-uri "abcrlda" version))
17189 (sha256
17190 (base32
17191 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
17192 (properties `((upstream-name . "abcrlda")))
17193 (build-system r-build-system)
17194 (home-page "https://ieeexplore.ieee.org/document/8720003/")
17195 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
17196 (description
17197 "This package offers methods to perform @dfn{asymptotically
17198 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
17199 cost-sensitive binary classification. The bias-correction is an estimate of
17200 the bias term added to regularized discriminant analysis that minimizes the
17201 overall risk.")
17202 (license license:gpl3)))
17203
17204 (define-public r-abemus
17205 (package
17206 (name "r-abemus")
17207 (version "1.0.1")
17208 (source
17209 (origin
17210 (method url-fetch)
17211 (uri (cran-uri "abemus" version))
17212 (sha256
17213 (base32
17214 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
17215 (properties `((upstream-name . "abemus")))
17216 (build-system r-build-system)
17217 (propagated-inputs
17218 `(("r-data-table" ,r-data-table)))
17219 (home-page "https://cran.r-project.org/web/packages/abemus/")
17220 (synopsis "Adaptive base error model in ultra-deep sequencing data")
17221 (description
17222 "This package provides an implementation of @dfn{Adaptive Base Error
17223 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
17224 platform-specific genetic knowledge and empirical signal to readily detect and
17225 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
17226 cell free DNA} (cfDNA).")
17227 (license license:gpl3)))
17228
17229 ;; This package includes minified JavaScript files. When upgrading please
17230 ;; check that there are no new minified JavaScript files.
17231 (define-public r-rintrojs
17232 (package
17233 (name "r-rintrojs")
17234 (version "0.2.2")
17235 (source
17236 (origin
17237 (method url-fetch)
17238 (uri (cran-uri "rintrojs" version))
17239 (sha256
17240 (base32
17241 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
17242 (properties `((upstream-name . "rintrojs")))
17243 (build-system r-build-system)
17244 (arguments
17245 `(#:modules ((guix build utils)
17246 (guix build r-build-system)
17247 (srfi srfi-1)
17248 (ice-9 popen))
17249 #:phases
17250 (modify-phases %standard-phases
17251 (add-after 'unpack 'process-javascript
17252 (lambda* (#:key inputs #:allow-other-keys)
17253 (with-directory-excursion "inst/javascript/introjs/"
17254 (call-with-values
17255 (lambda ()
17256 (unzip2
17257 `((,(assoc-ref inputs "intro.js")
17258 "intro.min.js"))))
17259 (lambda (sources targets)
17260 (for-each (lambda (source target)
17261 (format #t "Processing ~a --> ~a~%"
17262 source target)
17263 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
17264 (call-with-output-file target
17265 (lambda (port)
17266 (dump-port minified port)))))
17267 sources targets))))
17268 #t)))))
17269 (native-inputs
17270 `(("uglify-js" ,uglify-js)
17271 ("intro.js"
17272 ,(origin
17273 (method url-fetch)
17274 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
17275 (sha256
17276 (base32
17277 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
17278 (propagated-inputs
17279 `(("r-jsonlite" ,r-jsonlite)
17280 ("r-shiny" ,r-shiny)))
17281 (home-page "https://github.com/carlganz/rintrojs")
17282 (synopsis "Wrapper for the Intro.js library")
17283 (description
17284 "This package provides a wrapper for the @url{http://www.introjs.com,
17285 Intro.js} library. This package makes it easy to include step-by-step
17286 introductions, and clickable hints in a Shiny application. It supports both
17287 static introductions in the UI, and programmatic introductions from the
17288 server-side.")
17289 (license license:agpl3+)))
17290
17291 (define-public r-sysfonts
17292 (package
17293 (name "r-sysfonts")
17294 (version "0.8.1")
17295 (source
17296 (origin
17297 (method url-fetch)
17298 (uri (cran-uri "sysfonts" version))
17299 (sha256
17300 (base32
17301 "1xp40hchjfif80a6jj210ghrjcvjjf66vqcssdy7a1j53nl1n994"))))
17302 (properties `((upstream-name . "sysfonts")))
17303 (build-system r-build-system)
17304 (inputs
17305 `(("freetype" ,freetype)
17306 ("libpng" ,libpng)
17307 ("zlib" ,zlib)))
17308 (native-inputs
17309 `(("pkg-config" ,pkg-config)))
17310 (home-page "https://github.com/yixuan/sysfonts")
17311 (synopsis "Loading fonts into R")
17312 (description
17313 "This is a package to simplify loading of system fonts and Google Fonts
17314 into R, in order to support other packages.")
17315 (license license:gpl2)))
17316
17317 (define-public r-showtextdb
17318 (package
17319 (name "r-showtextdb")
17320 (version "3.0")
17321 (source
17322 (origin
17323 (method url-fetch)
17324 (uri (cran-uri "showtextdb" version))
17325 (sha256
17326 (base32
17327 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
17328 (properties `((upstream-name . "showtextdb")))
17329 (build-system r-build-system)
17330 (propagated-inputs
17331 `(("r-sysfonts" ,r-sysfonts)))
17332 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
17333 (synopsis "Font files for the 'showtext' package")
17334 (description
17335 "This package provides font files that can be used by the @code{showtext}
17336 package.")
17337 (license license:asl2.0)))
17338
17339 (define-public r-showtext
17340 (package
17341 (name "r-showtext")
17342 (version "0.9")
17343 (source
17344 (origin
17345 (method url-fetch)
17346 (uri (cran-uri "showtext" version))
17347 (sha256
17348 (base32
17349 "11fx2vv8jlvcnybh18y7v4bn2c67aqsqwfq7y8dpywbwr4zg8jid"))))
17350 (properties `((upstream-name . "showtext")))
17351 (build-system r-build-system)
17352 (inputs
17353 `(("freetype" ,freetype)
17354 ("libpng" ,libpng)
17355 ("zlib" ,zlib)))
17356 (propagated-inputs
17357 `(("r-showtextdb" ,r-showtextdb)
17358 ("r-sysfonts" ,r-sysfonts)))
17359 (native-inputs
17360 `(("pkg-config" ,pkg-config)
17361 ("r-knitr" ,r-knitr)))
17362 (home-page "https://github.com/yixuan/showtext")
17363 (synopsis "Using fonts more easily in R graphs")
17364 (description
17365 "This package aims to make it easy to use various types of
17366 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
17367 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
17368 will be converted into polygons or raster images, hence after the plot has
17369 been created, it no longer relies on the font files. No external software
17370 such as Ghostscript is needed to use this package.")
17371 (license license:asl2.0)))
17372
17373 (define-public r-emojifont
17374 (package
17375 (name "r-emojifont")
17376 (version "0.5.3")
17377 (source
17378 (origin
17379 (method url-fetch)
17380 (uri (cran-uri "emojifont" version))
17381 (sha256
17382 (base32
17383 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
17384 (properties `((upstream-name . "emojifont")))
17385 (build-system r-build-system)
17386 (propagated-inputs
17387 `(("r-ggplot2" ,r-ggplot2)
17388 ("r-proto" ,r-proto)
17389 ("r-showtext" ,r-showtext)
17390 ("r-sysfonts" ,r-sysfonts)))
17391 (home-page "https://guangchuangyu.github.io/emojifont")
17392 (synopsis "Emoji and Font Awesome in R graphics")
17393 (description
17394 "This package enables the use of emoji and the Font Awesome glyphs in
17395 both base and ggplot2 graphics.")
17396 (license license:artistic2.0)))
17397
17398 (define-public r-abstractr
17399 (package
17400 (name "r-abstractr")
17401 (version "0.1.0")
17402 (source
17403 (origin
17404 (method url-fetch)
17405 (uri (cran-uri "abstractr" version))
17406 (sha256
17407 (base32
17408 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
17409 (properties `((upstream-name . "abstractr")))
17410 (build-system r-build-system)
17411 (propagated-inputs
17412 `(("r-colourpicker" ,r-colourpicker)
17413 ("r-emojifont" ,r-emojifont)
17414 ("r-ggplot2" ,r-ggplot2)
17415 ("r-gridextra" ,r-gridextra)
17416 ("r-rintrojs" ,r-rintrojs)
17417 ("r-shiny" ,r-shiny)
17418 ("r-shinythemes" ,r-shinythemes)))
17419 (home-page "https://matt-kumar.shinyapps.io/portfolio")
17420 (synopsis "R-Shiny application for creating visual abstracts")
17421 (description
17422 "This package provides an R Shiny application to create visual abstracts
17423 for original research. A variety of user defined options and formatting are
17424 included.")
17425 (license license:gpl3)))
17426
17427 (define-public r-qgam
17428 (package
17429 (name "r-qgam")
17430 (version "1.3.2")
17431 (source
17432 (origin
17433 (method url-fetch)
17434 (uri (cran-uri "qgam" version))
17435 (sha256
17436 (base32
17437 "0lks2cj0p7irp1i01756v1l7i26d7alax1fbkc20qd6wpz840fi7"))))
17438 (properties `((upstream-name . "qgam")))
17439 (build-system r-build-system)
17440 (propagated-inputs
17441 `(("r-doparallel" ,r-doparallel)
17442 ("r-mgcv" ,r-mgcv)
17443 ("r-plyr" ,r-plyr)
17444 ("r-shiny" ,r-shiny)))
17445 (native-inputs `(("r-knitr" ,r-knitr)))
17446 (home-page "https://cran.r-project.org/web/packages/qgam/")
17447 (synopsis "Smooth additive quantile regression models")
17448 (description
17449 "This package provides smooth additive quantile regression models, fitted
17450 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
17451 the smoothing parameters are estimated automatically by marginal loss
17452 minimization, while the regression coefficients are estimated using either
17453 PIRLS or Newton algorithm. The learning rate is determined so that the
17454 Bayesian credible intervals of the estimated effects have approximately the
17455 correct coverage. The main function is @code{qgam()} which is similar to
17456 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
17457 regression models.")
17458 (license license:gpl2+)))
17459
17460 (define-public r-abtest
17461 (package
17462 (name "r-abtest")
17463 (version "0.2.1")
17464 (source
17465 (origin
17466 (method url-fetch)
17467 (uri (cran-uri "abtest" version))
17468 (sha256
17469 (base32
17470 "1zfd13d7dplawk24dbdr1ka8cbdp5w6sxb0zlm7k4dhvn6ksi8h0"))))
17471 (properties `((upstream-name . "abtest")))
17472 (build-system r-build-system)
17473 (propagated-inputs
17474 `(("r-matrix" ,r-matrix)
17475 ("r-mvtnorm" ,r-mvtnorm)
17476 ("r-plotrix" ,r-plotrix)
17477 ("r-qgam" ,r-qgam)
17478 ("r-rcolorbrewer" ,r-rcolorbrewer)
17479 ("r-rcpp" ,r-rcpp)
17480 ("r-sn" ,r-sn)
17481 ("r-truncnorm" ,r-truncnorm)))
17482 (home-page "https://cran.r-project.org/web/packages/abtest/")
17483 (synopsis "Bayesian A/B testing")
17484 (description
17485 "This package provides functions for Bayesian A/B testing including prior
17486 elicitation options based on Kass and Vaidyanathan (1992)
17487 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
17488 (license license:gpl2+)))
17489
17490 (define-public r-accept
17491 (package
17492 (name "r-accept")
17493 (version "0.7.1")
17494 (source
17495 (origin
17496 (method url-fetch)
17497 (uri (cran-uri "accept" version))
17498 (sha256
17499 (base32
17500 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
17501 (properties `((upstream-name . "accept")))
17502 (build-system r-build-system)
17503 (propagated-inputs
17504 `(("r-dplyr" ,r-dplyr)
17505 ("r-extrafont" ,r-extrafont)
17506 ("r-mass" ,r-mass)
17507 ("r-plotly" ,r-plotly)
17508 ("r-stringr" ,r-stringr)
17509 ("r-viridis" ,r-viridis)))
17510 (home-page "https://cran.r-project.org/web/packages/accept/")
17511 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
17512 (description
17513 "This package allows clinicians to predict the rate and severity of
17514 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
17515 Disease} (COPD) patients, based on the clinical prediction model published in
17516 Adibi et al. (2019) @url{doi:10.1101/651901}.")
17517 (license license:gpl3)))
17518
17519 (define-public r-smpracticals
17520 (package
17521 (name "r-smpracticals")
17522 (version "1.4-3")
17523 (source
17524 (origin
17525 (method url-fetch)
17526 (uri (cran-uri "SMPracticals" version))
17527 (sha256
17528 (base32
17529 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
17530 (properties `((upstream-name . "SMPracticals")))
17531 (build-system r-build-system)
17532 (propagated-inputs
17533 `(("r-ellipse" ,r-ellipse)
17534 ("r-mass" ,r-mass)
17535 ("r-nlme" ,r-nlme)
17536 ("r-survival" ,r-survival)))
17537 (home-page "http://statwww.epfl.ch/davison/SM/")
17538 (synopsis "Practicals for use with Davison (2003) Statistical Models")
17539 (description
17540 "This package contains the datasets and a few functions for use with the
17541 practicals outlined in Appendix A of the book Statistical Models (Davison,
17542 2003, Cambridge University Press). The practicals themselves can be found at
17543 @url{http://statwww.epfl.ch/davison/SM/}.")
17544 (license license:gpl2+)))
17545
17546 (define-public r-fgui
17547 (package
17548 (name "r-fgui")
17549 (version "1.0-8")
17550 (source
17551 (origin
17552 (method url-fetch)
17553 (uri (cran-uri "fgui" version))
17554 (sha256
17555 (base32
17556 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
17557 (properties `((upstream-name . "fgui")))
17558 (build-system r-build-system)
17559 (home-page
17560 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
17561 (synopsis "Create GUI for R functions")
17562 (description
17563 "Rapidly create a GUI for a function you created by automatically
17564 creating widgets for arguments of the function. This package automatically
17565 parses help routines for context-sensitive help to these arguments. The
17566 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
17567 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
17568 incorporated into the interface for greater customization for the more
17569 experienced.")
17570 ;; Any version of the GPL.
17571 (license (list license:gpl2+ license:gpl3+))))
17572
17573 (define-public r-tcltk2
17574 (package
17575 (name "r-tcltk2")
17576 (version "1.2-11")
17577 (source
17578 (origin
17579 (method url-fetch)
17580 (uri (cran-uri "tcltk2" version))
17581 (sha256
17582 (base32
17583 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
17584 (properties `((upstream-name . "tcltk2")))
17585 (build-system r-build-system)
17586 (inputs
17587 `(("tcl" ,tcl)
17588 ("tk" ,tk)))
17589 (home-page "https://www.sciviews.org/SciViews-R")
17590 (synopsis "Tcl/Tk additions")
17591 (description
17592 "This package provides a series of additional Tcl commands and Tk widgets
17593 with style and various functions to supplement the tcltk package")
17594 (license license:lgpl3)))
17595
17596 (define-public r-accrual
17597 (package
17598 (name "r-accrual")
17599 (version "1.3")
17600 (source
17601 (origin
17602 (method url-fetch)
17603 (uri (cran-uri "accrual" version))
17604 (sha256
17605 (base32
17606 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
17607 (properties `((upstream-name . "accrual")))
17608 (build-system r-build-system)
17609 (propagated-inputs
17610 `(("r-fgui" ,r-fgui)
17611 ("r-smpracticals" ,r-smpracticals)
17612 ("r-tcltk2" ,r-tcltk2)))
17613 (home-page "https://cran.r-project.org/web/packages/accrual/")
17614 (synopsis "Bayesian accrual prediction")
17615 (description
17616 "Subject recruitment for medical research is challenging. Slow patient
17617 accrual leads to delay in research. Accrual monitoring during the process of
17618 recruitment is critical. Researchers need reliable tools to manage the
17619 accrual rate. This package provides an implementation of a Bayesian method
17620 that integrates researcher's experience on previous trials and data from the
17621 current study, providing reliable prediction on accrual rate for clinical
17622 studies. It provides functions for Bayesian accrual prediction which can be
17623 easily used by statisticians and clinical researchers.")
17624 (license license:gpl2)))
17625
17626 (define-public r-accrued
17627 (package
17628 (name "r-accrued")
17629 (version "1.4.1")
17630 (source
17631 (origin
17632 (method url-fetch)
17633 (uri (cran-uri "accrued" version))
17634 (sha256
17635 (base32
17636 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
17637 (properties `((upstream-name . "accrued")))
17638 (build-system r-build-system)
17639 (home-page "https://cran.r-project.org/web/packages/accrued/")
17640 (synopsis "Data quality visualization tools for partially accruing data")
17641 (description
17642 "This is a package for visualizing data quality of partially accruing
17643 data.")
17644 (license license:gpl3)))
17645
17646 (define-public r-mda
17647 (package
17648 (name "r-mda")
17649 (version "0.5-2")
17650 (source
17651 (origin
17652 (method url-fetch)
17653 (uri (cran-uri "mda" version))
17654 (sha256
17655 (base32
17656 "1hq0zhhz9klmp4zcr1w8hyn7s1h9kfg57d2l2mfm7psx459j0krl"))))
17657 (properties `((upstream-name . "mda")))
17658 (build-system r-build-system)
17659 (propagated-inputs `(("r-class" ,r-class)))
17660 (native-inputs `(("gfortran" ,gfortran)))
17661 (home-page "https://cran.r-project.org/web/packages/mda/")
17662 (synopsis "Mixture and flexible discriminant analysis")
17663 (description
17664 "This is a package for mixture and flexible discriminant analysis,
17665 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
17666 (license license:gpl2)))
17667
17668 (define-public r-elasticnet
17669 (package
17670 (name "r-elasticnet")
17671 (version "1.3")
17672 (source
17673 (origin
17674 (method url-fetch)
17675 (uri (cran-uri "elasticnet" version))
17676 (sha256
17677 (base32
17678 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
17679 (properties `((upstream-name . "elasticnet")))
17680 (build-system r-build-system)
17681 (propagated-inputs
17682 `(("r-lars" ,r-lars)))
17683 (home-page "http://users.stat.umn.edu/~zouxx019/")
17684 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
17685 (description
17686 "This package provides functions for fitting the entire solution path of
17687 the Elastic-Net and also provides functions for estimating sparse Principal
17688 Components. The Lasso solution paths can be computed by the same function.")
17689 (license license:gpl2+)))
17690
17691 (define-public r-sparselda
17692 (package
17693 (name "r-sparselda")
17694 (version "0.1-9")
17695 (source
17696 (origin
17697 (method url-fetch)
17698 (uri (cran-uri "sparseLDA" version))
17699 (sha256
17700 (base32
17701 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
17702 (properties `((upstream-name . "sparseLDA")))
17703 (build-system r-build-system)
17704 (propagated-inputs
17705 `(("r-elasticnet" ,r-elasticnet)
17706 ("r-mass" ,r-mass)
17707 ("r-mda" ,r-mda)))
17708 (home-page "https://www.imm.dtu.dk/~lkhc/")
17709 (synopsis "Sparse discriminant analysis")
17710 (description
17711 "This package performs sparse linear discriminant analysis for Gaussians
17712 and mixture of Gaussian models.")
17713 (license license:gpl2+)))
17714
17715 (define-public r-accsda
17716 (package
17717 (name "r-accsda")
17718 (version "1.0.0")
17719 (source
17720 (origin
17721 (method url-fetch)
17722 (uri (cran-uri "accSDA" version))
17723 (sha256
17724 (base32
17725 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17726 (properties `((upstream-name . "accSDA")))
17727 (build-system r-build-system)
17728 (propagated-inputs
17729 `(("r-ggplot2" ,r-ggplot2)
17730 ("r-ggthemes" ,r-ggthemes)
17731 ("r-gridextra" ,r-gridextra)
17732 ("r-mass" ,r-mass)
17733 ("r-rarpack" ,r-rarpack)
17734 ("r-sparselda" ,r-sparselda)))
17735 (home-page "https://github.com/gumeo/accSDA/wiki")
17736 (synopsis "Accelerated sparse discriminant analysis")
17737 (description
17738 "This package provides an implementation of sparse linear discriminant
17739 analysis, which is a supervised classification method for multiple classes.
17740 Various novel optimization approaches to this problem are implemented
17741 including @dfn{alternating direction method of multipliers} (ADMM),
17742 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17743 Functions for performing cross validation are also supplied along with basic
17744 prediction and plotting functions. @dfn{Sparse zero variance
17745 discriminant} (SZVD) analysis is also included in the package.")
17746 (license license:gpl2+)))
17747
17748 (define-public r-ace2fastq
17749 (package
17750 (name "r-ace2fastq")
17751 (version "0.6.0")
17752 (source
17753 (origin
17754 (method url-fetch)
17755 (uri (cran-uri "ace2fastq" version))
17756 (sha256
17757 (base32
17758 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17759 (properties `((upstream-name . "ace2fastq")))
17760 (build-system r-build-system)
17761 (propagated-inputs
17762 `(("r-stringr" ,r-stringr)))
17763 (home-page "https://github.com/c5sire/ace2fastq")
17764 (synopsis "ACE file to FASTQ converter")
17765 (description
17766 "The ACE file format is used in genomics to store contigs from sequencing
17767 machines. This tools converts it into FASTQ format. Both formats contain the
17768 sequence characters and their corresponding quality information. Unlike the
17769 FASTQ file, the ACE file stores the quality values numerically. The
17770 conversion algorithm uses the standard Sanger formula. The package
17771 facilitates insertion into pipelines, and content inspection.")
17772 (license license:gpl3)))
17773
17774 (define-public r-rngwell
17775 (package
17776 (name "r-rngwell")
17777 (version "0.10-6")
17778 (source
17779 (origin
17780 (method url-fetch)
17781 (uri (cran-uri "rngWELL" version))
17782 (sha256
17783 (base32
17784 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17785 (properties `((upstream-name . "rngWELL")))
17786 (build-system r-build-system)
17787 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17788 (synopsis "Toolbox for WELL random number generators")
17789 (description
17790 "This is a dedicated package to WELL pseudo random generators, which were
17791 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17792 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17793 (license license:bsd-3)))
17794
17795 (define-public r-randtoolbox
17796 (package
17797 (name "r-randtoolbox")
17798 (version "1.30.1")
17799 (source
17800 (origin
17801 (method url-fetch)
17802 (uri (cran-uri "randtoolbox" version))
17803 (sha256
17804 (base32
17805 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
17806 (properties `((upstream-name . "randtoolbox")))
17807 (build-system r-build-system)
17808 (propagated-inputs
17809 `(("r-rngwell" ,r-rngwell)))
17810 (native-inputs
17811 `(("gfortran" ,gfortran)))
17812 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
17813 (synopsis "Toolbox for pseudo and quasi random number generation")
17814 (description
17815 "This package provides
17816
17817 @enumerate
17818 @item pseudo random generators, such as general linear
17819 congruential generators, multiple recursive generators and generalized
17820 feedback shift register (SF-Mersenne Twister algorithm and WELL
17821 generators)
17822
17823 @item quasi random generators, such as the Torus algorithm, the Sobol
17824 sequence, the Halton sequence (including the Van der Corput sequence), and
17825
17826 @item some generator tests: the gap test, the serial test, the poker test.
17827 @end enumerate
17828
17829 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
17830 (license license:bsd-3)))
17831
17832 (define-public r-lhs
17833 (package
17834 (name "r-lhs")
17835 (version "1.0.2")
17836 (source
17837 (origin
17838 (method url-fetch)
17839 (uri (cran-uri "lhs" version))
17840 (sha256
17841 (base32
17842 "0n0i1hr9gmc0hfcs2cvpjvdfgm6k26rhcq3q22r8ic0gfj953572"))))
17843 (properties `((upstream-name . "lhs")))
17844 (build-system r-build-system)
17845 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17846 (native-inputs
17847 `(("r-knitr" ,r-knitr)))
17848 (home-page "https://github.com/bertcarnell/lhs")
17849 (synopsis "Latin Hypercube Samples")
17850 (description
17851 "This package provides a number of methods for creating and augmenting
17852 Latin Hypercube Samples.")
17853 (license license:gpl3)))
17854
17855 (define-public r-acebayes
17856 (package
17857 (name "r-acebayes")
17858 (version "1.9")
17859 (source
17860 (origin
17861 (method url-fetch)
17862 (uri (cran-uri "acebayes" version))
17863 (sha256
17864 (base32
17865 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
17866 (properties `((upstream-name . "acebayes")))
17867 (build-system r-build-system)
17868 (propagated-inputs
17869 `(("r-compare" ,r-compare)
17870 ("r-lhs" ,r-lhs)
17871 ("r-randtoolbox" ,r-randtoolbox)
17872 ("r-rcpp" ,r-rcpp)
17873 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17874 (home-page "https://cran.r-project.org/web/packages/acebayes/")
17875 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
17876 (description
17877 "Finding an optimal Bayesian experimental design involves maximizing an
17878 objective function given by the expectation of some appropriately chosen
17879 utility function with respect to the joint distribution of unknown
17880 quantities (including responses). This objective function is usually not
17881 available in closed form and the design space can be continuous and of high
17882 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
17883 to maximise an approximation to the expectation of the utility function.")
17884 (license license:gpl2)))
17885
17886 (define-public r-acet
17887 (package
17888 (name "r-acet")
17889 (version "1.8.0")
17890 (source
17891 (origin
17892 (method url-fetch)
17893 (uri (cran-uri "ACEt" version))
17894 (sha256
17895 (base32
17896 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
17897 (properties `((upstream-name . "ACEt")))
17898 (build-system r-build-system)
17899 (propagated-inputs
17900 `(("r-bh" ,r-bh)
17901 ("r-mass" ,r-mass)
17902 ("r-rcpp" ,r-rcpp)
17903 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17904 (home-page "https://cran.r-project.org/web/packages/ACEt/")
17905 (synopsis "Estimating dynamic heritability and twin model comparison")
17906 (description
17907 "This package supports twin models that are able to estimate the dynamic
17908 behaviour of the variance components in the classical twin models with respect
17909 to age using B-splines and P-splines.")
17910 (license license:gpl2+)))
17911
17912 (define-public r-acfmperiod
17913 (package
17914 (name "r-acfmperiod")
17915 (version "1.0.0")
17916 (source
17917 (origin
17918 (method url-fetch)
17919 (uri (cran-uri "acfMPeriod" version))
17920 (sha256
17921 (base32
17922 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
17923 (properties `((upstream-name . "acfMPeriod")))
17924 (build-system r-build-system)
17925 (propagated-inputs
17926 `(("r-mass" ,r-mass)))
17927 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
17928 (synopsis "Estimation of the ACF from the M-periodogram")
17929 (description
17930 "This package support non-robust and robust computations of the sample
17931 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
17932 univariate and multivariate processes. The methodology consists in reversing
17933 the diagonalization procedure involving the periodogram or the
17934 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
17935 ACOVF or the ACF as discussed in Fuller (1995)
17936 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
17937 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
17938 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
17939 (license license:gpl2+)))
17940
17941 (define-public r-gamlss-data
17942 (package
17943 (name "r-gamlss-data")
17944 (version "5.1-4")
17945 (source
17946 (origin
17947 (method url-fetch)
17948 (uri (cran-uri "gamlss.data" version))
17949 (sha256
17950 (base32
17951 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
17952 (properties `((upstream-name . "gamlss.data")))
17953 (build-system r-build-system)
17954 (home-page "http://www.gamlss.org/")
17955 (synopsis "GAMLSS data")
17956 (description
17957 "This package provides data used as examples to demonstrate GAMLSS
17958 models.")
17959 ;; Either version of the license
17960 (license (list license:gpl2 license:gpl3))))
17961
17962 (define-public r-gamlss
17963 (package
17964 (name "r-gamlss")
17965 (version "5.1-7")
17966 (source
17967 (origin
17968 (method url-fetch)
17969 (uri (cran-uri "gamlss" version))
17970 (sha256
17971 (base32
17972 "0ywqwsp4k6jgnicp1gdsglji61l5cnackl52700v8kmkk83bq4c8"))))
17973 (properties `((upstream-name . "gamlss")))
17974 (build-system r-build-system)
17975 (propagated-inputs
17976 `(("r-gamlss-data" ,r-gamlss-data)
17977 ("r-gamlss-dist" ,r-gamlss-dist)
17978 ("r-mass" ,r-mass)
17979 ("r-nlme" ,r-nlme)
17980 ("r-survival" ,r-survival)))
17981 (home-page "http://www.gamlss.org/")
17982 (synopsis "Generalized additive models for location scale and shape")
17983 (description
17984 "This package provides functions for fitting the generalized additive
17985 models for location scale and shape introduced by Rigby and
17986 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
17987 use a distributional regression approach where all the parameters of the
17988 conditional distribution of the response variable are modelled using
17989 explanatory variables.")
17990 ;; Either version of the license
17991 (license (list license:gpl2 license:gpl3))))
17992
17993 (define-public r-acid
17994 (package
17995 (name "r-acid")
17996 (version "1.1")
17997 (source
17998 (origin
17999 (method url-fetch)
18000 (uri (cran-uri "acid" version))
18001 (sha256
18002 (base32
18003 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
18004 (properties `((upstream-name . "acid")))
18005 (build-system r-build-system)
18006 (propagated-inputs
18007 `(("r-gamlss" ,r-gamlss)
18008 ("r-gamlss-dist" ,r-gamlss-dist)
18009 ("r-hmisc" ,r-hmisc)))
18010 (home-page "https://cran.r-project.org/web/packages/acid/")
18011 (synopsis "Analysing conditional income distributions")
18012 (description
18013 "This package provides functions for the analysis of income distributions
18014 for subgroups of the population as defined by a set of variables like age,
18015 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
18016 distribution as well as functions for moments, inequality measures, entropy
18017 measures and polarisation measures of income distributions. This package thus
18018 aides the analysis of income inequality by offering tools for the exploratory
18019 analysis of income distributions at the disaggregated level.")
18020 (license license:gpl3)))
18021
18022 (define-public r-acm4r
18023 (package
18024 (name "r-acm4r")
18025 (version "1.0")
18026 (source
18027 (origin
18028 (method url-fetch)
18029 (uri (cran-uri "acm4r" version))
18030 (sha256
18031 (base32
18032 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
18033 (properties `((upstream-name . "acm4r")))
18034 (build-system r-build-system)
18035 (propagated-inputs `(("r-mass" ,r-mass)))
18036 (home-page "https://cran.r-project.org/web/packages/acm4r/")
18037 (synopsis "Align-and-count method comparisons of RFLP data")
18038 (description
18039 "This is a package to compare sequence fragment lengths or molecular
18040 weights from pairs of lanes. The number of matching bands in the
18041 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
18042 the align-and-count method.")
18043 ;; Any version of the GPL
18044 (license (list license:gpl2+ license:gpl3+))))
18045
18046 (define-public r-filematrix
18047 (package
18048 (name "r-filematrix")
18049 (version "1.3")
18050 (source
18051 (origin
18052 (method url-fetch)
18053 (uri (cran-uri "filematrix" version))
18054 (sha256
18055 (base32
18056 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
18057 (properties `((upstream-name . "filematrix")))
18058 (build-system r-build-system)
18059 ;; These inputs are needed for vignettes
18060 (native-inputs
18061 `(("r-knitr" ,r-knitr)
18062 ("r-rmarkdown" ,r-rmarkdown)
18063 ("pandoc-citeproc" ,pandoc-citeproc)))
18064 (home-page "https://github.com/andreyshabalin/filematrix")
18065 (synopsis "File-backed matrix class with convenient read and write access")
18066 (description
18067 "This package provides an interface for working with large matrices
18068 stored in files, not in computer memory. It supports multiple non-character
18069 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
18070 byte real values). Access to parts of the matrix is done by indexing, exactly
18071 as with usual R matrices. It supports very large matrices; the package has
18072 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
18073 columns, ad allows for quick addition of extra columns to a filematrix.")
18074 (license license:lgpl3)))
18075
18076 (define-public r-acmeeqtl
18077 (package
18078 (name "r-acmeeqtl")
18079 (version "1.6")
18080 (source
18081 (origin
18082 (method url-fetch)
18083 (uri (cran-uri "ACMEeqtl" version))
18084 (sha256
18085 (base32
18086 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
18087 (properties `((upstream-name . "ACMEeqtl")))
18088 (build-system r-build-system)
18089 (propagated-inputs
18090 `(("r-filematrix" ,r-filematrix)))
18091 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
18092 (synopsis "Estimation of interpretable eQTL effect sizes")
18093 (description
18094 "This package provides a non-linear model, termed ACME, that reflects a
18095 parsimonious biological model for allelic contributions of cis-acting eQTLs.
18096 With non-linear least-squares algorithm the maximum likelihood parameters can
18097 be estimated. The ACME model provides interpretable effect size estimates and
18098 p-values with well controlled Type-I error.")
18099 (license license:lgpl3)))
18100
18101 (define-public r-acmer
18102 (package
18103 (name "r-acmer")
18104 (version "1.1.0")
18105 (source
18106 (origin
18107 (method url-fetch)
18108 (uri (cran-uri "acmeR" version))
18109 (sha256
18110 (base32
18111 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
18112 (properties `((upstream-name . "acmeR")))
18113 (build-system r-build-system)
18114 (propagated-inputs `(("r-foreign" ,r-foreign)))
18115 (home-page "https://cran.r-project.org/web/packages/acmeR/")
18116 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
18117 (description
18118 "This package provides an implementation of the ACME estimator, described
18119 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
18120 Mortality at Wind Turbines. Unlike most other models, this estimator supports
18121 decreasing-hazard Weibull model for persistence; decreasing search proficiency
18122 as carcasses age; variable bleed-through at successive searches; and interval
18123 mortality estimates. The package provides, based on search data, functions
18124 for estimating the mortality inflation factor in Frequentist and Bayesian
18125 settings.")
18126 (license license:expat)))
18127
18128 (define-public r-r-huge
18129 (package
18130 (name "r-r-huge")
18131 (version "0.9.0")
18132 (source
18133 (origin
18134 (method url-fetch)
18135 (uri (cran-uri "R.huge" version))
18136 (sha256
18137 (base32
18138 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
18139 (properties `((upstream-name . "R.huge")))
18140 (build-system r-build-system)
18141 (propagated-inputs
18142 `(("r-r-methodss3" ,r-r-methodss3)
18143 ("r-r-oo" ,r-r-oo)
18144 ("r-r-utils" ,r-r-utils)))
18145 (home-page "https://github.com/HenrikBengtsson/R.huge")
18146 (synopsis "Methods for accessing huge amounts of data")
18147 (description
18148 "This is a deprecated package for accessing huge amounts of data.
18149 Cross-platform alternatives are the following packages: bigmemory (CRAN),
18150 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
18151 the @code{aroma.affymetrix} package.")
18152 (license license:lgpl2.1+)))
18153
18154 (define-public r-r-filesets
18155 (package
18156 (name "r-r-filesets")
18157 (version "2.13.0")
18158 (source
18159 (origin
18160 (method url-fetch)
18161 (uri (cran-uri "R.filesets" version))
18162 (sha256
18163 (base32
18164 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
18165 (properties `((upstream-name . "R.filesets")))
18166 (build-system r-build-system)
18167 (propagated-inputs
18168 `(("r-digest" ,r-digest)
18169 ("r-r-cache" ,r-r-cache)
18170 ("r-r-methodss3" ,r-r-methodss3)
18171 ("r-r-oo" ,r-r-oo)
18172 ("r-r-utils" ,r-r-utils)))
18173 (home-page "https://github.com/HenrikBengtsson/R.filesets")
18174 (synopsis "Easy handling of and access to files")
18175 (description
18176 "This package provides classes and methods to locate, setup, subset,
18177 navigate and iterate file sets, i.e. sets of files located in one or more
18178 directories on the file system. The API is designed such that these classes
18179 can be extended via inheritance to provide a richer API for special file
18180 formats. Moreover, a specific name format is defined such that filenames and
18181 directories can be considered to have full names which consists of a name
18182 followed by comma-separated tags. This adds additional flexibility to
18183 identify file sets and individual files.")
18184 (license license:lgpl2.1+)))
18185
18186 (define-public r-r-devices
18187 (package
18188 (name "r-r-devices")
18189 (version "2.16.1")
18190 (source
18191 (origin
18192 (method url-fetch)
18193 (uri (cran-uri "R.devices" version))
18194 (sha256
18195 (base32
18196 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
18197 (properties `((upstream-name . "R.devices")))
18198 (build-system r-build-system)
18199 (propagated-inputs
18200 `(("r-base64enc" ,r-base64enc)
18201 ("r-r-methodss3" ,r-r-methodss3)
18202 ("r-r-oo" ,r-r-oo)
18203 ("r-r-utils" ,r-r-utils)))
18204 (home-page "https://github.com/HenrikBengtsson/R.devices")
18205 (synopsis "Unified handling of graphics devices")
18206 (description
18207 "This package provides functions for creating plots and image files in a
18208 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
18209 Default device options as well as scales and aspect ratios are controlled in a
18210 uniform way across all device types. Switching output format requires minimal
18211 changes in code. This package is ideal for large-scale batch processing,
18212 because it will never leave open graphics devices or incomplete image files
18213 behind, even on errors or user interrupts.")
18214 (license license:lgpl2.1+)))
18215
18216 (define-public r-acnr
18217 (package
18218 (name "r-acnr")
18219 (version "1.0.0")
18220 (source
18221 (origin
18222 (method url-fetch)
18223 (uri (cran-uri "acnr" version))
18224 (sha256
18225 (base32
18226 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
18227 (properties `((upstream-name . "acnr")))
18228 (build-system r-build-system)
18229 (home-page "https://github.com/mpierrejean/acnr")
18230 (synopsis "Annotated copy-number regions")
18231 (description
18232 "This package provides SNP array data from different types of copy-number
18233 regions. These regions were identified manually by the authors of the package
18234 and may be used to generate realistic data sets with known truth.")
18235 (license license:lgpl2.1+)))
18236
18237 (define-public r-acopula
18238 (package
18239 (name "r-acopula")
18240 (version "0.9.3")
18241 (source
18242 (origin
18243 (method url-fetch)
18244 (uri (cran-uri "acopula" version))
18245 (sha256
18246 (base32
18247 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
18248 (properties `((upstream-name . "acopula")))
18249 (build-system r-build-system)
18250 (home-page "https://cran.r-project.org/web/packages/acopula/")
18251 (synopsis "Modelling dependence with multivariate Archimax copulas")
18252 (description
18253 "Archimax copulas are a mixture of Archimedean and EV copulas. This
18254 package provides definitions of several parametric families of generator and
18255 dependence function, computes CDF and PDF, estimates parameters, tests for
18256 goodness of fit, generates random sample and checks copula properties for
18257 custom constructs. In the 2-dimensional case explicit formulas for density
18258 are used, contrary to higher dimensions when all derivatives are linearly
18259 approximated. Several non-archimax families (normal, FGM, Plackett) are
18260 provided as well.")
18261 (license license:gpl2)))
18262
18263 (define-public r-tuner
18264 (package
18265 (name "r-tuner")
18266 (version "1.3.3")
18267 (source
18268 (origin
18269 (method url-fetch)
18270 (uri (cran-uri "tuneR" version))
18271 (sha256
18272 (base32
18273 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
18274 (properties `((upstream-name . "tuneR")))
18275 (build-system r-build-system)
18276 (propagated-inputs `(("r-signal" ,r-signal)))
18277 (home-page "https://cran.r-project.org/web/packages/tuneR/")
18278 (synopsis "Analysis of music and speech")
18279 (description
18280 "This is a package for the analysis of music and speech. Analyze music
18281 and speech, extract features like MFCCs, handle wave files and their
18282 representation in various ways, read MP3, read MIDI, perform steps of a
18283 transcription, ...")
18284 ;; Either of these versions.
18285 (license (list license:gpl2 license:gpl3))))
18286
18287 (define-public r-seewave
18288 (package
18289 (name "r-seewave")
18290 (version "2.1.6")
18291 (source
18292 (origin
18293 (method url-fetch)
18294 (uri (cran-uri "seewave" version))
18295 (sha256
18296 (base32
18297 "123h3q0gps0vy9sikr7gjphnv9m3l4h4mykiydjllmrpaw1s1844"))))
18298 (properties `((upstream-name . "seewave")))
18299 (build-system r-build-system)
18300 (inputs
18301 `(("libsndfile" ,libsndfile)))
18302 (propagated-inputs
18303 `(("r-tuner" ,r-tuner)))
18304 (home-page "http://rug.mnhn.fr/seewave")
18305 (synopsis "Sound analysis and synthesis")
18306 (description
18307 "This package provides functions for analysing, manipulating, displaying,
18308 editing and synthesizing time waves (particularly sound). This package
18309 processes time analysis (oscillograms and envelopes), spectral content,
18310 resonance quality factor, entropy, cross correlation and autocorrelation,
18311 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
18312 and 3D spectrograms and many other analyses.")
18313 (license license:gpl2+)))
18314
18315 (define-public r-acousticndlcoder
18316 (package
18317 (name "r-acousticndlcoder")
18318 (version "1.0.2")
18319 (source
18320 (origin
18321 (method url-fetch)
18322 (uri (cran-uri "AcousticNDLCodeR" version))
18323 (sha256
18324 (base32
18325 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
18326 (properties
18327 `((upstream-name . "AcousticNDLCodeR")))
18328 (build-system r-build-system)
18329 (propagated-inputs
18330 `(("r-seewave" ,r-seewave)
18331 ("r-tuner" ,r-tuner)
18332 ("r-zoo" ,r-zoo)))
18333 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
18334 (synopsis "Coding sound files for use with NDL")
18335 (description
18336 "Make acoustic cues to use with the R package @code{ndl}.
18337 The package implements functions used in the PLoS ONE paper \"Words from
18338 spontaneous conversational speech can be recognized with human-like accuracy
18339 by an error-driven learning algorithm that discriminates between meanings
18340 straight from smart acoustic features, bypassing the phoneme as recognition
18341 unit.\" @url{doi:10.1371/journal.pone.0174623}")
18342 (license license:gpl2+)))
18343
18344 (define-public r-acp
18345 (package
18346 (name "r-acp")
18347 (version "2.1")
18348 (source
18349 (origin
18350 (method url-fetch)
18351 (uri (cran-uri "acp" version))
18352 (sha256
18353 (base32
18354 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
18355 (properties `((upstream-name . "acp")))
18356 (build-system r-build-system)
18357 (propagated-inputs
18358 `(("r-quantmod" ,r-quantmod)
18359 ("r-tseries" ,r-tseries)))
18360 (home-page "https://cran.r-project.org/web/packages/acp/")
18361 (synopsis "Autoregressive conditional Poisson")
18362 (description
18363 "This package supports the analysis of count data exhibiting
18364 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
18365 model (ACP(p,q)) proposed by Heinen (2003).")
18366 (license license:gpl2)))
18367
18368 (define-public r-ada
18369 (package
18370 (name "r-ada")
18371 (version "2.0-5")
18372 (source
18373 (origin
18374 (method url-fetch)
18375 (uri (cran-uri "ada" version))
18376 (sha256
18377 (base32
18378 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
18379 (properties `((upstream-name . "ada")))
18380 (build-system r-build-system)
18381 (propagated-inputs `(("r-rpart" ,r-rpart)))
18382 (home-page "https://cran.r-project.org/web/packages/ada/")
18383 (synopsis "Stochastic boosting")
18384 (description
18385 "This package provides a straightforward, well-documented, and broad
18386 boosting routine for classification, ideally suited for small to
18387 moderate-sized data sets. It performs discrete, real, and gentle boost under
18388 both exponential and logistic loss on a given data set.")
18389 ;; Any version of the GPL.
18390 (license (list license:gpl2+ license:gpl3+))))
18391
18392 (define-public r-genalg
18393 (package
18394 (name "r-genalg")
18395 (version "0.2.0")
18396 (source
18397 (origin
18398 (method url-fetch)
18399 (uri (cran-uri "genalg" version))
18400 (sha256
18401 (base32
18402 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
18403 (properties `((upstream-name . "genalg")))
18404 (build-system r-build-system)
18405 (home-page "https://github.com/egonw/genalg")
18406 (synopsis "R based genetic algorithm")
18407 (description
18408 "This package provides an R based genetic algorithm for binary and
18409 floating point chromosomes.")
18410 (license license:gpl2)))
18411
18412 (define-public r-kernelfactory
18413 (package
18414 (name "r-kernelfactory")
18415 (version "0.3.0")
18416 (source
18417 (origin
18418 (method url-fetch)
18419 (uri (cran-uri "kernelFactory" version))
18420 (sha256
18421 (base32
18422 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
18423 (properties `((upstream-name . "kernelFactory")))
18424 (build-system r-build-system)
18425 (propagated-inputs
18426 `(("r-auc" ,r-auc)
18427 ("r-genalg" ,r-genalg)
18428 ("r-kernlab" ,r-kernlab)
18429 ("r-randomforest" ,r-randomforest)))
18430 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
18431 (synopsis "Ensemble of kernel machines")
18432 (description
18433 "Kernel factory is an ensemble method where each base classifier (random
18434 forest) is fit on the kernel matrix of a subset of the training data.")
18435 (license license:gpl2+)))
18436
18437 (define-public r-dummies
18438 (package
18439 (name "r-dummies")
18440 (version "1.5.6")
18441 (source
18442 (origin
18443 (method url-fetch)
18444 (uri (cran-uri "dummies" version))
18445 (sha256
18446 (base32
18447 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
18448 (properties `((upstream-name . "dummies")))
18449 (build-system r-build-system)
18450 (home-page "https://decisionpatterns.com")
18451 (synopsis "Create dummy/indicator variables flexibly and efficiently")
18452 (description
18453 "This package lets you expand factors, characters and other eligible
18454 classes into dummy/indicator variables.")
18455 (license license:gpl2+)))
18456
18457 (define-public r-acrm
18458 (package
18459 (name "r-acrm")
18460 (version "0.1.1")
18461 (source
18462 (origin
18463 (method url-fetch)
18464 (uri (cran-uri "aCRM" version))
18465 (sha256
18466 (base32
18467 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
18468 (properties `((upstream-name . "aCRM")))
18469 (build-system r-build-system)
18470 (propagated-inputs
18471 `(("r-ada" ,r-ada)
18472 ("r-dummies" ,r-dummies)
18473 ("r-kernelfactory" ,r-kernelfactory)
18474 ("r-randomforest" ,r-randomforest)))
18475 (home-page "https://cran.r-project.org/web/packages/aCRM/")
18476 (synopsis "Convenience functions for analytical customer relationship management")
18477 (description
18478 "This package provides convenience functions for data preparation and
18479 modeling often used in @dfn{analytical customer relationship
18480 management} (aCRM).")
18481 (license license:gpl2+)))
18482
18483 (define-public r-treeclust
18484 (package
18485 (name "r-treeclust")
18486 (version "1.1-7")
18487 (source
18488 (origin
18489 (method url-fetch)
18490 (uri (cran-uri "treeClust" version))
18491 (sha256
18492 (base32
18493 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
18494 (properties `((upstream-name . "treeClust")))
18495 (build-system r-build-system)
18496 (propagated-inputs
18497 `(("r-cluster" ,r-cluster)
18498 ("r-rpart" ,r-rpart)))
18499 (home-page "https://cran.r-project.org/web/packages/treeClust/")
18500 (synopsis "Cluster distances through trees")
18501 (description
18502 "This package provides tools to create a measure of inter-point
18503 dissimilarity useful for clustering mixed data, and, optionally, perform the
18504 clustering.")
18505 (license license:gpl2+)))
18506
18507 (define-public r-acrosstic
18508 (package
18509 (name "r-acrosstic")
18510 (version "1.0-3")
18511 (source
18512 (origin
18513 (method url-fetch)
18514 (uri (cran-uri "AcrossTic" version))
18515 (sha256
18516 (base32
18517 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
18518 (properties `((upstream-name . "AcrossTic")))
18519 (build-system r-build-system)
18520 (propagated-inputs
18521 `(("r-lpsolve" ,r-lpsolve)
18522 ("r-treeclust" ,r-treeclust)))
18523 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
18524 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
18525 (description
18526 "This is a package for constructing minimum-cost regular spanning
18527 subgraph as part of a non-parametric two-sample test for equality of
18528 distribution.")
18529 (license license:gpl2+)))
18530
18531 (define-public r-acrt
18532 (package
18533 (name "r-acrt")
18534 (version "1.0.1")
18535 (source
18536 (origin
18537 (method url-fetch)
18538 (uri (cran-uri "acrt" version))
18539 (sha256
18540 (base32
18541 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
18542 (properties `((upstream-name . "acrt")))
18543 (build-system r-build-system)
18544 (propagated-inputs
18545 `(("r-rcpp" ,r-rcpp)
18546 ("r-rcppeigen" ,r-rcppeigen)
18547 ("r-sandwich" ,r-sandwich)))
18548 (home-page "https://cran.r-project.org/web/packages/acrt/")
18549 (synopsis "Autocorrelation robust testing")
18550 (description
18551 "This package provides functions for testing affine hypotheses on the
18552 regression coefficient vector in regression models with autocorrelated
18553 errors.")
18554 (license license:gpl2)))
18555
18556 (define-public r-acs
18557 (package
18558 (name "r-acs")
18559 (version "2.1.4")
18560 (source
18561 (origin
18562 (method url-fetch)
18563 (uri (cran-uri "acs" version))
18564 (sha256
18565 (base32
18566 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
18567 (properties `((upstream-name . "acs")))
18568 (build-system r-build-system)
18569 (propagated-inputs
18570 `(("r-httr" ,r-httr)
18571 ("r-plyr" ,r-plyr)
18572 ("r-rcpp" ,r-rcpp)
18573 ("r-stringr" ,r-stringr)
18574 ("r-xml" ,r-xml)))
18575 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
18576 (synopsis "Work with data from the US Census")
18577 (description
18578 "This package provides a general toolkit for downloading, managing,
18579 analyzing, and presenting data from the
18580 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
18581 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
18582 American Community Survey (ACS). Confidence intervals provided with ACS data
18583 are converted to standard errors to be bundled with estimates in complex
18584 @code{acs} objects. The package provides new methods to conduct standard
18585 operations on @code{acs} objects and present/plot data in statistically
18586 appropriate ways.")
18587 (license license:gpl3)))
18588
18589 (define-public r-acss-data
18590 (package
18591 (name "r-acss-data")
18592 (version "1.0")
18593 (source
18594 (origin
18595 (method url-fetch)
18596 (uri (cran-uri "acss.data" version))
18597 (sha256
18598 (base32
18599 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
18600 (properties `((upstream-name . "acss.data")))
18601 (build-system r-build-system)
18602 (home-page "http://complexitycalculator.com/methodology.html")
18603 (synopsis "Data for algorithmic complexity of short strings")
18604 (description
18605 "This is a data only package providing the algorithmic complexity of
18606 short strings, computed using the coding theorem method. For a given set of
18607 symbols in a string, all possible or a large number of random samples of
18608 Turing machines with a given number of states (e.g., 5) and number of symbols
18609 corresponding to the number of symbols in the strings were simulated until
18610 they reached a halting state or failed to end. This package contains data on
18611 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
18612 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
18613 distribution of the halting states.")
18614 (license license:gpl2+)))
18615
18616 (define-public r-acss
18617 (package
18618 (name "r-acss")
18619 (version "0.2-5")
18620 (source
18621 (origin
18622 (method url-fetch)
18623 (uri (cran-uri "acss" version))
18624 (sha256
18625 (base32
18626 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
18627 (properties `((upstream-name . "acss")))
18628 (build-system r-build-system)
18629 (propagated-inputs
18630 `(("r-acss-data" ,r-acss-data)
18631 ("r-zoo" ,r-zoo)))
18632 (home-page "http://complexitycalculator.com/methodology.html")
18633 (synopsis "Algorithmic complexity for short strings")
18634 (description
18635 "The main purpose of this package is to provide the algorithmic
18636 complexity for short strings, an approximation of the Kolmogorov Complexity of
18637 a short string using the coding theorem method. While the database containing
18638 the complexity is provided in the data only package @code{acss.data}, this
18639 package provides functions accessing the data such as @code{prob_random}
18640 returning the posterior probability that a given string was produced by a
18641 random process. In addition, two traditional (but problematic) measures of
18642 complexity are also provided: entropy and change complexity.")
18643 (license license:gpl2+)))
18644
18645 (define-public r-acswr
18646 (package
18647 (name "r-acswr")
18648 (version "1.0")
18649 (source
18650 (origin
18651 (method url-fetch)
18652 (uri (cran-uri "ACSWR" version))
18653 (sha256
18654 (base32
18655 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
18656 (properties `((upstream-name . "ACSWR")))
18657 (build-system r-build-system)
18658 (propagated-inputs
18659 `(("r-mass" ,r-mass)))
18660 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
18661 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
18662 (description
18663 "This is a companion package for the book \"A Course in Statistics with
18664 R\" (ISBN 978-1-119-15272-9.)")
18665 (license license:gpl2)))
18666
18667 (define-public r-alabama
18668 (package
18669 (name "r-alabama")
18670 (version "2015.3-1")
18671 (source
18672 (origin
18673 (method url-fetch)
18674 (uri (cran-uri "alabama" version))
18675 (sha256
18676 (base32
18677 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
18678 (properties `((upstream-name . "alabama")))
18679 (build-system r-build-system)
18680 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
18681 (home-page "https://cran.r-project.org/web/packages/alabama/")
18682 (synopsis "Constrained nonlinear optimization")
18683 (description
18684 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
18685 Algorithm; it is used for optimizing smooth nonlinear objective functions with
18686 constraints. Linear or nonlinear equality and inequality constraints are
18687 allowed.")
18688 (license license:gpl2+)))
18689
18690 (define-public r-gdina
18691 (package
18692 (name "r-gdina")
18693 (version "2.8.0")
18694 (source
18695 (origin
18696 (method url-fetch)
18697 (uri (cran-uri "GDINA" version))
18698 (sha256
18699 (base32
18700 "0chxnhp37xfd78gafkgwqrmc0jf3pvpdyrkc438kl0l53fb7dld7"))))
18701 (properties `((upstream-name . "GDINA")))
18702 (build-system r-build-system)
18703 (propagated-inputs
18704 `(("r-alabama" ,r-alabama)
18705 ("r-ggplot2" ,r-ggplot2)
18706 ("r-mass" ,r-mass)
18707 ("r-nloptr" ,r-nloptr)
18708 ("r-numderiv" ,r-numderiv)
18709 ("r-rcpp" ,r-rcpp)
18710 ("r-rcpparmadillo" ,r-rcpparmadillo)
18711 ("r-rsolnp" ,r-rsolnp)
18712 ("r-shiny" ,r-shiny)
18713 ("r-shinydashboard" ,r-shinydashboard)))
18714 (native-inputs
18715 `(("r-knitr" ,r-knitr)))
18716 (home-page "https://github.com/Wenchao-Ma/GDINA")
18717 (synopsis "Generalized DINA model framework")
18718 (description
18719 "This package provides a set of psychometric tools for cognitive
18720 diagnosis modeling based on the generalized deterministic inputs, noisy and
18721 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
18722 and its extensions, including the sequential G-DINA model by Ma and de la
18723 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
18724 polytomous G-DINA model by Chen and de la Torre
18725 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18726 distribution can be independent, saturated, higher-order, loglinear smoothed
18727 or structured. Q-matrix validation, item and model fit statistics, model
18728 comparison at test and item level and differential item functioning can also
18729 be conducted. A graphical user interface is also provided.")
18730 (license license:gpl3)))
18731
18732 (define-public r-actcd
18733 (package
18734 (name "r-actcd")
18735 (version "1.2-0")
18736 (source
18737 (origin
18738 (method url-fetch)
18739 (uri (cran-uri "ACTCD" version))
18740 (sha256
18741 (base32
18742 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18743 (properties `((upstream-name . "ACTCD")))
18744 (build-system r-build-system)
18745 (propagated-inputs
18746 `(("r-gdina" ,r-gdina)
18747 ("r-r-methodss3" ,r-r-methodss3)))
18748 (native-inputs
18749 `(("gfortran" ,gfortran)))
18750 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18751 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18752 (description
18753 "This is a package supporting cluster analysis for cognitive diagnosis
18754 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18755 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18756 sum-scores, cluster analysis techniques can be used to classify examinees into
18757 latent classes based on their attribute patterns. In addition to the
18758 algorithms used to classify data, three labeling approaches are proposed to
18759 label clusters so that examinees' attribute profiles can be obtained.")
18760 (license license:gpl2+)))
18761
18762 (define-public r-ineq
18763 (package
18764 (name "r-ineq")
18765 (version "0.2-13")
18766 (source
18767 (origin
18768 (method url-fetch)
18769 (uri (cran-uri "ineq" version))
18770 (sha256
18771 (base32
18772 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18773 (properties `((upstream-name . "ineq")))
18774 (build-system r-build-system)
18775 (home-page "https://cran.r-project.org/web/packages/ineq/")
18776 (synopsis "Measuring inequality, concentration, and poverty")
18777 (description
18778 "This package provides tools for measuring inequality, concentration, and
18779 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18780 ;; Either of these two versions.
18781 (license (list license:gpl2 license:gpl3))))
18782
18783 (define-public r-actfrag
18784 (package
18785 (name "r-actfrag")
18786 (version "0.1.1")
18787 (source
18788 (origin
18789 (method url-fetch)
18790 (uri (cran-uri "ActFrag" version))
18791 (sha256
18792 (base32
18793 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18794 (properties `((upstream-name . "ActFrag")))
18795 (build-system r-build-system)
18796 (propagated-inputs
18797 `(("r-accelerometry" ,r-accelerometry)
18798 ("r-dplyr" ,r-dplyr)
18799 ("r-ineq" ,r-ineq)
18800 ("r-survival" ,r-survival)
18801 ("r-tidyr" ,r-tidyr)))
18802 (home-page "https://github.com/junruidi/ActFrag")
18803 (synopsis "Activity fragmentation metrics extraction")
18804 (description
18805 "This package provides functions to extract commonly used fragmentation
18806 metrics to quantify time accumulation strategies based on minute level
18807 actigraphy-measured activity counts data.")
18808 (license license:gpl3)))
18809
18810 (define-public r-fda
18811 (package
18812 (name "r-fda")
18813 (version "5.1.5.1")
18814 (source
18815 (origin
18816 (method url-fetch)
18817 (uri (cran-uri "fda" version))
18818 (sha256
18819 (base32
18820 "0zi001cw5536x6rgr4l0skva7fk53663zf6ggnsa8znml090sihm"))))
18821 (properties `((upstream-name . "fda")))
18822 (build-system r-build-system)
18823 (propagated-inputs
18824 `(("r-matrix" ,r-matrix)))
18825 (home-page "https://www.functionaldata.org")
18826 (synopsis "Functional data analysis")
18827 (description
18828 "These functions were developed to support functional data analysis as
18829 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
18830 Analysis. The package includes data sets and script files working many
18831 examples.")
18832 (license license:gpl2+)))
18833
18834 (define-public r-actigraphy
18835 (package
18836 (name "r-actigraphy")
18837 (version "1.4.0")
18838 (source
18839 (origin
18840 (method url-fetch)
18841 (uri (cran-uri "Actigraphy" version))
18842 (sha256
18843 (base32
18844 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
18845 (properties `((upstream-name . "Actigraphy")))
18846 (build-system r-build-system)
18847 (propagated-inputs
18848 `(("r-fda" ,r-fda)))
18849 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
18850 (synopsis "Actigraphy data analysis")
18851 (description
18852 "This package provides tools for functional linear modeling and analysis
18853 of actigraphy data.")
18854 (license license:asl2.0)))
18855
18856 (define-public r-activedriver
18857 (package
18858 (name "r-activedriver")
18859 (version "1.0.0")
18860 (source
18861 (origin
18862 (method url-fetch)
18863 (uri (cran-uri "ActiveDriver" version))
18864 (sha256
18865 (base32
18866 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
18867 (properties `((upstream-name . "ActiveDriver")))
18868 (build-system r-build-system)
18869 (propagated-inputs
18870 `(("r-mass" ,r-mass)))
18871 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
18872 (synopsis "Tools for finding cancer driver proteins")
18873 (description
18874 "This package provides a mutation analysis tool that discovers cancer
18875 driver genes with frequent mutations in protein signalling sites such as
18876 post-translational modifications (phosphorylation, ubiquitination, etc). The
18877 Poisson generalized linear regression model identifies genes where cancer
18878 mutations in signalling sites are more frequent than expected from the
18879 sequence of the entire gene. Integration of mutations with signalling
18880 information helps find new driver genes and propose candidate mechanisms to
18881 known drivers.")
18882 (license license:gpl2+)))
18883
18884 (define-public r-activitycounts
18885 (package
18886 (name "r-activitycounts")
18887 (version "0.1.2")
18888 (source
18889 (origin
18890 (method url-fetch)
18891 (uri (cran-uri "activityCounts" version))
18892 (sha256
18893 (base32
18894 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
18895 (properties
18896 `((upstream-name . "activityCounts")))
18897 (build-system r-build-system)
18898 (propagated-inputs
18899 `(("r-lubridate" ,r-lubridate)
18900 ("r-magrittr" ,r-magrittr)
18901 ("r-seewave" ,r-seewave)
18902 ("r-signal" ,r-signal)
18903 ("r-tibble" ,r-tibble)))
18904 (home-page "https://github.com/walkabillylab/activityCounts")
18905 (synopsis "Generate ActiLife counts")
18906 (description
18907 "ActiLife generates activity counts from data collected by Actigraph
18908 accelerometers. Actigraph is one of the most common research-grade
18909 accelerometers. There is considerable research validating and developing
18910 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
18911 counts are proprietary and difficult to implement if researchers use different
18912 accelerometer brands. The code creates ActiLife counts from raw acceleration
18913 data for different accelerometer brands.")
18914 (license license:gpl3)))
18915
18916 (define-public r-activityindex
18917 (package
18918 (name "r-activityindex")
18919 (version "0.3.6")
18920 (source
18921 (origin
18922 (method url-fetch)
18923 (uri (cran-uri "ActivityIndex" version))
18924 (sha256
18925 (base32
18926 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
18927 (properties `((upstream-name . "ActivityIndex")))
18928 (build-system r-build-system)
18929 (propagated-inputs
18930 `(("r-data-table" ,r-data-table)
18931 ("r-matrixstats" ,r-matrixstats)
18932 ("r-r-utils" ,r-r-utils)))
18933 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
18934 (synopsis "Activity Index calculation using raw accelerometry data")
18935 (description
18936 "This is a package to read raw accelerometry from GT3X+ accelerometry
18937 data and plain table data to calculate the Activity Index from Bai et
18938 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
18939 (license license:gpl3)))
18940
18941 (define-public r-activpal
18942 (package
18943 (name "r-activpal")
18944 (version "0.1.3")
18945 (source
18946 (origin
18947 (method url-fetch)
18948 (uri (cran-uri "activPAL" version))
18949 (sha256
18950 (base32
18951 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
18952 (properties `((upstream-name . "activPAL")))
18953 (build-system r-build-system)
18954 (propagated-inputs
18955 `(("r-devtools" ,r-devtools)
18956 ("r-dplyr" ,r-dplyr)
18957 ("r-ggplot2" ,r-ggplot2)
18958 ("r-lubridate" ,r-lubridate)
18959 ("r-magrittr" ,r-magrittr)
18960 ("r-tidyr" ,r-tidyr)))
18961 (home-page "https://cran.r-project.org/web/packages/activPAL")
18962 (synopsis "Processing and chart generation from activPAL events files")
18963 (description
18964 "This package contains functions to generate pre-defined summary
18965 statistics from activPAL events files. The package also contains functions to
18966 produce informative graphics that visualize physical activity behaviour and
18967 trends. This includes generating graphs that align physical activity
18968 behaviour with additional time based observations described by other data
18969 sets, such as sleep diaries and continuous glucose monitoring data.")
18970 (license license:gpl3)))
18971
18972 (define-public r-activpalprocessing
18973 (package
18974 (name "r-activpalprocessing")
18975 (version "1.0.2")
18976 (source
18977 (origin
18978 (method url-fetch)
18979 (uri (cran-uri "activpalProcessing" version))
18980 (sha256
18981 (base32
18982 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
18983 (properties
18984 `((upstream-name . "activpalProcessing")))
18985 (build-system r-build-system)
18986 (propagated-inputs
18987 `(("r-chron" ,r-chron)))
18988 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
18989 (synopsis "Process activPAL events files")
18990 (description
18991 "This package performs estimation of physical activity and sedentary
18992 behavior variables from activPAL events files.")
18993 ;; Either version of the GPL.
18994 (license (list license:gpl2 license:gpl3))))
18995
18996 (define-public r-actogrammr
18997 (package
18998 (name "r-actogrammr")
18999 (version "0.2.3")
19000 (source
19001 (origin
19002 (method url-fetch)
19003 (uri (cran-uri "actogrammr" version))
19004 (sha256
19005 (base32
19006 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
19007 (properties `((upstream-name . "actogrammr")))
19008 (build-system r-build-system)
19009 (propagated-inputs
19010 `(("r-dplyr" ,r-dplyr)
19011 ("r-ggplot2" ,r-ggplot2)
19012 ("r-lubridate" ,r-lubridate)
19013 ("r-readr" ,r-readr)
19014 ("r-tidyr" ,r-tidyr)))
19015 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
19016 (synopsis "Read in activity data and plot actograms")
19017 (description
19018 "Read in activity measurements from standard file formats used by
19019 circadian rhythm researchers, currently only ClockLab format, and process and
19020 plot the data. The central type of plot is the actogram, as first described
19021 in \"Activity and distribution of certain wild mice in relation to biotic
19022 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
19023 (license license:gpl3)))
19024
19025 (define-public r-expint
19026 (package
19027 (name "r-expint")
19028 (version "0.1-6")
19029 (source
19030 (origin
19031 (method url-fetch)
19032 (uri (cran-uri "expint" version))
19033 (sha256
19034 (base32
19035 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
19036 (properties `((upstream-name . "expint")))
19037 (build-system r-build-system)
19038 (home-page "https://gitlab.com/vigou3/expint")
19039 (synopsis "Exponential integral and incomplete Gamma function")
19040 (description
19041 "This package provides the exponential integrals @code{E_1(x)},
19042 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
19043 function @code{G(a, x)} defined for negative values of its first argument.
19044 The package also gives easy access to the underlying C routines through an
19045 API; see the package vignette for details.")
19046 (license license:gpl2+)))
19047
19048 (define-public r-actuar
19049 (package
19050 (name "r-actuar")
19051 (version "3.0-0")
19052 (source
19053 (origin
19054 (method url-fetch)
19055 (uri (cran-uri "actuar" version))
19056 (sha256
19057 (base32
19058 "0dkp1sczldzy7kj70qvh1q59jhsq1brjybmxdz43jnx63y45llpz"))))
19059 (properties `((upstream-name . "actuar")))
19060 (build-system r-build-system)
19061 (propagated-inputs `(("r-expint" ,r-expint)))
19062 (home-page "https://gitlab.com/vigou3/actuar")
19063 (synopsis "Actuarial functions and heavy tailed distributions")
19064 (description
19065 "This package provides functions and data sets for actuarial science:
19066 modeling of loss distributions; risk theory and ruin theory; simulation of
19067 compound models, discrete mixtures and compound hierarchical models;
19068 credibility theory. It boasts support for many additional probability
19069 distributions to model insurance loss amounts and loss frequency: 19
19070 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
19071 distribution; zero-truncated and zero-modified extensions of the standard
19072 discrete distributions. It also supports phase-type distributions commonly
19073 used to compute ruin probabilities.")
19074 (license license:gpl2+)))
19075
19076 (define-public r-bmp
19077 (package
19078 (name "r-bmp")
19079 (version "0.3")
19080 (source
19081 (origin
19082 (method url-fetch)
19083 (uri (cran-uri "bmp" version))
19084 (sha256
19085 (base32
19086 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
19087 (properties `((upstream-name . "bmp")))
19088 (build-system r-build-system)
19089 (home-page "https://cran.r-project.org/web/packages/bmp/")
19090 (synopsis "Read Bitmap (BMP) images")
19091 (description
19092 "This package provides pure R tools to read BMP format images. It is
19093 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
19094 (license license:gpl2+)))
19095
19096 (define-public r-readbitmap
19097 (package
19098 (name "r-readbitmap")
19099 (version "0.1.5")
19100 (source
19101 (origin
19102 (method url-fetch)
19103 (uri (cran-uri "readbitmap" version))
19104 (sha256
19105 (base32
19106 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
19107 (properties `((upstream-name . "readbitmap")))
19108 (build-system r-build-system)
19109 (inputs
19110 `(("libjpeg" ,libjpeg-turbo)
19111 ("libpng" ,libpng)))
19112 (propagated-inputs
19113 `(("r-bmp" ,r-bmp)
19114 ("r-jpeg" ,r-jpeg)
19115 ("r-png" ,r-png)
19116 ("r-tiff" ,r-tiff)))
19117 (home-page "https://github.com/jefferis/readbitmap")
19118 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
19119 (description
19120 "This package provides tools to identify and read BMP, JPEG, PNG, and
19121 TIFF format bitmap images. Identification defaults to the use of the magic
19122 number embedded in the file rather than the file extension.")
19123 (license license:gpl2+)))
19124
19125 (define-public r-imager
19126 (package
19127 (name "r-imager")
19128 (version "0.42.3")
19129 (source
19130 (origin
19131 (method url-fetch)
19132 (uri (cran-uri "imager" version))
19133 (sha256
19134 (base32
19135 "1wxvbv803222gjrf1ys6a349xlnmmdw3kqgi93piq9gq7lahihvg"))))
19136 (properties `((upstream-name . "imager")))
19137 (build-system r-build-system)
19138 (inputs
19139 `(("fftw" ,fftw)
19140 ("libtiff" ,libtiff)
19141 ("libx11" ,libx11)
19142 ("zlib" ,zlib)))
19143 (propagated-inputs
19144 `(("r-downloader" ,r-downloader)
19145 ("r-igraph" ,r-igraph)
19146 ("r-jpeg" ,r-jpeg)
19147 ("r-magrittr" ,r-magrittr)
19148 ("r-png" ,r-png)
19149 ("r-purrr" ,r-purrr)
19150 ("r-rcpp" ,r-rcpp)
19151 ("r-readbitmap" ,r-readbitmap)
19152 ("r-stringr" ,r-stringr)))
19153 (native-inputs
19154 `(("pkg-config" ,pkg-config)
19155 ("r-knitr" ,r-knitr)))
19156 (home-page "https://dahtah.github.io/imager/")
19157 (synopsis "Image processing library")
19158 (description
19159 "This is a package for fast image processing for images in up to 4
19160 dimensions (two spatial dimensions, one time/depth dimension, one color
19161 dimension). It provides most traditional image processing tools (filtering,
19162 morphology, transformations, etc.) as well as various functions for easily
19163 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
19164 simple, modern C++ library for image processing.")
19165 (license license:lgpl3)))
19166
19167 (define-public r-acuityview
19168 (package
19169 (name "r-acuityview")
19170 (version "0.1")
19171 (source
19172 (origin
19173 (method url-fetch)
19174 (uri (cran-uri "AcuityView" version))
19175 (sha256
19176 (base32
19177 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
19178 (properties `((upstream-name . "AcuityView")))
19179 (build-system r-build-system)
19180 (propagated-inputs
19181 `(("r-fftwtools" ,r-fftwtools)
19182 ("r-imager" ,r-imager)
19183 ("r-plotrix" ,r-plotrix)))
19184 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
19185 (synopsis "Display scenes as seen by an animal with less acute vision")
19186 (description
19187 "This package provides a simple method for representing a visual scene as
19188 it may be seen by an animal with less acute vision.")
19189 (license license:gpl2+)))
19190
19191 (define-public r-caret
19192 (package
19193 (name "r-caret")
19194 (version "6.0-86")
19195 (source
19196 (origin
19197 (method url-fetch)
19198 (uri (cran-uri "caret" version))
19199 (sha256
19200 (base32
19201 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
19202 (build-system r-build-system)
19203 (propagated-inputs
19204 `(("r-foreach" ,r-foreach)
19205 ("r-ggplot2" ,r-ggplot2)
19206 ("r-lattice" ,r-lattice)
19207 ("r-modelmetrics" ,r-modelmetrics)
19208 ("r-nlme" ,r-nlme)
19209 ("r-plyr" ,r-plyr)
19210 ("r-proc" ,r-proc)
19211 ("r-recipes" ,r-recipes)
19212 ("r-reshape2" ,r-reshape2)
19213 ("r-withr" ,r-withr)))
19214 (native-inputs
19215 `(("r-knitr" ,r-knitr)))
19216 (home-page "https://github.com/topepo/caret")
19217 (synopsis "Classification and regression training")
19218 (description
19219 "This package provides miscellaneous functions for training and plotting
19220 classification and regression models.")
19221 (license license:gpl2+)))
19222
19223 (define-public r-adabag
19224 (package
19225 (name "r-adabag")
19226 (version "4.2")
19227 (source
19228 (origin
19229 (method url-fetch)
19230 (uri (cran-uri "adabag" version))
19231 (sha256
19232 (base32
19233 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
19234 (properties `((upstream-name . "adabag")))
19235 (build-system r-build-system)
19236 (propagated-inputs
19237 `(("r-caret" ,r-caret)
19238 ("r-doparallel" ,r-doparallel)
19239 ("r-foreach" ,r-foreach)
19240 ("r-rpart" ,r-rpart)))
19241 (home-page "https://cran.r-project.org/web/packages/adabag/")
19242 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
19243 (description
19244 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
19245 Breiman's Bagging algorithm using classification trees as individual
19246 classifiers. Once these classifiers have been trained, they can be used to
19247 predict on new data. Also, cross validation estimation of the error can be
19248 done.")
19249 (license license:gpl2+)))
19250
19251 (define-public r-adagio
19252 (package
19253 (name "r-adagio")
19254 (version "0.7.1")
19255 (source
19256 (origin
19257 (method url-fetch)
19258 (uri (cran-uri "adagio" version))
19259 (sha256
19260 (base32
19261 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
19262 (properties `((upstream-name . "adagio")))
19263 (build-system r-build-system)
19264 (native-inputs `(("gfortran" ,gfortran)))
19265 (home-page "https://cran.r-project.org/web/packages/adagio/")
19266 (synopsis "Discrete and global optimization routines")
19267 (description
19268 "This package provides methods and algorithms for discrete optimization,
19269 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
19270 Hooke-Jeeves minimization, and some (evolutionary) global optimization
19271 functions.")
19272 (license license:gpl3+)))
19273
19274 (define-public r-univoutl
19275 (package
19276 (name "r-univoutl")
19277 (version "0.2")
19278 (source
19279 (origin
19280 (method url-fetch)
19281 (uri (cran-uri "univOutl" version))
19282 (sha256
19283 (base32
19284 "0rlc3w7cx2hfxacpjs9kmjzv5p8v9wxnlpxi3rh276wiy5zdr91v"))))
19285 (properties `((upstream-name . "univOutl")))
19286 (build-system r-build-system)
19287 (propagated-inputs
19288 `(("r-hmisc" ,r-hmisc)
19289 ("r-robustbase" ,r-robustbase)))
19290 (home-page "https://github.com/marcellodo/univOutl")
19291 (synopsis "Detection of univariate outliers")
19292 (description
19293 "This package provides well-known outlier detection techniques in the
19294 univariate case. Methods to deal with skewed distribution are included too.
19295 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
19296 historical data is implemented as well. When available, survey weights can be
19297 used in outliers detection.")
19298 (license license:gpl2+)))
19299
19300 (define-public r-tolerance
19301 (package
19302 (name "r-tolerance")
19303 (version "2.0.0")
19304 (source
19305 (origin
19306 (method url-fetch)
19307 (uri (cran-uri "tolerance" version))
19308 (sha256
19309 (base32
19310 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
19311 (properties `((upstream-name . "tolerance")))
19312 (build-system r-build-system)
19313 (propagated-inputs
19314 `(("r-mass" ,r-mass)
19315 ("r-rgl" ,r-rgl)))
19316 (home-page "https://cran.r-project.org/web/packages/tolerance/")
19317 (synopsis "Statistical tolerance intervals and regions")
19318 (description
19319 "This package provides functions for estimating tolerance
19320 limits (intervals) for various univariate distributions (binomial, Cauchy,
19321 discrete Pareto, exponential, two-parameter exponential, extreme value,
19322 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
19323 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
19324 Bayesian normal tolerance limits, multivariate normal tolerance regions,
19325 nonparametric tolerance intervals, tolerance bands for regression
19326 settings (linear regression, nonlinear regression, nonparametric regression,
19327 and multivariate regression), and analysis of variance tolerance intervals.
19328 Visualizations are also available for most of these settings.")
19329 (license license:gpl2+)))
19330
19331 (define-public r-additivitytests
19332 (package
19333 (name "r-additivitytests")
19334 (version "1.1-4")
19335 (source
19336 (origin
19337 (method url-fetch)
19338 (uri (cran-uri "additivityTests" version))
19339 (sha256
19340 (base32
19341 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
19342 (properties
19343 `((upstream-name . "additivityTests")))
19344 (build-system r-build-system)
19345 (home-page "https://github.com/simecek/additivityTests")
19346 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
19347 (description
19348 "This package provides an implementation of the Tukey, Mandel,
19349 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
19350 (license license:gpl3)))
19351
19352 (define-public r-flexclust
19353 (package
19354 (name "r-flexclust")
19355 (version "1.4-0")
19356 (source
19357 (origin
19358 (method url-fetch)
19359 (uri (cran-uri "flexclust" version))
19360 (sha256
19361 (base32
19362 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
19363 (properties `((upstream-name . "flexclust")))
19364 (build-system r-build-system)
19365 (propagated-inputs
19366 `(("r-class" ,r-class)
19367 ("r-lattice" ,r-lattice)
19368 ("r-modeltools" ,r-modeltools)))
19369 (home-page "https://cran.r-project.org/web/packages/flexclust/")
19370 (synopsis "Flexible cluster algorithms")
19371 (description
19372 "The main function @code{kcca} implements a general framework for
19373 k-centroids cluster analysis supporting arbitrary distance measures and
19374 centroid computation. Further cluster methods include hard competitive
19375 learning, neural gas, and QT clustering. There are numerous visualization
19376 methods for cluster results (neighborhood graphs, convex cluster hulls,
19377 barcharts of centroids, ...), and bootstrap methods for the analysis of
19378 cluster stability.")
19379 (license license:gpl2)))
19380
19381 (define-public r-biclust
19382 (package
19383 (name "r-biclust")
19384 (version "2.0.2")
19385 (source
19386 (origin
19387 (method url-fetch)
19388 (uri (cran-uri "biclust" version))
19389 (sha256
19390 (base32
19391 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
19392 (properties `((upstream-name . "biclust")))
19393 (build-system r-build-system)
19394 (propagated-inputs
19395 `(("r-additivitytests" ,r-additivitytests)
19396 ("r-colorspace" ,r-colorspace)
19397 ("r-flexclust" ,r-flexclust)
19398 ("r-ggplot2" ,r-ggplot2)
19399 ("r-lattice" ,r-lattice)
19400 ("r-mass" ,r-mass)
19401 ("r-tidyr" ,r-tidyr)))
19402 (home-page "https://cran.r-project.org/web/packages/biclust/")
19403 (synopsis "BiCluster algorithms")
19404 (description
19405 "The main function @code{biclust()} provides several algorithms to find
19406 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
19407 In addition, the package provides methods for data
19408 preprocessing (normalization and discretization), visualization, and
19409 validation of bicluster solutions.")
19410 (license license:gpl3)))
19411
19412 (define-public r-icge
19413 (package
19414 (name "r-icge")
19415 (version "0.3")
19416 (source
19417 (origin
19418 (method url-fetch)
19419 (uri (cran-uri "ICGE" version))
19420 (sha256
19421 (base32
19422 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
19423 (properties `((upstream-name . "ICGE")))
19424 (build-system r-build-system)
19425 (propagated-inputs
19426 `(("r-cluster" ,r-cluster)
19427 ("r-mass" ,r-mass)))
19428 (home-page "https://cran.r-project.org/web/packages/ICGE/")
19429 (synopsis "Cluster estimation and identification of atypical units")
19430 (description
19431 "ICGE is a package that helps to estimate the number of real clusters in
19432 data as well as to identify atypical units. The underlying methods are based
19433 on distances rather than on unit x variables.")
19434 (license license:gpl2+)))
19435
19436 (define-public r-depth
19437 (package
19438 (name "r-depth")
19439 (version "2.1-1.1")
19440 (source
19441 (origin
19442 (method url-fetch)
19443 (uri (cran-uri "depth" version))
19444 (sha256
19445 (base32
19446 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
19447 (properties `((upstream-name . "depth")))
19448 (build-system r-build-system)
19449 (propagated-inputs
19450 `(("r-abind" ,r-abind)
19451 ("r-circular" ,r-circular)
19452 ("r-rgl" ,r-rgl)))
19453 (native-inputs
19454 `(("gfortran" ,gfortran)))
19455 (home-page "https://cran.r-project.org/web/packages/depth/")
19456 (synopsis "Nonparametric depth functions for multivariate analysis")
19457 (description
19458 "This package provides tools for depth functions methodology applied to
19459 multivariate analysis. Besides allowing calculation of depth values and
19460 depth-based location estimators, the package includes functions or drawing
19461 contour plots and perspective plots of depth functions. Euclidian and
19462 spherical depths are supported.")
19463 (license license:gpl2)))
19464
19465 (define-public r-archetypes
19466 (package
19467 (name "r-archetypes")
19468 (version "2.2-0.1")
19469 (source
19470 (origin
19471 (method url-fetch)
19472 (uri (cran-uri "archetypes" version))
19473 (sha256
19474 (base32
19475 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
19476 (properties `((upstream-name . "archetypes")))
19477 (build-system r-build-system)
19478 (propagated-inputs
19479 `(("r-modeltools" ,r-modeltools)
19480 ("r-nnls" ,r-nnls)))
19481 (home-page "https://cran.r-project.org/web/packages/archetypes")
19482 (synopsis "Archetypal analysis")
19483 (description
19484 "The main function @code{archetypes} implements a framework for
19485 archetypal analysis supporting arbitrary problem solving mechanisms for the
19486 different conceptual parts of the algorithm.")
19487 (license license:gpl2+)))
19488
19489 (define-public r-shapes
19490 (package
19491 (name "r-shapes")
19492 (version "1.2.5")
19493 (source
19494 (origin
19495 (method url-fetch)
19496 (uri (cran-uri "shapes" version))
19497 (sha256
19498 (base32
19499 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
19500 (properties `((upstream-name . "shapes")))
19501 (build-system r-build-system)
19502 (propagated-inputs
19503 `(("r-mass" ,r-mass)
19504 ("r-minpack-lm" ,r-minpack-lm)
19505 ("r-rgl" ,r-rgl)
19506 ("r-scatterplot3d" ,r-scatterplot3d)))
19507 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
19508 (synopsis "Statistical shape analysis")
19509 (description
19510 "This package provides routines for the statistical analysis of landmark
19511 shapes, including Procrustes analysis, graphical displays, principal
19512 components analysis, permutation and bootstrap tests, thin-plate spline
19513 transformation grids and comparing covariance matrices. See Dryden, I.L. and
19514 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
19515 Edition), John Wiley and Sons.")
19516 (license license:gpl2)))
19517
19518 (define-public r-anthropometry
19519 (package
19520 (name "r-anthropometry")
19521 (version "1.14")
19522 (source
19523 (origin
19524 (method url-fetch)
19525 (uri (cran-uri "Anthropometry" version))
19526 (sha256
19527 (base32
19528 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
19529 (properties `((upstream-name . "Anthropometry")))
19530 (build-system r-build-system)
19531 (propagated-inputs
19532 `(("r-archetypes" ,r-archetypes)
19533 ("r-biclust" ,r-biclust)
19534 ("r-cluster" ,r-cluster)
19535 ("r-depth" ,r-depth)
19536 ("r-fnn" ,r-fnn)
19537 ("r-icge" ,r-icge)
19538 ("r-nnls" ,r-nnls)
19539 ("r-rgl" ,r-rgl)
19540 ("r-shapes" ,r-shapes)))
19541 (native-inputs
19542 `(("r-knitr" ,r-knitr)))
19543 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
19544 (synopsis "Statistical methods for anthropometric data")
19545 (description
19546 "This package provides statistical methods especially developed to
19547 analyze anthropometric data. These methods are aimed at providing effective
19548 solutions to some commons problems related to Ergonomics and Anthropometry.
19549 They are based on clustering, the statistical concept of data depth,
19550 statistical shape analysis and archetypal analysis.")
19551 (license license:gpl2+)))
19552
19553 (define-public r-adamethods
19554 (package
19555 (name "r-adamethods")
19556 (version "1.2.1")
19557 (source
19558 (origin
19559 (method url-fetch)
19560 (uri (cran-uri "adamethods" version))
19561 (sha256
19562 (base32
19563 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
19564 (properties `((upstream-name . "adamethods")))
19565 (build-system r-build-system)
19566 (propagated-inputs
19567 `(("r-anthropometry" ,r-anthropometry)
19568 ("r-archetypes" ,r-archetypes)
19569 ("r-fnn" ,r-fnn)
19570 ("r-foreach" ,r-foreach)
19571 ("r-nnls" ,r-nnls)
19572 ("r-tolerance" ,r-tolerance)
19573 ("r-univoutl" ,r-univoutl)))
19574 (home-page "https://cran.r-project.org/web/packages/adamethods/")
19575 (synopsis "Archetypoid algorithms and anomaly detection")
19576 (description
19577 "This package is a collection of several algorithms to obtain
19578 archetypoids with small and large databases and with both classical
19579 multivariate data and functional data (univariate and multivariate). Some of
19580 these algorithms also allow to detect anomalies (outliers).")
19581 (license license:gpl2+)))
19582
19583 (define-public r-idpmisc
19584 (package
19585 (name "r-idpmisc")
19586 (version "1.1.20")
19587 (source
19588 (origin
19589 (method url-fetch)
19590 (uri (cran-uri "IDPmisc" version))
19591 (sha256
19592 (base32
19593 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
19594 (properties `((upstream-name . "IDPmisc")))
19595 (build-system r-build-system)
19596 (propagated-inputs
19597 `(("r-lattice" ,r-lattice)))
19598 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
19599 (synopsis "Functions for data analyses and visualization")
19600 (description
19601 "This package provides different high-level graphics functions for
19602 displaying large datasets, displaying circular data in a very flexible way,
19603 finding local maxima, brewing color ramps, drawing nice arrows, zooming
19604 2D-plots, creating figures with differently colored margin and plot region.
19605 In addition, the package contains auxiliary functions for data manipulation
19606 like omitting observations with irregular values or selecting data by logical
19607 vectors, which include NAs. Other functions are especially useful in
19608 spectroscopy and analyses of environmental data: robust baseline fitting,
19609 finding peaks in spectra, converting humidity measures.")
19610 (license license:gpl3+)))
19611
19612 (define-public r-qqman
19613 (package
19614 (name "r-qqman")
19615 (version "0.1.4")
19616 (source
19617 (origin
19618 (method url-fetch)
19619 (uri (cran-uri "qqman" version))
19620 (sha256
19621 (base32
19622 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
19623 (properties `((upstream-name . "qqman")))
19624 (build-system r-build-system)
19625 (propagated-inputs
19626 `(("r-calibrate" ,r-calibrate)))
19627 (home-page "https://cran.r-project.org/web/packages/qqman/")
19628 (synopsis "Q-Q and Manhattan plots for GWAS data")
19629 (description
19630 "This package allows you to create Q-Q and Manhattan plots for GWAS data
19631 from PLINK results.")
19632 (license license:gpl3)))
19633
19634 (define-public r-ggplot-multistats
19635 (package
19636 (name "r-ggplot-multistats")
19637 (version "1.0.0")
19638 (source
19639 (origin
19640 (method url-fetch)
19641 (uri (cran-uri "ggplot.multistats" version))
19642 (sha256
19643 (base32
19644 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
19645 (properties
19646 `((upstream-name . "ggplot.multistats")))
19647 (build-system r-build-system)
19648 (propagated-inputs
19649 `(("r-ggplot2" ,r-ggplot2)
19650 ("r-hexbin" ,r-hexbin)
19651 ("r-rlang" ,r-rlang)
19652 ("r-scales" ,r-scales)))
19653 (home-page "https://github.com/flying-sheep/ggplot.multistats")
19654 (synopsis "Multiple summary statistics for binned stats/geometries")
19655 (description
19656 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
19657 which functions similar to its singular form, but allows the use of multiple
19658 statistics per bin. Those statistics can be mapped to multiple bin
19659 aesthetics.")
19660 (license license:gpl3)))
19661
19662 (define-public r-knn-covertree
19663 (package
19664 (name "r-knn-covertree")
19665 (version "1.0")
19666 (source
19667 (origin
19668 (method url-fetch)
19669 (uri (cran-uri "knn.covertree" version))
19670 (sha256
19671 (base32
19672 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
19673 (properties `((upstream-name . "knn.covertree")))
19674 (build-system r-build-system)
19675 (propagated-inputs
19676 `(("r-matrix" ,r-matrix)
19677 ("r-rcpp" ,r-rcpp)
19678 ("r-rcppeigen" ,r-rcppeigen)))
19679 (home-page "https://github.com/flying-sheep/knn.covertree")
19680 (synopsis "Accurate kNN Implementation with multiple distance measures")
19681 (description
19682 "Similarly to the FNN package, this package allows calculation of the k
19683 nearest neighbors (kNN) of a data matrix. The implementation is based on
19684 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
19685 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
19686 (license license:agpl3+)))
19687
19688 (define-public r-poibin
19689 (package
19690 (name "r-poibin")
19691 (version "1.5")
19692 (source
19693 (origin
19694 (method url-fetch)
19695 (uri (cran-uri "poibin" version))
19696 (sha256
19697 (base32
19698 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
19699 (properties `((upstream-name . "poibin")))
19700 (build-system r-build-system)
19701 (home-page "https://cran.r-project.org/web/packages/poibin/")
19702 (synopsis "Poisson binomial distribution")
19703 (description
19704 "This package provides an implementation of both the exact and
19705 approximation methods for computing the @dfn{cumulative distribution
19706 function} (CDF) of the Poisson binomial distribution. It also provides the
19707 @dfn{probability mass function} (PMF), quantile function, and random number
19708 generation for the Poisson binomial distribution.")
19709 (license license:gpl2)))
19710
19711 (define-public r-diagram
19712 (package
19713 (name "r-diagram")
19714 (version "1.6.4")
19715 (source
19716 (origin
19717 (method url-fetch)
19718 (uri (cran-uri "diagram" version))
19719 (sha256
19720 (base32
19721 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
19722 (properties `((upstream-name . "diagram")))
19723 (build-system r-build-system)
19724 (propagated-inputs
19725 `(("r-shape" ,r-shape)))
19726 (home-page "https://cran.r-project.org/web/packages/diagram/")
19727 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
19728 (description
19729 "This package provides tools to visualize simple graphs (networks) based
19730 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19731 electrical networks, etc. It also includes supporting material for the book
19732 \"A practical guide to ecological modelling - using R as a simulation
19733 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19734 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19735 Francesca Mazzia (2012).")
19736 (license license:gpl2+)))
19737
19738 (define-public r-lim
19739 (package
19740 (name "r-lim")
19741 (version "1.4.6")
19742 (source
19743 (origin
19744 (method url-fetch)
19745 (uri (cran-uri "LIM" version))
19746 (sha256
19747 (base32
19748 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19749 (properties `((upstream-name . "LIM")))
19750 (build-system r-build-system)
19751 (propagated-inputs
19752 `(("r-diagram" ,r-diagram)
19753 ("r-limsolve" ,r-limsolve)))
19754 (home-page "https://cran.r-project.org/web/packages/LIM/")
19755 (synopsis "Linear inverse model examples and solution methods")
19756 (description
19757 "This package provides functions that read and solve linear inverse
19758 problems (food web problems, linear programming problems).")
19759 (license license:gpl2+)))
19760
19761 (define-public r-shinycssloaders
19762 (package
19763 (name "r-shinycssloaders")
19764 (version "1.0.0")
19765 (source
19766 (origin
19767 (method url-fetch)
19768 (uri (cran-uri "shinycssloaders" version))
19769 (sha256
19770 (base32
19771 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
19772 (properties
19773 `((upstream-name . "shinycssloaders")))
19774 (build-system r-build-system)
19775 (propagated-inputs
19776 `(("r-digest" ,r-digest)
19777 ("r-glue" ,r-glue)
19778 ("r-shiny" ,r-shiny)))
19779 (home-page "https://github.com/andrewsali/shinycssloaders")
19780 (synopsis "Add CSS loading animations to Shiny outputs")
19781 (description
19782 "This package provides tools to create a lightweight Shiny wrapper for
19783 the css-loaders created by Luke Hass
19784 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19785 automatically show a loader when the output is (re)calculating.")
19786 (license license:gpl3)))
19787
19788 (define-public r-rsvg
19789 (package
19790 (name "r-rsvg")
19791 (version "2.1")
19792 (source
19793 (origin
19794 (method url-fetch)
19795 (uri (cran-uri "rsvg" version))
19796 (sha256
19797 (base32
19798 "0bxnwa9sbzx6jlxrzh3ymjq81vkxil2qx7kk7wp13a0cql7dhxcn"))))
19799 (properties `((upstream-name . "rsvg")))
19800 (build-system r-build-system)
19801 (inputs
19802 `(("librsvg" ,librsvg)
19803 ("zlib" ,zlib)))
19804 (native-inputs
19805 `(("pkg-config" ,pkg-config)
19806 ("r-knitr" ,r-knitr)))
19807 (home-page "https://github.com/jeroen/rsvg#readme")
19808 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
19809 (description
19810 "This package allows you to render vector-based SVG images into
19811 high-quality custom-size bitmap arrays using the librsvg2 library. The
19812 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
19813 addition, the package can convert images directly to various formats such as
19814 PDF or PostScript.")
19815 (license license:expat)))
19816
19817 (define-public r-influencer
19818 (package
19819 (name "r-influencer")
19820 (version "0.1.0")
19821 (source
19822 (origin
19823 (method url-fetch)
19824 (uri (cran-uri "influenceR" version))
19825 (sha256
19826 (base32
19827 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
19828 (properties `((upstream-name . "influenceR")))
19829 (build-system r-build-system)
19830 (propagated-inputs
19831 `(("r-igraph" ,r-igraph)
19832 ("r-matrix" ,r-matrix)))
19833 (home-page "https://github.com/rcc-uchicago/influenceR")
19834 (synopsis "Tools to quantify structural importance of nodes in a network")
19835 (description
19836 "This package provides functionality to compute various node centrality
19837 measures on networks. Included are functions to compute betweenness
19838 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
19839 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
19840 algorithm to identify key players, and Valente's bridging metric. The
19841 betweenness, Key Players, and bridging implementations are parallelized with
19842 OpenMP.")
19843 (license license:gpl2)))
19844
19845 (define-public r-emplik
19846 (package
19847 (name "r-emplik")
19848 (version "1.1-1")
19849 (source
19850 (origin
19851 (method url-fetch)
19852 (uri (cran-uri "emplik" version))
19853 (sha256
19854 (base32
19855 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
19856 (properties `((upstream-name . "emplik")))
19857 (build-system r-build-system)
19858 (propagated-inputs
19859 `(("r-quantreg" ,r-quantreg)))
19860 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
19861 (synopsis "Empirical likelihood ratio for censored/truncated data")
19862 (description
19863 "This package provides empirical likelihood ratio tests for
19864 means/quantiles/hazards from possibly censored and/or truncated data. It also
19865 does regression.")
19866 (license license:gpl2+)))
19867
19868 (define-public r-imputeyn
19869 (package
19870 (name "r-imputeyn")
19871 (version "1.3")
19872 (source
19873 (origin
19874 (method url-fetch)
19875 (uri (cran-uri "imputeYn" version))
19876 (sha256
19877 (base32
19878 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
19879 (properties `((upstream-name . "imputeYn")))
19880 (build-system r-build-system)
19881 (propagated-inputs
19882 `(("r-boot" ,r-boot)
19883 ("r-emplik" ,r-emplik)
19884 ("r-mvtnorm" ,r-mvtnorm)
19885 ("r-quadprog" ,r-quadprog)
19886 ("r-survival" ,r-survival)))
19887 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
19888 (synopsis "Impute last largest censored observation under weighted least squares")
19889 (description
19890 "This package allows for the imputation of the last largest censored
19891 observantions. This method brings less bias and more efficient estimates for
19892 AFT models.")
19893 (license license:gpl2)))
19894
19895 (define-public r-adapenetclass
19896 (package
19897 (name "r-adapenetclass")
19898 (version "1.2")
19899 (source
19900 (origin
19901 (method url-fetch)
19902 (uri (cran-uri "AdapEnetClass" version))
19903 (sha256
19904 (base32
19905 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
19906 (properties `((upstream-name . "AdapEnetClass")))
19907 (build-system r-build-system)
19908 (propagated-inputs
19909 `(("r-glmnet" ,r-glmnet)
19910 ("r-imputeyn" ,r-imputeyn)
19911 ("r-lars" ,r-lars)
19912 ("r-quadprog" ,r-quadprog)))
19913 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
19914 (synopsis "Class of adaptive elastic net methods for censored data")
19915 (description
19916 "This package provides methods for variable selection for AFT models.")
19917 (license license:gpl2)))
19918
19919 (define-public r-flock
19920 (package
19921 (name "r-flock")
19922 (version "0.7")
19923 (source
19924 (origin
19925 (method url-fetch)
19926 (uri (cran-uri "flock" version))
19927 (sha256
19928 (base32
19929 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
19930 (properties `((upstream-name . "flock")))
19931 (build-system r-build-system)
19932 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19933 (home-page "https://cran.r-project.org/web/packages/flock/")
19934 (synopsis "Process synchronization using file locks")
19935 (description
19936 "This package implements synchronization between R processes (spawned by
19937 using the @code{parallel} package for instance) using file locks. It supports
19938 both exclusive and shared locking.")
19939 (license license:asl2.0)))
19940
19941 (define-public r-archivist
19942 (package
19943 (name "r-archivist")
19944 (version "2.3.4")
19945 (source
19946 (origin
19947 (method url-fetch)
19948 (uri (cran-uri "archivist" version))
19949 (sha256
19950 (base32
19951 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
19952 (properties `((upstream-name . "archivist")))
19953 (build-system r-build-system)
19954 (propagated-inputs
19955 `(("r-dbi" ,r-dbi)
19956 ("r-digest" ,r-digest)
19957 ("r-flock" ,r-flock)
19958 ("r-httr" ,r-httr)
19959 ("r-lubridate" ,r-lubridate)
19960 ("r-magrittr" ,r-magrittr)
19961 ("r-rcurl" ,r-rcurl)
19962 ("r-rsqlite" ,r-rsqlite)))
19963 (home-page "https://pbiecek.github.io/archivist/")
19964 (synopsis "Tools for storing, restoring and searching for R objects")
19965 (description
19966 "Data exploration and modelling is a process in which a lot of data
19967 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
19968 statistical models, different versions of data sets and different versions of
19969 results. Archivist helps to store and manage artifacts created in R. It
19970 allows you to store selected artifacts as binary files together with their
19971 metadata and relations. Archivist allows sharing artifacts with others. It
19972 can look for already created artifacts by using its class, name, date of the
19973 creation or other properties. It also makes it easy to restore such
19974 artifacts.")
19975 (license license:gpl2)))
19976
19977 (define-public r-versions
19978 (package
19979 (name "r-versions")
19980 (version "0.3")
19981 (source
19982 (origin
19983 (method url-fetch)
19984 (uri (cran-uri "versions" version))
19985 (sha256
19986 (base32
19987 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
19988 (properties `((upstream-name . "versions")))
19989 (build-system r-build-system)
19990 (home-page "https://cran.r-project.org/web/packages/versions/")
19991 (synopsis "Query and install specific versions of CRAN packages")
19992 (description
19993 "This package allows you to install specified versions of R packages
19994 hosted on CRAN and provides functions to list available versions and the
19995 versions of currently installed packages.")
19996 (license license:bsd-3)))
19997
19998 (define-public r-adapr
19999 (package
20000 (name "r-adapr")
20001 (version "2.0.0")
20002 (source
20003 (origin
20004 (method url-fetch)
20005 (uri (cran-uri "adapr" version))
20006 (sha256
20007 (base32
20008 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
20009 (properties `((upstream-name . "adapr")))
20010 (build-system r-build-system)
20011 (propagated-inputs
20012 `(("r-archivist" ,r-archivist)
20013 ("r-devtools" ,r-devtools)
20014 ("r-digest" ,r-digest)
20015 ("r-doparallel" ,r-doparallel)
20016 ("r-gdata" ,r-gdata)
20017 ("r-ggplot2" ,r-ggplot2)
20018 ("r-git2r" ,r-git2r)
20019 ("r-igraph" ,r-igraph)
20020 ("r-knitr" ,r-knitr)
20021 ("r-plotly" ,r-plotly)
20022 ("r-plyr" ,r-plyr)
20023 ("r-rmarkdown" ,r-rmarkdown)
20024 ("r-shiny" ,r-shiny)
20025 ("r-shinydashboard" ,r-shinydashboard)
20026 ("r-versions" ,r-versions)))
20027 (home-page "https://cran.r-project.org/web/packages/adapr/")
20028 (synopsis "Implementation of an accountable data analysis process")
20029 (description
20030 "This package tracks reading and writing within R scripts that are
20031 organized into a directed acyclic graph. It contains an interactive Shiny
20032 application @code{adaprApp()}. It uses Git and file hashes to track version
20033 histories of inputs and outputs.")
20034 (license license:lgpl2.0)))
20035
20036 (define-public r-adapsamp
20037 (package
20038 (name "r-adapsamp")
20039 (version "1.1.1")
20040 (source
20041 (origin
20042 (method url-fetch)
20043 (uri (cran-uri "AdapSamp" version))
20044 (sha256
20045 (base32
20046 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
20047 (properties `((upstream-name . "AdapSamp")))
20048 (build-system r-build-system)
20049 (propagated-inputs `(("r-pracma" ,r-pracma)))
20050 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
20051 (synopsis "Adaptive sampling algorithms")
20052 (description
20053 "For distributions whose probability density functions are log-concave,
20054 the adaptive rejection sampling algorithm can be used to build envelope
20055 functions for sampling. For others, the modified adaptive rejection sampling
20056 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
20057 adaptive slice sampling algorithm can be used. This R package mainly includes
20058 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
20059 @code{rASS()}. These functions can realize sampling based on the algorithms
20060 above.")
20061 (license license:gpl2)))
20062
20063 (define-public r-adaptalint
20064 (package
20065 (name "r-adaptalint")
20066 (version "0.2.4")
20067 (source
20068 (origin
20069 (method url-fetch)
20070 (uri (cran-uri "adaptalint" version))
20071 (sha256
20072 (base32
20073 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
20074 (properties `((upstream-name . "adaptalint")))
20075 (build-system r-build-system)
20076 (propagated-inputs
20077 `(("r-dplyr" ,r-dplyr)
20078 ("r-lintr" ,r-lintr)
20079 ("r-purrr" ,r-purrr)))
20080 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
20081 (synopsis "Check R code style")
20082 (description
20083 "This package provides tools to infer the code style (which style rules
20084 are followed and which ones are not) from one package and use it to check
20085 another. This makes it easier to find and correct the most important problems
20086 first.")
20087 (license license:gpl3)))
20088
20089 (define-public r-fracdiff
20090 (package
20091 (name "r-fracdiff")
20092 (version "1.5-1")
20093 (source
20094 (origin
20095 (method url-fetch)
20096 (uri (cran-uri "fracdiff" version))
20097 (sha256
20098 (base32
20099 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
20100 (properties `((upstream-name . "fracdiff")))
20101 (build-system r-build-system)
20102 (home-page "https://github.com/mmaechler/fracdiff")
20103 (synopsis
20104 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
20105 (description
20106 "This package provides tools for the maximum likelihood estimation of the
20107 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
20108 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
20109 (license license:gpl2+)))
20110
20111 (define-public r-forecast
20112 (package
20113 (name "r-forecast")
20114 (version "8.12")
20115 (source
20116 (origin
20117 (method url-fetch)
20118 (uri (cran-uri "forecast" version))
20119 (sha256
20120 (base32
20121 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
20122 (properties `((upstream-name . "forecast")))
20123 (build-system r-build-system)
20124 (propagated-inputs
20125 `(("r-colorspace" ,r-colorspace)
20126 ("r-fracdiff" ,r-fracdiff)
20127 ("r-ggplot2" ,r-ggplot2)
20128 ("r-lmtest" ,r-lmtest)
20129 ("r-magrittr" ,r-magrittr)
20130 ("r-nnet" ,r-nnet)
20131 ("r-rcpp" ,r-rcpp)
20132 ("r-rcpparmadillo" ,r-rcpparmadillo)
20133 ("r-timedate" ,r-timedate)
20134 ("r-tseries" ,r-tseries)
20135 ("r-urca" ,r-urca)
20136 ("r-zoo" ,r-zoo)))
20137 (native-inputs
20138 `(("r-knitr" ,r-knitr))) ; needed for vignettes
20139 (home-page "https://pkg.robjhyndman.com/forecast/")
20140 (synopsis "Forecasting functions for time series and linear models")
20141 (description
20142 "This package provides methods and tools for displaying and analysing
20143 univariate time series forecasts including exponential smoothing via state
20144 space models and automatic ARIMA modelling.")
20145 (license license:gpl3)))
20146
20147 (define-public r-xmisc
20148 (package
20149 (name "r-xmisc")
20150 (version "0.2.1")
20151 (source
20152 (origin
20153 (method url-fetch)
20154 (uri (cran-uri "Xmisc" version))
20155 (sha256
20156 (base32
20157 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
20158 (properties `((upstream-name . "Xmisc")))
20159 (build-system r-build-system)
20160 (home-page "https://cran.r-project.org/package=Xmisc")
20161 (synopsis
20162 "Xiaobei's miscellaneous classes and functions")
20163 (description
20164 "This package provides Xiaobei's miscellaneous classes and functions,
20165 which are useful when developing R packages for @dfn{object oriented
20166 programming} (OOP) using R Reference Class.")
20167 (license license:gpl2+)))
20168
20169 (define-public r-proxyc
20170 (package
20171 (name "r-proxyc")
20172 (version "0.1.5")
20173 (source
20174 (origin
20175 (method url-fetch)
20176 (uri (cran-uri "proxyC" version))
20177 (sha256
20178 (base32
20179 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
20180 (properties `((upstream-name . "proxyC")))
20181 (build-system r-build-system)
20182 (propagated-inputs
20183 `(("r-matrix" ,r-matrix)
20184 ("r-rcpp" ,r-rcpp)
20185 ("r-rcpparmadillo" ,r-rcpparmadillo)
20186 ("r-rcppparallel" ,r-rcppparallel)))
20187 (home-page "https://cran.r-project.org/package=proxyC")
20188 (synopsis "Compute proximity in large sparse matrices")
20189 (description
20190 "This package provides efficient tools to compute the proximity between
20191 rows or columns of large matrices. Functions are optimised for large sparse
20192 matrices using the Armadillo and Intel TBB libraries. Among several built-in
20193 similarity/distance measures, computation of correlation, cosine similarity
20194 and Euclidean distance is particularly fast.")
20195 (license license:gpl3)))
20196
20197 (define-public r-isocodes
20198 (package
20199 (name "r-isocodes")
20200 (version "2020.03.16")
20201 (source
20202 (origin
20203 (method url-fetch)
20204 (uri (cran-uri "ISOcodes" version))
20205 (sha256
20206 (base32
20207 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
20208 (properties `((upstream-name . "ISOcodes")))
20209 (build-system r-build-system)
20210 (home-page "https://cran.r-project.org/package=ISOcodes")
20211 (synopsis "Selected ISO codes")
20212 (description
20213 "This package provides ISO language, territory, currency, script and
20214 character codes. It provides ISO 639 language codes, ISO 3166 territory
20215 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
20216 character codes as well as the UN M.49 area codes.")
20217 (license license:gpl2)))
20218
20219 (define-public r-stopwords
20220 (package
20221 (name "r-stopwords")
20222 (version "2.0")
20223 (source
20224 (origin
20225 (method url-fetch)
20226 (uri (cran-uri "stopwords" version))
20227 (sha256
20228 (base32
20229 "155g00ansyqfpp1mzd2q6mn0k214xinf78nww2368h24kz761jjw"))))
20230 (properties `((upstream-name . "stopwords")))
20231 (build-system r-build-system)
20232 (propagated-inputs
20233 `(("r-desc" ,r-desc)
20234 ("r-isocodes" ,r-isocodes)
20235 ("r-usethis" ,r-usethis)))
20236 (home-page "https://github.com/quanteda/stopwords")
20237 (synopsis "Multilingual stopword lists")
20238 (description
20239 "This package provides multiple sources of stopwords, for use in text
20240 analysis and natural language processing.")
20241 (license license:expat)))
20242
20243 (define-public r-spacyr
20244 (package
20245 (name "r-spacyr")
20246 (version "1.2.1")
20247 (source
20248 (origin
20249 (method url-fetch)
20250 (uri (cran-uri "spacyr" version))
20251 (sha256
20252 (base32
20253 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
20254 (properties `((upstream-name . "spacyr")))
20255 (build-system r-build-system)
20256 (propagated-inputs
20257 `(("r-data-table" ,r-data-table)
20258 ("r-reticulate" ,r-reticulate)))
20259 (home-page "https://spacyr.quanteda.io")
20260 (synopsis "R wrapper for the spaCy NLP library")
20261 (description
20262 "This package provides an R wrapper to the Python @dfn{natural language
20263 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
20264 (license license:gpl3)))
20265
20266 (define-public r-snowballc
20267 (package
20268 (name "r-snowballc")
20269 (version "0.7.0")
20270 (source
20271 (origin
20272 (method url-fetch)
20273 (uri (cran-uri "SnowballC" version))
20274 (sha256
20275 (base32
20276 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
20277 (properties `((upstream-name . "SnowballC")))
20278 (build-system r-build-system)
20279 (home-page "https://r-forge.r-project.org/projects/r-temis/")
20280 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
20281 (description
20282 "This package provides an R interface to the C @code{libstemmer} library
20283 that implements Porter's word stemming algorithm for collapsing words to a
20284 common root to aid comparison of vocabulary. Currently supported languages
20285 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
20286 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
20287 (license license:bsd-3)))
20288
20289 (define-public r-quanteda
20290 (package
20291 (name "r-quanteda")
20292 (version "2.1.1")
20293 (source
20294 (origin
20295 (method url-fetch)
20296 (uri (cran-uri "quanteda" version))
20297 (sha256
20298 (base32
20299 "1wlrd7g2b459pnkqhihxhn74f37py1c9pxrdzp5xzp4mnbdxcsj8"))))
20300 (properties `((upstream-name . "quanteda")))
20301 (build-system r-build-system)
20302 (propagated-inputs
20303 `(("r-data-table" ,r-data-table)
20304 ("r-digest" ,r-digest)
20305 ("r-extrafont" ,r-extrafont)
20306 ("r-fastmatch" ,r-fastmatch)
20307 ("r-ggplot2" ,r-ggplot2)
20308 ("r-ggrepel" ,r-ggrepel)
20309 ("r-jsonlite" ,r-jsonlite)
20310 ("r-magrittr" ,r-magrittr)
20311 ("r-matrix" ,r-matrix)
20312 ("r-network" ,r-network)
20313 ("r-proxyc" ,r-proxyc)
20314 ("r-rcpp" ,r-rcpp)
20315 ("r-rcpparmadillo" ,r-rcpparmadillo)
20316 ("r-rcppparallel" ,r-rcppparallel)
20317 ("r-sna" ,r-sna)
20318 ("r-snowballc" ,r-snowballc)
20319 ("r-stopwords" ,r-stopwords)
20320 ("r-stringi" ,r-stringi)
20321 ("r-xml2" ,r-xml2)
20322 ("r-yaml" ,r-yaml)))
20323 (native-inputs
20324 `(("r-knitr" ,r-knitr)))
20325 (home-page "https://quanteda.io")
20326 (synopsis "Quantitative analysis of textual data")
20327 (description
20328 "This package provides a fast, flexible, and comprehensive framework for
20329 quantitative text analysis in R. It provides functionality for corpus
20330 management, creating and manipulating tokens and ngrams, exploring keywords in
20331 context, forming and manipulating sparse matrices of documents by features and
20332 feature co-occurrences, analyzing keywords, computing feature similarities and
20333 distances, applying content dictionaries, applying supervised and unsupervised
20334 machine learning, visually representing text and text analyses, and more.")
20335 (license license:gpl3)))
20336
20337 (define-public r-topicmodels
20338 (package
20339 (name "r-topicmodels")
20340 (version "0.2-11")
20341 (source
20342 (origin
20343 (method url-fetch)
20344 (uri (cran-uri "topicmodels" version))
20345 (sha256
20346 (base32
20347 "0jmp6wva99y0w40cfw7b0faylndhjam097x36ilc4vmyczcv89lw"))))
20348 (properties `((upstream-name . "topicmodels")))
20349 (build-system r-build-system)
20350 (native-inputs
20351 `(("gsl" ,gsl)))
20352 (propagated-inputs
20353 `(("r-modeltools" ,r-modeltools)
20354 ("r-slam" ,r-slam)
20355 ("r-tm" ,r-tm)))
20356 (home-page "https://cran.r-project.org/package=topicmodels")
20357 (synopsis "Topic models")
20358 (description
20359 "This package provides an interface to the C code for @dfn{Latent
20360 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
20361 David M. Blei and co-authors and the C++ code for fitting LDA models using
20362 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
20363 (license license:gpl2)))
20364
20365 (define-public r-stm
20366 (package
20367 (name "r-stm")
20368 (version "1.3.5")
20369 (source
20370 (origin
20371 (method url-fetch)
20372 (uri (cran-uri "stm" version))
20373 (sha256
20374 (base32
20375 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
20376 (properties `((upstream-name . "stm")))
20377 (build-system r-build-system)
20378 (propagated-inputs
20379 `(("r-data-table" ,r-data-table)
20380 ("r-glmnet" ,r-glmnet)
20381 ("r-lda" ,r-lda)
20382 ("r-matrix" ,r-matrix)
20383 ("r-matrixstats" ,r-matrixstats)
20384 ("r-quadprog" ,r-quadprog)
20385 ("r-quanteda" ,r-quanteda)
20386 ("r-rcpp" ,r-rcpp)
20387 ("r-rcpparmadillo" ,r-rcpparmadillo)
20388 ("r-slam" ,r-slam)
20389 ("r-stringr" ,r-stringr)))
20390 (home-page "http://www.structuraltopicmodel.com/")
20391 (synopsis "Estimation of the Structural Topic Model")
20392 (description
20393 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
20394 topic models with document-level covariates. The package also includes tools
20395 for model selection, visualization, and estimation of topic-covariate
20396 regressions.")
20397 (license license:expat)))
20398
20399 (define-public r-polycor
20400 (package
20401 (name "r-polycor")
20402 (version "0.7-10")
20403 (source
20404 (origin
20405 (method url-fetch)
20406 (uri (cran-uri "polycor" version))
20407 (sha256
20408 (base32
20409 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
20410 (properties `((upstream-name . "polycor")))
20411 (build-system r-build-system)
20412 (propagated-inputs
20413 `(("r-matrix" ,r-matrix)
20414 ("r-mvtnorm" ,r-mvtnorm)))
20415 (home-page "https://r-forge.r-project.org/projects/polycor/")
20416 (synopsis "Polychoric and polyserial correlations")
20417 (description
20418 "This package provides tools to compute polychoric and polyserial
20419 correlations by quick \"two-step\" methods or ML, optionally with standard
20420 errors; tetrachoric and biserial correlations are special cases.")
20421 (license license:gpl2+)))
20422
20423 (define-public r-msm
20424 (package
20425 (name "r-msm")
20426 (version "1.6.8")
20427 (source
20428 (origin
20429 (method url-fetch)
20430 (uri (cran-uri "msm" version))
20431 (sha256
20432 (base32
20433 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
20434 (properties `((upstream-name . "msm")))
20435 (build-system r-build-system)
20436 (propagated-inputs
20437 `(("r-expm" ,r-expm)
20438 ("r-mvtnorm" ,r-mvtnorm)
20439 ("r-survival" ,r-survival)))
20440 (home-page "https://github.com/chjackson/msm")
20441 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
20442 (description
20443 "This package provides functions for fitting continuous-time Markov and
20444 hidden Markov multi-state models to longitudinal data. It was designed for
20445 processes observed at arbitrary times in continuous time (panel data) but some
20446 other observation schemes are supported. Both Markov transition rates and the
20447 hidden Markov output process can be modelled in terms of covariates, which may
20448 be constant or piecewise-constant in time.")
20449 (license license:gpl2+)))
20450
20451 (define-public r-ltm
20452 (package
20453 (name "r-ltm")
20454 (version "1.1-1")
20455 (source
20456 (origin
20457 (method url-fetch)
20458 (uri (cran-uri "ltm" version))
20459 (sha256
20460 (base32
20461 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
20462 (properties `((upstream-name . "ltm")))
20463 (build-system r-build-system)
20464 (propagated-inputs
20465 `(("r-mass" ,r-mass)
20466 ("r-msm" ,r-msm)
20467 ("r-polycor" ,r-polycor)))
20468 (home-page "https://github.com/drizopoulos/ltm")
20469 (synopsis "Latent trait models under IRT")
20470 (description
20471 "This is a package supporting the analysis of multivariate dichotomous
20472 and polytomous data using latent trait models under the Item Response Theory
20473 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
20474 Three-Parameter, the Graded Response, and the Generalized Partial Credit
20475 Models.")
20476 (license license:gpl2+)))
20477
20478 (define-public r-mi
20479 (package
20480 (name "r-mi")
20481 (version "1.0")
20482 (source
20483 (origin
20484 (method url-fetch)
20485 (uri (cran-uri "mi" version))
20486 (sha256
20487 (base32
20488 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
20489 (properties `((upstream-name . "mi")))
20490 (build-system r-build-system)
20491 (propagated-inputs
20492 `(("r-arm" ,r-arm)
20493 ("r-matrix" ,r-matrix)))
20494 (home-page "http://www.stat.columbia.edu/~gelman/")
20495 (synopsis "Missing data imputation and model checking")
20496 (description
20497 "This package provides functions for data manipulation, imputing missing
20498 values in an approximate Bayesian framework, diagnostics of the models used to
20499 generate the imputations, confidence-building mechanisms to validate some of
20500 the assumptions of the imputation algorithm, and functions to analyze multiply
20501 imputed data sets with the appropriate degree of sampling uncertainty.")
20502 (license license:gpl2+)))
20503
20504 (define-public r-matrixcalc
20505 (package
20506 (name "r-matrixcalc")
20507 (version "1.0-3")
20508 (source
20509 (origin
20510 (method url-fetch)
20511 (uri (cran-uri "matrixcalc" version))
20512 (sha256
20513 (base32
20514 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
20515 (properties `((upstream-name . "matrixcalc")))
20516 (build-system r-build-system)
20517 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
20518 (synopsis "Collection of functions for matrix calculations")
20519 (description
20520 "This package provides a collection of functions to support matrix
20521 calculations for probability, econometric and numerical analysis. There are
20522 additional functions that are comparable to APL functions which are useful for
20523 actuarial models such as pension mathematics.")
20524 (license license:gpl2+)))
20525
20526 (define-public r-sem
20527 (package
20528 (name "r-sem")
20529 (version "3.1-11")
20530 (source
20531 (origin
20532 (method url-fetch)
20533 (uri (cran-uri "sem" version))
20534 (sha256
20535 (base32
20536 "03j3ig6fy34pi6nwfq9w8f5m555lilw5skr1vn6ay4yvjmvavc9k"))))
20537 (properties `((upstream-name . "sem")))
20538 (build-system r-build-system)
20539 (propagated-inputs
20540 `(("r-boot" ,r-boot)
20541 ("r-mass" ,r-mass)
20542 ("r-matrixcalc" ,r-matrixcalc)
20543 ("r-mi" ,r-mi)))
20544 (home-page "https://cran.r-project.org/package=sem")
20545 (synopsis "Structural equation models")
20546 (description
20547 "This package provides functions for fitting general linear structural
20548 equation models (with observed and latent variables) using the RAM approach,
20549 and for fitting structural equations in observed-variable models by two-stage
20550 least squares.")
20551 (license license:gpl2+)))
20552
20553 (define-public r-semtools
20554 (package
20555 (name "r-semtools")
20556 (version "0.5-3")
20557 (source
20558 (origin
20559 (method url-fetch)
20560 (uri (cran-uri "semTools" version))
20561 (sha256
20562 (base32
20563 "0k3w10fnq0l89inhxvnypyrfhlrm921mfn0kwyyfpndvbqizky1d"))))
20564 (properties `((upstream-name . "semTools")))
20565 (build-system r-build-system)
20566 (propagated-inputs
20567 `(("r-lavaan" ,r-lavaan)))
20568 (home-page "https://github.com/simsem/semTools/wiki")
20569 (synopsis "Useful tools for structural equation modeling")
20570 (description
20571 "This package provides useful tools for structural equation modeling.")
20572 (license license:gpl2+)))
20573
20574 (define-public r-regsem
20575 (package
20576 (name "r-regsem")
20577 (version "1.5.2")
20578 (source
20579 (origin
20580 (method url-fetch)
20581 (uri (cran-uri "regsem" version))
20582 (sha256
20583 (base32
20584 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
20585 (properties `((upstream-name . "regsem")))
20586 (build-system r-build-system)
20587 (propagated-inputs
20588 `(("r-lavaan" ,r-lavaan)
20589 ("r-rcpp" ,r-rcpp)
20590 ("r-rcpparmadillo" ,r-rcpparmadillo)
20591 ("r-rsolnp" ,r-rsolnp)))
20592 (home-page "https://cran.r-project.org/package=regsem")
20593 (synopsis "Regularized structural equation modeling")
20594 (description
20595 "This package uses both ridge and lasso penalties (and extensions) to
20596 penalize specific parameters in structural equation models. The package
20597 offers additional cost functions, cross validation, and other extensions
20598 beyond traditional structural equation models. It also contains a function to
20599 perform @dfn{exploratory mediation} (XMed).")
20600 (license license:gpl2+)))
20601
20602 (define-public r-stanheaders
20603 (package
20604 (name "r-stanheaders")
20605 (version "2.21.0-6")
20606 (source
20607 (origin
20608 (method url-fetch)
20609 (uri (cran-uri "StanHeaders" version))
20610 (sha256
20611 (base32
20612 "1wwcrss4y6xbi81cg6ldhm57wz5paflzzp3yxh8b6shf9l2jla50"))))
20613 (properties `((upstream-name . "StanHeaders")))
20614 (build-system r-build-system)
20615 (inputs `(("pandoc" ,pandoc)))
20616 (propagated-inputs
20617 `(("r-rcppeigen" ,r-rcppeigen)
20618 ("r-rcppparallel" ,r-rcppparallel)))
20619 (native-inputs
20620 `(("gfortran" ,gfortran)
20621 ("r-knitr" ,r-knitr))) ; for vignettes
20622 (home-page "https://mc-stan.org/")
20623 (synopsis "C++ header files for Stan")
20624 (description
20625 "The C++ header files of the Stan project are provided by this package.
20626 There is a shared object containing part of the @code{CVODES} library, but it
20627 is not accessible from R. @code{r-stanheaders} is only useful for developers
20628 who want to utilize the @code{LinkingTo} directive of their package's
20629 DESCRIPTION file to build on the Stan library without incurring unnecessary
20630 dependencies.
20631
20632 The Stan project develops a probabilistic programming language that implements
20633 full or approximate Bayesian statistical inference via Markov Chain Monte
20634 Carlo or variational methods and implements (optionally penalized) maximum
20635 likelihood estimation via optimization. The Stan library includes an advanced
20636 automatic differentiation scheme, templated statistical and linear algebra
20637 functions that can handle the automatically differentiable scalar types (and
20638 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
20639 package provides user-facing R functions to parse, compile, test, estimate,
20640 and analyze Stan models.")
20641 (license license:bsd-3)))
20642
20643 (define-public r-rpf
20644 (package
20645 (name "r-rpf")
20646 (version "1.0.4")
20647 (source
20648 (origin
20649 (method url-fetch)
20650 (uri (cran-uri "rpf" version))
20651 (sha256
20652 (base32
20653 "17crcgsbcsh0c00n7bgdqfnd7n1vzz7drfxjs7d18253yl5x44pl"))))
20654 (properties `((upstream-name . "rpf")))
20655 (build-system r-build-system)
20656 (propagated-inputs
20657 `(("r-lifecycle" ,r-lifecycle)
20658 ("r-mvtnorm" ,r-mvtnorm)
20659 ("r-rcpp" ,r-rcpp)
20660 ("r-rcppeigen" ,r-rcppeigen)))
20661 (native-inputs
20662 `(("r-knitr" ,r-knitr)))
20663 (home-page "https://github.com/jpritikin/rpf")
20664 (synopsis "Response probability functions")
20665 (description
20666 "The purpose of this package is to factor out logic and math common to
20667 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
20668 core support code suitable for more specialized IRT packages to build upon.
20669 Complete access to optimized C functions is made available with
20670 @code{R_RegisterCCallable()}.")
20671 (license license:gpl3+)))
20672
20673 (define-public r-openmx
20674 (package
20675 (name "r-openmx")
20676 (version "2.17.4")
20677 (source
20678 (origin
20679 (method url-fetch)
20680 (uri (cran-uri "OpenMx" version))
20681 (sha256
20682 (base32
20683 "07y4w7xdb63p5kkrj6sdx1kabbsgbbj7nw9hc690jy84r15aryal"))))
20684 (properties `((upstream-name . "OpenMx")))
20685 (build-system r-build-system)
20686 (propagated-inputs
20687 `(("r-bh" ,r-bh)
20688 ("r-digest" ,r-digest)
20689 ("r-mass" ,r-mass)
20690 ("r-matrix" ,r-matrix)
20691 ("r-rcpp" ,r-rcpp)
20692 ("r-rcppeigen" ,r-rcppeigen)
20693 ("r-rpf" ,r-rpf)
20694 ("r-stanheaders" ,r-stanheaders)))
20695 (native-inputs `(("gfortran" ,gfortran)))
20696 (home-page "http://openmx.ssri.psu.edu")
20697 (synopsis "Extended structural equation modelling")
20698 (description
20699 "This package allows for the estimation of a wide variety of advanced
20700 multivariate statistical models. It consists of a library of functions and
20701 optimizers that allow you to quickly and flexibly define an SEM model and
20702 estimate parameters given observed data.")
20703 (license license:asl2.0)))
20704
20705 (define-public r-kutils
20706 (package
20707 (name "r-kutils")
20708 (version "1.70")
20709 (source
20710 (origin
20711 (method url-fetch)
20712 (uri (cran-uri "kutils" version))
20713 (sha256
20714 (base32
20715 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
20716 (properties `((upstream-name . "kutils")))
20717 (build-system r-build-system)
20718 (propagated-inputs
20719 `(("r-foreign" ,r-foreign)
20720 ("r-openxlsx" ,r-openxlsx)
20721 ("r-plyr" ,r-plyr)
20722 ("r-runit" ,r-runit)
20723 ("r-xtable" ,r-xtable)))
20724 (home-page "https://cran.r-project.org/package=kutils")
20725 (synopsis "Project management tools")
20726 (description
20727 "This package provides tools for data importation, recoding, and
20728 inspection. There are functions to create new project folders, R code
20729 templates, create uniquely named output directories, and to quickly obtain a
20730 visual summary for each variable in a data frame. The main feature here is
20731 the systematic implementation of the \"variable key\" framework for data
20732 importation and recoding.")
20733 (license license:gpl2)))
20734
20735 (define-public r-rockchalk
20736 (package
20737 (name "r-rockchalk")
20738 (version "1.8.144")
20739 (source
20740 (origin
20741 (method url-fetch)
20742 (uri (cran-uri "rockchalk" version))
20743 (sha256
20744 (base32
20745 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20746 (properties `((upstream-name . "rockchalk")))
20747 (build-system r-build-system)
20748 (propagated-inputs
20749 `(("r-cardata" ,r-cardata)
20750 ("r-kutils" ,r-kutils)
20751 ("r-lme4" ,r-lme4)
20752 ("r-mass" ,r-mass)))
20753 (home-page "https://cran.r-project.org/package=rockchalk")
20754 (synopsis "Regression estimation and presentation")
20755 (description
20756 "This package provides a collection of functions for interpretation and
20757 presentation of regression analysis. These functions are used to produce the
20758 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20759 includes regression diagnostics, regression tables, and plots of interactions
20760 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20761 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20762 fairly comprehensive overview.")
20763 (license license:gpl3+)))
20764
20765 (define-public r-lisreltor
20766 (package
20767 (name "r-lisreltor")
20768 (version "0.1.4")
20769 (source
20770 (origin
20771 (method url-fetch)
20772 (uri (cran-uri "lisrelToR" version))
20773 (sha256
20774 (base32
20775 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20776 (properties `((upstream-name . "lisrelToR")))
20777 (build-system r-build-system)
20778 (home-page "https://cran.r-project.org/package=lisrelToR")
20779 (synopsis "Import output from LISREL into R")
20780 (description
20781 "This is an unofficial package aimed at automating the import of LISREL
20782 output in R.")
20783 (license license:gpl2)))
20784
20785 (define-public r-bdgraph
20786 (package
20787 (name "r-bdgraph")
20788 (version "2.62")
20789 (source
20790 (origin
20791 (method url-fetch)
20792 (uri (cran-uri "BDgraph" version))
20793 (sha256
20794 (base32
20795 "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby"))))
20796 (properties `((upstream-name . "BDgraph")))
20797 (build-system r-build-system)
20798 (propagated-inputs
20799 `(("r-igraph" ,r-igraph)))
20800 (home-page "https://www.uva.nl/profile/a.mohammadi")
20801 (synopsis "Bayesian structure learning in graphical models")
20802 (description
20803 "This package provides statistical tools for Bayesian structure learning
20804 in undirected graphical models for continuous, discrete, and mixed data. It
20805 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
20806 on a continuous-time birth-death process.")
20807 (license license:gpl2+)))
20808
20809 (define-public r-d3network
20810 (package
20811 (name "r-d3network")
20812 (version "0.5.2.1")
20813 (source
20814 (origin
20815 (method url-fetch)
20816 (uri (cran-uri "d3Network" version))
20817 (sha256
20818 (base32
20819 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
20820 (properties `((upstream-name . "d3Network")))
20821 (build-system r-build-system)
20822 (propagated-inputs
20823 `(("r-plyr" ,r-plyr)
20824 ("r-rjson" ,r-rjson)
20825 ("r-whisker" ,r-whisker)))
20826 (home-page "http://christophergandrud.github.io/d3Network/")
20827 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
20828 (description
20829 "This package is intended to make it easy to create D3 JavaScript
20830 network, tree, dendrogram, and Sankey graphs from R using data frames.")
20831 (license license:gpl3+)))
20832
20833 (define-public r-qgraph
20834 (package
20835 (name "r-qgraph")
20836 (version "1.6.5")
20837 (source
20838 (origin
20839 (method url-fetch)
20840 (uri (cran-uri "qgraph" version))
20841 (sha256
20842 (base32
20843 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
20844 (properties `((upstream-name . "qgraph")))
20845 (build-system r-build-system)
20846 (propagated-inputs
20847 `(("r-abind" ,r-abind)
20848 ("r-bdgraph" ,r-bdgraph)
20849 ("r-colorspace" ,r-colorspace)
20850 ("r-corpcor" ,r-corpcor)
20851 ("r-d3network" ,r-d3network)
20852 ("r-dplyr" ,r-dplyr)
20853 ("r-fdrtool" ,r-fdrtool)
20854 ("r-ggplot2" ,r-ggplot2)
20855 ("r-ggraph" ,r-ggraph)
20856 ("r-glasso" ,r-glasso)
20857 ("r-gtools" ,r-gtools)
20858 ("r-hmisc" ,r-hmisc)
20859 ("r-huge" ,r-huge)
20860 ("r-igraph" ,r-igraph)
20861 ("r-jpeg" ,r-jpeg)
20862 ("r-lavaan" ,r-lavaan)
20863 ("r-matrix" ,r-matrix)
20864 ("r-pbapply" ,r-pbapply)
20865 ("r-plyr" ,r-plyr)
20866 ("r-png" ,r-png)
20867 ("r-psych" ,r-psych)
20868 ("r-rcpp" ,r-rcpp)
20869 ("r-reshape2" ,r-reshape2)
20870 ("r-tidygraph" ,r-tidygraph)))
20871 (home-page "http://sachaepskamp.com/qgraph/")
20872 (synopsis "Weighted network visualization and analysis")
20873 (description
20874 "This package implements tools for weighted network visualization and
20875 analysis, as well as Gaussian graphical model computation. It contains graph
20876 plotting methods, and tools for psychometric data visualization and graphical
20877 model estimation. See Epskamp et al. (2012)
20878 @url{doi:10.18637/jss.v048.i04}.")
20879 (license license:gpl2)))
20880
20881 (define-public r-semplot
20882 (package
20883 (name "r-semplot")
20884 (version "1.1.2")
20885 (source
20886 (origin
20887 (method url-fetch)
20888 (uri (cran-uri "semPlot" version))
20889 (sha256
20890 (base32
20891 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
20892 (properties `((upstream-name . "semPlot")))
20893 (build-system r-build-system)
20894 (propagated-inputs
20895 `(("r-colorspace" ,r-colorspace)
20896 ("r-corpcor" ,r-corpcor)
20897 ("r-igraph" ,r-igraph)
20898 ("r-lavaan" ,r-lavaan)
20899 ("r-lisreltor" ,r-lisreltor)
20900 ("r-openmx" ,r-openmx)
20901 ("r-plyr" ,r-plyr)
20902 ("r-qgraph" ,r-qgraph)
20903 ("r-regsem" ,r-regsem)
20904 ("r-rockchalk" ,r-rockchalk)
20905 ("r-sem" ,r-sem)
20906 ("r-xml" ,r-xml)))
20907 (home-page "https://github.com/SachaEpskamp/semPlot")
20908 (synopsis "Unified visualizations of structural equation models")
20909 (description
20910 "Structural equation modeling (SEM) has a long history of representing
20911 models graphically as path diagrams. The semPlot package for R fills the gap
20912 between advanced, but time-consuming, graphical software and the limited
20913 graphics produced automatically by SEM software. In addition, semPlot offers
20914 more functionality than drawing path diagrams: it can act as a common ground
20915 for importing SEM results into R. Any result usable as input to semPlot can
20916 also be represented in any of the three popular SEM frame-works, as well as
20917 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
20918 (license license:gpl2)))
20919
20920 (define-public r-cdm
20921 (package
20922 (name "r-cdm")
20923 (version "7.5-15")
20924 (source
20925 (origin
20926 (method url-fetch)
20927 (uri (cran-uri "CDM" version))
20928 (sha256
20929 (base32
20930 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
20931 (properties `((upstream-name . "CDM")))
20932 (build-system r-build-system)
20933 (propagated-inputs
20934 `(("r-mvtnorm" ,r-mvtnorm)
20935 ("r-polycor" ,r-polycor)
20936 ("r-rcpp" ,r-rcpp)
20937 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20938 (home-page
20939 "https://github.com/alexanderrobitzsch/CDM")
20940 (synopsis "Cognitive diagnosis modeling")
20941 (description
20942 "This package provides functions for cognitive diagnosis modeling and
20943 multidimensional item response modeling for dichotomous and polytomous item
20944 responses. It enables the estimation of the DINA and DINO model, the multiple
20945 group (polytomous) GDINA model, the multiple choice DINA model, the general
20946 diagnostic model (GDM), the structured latent class model (SLCA), and
20947 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
20948 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
20949 estimation and the package structure. For tutorials on how to use the CDM
20950 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
20951 well as Ravand and Robitzsch (2015).")
20952 (license license:gpl2+)))
20953
20954 (define-public r-tam
20955 (package
20956 (name "r-tam")
20957 (version "3.5-19")
20958 (source
20959 (origin
20960 (method url-fetch)
20961 (uri (cran-uri "TAM" version))
20962 (sha256
20963 (base32
20964 "1x1pdy0hrk4c3x5l4gcslpvyb0sv2zgly4n3a7y8j6yrzajx0sg7"))))
20965 (properties `((upstream-name . "TAM")))
20966 (build-system r-build-system)
20967 (propagated-inputs
20968 `(("r-cdm" ,r-cdm)
20969 ("r-rcpp" ,r-rcpp)
20970 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20971 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
20972 (synopsis "Test analysis modules")
20973 (description
20974 "This package includes tools for marginal maximum likelihood estimation
20975 and joint maximum likelihood estimation for unidimensional and
20976 multidimensional item response models. The package functionality covers the
20977 Rasch model, 2PL model, 3PL model, generalized partial credit model,
20978 multi-faceted Rasch model, nominal item response model, structured latent
20979 class model, mixture distribution IRT models, and located latent class models.
20980 Latent regression models and plausible value imputation are also supported.")
20981 (license license:gpl2+)))
20982
20983 (define-public r-erm
20984 (package
20985 (name "r-erm")
20986 (version "1.0-1")
20987 (source
20988 (origin
20989 (method url-fetch)
20990 (uri (cran-uri "eRm" version))
20991 (sha256
20992 (base32
20993 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
20994 (properties `((upstream-name . "eRm")))
20995 (build-system r-build-system)
20996 (propagated-inputs
20997 `(("r-colorspace" ,r-colorspace)
20998 ("r-lattice" ,r-lattice)
20999 ("r-mass" ,r-mass)
21000 ("r-matrix" ,r-matrix)
21001 ("r-psych" ,r-psych)))
21002 (native-inputs `(("gfortran" ,gfortran)))
21003 (home-page "https://cran.r-project.org/package=eRm")
21004 (synopsis "Extended Rasch modeling")
21005 (description
21006 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
21007 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
21008 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
21009 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
21010 data matrix. Additional features are the ML estimation of the person
21011 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
21012 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
21013 infit and outfit measures, ICC and other plots, automated stepwise item
21014 elimination, and a simulation module for various binary data matrices.")
21015 (license license:gpl3)))
21016
21017 (define-public r-irtoys
21018 (package
21019 (name "r-irtoys")
21020 (version "0.2.1")
21021 (source
21022 (origin
21023 (method url-fetch)
21024 (uri (cran-uri "irtoys" version))
21025 (sha256
21026 (base32
21027 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
21028 (properties `((upstream-name . "irtoys")))
21029 (build-system r-build-system)
21030 (propagated-inputs
21031 `(("r-ltm" ,r-ltm)
21032 ("r-sm" ,r-sm)))
21033 (home-page "https://cran.r-project.org/package=irtoys")
21034 (synopsis "Collection of functions related to Item Response Theory (IRT)")
21035 (description
21036 "This package provides a collection of functions useful in learning and
21037 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
21038 programs. It provides basic CTT analysis, a simple common interface to the
21039 estimation of item parameters in IRT models for binary responses with three
21040 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
21041 EAP, WLE, plausible values), item and person fit statistics, scaling
21042 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
21043 array of parametric and non-parametric (kernel) plots. It estimates and plots
21044 Haberman's interaction model when all items are dichotomously scored.")
21045 (license license:gpl2+)))
21046
21047 (define-public r-iheatmapr
21048 (package
21049 (name "r-iheatmapr")
21050 (version "0.5.0")
21051 (source
21052 (origin
21053 (method url-fetch)
21054 (uri (cran-uri "iheatmapr" version))
21055 (sha256
21056 (base32
21057 "0s2lc088rq2siy2wzmg1y6nss68rs33mf7w2izqqmg6kbx6d7y9h"))))
21058 (properties `((upstream-name . "iheatmapr")))
21059 (build-system r-build-system)
21060 (propagated-inputs
21061 `(("r-fastcluster" ,r-fastcluster)
21062 ("r-ggdendro" ,r-ggdendro)
21063 ("r-htmlwidgets" ,r-htmlwidgets)
21064 ("r-jsonlite" ,r-jsonlite)
21065 ("r-knitr" ,r-knitr)
21066 ("r-magrittr" ,r-magrittr)
21067 ("r-rcolorbrewer" ,r-rcolorbrewer)
21068 ("r-scales" ,r-scales)))
21069 (native-inputs
21070 `(("r-knitr" ,r-knitr)))
21071 (home-page "https://docs.ropensci.org/iheatmapr")
21072 (synopsis "Interactive, Complex Heatmaps")
21073 (description
21074 "iheatmapr is an R package for building complex, interactive heatmaps
21075 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
21076 subplots along the rows or columns of the main heatmap add more information
21077 about each row or column. For example, a one column additional heatmap may
21078 indicate what group a particular row or column belongs to. Complex heatmaps
21079 may also include multiple side by side heatmaps which show different types of
21080 data for the same conditions. Interactivity can improve complex heatmaps by
21081 providing tooltips with information about each cell and enabling zooming into
21082 interesting features. iheatmapr uses the plotly library for interactivity.")
21083 (license license:expat)))
21084
21085 (define-public r-packrat
21086 (package
21087 (name "r-packrat")
21088 (version "0.5.0")
21089 (source
21090 (origin
21091 (method url-fetch)
21092 (uri (cran-uri "packrat" version))
21093 (sha256
21094 (base32
21095 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
21096 (properties `((upstream-name . "packrat")))
21097 (build-system r-build-system)
21098 (home-page "https://github.com/rstudio/packrat/")
21099 (synopsis "Dependency management R projects")
21100 (description
21101 "This package provides a dependency manager for R projects that allows
21102 you to manage the R packages your project depends on in an isolated, portable,
21103 and reproducible way.")
21104 (license license:gpl2)))
21105
21106 (define-public r-rsconnect
21107 (package
21108 (name "r-rsconnect")
21109 (version "0.8.16")
21110 (source
21111 (origin
21112 (method url-fetch)
21113 (uri (cran-uri "rsconnect" version))
21114 (sha256
21115 (base32
21116 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
21117 (properties `((upstream-name . "rsconnect")))
21118 (build-system r-build-system)
21119 (propagated-inputs
21120 `(("r-curl" ,r-curl)
21121 ("r-digest" ,r-digest)
21122 ("r-jsonlite" ,r-jsonlite)
21123 ("r-openssl" ,r-openssl)
21124 ("r-packrat" ,r-packrat)
21125 ("r-rstudioapi" ,r-rstudioapi)
21126 ("r-yaml" ,r-yaml)))
21127 (home-page "https://github.com/rstudio/rsconnect")
21128 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
21129 (description
21130 "This package provides a programmatic deployment interface for RPubs,
21131 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
21132 documents, Shiny applications, Plumber APIs, plots, and static web content.")
21133 (license license:gpl2)))
21134
21135 ;; This package includes minified JavaScript files. When upgrading please
21136 ;; check that there are no new minified JavaScript files.
21137 (define-public r-dygraphs
21138 (package
21139 (name "r-dygraphs")
21140 (version "1.1.1.6")
21141 (source
21142 (origin
21143 (method url-fetch)
21144 (uri (cran-uri "dygraphs" version))
21145 (sha256
21146 (base32
21147 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
21148 (properties `((upstream-name . "dygraphs")))
21149 (build-system r-build-system)
21150 (arguments
21151 `(#:modules ((guix build utils)
21152 (guix build r-build-system)
21153 (srfi srfi-1)
21154 (ice-9 popen))
21155 #:phases
21156 (modify-phases %standard-phases
21157 (add-after 'unpack 'process-javascript
21158 (lambda* (#:key inputs #:allow-other-keys)
21159 (with-directory-excursion "inst/htmlwidgets/lib/"
21160 (call-with-values
21161 (lambda ()
21162 (unzip2
21163 `(("dygraphs/dygraph-combined-dev.js"
21164 "dygraph-combined.js")
21165 (,(assoc-ref inputs "js-jquery")
21166 "jquery/jquery.min.js")
21167 (,(assoc-ref inputs "js-fquarter")
21168 "fquarter/moment-fquarter.min.js"))))
21169 (lambda (sources targets)
21170 (for-each (lambda (source target)
21171 (format #t "Processing ~a --> ~a~%"
21172 source target)
21173 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
21174 (call-with-output-file target
21175 (lambda (port)
21176 (dump-port minified port)))))
21177 sources targets))))
21178 #t)))))
21179 (native-inputs
21180 `(("uglify-js" ,uglify-js)
21181 ;; They actually use version 1.11.1, but this more recent version
21182 ;; should be just fine.
21183 ("js-jquery"
21184 ,(origin
21185 (method url-fetch)
21186 (uri "https://code.jquery.com/jquery-1.12.4.js")
21187 (sha256
21188 (base32
21189 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
21190 ("js-fquarter"
21191 ,(origin
21192 (method url-fetch)
21193 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
21194 "moment-fquarter/1.0.1/moment-fquarter.js"))
21195 (sha256
21196 (base32
21197 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
21198 (propagated-inputs
21199 `(("r-htmltools" ,r-htmltools)
21200 ("r-htmlwidgets" ,r-htmlwidgets)
21201 ("r-magrittr" ,r-magrittr)
21202 ("r-xts" ,r-xts)
21203 ("r-zoo" ,r-zoo)))
21204 (home-page "https://github.com/rstudio/dygraphs")
21205 (synopsis "Interface to Dygraphs interactive time series charting library")
21206 (description
21207 "This package provides an R interface to the dygraphs JavaScript charting
21208 library (a copy of which is included in the package). It provides rich
21209 facilities for charting time-series data in R, including highly configurable
21210 series- and axis-display and interactive features like zoom/pan and
21211 series/point highlighting.")
21212 (license license:expat)))
21213
21214 (define-public r-shinystan
21215 (package
21216 (name "r-shinystan")
21217 (version "2.5.0")
21218 (source
21219 (origin
21220 (method url-fetch)
21221 (uri (cran-uri "shinystan" version))
21222 (sha256
21223 (base32
21224 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
21225 (properties `((upstream-name . "shinystan")))
21226 (build-system r-build-system)
21227 (propagated-inputs
21228 `(("r-bayesplot" ,r-bayesplot)
21229 ("r-colourpicker" ,r-colourpicker)
21230 ("r-dt" ,r-dt)
21231 ("r-dygraphs" ,r-dygraphs)
21232 ("r-ggplot2" ,r-ggplot2)
21233 ("r-gridextra" ,r-gridextra)
21234 ("r-gtools" ,r-gtools)
21235 ("r-markdown" ,r-markdown)
21236 ("r-reshape2" ,r-reshape2)
21237 ("r-rsconnect" ,r-rsconnect)
21238 ("r-rstan" ,r-rstan)
21239 ("r-shiny" ,r-shiny)
21240 ("r-shinyjs" ,r-shinyjs)
21241 ("r-shinythemes" ,r-shinythemes)
21242 ("r-threejs" ,r-threejs)
21243 ("r-xtable" ,r-xtable)
21244 ("r-xts" ,r-xts)))
21245 (home-page "https://mc-stan.org/")
21246 (synopsis "Interactive visual and numerical analysis for Bayesian models")
21247 (description
21248 "This package provides a graphical user interface for interactive
21249 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
21250 for analyzing a posterior sample. The interface is powered by the Shiny web
21251 application framework and works with the output of MCMC programs written in
21252 any programming language (and has extended functionality for Stan models fit
21253 using the @code{rstan} and @code{rstanarm} packages).")
21254 (license license:gpl3+)))
21255
21256 (define-public r-rstantools
21257 (package
21258 (name "r-rstantools")
21259 (version "2.1.1")
21260 (source
21261 (origin
21262 (method url-fetch)
21263 (uri (cran-uri "rstantools" version))
21264 (sha256
21265 (base32
21266 "0b9x8rzj3dr4m7yjx476nn42z22xd1xnw85m9frfwxy5ivg1any9"))))
21267 (properties `((upstream-name . "rstantools")))
21268 (build-system r-build-system)
21269 (inputs `(("pandoc" ,pandoc)))
21270 (propagated-inputs
21271 `(("r-desc" ,r-desc)
21272 ("r-rcpp" ,r-rcpp)
21273 ("r-rcppparallel" ,r-rcppparallel)))
21274 (native-inputs
21275 `(("r-knitr" ,r-knitr)))
21276 (home-page "https://mc-stan.org/rstantools/")
21277 (synopsis "Tools for developing R packages interfacing with Stan")
21278 (description
21279 "This package provides various tools for developers of R packages
21280 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
21281 up the required package structure, S3 generics and default methods to unify
21282 function naming across Stan-based R packages, and vignettes with
21283 recommendations for developers.")
21284 (license license:gpl3+)))
21285
21286 (define-public r-loo
21287 (package
21288 (name "r-loo")
21289 (version "2.3.1")
21290 (source
21291 (origin
21292 (method url-fetch)
21293 (uri (cran-uri "loo" version))
21294 (sha256
21295 (base32 "12z0k8lhz0rxygs5lc7076nw6qhk0pda8nxf65hkinfrf4dy53fr"))))
21296 (properties `((upstream-name . "loo")))
21297 (build-system r-build-system)
21298 (inputs
21299 `(("pandoc" ,pandoc)
21300 ("pandoc-citeproc" ,pandoc-citeproc)))
21301 (propagated-inputs
21302 `(("r-checkmate" ,r-checkmate)
21303 ("r-matrixstats" ,r-matrixstats)))
21304 (native-inputs
21305 `(("r-knitr" ,r-knitr)))
21306 (home-page "https://mc-stan.org/loo/")
21307 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
21308 (description
21309 "This package provides an implementation of efficient approximate
21310 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
21311 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
21312 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
21313 procedure for regularizing importance weights. As a byproduct of the
21314 calculations, we also obtain approximate standard errors for estimated
21315 predictive errors and for the comparison of predictive errors between models.
21316 The package also provides methods for using stacking and other model weighting
21317 techniques to average Bayesian predictive distributions.")
21318 (license license:gpl3+)))
21319
21320 (define-public r-rstan
21321 (package
21322 (name "r-rstan")
21323 (version "2.21.2")
21324 (source
21325 (origin
21326 (method url-fetch)
21327 (uri (cran-uri "rstan" version))
21328 (sha256
21329 (base32
21330 "0jh58qfrksd2j9w2zy4bajryivgp36m3xdb9mjrjqbk1ib9h83p3"))))
21331 (properties `((upstream-name . "rstan")))
21332 (build-system r-build-system)
21333 (arguments
21334 `(#:phases
21335 (modify-phases %standard-phases
21336 (add-before 'install 'set-timezone
21337 ;; This package is picky about timezones.
21338 (lambda* (#:key inputs #:allow-other-keys)
21339 (setenv "TZ" "UTC+1")
21340 (setenv "TZDIR"
21341 (string-append (assoc-ref inputs "tzdata")
21342 "/share/zoneinfo"))
21343 #t)))))
21344 (native-inputs
21345 `(("tzdata" ,tzdata-for-tests)
21346 ("pandoc" ,pandoc)
21347 ("r-knitr" ,r-knitr)))
21348 (propagated-inputs
21349 `(("r-bh" ,r-bh)
21350 ("r-ggplot2" ,r-ggplot2)
21351 ("r-gridextra" ,r-gridextra)
21352 ("r-inline" ,r-inline)
21353 ("r-loo" ,r-loo)
21354 ("r-pkgbuild" ,r-pkgbuild)
21355 ("r-rcpp" ,r-rcpp)
21356 ("r-rcppeigen" ,r-rcppeigen)
21357 ("r-rcppparallel" ,r-rcppparallel)
21358 ("r-stanheaders" ,r-stanheaders)
21359 ("r-v8" ,r-v8)
21360 ("r-withr" ,r-withr)))
21361 (home-page "https://discourse.mc-stan.org/")
21362 (synopsis "R interface to Stan")
21363 (description
21364 "User-facing R functions are provided to parse, compile, test, estimate,
21365 and analyze Stan models by accessing the header-only Stan library provided by
21366 the StanHeaders package. The Stan project develops a probabilistic
21367 programming language that implements full Bayesian statistical inference via
21368 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
21369 approximation, and (optionally penalized) maximum likelihood estimation via
21370 optimization. In all three cases, automatic differentiation is used to
21371 quickly and accurately evaluate gradients without burdening the user with the
21372 need to derive the partial derivatives.")
21373 (license license:gpl3+)))
21374
21375 (define-public r-rstanarm
21376 (package
21377 (name "r-rstanarm")
21378 (version "2.21.1")
21379 (source
21380 (origin
21381 (method url-fetch)
21382 (uri (cran-uri "rstanarm" version))
21383 (sha256
21384 (base32
21385 "04ggzak3f7jaxza3dxyrmxp5b48qcgyspy22ykbhr03g4hzp7jk8"))))
21386 (properties `((upstream-name . "rstanarm")))
21387 (build-system r-build-system)
21388 (inputs
21389 `(("pandoc" ,pandoc)
21390 ("pandoc-citeproc" ,pandoc-citeproc)))
21391 (propagated-inputs
21392 `(("r-bayesplot" ,r-bayesplot)
21393 ("r-bh" ,r-bh)
21394 ("r-ggplot2" ,r-ggplot2)
21395 ("r-lme4" ,r-lme4)
21396 ("r-loo" ,r-loo)
21397 ("r-matrix" ,r-matrix)
21398 ("r-nlme" ,r-nlme)
21399 ("r-rcpp" ,r-rcpp)
21400 ("r-rcppeigen" ,r-rcppeigen)
21401 ("r-rcppparallel" ,r-rcppparallel)
21402 ("r-rstan" ,r-rstan)
21403 ("r-rstantools" ,r-rstantools)
21404 ("r-shinystan" ,r-shinystan)
21405 ("r-stanheaders" ,r-stanheaders)
21406 ("r-survival" ,r-survival)))
21407 (native-inputs
21408 `(("r-knitr" ,r-knitr)))
21409 (home-page "https://mc-stan.org/rstanarm/")
21410 (synopsis "Bayesian applied regression modeling via Stan")
21411 (description
21412 "This package estimates previously compiled regression models using the
21413 @code{rstan} package, which provides the R interface to the Stan C++ library
21414 for Bayesian estimation. Users specify models via the customary R syntax with
21415 a formula and @code{data.frame} plus some additional arguments for priors.")
21416 (license license:gpl3+)))
21417
21418 (define-public r-kendall
21419 (package
21420 (name "r-kendall")
21421 (version "2.2")
21422 (source
21423 (origin
21424 (method url-fetch)
21425 (uri (cran-uri "Kendall" version))
21426 (sha256
21427 (base32
21428 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
21429 (properties `((upstream-name . "Kendall")))
21430 (build-system r-build-system)
21431 (propagated-inputs
21432 `(("r-boot" ,r-boot)))
21433 (native-inputs
21434 `(("gfortran" ,gfortran)))
21435 (home-page "https://cran.r-project.org/web/packages/Kendall/")
21436 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
21437 (description
21438 "This package computes the Kendall rank correlation and Mann-Kendall
21439 trend test.")
21440 (license license:gpl2+)))
21441
21442 (define-public r-zyp
21443 (package
21444 (name "r-zyp")
21445 (version "0.10-1.1")
21446 (source
21447 (origin
21448 (method url-fetch)
21449 (uri (cran-uri "zyp" version))
21450 (sha256
21451 (base32
21452 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
21453 (properties `((upstream-name . "zyp")))
21454 (build-system r-build-system)
21455 (propagated-inputs
21456 `(("r-kendall" ,r-kendall)))
21457 (home-page "https://cran.r-project.org/web/packages/zyp/")
21458 (synopsis "Zhang + Yue-Pilon Trends Package")
21459 (description
21460 "This package contains an efficient implementation of Sen's slope
21461 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
21462 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
21463 climate data.")
21464 (license license:lgpl2.1)))
21465
21466 (define-public r-rlinsolve
21467 (package
21468 (name "r-rlinsolve")
21469 (version "0.3.1")
21470 (source
21471 (origin
21472 (method url-fetch)
21473 (uri (cran-uri "Rlinsolve" version))
21474 (sha256
21475 (base32
21476 "1x02xxbkchcwwfa2123n9yqfzinfi0zba8zxhp977czzwysy75cc"))))
21477 (properties `((upstream-name . "Rlinsolve")))
21478 (build-system r-build-system)
21479 (propagated-inputs
21480 `(("r-matrix" ,r-matrix)
21481 ("r-rcpp" ,r-rcpp)
21482 ("r-rcpparmadillo" ,r-rcpparmadillo)
21483 ("r-rdpack" ,r-rdpack)))
21484 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
21485 (synopsis "Iterative solvers for (sparse) linear system of equations")
21486 (description
21487 "Solving a system of linear equations is one of the most fundamental
21488 computational problems for many fields of mathematical studies, such as
21489 regression problems from statistics or numerical partial differential
21490 equations. This package provides basic stationary iterative solvers such as
21491 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
21492 Nonstationary, also known as Krylov subspace methods are also provided.
21493 Sparse matrix computation is also supported in that solving large and sparse
21494 linear systems can be manageable using the @code{Matrix} package along with
21495 @code{RcppArmadillo}.")
21496 (license license:gpl3+)))
21497
21498 (define-public r-zvcv
21499 (package
21500 (name "r-zvcv")
21501 (version "2.1.0")
21502 (source
21503 (origin
21504 (method url-fetch)
21505 (uri (cran-uri "ZVCV" version))
21506 (sha256
21507 (base32
21508 "0np6h6x74kz1x13wmbkkm1wq43d8bnn2khzjc80prqdi6n0m9v8r"))))
21509 (properties `((upstream-name . "ZVCV")))
21510 (build-system r-build-system)
21511 (propagated-inputs
21512 `(("r-abind" ,r-abind)
21513 ("r-bh" ,r-bh)
21514 ("r-dplyr" ,r-dplyr)
21515 ("r-glmnet" ,r-glmnet)
21516 ("r-magrittr" ,r-magrittr)
21517 ("r-mvtnorm" ,r-mvtnorm)
21518 ("r-rcpp" ,r-rcpp)
21519 ("r-rcpparmadillo" ,r-rcpparmadillo)
21520 ("r-rlinsolve" ,r-rlinsolve)))
21521 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
21522 (synopsis "Zero-Variance Control Variates")
21523 (description
21524 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
21525 to reduce the variance of Monte Carlo estimators of expectations using the
21526 derivatives of the log target. Once the derivatives are available, the only
21527 additional computational effort is in solving a linear regression problem.
21528 This method has been extended to higher dimensions using regularisation. This
21529 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
21530 samples, derivatives and function evaluations are available. Additional
21531 functions for applying ZV-CV to two estimators for the normalising constant of
21532 the posterior distribution in Bayesian statistics are also supplied.")
21533 (license license:gpl2+)))
21534
21535 (define-public r-ztype
21536 (package
21537 (name "r-ztype")
21538 (version "0.1.0")
21539 (source
21540 (origin
21541 (method url-fetch)
21542 (uri (cran-uri "ztype" version))
21543 (sha256
21544 (base32
21545 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
21546 (properties `((upstream-name . "ztype")))
21547 (build-system r-build-system)
21548 (propagated-inputs
21549 `(("r-assertthat" ,r-assertthat)
21550 ("r-dplyr" ,r-dplyr)
21551 ("r-ggplot2" ,r-ggplot2)
21552 ("r-lubridate" ,r-lubridate)
21553 ("r-magrittr" ,r-magrittr)
21554 ("r-rvest" ,r-rvest)
21555 ("r-stringr" ,r-stringr)))
21556 (home-page "https://cran.r-project.org/web/packages/ztype/")
21557 (synopsis "Run a Ztype game loaded with R functions")
21558 (description
21559 "How fast can you type R functions on your keyboard? Find out by running
21560 a @code{zty.pe} game: export R functions as instructions to type to destroy
21561 opponents' vessels.")
21562 (license license:gpl3)))
21563
21564 (define-public r-zseq
21565 (package
21566 (name "r-zseq")
21567 (version "0.2.0")
21568 (source
21569 (origin
21570 (method url-fetch)
21571 (uri (cran-uri "Zseq" version))
21572 (sha256
21573 (base32
21574 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
21575 (properties `((upstream-name . "Zseq")))
21576 (build-system r-build-system)
21577 (propagated-inputs
21578 `(("r-gmp" ,r-gmp)))
21579 (home-page "https://cran.r-project.org/web/packages/Zseq/")
21580 (synopsis "Integer sequence generator")
21581 (description
21582 "This package generates well-known integer sequences. The @code{gmp}
21583 package is adopted for computing with arbitrarily large numbers. Every
21584 function has a hyperlink to its corresponding item in the @dfn{On-Line
21585 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
21586 (license license:gpl3+)))
21587
21588 (define-public r-isoband
21589 (package
21590 (name "r-isoband")
21591 (version "0.2.2")
21592 (source
21593 (origin
21594 (method url-fetch)
21595 (uri (cran-uri "isoband" version))
21596 (sha256
21597 (base32
21598 "044fg014gb6v6v11gm7ivfipz45iqw9cpahjhaacw6kyahyb66zx"))))
21599 (properties `((upstream-name . "isoband")))
21600 (build-system r-build-system)
21601 (propagated-inputs
21602 `(("r-testthat" ,r-testthat)))
21603 (native-inputs
21604 `(("r-knitr" ,r-knitr)))
21605 (home-page "https://github.com/wilkelab/isoband")
21606 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
21607 (description
21608 "This package provides a fast C++ implementation to generate contour
21609 lines (isolines) and contour polygons (isobands) from regularly spaced grids
21610 containing elevation data.")
21611 (license license:expat)))
21612
21613 (define-public r-ppcor
21614 (package
21615 (name "r-ppcor")
21616 (version "1.1")
21617 (source
21618 (origin
21619 (method url-fetch)
21620 (uri (cran-uri "ppcor" version))
21621 (sha256
21622 (base32
21623 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
21624 (properties `((upstream-name . "ppcor")))
21625 (build-system r-build-system)
21626 (propagated-inputs
21627 `(("r-mass" ,r-mass)))
21628 (home-page "https://cran.r-project.org/web/packages/ppcor/")
21629 (synopsis "Partial and semi-partial correlation")
21630 (description
21631 "This package provides users not only with a function to readily
21632 calculate the higher-order partial and semi-partial correlations but also with
21633 statistics and p-values of the correlation coefficients.")
21634 (license license:gpl2)))
21635
21636 (define-public r-hrbrthemes
21637 (package
21638 (name "r-hrbrthemes")
21639 (version "0.8.0")
21640 (source
21641 (origin
21642 (method url-fetch)
21643 (uri (cran-uri "hrbrthemes" version))
21644 (sha256
21645 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
21646 (properties `((upstream-name . "hrbrthemes")))
21647 (build-system r-build-system)
21648 (propagated-inputs
21649 `(("r-extrafont" ,r-extrafont)
21650 ("r-gdtools" ,r-gdtools)
21651 ("r-ggplot2" ,r-ggplot2)
21652 ("r-htmltools" ,r-htmltools)
21653 ("r-knitr" ,r-knitr)
21654 ("r-magrittr" ,r-magrittr)
21655 ("r-rmarkdown" ,r-rmarkdown)
21656 ("r-scales" ,r-scales)))
21657 (native-inputs
21658 `(("r-knitr" ,r-knitr)))
21659 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
21660 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
21661 (description
21662 "This package provides a compilation of extra @code{ggplot2} themes,
21663 scales and utilities, including a spell check function for plot label fields
21664 and an overall emphasis on typography.")
21665 (license license:expat)))
21666
21667 (define-public r-crochet
21668 (package
21669 (name "r-crochet")
21670 (version "2.3.0")
21671 (source
21672 (origin
21673 (method url-fetch)
21674 (uri (cran-uri "crochet" version))
21675 (sha256
21676 (base32
21677 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
21678 (build-system r-build-system)
21679 (native-inputs
21680 `(("r-knitr" ,r-knitr)))
21681 (home-page "https://github.com/agrueneberg/crochet")
21682 (synopsis "Implementation Helper for Matrix-Like Types")
21683 (description
21684 "Functions to help implement the extraction / subsetting / indexing
21685 function @code{[} and replacement function @code{[<-} of custom matrix-like
21686 types (based on S3, S4, etc.), modeled as closely to the base matrix class
21687 as possible (with tests to prove it).")
21688 (license license:expat)))
21689
21690 (define-public r-boa
21691 (package
21692 (name "r-boa")
21693 (version "1.1.8-2")
21694 (source
21695 (origin
21696 (method url-fetch)
21697 (uri (cran-uri "boa" version))
21698 (sha256
21699 (base32
21700 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
21701 (properties `((upstream-name . "boa")))
21702 (build-system r-build-system)
21703 (home-page "http://www.jstatsoft.org/v21/i11")
21704 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
21705 (description
21706 "This package provides a menu-driven program and library of functions for
21707 carrying out convergence diagnostics and statistical and graphical analysis of
21708 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
21709 (license license:gpl2+)))
21710
21711 (define-public r-httpcode
21712 (package
21713 (name "r-httpcode")
21714 (version "0.3.0")
21715 (source (origin
21716 (method url-fetch)
21717 (uri (cran-uri "httpcode" version))
21718 (sha256
21719 (base32
21720 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
21721 (build-system r-build-system)
21722 (home-page "https://github.com/sckott/httpcode")
21723 (synopsis "HTTP status code helper")
21724 (description "@code{httpcode} provides functionality for finding and
21725 explaining the meaning of @code{HTTP} status codes. Functions are included for
21726 searching for codes by full or partial number, by message, and to get
21727 appropriate dog and cat images for many status codes.")
21728 (license license:expat)))
21729
21730 (define-public r-latex2exp
21731 (package
21732 (name "r-latex2exp")
21733 (version "0.4.0")
21734 (source (origin
21735 (method url-fetch)
21736 (uri (cran-uri "latex2exp" version))
21737 (sha256
21738 (base32
21739 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
21740 (build-system r-build-system)
21741 (propagated-inputs
21742 `(("r-stringr" ,r-stringr)
21743 ("r-magrittr", r-magrittr)))
21744 (home-page "https://github.com/stefano-meschiari/latex2exp/")
21745 (synopsis "Use LaTeX expressions in plots")
21746 (description "@code{latex2exp} parses and converts LaTeX math formulas to
21747 R's plotmath expressions, used to enter mathematical formulas and symbols to be
21748 rendered as text, axis labels, etc. throughout R's plotting system.")
21749 (license license:expat)))
21750
21751 (define-public r-oai
21752 (package
21753 (name "r-oai")
21754 (version "0.3.0")
21755 (source (origin
21756 (method url-fetch)
21757 (uri (cran-uri "oai" version))
21758 (sha256
21759 (base32
21760 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
21761 (build-system r-build-system)
21762 (propagated-inputs
21763 `(("r-xml2" ,r-xml2)
21764 ("r-httr" ,r-httr)
21765 ("r-plyr" ,r-plyr)
21766 ("r-stringr" ,r-stringr)
21767 ("r-tibble" ,r-tibble)))
21768 (home-page "https://github.com/ropensci/oai/")
21769 (synopsis "General purpose OAI-PMH services client")
21770 (description "@code{oai} provides a general purpose client to work with
21771 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
21772 service. Functions are provided to work with the OAI-PMH verbs:
21773 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
21774 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
21775 (license license:expat)))
21776
21777 (define-public r-argon2
21778 (package
21779 (name "r-argon2")
21780 (version "0.2-0")
21781 (source
21782 (origin
21783 (method url-fetch)
21784 (uri (cran-uri "argon2" version))
21785 (sha256
21786 (base32
21787 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21788 (properties `((upstream-name . "argon2")))
21789 (build-system r-build-system)
21790 (home-page "https://github.com/wrathematics/argon2")
21791 (synopsis "Secure password hashing based on the argon2 algorithm")
21792 (description
21793 "This package provides utilities for secure password hashing via the
21794 argon2 algorithm.")
21795 (license license:bsd-2)))
21796
21797 (define-public r-getpass
21798 (package
21799 (name "r-getpass")
21800 (version "0.2-2")
21801 (source
21802 (origin
21803 (method url-fetch)
21804 (uri (cran-uri "getPass" version))
21805 (sha256
21806 (base32
21807 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
21808 (properties `((upstream-name . "getPass")))
21809 (build-system r-build-system)
21810 (propagated-inputs
21811 `(("r-rstudioapi" ,r-rstudioapi)))
21812 (home-page "https://github.com/wrathematics/getPass")
21813 (synopsis "Masked user input")
21814 (description
21815 "This package provides a micro-package for reading \"passwords\", i.e.
21816 reading user input with masking, so that the input is not displayed as it is
21817 typed. Currently, RStudio, the command line (every OS), and any platform
21818 where tcltk is present are supported.")
21819 (license license:bsd-2)))
21820
21821 (define-public r-remoter
21822 (package
21823 (name "r-remoter")
21824 (version "0.4-0")
21825 (source
21826 (origin
21827 (method url-fetch)
21828 (uri (cran-uri "remoter" version))
21829 (sha256
21830 (base32
21831 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
21832 (properties `((upstream-name . "remoter")))
21833 (build-system r-build-system)
21834 (propagated-inputs
21835 `(("r-argon2" ,r-argon2)
21836 ("r-getpass" ,r-getpass)
21837 ("r-pbdzmq" ,r-pbdzmq)
21838 ("r-png" ,r-png)))
21839 (home-page "https://github.com/RBigData/remoter")
21840 (synopsis "Control a remote R session from a local one")
21841 (description
21842 "This package provides a set of utilities for client/server computing
21843 with R, controlling a remote R session (the server) from a local one (the
21844 client).")
21845 (license license:bsd-2)))
21846
21847 (define-public r-asd
21848 (package
21849 (name "r-asd")
21850 (version "2.2")
21851 (source
21852 (origin
21853 (method url-fetch)
21854 (uri (cran-uri "asd" version))
21855 (sha256
21856 (base32
21857 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
21858 (properties `((upstream-name . "asd")))
21859 (build-system r-build-system)
21860 (propagated-inputs
21861 `(("r-mvtnorm" ,r-mvtnorm)))
21862 (home-page "https://cran.r-project.org/web/packages/asd")
21863 (synopsis "Simulations for Adaptive Seamless Designs")
21864 (description
21865 "This package provdes means to run simulations for adaptive seamless
21866 designs with and without early outcomes for treatment selection and
21867 subpopulation type designs.")
21868 (license license:gpl3)))
21869
21870 (define-public r-nbconvertr
21871 (package
21872 (name "r-nbconvertr")
21873 (version "1.3.2")
21874 (source
21875 (origin
21876 (method url-fetch)
21877 (uri (cran-uri "nbconvertR" version))
21878 (sha256
21879 (base32
21880 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
21881 (properties `((upstream-name . "nbconvertR")))
21882 (build-system r-build-system)
21883 (inputs
21884 `(("jupyter" ,python-nbconvert)
21885 ("pandoc" ,pandoc)))
21886 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
21887 (synopsis "Vignette engine wrapping Jupyter notebooks")
21888 (description
21889 "This package calls the Jupyter script @code{nbconvert} to create
21890 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
21891 containing rich text, code, and its output. Code cells can be edited and
21892 evaluated interactively.")
21893 (license license:gpl3)))
21894
21895 (define-public r-bridgesampling
21896 (package
21897 (name "r-bridgesampling")
21898 (version "1.0-0")
21899 (source
21900 (origin
21901 (method url-fetch)
21902 (uri (cran-uri "bridgesampling" version))
21903 (sha256
21904 (base32
21905 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
21906 (properties
21907 `((upstream-name . "bridgesampling")))
21908 (build-system r-build-system)
21909 (propagated-inputs
21910 `(("r-brobdingnag" ,r-brobdingnag)
21911 ("r-coda" ,r-coda)
21912 ("r-matrix" ,r-matrix)
21913 ("r-mvtnorm" ,r-mvtnorm)
21914 ("r-scales" ,r-scales)
21915 ("r-stringr" ,r-stringr)))
21916 (native-inputs
21917 `(("r-knitr" ,r-knitr)))
21918 (home-page "https://github.com/quentingronau/bridgesampling")
21919 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
21920 (description
21921 "This package provides functions for estimating marginal likelihoods,
21922 Bayes factors, posterior model probabilities, and normalizing constants in
21923 general, via different versions of bridge sampling.")
21924 (license license:gpl2+)))
21925
21926 (define-public r-tea
21927 (package
21928 (name "r-tea")
21929 (version "1.1")
21930 (source
21931 (origin
21932 (method url-fetch)
21933 (uri (cran-uri "tea" version))
21934 (sha256
21935 (base32
21936 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
21937 (properties
21938 `((upstream-name . "tea")))
21939 (build-system r-build-system)
21940 (propagated-inputs
21941 `(("r-matrix" ,r-matrix)))
21942 (home-page "https://cran.r-project.org/web/packages/tea/")
21943 (synopsis "Threshold estimation approaches")
21944 (description
21945 "This package provides different approaches for selecting the threshold
21946 in generalized Pareto distributions. Most of them are based on minimizing the
21947 AMSE-criterion or atleast by reducing the bias of the assumed GPD-model.
21948 Others are heuristically motivated by searching for stable sample paths, i.e.
21949 a nearly constant region of the tail index estimator with respect to k, which
21950 is the number of data in the tail. The third class is motivated by graphical
21951 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
21952 is also implemented here.")
21953 (license license:gpl3)))
21954
21955 (define-public r-awsmethods
21956 (package
21957 (name "r-awsmethods")
21958 (version "1.1-1")
21959 (source
21960 (origin
21961 (method url-fetch)
21962 (uri (cran-uri "awsMethods" version))
21963 (sha256
21964 (base32
21965 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
21966 (properties
21967 `((upstream-name . "awsMethods")))
21968 (build-system r-build-system)
21969 (home-page "http://www.wias-berlin.de/software/imaging/")
21970 (synopsis "Class and methods definitions")
21971 (description
21972 "This package defines the generic method @code{extract} and provides
21973 @code{openMP} support as needed in several packages like
21974 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
21975 (license license:gpl2+)))
21976
21977 (define-public r-aws
21978 (package
21979 (name "r-aws")
21980 (version "2.4-3")
21981 (source
21982 (origin
21983 (method url-fetch)
21984 (uri (cran-uri "aws" version))
21985 (sha256
21986 (base32
21987 "0ccm8ffjf8bylhfr64j9wzi49hzigz4bs172pvkb0bi4d5vdr0l5"))))
21988 (properties
21989 `((upstream-name . "aws")))
21990 (build-system r-build-system)
21991 (propagated-inputs
21992 `(("r-awsmethods" ,r-awsmethods)
21993 ("r-gsl" ,r-gsl)))
21994 (native-inputs
21995 `(("gfortran" ,gfortran)))
21996 (home-page "https://cran.r-project.org/web/packages/aws/")
21997 (synopsis "Adaptive weights smoothing")
21998 (description
21999 "This package provides a collection of R-functions implementing adaptive
22000 smoothing procedures in 1D, 2D and 3D. This includes the
22001 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
22002 Confidence Intervals} (ICI), variational approaches, and a non-local means
22003 filter.")
22004 (license license:gpl2+)))
22005
22006 (define-public r-sgloptim
22007 (package
22008 (name "r-sgloptim")
22009 (version "1.3.8")
22010 (source
22011 (origin
22012 (method url-fetch)
22013 (uri (cran-uri "sglOptim" version))
22014 (sha256
22015 (base32
22016 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
22017 (properties
22018 `((upstream-name . "sglOptim")))
22019 (build-system r-build-system)
22020 (propagated-inputs
22021 `(("r-bh" ,r-bh)
22022 ("r-doparallel" ,r-doparallel)
22023 ("r-foreach" ,r-foreach)
22024 ("r-matrix" ,r-matrix)
22025 ("r-rcpp" ,r-rcpp)
22026 ("r-rcpparmadillo" ,r-rcpparmadillo)
22027 ("r-rcppprogress" ,r-rcppprogress)))
22028 (native-inputs
22029 `(("r-knitr" ,r-knitr)))
22030 (home-page "https://github.com/nielsrhansen/sglOptim")
22031 (synopsis "Generic sparse group Lasso solver")
22032 (description
22033 "This package provides a fast generic solver for sparse group lasso
22034 optimization problems. The loss (objective) function must be defined in a C++
22035 module. The optimization problem is solved using a coordinate gradient
22036 descent algorithm. Convergence of the algorithm is established and the
22037 algorithm is applicable to a broad class of loss functions. Use of parallel
22038 computing for cross validation and subsampling is supported through the
22039 @code{foreach} and @code{doParallel} packages.")
22040 (license license:gpl2+)))
22041
22042 (define-public r-grouped
22043 (package
22044 (name "r-grouped")
22045 (version "0.6-0")
22046 (source
22047 (origin
22048 (method url-fetch)
22049 (uri (cran-uri "grouped" version))
22050 (sha256
22051 (base32
22052 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
22053 (properties
22054 `((upstream-name . "grouped")))
22055 (build-system r-build-system)
22056 (propagated-inputs
22057 `(("r-mass" ,r-mass)))
22058 (home-page "https://cran.r-project.org/web/packages/grouped/")
22059 (synopsis "Regression analysis of grouped and coarse data")
22060 (description
22061 "This package provides regression models for grouped and coarse data,
22062 under the coarsened at random assumption.")
22063 (license license:gpl2+)))
22064
22065 (define-public r-stam
22066 (package
22067 (name "r-stam")
22068 (version "0.0-1")
22069 (source
22070 (origin
22071 (method url-fetch)
22072 (uri (cran-uri "stam" version))
22073 (sha256
22074 (base32
22075 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
22076 (properties
22077 `((upstream-name . "stam")))
22078 (build-system r-build-system)
22079 (propagated-inputs
22080 `(("r-np" ,r-np)
22081 ("r-sp" ,r-sp)))
22082 (home-page "https://cran.r-project.org/web/packages/stam")
22083 (synopsis "Spatio-temporal analysis and modelling")
22084 (description
22085 "This package provides various methods to conduct Spatio-Temporal
22086 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
22087 Inferred Spatio-Temporal Modelling.")
22088 (license license:gpl2+)))
22089
22090 (define-public r-dcv
22091 (package
22092 (name "r-dcv")
22093 (version "0.1.1")
22094 (source
22095 (origin
22096 (method url-fetch)
22097 (uri (cran-uri "dcv" version))
22098 (sha256
22099 (base32
22100 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
22101 (properties
22102 `((upstream-name . "dcv")))
22103 (build-system r-build-system)
22104 (propagated-inputs
22105 `(("r-lmtest" ,r-lmtest)))
22106 (home-page "https://cran.r-project.org/web/packages/dcv/")
22107 (synopsis "Conventional cross-validation statistics for climate-growth model")
22108 (description
22109 "This package performs several conventional cross-validation statistical
22110 methods for climate-growth model in the climate reconstruction from tree
22111 rings, including Sign Test statistic, Reduction of Error statistic, Product
22112 Mean Test, Durbin-Watson statistic etc.")
22113 (license license:gpl2)))
22114
22115 (define-public r-rcdd
22116 (package
22117 (name "r-rcdd")
22118 (version "1.2-2")
22119 (source
22120 (origin
22121 (method url-fetch)
22122 (uri (cran-uri "rcdd" version))
22123 (sha256
22124 (base32
22125 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
22126 (properties
22127 `((upstream-name . "rcdd")))
22128 (build-system r-build-system)
22129 (inputs
22130 `(("gmp" ,gmp)))
22131 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
22132 (synopsis "Computational geometry")
22133 (description
22134 "This package converts back and forth between two representations of a
22135 convex polytope: as solution of a set of linear equalities and inequalities
22136 and as convex hull of set of points and rays. Also does linear programming
22137 and redundant generator elimination. All functions can use exact
22138 infinite-precision rational arithmetic.")
22139 (license license:gpl2)))
22140
22141 (define-public r-rxnat
22142 (package
22143 (name "r-rxnat")
22144 (version "1.0.12")
22145 (source
22146 (origin
22147 (method url-fetch)
22148 (uri (cran-uri "Rxnat" version))
22149 (sha256
22150 (base32
22151 "06w99b5lvpycykzlga6grw33zkajwbb04s89s37wy9zxy42vc4cb"))))
22152 (properties
22153 `((upstream-name . "Rxnat")))
22154 (build-system r-build-system)
22155 (propagated-inputs
22156 `(("r-dplyr" ,r-dplyr)
22157 ("r-httr" ,r-httr)
22158 ("r-rcurl" ,r-rcurl)))
22159 (native-inputs
22160 `(("r-knitr" ,r-knitr)))
22161 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
22162 (synopsis "Queries and extracts images from neuroimaging datasets")
22163 (description
22164 "This package allows communication with the Extensible Neuroimaging
22165 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
22166 download images.")
22167 (license license:gpl2)))
22168
22169 (define-public r-rserve
22170 (package
22171 (name "r-rserve")
22172 (version "1.8-6")
22173 (source
22174 (origin
22175 (method url-fetch)
22176 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
22177 version ".tar.gz"))
22178 (sha256
22179 (base32
22180 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
22181 (build-system r-build-system)
22182 (propagated-inputs
22183 `(("r-checkmate" ,r-checkmate)
22184 ("r-mime" ,r-mime)
22185 ("r-jsonlite" ,r-jsonlite)
22186 ("r-knitr" ,r-knitr)
22187 ("r-r6" ,r-r6)
22188 ("r-rcpp" ,r-rcpp)
22189 ("r-uuid" ,r-uuid)))
22190 (inputs
22191 `(("openssl" ,openssl)
22192 ("zlib" ,zlib)))
22193 (home-page "https://github.com/s-u/Rserve")
22194 (synopsis
22195 "Server providing access to R from many languages and systems")
22196 (description
22197 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
22198 binary requests to be sent to R. Every connection has a separate workspace
22199 and working directory. Client-side implementations are available for popular
22200 languages such as C/C++ and Java, allowing any application to use facilities
22201 of R without the need of linking to R code. Rserve supports remote
22202 connection, user authentication and file transfer. A simple R client is
22203 included in this package as well.")
22204 (license license:gpl2)))
22205
22206 (define-public r-brms
22207 (package
22208 (name "r-brms")
22209 (version "2.13.5")
22210 (source
22211 (origin
22212 (method url-fetch)
22213 (uri (cran-uri "brms" version))
22214 (sha256
22215 (base32
22216 "0a2m5wr134sxflmiq5jzvanzn81fv7xndy9gyvrq3bay9vakic69"))))
22217 (properties `((upstream-name . "brms")))
22218 (build-system r-build-system)
22219 (propagated-inputs
22220 `(("r-abind" ,r-abind)
22221 ("r-backports" ,r-backports)
22222 ("r-bayesplot" ,r-bayesplot)
22223 ("r-bridgesampling" ,r-bridgesampling)
22224 ("r-coda" ,r-coda)
22225 ("r-future" ,r-future)
22226 ("r-ggplot2" ,r-ggplot2)
22227 ("r-glue" ,r-glue)
22228 ("r-loo" ,r-loo)
22229 ("r-matrix" ,r-matrix)
22230 ("r-matrixstats" ,r-matrixstats)
22231 ("r-mgcv" ,r-mgcv)
22232 ("r-nleqslv" ,r-nleqslv)
22233 ("r-nlme" ,r-nlme)
22234 ("r-rcpp" ,r-rcpp)
22235 ("r-rstan" ,r-rstan)
22236 ("r-rstantools" ,r-rstantools)
22237 ("r-shinystan" ,r-shinystan)))
22238 (native-inputs `(("r-knitr" ,r-knitr)))
22239 (home-page
22240 "https://github.com/paul-buerkner/brms")
22241 (synopsis
22242 "Bayesian Regression Models using 'Stan'")
22243 (description
22244 "Fit Bayesian generalized (non-)linear multivariate multilevel models
22245 using 'Stan' for full Bayesian inference. A wide range of distributions and
22246 link functions are supported, allowing users to fit -- among others -- linear,
22247 robust linear, count data, survival, response times, ordinal, zero-inflated,
22248 hurdle, and even self-defined mixture models all in a multilevel context.
22249 Further modeling options include non-linear and smooth terms, auto-correlation
22250 structures, censored data, meta-analytic standard errors, and quite a few
22251 more. In addition, all parameters of the response distribution can be
22252 predicted in order to perform distributional regression. Prior specifications
22253 are flexible and explicitly encourage users to apply prior distributions that
22254 actually reflect their beliefs. Model fit can easily be assessed and compared
22255 with posterior predictive checks and leave-one-out cross-validation.")
22256 (license license:gpl2)))
22257
22258 (define-public r-mstate
22259 (package
22260 (name "r-mstate")
22261 (version "0.2.12")
22262 (source
22263 (origin
22264 (method url-fetch)
22265 (uri (cran-uri "mstate" version))
22266 (sha256
22267 (base32
22268 "0qnhivbibzss8yfsg44cvbf73n4jj4i28rbdysl88g14ig5sabgv"))))
22269 (properties `((upstream-name . "mstate")))
22270 (build-system r-build-system)
22271 (propagated-inputs
22272 `(("r-rcolorbrewer" ,r-rcolorbrewer)
22273 ("r-survival" ,r-survival)))
22274 (home-page
22275 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
22276 (synopsis
22277 "Data Preparation, Estimation and Prediction in Multi-State Models")
22278 (description
22279 "Contains functions for data preparation, descriptives, hazard estimation
22280 and prediction with Aalen-Johansen or simulation in competing risks and
22281 multi-state models.")
22282 (license license:gpl2+)))
22283
22284 (define-public r-scatterpie
22285 (package
22286 (name "r-scatterpie")
22287 (version "0.1.4")
22288 (source
22289 (origin
22290 (method url-fetch)
22291 (uri (cran-uri "scatterpie" version))
22292 (sha256
22293 (base32
22294 "0g5sn0iv6c1q7y51j4gbbbnil5089dgk1w4q94c7h5y3x7wfrzqb"))))
22295 (properties `((upstream-name . "scatterpie")))
22296 (build-system r-build-system)
22297 (propagated-inputs
22298 `(("r-ggforce" ,r-ggforce)
22299 ("r-ggplot2" ,r-ggplot2)
22300 ("r-rlang" ,r-rlang)
22301 ("r-rvcheck" ,r-rvcheck)
22302 ("r-tidyr" ,r-tidyr)))
22303 (native-inputs
22304 `(("r-knitr" ,r-knitr)))
22305 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
22306 (synopsis "Scatter pie plot")
22307 (description
22308 "This package creates scatterpie plots, especially useful for plotting
22309 pies on a map.")
22310 (license license:artistic2.0)))
22311
22312 (define-public r-boruta
22313 (package
22314 (name "r-boruta")
22315 (version "7.0.0")
22316 (source
22317 (origin
22318 (method url-fetch)
22319 (uri (cran-uri "Boruta" version))
22320 (sha256
22321 (base32
22322 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
22323 (properties `((upstream-name . "Boruta")))
22324 (build-system r-build-system)
22325 (propagated-inputs `(("r-ranger" ,r-ranger)))
22326 (home-page "https://gitlab.com/mbq/Boruta/")
22327 (synopsis "Wrapper algorithm for all relevant feature selection")
22328 (description
22329 "This package provides an all relevant feature selection wrapper
22330 algorithm. It finds relevant features by comparing original attributes'
22331 importance with importance achievable at random, estimated using their
22332 permuted copies (shadows).")
22333 (license license:gpl2+)))
22334
22335 (define-public r-directlabels
22336 (package
22337 (name "r-directlabels")
22338 (version "2020.6.17")
22339 (source
22340 (origin
22341 (method url-fetch)
22342 (uri (cran-uri "directlabels" version))
22343 (sha256
22344 (base32
22345 "1b6v206kizz5rjw03chjvn40a7cqihjpk80h1h79z2x27hp1qi3f"))))
22346 (build-system r-build-system)
22347 (propagated-inputs
22348 `(("r-quadprog" ,r-quadprog)))
22349 (native-inputs
22350 `(("r-knitr" ,r-knitr)))
22351 (home-page "http://directlabels.r-forge.r-project.org/")
22352 (synopsis "Direct labels for multicolor plots")
22353 (description
22354 "This package provides an extensible framework for automatically placing
22355 direct labels onto multicolor plots. Label positions are described using
22356 positioning methods that can be re-used across several different plots. There
22357 are heuristics for examining @code{trellis} and @code{ggplot} objects and
22358 inferring an appropriate positioning method.")
22359 (license license:gpl3)))
22360
22361 (define-public r-lsd
22362 (package
22363 (name "r-lsd")
22364 (version "4.1-0")
22365 (source
22366 (origin
22367 (method url-fetch)
22368 (uri (cran-uri "LSD" version))
22369 (sha256
22370 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
22371 (properties `((upstream-name . "LSD")))
22372 (build-system r-build-system)
22373 (home-page "https://cran.r-project.org/web/packages/LSD/")
22374 (synopsis "Lots of superior depictions tool creates colorful plots")
22375 (description
22376 "This package creates lots of colorful plots in a multitude of variations.
22377 Try a demo of the LSD by running @code{demotour()}.")
22378 ;; Either version
22379 (license (list license:gpl2 license:gpl3))))
22380
22381 (define-public r-fourcseq
22382 (package
22383 (name "r-fourcseq")
22384 (version "1.22.1")
22385 (source
22386 (origin
22387 (method url-fetch)
22388 (uri (bioconductor-uri "FourCSeq" version))
22389 (sha256
22390 (base32 "14q1ijnqnbd9xs60sfvyqjfiypjrvhacpwp2v85yfhcxw870cx5b"))))
22391 (properties `((upstream-name . "FourCSeq")))
22392 (build-system r-build-system)
22393 (propagated-inputs
22394 `(("r-biobase" ,r-biobase)
22395 ("r-biostrings" ,r-biostrings)
22396 ("r-deseq2" ,r-deseq2)
22397 ("r-fda" ,r-fda)
22398 ("r-genomicalignments" ,r-genomicalignments)
22399 ("r-genomicranges" ,r-genomicranges)
22400 ("r-ggbio" ,r-ggbio)
22401 ("r-ggplot2" ,r-ggplot2)
22402 ("r-gtools" ,r-gtools)
22403 ("r-lsd" ,r-lsd)
22404 ("r-matrix" ,r-matrix)
22405 ("r-reshape2" ,r-reshape2)
22406 ("r-rsamtools" ,r-rsamtools)
22407 ("r-rtracklayer" ,r-rtracklayer)
22408 ("r-summarizedexperiment" ,r-summarizedexperiment)))
22409 (native-inputs
22410 `(("r-knitr" ,r-knitr)))
22411 (home-page
22412 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
22413 (synopsis "Analysis of multiplexed 4C sequencing data")
22414 (description
22415 "This package is an R package dedicated to the analysis of (multiplexed)
22416 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
22417 interactions between DNA elements and identify differential interactions
22418 between conditions. The statistical analysis in R starts with individual bam
22419 files for each sample as inputs. To obtain these files, the package contains
22420 a Python script to demultiplex libraries and trim off primer sequences. With
22421 a standard alignment software the required bam files can be then be
22422 generated.")
22423 (license license:gpl3+)))
22424
22425 (define-public r-phylogram
22426 (package
22427 (name "r-phylogram")
22428 (version "2.1.0")
22429 (source
22430 (origin
22431 (method url-fetch)
22432 (uri (cran-uri "phylogram" version))
22433 (sha256
22434 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
22435 (properties `((upstream-name . "phylogram")))
22436 (build-system r-build-system)
22437 (propagated-inputs `(("r-ape" ,r-ape)))
22438 (home-page "https://github.com/ropensci/phylogram/")
22439 (synopsis "Dendrograms for evolutionary analysis")
22440 (description
22441 "The @code{r-phylogram} package is a tool for for developing phylogenetic
22442 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
22443 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
22444 as well as several tools for command-line tree manipulation and import/export
22445 via Newick parenthetic text. This improves accessibility to the comprehensive
22446 range of object-specific analytical and tree-visualization functions found
22447 across a wide array of bioinformatic R packages.")
22448 (license license:gpl3)))
22449
22450 (define-public r-kmer
22451 (package
22452 (name "r-kmer")
22453 (version "1.1.2")
22454 (source
22455 (origin
22456 (method url-fetch)
22457 (uri (cran-uri "kmer" version))
22458 (sha256
22459 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
22460 (properties `((upstream-name . "kmer")))
22461 (build-system r-build-system)
22462 (propagated-inputs
22463 `(("r-openssl" ,r-openssl)
22464 ("r-phylogram" ,r-phylogram)
22465 ("r-rcpp" ,r-rcpp)))
22466 (home-page "https://github.com/shaunpwilkinson/kmer/")
22467 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
22468 (description
22469 "@code{r-kmer} is an R package for rapidly computing distance matrices
22470 and clustering large sequence datasets using fast alignment-free k-mer
22471 counting and recursive k-means partitioning.")
22472 (license license:gpl3)))
22473
22474 (define-public r-shapforxgboost
22475 (package
22476 (name "r-shapforxgboost")
22477 (version "0.0.4")
22478 (source
22479 (origin
22480 (method url-fetch)
22481 (uri (cran-uri "SHAPforxgboost" version))
22482 (sha256
22483 (base32
22484 "0k6bg27wqnkzv82bcahbapmqhiz6rvnx81m23zbjw58c7lwshgnq"))))
22485 (properties
22486 `((upstream-name . "SHAPforxgboost")))
22487 (build-system r-build-system)
22488 (propagated-inputs
22489 `(("r-bbmisc" ,r-bbmisc)
22490 ("r-data-table" ,r-data-table)
22491 ("r-ggextra" ,r-ggextra)
22492 ("r-ggforce" ,r-ggforce)
22493 ("r-ggplot2" ,r-ggplot2)
22494 ("r-ggpubr" ,r-ggpubr)
22495 ("r-rcolorbrewer" ,r-rcolorbrewer)
22496 ("r-xgboost" ,r-xgboost)))
22497 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
22498 (synopsis "SHAP Plots for XGBoost")
22499 (description
22500 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
22501 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
22502 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
22503 and force plot. It relies on the @code{XGBoost} package to produce SHAP
22504 values.")
22505 (license license:expat)))
22506
22507 (define-public r-rismed
22508 (package
22509 (name "r-rismed")
22510 (version "2.1.7")
22511 (source
22512 (origin
22513 (method url-fetch)
22514 (uri (cran-uri "RISmed" version))
22515 (sha256
22516 (base32
22517 "08dmkkxsmwp9b4h2g1bbx03cijn793fsnzkmbima8x9d42vxnm1l"))))
22518 (properties `((upstream-name . "RISmed")))
22519 (build-system r-build-system)
22520 (home-page "https://cran.r-project.org/web/packages/RISmed")
22521 (synopsis "Download content from NCBI databases")
22522 (description
22523 "This package provides a set of tools to extract bibliographic
22524 content from the National Center for Biotechnology Information (NCBI)
22525 databases, including PubMed. The name RISmed is a portmanteau of
22526 RIS (for Research Information Systems, a common tag format for
22527 bibliographic data) and PubMed.")
22528 (license license:gpl2+)))
22529
22530 (define-public r-semver
22531 (package
22532 (name "r-semver")
22533 (version "0.2.0")
22534 (source
22535 (origin
22536 (method url-fetch)
22537 (uri (cran-uri "semver" version))
22538 (sha256
22539 (base32
22540 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
22541 (properties `((upstream-name . "semver")))
22542 (build-system r-build-system)
22543 (propagated-inputs
22544 `(("r-assertthat" ,r-assertthat)
22545 ("r-rcpp" ,r-rcpp)))
22546 (native-inputs `(("r-knitr" ,r-knitr)))
22547 (home-page "https://github.com/johndharrison/semver")
22548 (synopsis "Parser for Semantic Versioning 2.0.0")
22549 (description
22550 "This package provides tools and functions for parsing, rendering and
22551 operating on semantic version strings. Semantic versioning is a simple set of
22552 rules and requirements that dictate how version numbers are assigned and
22553 incremented as outlined at @url{http://semver.org}.")
22554 (license license:expat)))
22555
22556 (define-public r-binman
22557 (package
22558 (name "r-binman")
22559 (version "0.1.1")
22560 (source
22561 (origin
22562 (method url-fetch)
22563 (uri (cran-uri "binman" version))
22564 (sha256
22565 (base32
22566 "0hm0h285p4v9lhrqjy8s22f1s1vmfpfla5iaycpj8vw3qb3632az"))))
22567 (properties `((upstream-name . "binman")))
22568 (build-system r-build-system)
22569 (propagated-inputs
22570 `(("r-assertthat" ,r-assertthat)
22571 ("r-httr" ,r-httr)
22572 ("r-jsonlite" ,r-jsonlite)
22573 ("r-rappdirs" ,r-rappdirs)
22574 ("r-semver" ,r-semver)
22575 ("r-xml2" ,r-xml2)
22576 ("r-yaml" ,r-yaml)))
22577 (native-inputs `(("r-knitr" ,r-knitr)))
22578 (home-page "https://github.com/ropensci/binman")
22579 (synopsis "Binary download manager")
22580 (description
22581 "This package provides tools and functions for managing the download of
22582 binary files. Binary repositories are defined in the YAML format. Defining
22583 new pre-download, download and post-download templates allow additional
22584 repositories to be added.")
22585 (license license:expat)))
22586
22587 (define-public r-wdman
22588 (package
22589 (name "r-wdman")
22590 (version "0.2.5")
22591 (source
22592 (origin
22593 (method url-fetch)
22594 (uri (cran-uri "wdman" version))
22595 (sha256
22596 (base32
22597 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
22598 (properties `((upstream-name . "wdman")))
22599 (build-system r-build-system)
22600 (propagated-inputs
22601 `(("r-assertthat" ,r-assertthat)
22602 ("r-binman" ,r-binman)
22603 ("r-processx" ,r-processx)
22604 ("r-semver" ,r-semver)
22605 ("r-yaml" ,r-yaml)))
22606 (native-inputs `(("r-knitr" ,r-knitr)))
22607 (home-page "https://docs.ropensci.org/wdman/")
22608 (synopsis "Webdriver/Selenium binary manager")
22609 (description
22610 "There are a number of binary files associated with the
22611 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
22612 @url{https://sites.google.com/a/chromium.org/chromedriver/},
22613 @url{https://github.com/mozilla/geckodriver},
22614 @url{http://phantomjs.org/download.html}, and
22615 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
22616 more information). This package provides functions to download these binaries
22617 and to manage processes involving them.")
22618 (license license:expat)))
22619
22620 (define-public r-rselenium
22621 (package
22622 (name "r-rselenium")
22623 (version "1.7.7")
22624 (source
22625 (origin
22626 (method url-fetch)
22627 (uri (cran-uri "RSelenium" version))
22628 (sha256
22629 (base32
22630 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
22631 (properties `((upstream-name . "RSelenium")))
22632 (build-system r-build-system)
22633 (propagated-inputs
22634 `(("r-binman" ,r-binman)
22635 ("r-catools" ,r-catools)
22636 ("r-httr" ,r-httr)
22637 ("r-openssl" ,r-openssl)
22638 ("r-wdman" ,r-wdman)
22639 ("r-xml" ,r-xml)))
22640 (native-inputs `(("r-knitr" ,r-knitr)))
22641 (home-page "https://docs.ropensci.org/RSelenium/")
22642 (synopsis "R bindings for Selenium WebDriver")
22643 (description
22644 "This package provides a set of R bindings for the Selenium 2.0
22645 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
22646 information) using the @code{JsonWireProtocol} (see
22647 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
22648 information). Selenium 2.0 WebDriver allows driving a web browser natively as
22649 a user would either locally or on a remote machine using the Selenium server
22650 it marks a leap forward in terms of web browser automation. Selenium
22651 automates web browsers (commonly referred to as browsers). Using RSelenium
22652 you can automate browsers locally or remotely.")
22653 (license license:agpl3+)))
22654
22655 (define-public r-conquer
22656 (package
22657 (name "r-conquer")
22658 (version "1.0.1")
22659 (source
22660 (origin
22661 (method url-fetch)
22662 (uri (cran-uri "conquer" version))
22663 (sha256
22664 (base32
22665 "1c7id7wgspma5bdcirrhw7f9fp709zxpj31klivasdbvd4jgi4vb"))))
22666 (properties `((upstream-name . "conquer")))
22667 (build-system r-build-system)
22668 (propagated-inputs
22669 `(("r-matrix" ,r-matrix)
22670 ("r-matrixstats" ,r-matrixstats)
22671 ("r-rcpp" ,r-rcpp)
22672 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22673 (home-page "https://github.com/XiaoouPan/conquer")
22674 (synopsis "Convolution-type smoothed quantile regression")
22675 (description
22676 "This package provides fast and accurate convolution-type smoothed
22677 quantile regression, implemented using Barzilai-Borwein gradient descent with
22678 a Huber regression warm start. Confidence intervals for regression
22679 coefficients are constructed using multiplier bootstrap.")
22680 (license license:gpl3)))
22681
22682 (define-public r-fastshap
22683 (package
22684 (name "r-fastshap")
22685 (version "0.0.5")
22686 (source
22687 (origin
22688 (method url-fetch)
22689 (uri (cran-uri "fastshap" version))
22690 (sha256
22691 (base32
22692 "08f25ib5mry6h8lvj0g3clc9kfl5g2wdd8x8bw455wwmbcm6x5vg"))))
22693 (properties `((upstream-name . "fastshap")))
22694 (build-system r-build-system)
22695 (propagated-inputs
22696 `(("r-abind" ,r-abind)
22697 ("r-ggplot2" ,r-ggplot2)
22698 ("r-gridextra" ,r-gridextra)
22699 ("r-matrixstats" ,r-matrixstats)
22700 ("r-plyr" ,r-plyr)
22701 ("r-rcpp" ,r-rcpp)
22702 ("r-rcpparmadillo" ,r-rcpparmadillo)
22703 ("r-tibble" ,r-tibble)))
22704 (home-page "https://github.com/bgreenwell/fastshap")
22705 (synopsis "Fast approximate Shapley values")
22706 (description
22707 "This package computes fast (relative to other implementations)
22708 approximate Shapley values for any supervised learning model. Shapley values
22709 help to explain the predictions from any black box model using ideas from game
22710 theory; see @url{Strumbel and Kononenko (2014),
22711 doi.org/10.1007/s10115-013-0679-x} for details.")
22712 (license license:gpl2+)))
22713
22714 (define-public r-metrics
22715 (package
22716 (name "r-metrics")
22717 (version "0.1.4")
22718 (source
22719 (origin
22720 (method url-fetch)
22721 (uri (cran-uri "Metrics" version))
22722 (sha256
22723 (base32
22724 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
22725 (properties `((upstream-name . "Metrics")))
22726 (build-system r-build-system)
22727 (home-page "https://github.com/mfrasco/Metrics")
22728 (synopsis "Evaluation metrics for machine learning")
22729 (description
22730 "This package provides an implementation of evaluation metrics in R that
22731 are commonly used in supervised machine learning. It implements metrics for
22732 regression, time series, binary classification, classification, and
22733 information retrieval problems. It has zero dependencies and a consistent,
22734 simple interface for all functions.")
22735 (license license:bsd-3)))
22736
22737 (define-public r-iml
22738 (package
22739 (name "r-iml")
22740 (version "0.10.0")
22741 (source
22742 (origin
22743 (method url-fetch)
22744 (uri (cran-uri "iml" version))
22745 (sha256
22746 (base32
22747 "0xm3q42qahq798ilgg050df0mahhbdfd3fx3i7cpx606h38si0x7"))))
22748 (properties `((upstream-name . "iml")))
22749 (build-system r-build-system)
22750 (propagated-inputs
22751 `(("r-checkmate" ,r-checkmate)
22752 ("r-data-table" ,r-data-table)
22753 ("r-formula" ,r-formula)
22754 ("r-future" ,r-future)
22755 ("r-future-apply" ,r-future-apply)
22756 ("r-ggplot2" ,r-ggplot2)
22757 ("r-gridextra" ,r-gridextra)
22758 ("r-metrics" ,r-metrics)
22759 ("r-prediction" ,r-prediction)
22760 ("r-r6" ,r-r6)))
22761 (native-inputs `(("r-knitr" ,r-knitr)))
22762 (home-page "https://github.com/christophM/iml")
22763 (synopsis "Interpretable machine learning")
22764 (description
22765 "This package provides interpretability methods to analyze the behavior
22766 and predictions of any machine learning model. Implemented methods are:
22767
22768 @itemize
22769 @item Feature importance described by Fisher et al. (2018),
22770 @item accumulated local effects plots described by Apley (2018),
22771 @item partial dependence plots described by Friedman (2001),
22772 @item individual conditional expectation ('ice') plots described by Goldstein
22773 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
22774 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
22775 @item the Shapley Value described by Strumbelj et. al (2014)
22776 @url{https://doi.org/10.1007/s10115-013-0679-x},
22777 @item feature interactions described by Friedman et. al
22778 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
22779 @end itemize
22780 ")
22781 (license license:expat)))
22782
22783 (define-public r-goftest
22784 (package
22785 (name "r-goftest")
22786 (version "1.2-2")
22787 (source
22788 (origin
22789 (method url-fetch)
22790 (uri (cran-uri "goftest" version))
22791 (sha256
22792 (base32
22793 "0ivnkqhv5xgiv05dm648nngacymd8x8g0fyppv3bc0mhcqk9k5z4"))))
22794 (properties `((upstream-name . "goftest")))
22795 (build-system r-build-system)
22796 (home-page "https://github.com/baddstats/goftest")
22797 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
22798 (description
22799 "This package provides Cramer-Von Mises and Anderson-Darling tests of
22800 goodness-of-fit for continuous univariate distributions, using efficient
22801 algorithms.")
22802 (license license:gpl2+)))
22803
22804 (define-public r-tensor
22805 (package
22806 (name "r-tensor")
22807 (version "1.5")
22808 (source
22809 (origin
22810 (method url-fetch)
22811 (uri (cran-uri "tensor" version))
22812 (sha256
22813 (base32
22814 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
22815 (properties `((upstream-name . "tensor")))
22816 (build-system r-build-system)
22817 (home-page "https://cran.r-project.org/web/packages/tensor/")
22818 (synopsis "Tensor product of arrays")
22819 (description
22820 "The tensor product of two arrays is notionally an outer product of the
22821 arrays collapsed in specific extents by summing along the appropriate
22822 diagonals. This package allows you to compute the tensor product of arrays.")
22823 (license license:gpl2+)))
22824
22825 (define-public r-spatstat-utils
22826 (package
22827 (name "r-spatstat-utils")
22828 (version "1.17-0")
22829 (source
22830 (origin
22831 (method url-fetch)
22832 (uri (cran-uri "spatstat.utils" version))
22833 (sha256
22834 (base32
22835 "08h9kzkkxvlnngxnv5mdylfali5jj4yhgbr8kvf8l7glswz6ik9r"))))
22836 (properties
22837 `((upstream-name . "spatstat.utils")))
22838 (build-system r-build-system)
22839 (home-page "http://www.spatstat.org")
22840 (synopsis "Utility functions for spatstat")
22841 (description
22842 "This package contains utility functions for the @code{spatstat} package
22843 which may also be useful for other purposes.")
22844 (license license:gpl2+)))
22845
22846 (define-public r-spatstat-data
22847 (package
22848 (name "r-spatstat-data")
22849 (version "1.4-3")
22850 (source
22851 (origin
22852 (method url-fetch)
22853 (uri (cran-uri "spatstat.data" version))
22854 (sha256
22855 (base32
22856 "18lfj5vkwxgf5w9qz0g5al3zy8y2yi3bnd13w24hszfc82nbcmc9"))))
22857 (properties `((upstream-name . "spatstat.data")))
22858 (build-system r-build-system)
22859 (propagated-inputs
22860 `(("r-matrix" ,r-matrix)
22861 ("r-spatstat-utils" ,r-spatstat-utils)))
22862 (home-page "http://www.spatstat.org")
22863 (synopsis "Datasets for spatstat")
22864 (description
22865 "This package contains all the datasets for the @code{spatstat}
22866 package.")
22867 (license license:gpl2+)))
22868
22869 (define-public r-spatstat
22870 (package
22871 (name "r-spatstat")
22872 (version "1.64-1")
22873 (source
22874 (origin
22875 (method url-fetch)
22876 (uri (cran-uri "spatstat" version))
22877 (sha256
22878 (base32
22879 "06jmxfs9kz9qqi3ichfgn8dglwb87kq2nl578p83za5psv8cfgya"))))
22880 (properties `((upstream-name . "spatstat")))
22881 (build-system r-build-system)
22882 (propagated-inputs
22883 `(("r-abind" ,r-abind)
22884 ("r-deldir" ,r-deldir)
22885 ("r-goftest" ,r-goftest)
22886 ("r-matrix" ,r-matrix)
22887 ("r-mgcv" ,r-mgcv)
22888 ("r-nlme" ,r-nlme)
22889 ("r-polyclip" ,r-polyclip)
22890 ("r-rpart" ,r-rpart)
22891 ("r-spatstat-data" ,r-spatstat-data)
22892 ("r-spatstat-utils" ,r-spatstat-utils)
22893 ("r-tensor" ,r-tensor)))
22894 (home-page "http://www.spatstat.org")
22895 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
22896 (description
22897 "This package provides a comprehensive toolbox for analysing Spatial
22898 Point Patterns. It is focused mainly on two-dimensional point patterns,
22899 including multitype/marked points, in any spatial region. It also supports
22900 three-dimensional point patterns, space-time point patterns in any number of
22901 dimensions, point patterns on a linear network, and patterns of other
22902 geometrical objects. It supports spatial covariate data such as pixel images
22903 and contains over 2000 functions for plotting spatial data, exploratory data
22904 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
22905 formal inference.")
22906 (license license:gpl2+)))
22907
22908 (define-public r-gaston
22909 (package
22910 (name "r-gaston")
22911 (version "1.5.6")
22912 (source
22913 (origin
22914 (method url-fetch)
22915 (uri (cran-uri "gaston" version))
22916 (sha256
22917 (base32
22918 "1bx6iqfjb9lf3vn0z7v8wjv9m7issvqsnymm4qsgl3622s6qz6rg"))))
22919 (properties `((upstream-name . "gaston")))
22920 (build-system r-build-system)
22921 (inputs `(("zlib" ,zlib)))
22922 (propagated-inputs
22923 `(("r-rcpp" ,r-rcpp)
22924 ("r-rcppeigen" ,r-rcppeigen)
22925 ("r-rcppparallel" ,r-rcppparallel)))
22926 (native-inputs `(("r-knitr" ,r-knitr)))
22927 (home-page "https://cran.r-project.org/web/packages/gaston/")
22928 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
22929 (description
22930 "This is a package for the manipulation of genetic data (SNPs).
22931 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
22932 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
22933 for linear mixed models (AIREML).")
22934 (license license:gpl3)))
22935
22936 (define-public r-cpp11
22937 (package
22938 (name "r-cpp11")
22939 (version "0.2.1")
22940 (source
22941 (origin
22942 (method url-fetch)
22943 (uri (cran-uri "cpp11" version))
22944 (sha256
22945 (base32
22946 "1113y61lj4cg1d2yjavdx9zih5rzb4pnxmj5v3sr4bhzlxz2scda"))))
22947 (properties `((upstream-name . "cpp11")))
22948 (build-system r-build-system)
22949 (native-inputs `(("r-knitr" ,r-knitr)))
22950 (home-page "https://github.com/r-lib/cpp11")
22951 (synopsis "C++11 Interface for R's C Interface")
22952 (description
22953 "This package provides a header only, C++11 interface to R's C interface.
22954 Compared to other approaches @code{cpp11} strives to be safe against long
22955 jumps from the C API as well as C++ exceptions, conform to normal R function
22956 semantics and supports interaction with @code{ALTREP} vectors.")
22957 (license license:expat)))
22958
22959 (define-public r-rcppziggurat
22960 (package
22961 (name "r-rcppziggurat")
22962 (version "0.1.5")
22963 (source
22964 (origin
22965 (method url-fetch)
22966 (uri (cran-uri "RcppZiggurat" version))
22967 (sha256
22968 (base32
22969 "0zmr3nvm5j0fpwxk3x9kxpwqbr66ldfvd10zy8xlgjbslz9myvfv"))))
22970 (properties `((upstream-name . "RcppZiggurat")))
22971 (build-system r-build-system)
22972 (propagated-inputs
22973 `(("r-rcpp" ,r-rcpp)
22974 ("r-rcppgsl" ,r-rcppgsl)))
22975 (native-inputs `(("r-knitr" ,r-knitr)))
22976 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
22977 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
22978 (description
22979 "The Ziggurat generator for normally distributed random numbers,
22980 originally proposed by Marsaglia and Tsang (2000,
22981 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
22982 times starting with Leong et al (2005,
22983 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
22984 aggregation for comparing different implementations in order to provide a
22985 'faster but good enough' alternative for use with R and C++ code.")
22986 (license license:gpl2+)))
22987
22988 (define-public r-rfast
22989 (package
22990 (name "r-rfast")
22991 (version "1.9.9")
22992 (source
22993 (origin
22994 (method url-fetch)
22995 (uri (cran-uri "Rfast" version))
22996 (sha256
22997 (base32
22998 "18m8xhg24kygwhq7avdp1hibilicb5wppi2wdmc36fkqljc274y0"))))
22999 (properties `((upstream-name . "Rfast")))
23000 (build-system r-build-system)
23001 (propagated-inputs
23002 `(("r-rcpp" ,r-rcpp)
23003 ("r-rcpparmadillo" ,r-rcpparmadillo)
23004 ("r-rcppziggurat" ,r-rcppziggurat)))
23005 (home-page "https://github.com/RfastOfficial/Rfast")
23006 (synopsis "Collection of efficient and fast R functions")
23007 (description
23008 "This package provides a collection of fast (utility) functions for data
23009 analysis. Column- and row- wise means, medians, variances, minimums,
23010 maximums, many t, F and G-square tests, many regressions (normal, logistic,
23011 Poisson), are some of the many fast functions.")
23012 (license license:gpl2+)))
23013
23014 (define-public r-clusterr
23015 (package
23016 (name "r-clusterr")
23017 (version "1.2.2")
23018 (source
23019 (origin
23020 (method url-fetch)
23021 (uri (cran-uri "ClusterR" version))
23022 (sha256
23023 (base32
23024 "1ky172bk15a78hky77vl60j7c81nq2495sxjrv53is25nkac7sjm"))))
23025 (properties `((upstream-name . "ClusterR")))
23026 (build-system r-build-system)
23027 (propagated-inputs
23028 `(("r-ggplot2" ,r-ggplot2)
23029 ("r-gmp" ,r-gmp)
23030 ("r-gtools" ,r-gtools)
23031 ("r-rcpp" ,r-rcpp)
23032 ("r-rcpparmadillo" ,r-rcpparmadillo)))
23033 (native-inputs `(("r-knitr" ,r-knitr)))
23034 (home-page "https://github.com/mlampros/ClusterR")
23035 (synopsis "Clustering")
23036 (description
23037 "This package provides Gaussian mixture models, k-means,
23038 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
23039 option to plot, validate, predict (new data) and estimate the optimal number
23040 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
23041 the computationally intensive parts of the functions. For more information,
23042 see
23043
23044 @enumerate
23045 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
23046 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
23047 @url{https://doi.org/10.18637/jss.v001.i04};
23048 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
23049 Library, @url{https://doi.org/10.1145/1772690.1772862};
23050 @item \"Armadillo: a template-based C++ library
23051 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
23052 Software, @url{https://doi.org/10.21105/joss.00026};
23053 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
23054 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
23055 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
23056 @end enumerate
23057 ")
23058 (license license:gpl3)))
23059
23060 (define-public r-spectrum
23061 (package
23062 (name "r-spectrum")
23063 (version "1.1")
23064 (source
23065 (origin
23066 (method url-fetch)
23067 (uri (cran-uri "Spectrum" version))
23068 (sha256
23069 (base32
23070 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
23071 (properties `((upstream-name . "Spectrum")))
23072 (build-system r-build-system)
23073 (propagated-inputs
23074 `(("r-clusterr" ,r-clusterr)
23075 ("r-diptest" ,r-diptest)
23076 ("r-ggplot2" ,r-ggplot2)
23077 ("r-rfast" ,r-rfast)))
23078 (native-inputs `(("r-knitr" ,r-knitr)))
23079 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
23080 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
23081 (description
23082 "This package provides a self-tuning spectral clustering method for
23083 single or multi-view data. Spectrum uses a new type of adaptive density aware
23084 kernel that strengthens connections in the graph based on common nearest
23085 neighbours. It uses a tensor product graph data integration and diffusion
23086 procedure to integrate different data sources and reduce noise. Spectrum uses
23087 either the eigengap or multimodality gap heuristics to determine the number of
23088 clusters. The method is sufficiently flexible so that a wide range of
23089 Gaussian and non-Gaussian structures can be clustered with automatic selection
23090 of K.")
23091 (license license:agpl3+)))
23092
23093 (define-public r-nabor
23094 (package
23095 (name "r-nabor")
23096 (version "0.5.0")
23097 (source
23098 (origin
23099 (method url-fetch)
23100 (uri (cran-uri "nabor" version))
23101 (sha256
23102 (base32
23103 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
23104 (properties `((upstream-name . "nabor")))
23105 (build-system r-build-system)
23106 (propagated-inputs
23107 `(("r-bh" ,r-bh)
23108 ("r-rcpp" ,r-rcpp)
23109 ("r-rcppeigen" ,r-rcppeigen)))
23110 (home-page "https://cran.r-project.org/web/packages/nabor/")
23111 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
23112 (description
23113 "This package provides an R wrapper for libnabo, an exact or approximate
23114 k nearest neighbour library which is optimised for low dimensional
23115 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
23116 designed as a drop-in replacement for the RANN function @code{nn2}. In
23117 addition, objects which include the k-d tree search structure can be returned
23118 to speed up repeated queries of the same set of target points.")
23119 (license license:bsd-3)))