gnu: r-xfun: Update to 0.22.
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016 Pjotr Prins <pjotr.guix@thebird.nl>
5 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
6 ;;; Copyright © 2016, 2017, 2018, 2020 Roel Janssen <roel@gnu.org>
7 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
8 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
9 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
10 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
11 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
12 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
13 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
14 ;;; Copyright © 2018, 2020, 2021 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
15 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
16 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
17 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
18 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
19 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
20 ;;; Copyright © 2019, 2020 Wiktor Żelazny <wzelazny@vurv.cz>
21 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
22 ;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
23 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
24 ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
25 ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
26 ;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
27 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
28 ;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
29 ;;; Copyright © 2020, 2021 Lars-Dominik Braun <ldb@leibniz-psychology.org>
30 ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
31 ;;; Copyright © 2020 Antoine Côté <antoine.cote@posteo.net>
32 ;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
33 ;;; Copyright © 2020 Magali Lemes <magalilemes00@gmail.com>
34 ;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com>
35 ;;; Copyright © 2020 Aniket Patil <aniket112.patil@gmail.com>
36 ;;;
37 ;;; This file is part of GNU Guix.
38 ;;;
39 ;;; GNU Guix is free software; you can redistribute it and/or modify it
40 ;;; under the terms of the GNU General Public License as published by
41 ;;; the Free Software Foundation; either version 3 of the License, or (at
42 ;;; your option) any later version.
43 ;;;
44 ;;; GNU Guix is distributed in the hope that it will be useful, but
45 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
46 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
47 ;;; GNU General Public License for more details.
48 ;;;
49 ;;; You should have received a copy of the GNU General Public License
50 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
51
52 (define-module (gnu packages cran)
53 #:use-module ((guix licenses) #:prefix license:)
54 #:use-module (guix packages)
55 #:use-module (guix download)
56 #:use-module (guix git-download)
57 #:use-module (guix utils)
58 #:use-module (guix build-system gnu)
59 #:use-module (guix build-system r)
60 #:use-module (gnu packages)
61 #:use-module (gnu packages algebra)
62 #:use-module (gnu packages autotools)
63 #:use-module (gnu packages base)
64 #:use-module (gnu packages bioinformatics)
65 #:use-module (gnu packages c)
66 #:use-module (gnu packages compression)
67 #:use-module (gnu packages crypto)
68 #:use-module (gnu packages curl)
69 #:use-module (gnu packages databases)
70 #:use-module (gnu packages fontutils)
71 #:use-module (gnu packages fribidi)
72 #:use-module (gnu packages gcc)
73 #:use-module (gnu packages geo)
74 #:use-module (gnu packages ghostscript)
75 #:use-module (gnu packages gl)
76 #:use-module (gnu packages gnome)
77 #:use-module (gnu packages graph)
78 #:use-module (gnu packages gtk)
79 #:use-module (gnu packages haskell-xyz)
80 #:use-module (gnu packages icu4c)
81 #:use-module (gnu packages image)
82 #:use-module (gnu packages imagemagick)
83 #:use-module (gnu packages java)
84 #:use-module (gnu packages javascript)
85 #:use-module (gnu packages libevent)
86 #:use-module (gnu packages lisp-xyz)
87 #:use-module (gnu packages machine-learning)
88 #:use-module (gnu packages maths)
89 #:use-module (gnu packages mpi)
90 #:use-module (gnu packages multiprecision)
91 #:use-module (gnu packages networking)
92 #:use-module (gnu packages node)
93 #:use-module (gnu packages pcre)
94 #:use-module (gnu packages pdf)
95 #:use-module (gnu packages perl)
96 #:use-module (gnu packages pkg-config)
97 #:use-module (gnu packages pulseaudio) ;libsndfile
98 #:use-module (gnu packages python)
99 #:use-module (gnu packages python-xyz)
100 #:use-module (gnu packages sqlite)
101 #:use-module (gnu packages statistics)
102 #:use-module (gnu packages tcl)
103 #:use-module (gnu packages textutils)
104 #:use-module (gnu packages tls)
105 #:use-module (gnu packages version-control)
106 #:use-module (gnu packages web)
107 #:use-module (gnu packages xml)
108 #:use-module (gnu packages xorg))
109
110 (define-public r-brio
111 (package
112 (name "r-brio")
113 (version "1.1.1")
114 (source
115 (origin
116 (method url-fetch)
117 (uri (cran-uri "brio" version))
118 (sha256
119 (base32
120 "0ai2pqw5zk11r0rl2xshsq095ix1sdp2vjlixz2qxvy27x145ykh"))))
121 (properties `((upstream-name . "brio")))
122 (build-system r-build-system)
123 (home-page "https://github.com/r-lib/brio")
124 (synopsis "Basic R input output")
125 (description
126 "This package provides functions to handle basic input output. These
127 functions always read and write UTF-8 (8-bit Unicode Transformation Format)
128 files and provide more explicit control over line endings.")
129 (license license:expat)))
130
131 (define-public r-cachem
132 (package
133 (name "r-cachem")
134 (version "1.0.4")
135 (source
136 (origin
137 (method url-fetch)
138 (uri (cran-uri "cachem" version))
139 (sha256
140 (base32
141 "1b1gk837rk9kbfq385ybrrk12ckxwvhjvf0z9635l3vw49wal4mh"))))
142 (properties `((upstream-name . "cachem")))
143 (build-system r-build-system)
144 (propagated-inputs
145 `(("r-fastmap" ,r-fastmap)
146 ("r-rlang" ,r-rlang)))
147 (home-page "https://cachem.r-lib.org/")
148 (synopsis "Cache R objects with automatic pruning")
149 (description
150 "This package provides key-value stores with automatic pruning. Caches
151 can limit either their total size or the age of the oldest object (or both),
152 automatically pruning objects to maintain the constraints.")
153 (license license:expat)))
154
155 (define-public r-diffobj
156 (package
157 (name "r-diffobj")
158 (version "0.3.3")
159 (source
160 (origin
161 (method url-fetch)
162 (uri (cran-uri "diffobj" version))
163 (sha256
164 (base32
165 "1x3d5sk8mk0s2d7dq8wxi1zv6krlx33n22ls2jwnb58b8xrmakj1"))))
166 (properties `((upstream-name . "diffobj")))
167 (build-system r-build-system)
168 (propagated-inputs `(("r-crayon" ,r-crayon)))
169 (native-inputs `(("r-knitr" ,r-knitr)))
170 (home-page "https://github.com/brodieG/diffobj")
171 (synopsis "Diffs for R objects")
172 (description
173 "Generate a colorized diff of two R objects for an intuitive
174 visualization of their differences.")
175 (license license:gpl2+)))
176
177 (define-public r-waldo
178 (package
179 (name "r-waldo")
180 (version "0.2.5")
181 (source
182 (origin
183 (method url-fetch)
184 (uri (cran-uri "waldo" version))
185 (sha256
186 (base32
187 "09jhwpgd6hg4qyip4r7wzpjz0jr139fyspd5ncriqimp522snqbr"))))
188 (properties `((upstream-name . "waldo")))
189 (build-system r-build-system)
190 (propagated-inputs
191 `(("r-cli" ,r-cli)
192 ("r-diffobj" ,r-diffobj)
193 ("r-fansi" ,r-fansi)
194 ("r-glue" ,r-glue)
195 ("r-rematch2" ,r-rematch2)
196 ("r-rlang" ,r-rlang)
197 ("r-tibble" ,r-tibble)))
198 (home-page "https://github.com/r-lib/waldo")
199 (synopsis "Find differences between R objects")
200 (description
201 "Compare complex R objects and reveal the key differences. This package
202 was designed particularly for use in testing packages where being able to
203 quickly isolate key differences makes understanding test failures much
204 easier.")
205 (license license:expat)))
206
207 (define-public r-rticles
208 (package
209 (name "r-rticles")
210 (version "0.19")
211 (source
212 (origin
213 (method url-fetch)
214 (uri (cran-uri "rticles" version))
215 (sha256
216 (base32
217 "1zcj5y54z1max1df9j2iclm6zlcic4wj684y18wcnmmdwfs51818"))))
218 (properties `((upstream-name . "rticles")))
219 (build-system r-build-system)
220 (propagated-inputs
221 `(("r-knitr" ,r-knitr)
222 ("r-rmarkdown" ,r-rmarkdown)
223 ("r-tinytex" ,r-tinytex)
224 ("r-xfun" ,r-xfun)
225 ("r-yaml" ,r-yaml)))
226 (home-page "https://github.com/rstudio/rticles")
227 (synopsis "Article formats for R Markdown")
228 (description
229 "This package provides a suite of custom R Markdown formats and templates
230 for authoring journal articles and conference submissions.")
231 (license license:gpl3)))
232
233 (define-public r-bezier
234 (package
235 (name "r-bezier")
236 (version "1.1.2")
237 (source (origin
238 (method url-fetch)
239 (uri (cran-uri "bezier" version))
240 (sha256
241 (base32
242 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
243 (build-system r-build-system)
244 (home-page "https://cran.r-project.org/web/packages/bezier/")
245 (synopsis "Bezier curve and spline toolkit")
246 (description
247 "This package is a toolkit for working with Bezier curves and splines.
248 The package provides functions for point generation, arc length estimation,
249 degree elevation and curve fitting.")
250 (license license:gpl2+)))
251
252 (define-public r-v8
253 (package
254 (name "r-v8")
255 (version "3.4.0")
256 (source
257 (origin
258 (method url-fetch)
259 (uri (cran-uri "V8" version))
260 (sha256
261 (base32
262 "1g9z22pc8ydx1yhv57ww2d2jg5hvrl7ilwa79x89zgn17jha5j7m"))))
263 (properties `((upstream-name . "V8")))
264 (build-system r-build-system)
265 (arguments
266 `(#:phases
267 (modify-phases %standard-phases
268 (add-after 'unpack 'find-v8
269 (lambda* (#:key inputs #:allow-other-keys)
270 (substitute* "configure"
271 (("^PKG_LIBS=.*")
272 (string-append "PKG_LIBS="
273 (assoc-ref inputs "node")
274 "/lib/libnode.so.64\n")))
275 (setenv "INCLUDE_DIR"
276 (string-append
277 (assoc-ref inputs "node")
278 "/include/node"))
279 (setenv "LIB_DIR"
280 (string-append
281 (assoc-ref inputs "node") "/lib"))
282 #t)))))
283 (inputs
284 `(("node" ,libnode)))
285 (propagated-inputs
286 `(("r-curl" ,r-curl)
287 ("r-jsonlite" ,r-jsonlite)
288 ("r-rcpp" ,r-rcpp)))
289 (native-inputs
290 `(("r-knitr" ,r-knitr)))
291 (home-page "https://jeroen.cran.dev/V8")
292 (synopsis "Embedded JavaScript and WebAssembly engine for R")
293 (description
294 "This package provides an R interface to V8: Google's JavaScript and
295 WebAssembly engine.")
296 (license license:expat)))
297
298 (define-public r-dot
299 (package
300 (name "r-dot")
301 (version "0.1")
302 (source
303 (origin
304 (method url-fetch)
305 (uri (cran-uri "DOT" version))
306 (sha256
307 (base32
308 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
309 (properties `((upstream-name . "DOT")))
310 (build-system r-build-system)
311 (propagated-inputs
312 `(("r-v8" ,r-v8)))
313 (home-page "http://haghish.com/dot")
314 (synopsis "Render and Export DOT Graphs in R")
315 (description
316 "This package provides tools to render DOT diagram markup language in R
317 and also provides the possibility to export the graphs in PostScript and
318 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
319 programming packages such as @code{knitr} and @code{rmarkdown}.")
320 (license license:expat)))
321
322 (define-public r-clipr
323 (package
324 (name "r-clipr")
325 (version "0.7.1")
326 (source
327 (origin
328 (method url-fetch)
329 (uri (cran-uri "clipr" version))
330 (sha256
331 (base32
332 "1ywa4kipwc2d7na6iiz3wzdah99h6aynnh74yxl3nzl40xxlgbgz"))))
333 (build-system r-build-system)
334 (native-inputs
335 `(("r-knitr" ,r-knitr)))
336 (home-page "https://github.com/mdlincoln/clipr")
337 (synopsis "Read and write from the system clipboard")
338 (description
339 "This package provides simple utility functions to read from and write to
340 the system clipboards.")
341 (license license:gpl3)))
342
343 (define-public r-zoo
344 (package
345 (name "r-zoo")
346 (version "1.8-9")
347 (source (origin
348 (method url-fetch)
349 (uri (cran-uri "zoo" version))
350 (sha256
351 (base32
352 "18vjywalpgzqyk66gajb8x1yp8avdaaf11ykynld9fd8cy82bgmp"))))
353 (build-system r-build-system)
354 (propagated-inputs
355 `(("r-lattice" ,r-lattice)))
356 (home-page "http://zoo.R-Forge.R-project.org/")
357 (synopsis "S3 infrastructure for regular and irregular time series")
358 (description "This package contains an S3 class with methods for totally
359 ordered indexed observations. It is particularly aimed at irregular time
360 series of numeric vectors/matrices and factors.")
361 (license license:gpl2+)))
362
363 (define-public r-ggalluvial
364 (package
365 (name "r-ggalluvial")
366 (version "0.12.3")
367 (source (origin
368 (method url-fetch)
369 (uri (cran-uri "ggalluvial" version))
370 (sha256
371 (base32
372 "0mkan9gxg3yxjism22yxbhvlh2lh7wpbrqpb355za790prcmjbh3"))))
373 (properties `((upstream-name . "ggalluvial")))
374 (build-system r-build-system)
375 (propagated-inputs
376 `(("r-dplyr" ,r-dplyr)
377 ("r-ggplot2" ,r-ggplot2)
378 ("r-lazyeval" ,r-lazyeval)
379 ("r-rlang" ,r-rlang)
380 ("r-tidyr" ,r-tidyr)
381 ("r-tidyselect" ,r-tidyselect)))
382 (native-inputs
383 `(("r-knitr" ,r-knitr)))
384 (home-page "http://corybrunson.github.io/ggalluvial/")
385 (synopsis "Alluvial plots for ggplot2")
386 (description "This package provides alluvial plots for @code{ggplot2}.
387 Alluvial plots use variable-width ribbons and stacked bar plots to represent
388 multi-dimensional or repeated-measures data with categorical or ordinal
389 variables.")
390 (license license:gpl3)))
391
392 (define-public r-ggpmisc
393 (package
394 (name "r-ggpmisc")
395 (version "0.3.8-1")
396 (source (origin
397 (method url-fetch)
398 (uri (cran-uri "ggpmisc" version))
399 (sha256
400 (base32
401 "0kcrh73nwha52vl6z35wafmqs5lsdh2p4nqvi2ir70cv1k5y46zf"))))
402 (build-system r-build-system)
403 (propagated-inputs
404 `(("r-dplyr" ,r-dplyr)
405 ("r-generics" ,r-generics)
406 ("r-glue" ,r-glue)
407 ("r-ggplot2" ,r-ggplot2)
408 ("r-gridextra" ,r-gridextra)
409 ("r-lubridate" ,r-lubridate)
410 ("r-magrittr" ,r-magrittr)
411 ("r-mass" ,r-mass)
412 ("r-plyr" ,r-plyr)
413 ("r-polynom" ,r-polynom)
414 ("r-rlang" ,r-rlang)
415 ("r-scales" ,r-scales)
416 ("r-splus2r" ,r-splus2r)
417 ("r-stringr" ,r-stringr)
418 ("r-tibble" ,r-tibble)
419 ("r-xts" ,r-xts)
420 ("r-zoo" ,r-zoo)))
421 (native-inputs
422 `(("r-knitr" ,r-knitr)))
423 (home-page "https://www.r4photobiology.info/")
424 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
425 (description "This package provides extensions to @code{ggplot2},
426 respecting the grammar of its graphics paradigm.")
427 (license license:gpl2+)))
428
429 (define-public r-gprofiler
430 (package
431 (name "r-gprofiler")
432 (version "0.7.0")
433 (source
434 (origin
435 (method url-fetch)
436 (uri (cran-uri "gProfileR" version))
437 (sha256
438 (base32
439 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
440 (properties `((upstream-name . "gProfileR")))
441 (build-system r-build-system)
442 (propagated-inputs
443 `(("r-plyr" ,r-plyr)
444 ("r-rcurl" ,r-rcurl)))
445 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
446 (synopsis "Interface to the g:Profiler toolkit")
447 (description
448 "This package provides tools for functional enrichment analysis,
449 gene identifier conversion and mapping homologous genes across related
450 organisms via the @code{g:Profiler} toolkit.")
451 (license license:gpl2+)))
452
453 (define-public r-gprofiler2
454 (package
455 (name "r-gprofiler2")
456 (version "0.2.0")
457 (source
458 (origin
459 (method url-fetch)
460 (uri (cran-uri "gprofiler2" version))
461 (sha256
462 (base32
463 "0q8hl3gdxy34c0181ql405fdklz82nfvmwdcafd5mzf935rjpyjg"))))
464 (properties `((upstream-name . "gprofiler2")))
465 (build-system r-build-system)
466 (propagated-inputs
467 `(("r-crosstalk" ,r-crosstalk)
468 ("r-dplyr" ,r-dplyr)
469 ("r-ggplot2" ,r-ggplot2)
470 ("r-gridextra" ,r-gridextra)
471 ("r-jsonlite" ,r-jsonlite)
472 ("r-plotly" ,r-plotly)
473 ("r-rcurl" ,r-rcurl)
474 ("r-tidyr" ,r-tidyr)
475 ("r-viridislite" ,r-viridislite)))
476 (native-inputs `(("r-knitr" ,r-knitr)))
477 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
478 (synopsis "Interface to the g:Profiler toolset")
479 (description
480 "This package provides a toolset for functional enrichment analysis and
481 visualization, gene/protein/SNP identifier conversion and mapping orthologous
482 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
483 The main tools are:
484
485 @enumerate
486 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
487 lists;
488 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
489 various namespaces;
490 @item @code{g:Orth}, orthology search across species;
491 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
492 genes and variant effects.
493 @end enumerate
494
495 This package is an R interface corresponding to the 2019 update of
496 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
497 higher.")
498 (license license:gpl2+)))
499
500 (define-public r-oenb
501 (package
502 (name "r-oenb")
503 (version "0.0.1")
504 (source
505 (origin
506 (method url-fetch)
507 (uri (cran-uri "oenb" version))
508 (sha256
509 (base32
510 "1x1jlqp6r27c4gb7wafzpmh5rq6yq61a2d395r5lsmv2g5jb4biz"))))
511 (properties `((upstream-name . "oenb")))
512 (build-system r-build-system)
513 (propagated-inputs
514 `(("r-dplyr" ,r-dplyr)
515 ("r-xml" ,r-xml)))
516 (native-inputs `(("r-knitr" ,r-knitr)))
517 (home-page "https://github.com/franzmohr/oenb")
518 (synopsis "Tools for the OeNB Data Web Service")
519 (description
520 "Tools to access data from the data web service of the
521 @acronym{OeNB, Oesterreichische Nationalbank},
522 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
523 (license license:gpl2+)))
524
525 (define-public r-scales
526 (package
527 (name "r-scales")
528 (version "1.1.1")
529 (source
530 (origin
531 (method url-fetch)
532 (uri (cran-uri "scales" version))
533 (sha256
534 (base32 "019ps0njjc0rzrjygqiyn8b9vp0c3c0jd56h1yi19wzi49jvdcj0"))))
535 (build-system r-build-system)
536 (propagated-inputs
537 `(("r-farver" ,r-farver)
538 ("r-labeling" ,r-labeling)
539 ("r-lifecycle" ,r-lifecycle)
540 ("r-munsell" ,r-munsell)
541 ("r-rcolorbrewer" ,r-rcolorbrewer)
542 ("r-r6" ,r-r6)
543 ("r-viridislite" ,r-viridislite)))
544 (home-page "https://github.com/hadley/scales")
545 (synopsis "Scale functions for visualization")
546 (description
547 "This package provides graphical scales that map data to aesthetics, and
548 provides methods for automatically determining breaks and labels for axes and
549 legends.")
550 (license license:expat)))
551
552 (define-public r-pheatmap
553 (package
554 (name "r-pheatmap")
555 (version "1.0.12")
556 (source
557 (origin
558 (method url-fetch)
559 (uri (cran-uri "pheatmap" version))
560 (sha256
561 (base32
562 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
563 (build-system r-build-system)
564 (propagated-inputs
565 `(("r-gtable" ,r-gtable)
566 ("r-rcolorbrewer" ,r-rcolorbrewer)
567 ("r-scales" ,r-scales)))
568 (home-page "https://cran.r-project.org/web/packages/pheatmap")
569 (synopsis "Pretty heatmaps")
570 (description
571 "This package provides an implementation of heatmaps that offers more
572 control over dimensions and appearance.")
573 (license license:gpl2+)))
574
575 (define-public r-ecp
576 (package
577 (name "r-ecp")
578 (version "3.1.3")
579 (source (origin
580 (method url-fetch)
581 (uri (cran-uri "ecp" version))
582 (sha256
583 (base32
584 "0n602jssl6rf596nwm6hbl7s9vdlqi20w8mrhxicj373mw5v22m8"))))
585 (build-system r-build-system)
586 (propagated-inputs
587 `(("r-rcpp" ,r-rcpp)))
588 (home-page "https://cran.r-project.org/web/packages/ecp/")
589 (synopsis "Multiple change-point analysis of multivariate data")
590 (description
591 "This package implements various procedures for finding multiple
592 change-points. Two methods make use of dynamic programming and pruning, with
593 no distributional assumptions other than the existence of certain absolute
594 moments in one method. Hierarchical and exact search methods are included.
595 All methods return the set of estimated change-points as well as other summary
596 information.")
597 (license license:gpl2+)))
598
599 (define-public r-ellipsis
600 (package
601 (name "r-ellipsis")
602 (version "0.3.1")
603 (source
604 (origin
605 (method url-fetch)
606 (uri (cran-uri "ellipsis" version))
607 (sha256
608 (base32
609 "1nvmkcca57d9067rcggw1gby80ibx5hplk2myz0cs9zwilaib2jg"))))
610 (build-system r-build-system)
611 (propagated-inputs
612 `(("r-rlang" ,r-rlang)))
613 (home-page "https://github.com/hadley/ellipsis")
614 (synopsis "Tools for working with additional arguments")
615 (description
616 "In S3 generics, it's useful to take @code{...} so that methods can have
617 additional arguments. But this flexibility comes at a cost: misspelled
618 arguments will be silently ignored. The @code{ellipsis} package is an
619 experiment that allows a generic to warn if any arguments passed in @code{...}
620 are not used.")
621 (license license:gpl3)))
622
623 (define-public r-grr
624 (package
625 (name "r-grr")
626 (version "0.9.5")
627 (source
628 (origin
629 (method url-fetch)
630 (uri (cran-uri "grr" version))
631 (sha256
632 (base32
633 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
634 (build-system r-build-system)
635 (home-page "https://cran.r-project.org/web/packages/grr")
636 (synopsis "Alternative implementations of base R functions")
637 (description
638 "This package provides alternative implementations of some base R
639 functions, including @code{sort}, @code{order}, and @code{match}. The
640 functions are simplified but can be faster or have other advantages.")
641 (license license:gpl3)))
642
643 (define-public r-matrix-utils
644 (package
645 (name "r-matrix-utils")
646 (version "0.9.8")
647 (source
648 (origin
649 (method url-fetch)
650 (uri (cran-uri "Matrix.utils" version))
651 (sha256
652 (base32
653 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
654 (properties `((upstream-name . "Matrix.utils")))
655 (build-system r-build-system)
656 (propagated-inputs
657 `(("r-grr" ,r-grr)
658 ("r-matrix" ,r-matrix)))
659 (home-page "https://github.com/cvarrichio/Matrix.utils")
660 (synopsis
661 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
662 (description
663 "This package implements data manipulation methods such as @code{cast},
664 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
665 objects.")
666 (license license:gpl3)))
667
668 (define-public r-mboost
669 (package
670 (name "r-mboost")
671 (version "2.9-4")
672 (source (origin
673 (method url-fetch)
674 (uri (cran-uri "mboost" version))
675 (sha256
676 (base32
677 "1dgyc38axfk2a430wsdnnk76xikizkyxf5r0l1kbp6cacrx6idz0"))))
678 (build-system r-build-system)
679 (propagated-inputs
680 `(("r-lattice" ,r-lattice)
681 ("r-matrix" ,r-matrix)
682 ("r-nnls" ,r-nnls)
683 ("r-partykit" ,r-partykit)
684 ("r-quadprog" ,r-quadprog)
685 ("r-stabs" ,r-stabs)
686 ("r-survival" ,r-survival)))
687 (home-page "https://github.com/boost-R/mboost")
688 (synopsis "Model-based boosting")
689 (description
690 "This package provides a functional gradient descent algorithm (boosting)
691 for optimizing general risk functions utilizing component-wise (penalised)
692 least squares estimates or regression trees as base-learners for fitting
693 generalized linear, additive and interaction models to potentially
694 high-dimensional data.")
695 (license license:gpl2)))
696
697 (define-public r-shadowtext
698 (package
699 (name "r-shadowtext")
700 (version "0.0.7")
701 (source (origin
702 (method url-fetch)
703 (uri (cran-uri "shadowtext" version))
704 (sha256
705 (base32
706 "1s1ip8zfr684a3ld7hvf524bhn2j31k6d1wbhh1ni0flsggv2ckf"))))
707 (properties `((upstream-name . "shadowtext")))
708 (build-system r-build-system)
709 (propagated-inputs
710 `(("r-ggplot2" ,r-ggplot2)
711 ("r-scales" ,r-scales)))
712 (native-inputs
713 `(("r-knitr" ,r-knitr)))
714 (home-page "https://github.com/GuangchuangYu/shadowtext/")
715 (synopsis "Shadow text grob and layer")
716 (description "This package implements @code{shadowtextGrob()} for
717 @code{grid} and @code{geom_shadowtext()} layer for @code{ggplot2}.
718 These functions draw text grob with background shadow.")
719 (license license:artistic2.0)))
720
721 (define-public r-sys
722 (package
723 (name "r-sys")
724 (version "3.4")
725 (source
726 (origin
727 (method url-fetch)
728 (uri (cran-uri "sys" version))
729 (sha256
730 (base32
731 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
732 (build-system r-build-system)
733 (home-page "https://github.com/jeroen/sys")
734 (synopsis "Powerful and reliable tools for running system commands in R")
735 (description
736 "This package provides drop-in replacements for the base @code{system2()}
737 function with fine control and consistent behavior across platforms. It
738 supports clean interruption, timeout, background tasks, and streaming STDIN /
739 STDOUT / STDERR over binary or text connections. The package also provides
740 functions for evaluating expressions inside a temporary fork. Such
741 evaluations have no side effects on the main R process, and support reliable
742 interrupts and timeouts. This provides the basis for a sandboxing
743 mechanism.")
744 (license license:expat)))
745
746 (define-public r-ashr
747 (package
748 (name "r-ashr")
749 (version "2.2-47")
750 (source (origin
751 (method url-fetch)
752 (uri (cran-uri "ashr" version))
753 (sha256
754 (base32
755 "1rqb5j30ylaf1h4l66x4jxyn5inrvhc42d90qd5mgkxsq0ghdlr4"))))
756 (properties `((upstream-name . "ashr")))
757 (build-system r-build-system)
758 (propagated-inputs
759 `(("r-etrunct" ,r-etrunct)
760 ("r-invgamma" ,r-invgamma)
761 ("r-matrix" ,r-matrix)
762 ("r-mixsqp" ,r-mixsqp)
763 ("r-rcpp" ,r-rcpp)
764 ("r-squarem" ,r-squarem)
765 ("r-truncnorm" ,r-truncnorm)))
766 (native-inputs
767 `(("r-knitr" ,r-knitr)))
768 (home-page "https://github.com/stephens999/ashr")
769 (synopsis "Methods for adaptive shrinkage, using empirical bayes")
770 (description "This package implements an empirical Bayes approach for
771 large-scale hypothesis testing and false discovery rate estimation.")
772 (license license:gpl3+)))
773
774 (define-public r-askpass
775 (package
776 (name "r-askpass")
777 (version "1.1")
778 (source
779 (origin
780 (method url-fetch)
781 (uri (cran-uri "askpass" version))
782 (sha256
783 (base32
784 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
785 (build-system r-build-system)
786 (propagated-inputs `(("r-sys" ,r-sys)))
787 (home-page "https://github.com/jeroen/askpass")
788 (synopsis "Safe password entry for R")
789 (description
790 "This package provides cross-platform utilities for prompting the user
791 for credentials or a passphrase, for example to authenticate with a server or
792 read a protected key.")
793 (license license:expat)))
794
795 (define-public r-vegan
796 (package
797 (name "r-vegan")
798 (version "2.5-7")
799 (source
800 (origin
801 (method url-fetch)
802 (uri (cran-uri "vegan" version))
803 (sha256
804 (base32
805 "0aj6m9l1vkh32sar6fyvq4p8j4h2f2f347w1300qnzgaa5lmhfz6"))))
806 (build-system r-build-system)
807 (native-inputs
808 `(("r-knitr" ,r-knitr) ; needed for vignettes
809 ("gfortran" ,gfortran)))
810 (propagated-inputs
811 `(("r-cluster" ,r-cluster)
812 ("r-lattice" ,r-lattice)
813 ("r-mass" ,r-mass)
814 ("r-mgcv" ,r-mgcv)
815 ("r-permute" ,r-permute)))
816 (home-page "https://cran.r-project.org/web/packages/vegan")
817 (synopsis "Functions for community ecology")
818 (description
819 "The vegan package provides tools for descriptive community ecology. It
820 has most basic functions of diversity analysis, community ordination and
821 dissimilarity analysis. Most of its multivariate tools can be used for other
822 data types as well.")
823 (license license:gpl2+)))
824
825 (define-public r-tidyverse
826 (package
827 (name "r-tidyverse")
828 (version "1.3.0")
829 (source
830 (origin
831 (method url-fetch)
832 (uri (cran-uri "tidyverse" version))
833 (sha256
834 (base32
835 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
836 (build-system r-build-system)
837 (propagated-inputs
838 `(("r-broom" ,r-broom)
839 ("r-cli" ,r-cli)
840 ("r-crayon" ,r-crayon)
841 ("r-dbplyr" ,r-dbplyr)
842 ("r-dplyr" ,r-dplyr)
843 ("r-forcats" ,r-forcats)
844 ("r-ggplot2" ,r-ggplot2)
845 ("r-haven" ,r-haven)
846 ("r-hms" ,r-hms)
847 ("r-httr" ,r-httr)
848 ("r-jsonlite" ,r-jsonlite)
849 ("r-lubridate" ,r-lubridate)
850 ("r-magrittr" ,r-magrittr)
851 ("r-modelr" ,r-modelr)
852 ("r-pillar" ,r-pillar)
853 ("r-purrr" ,r-purrr)
854 ("r-readr" ,r-readr)
855 ("r-readxl" ,r-readxl)
856 ("r-reprex" ,r-reprex)
857 ("r-rlang" ,r-rlang)
858 ("r-rstudioapi" ,r-rstudioapi)
859 ("r-rvest" ,r-rvest)
860 ("r-stringr" ,r-stringr)
861 ("r-tibble" ,r-tibble)
862 ("r-tidyr" ,r-tidyr)
863 ("r-xml2" ,r-xml2)))
864 (home-page "https://tidyverse.tidyverse.org")
865 (synopsis "Install and load packages from the \"Tidyverse\"")
866 (description
867 "The @code{tidyverse} is a set of packages that work in harmony because
868 they share common data representations and API design. This package is
869 designed to make it easy to install and load multiple tidyverse packages in a
870 single step.")
871 (license license:gpl3)))
872
873 (define-public r-rvest
874 (package
875 (name "r-rvest")
876 (version "1.0.0")
877 (source
878 (origin
879 (method url-fetch)
880 (uri (cran-uri "rvest" version))
881 (sha256
882 (base32 "04spcv6nxlmx5bxncq0vybfqrs8jgjamzyrn6wmkdcwii8jvyn53"))))
883 (build-system r-build-system)
884 (propagated-inputs
885 `(("r-httr" ,r-httr)
886 ("r-lifecycle" ,r-lifecycle)
887 ("r-magrittr" ,r-magrittr)
888 ("r-rlang" ,r-rlang)
889 ("r-selectr" ,r-selectr)
890 ("r-tibble" ,r-tibble)
891 ("r-xml2" ,r-xml2)))
892 (native-inputs
893 `(("r-knitr" ,r-knitr)))
894 (home-page "https://github.com/hadley/rvest")
895 (synopsis "Simple web scraping for R")
896 (description
897 "@code{r-rvest} helps you scrape information from web pages. It is
898 designed to work with @code{magrittr} to make it easy to express common web
899 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
900 (license license:gpl3)))
901
902 (define-public r-selectr
903 (package
904 (name "r-selectr")
905 (version "0.4-2")
906 (source
907 (origin
908 (method url-fetch)
909 (uri (cran-uri "selectr" version))
910 (sha256
911 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
912 (build-system r-build-system)
913 (propagated-inputs
914 `(("r-stringr" ,r-stringr)
915 ("r-r6" ,r-r6)))
916 (home-page "https://sjp.co.nz/projects/selectr/")
917 (synopsis "Translate CSS selectors to XPath expressions")
918 (description
919 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
920 expression. This allows you to use CSS selectors when working with the XML
921 package as it can only evaluate XPath expressions. Also provided are
922 convenience functions useful for using CSS selectors on XML nodes. This
923 package is a port of the Python package @code{cssselect}.")
924 (license license:bsd-3)))
925
926 (define-public r-reprex
927 (package
928 (name "r-reprex")
929 (version "1.0.0")
930 (source
931 (origin
932 (method url-fetch)
933 (uri (cran-uri "reprex" version))
934 (sha256
935 (base32
936 "07nzx0fdl48jw95ipx17ql0l13q60yl3rjrkj1m375wrc7h1v5nx"))))
937 (build-system r-build-system)
938 (propagated-inputs
939 `(("r-callr" ,r-callr)
940 ("r-cli" ,r-cli)
941 ("r-clipr" ,r-clipr)
942 ("r-fs" ,r-fs)
943 ("r-glue" ,r-glue)
944 ("r-knitr" ,r-knitr)
945 ("r-rlang" ,r-rlang)
946 ("r-rmarkdown" ,r-rmarkdown)
947 ("r-withr" ,r-withr)))
948 (native-inputs
949 `(("r-knitr" ,r-knitr)))
950 (home-page "https://github.com/tidyverse/reprex")
951 (synopsis "Prepare reproducible R code examples for sharing")
952 (description
953 "This package provides a convenience wrapper that uses the
954 @code{rmarkdown} package to render small snippets of code to target formats
955 that include both code and output. The goal is to encourage the sharing of
956 small, reproducible, and runnable examples on code-oriented websites or email.
957 @code{reprex} also extracts clean, runnable R code from various common formats,
958 such as copy/paste from an R session.")
959 (license license:expat)))
960
961 (define-public r-reordercluster
962 (package
963 (name "r-reordercluster")
964 (version "1.0")
965 (source (origin
966 (method url-fetch)
967 (uri (cran-uri "ReorderCluster" version))
968 (sha256
969 (base32
970 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
971 (build-system r-build-system)
972 (propagated-inputs
973 `(("r-gplots" ,r-gplots)
974 ("r-rcpp" ,r-rcpp)))
975 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
976 (synopsis "Reordering the dendrogram according to the class labels")
977 (description "This package provides tools for performing the leaf reordering
978 for the dendrogram that preserves the hierarchical clustering result and at the
979 same time tries to group instances from the same class together.")
980 (license license:gpl3+)))
981
982 (define-public r-callr
983 (package
984 (name "r-callr")
985 (version "3.5.1")
986 (source
987 (origin
988 (method url-fetch)
989 (uri (cran-uri "callr" version))
990 (sha256
991 (base32
992 "15l6ppsxdadlnl4fk0f8bvf327n8izk96px5d08m1ay9iij8qcyf"))))
993 (build-system r-build-system)
994 (propagated-inputs
995 `(("r-r6" ,r-r6)
996 ("r-processx" ,r-processx)))
997 (home-page "https://github.com/r-lib/callr#readme")
998 (synopsis "Call R from R")
999 (description
1000 "It is sometimes useful to perform a computation in a separate R process,
1001 without affecting the current R process at all. This package does exactly
1002 that.")
1003 (license license:expat)))
1004
1005 (define-public r-readxl
1006 (package
1007 (name "r-readxl")
1008 (version "1.3.1")
1009 (source
1010 (origin
1011 (method url-fetch)
1012 (uri (cran-uri "readxl" version))
1013 (sha256
1014 (base32
1015 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
1016 (build-system r-build-system)
1017 (propagated-inputs
1018 `(("r-cellranger" ,r-cellranger)
1019 ("r-progress" ,r-progress)
1020 ("r-rcpp" ,r-rcpp)
1021 ("r-tibble" ,r-tibble)))
1022 (home-page "https://readxl.tidyverse.org")
1023 (synopsis "Read Excel files")
1024 (description
1025 "This package lets you import Excel files into R. It supports
1026 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
1027 the embedded @code{RapidXML} C++ library.")
1028 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
1029 ;; 'rapidxml' which is Boost.
1030 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
1031
1032 (define-public r-modelr
1033 (package
1034 (name "r-modelr")
1035 (version "0.1.8")
1036 (source
1037 (origin
1038 (method url-fetch)
1039 (uri (cran-uri "modelr" version))
1040 (sha256
1041 (base32
1042 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
1043 (build-system r-build-system)
1044 (propagated-inputs
1045 `(("r-broom" ,r-broom)
1046 ("r-magrittr" ,r-magrittr)
1047 ("r-purrr" ,r-purrr)
1048 ("r-rlang" ,r-rlang)
1049 ("r-tibble" ,r-tibble)
1050 ("r-tidyr" ,r-tidyr)
1051 ("r-tidyselect" ,r-tidyselect)
1052 ("r-vctrs" ,r-vctrs)))
1053 (home-page "https://github.com/tidyverse/modelr")
1054 (synopsis "Helper functions for modelling in pipelines")
1055 (description
1056 "Functions for modelling that help you seamlessly integrate modelling
1057 into a pipeline of data manipulation and visualisation.")
1058 (license license:gpl3)))
1059
1060 (define-public r-httpuv
1061 (package
1062 (name "r-httpuv")
1063 (version "1.5.5")
1064 (source (origin
1065 (method url-fetch)
1066 (uri (cran-uri "httpuv" version))
1067 (sha256
1068 (base32
1069 "05rir03xwamwfq5691vx0x957sgmr4i8iv5vpx5rv1f74y4wkrhb"))
1070 ;; Unvendor bundled libraries. As of 1.5.4 the vendored libuv
1071 ;; only contains fixes for building on Solaris.
1072 (patches (search-patches "r-httpuv-1.5.5-unvendor-libuv.patch"))
1073 (modules '((guix build utils)))
1074 (snippet
1075 `(begin
1076 (delete-file-recursively "src/libuv")
1077 ;; Cannot unbundle http-parser, because it contains local
1078 ;; modifications.
1079 #t))))
1080 (build-system r-build-system)
1081 (arguments
1082 `(#:phases
1083 (modify-phases %standard-phases
1084 (add-after 'unpack 'unbundle-libuv
1085 (lambda* (#:key outputs #:allow-other-keys)
1086 (substitute* (find-files "src" "\\.cpp$|\\.h$")
1087 (("\"libuv/include/uv\\.h\"")
1088 "<uv.h>"))
1089 ;; Fix https://github.com/rstudio/httpuv/issues/282
1090 (substitute* "src/http.cpp"
1091 (("uv_pipe_init\\(pLoop, &pSocket->handle\\.pipe, true\\);")
1092 "uv_pipe_init(pLoop, &pSocket->handle.pipe, 0);"))
1093 #t)))))
1094 (inputs
1095 `(("libuv" ,libuv)))
1096 (propagated-inputs
1097 `(("r-bh" ,r-bh)
1098 ("r-later" ,r-later)
1099 ("r-promises" ,r-promises)
1100 ("r-r6" ,r-r6)
1101 ("r-rcpp" ,r-rcpp)))
1102 (home-page "https://github.com/rstudio/httpuv")
1103 (synopsis "HTTP and WebSocket server library for R")
1104 (description
1105 "The httpuv package provides low-level socket and protocol support for
1106 handling HTTP and WebSocket requests directly from within R. It is primarily
1107 intended as a building block for other packages, rather than making it
1108 particularly easy to create complete web applications using httpuv alone.")
1109 ;; This package includes third-party code that was originally released
1110 ;; under various non-copyleft licenses. Full licensing information can be
1111 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
1112 (license license:gpl3+)))
1113
1114 (define-public r-jsonlite
1115 (package
1116 (name "r-jsonlite")
1117 (version "1.7.2")
1118 (source (origin
1119 (method url-fetch)
1120 (uri (cran-uri "jsonlite" version))
1121 (sha256
1122 (base32
1123 "1lhzcpz9clwq04i5m6jzkvw9x03pwlqrixv4l9xzchjr8d84nd86"))))
1124 (build-system r-build-system)
1125 (native-inputs
1126 `(("r-knitr" ,r-knitr)))
1127 (home-page "https://arxiv.org/abs/1403.2805")
1128 (synopsis "Robust, high performance JSON parser and generator for R")
1129 (description
1130 "The jsonlite package provides a fast JSON parser and generator optimized
1131 for statistical data and the web. It offers flexible, robust, high
1132 performance tools for working with JSON in R and is particularly powerful for
1133 building pipelines and interacting with a web API. In addition to converting
1134 JSON data from/to R objects, jsonlite contains functions to stream, validate,
1135 and prettify JSON data. The unit tests included with the package verify that
1136 all edge cases are encoded and decoded consistently for use with dynamic data
1137 in systems and applications.")
1138 (license license:expat)))
1139
1140 (define-public r-servr
1141 (package
1142 (name "r-servr")
1143 (version "0.21")
1144 (source (origin
1145 (method url-fetch)
1146 (uri (cran-uri "servr" version))
1147 (sha256
1148 (base32
1149 "12fk585hmz735v4hra8da9wld1fmd67byqnf95m7jjyh7l3dmh1z"))))
1150 (build-system r-build-system)
1151 (propagated-inputs
1152 `(("r-httpuv" ,r-httpuv)
1153 ("r-jsonlite" ,r-jsonlite)
1154 ("r-mime" ,r-mime)
1155 ("r-xfun" ,r-xfun)))
1156 (home-page "https://github.com/yihui/servr")
1157 (synopsis "Simple HTTP server to serve static files or dynamic documents")
1158 (description
1159 "Servr provides an HTTP server in R to serve static files, or dynamic
1160 documents that can be converted to HTML files (e.g., R Markdown) under a given
1161 directory.")
1162 (license license:expat)))
1163
1164 (define-public r-htmltools
1165 (package
1166 (name "r-htmltools")
1167 (version "0.5.1.1")
1168 (source (origin
1169 (method url-fetch)
1170 (uri (cran-uri "htmltools" version))
1171 (sha256
1172 (base32
1173 "1fm4cymz4hz6lds80m9j5q00xy5flkrmfn5dkrn3s3rkzqpyggzh"))))
1174 (build-system r-build-system)
1175 (propagated-inputs
1176 `(("r-base64enc" ,r-base64enc)
1177 ("r-digest" ,r-digest)
1178 ("r-rlang" ,r-rlang)))
1179 (home-page "https://cran.r-project.org/web/packages/htmltools")
1180 (synopsis "R tools for HTML")
1181 (description
1182 "This package provides tools for HTML generation and output in R.")
1183 (license license:expat)))
1184
1185 (define-public r-htmlwidgets
1186 (package
1187 (name "r-htmlwidgets")
1188 (version "1.5.3")
1189 (source (origin
1190 (method url-fetch)
1191 (uri (cran-uri "htmlwidgets" version))
1192 (sha256
1193 (base32
1194 "0a8g7wqd3qxnhwkm9c9bkzg29db7gvjiaa5y038ln8nch8qq7981"))))
1195 (build-system r-build-system)
1196 (propagated-inputs
1197 `(("r-htmltools" ,r-htmltools)
1198 ("r-jsonlite" ,r-jsonlite)
1199 ("r-yaml" ,r-yaml)))
1200 (native-inputs
1201 `(("r-knitr" ,r-knitr)))
1202 (home-page "https://github.com/ramnathv/htmlwidgets")
1203 (synopsis "HTML Widgets for R")
1204 (description
1205 "HTML widgets is a framework for creating HTML widgets that render in
1206 various contexts including the R console, R Markdown documents, and Shiny web
1207 applications.")
1208 (license license:expat)))
1209
1210 (define-public r-htmltable
1211 (package
1212 (name "r-htmltable")
1213 (version "2.1.0")
1214 (source
1215 (origin
1216 (method url-fetch)
1217 (uri (cran-uri "htmlTable" version))
1218 (sha256
1219 (base32 "1gzh0bdxi55p1ckxv4k0a41b1j0grwv2w3lkqz4c3gkw66dk6ja0"))))
1220 (properties `((upstream-name . "htmlTable")))
1221 (build-system r-build-system)
1222 (propagated-inputs
1223 `(("r-checkmate" ,r-checkmate)
1224 ("r-htmltools" ,r-htmltools)
1225 ("r-htmlwidgets" ,r-htmlwidgets)
1226 ("r-knitr" ,r-knitr)
1227 ("r-magrittr" ,r-magrittr)
1228 ("r-rstudioapi" ,r-rstudioapi)
1229 ("r-stringr" ,r-stringr)))
1230 (native-inputs
1231 `(("r-knitr" ,r-knitr)))
1232 (home-page "http://gforge.se/packages/")
1233 (synopsis "Advanced tables for Markdown/HTML")
1234 (description
1235 "This package provides functions to build tables with advanced layout
1236 elements such as row spanners, column spanners, table spanners, zebra
1237 striping, and more. While allowing advanced layout, the underlying
1238 CSS-structure is simple in order to maximize compatibility with word
1239 processors such as LibreOffice. The package also contains a few text
1240 formatting functions that help outputting text compatible with HTML or
1241 LaTeX.")
1242 (license license:gpl3+)))
1243
1244 (define-public r-curl
1245 (package
1246 (name "r-curl")
1247 (version "4.3")
1248 (source (origin
1249 (method url-fetch)
1250 (uri (cran-uri "curl" version))
1251 (sha256
1252 (base32
1253 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
1254 (build-system r-build-system)
1255 (arguments
1256 `(#:phases
1257 (modify-phases %standard-phases
1258 ;; The environment variable CURL_CA_BUNDLE is only respected when
1259 ;; running Windows, so we disable the platform checks.
1260 ;; This can be removed once the libcurl has been patched.
1261 (add-after 'unpack 'allow-CURL_CA_BUNDLE
1262 (lambda _
1263 (substitute* "R/onload.R"
1264 (("if \\(!grepl\\(\"mingw\".*")
1265 "if (FALSE)\n"))
1266 (substitute* "src/handle.c"
1267 (("/\\* Only set" m)
1268 (string-append "\
1269 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
1270 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
1271 " m)))
1272 #t)))))
1273 (inputs
1274 `(("libcurl" ,curl)
1275 ("zlib" ,zlib)))
1276 (native-inputs
1277 `(("pkg-config" ,pkg-config)))
1278 (home-page "https://github.com/jeroenooms/curl")
1279 (synopsis "HTTP client for R")
1280 (description
1281 "The @code{curl()} and @code{curl_download()} functions provide highly
1282 configurable drop-in replacements for base @code{url()} and
1283 @code{download.file()} with better performance, support for encryption, gzip
1284 compression, authentication, and other @code{libcurl} goodies. The core of
1285 the package implements a framework for performing fully customized requests
1286 where data can be processed either in memory, on disk, or streaming via the
1287 callback or connection interfaces.")
1288 (license license:expat)))
1289
1290 (define-public r-hwriter
1291 (package
1292 (name "r-hwriter")
1293 (version "1.3.2")
1294 (source
1295 (origin
1296 (method url-fetch)
1297 (uri (cran-uri "hwriter" version))
1298 (sha256
1299 (base32
1300 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
1301 (build-system r-build-system)
1302 (home-page "https://cran.r-project.org/web/packages/hwriter")
1303 (synopsis "Output R objects in HTML format")
1304 (description
1305 "This package provides easy-to-use and versatile functions to output R
1306 objects in HTML format.")
1307 (license license:lgpl2.1+)))
1308
1309 (define-public r-rjson
1310 (package
1311 (name "r-rjson")
1312 (version "0.2.20")
1313 (source
1314 (origin
1315 (method url-fetch)
1316 (uri (cran-uri "rjson" version))
1317 (sha256
1318 (base32
1319 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
1320 (build-system r-build-system)
1321 (home-page "https://cran.r-project.org/web/packages/rjson")
1322 (synopsis "JSON library for R")
1323 (description
1324 "This package provides functions to convert R objects into JSON objects
1325 and vice-versa.")
1326 (license license:gpl2+)))
1327
1328 (define-public r-fastmap
1329 (package
1330 (name "r-fastmap")
1331 (version "1.1.0")
1332 (source
1333 (origin
1334 (method url-fetch)
1335 (uri (cran-uri "fastmap" version))
1336 (sha256
1337 (base32
1338 "0aw29hnq3ppn7bsnwg9d9sp84k1cvq30lrmfzqn315n0nhkfa4wi"))))
1339 (properties `((upstream-name . "fastmap")))
1340 (build-system r-build-system)
1341 (home-page "https://r-lib.github.io/fastmap/")
1342 (synopsis "Fast implementation of a key-value store")
1343 (description
1344 "This package provides a fast implementation of a key-value store.
1345 Environments are commonly used as key-value stores, but every time a new key
1346 is used, it is added to R's global symbol table, causing a small amount of
1347 memory leakage. This can be problematic in cases where many different keys
1348 are used. Fastmap avoids this memory leak issue by implementing the map using
1349 data structures in C++.")
1350 (license license:expat)))
1351
1352 (define-public r-fastghquad
1353 (package
1354 (name "r-fastghquad")
1355 (version "1.0")
1356 (source
1357 (origin
1358 (method url-fetch)
1359 (uri (cran-uri "fastGHQuad" version))
1360 (sha256
1361 (base32
1362 "1rjia8wggadr9xwxcmzmal0rc4g6pa3dr5888fbbnb6abl8b2lrj"))))
1363 (properties `((upstream-name . "fastGHQuad")))
1364 (build-system r-build-system)
1365 (propagated-inputs
1366 `(("r-rcpp" ,r-rcpp)))
1367 (home-page "https://github.com/awblocker/fastGHQuad")
1368 (synopsis "Fast Rcpp implementation of Gauss-Hermite Quadrature")
1369 (description
1370 "This package implements numerically-stable Gauss-Hermite quadrature
1371 rules and utility functions for adaptive GH quadrature.")
1372 (license license:expat)))
1373
1374 (define-public r-rstpm2
1375 (package
1376 (name "r-rstpm2")
1377 (version "1.5.2")
1378 (source
1379 (origin
1380 (method url-fetch)
1381 (uri (cran-uri "rstpm2" version))
1382 (sha256
1383 (base32
1384 "0c6l3z250b2kn6mh2xyb0bd2y5nsbj11n9xfi51dac9s8xq3v7m4"))))
1385 (properties `((upstream-name . "rstpm2")))
1386 (build-system r-build-system)
1387 (propagated-inputs
1388 `(("r-bbmle" ,r-bbmle)
1389 ("r-bh" ,r-bh)
1390 ("r-desolve" ,r-desolve)
1391 ("r-fastghquad" ,r-fastghquad)
1392 ("r-mgcv" ,r-mgcv)
1393 ("r-rcpp" ,r-rcpp)
1394 ("r-rcpparmadillo" ,r-rcpparmadillo)
1395 ("r-survival" ,r-survival)))
1396 (native-inputs
1397 `(("gfortran" ,gfortran)))
1398 (home-page "https://github.com/mclements/rstpm2")
1399 (synopsis "Link-based survival models")
1400 (description
1401 "This package provides R implementations of @dfn{generalized survival
1402 models} (GSMs), smooth @dfn{accelerated failure time} (AFT) models and Markov
1403 multi-state models.")
1404 ;; One of these licenses
1405 (license (list license:gpl2 license:gpl3))))
1406
1407 ;; This package includes minified JavaScript files. When upgrading please
1408 ;; check that there are no new minified JavaScript files.
1409 (define-public r-jquerylib
1410 (package
1411 (name "r-jquerylib")
1412 (version "0.1.3")
1413 (source
1414 (origin
1415 (method url-fetch)
1416 (uri (cran-uri "jquerylib" version))
1417 (sha256
1418 (base32
1419 "1s0d6mws13hwkx07jqmry7vp30a05b2p9w7ir68bmkhasidwkzdq"))
1420 (snippet
1421 '(for-each delete-file
1422 '("inst/lib/jquery-1.12.4.min.js"
1423 "inst/lib/jquery-2.2.4.min.js"
1424 "inst/lib/jquery-3.5.1.min.js")))))
1425 (properties `((upstream-name . "jquerylib")))
1426 (build-system r-build-system)
1427 (arguments
1428 `(#:modules ((guix build utils)
1429 (guix build r-build-system)
1430 (srfi srfi-1))
1431 #:phases
1432 (modify-phases %standard-phases
1433 (add-after 'unpack 'process-javascript
1434 (lambda* (#:key inputs #:allow-other-keys)
1435 (with-directory-excursion "inst/lib/"
1436 (call-with-values
1437 (lambda ()
1438 (unzip2
1439 `(("jquery-1.12.4.js"
1440 "jquery-1.12.4.min.js")
1441 ("jquery-2.2.4.js"
1442 "jquery-2.2.4.min.js")
1443 ("jquery-3.5.1.js"
1444 "jquery-3.5.1.min.js"))))
1445 (lambda (sources targets)
1446 (for-each (lambda (source target)
1447 (format #t "Processing ~a --> ~a~%"
1448 source target)
1449 (invoke "esbuild" source "--minify"
1450 (string-append "--outfile=" target)))
1451 sources targets)))))))))
1452 (propagated-inputs
1453 `(("r-htmltools" ,r-htmltools)))
1454 (native-inputs
1455 `(("esbuild" ,esbuild)))
1456 (home-page "https://cran.r-project.org/package=jquerylib")
1457 (synopsis "Obtain jQuery as an HTML dependency object")
1458 (description
1459 "Obtain any major version of jQuery and use it in any webpage generated
1460 by htmltools (e.g. shiny, htmlwidgets, and rmarkdown). Most R users don't
1461 need to use this package directly, but other R packages (e.g. shiny,
1462 rmarkdown, etc.) depend on this package to avoid bundling redundant copies of
1463 jQuery.")
1464 (license license:expat)))
1465
1466 (define-public r-sass
1467 (package
1468 (name "r-sass")
1469 (version "0.3.1")
1470 (source
1471 (origin
1472 (method url-fetch)
1473 (uri (cran-uri "sass" version))
1474 (sha256
1475 (base32
1476 "1cxqwsdyz71mgflqqa65mfr161jlv8q9mshs1y19pxp6pz5wnv0s"))))
1477 (properties `((upstream-name . "sass")))
1478 (build-system r-build-system)
1479 (propagated-inputs
1480 `(("r-digest" ,r-digest)
1481 ("r-fs" ,r-fs)
1482 ("r-htmltools" ,r-htmltools)
1483 ("r-r6" ,r-r6)
1484 ("r-rappdirs" ,r-rappdirs)
1485 ("r-rlang" ,r-rlang)))
1486 (native-inputs `(("r-knitr" ,r-knitr)))
1487 (home-page "https://github.com/rstudio/sass")
1488 (synopsis "Syntactically Awesome Style Sheets (SASS)")
1489 (description
1490 "This package provides an SCSS compiler, powered by the libsass library.
1491 With this, R developers can use variables, inheritance, and functions to
1492 generate dynamic style sheets. The package uses the Sass CSS extension
1493 language, which is stable, powerful, and CSS compatible.")
1494 (license license:expat)))
1495
1496 ;; This package includes minified JavaScript files. When upgrading please
1497 ;; check that there are no new minified JavaScript files.
1498 (define-public r-bslib
1499 (package
1500 (name "r-bslib")
1501 (version "0.2.4")
1502 (source
1503 (origin
1504 (method url-fetch)
1505 (uri (cran-uri "bslib" version))
1506 (sha256
1507 (base32
1508 "0qlpv2lqr3hjykszmnll7vi4zhmrz4rgcfl0sifxc6cha6jy2nac"))
1509 (snippet
1510 '(for-each delete-file
1511 '("inst/lib/bs-a11y-p/plugins/js/bootstrap-accessibility.min.js"
1512 "inst/lib/bs-colorpicker/js/bootstrap-colorpicker.min.js"
1513 "inst/lib/bs-sass/assets/javascripts/bootstrap.min.js"
1514 "inst/lib/bs/dist/js/bootstrap.bundle.min.js")))))
1515 (properties `((upstream-name . "bslib")))
1516 (build-system r-build-system)
1517 (arguments
1518 `(#:modules ((guix build utils)
1519 (guix build r-build-system)
1520 (srfi srfi-1))
1521 #:phases
1522 (modify-phases %standard-phases
1523 (add-after 'unpack 'process-javascript
1524 (lambda* (#:key inputs #:allow-other-keys)
1525 (with-directory-excursion "inst/lib/"
1526 (call-with-values
1527 (lambda ()
1528 (unzip2
1529 `(("bs-a11y-p/plugins/js/bootstrap-accessibility.js"
1530 "bs-a11y-p/plugins/js/bootstrap-accessibility.min.js")
1531 ("bs-colorpicker/js/bootstrap-colorpicker.js"
1532 "bs-colorpicker/js/bootstrap-colorpicker.min.js")
1533 ("bs-sass/assets/javascripts/bootstrap.js"
1534 "bs-sass/assets/javascripts/bootstrap.min.js")
1535 (,(assoc-ref inputs "js-bootstrap-bundle")
1536 "bs/dist/js/bootstrap.bundle.min.js"))))
1537 (lambda (sources targets)
1538 (for-each (lambda (source target)
1539 (format #t "Processing ~a --> ~a~%"
1540 source target)
1541 (invoke "esbuild" source "--minify"
1542 (string-append "--outfile=" target)))
1543 sources targets)))))))))
1544 (propagated-inputs
1545 `(("r-digest" ,r-digest)
1546 ("r-htmltools" ,r-htmltools)
1547 ("r-jquerylib" ,r-jquerylib)
1548 ("r-jsonlite" ,r-jsonlite)
1549 ("r-magrittr" ,r-magrittr)
1550 ("r-rlang" ,r-rlang)
1551 ("r-sass" ,r-sass)))
1552 (native-inputs
1553 `(("esbuild" ,esbuild)
1554 ("js-bootstrap-bundle"
1555 ,(origin
1556 (method url-fetch)
1557 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v4.5.3/dist/js/bootstrap.bundle.js")
1558 (sha256
1559 (base32
1560 "1lcsxj7gcm56va3gck47ggpwzjxrzq27sgjzdw6c54qkp0487sak"))))))
1561 (home-page "https://rstudio.github.io/bslib/")
1562 (synopsis "Custom Bootstrap Sass themes for shiny and rmarkdown")
1563 (description
1564 "This package simplifies custom CSS styling of both shiny and rmarkdown
1565 via Bootstrap Sass. It supports both Bootstrap 3 and 4 as well as their
1566 various Bootswatch themes. An interactive widget is also provided for
1567 previewing themes in real time.")
1568 (license license:expat)))
1569
1570 ;; This package includes minified JavaScript files. When upgrading please
1571 ;; check that there are no new minified JavaScript files.
1572 (define-public r-shiny
1573 (package
1574 (name "r-shiny")
1575 (version "1.6.0")
1576 (source
1577 (origin
1578 (method git-fetch)
1579 (uri (git-reference
1580 (url "https://github.com/rstudio/shiny")
1581 (commit (string-append "v" version))))
1582 (file-name (git-file-name name version))
1583 (sha256
1584 (base32
1585 "0f6cwx5xyqzs40msq271sqhwl8736rwbm7kd1ldkcvxngzr4vlx9"))
1586 (snippet
1587 '(for-each delete-file
1588 '("inst/www/shared/bootstrap/js/bootstrap.min.js"
1589 "inst/www/shared/bootstrap/accessibility/js/bootstrap-accessibility.min.js" ; TODO
1590 "inst/www/shared/datatables/js/jquery.dataTables.min.js"
1591 "inst/www/shared/datepicker/js/bootstrap-datepicker.min.js"
1592 "inst/www/shared/highlight/highlight.pack.js"
1593 "inst/www/shared/ionrangeslider/js/ion.rangeSlider.min.js"
1594 "inst/www/shared/jquery.min.js"
1595 "inst/www/shared/jqueryui/jquery-ui.min.js"
1596 "inst/www/shared/legacy/jquery.min.js"
1597 "inst/www/shared/selectize/accessibility/js/selectize-plugin-a11y.min.js"
1598 "inst/www/shared/selectize/js/selectize.min.js"
1599 "inst/www/shared/shiny.min.js"
1600 "inst/www/shared/showdown/compressed/showdown.js"
1601 "inst/www/shared/strftime/strftime-min.js")))))
1602 (build-system r-build-system)
1603 (arguments
1604 `(#:modules ((guix build r-build-system)
1605 (guix build minify-build-system)
1606 (guix build utils)
1607 (ice-9 match))
1608 #:imported-modules (,@%r-build-system-modules
1609 (guix build minify-build-system))
1610 #:phases
1611 (modify-phases (@ (guix build r-build-system) %standard-phases)
1612 (add-after 'unpack 'replace-bundled-minified-JavaScript
1613 (lambda* (#:key inputs #:allow-other-keys)
1614 (let ((replace-file (lambda (old new)
1615 (format #t "replacing ~a with ~a\n" old new)
1616 (symlink new old))))
1617 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
1618 ;; contain just data. They are not minified code, so we don't
1619 ;; replace them.
1620 (with-directory-excursion "inst/www/shared"
1621 (replace-file "strftime/strftime-min.js"
1622 (string-append (assoc-ref inputs "js-strftime")
1623 "/share/javascript/strftime.min.js"))
1624 (replace-file "highlight/highlight.pack.js"
1625 (string-append (assoc-ref inputs "js-highlight")
1626 "/share/javascript/highlight.min.js"))
1627 (replace-file "datatables/js/jquery.dataTables.min.js"
1628 (string-append (assoc-ref inputs "js-datatables")
1629 "/share/javascript/jquery.dataTables.min.js"))
1630 (replace-file "selectize/js/selectize.min.js"
1631 (string-append (assoc-ref inputs "js-selectize")
1632 "/share/javascript/selectize.min.js"))
1633 (for-each (match-lambda
1634 ((source . target)
1635 (minify source #:target target)))
1636 `(("jqueryui/jquery-ui.js" .
1637 "jqueryui/jquery-ui.min.js")
1638 ("datepicker/js/bootstrap-datepicker.js" .
1639 "datepicker/js/bootstrap-datepicker.min.js")
1640 ("ionrangeslider/js/ion.rangeSlider.js" .
1641 "ionrangeslider/js/ion.rangeSlider.min.js")
1642 ("bootstrap/js/bootstrap.js" .
1643 "bootstrap/js/bootstrap.min.js")
1644 (,(assoc-ref inputs "js-bootstrap-accessibility") .
1645 "bootstrap/accessibility/js/bootstrap-accessibility.min.js")
1646 ("shiny.js" .
1647 "shiny.min.js")
1648 ("jquery.js" .
1649 "jquery.min.js")
1650 ("legacy/jquery.js" .
1651 "legacy/jquery.min.js")
1652 ("selectize/accessibility/js/selectize-plugin-a11y.js" .
1653 "selectize/accessibility/js/selectize-plugin-a11y.min.js")
1654 ("showdown/src/showdown.js" .
1655 "showdown/compressed/showdown.js"))))))))))
1656 (propagated-inputs
1657 `(("r-bslib" ,r-bslib)
1658 ("r-cachem" ,r-cachem)
1659 ("r-commonmark" ,r-commonmark)
1660 ("r-crayon" ,r-crayon)
1661 ("r-digest" ,r-digest)
1662 ("r-ellipsis" ,r-ellipsis)
1663 ("r-fastmap" ,r-fastmap)
1664 ("r-glue" ,r-glue)
1665 ("r-htmltools" ,r-htmltools)
1666 ("r-httpuv" ,r-httpuv)
1667 ("r-jsonlite" ,r-jsonlite)
1668 ("r-later" ,r-later)
1669 ("r-lifecycle" ,r-lifecycle)
1670 ("r-mime" ,r-mime)
1671 ("r-promises" ,r-promises)
1672 ("r-r6" ,r-r6)
1673 ("r-rlang" ,r-rlang)
1674 ("r-sourcetools" ,r-sourcetools)
1675 ("r-withr" ,r-withr)
1676 ("r-xtable" ,r-xtable)))
1677 (inputs
1678 `(("js-datatables" ,js-datatables)
1679 ("js-selectize" ,js-selectize)
1680 ("js-strftime" ,js-strftime)
1681 ("js-highlight" ,js-highlight)))
1682 (native-inputs
1683 `(("uglify-js" ,uglify-js)
1684 ("gfortran" ,gfortran)
1685 ("js-bootstrap-accessibility"
1686 ,(origin
1687 (method url-fetch)
1688 (uri "https://raw.githubusercontent.com/paypal/bootstrap-accessibility-plugin/\
1689 v1.0.7/_site/plugins/js/bootstrap-accessibility.js")
1690 (sha256
1691 (base32
1692 "1489wyzwrpf86y7vhc13n4v3mszmsfybhd3f75jkpnbvyp5sncm8"))))))
1693 (home-page "https://shiny.rstudio.com")
1694 (synopsis "Easy interactive web applications with R")
1695 (description
1696 "Makes it incredibly easy to build interactive web applications
1697 with R. Automatic \"reactive\" binding between inputs and outputs and
1698 extensive prebuilt widgets make it possible to build beautiful,
1699 responsive, and powerful applications with minimal effort.")
1700 (license license:artistic2.0)))
1701
1702 ;; This package includes minified JavaScript files. When upgrading please
1703 ;; check that there are no new minified JavaScript files.
1704 (define-public r-shinytree
1705 (package
1706 (name "r-shinytree")
1707 (version "0.2.7")
1708 (source
1709 (origin
1710 (method url-fetch)
1711 (uri (cran-uri "shinyTree" version))
1712 (sha256
1713 (base32
1714 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
1715 (modules '((guix build utils)))
1716 (snippet
1717 '(begin
1718 ;; Delete minified JavaScript
1719 (for-each delete-file
1720 '("inst/www/jsTree-3.3.7/libs/require.js"
1721 "inst/www/jsTree-3.3.7/libs/jquery.js"
1722 "inst/www/jsTree-3.3.7/jstree.min.js"))
1723 #t))))
1724 (properties `((upstream-name . "shinyTree")))
1725 (build-system r-build-system)
1726 (arguments
1727 `(#:modules ((guix build utils)
1728 (guix build r-build-system)
1729 (srfi srfi-1)
1730 (ice-9 popen))
1731 #:phases
1732 (modify-phases %standard-phases
1733 (add-after 'unpack 'replace-minified-javascript
1734 (lambda* (#:key inputs #:allow-other-keys)
1735 (with-directory-excursion "inst/www/jsTree-3.3.7/"
1736 (symlink (string-append (assoc-ref inputs "js-requirejs")
1737 "/share/javascript/require.min.js")
1738 "libs/require.js")
1739 (call-with-values
1740 (lambda ()
1741 (unzip2
1742 `((,(assoc-ref inputs "js-jquery")
1743 "libs/jquery.js")
1744 ("jstree.js"
1745 "jstree.min.js"))))
1746 (lambda (sources targets)
1747 (for-each (lambda (source target)
1748 (format #t "Processing ~a --> ~a~%"
1749 source target)
1750 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1751 (call-with-output-file target
1752 (lambda (port)
1753 (dump-port minified port)))))
1754 sources targets))))
1755 #t)))))
1756 (propagated-inputs
1757 `(("r-htmlwidgets" ,r-htmlwidgets)
1758 ("r-jsonlite" ,r-jsonlite)
1759 ("r-promises" ,r-promises)
1760 ("r-shiny" ,r-shiny)
1761 ("r-stringr" ,r-stringr)))
1762 (inputs
1763 `(("js-requirejs" ,js-requirejs)))
1764 (native-inputs
1765 `(("uglify-js" ,uglify-js)
1766 ("js-jquery"
1767 ,(origin
1768 (method url-fetch)
1769 (uri "https://code.jquery.com/jquery-3.3.1.js")
1770 (sha256
1771 (base32
1772 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
1773 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
1774 (synopsis "jsTree bindings for Shiny")
1775 (description
1776 "This package exposes R bindings to jsTree, a JavaScript library that
1777 supports interactive trees, to enable rich, editable trees in Shiny.")
1778 (license license:expat)))
1779
1780 (define-public r-shinydashboard
1781 (package
1782 (name "r-shinydashboard")
1783 (version "0.7.1")
1784 (source (origin
1785 (method url-fetch)
1786 (uri (cran-uri "shinydashboard" version))
1787 (sha256
1788 (base32
1789 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
1790 (build-system r-build-system)
1791 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
1792 ;; Regenerate it from the included sources.
1793 (arguments
1794 `(#:modules ((guix build utils)
1795 (guix build r-build-system)
1796 (ice-9 popen))
1797 #:phases
1798 (modify-phases %standard-phases
1799 (add-after 'unpack 'generate-minified-javascript
1800 (lambda _
1801 (with-directory-excursion "inst/AdminLTE"
1802 (delete-file "app.min.js")
1803 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1804 (call-with-output-file "app.min.js"
1805 (lambda (port)
1806 (dump-port minified port))))))))))
1807 (propagated-inputs
1808 `(("r-htmltools" ,r-htmltools)
1809 ("r-promises" ,r-promises)
1810 ("r-shiny" ,r-shiny)))
1811 (native-inputs
1812 `(("uglify-js" ,uglify-js)))
1813 (home-page "https://rstudio.github.io/shinydashboard/")
1814 (synopsis "Create dashboards with shiny")
1815 (description "This package provides an extension to the Shiny web
1816 application framework for R, making it easy to create attractive dashboards.")
1817 ;; This package includes software that was released under the Expat
1818 ;; license, but the whole package is released under GPL version 2 or
1819 ;; later.
1820 (license license:gpl2+)))
1821
1822 (define-public r-shinyfiles
1823 (package
1824 (name "r-shinyfiles")
1825 (version "0.9.0")
1826 (source
1827 (origin
1828 (method url-fetch)
1829 (uri (cran-uri "shinyFiles" version))
1830 (sha256
1831 (base32 "0rsijlx16vd74r7bd8s9zipy71kgpw19v9s85kxj5bmwc6njmbai"))))
1832 (properties `((upstream-name . "shinyFiles")))
1833 (build-system r-build-system)
1834 (propagated-inputs
1835 `(("r-fs" ,r-fs)
1836 ("r-htmltools" ,r-htmltools)
1837 ("r-jsonlite" ,r-jsonlite)
1838 ("r-shiny" ,r-shiny)
1839 ("r-tibble" ,r-tibble)))
1840 (home-page "https://github.com/thomasp85/shinyFiles")
1841 (synopsis "Server-side file system viewer for Shiny")
1842 (description
1843 "This package provides functionality for client-side navigation of the
1844 server side file system in shiny apps. In case the app is running locally
1845 this gives the user direct access to the file system without the need to
1846 \"download\" files to a temporary location. Both file and folder selection as
1847 well as file saving is available.")
1848 (license license:gpl2+)))
1849
1850 (define-public r-shinythemes
1851 (package
1852 (name "r-shinythemes")
1853 (version "1.2.0")
1854 (source
1855 (origin
1856 (method url-fetch)
1857 (uri (cran-uri "shinythemes" version))
1858 (sha256
1859 (base32
1860 "0qr9bfxw8afxns44i2j4msignf6g5qb2nzpay2lpv343rrlqbmip"))))
1861 (properties `((upstream-name . "shinythemes")))
1862 (build-system r-build-system)
1863 (propagated-inputs `(("r-shiny" ,r-shiny)))
1864 (home-page "https://rstudio.github.io/shinythemes/")
1865 (synopsis "Themes for Shiny")
1866 (description
1867 "This package provides themes for use with Shiny. It includes several
1868 Bootstrap themes, which are packaged for use with Shiny applications.")
1869 ;; The package is released under version 3 of the GPL, but it includes
1870 ;; source files that are covered by the Expat license. It also includes
1871 ;; fonts under SIL or the ASL.
1872 (license (list license:gpl3 license:expat
1873 license:silofl1.1 license:asl2.0))))
1874
1875 ;; The package sources include minified variants of d3.js and non-minified
1876 ;; source code of d3-jetpack.
1877 (define-public r-d3r
1878 (package
1879 (name "r-d3r")
1880 (version "0.9.1")
1881 (source
1882 (origin
1883 (method url-fetch)
1884 (uri (cran-uri "d3r" version))
1885 (sha256
1886 (base32
1887 "0kc82vvyfxhxvqfalngn36prn3sxdiinsx04rn99ha6zdc27zp5k"))))
1888 (build-system r-build-system)
1889 (arguments
1890 `(#:modules ((guix build utils)
1891 (guix build r-build-system)
1892 (srfi srfi-1))
1893 #:phases
1894 (modify-phases %standard-phases
1895 (add-after 'unpack 'process-javascript
1896 (lambda* (#:key inputs #:allow-other-keys)
1897 (with-directory-excursion "inst/www/d3/"
1898 (call-with-values
1899 (lambda ()
1900 (unzip2
1901 `((,(assoc-ref inputs "d3.v3.js")
1902 "v3/dist/d3.min.js")
1903 (,(assoc-ref inputs "d3.v4.js")
1904 "v4/dist/d3.min.js")
1905 (,(assoc-ref inputs "d3.v5.js")
1906 "v5/dist/d3.min.js")
1907 (,(assoc-ref inputs "d3.v6.js")
1908 "v6/dist/d3.min.js"))))
1909 (lambda (sources targets)
1910 (for-each (lambda (source target)
1911 (format #t "Processing ~a --> ~a~%"
1912 source target)
1913 (delete-file target)
1914 (invoke "esbuild" source "--minify"
1915 (string-append "--outfile=" target)))
1916 sources targets))))
1917 #t)))))
1918 (propagated-inputs
1919 `(("r-dplyr" ,r-dplyr)
1920 ("r-htmltools" ,r-htmltools)
1921 ("r-rlang" ,r-rlang)
1922 ("r-tidyr" ,r-tidyr)))
1923 (native-inputs
1924 `(("esbuild" ,esbuild)
1925 ("d3.v3.js"
1926 ,(origin
1927 (method url-fetch)
1928 (uri "https://d3js.org/d3.v3.js")
1929 (sha256
1930 (base32
1931 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1932 ("d3.v4.js"
1933 ,(origin
1934 (method url-fetch)
1935 (uri "https://d3js.org/d3.v4.js")
1936 (sha256
1937 (base32
1938 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1939 ("d3.v5.js"
1940 ,(origin
1941 (method url-fetch)
1942 (uri "https://d3js.org/d3.v5.js")
1943 (sha256
1944 (base32
1945 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))
1946 ("d3.v6.js"
1947 ,(origin
1948 (method url-fetch)
1949 (uri "https://d3js.org/d3.v6.js")
1950 (sha256
1951 (base32
1952 "1x6432ca7p1pfxhz3airzw943fincn9izzxkclc1wmphcvv2n2p9"))))))
1953 (home-page "https://github.com/timelyportfolio/d3r")
1954 (synopsis "d3.js utilities for R")
1955 (description
1956 "This package provides a suite of functions to help ease the use of the
1957 d3.js visualization library in R. These helpers include
1958 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1959 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1960 R objects into the JSON format that the d3.js library expects.")
1961 (license license:bsd-3)))
1962
1963 ;; We use the latest commit here because the last release was in 2016 while
1964 ;; the latest commit was in 2018.
1965 (define-public r-sankeyd3
1966 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1967 (revision "1"))
1968 (package
1969 (name "r-sankeyd3")
1970 (version (git-version "0.3.2" revision commit))
1971 (source
1972 (origin
1973 (method git-fetch)
1974 (uri (git-reference
1975 (url "https://github.com/fbreitwieser/sankeyD3")
1976 (commit commit)))
1977 (file-name (git-file-name name version))
1978 (sha256
1979 (base32
1980 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1981 (build-system r-build-system)
1982 (propagated-inputs
1983 `(("r-d3r" ,r-d3r)
1984 ("r-htmlwidgets" ,r-htmlwidgets)
1985 ("r-shiny" ,r-shiny)
1986 ("r-magrittr" ,r-magrittr)))
1987 (home-page "https://github.com/fbreitwieser/sankeyD3")
1988 (synopsis "Sankey network graphs from R")
1989 (description
1990 "This package provides an R library to generate Sankey network graphs
1991 in R and Shiny via the D3 visualization library.")
1992 ;; The R code is licensed under GPLv3+. It includes the non-minified
1993 ;; JavaScript source code of d3-sankey, which is released under the
1994 ;; 3-clause BSD license.
1995 (license (list license:gpl3+ license:bsd-3)))))
1996
1997 (define-public r-wesanderson
1998 (package
1999 (name "r-wesanderson")
2000 (version "0.3.6")
2001 (source
2002 (origin
2003 (method url-fetch)
2004 (uri (cran-uri "wesanderson" version))
2005 (sha256
2006 (base32
2007 "09mr6p2jmqdjq27cz974w5hyxgn929zp9z3inhxqmmh1582fmdi2"))))
2008 (properties `((upstream-name . "wesanderson")))
2009 (build-system r-build-system)
2010 (home-page "https://github.com/karthik/wesanderson")
2011 (synopsis "Wes Anderson color palette generator")
2012 (description
2013 "This package provides color palettes that have been generated mostly
2014 from Wes Anderson movies.")
2015 (license license:expat)))
2016
2017 (define-public r-gg-gap
2018 (package
2019 (name "r-gg-gap")
2020 (version "1.3")
2021 (source
2022 (origin
2023 (method url-fetch)
2024 (uri (cran-uri "gg.gap" version))
2025 (sha256
2026 (base32
2027 "0m66050ryn31xmsmmikjsssllasvjdmp9yjbwfdwfpwdv106zn9h"))))
2028 (properties `((upstream-name . "gg.gap")))
2029 (build-system r-build-system)
2030 (propagated-inputs
2031 `(("r-cowplot" ,r-cowplot)
2032 ("r-ggplot2" ,r-ggplot2)))
2033 (home-page "https://github.com/ChrisLou-bioinfo/gg.gap")
2034 (synopsis "Define segments on the y-axis for ggplot2")
2035 (description
2036 "The @code{gg.gap} function enables you to define segments for the y-axis
2037 in a ggplot2 plot.")
2038 (license license:gpl3)))
2039
2040 (define-public r-tablerdash
2041 (package
2042 (name "r-tablerdash")
2043 (version "0.1.0")
2044 (source
2045 (origin
2046 (method url-fetch)
2047 (uri (cran-uri "tablerDash" version))
2048 (sha256
2049 (base32
2050 "1mnp6lxa7d669r325aynq1n3f35r9sy4v1fvdh4cymbf33s8mkmm"))
2051 (snippet
2052 '(begin
2053 ;; Delete minified JavaScript
2054 (for-each delete-file
2055 '("inst/tablerDash-0.1.0/require.min.js"
2056 "inst/bootstrap-4.0.0/bootstrap.bundle.min.js"))
2057 #true))))
2058 (properties `((upstream-name . "tablerDash")))
2059 (build-system r-build-system)
2060 (arguments
2061 `(#:modules ((guix build utils)
2062 (guix build r-build-system)
2063 (srfi srfi-1))
2064 #:phases
2065 (modify-phases %standard-phases
2066 (add-after 'unpack 'process-javascript
2067 (lambda* (#:key inputs #:allow-other-keys)
2068 (with-directory-excursion "inst"
2069 (call-with-values
2070 (lambda ()
2071 (unzip2
2072 `((,(assoc-ref inputs "js-requirejs")
2073 "tablerDash-0.1.0/require.min.js")
2074 (,(assoc-ref inputs "js-bootstrap")
2075 "bootstrap-4.0.0/bootstrap.bundle.min.js"))))
2076 (lambda (sources targets)
2077 (for-each (lambda (source target)
2078 (format #t "Processing ~a --> ~a~%"
2079 source target)
2080 (invoke "esbuild" source "--minify"
2081 (string-append "--outfile=" target)))
2082 sources targets))))
2083 #t)))))
2084 (propagated-inputs
2085 `(("r-htmltools" ,r-htmltools)
2086 ("r-knitr" ,r-knitr)
2087 ("r-shiny" ,r-shiny)))
2088 (native-inputs
2089 `(("esbuild" ,esbuild)
2090 ("js-requirejs"
2091 ,(origin
2092 (method url-fetch)
2093 (uri "https://raw.githubusercontent.com/requirejs/requirejs/2.3.5/require.js")
2094 (sha256
2095 (base32
2096 "06w32mwqii9cx409ivda88z58qbkcdb4p6hf6jawchsgagaziyds"))))
2097 ("js-bootstrap"
2098 ,(origin
2099 (method url-fetch)
2100 (uri "https://raw.githubusercontent.com/twbs/bootstrap/\
2101 v4.0.0/dist/js/bootstrap.bundle.js")
2102 (sha256
2103 (base32
2104 "0cvfqffn45vfbj3fk6wmrhkyndhk4id89vgydssbbzxjkfwprfrj"))))))
2105 (home-page "https://rinterface.github.io/tablerDash/")
2106 (synopsis "Tabler API for Shiny")
2107 (description
2108 "This package provides an R interface to the
2109 @url{https://tabler.io,Tabler} HTML template. tablerDash is a light Bootstrap
2110 4 dashboard template. There are different layouts available such as a one
2111 page dashboard or a multi-page template, where the navigation menu is
2112 contained in the navigation bar.")
2113 (license license:gpl2+)))
2114
2115 (define-public r-spelling
2116 (package
2117 (name "r-spelling")
2118 (version "2.2")
2119 (source
2120 (origin
2121 (method url-fetch)
2122 (uri (cran-uri "spelling" version))
2123 (sha256
2124 (base32
2125 "179nj9w1v27qq9q5240ddvggp0795998sxyqjvbqjvq9dmach3bl"))))
2126 (properties `((upstream-name . "spelling")))
2127 (build-system r-build-system)
2128 (propagated-inputs
2129 `(("r-commonmark" ,r-commonmark)
2130 ("r-hunspell" ,r-hunspell)
2131 ("r-knitr" ,r-knitr)
2132 ("r-xml2" ,r-xml2)))
2133 (home-page "https://docs.ropensci.org/spelling/")
2134 (synopsis "Tools for spell checking in R")
2135 (description
2136 "This is an R package for spell checking common document formats
2137 including LaTeX, markdown, manual pages, and DESCRIPTION files. It includes
2138 utilities to automate checking of documentation and vignettes as a unit test
2139 during @code{R CMD check}. Both British and American English are supported
2140 out of the box and other languages can be added. In addition, packages may
2141 define a wordlist to allow custom terminology without having to abuse
2142 punctuation.")
2143 (license license:expat)))
2144
2145 (define-public r-crosstalk
2146 (package
2147 (name "r-crosstalk")
2148 (version "1.1.1")
2149 (source
2150 (origin
2151 (method url-fetch)
2152 (uri (cran-uri "crosstalk" version))
2153 (sha256
2154 (base32
2155 "1n6c6s7a6yxiwvva71x6bzcrim8xprl5s01fqiy61yq0y3vk8cpd"))))
2156 (build-system r-build-system)
2157 (propagated-inputs
2158 `(("r-htmltools" ,r-htmltools)
2159 ("r-jsonlite" ,r-jsonlite)
2160 ("r-lazyeval" ,r-lazyeval)
2161 ("r-r6" ,r-r6)))
2162 (home-page "https://rstudio.github.io/crosstalk/")
2163 (synopsis "Inter-widget interactivity for HTML widgets")
2164 (description
2165 "This package provides building blocks for allowing HTML widgets to
2166 communicate with each other, with Shiny or without (i.e. static @code{.html}
2167 files). It currently supports linked brushing and filtering.")
2168 (license license:expat)))
2169
2170 (define-public r-rook
2171 (package
2172 (name "r-rook")
2173 (version "1.1-1")
2174 (source
2175 (origin
2176 (method url-fetch)
2177 (uri (cran-uri "Rook" version))
2178 (sha256
2179 (base32
2180 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
2181 (properties `((upstream-name . "Rook")))
2182 (build-system r-build-system)
2183 (propagated-inputs `(("r-brew" ,r-brew)))
2184 (home-page "https://cran.r-project.org/web/packages/Rook")
2185 (synopsis "Web server interface for R")
2186 (description
2187 "This package contains the Rook specification and convenience software
2188 for building and running Rook applications. A Rook application is an R
2189 reference class object that implements a @code{call} method or an R closure
2190 that takes exactly one argument, an environment, and returns a list with three
2191 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
2192 (license license:gpl2)))
2193
2194 (define-public r-miniui
2195 (package
2196 (name "r-miniui")
2197 (version "0.1.1.1")
2198 (source
2199 (origin
2200 (method url-fetch)
2201 (uri (cran-uri "miniUI" version))
2202 (sha256
2203 (base32
2204 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
2205 (properties `((upstream-name . "miniUI")))
2206 (build-system r-build-system)
2207 (propagated-inputs
2208 `(("r-htmltools" ,r-htmltools)
2209 ("r-shiny" ,r-shiny)))
2210 (home-page "https://cran.r-project.org/web/packages/miniUI/")
2211 (synopsis "Shiny UI widgets for small screens")
2212 (description
2213 "This package provides UI widget and layout functions for writing Shiny apps that
2214 work well on small screens.")
2215 (license license:gpl3)))
2216
2217 (define-public r-feather
2218 (package
2219 (name "r-feather")
2220 (version "0.3.5")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (cran-uri "feather" version))
2225 (sha256
2226 (base32
2227 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
2228 (build-system r-build-system)
2229 (propagated-inputs
2230 `(("r-hms" ,r-hms)
2231 ("r-rcpp" ,r-rcpp)
2232 ("r-tibble" ,r-tibble)))
2233 (home-page "https://github.com/wesm/feather")
2234 (synopsis "R Bindings to the Feather API")
2235 (description "Read and write feather files, a lightweight binary columnar
2236 data store designed for maximum speed.")
2237 (license license:asl2.0)))
2238
2239 (define-public r-maps
2240 (package
2241 (name "r-maps")
2242 (version "3.3.0")
2243 (source
2244 (origin
2245 (method url-fetch)
2246 (uri (cran-uri "maps" version))
2247 (sha256
2248 (base32
2249 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
2250 (build-system r-build-system)
2251 (home-page "https://cran.r-project.org/web/packages/maps")
2252 (synopsis "Draw geographical maps")
2253 (description "This package provides an R module for display of maps.
2254 Projection code and larger maps are in separate packages (@code{mapproj} and
2255 @code{mapdata}).")
2256 (license license:gpl2)))
2257
2258 (define-public r-mapproj
2259 (package
2260 (name "r-mapproj")
2261 (version "1.2.7")
2262 (source
2263 (origin
2264 (method url-fetch)
2265 (uri (cran-uri "mapproj" version))
2266 (sha256
2267 (base32
2268 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
2269 (build-system r-build-system)
2270 (propagated-inputs `(("r-maps" ,r-maps)))
2271 (home-page "https://cran.r-project.org/web/packages/mapproj")
2272 (synopsis "Map projection in R")
2273 (description "This package converts latitude/longitude into projected
2274 coordinates.")
2275 (license (list license:gpl2 ; The R interface
2276 (license:non-copyleft ; The C code
2277 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
2278 "Lucent Public License Version 1.02")))))
2279
2280 (define-public r-rgooglemaps
2281 (package
2282 (name "r-rgooglemaps")
2283 (version "1.4.5.3")
2284 (source
2285 (origin
2286 (method url-fetch)
2287 (uri (cran-uri "RgoogleMaps" version))
2288 (sha256
2289 (base32
2290 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
2291 (properties `((upstream-name . "RgoogleMaps")))
2292 (build-system r-build-system)
2293 (propagated-inputs
2294 `(("r-png" ,r-png)
2295 ("r-sp" ,r-sp)))
2296 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
2297 (synopsis "Use Google Maps in R")
2298 (description "This package serves two purposes:
2299 @enumerate
2300 @item Provide a comfortable R interface to query the Google server for static
2301 maps, and
2302 @item Use the map as a background image to overlay plots within R. This
2303 requires proper coordinate scaling.
2304 @end enumerate\n")
2305 (license license:gpl2+)))
2306
2307 (define-public r-geosphere
2308 (package
2309 (name "r-geosphere")
2310 (version "1.5-10")
2311 (source
2312 (origin
2313 (method url-fetch)
2314 (uri (cran-uri "geosphere" version))
2315 (sha256
2316 (base32
2317 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
2318 (build-system r-build-system)
2319 (propagated-inputs `(("r-sp" ,r-sp)))
2320 (home-page "https://cran.r-project.org/web/packages/geosphere")
2321 (synopsis "Spherical trigonometry")
2322 (description "This package computes spherical trigonometry for geographic
2323 applications. That is, compute distances and related measures for angular
2324 (longitude/latitude) locations.")
2325 (license license:gpl3+)))
2326
2327 (define-public r-jpeg
2328 (package
2329 (name "r-jpeg")
2330 (version "0.1-8.1")
2331 (source
2332 (origin
2333 (method url-fetch)
2334 (uri (cran-uri "jpeg" version))
2335 (sha256
2336 (base32
2337 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
2338 (build-system r-build-system)
2339 (inputs `(("libjpeg" ,libjpeg-turbo)))
2340 (home-page "https://www.rforge.net/jpeg/")
2341 (synopsis "Read and write JPEG images with R")
2342 (description "This package provides a way to read, write and display
2343 bitmap images stored in the JPEG format with R. It can read and write both
2344 files and in-memory raw vectors.")
2345 (license license:gpl2+)))
2346
2347 (define-public r-ggmap
2348 (package
2349 (name "r-ggmap")
2350 (version "3.0.0")
2351 (source
2352 (origin
2353 (method url-fetch)
2354 (uri (cran-uri "ggmap" version))
2355 (sha256
2356 (base32
2357 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
2358 (build-system r-build-system)
2359 (propagated-inputs
2360 `(("r-bitops" ,r-bitops)
2361 ("r-digest" ,r-digest)
2362 ("r-dplyr" ,r-dplyr)
2363 ("r-ggplot2" ,r-ggplot2)
2364 ("r-glue" ,r-glue)
2365 ("r-httr" ,r-httr)
2366 ("r-jpeg" ,r-jpeg)
2367 ("r-magrittr" ,r-magrittr)
2368 ("r-plyr" ,r-plyr)
2369 ("r-png" ,r-png)
2370 ("r-purrr" ,r-purrr)
2371 ("r-rgooglemaps" ,r-rgooglemaps)
2372 ("r-rjson" ,r-rjson)
2373 ("r-scales" ,r-scales)
2374 ("r-stringr" ,r-stringr)
2375 ("r-tibble" ,r-tibble)
2376 ("r-tidyr" ,r-tidyr)))
2377 (home-page "https://github.com/dkahle/ggmap")
2378 (synopsis "Spatial visualization with ggplot2")
2379 (description "This package provides a collection of functions to visualize
2380 spatial data and models on top of static maps from various online sources (e.g
2381 Google Maps and Stamen Maps). It includes tools common to those tasks,
2382 including functions for geolocation and routing.")
2383 (license license:gpl2)))
2384
2385 (define-public r-haven
2386 (package
2387 (name "r-haven")
2388 (version "2.3.1")
2389 (source
2390 (origin
2391 (method url-fetch)
2392 (uri (cran-uri "haven" version))
2393 (sha256
2394 (base32
2395 "03cypgqhdkrfbfpl1yx2wb7flczrbak1w654wkicmd5ajwr9zvkf"))
2396 (modules '((guix build utils)))
2397 (snippet
2398 '(begin
2399 ;; unvendor readstat
2400 (delete-file-recursively "src/readstat")
2401 #t))))
2402 (build-system r-build-system)
2403 (arguments
2404 '(#:phases
2405 (modify-phases %standard-phases
2406 (add-after 'unpack 'unbundle-readstat
2407 (lambda _
2408 ;; Not required, since we’re not building readstat.
2409 (substitute* "src/Makevars"
2410 (("-lz") "-lreadstat"))
2411 #t)))))
2412 (inputs
2413 `(("readstat" ,readstat)))
2414 (native-inputs
2415 `(("r-knitr" ,r-knitr)))
2416 (propagated-inputs
2417 `(("r-forcats" ,r-forcats)
2418 ("r-hms" ,r-hms)
2419 ("r-rcpp" ,r-rcpp)
2420 ("r-rlang" ,r-rlang)
2421 ("r-readr" ,r-readr)
2422 ("r-tibble" ,r-tibble)
2423 ("r-tidyselect" ,r-tidyselect)
2424 ("r-vctrs" ,r-vctrs)))
2425 (home-page "https://haven.tidyverse.org")
2426 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
2427 (description
2428 "This package lets you mport foreign statistical formats into R via the
2429 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
2430 (license license:expat)))
2431
2432 (define-public r-amap
2433 (package
2434 (name "r-amap")
2435 (version "0.8-18")
2436 (source (origin
2437 (method url-fetch)
2438 (uri (cran-uri "amap" version))
2439 (sha256
2440 (base32
2441 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
2442 (build-system r-build-system)
2443 (native-inputs
2444 `(("gfortran" ,gfortran)))
2445 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
2446 (synopsis "Another multidimensional analysis package")
2447 (description "This package provides tools for clustering and principal
2448 component analysis (with robust methods, and parallelized functions).")
2449 (license license:gpl2+)))
2450
2451 (define-public r-ape
2452 (package
2453 (name "r-ape")
2454 (version "5.4-1")
2455 (source
2456 (origin
2457 (method url-fetch)
2458 (uri (cran-uri "ape" version))
2459 (sha256
2460 (base32
2461 "1r7fwyz30ippcl1ibqiv1xryf44x5crcks5kx19h146ffj76qcgh"))))
2462 (build-system r-build-system)
2463 (propagated-inputs
2464 `(("r-lattice" ,r-lattice)
2465 ("r-nlme" ,r-nlme)
2466 ("r-rcpp" ,r-rcpp)))
2467 (home-page "http://ape-package.ird.fr/")
2468 (synopsis "Analyses of phylogenetics and evolution")
2469 (description
2470 "This package provides functions for reading, writing, plotting, and
2471 manipulating phylogenetic trees, analyses of comparative data in a
2472 phylogenetic framework, ancestral character analyses, analyses of
2473 diversification and macroevolution, computing distances from DNA sequences,
2474 and several other tools.")
2475 (license license:gpl2+)))
2476
2477 (define-public r-abbyyr
2478 (package
2479 (name "r-abbyyr")
2480 (version "0.5.5")
2481 (source
2482 (origin
2483 (method url-fetch)
2484 (uri (cran-uri "abbyyR" version))
2485 (sha256
2486 (base32
2487 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
2488 (properties `((upstream-name . "abbyyR")))
2489 (build-system r-build-system)
2490 (propagated-inputs
2491 `(("r-curl" ,r-curl)
2492 ("r-httr" ,r-httr)
2493 ("r-plyr" ,r-plyr)
2494 ("r-progress" ,r-progress)
2495 ("r-readr" ,r-readr)
2496 ("r-xml" ,r-xml)))
2497 (home-page "https://github.com/soodoku/abbyyR")
2498 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
2499 (description
2500 "This package provides tools to get text from images of text using Abbyy
2501 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
2502 OCR images, barcodes, forms, documents with machine readable zones, e.g.
2503 passports and get the results in a variety of formats including plain text and
2504 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
2505 (license license:expat)))
2506
2507 (define-public r-colorspace
2508 (package
2509 (name "r-colorspace")
2510 (version "2.0-0")
2511 (source
2512 (origin
2513 (method url-fetch)
2514 (uri (cran-uri "colorspace" version))
2515 (sha256
2516 (base32 "13h1hara0s6xn16bgkrbd0flszah1yiylwfwxwn2inqqk6pm6sjf"))))
2517 (build-system r-build-system)
2518 (native-inputs
2519 `(("r-knitr" ,r-knitr)))
2520 (home-page "https://cran.r-project.org/web/packages/colorspace")
2521 (synopsis "Color space manipulation")
2522 (description
2523 "This package carries out a mapping between assorted color spaces
2524 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
2525 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
2526 colors are provided.")
2527 (license license:bsd-3)))
2528
2529 (define-public r-glue
2530 (package
2531 (name "r-glue")
2532 (version "1.4.2")
2533 (source
2534 (origin
2535 (method url-fetch)
2536 (uri (cran-uri "glue" version))
2537 (sha256
2538 (base32
2539 "1bgpirdvjrf0da734clrixawvpdap4lpda4g89vais96589m8wwz"))))
2540 (build-system r-build-system)
2541 ;; knitr depends on glue, so we can't add knitr here to build the
2542 ;; vignettes.
2543 #;
2544 (native-inputs
2545 `(("r-knitr" ,r-knitr)))
2546 (home-page "https://github.com/tidyverse/glue")
2547 (synopsis "Interpreted string literals")
2548 (description
2549 "This package provides an implementation of interpreted string literals,
2550 inspired by Python's Literal String Interpolation (PEP-0498) and
2551 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
2552 (license license:expat)))
2553
2554 (define-public r-palmerpenguins
2555 (package
2556 (name "r-palmerpenguins")
2557 (version "0.1.0")
2558 (source
2559 (origin
2560 (method url-fetch)
2561 (uri (cran-uri "palmerpenguins" version))
2562 (sha256
2563 (base32
2564 "0q1k3cdkliq7kwrg1n0vs9b6cjwyfarhlgdijhp9c6riy6y5ik7x"))))
2565 (properties
2566 `((upstream-name . "palmerpenguins")))
2567 (build-system r-build-system)
2568 (home-page "https://allisonhorst.github.io/palmerpenguins/")
2569 (synopsis "Palmer Archipelago (Antarctica) penguin data")
2570 (description
2571 "This package includes size measurements, clutch observations, and blood
2572 isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins
2573 observed on islands in the Palmer Archipelago near Palmer Station, Antarctica.
2574 Data were collected and made available by Dr. Kristen Gorman and the Palmer
2575 Station Long Term Ecological Research (LTER) Program.")
2576 (license license:cc0)))
2577
2578 (define-public r-pastecs
2579 (package
2580 (name "r-pastecs")
2581 (version "1.3.21")
2582 (source (origin
2583 (method url-fetch)
2584 (uri (cran-uri "pastecs" version))
2585 (sha256
2586 (base32
2587 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
2588 (build-system r-build-system)
2589 (propagated-inputs
2590 `(("r-boot" ,r-boot)))
2591 (home-page "https://github.com/phgrosjean/pastecs")
2592 (synopsis "Analysis of space-time ecological series")
2593 (description
2594 "This package provides functions for regulation, decomposition and analysis
2595 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
2596 initiative to bring PASSTEC 2000 functionalities to R.")
2597 (license license:gpl2+)))
2598
2599 (define-public r-partykit
2600 (package
2601 (name "r-partykit")
2602 (version "1.2-13")
2603 (source (origin
2604 (method url-fetch)
2605 (uri (cran-uri "partykit" version))
2606 (sha256
2607 (base32
2608 "15bfhqvx2y4vclnc3sw4v7ggs70pk57b3qk9aqjfvdrx444d2gd4"))))
2609 (build-system r-build-system)
2610 (propagated-inputs
2611 `(("r-formula" ,r-formula)
2612 ("r-inum" ,r-inum)
2613 ("r-libcoin" ,r-libcoin)
2614 ("r-mvtnorm" ,r-mvtnorm)
2615 ("r-rpart" ,r-rpart)
2616 ("r-survival" ,r-survival)))
2617 (home-page "http://partykit.R-Forge.R-project.org/partykit")
2618 (synopsis "Toolkit for recursive partytioning")
2619 (description
2620 "This package provides a toolkit with infrastructure for representing,
2621 summarizing, and visualizing tree-structured regression and classification
2622 models.")
2623 (license license:gpl2+)))
2624
2625 (define-public r-plogr
2626 (package
2627 (name "r-plogr")
2628 (version "0.2.0")
2629 (source
2630 (origin
2631 (method url-fetch)
2632 (uri (cran-uri "plogr" version))
2633 (sha256
2634 (base32
2635 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
2636 (build-system r-build-system)
2637 (home-page "https://github.com/krlmlr/plogr")
2638 (synopsis "R bindings for the plog C++ logging library")
2639 (description
2640 "This package provides the header files for a stripped-down version of
2641 the plog header-only C++ logging library, and a method to log to R's standard
2642 error stream.")
2643 (license license:expat)))
2644
2645 (define-public r-pls
2646 (package
2647 (name "r-pls")
2648 (version "2.7-3")
2649 (source
2650 (origin
2651 (method url-fetch)
2652 (uri (cran-uri "pls" version))
2653 (sha256
2654 (base32 "0b3ls12w19wc4xkhnsgmb333y9lyzwq3syjc3k8zs1agnw59c7cg"))))
2655 (build-system r-build-system)
2656 (home-page "https://mevik.net/work/software/pls.html")
2657 (synopsis "Partial Least Squares and Principal Component Regression")
2658 (description
2659 "The pls package implements multivariate regression methods: Partial Least
2660 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
2661 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
2662
2663 @itemize
2664 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
2665 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
2666 @item multi-response models (or @dfn{PLS2})
2667 @item flexible cross-validation
2668 @item Jackknife variance estimates of regression coefficients
2669 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
2670 (R)MSEP, R², and correlation loadings
2671 @item formula interface, modelled after @code{lm()}, with methods for predict,
2672 print, summary, plot, update, etc.
2673 @item extraction functions for coefficients, scores, and loadings
2674 @item MSEP, RMSEP, and R² estimates
2675 @item multiplicative scatter correction (@dfn{MSC})
2676 @end itemize\n")
2677 (license license:gpl2)))
2678
2679 (define-public r-ps
2680 (package
2681 (name "r-ps")
2682 (version "1.6.0")
2683 (source
2684 (origin
2685 (method url-fetch)
2686 (uri (cran-uri "ps" version))
2687 (sha256
2688 (base32 "0cdzjqgap108whhsilxllg12m2d05pgksryhrz5bq608bvf7vbc9"))))
2689 (build-system r-build-system)
2690 (home-page "https://ps.r-lib.org")
2691 (synopsis "List, query, and manipulate system processes")
2692 (description
2693 "The ps package implements an API to list, query, and manipulate system
2694 processes. Most of its code is based on the @code{psutil} Python package.")
2695 (license license:bsd-3)))
2696
2697 (define-public r-pkgbuild
2698 (package
2699 (name "r-pkgbuild")
2700 (version "1.2.0")
2701 (source
2702 (origin
2703 (method url-fetch)
2704 (uri (cran-uri "pkgbuild" version))
2705 (sha256
2706 (base32 "0qx920h2viwjg10va81nj0xja495d8ni6vcc25ggvzki6a6k069f"))))
2707 (build-system r-build-system)
2708 (propagated-inputs
2709 `(("r-callr" ,r-callr)
2710 ("r-cli" ,r-cli)
2711 ("r-crayon" ,r-crayon)
2712 ("r-desc" ,r-desc)
2713 ("r-prettyunits" ,r-prettyunits)
2714 ("r-r6" ,r-r6)
2715 ("r-rprojroot" ,r-rprojroot)
2716 ("r-withr" ,r-withr)))
2717 (home-page "https://github.com/r-pkgs/pkgbuild")
2718 (synopsis "Find tools needed to build R packages")
2719 (description
2720 "This package provides functions used to build R packages. It locates
2721 compilers needed to build R packages on various platforms and ensures the PATH
2722 is configured appropriately so R can use them.")
2723 (license license:gpl3)))
2724
2725 (define-public r-pkgload
2726 (package
2727 (name "r-pkgload")
2728 (version "1.2.0")
2729 (source
2730 (origin
2731 (method url-fetch)
2732 (uri (cran-uri "pkgload" version))
2733 (sha256
2734 (base32
2735 "185xr79z2vncq62bni7x4qv3p7dxvnfsbdnnglma0a196hz6pj7v"))))
2736 (build-system r-build-system)
2737 (propagated-inputs
2738 `(("r-cli" ,r-cli)
2739 ("r-crayon" ,r-crayon)
2740 ("r-desc" ,r-desc)
2741 ("r-pkgbuild" ,r-pkgbuild)
2742 ("r-rlang" ,r-rlang)
2743 ("r-rprojroot" ,r-rprojroot)
2744 ("r-rstudioapi" ,r-rstudioapi)
2745 ("r-withr" ,r-withr)))
2746 (home-page "https://github.com/r-lib/pkgload")
2747 (synopsis "Simulate package installation and attach")
2748 (description
2749 "This package simulates the process of installing a package and then
2750 attaching it. This is a key part of the @code{devtools} package as it allows
2751 you to rapidly iterate while developing a package.")
2752 (license license:gpl3)))
2753
2754 (define-public r-rcpp
2755 (package
2756 (name "r-rcpp")
2757 (version "1.0.6")
2758 (source
2759 (origin
2760 (method url-fetch)
2761 (uri (cran-uri "Rcpp" version))
2762 (sha256
2763 (base32 "04ph6lm36cmvz01ng53pvvf3jxvzsn9smyflkfc7l3q0pib4gwn9"))))
2764 (build-system r-build-system)
2765 (home-page "http://www.rcpp.org")
2766 (synopsis "Seamless R and C++ integration")
2767 (description
2768 "The Rcpp package provides R functions as well as C++ classes which offer
2769 a seamless integration of R and C++. Many R data types and objects can be
2770 mapped back and forth to C++ equivalents which facilitates both writing of new
2771 code as well as easier integration of third-party libraries. Documentation
2772 about Rcpp is provided by several vignettes included in this package, via the
2773 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
2774 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
2775 @code{citation(\"Rcpp\")} for details on these last two.")
2776 (license license:gpl2+)))
2777
2778 (define-public r-rcppthread
2779 (package
2780 (name "r-rcppthread")
2781 (version "1.0.0")
2782 (source
2783 (origin
2784 (method url-fetch)
2785 (uri (cran-uri "RcppThread" version))
2786 (sha256
2787 (base32
2788 "1xfcxrny779kgknlvnc4j02ifprnakndnkhx8bhy50d39vp4hjjl"))))
2789 (properties `((upstream-name . "RcppThread")))
2790 (build-system r-build-system)
2791 (home-page
2792 "https://github.com/tnagler/RcppThread")
2793 (synopsis "R threading in C++")
2794 (description
2795 "This package provides a C++11-style thread class and thread pool that can
2796 safely be interrupted from R.")
2797 (license license:expat)))
2798
2799 (define-public r-bindr
2800 (package
2801 (name "r-bindr")
2802 (version "0.1.1")
2803 (source
2804 (origin
2805 (method url-fetch)
2806 (uri (cran-uri "bindr" version))
2807 (sha256
2808 (base32
2809 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
2810 (build-system r-build-system)
2811 (home-page "https://github.com/krlmlr/bindr")
2812 (synopsis "Parametrized active bindings")
2813 (description
2814 "This package provides a simple interface for creating active bindings
2815 where the bound function accepts additional arguments.")
2816 (license license:expat)))
2817
2818 (define-public r-bindrcpp
2819 (package
2820 (name "r-bindrcpp")
2821 (version "0.2.2")
2822 (source
2823 (origin
2824 (method url-fetch)
2825 (uri (cran-uri "bindrcpp" version))
2826 (sha256
2827 (base32
2828 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
2829 (build-system r-build-system)
2830 (propagated-inputs
2831 `(("r-bindr" ,r-bindr)
2832 ("r-plogr" ,r-plogr)
2833 ("r-rcpp" ,r-rcpp)))
2834 (home-page "https://github.com/krlmlr/bindrcpp")
2835 (synopsis "Rcpp interface to active bindings")
2836 (description
2837 "This package provides an easy way to fill an environment with active
2838 bindings that call a C++ function.")
2839 (license license:expat)))
2840
2841 (define-public r-bisquerna
2842 (package
2843 (name "r-bisquerna")
2844 (version "1.0.4")
2845 (source (origin
2846 (method url-fetch)
2847 (uri (cran-uri "BisqueRNA" version))
2848 (sha256
2849 (base32
2850 "01g34n87ml7n3pck77497ddgbv3rr5p4153ac8ninpgjijlm3jw2"))))
2851 (properties `((upstream-name . "BisqueRNA")))
2852 (build-system r-build-system)
2853 (propagated-inputs
2854 `(("r-biobase" ,r-biobase)
2855 ("r-limsolve" ,r-limsolve)))
2856 (home-page "https://www.biorxiv.org/content/10.1101/669911v1")
2857 (synopsis "Decomposition of bulk expression with single-cell sequencing")
2858 (description "This package provides tools to accurately estimate cell type
2859 abundances from heterogeneous bulk expression. A reference-based method
2860 utilizes single-cell information to generate a signature matrix and
2861 transformation of bulk expression for accurate regression based estimates.
2862 A marker-based method utilizes known cell-specific marker genes to measure
2863 relative abundances across samples.")
2864 (license license:gpl3)))
2865
2866 (define-public r-auc
2867 (package
2868 (name "r-auc")
2869 (version "0.3.0")
2870 (source
2871 (origin
2872 (method url-fetch)
2873 (uri (cran-uri "AUC" version))
2874 (sha256
2875 (base32
2876 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
2877 (properties `((upstream-name . "AUC")))
2878 (build-system r-build-system)
2879 (home-page "https://cran.r-project.org/web/packages/AUC")
2880 (synopsis "Compute the area under the curve of selected measures")
2881 (description
2882 "This package includes functions to compute the area under the curve of
2883 selected measures: the area under the sensitivity curve (AUSEC), the area
2884 under the specificity curve (AUSPC), the area under the accuracy
2885 curve (AUACC), and the area under the receiver operating characteristic
2886 curve (AUROC). The curves can also be visualized. Support for partial areas
2887 is provided.")
2888 (license license:gpl2+)))
2889
2890 (define-public r-calibrate
2891 (package
2892 (name "r-calibrate")
2893 (version "1.7.7")
2894 (source
2895 (origin
2896 (method url-fetch)
2897 (uri (cran-uri "calibrate" version))
2898 (sha256
2899 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
2900 (build-system r-build-system)
2901 (propagated-inputs
2902 `(("r-mass" ,r-mass)))
2903 (home-page "https://cran.r-project.org/web/packages/calibrate")
2904 (synopsis "Calibration of scatterplot and biplot axes")
2905 (description
2906 "This is a package for drawing calibrated scales with tick marks
2907 on (non-orthogonal) variable vectors in scatterplots and biplots.")
2908 (license license:gpl2)))
2909
2910 (define-public r-shape
2911 (package
2912 (name "r-shape")
2913 (version "1.4.5")
2914 (source
2915 (origin
2916 (method url-fetch)
2917 (uri (cran-uri "shape" version))
2918 (sha256
2919 (base32
2920 "17qqhjyfhxv9la07ykaslb50c8g4d0cgfypx4y91h9i2yjw7jjh9"))))
2921 (build-system r-build-system)
2922 (home-page "https://cran.r-project.org/web/packages/shape")
2923 (synopsis "Functions for plotting graphical shapes")
2924 (description
2925 "This package provides functions for plotting graphical shapes such as
2926 ellipses, circles, cylinders, arrows, ...")
2927 (license license:gpl3+)))
2928
2929 (define-public r-globaloptions
2930 (package
2931 (name "r-globaloptions")
2932 (version "0.1.2")
2933 (source
2934 (origin
2935 (method url-fetch)
2936 (uri (cran-uri "GlobalOptions" version))
2937 (sha256
2938 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
2939 (properties `((upstream-name . "GlobalOptions")))
2940 (build-system r-build-system)
2941 (native-inputs
2942 `(("r-knitr" ,r-knitr)))
2943 (home-page "https://github.com/jokergoo/GlobalOptions")
2944 (synopsis "Generate functions to get or set global options")
2945 (description
2946 "This package provides more controls on the option values such as
2947 validation and filtering on the values, making options invisible or private.")
2948 (license license:gpl2+)))
2949
2950 (define-public r-circlize
2951 (package
2952 (name "r-circlize")
2953 (version "0.4.12")
2954 (source
2955 (origin
2956 (method url-fetch)
2957 (uri (cran-uri "circlize" version))
2958 (sha256
2959 (base32
2960 "1x2j6a80bb4fly3dm91ias964s1gb1cmzj3lyh69ikwjaam0rdmk"))))
2961 (build-system r-build-system)
2962 (propagated-inputs
2963 `(("r-colorspace" ,r-colorspace)
2964 ("r-globaloptions" ,r-globaloptions)
2965 ("r-shape" ,r-shape)))
2966 (native-inputs
2967 `(("r-knitr" ,r-knitr)))
2968 (home-page "https://github.com/jokergoo/circlize")
2969 (synopsis "Circular visualization")
2970 (description
2971 "Circular layout is an efficient way to visualise huge amounts of
2972 information. This package provides an implementation of circular layout
2973 generation in R as well as an enhancement of available software. Its
2974 flexibility is based on the usage of low-level graphics functions such that
2975 self-defined high-level graphics can be easily implemented by users for
2976 specific purposes. Together with the seamless connection between the powerful
2977 computational and visual environment in R, it gives users more convenience and
2978 freedom to design figures for better understanding complex patterns behind
2979 multi-dimensional data.")
2980 (license license:gpl2+)))
2981
2982 (define-public r-powerlaw
2983 (package
2984 (name "r-powerlaw")
2985 (version "0.70.6")
2986 (source
2987 (origin
2988 (method url-fetch)
2989 (uri (cran-uri "poweRlaw" version))
2990 (sha256
2991 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
2992 (properties `((upstream-name . "poweRlaw")))
2993 (build-system r-build-system)
2994 (propagated-inputs
2995 `(("r-pracma" ,r-pracma)))
2996 (native-inputs
2997 `(("r-knitr" ,r-knitr)))
2998 (home-page "https://github.com/csgillespie/poweRlaw")
2999 (synopsis "Tools for the analysis of heavy tailed distributions")
3000 (description
3001 "This package provides an implementation of maximum likelihood estimators
3002 for a variety of heavy tailed distributions, including both the discrete and
3003 continuous power law distributions. Additionally, a goodness-of-fit based
3004 approach is used to estimate the lower cut-off for the scaling region.")
3005 ;; Any of these GPL versions.
3006 (license (list license:gpl2 license:gpl3))))
3007
3008 (define-public r-compare
3009 (package
3010 (name "r-compare")
3011 (version "0.2-6")
3012 (source
3013 (origin
3014 (method url-fetch)
3015 (uri (cran-uri "compare" version))
3016 (sha256
3017 (base32
3018 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
3019 (build-system r-build-system)
3020 (home-page "https://cran.r-project.org/web/packages/compare")
3021 (synopsis "Comparing objects for differences")
3022 (description
3023 "This package provides functions to compare a model object to a
3024 comparison object. If the objects are not identical, the functions can be
3025 instructed to explore various modifications of the objects (e.g., sorting
3026 rows, dropping names) to see if the modified versions are identical.")
3027 (license license:gpl2+)))
3028
3029 (define-public r-dendextend
3030 (package
3031 (name "r-dendextend")
3032 (version "1.14.0")
3033 (source
3034 (origin
3035 (method url-fetch)
3036 (uri (cran-uri "dendextend" version))
3037 (sha256
3038 (base32
3039 "0n3qg76apgbqbvxv2yp5qwpy6nx03xmmc9mdfyq4dqblqhdld29p"))))
3040 (build-system r-build-system)
3041 (propagated-inputs
3042 `(("r-ggplot2" ,r-ggplot2)
3043 ("r-magrittr" ,r-magrittr)
3044 ("r-viridis" ,r-viridis)))
3045 (native-inputs
3046 `(("r-knitr" ,r-knitr)))
3047 (home-page "https://cran.r-project.org/web/packages/dendextend")
3048 (synopsis "Extending 'dendrogram' functionality in R")
3049 (description
3050 "This package offers a set of functions for extending @code{dendrogram}
3051 objects in R, letting you visualize and compare trees of hierarchical
3052 clusterings. You can adjust a tree's graphical parameters (the color, size,
3053 type, etc of its branches, nodes and labels) and visually and statistically
3054 compare different dendrograms to one another.")
3055 ;; Any of these versions
3056 (license (list license:gpl2 license:gpl3))))
3057
3058 (define-public r-getoptlong
3059 (package
3060 (name "r-getoptlong")
3061 (version "1.0.5")
3062 (source
3063 (origin
3064 (method url-fetch)
3065 (uri (cran-uri "GetoptLong" version))
3066 (sha256
3067 (base32
3068 "00fpm6nd3kqa2ikasxa62jzywi46fvvmx1mdavcp5yrxxn37j8wc"))))
3069 (properties `((upstream-name . "GetoptLong")))
3070 (build-system r-build-system)
3071 (inputs
3072 `(("perl" ,perl)))
3073 (propagated-inputs
3074 `(("r-crayon" ,r-crayon)
3075 ("r-globaloptions" ,r-globaloptions)
3076 ("r-rjson" ,r-rjson)))
3077 (native-inputs
3078 `(("r-knitr" ,r-knitr)))
3079 (home-page "https://github.com/jokergoo/GetoptLong")
3080 (synopsis "Parsing command-line arguments and variable interpolation")
3081 (description
3082 "This is yet another command-line argument parser which wraps the
3083 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
3084 use in R. It also provides a simple way for variable interpolation in R.")
3085 (license license:gpl2+)))
3086
3087 (define-public r-fastmatch
3088 (package
3089 (name "r-fastmatch")
3090 (version "1.1-0")
3091 (source
3092 (origin
3093 (method url-fetch)
3094 (uri (cran-uri "fastmatch" version))
3095 (sha256
3096 (base32
3097 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
3098 (build-system r-build-system)
3099 (home-page "https://www.rforge.net/fastmatch")
3100 (synopsis "Fast match function")
3101 (description
3102 "This package provides a fast @code{match} replacement for cases that
3103 require repeated look-ups. It is slightly faster that R's built-in
3104 @code{match} function on first match against a table, but extremely fast on
3105 any subsequent lookup as it keeps the hash table in memory.")
3106 (license license:gpl2)))
3107
3108 (define-public r-ff
3109 (package
3110 (name "r-ff")
3111 (version "4.0.4")
3112 (source
3113 (origin
3114 (method url-fetch)
3115 (uri (cran-uri "ff" version))
3116 (sha256
3117 (base32
3118 "1rfj2ff5cxzdp9nvfnbgmswc1jvxz5vkxqgpv6gprwk32a0z3v12"))))
3119 (build-system r-build-system)
3120 (propagated-inputs `(("r-bit" ,r-bit)))
3121 (home-page "http://ff.r-forge.r-project.org/")
3122 (synopsis "Memory-efficient storage of large data on disk and access functions")
3123 (description
3124 "This package provides data structures that are stored on disk but
3125 behave (almost) as if they were in RAM by transparently mapping only a section
3126 in main memory.")
3127 ;; error Architecture not supported.
3128 (supported-systems (delete "aarch64-linux" %supported-systems))
3129 (license license:gpl2)))
3130
3131 (define-public r-ffbase
3132 (package
3133 (name "r-ffbase")
3134 (version "0.13.3")
3135 (source
3136 (origin
3137 (method url-fetch)
3138 (uri (cran-uri "ffbase" version))
3139 (sha256
3140 (base32
3141 "1dp6lblfq2j7r1b4b8ls47jlx8j27n88d5vp8w116lb8pa01zxmk"))))
3142 (build-system r-build-system)
3143 (propagated-inputs
3144 `(("r-bit" ,r-bit)
3145 ("r-fastmatch" ,r-fastmatch)
3146 ("r-ff" ,r-ff)))
3147 (home-page "https://github.com/edwindj/ffbase")
3148 (synopsis "Basic statistical functions for package 'ff'")
3149 (description
3150 "This package extends the out of memory vectors of @code{ff} with
3151 statistical functions and other utilities to ease their usage.")
3152 (license license:gpl3)))
3153
3154 (define-public r-prettyunits
3155 (package
3156 (name "r-prettyunits")
3157 (version "1.1.1")
3158 (source
3159 (origin
3160 (method url-fetch)
3161 (uri (cran-uri "prettyunits" version))
3162 (sha256
3163 (base32
3164 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
3165 (build-system r-build-system)
3166 (home-page "https://github.com/gaborcsardi/prettyunits")
3167 (synopsis "Pretty, human readable formatting of quantities")
3168 (description
3169 "This package provides tools for pretty, human readable formatting of
3170 quantities.")
3171 (license license:expat)))
3172
3173 (define-public r-reshape
3174 (package
3175 (name "r-reshape")
3176 (version "0.8.8")
3177 (source
3178 (origin
3179 (method url-fetch)
3180 (uri (cran-uri "reshape" version))
3181 (sha256
3182 (base32
3183 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
3184 (build-system r-build-system)
3185 (propagated-inputs
3186 `(("r-plyr" ,r-plyr)
3187 ("r-rcpp" ,r-rcpp)))
3188 (home-page "http://had.co.nz/reshape")
3189 (synopsis "Flexibly reshape data")
3190 (description
3191 "Flexibly restructure and aggregate data using just two functions:
3192 @code{melt} and @code{cast}. This package provides them.")
3193 (license license:expat)))
3194
3195 (define-public r-restrserve
3196 (package
3197 (name "r-restrserve")
3198 (version "0.4.1")
3199 (source
3200 (origin
3201 (method url-fetch)
3202 (uri (cran-uri "RestRserve" version))
3203 (sha256
3204 (base32 "1486hrzj5q5w4nbrsbqlv7vv20ly01y90qc2vygl5syzwvyjd422"))))
3205 (build-system r-build-system)
3206 (propagated-inputs
3207 `(("r-checkmate" ,r-checkmate)
3208 ("r-jsonlite" ,r-jsonlite)
3209 ("r-mime" ,r-mime)
3210 ("r-r6" ,r-r6)
3211 ("r-rcpp" ,r-rcpp)
3212 ("r-rserve" ,r-rserve)
3213 ("r-uuid" ,r-uuid)))
3214 (native-inputs
3215 `(("r-knitr" ,r-knitr)))
3216 (home-page "https://restrserve.org")
3217 (synopsis "R web API framework")
3218 (description
3219 "RestRserve is an R web API framework for building high-performance AND
3220 robust microservices and app backends. With Rserve backend on UNIX-like
3221 systems it is parallel by design. It will handle incoming requests in
3222 parallel - each request in a separate fork.")
3223 (license license:gpl2+)))
3224
3225 (define-public r-progress
3226 (package
3227 (name "r-progress")
3228 (version "1.2.2")
3229 (source
3230 (origin
3231 (method url-fetch)
3232 (uri (cran-uri "progress" version))
3233 (sha256
3234 (base32
3235 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
3236 (build-system r-build-system)
3237 (propagated-inputs
3238 `(("r-crayon" ,r-crayon)
3239 ("r-hms" ,r-hms)
3240 ("r-prettyunits" ,r-prettyunits)
3241 ("r-r6" ,r-r6)))
3242 (home-page "https://github.com/gaborcsardi/progress")
3243 (synopsis "Terminal progress bars")
3244 (description
3245 "This package provides configurable progress bars. They may include
3246 percentage, elapsed time, and/or the estimated completion time. They work in
3247 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
3248 package also provides a C++ API, that works with or without Rcpp.")
3249 (license license:expat)))
3250
3251 (define-public r-ggally
3252 (package
3253 (name "r-ggally")
3254 (version "2.1.1")
3255 (source
3256 (origin
3257 (method url-fetch)
3258 (uri (cran-uri "GGally" version))
3259 (sha256
3260 (base32
3261 "0lly659kd43cnz1bmmzqj6dbf4v0nm8dhj8xq2wlv9qbnfhq5r9p"))))
3262 (properties `((upstream-name . "GGally")))
3263 (build-system r-build-system)
3264 (inputs
3265 `(("openssl" ,openssl)))
3266 (propagated-inputs
3267 `(("r-dplyr" ,r-dplyr)
3268 ("r-forcats" ,r-forcats)
3269 ("r-ggplot2" ,r-ggplot2)
3270 ("r-gtable" ,r-gtable)
3271 ("r-lifecycle" ,r-lifecycle)
3272 ("r-plyr" ,r-plyr)
3273 ("r-progress" ,r-progress)
3274 ("r-rcolorbrewer" ,r-rcolorbrewer)
3275 ("r-reshape" ,r-reshape)
3276 ("r-rlang" ,r-rlang)
3277 ("r-scales" ,r-scales)
3278 ("r-tidyr" ,r-tidyr)))
3279 (home-page "https://ggobi.github.io/ggally")
3280 (synopsis "Extension to ggplot2")
3281 (description
3282 "The R package ggplot2 is a plotting system based on the grammar of
3283 graphics. GGally extends ggplot2 by adding several functions to reduce the
3284 complexity of combining geometric objects with transformed data. Some of
3285 these functions include a pairwise plot matrix, a two group pairwise plot
3286 matrix, a parallel coordinates plot, a survival plot, and several functions to
3287 plot networks.")
3288 (license license:gpl2+)))
3289
3290 (define-public r-proxy
3291 (package
3292 (name "r-proxy")
3293 (version "0.4-25")
3294 (source
3295 (origin
3296 (method url-fetch)
3297 (uri (cran-uri "proxy" version))
3298 (sha256
3299 (base32
3300 "1m893djrv6ckadmlx9n5bxfp0ycdh2w63sy6yxfyj1migvc7072f"))))
3301 (build-system r-build-system)
3302 (home-page "https://cran.r-project.org/web/packages/proxy")
3303 (synopsis "Distance and similarity measures")
3304 (description
3305 "This package provides an extensible framework for the efficient
3306 calculation of auto- and cross-proximities, along with implementations of the
3307 most popular ones.")
3308 (license license:gpl2)))
3309
3310 (define-public r-sp
3311 (package
3312 (name "r-sp")
3313 (version "1.4-5")
3314 (source
3315 (origin
3316 (method url-fetch)
3317 (uri (cran-uri "sp" version))
3318 (sha256
3319 (base32 "1nh9izsnszzm5kbq461w8bi0yh7fqzb74b2zmpg5qis0slbb5vkb"))))
3320 (build-system r-build-system)
3321 (propagated-inputs
3322 `(("r-lattice" ,r-lattice)))
3323 (home-page "https://cran.r-project.org/web/packages/sp")
3324 (synopsis "Classes and methods for spatial data")
3325 (description
3326 "This package provides classes and methods for spatial data; the classes
3327 document where the spatial location information resides, for 2D or 3D data.
3328 Utility functions are provided, e.g. for plotting data as maps, spatial
3329 selection, as well as methods for retrieving coordinates, for subsetting,
3330 print, summary, etc.")
3331 (license license:gpl2+)))
3332
3333 (define-public r-laplacesdemon
3334 (package
3335 (name "r-laplacesdemon")
3336 (version "16.1.4")
3337 (source
3338 (origin
3339 (method url-fetch)
3340 (uri (cran-uri "LaplacesDemon" version))
3341 (sha256
3342 (base32 "1nv1kx86cg8f2s8q15pzskc0lg94bb250p0fhybrx5sjqv1s2lj1"))))
3343 (properties `((upstream-name . "LaplacesDemon")))
3344 (build-system r-build-system)
3345 (home-page "https://github.com/LaplacesDemonR/LaplacesDemon")
3346 (synopsis "Complete environment for Bayesian inference")
3347 (description
3348 "This package provides a complete environment for Bayesian inference using
3349 a variety of different samplers.")
3350 (license license:expat)))
3351
3352 (define-public r-rmtstat
3353 (package
3354 (name "r-rmtstat")
3355 (version "0.3")
3356 (source
3357 (origin
3358 (method url-fetch)
3359 (uri (cran-uri "RMTstat" version))
3360 (sha256
3361 (base32
3362 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
3363 (properties `((upstream-name . "RMTstat")))
3364 (build-system r-build-system)
3365 (home-page "https://cran.r-project.org/web/packages/RMTstat")
3366 (synopsis "Distributions, statistics and tests derived from random matrix theory")
3367 (description
3368 "This package provides functions for working with the Tracy-Widom laws
3369 and other distributions related to the eigenvalues of large Wishart
3370 matrices.")
3371 (license license:bsd-3)))
3372
3373 (define-public r-rmpi
3374 (package
3375 (name "r-rmpi")
3376 (version "0.6-9.1")
3377 (source (origin
3378 (method url-fetch)
3379 (uri (cran-uri "Rmpi" version))
3380 (sha256
3381 (base32
3382 "1j8akqjan59yzwx2s1zxc214qyd323fd2i2dhgq0n11mb6ajmq4r"))))
3383 (properties `((upstream-name . "Rmpi")))
3384 (build-system r-build-system)
3385 (arguments
3386 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
3387 #:phases (modify-phases %standard-phases
3388 (add-before 'install 'mpi-setup
3389 ,%openmpi-setup))))
3390 (inputs
3391 `(("openmpi" ,openmpi)))
3392 (native-inputs
3393 `(("pkg-config" ,pkg-config)))
3394 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
3395 (synopsis "R interface to message-passing interface (MPI)")
3396 (description
3397 "This package provides an interface (wrapper) to MPI APIs. It also
3398 provides an interactive R manager and worker environment.")
3399 (license license:gpl2+)))
3400
3401 (define-public r-lmoments
3402 (package
3403 (name "r-lmoments")
3404 (version "1.3-1")
3405 (source
3406 (origin
3407 (method url-fetch)
3408 (uri (cran-uri "Lmoments" version))
3409 (sha256
3410 (base32
3411 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
3412 (properties `((upstream-name . "Lmoments")))
3413 (build-system r-build-system)
3414 (propagated-inputs
3415 `(("r-rcpp" ,r-rcpp)
3416 ("r-rcpparmadillo" ,r-rcpparmadillo)))
3417 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
3418 (synopsis "L-moments and quantile mixtures")
3419 (description
3420 "This package contains functions to estimate L-moments and trimmed
3421 L-moments from the data. It also contains functions to estimate the
3422 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
3423 quantile mixture from L-moments and trimmed L-moments.")
3424 (license license:gpl2)))
3425
3426 (define-public r-distillery
3427 (package
3428 (name "r-distillery")
3429 (version "1.2")
3430 (source
3431 (origin
3432 (method url-fetch)
3433 (uri (cran-uri "distillery" version))
3434 (sha256
3435 (base32
3436 "10nhh9p0hp294pp4aav0y0zsmir2qbn05sf3k52rmzmm36q2kc8y"))))
3437 (build-system r-build-system)
3438 (home-page "https://ral.ucar.edu/staff/ericg/")
3439 (synopsis "Functions for confidence intervals and object information")
3440 (description
3441 "This package provides some very simple method functions for confidence
3442 interval calculation and to distill pertinent information from a potentially
3443 complex object; primarily used in common with the packages extRemes and
3444 SpatialVx.")
3445 (license license:gpl2+)))
3446
3447 (define-public r-etrunct
3448 (package
3449 (name "r-etrunct")
3450 (version "0.1")
3451 (source (origin
3452 (method url-fetch)
3453 (uri (cran-uri "etrunct" version))
3454 (sha256
3455 (base32
3456 "0ayazgyqlc8jcqr03cwfmfhm4pck6xri1r6vkgqy4arqkrrnrcqr"))))
3457 (properties `((upstream-name . "etrunct")))
3458 (build-system r-build-system)
3459 (home-page "https://cran.r-project.org/web/packages/etrunct")
3460 (synopsis "Computes moments of univariate truncated T distribution")
3461 (description "This package computes moments of univariate truncated
3462 T distribution. There is only one exported function, @code{e_trunct},
3463 which should be seen for details.")
3464 (license license:expat)))
3465
3466 (define-public r-extremes
3467 (package
3468 (name "r-extremes")
3469 (version "2.1")
3470 (source
3471 (origin
3472 (method url-fetch)
3473 (uri (cran-uri "extRemes" version))
3474 (sha256
3475 (base32
3476 "1b69r3mzl6hp3g3rqxyc77m8r40jyq7c2d87q85af7xqkn6hnxid"))))
3477 (properties `((upstream-name . "extRemes")))
3478 (build-system r-build-system)
3479 (propagated-inputs
3480 `(("r-distillery" ,r-distillery)
3481 ("r-lmoments" ,r-lmoments)))
3482 (home-page "https://www.assessment.ucar.edu/toolkit/")
3483 (synopsis "Extreme value analysis")
3484 (description
3485 "ExtRemes is a suite of functions for carrying out analyses on the
3486 extreme values of a process of interest; be they block maxima over long blocks
3487 or excesses over a high threshold.")
3488 (license license:gpl2+)))
3489
3490 (define-public r-lmtest
3491 (package
3492 (name "r-lmtest")
3493 (version "0.9-38")
3494 (source
3495 (origin
3496 (method url-fetch)
3497 (uri (cran-uri "lmtest" version))
3498 (sha256
3499 (base32
3500 "0sr19bmw2cpagfvwg772m79wvl1i2hww1xfr69bzr3rr8pm2r8ij"))))
3501 (build-system r-build-system)
3502 (propagated-inputs
3503 `(("r-zoo" ,r-zoo)))
3504 (native-inputs
3505 `(("gfortran" ,gfortran)))
3506 (home-page "https://cran.r-project.org/web/packages/lmtest")
3507 (synopsis "Testing linear regression models")
3508 (description
3509 "This package provides a collection of tests, data sets, and examples for
3510 diagnostic checking in linear regression models. Furthermore, some generic
3511 tools for inference in parametric models are provided.")
3512 ;; Either version is okay
3513 (license (list license:gpl2 license:gpl3))))
3514
3515 (define-public r-idr
3516 (package
3517 (name "r-idr")
3518 (version "1.2")
3519 (source (origin
3520 (method url-fetch)
3521 (uri (cran-uri "idr" version))
3522 (sha256
3523 (base32
3524 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
3525 (build-system r-build-system)
3526 (home-page "https://cran.r-project.org/web/packages/idr/")
3527 (synopsis "Irreproducible discovery rate")
3528 (description
3529 "This is a package for estimating the copula mixture model and plotting
3530 correspondence curves in \"Measuring reproducibility of high-throughput
3531 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
3532 by Li, Brown, Huang, and Bickel")
3533 (license license:gpl2+)))
3534
3535 (define-public r-inline
3536 (package
3537 (name "r-inline")
3538 (version "0.3.17")
3539 (source (origin
3540 (method url-fetch)
3541 (uri (cran-uri "inline" version))
3542 (sha256
3543 (base32
3544 "1wslsn60q959yrr27cwanba43qlpfaxzdli46i9dc26lxfr5fa3r"))))
3545 (build-system r-build-system)
3546 (home-page "https://cran.r-project.org/web/packages/inline")
3547 (synopsis "Functions to inline C, C++, Fortran function calls from R")
3548 (description
3549 "This package provides functionality to dynamically define R functions
3550 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
3551 @code{.Call} calling conventions.")
3552 ;; Any version of the LGPL.
3553 (license license:lgpl3+)))
3554
3555 (define-public r-inum
3556 (package
3557 (name "r-inum")
3558 (version "1.0-3")
3559 (source (origin
3560 (method url-fetch)
3561 (uri (cran-uri "inum" version))
3562 (sha256
3563 (base32
3564 "1sz11b4vlpskhmq9vvc1jix63a5g7lij6368w8qbnkjmjd97k7i4"))))
3565 (build-system r-build-system)
3566 (propagated-inputs
3567 `(("r-libcoin" ,r-libcoin)))
3568 (home-page "https://cran.r-project.org/web/packages/inum/")
3569 (synopsis "Interval and enum-type representation of vectors")
3570 (description
3571 "This package provides an enum-type representation of vectors and
3572 representation of intervals, including a method of coercing variables
3573 in data frames.")
3574 (license license:gpl2)))
3575 (define-public r-invgamma
3576 (package
3577 (name "r-invgamma")
3578 (version "1.1")
3579 (source (origin
3580 (method url-fetch)
3581 (uri (cran-uri "invgamma" version))
3582 (sha256
3583 (base32
3584 "12ga2y4wc9bc5zz6vimvxwgjpsx3ys3209nq63gscbw559ydxa5a"))))
3585 (properties `((upstream-name . "invgamma")))
3586 (build-system r-build-system)
3587 (home-page "https://github.com/dkahle/invgamma")
3588 (synopsis "Inverse gamma distribution")
3589 (description "This package provides a light weight implementation of the
3590 standard distribution functions for the inverse gamma distribution, wrapping
3591 those for the gamma distribution in the @code{stats} package.")
3592 (license license:gpl2)))
3593
3594 (define-public r-bdsmatrix
3595 (package
3596 (name "r-bdsmatrix")
3597 (version "1.3-4")
3598 (source
3599 (origin
3600 (method url-fetch)
3601 (uri (cran-uri "bdsmatrix" version))
3602 (sha256
3603 (base32
3604 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
3605 (properties `((upstream-name . "bdsmatrix")))
3606 (build-system r-build-system)
3607 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
3608 (synopsis "Routines for block diagonal symmetric matrices")
3609 (description
3610 "This package provides procedures to work with block diagonal symmetric
3611 matrices, a special case of sparse matrices.")
3612 (license license:lgpl2.0)))
3613
3614 (define-public r-bbmle
3615 (package
3616 (name "r-bbmle")
3617 (version "1.0.23.1")
3618 (source
3619 (origin
3620 (method url-fetch)
3621 (uri (cran-uri "bbmle" version))
3622 (sha256
3623 (base32
3624 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
3625 (build-system r-build-system)
3626 (propagated-inputs
3627 `(("r-bdsmatrix" ,r-bdsmatrix)
3628 ("r-lattice" ,r-lattice)
3629 ("r-mass" ,r-mass)
3630 ("r-matrix" ,r-matrix)
3631 ("r-mvtnorm" ,r-mvtnorm)
3632 ("r-numderiv" ,r-numderiv)))
3633 (home-page "https://cran.r-project.org/web/packages/bbmle")
3634 (synopsis "Tools for General Maximum Likelihood Estimation")
3635 (description
3636 "This package provides methods and functions for fitting maximum
3637 likelihood models in R. This package modifies and extends the @code{mle}
3638 classes in the @code{stats4} package.")
3639 ;; Any version of the GPL
3640 (license license:gpl2+)))
3641
3642 (define-public r-emdbook
3643 (package
3644 (name "r-emdbook")
3645 (version "1.3.12")
3646 (source
3647 (origin
3648 (method url-fetch)
3649 (uri (cran-uri "emdbook" version))
3650 (sha256
3651 (base32
3652 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
3653 (build-system r-build-system)
3654 (propagated-inputs
3655 `(("r-bbmle" ,r-bbmle)
3656 ("r-coda" ,r-coda)
3657 ("r-lattice" ,r-lattice)
3658 ("r-mass" ,r-mass)
3659 ("r-plyr" ,r-plyr)))
3660 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
3661 (synopsis "Support functions and data for \"Ecological Models and Data\"")
3662 (description
3663 "This package provides auxiliary functions and data sets for \"Ecological
3664 Models and Data\", a book presenting maximum likelihood estimation and related
3665 topics for ecologists (ISBN 978-0-691-12522-0).")
3666 ;; Any GPL version
3667 (license (list license:gpl2 license:gpl3))))
3668
3669 (define-public r-lpsolve
3670 (package
3671 (name "r-lpsolve")
3672 (version "5.6.15")
3673 (source
3674 (origin
3675 (method url-fetch)
3676 (uri (cran-uri "lpSolve" version))
3677 (sha256
3678 (base32
3679 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
3680 (properties `((upstream-name . "lpSolve")))
3681 (build-system r-build-system)
3682 (home-page "https://cran.r-project.org/web/packages/lpSolve")
3683 (synopsis "R interface to Lp_solve to solve linear/integer programs")
3684 (description
3685 "Lp_solve is software for solving linear, integer and mixed integer
3686 programs. This implementation supplies a \"wrapper\" function in C and some R
3687 functions that solve general linear/integer problems, assignment problems, and
3688 transportation problems.")
3689 (license license:lgpl2.0)))
3690
3691 (define-public r-limsolve
3692 (package
3693 (name "r-limsolve")
3694 (version "1.5.6")
3695 (source
3696 (origin
3697 (method url-fetch)
3698 (uri (cran-uri "limSolve" version))
3699 (sha256
3700 (base32
3701 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
3702 (properties `((upstream-name . "limSolve")))
3703 (build-system r-build-system)
3704 (propagated-inputs
3705 `(("r-lpsolve" ,r-lpsolve)
3706 ("r-mass" ,r-mass)
3707 ("r-quadprog" ,r-quadprog)))
3708 (native-inputs `(("gfortran" ,gfortran)))
3709 (home-page "https://cran.r-project.org/web/packages/limSolve")
3710 (synopsis "Solving linear inverse models")
3711 (description
3712 "This package provides functions that:
3713
3714 @enumerate
3715 @item find the minimum/maximum of a linear or quadratic function,
3716 @item sample an underdetermined or overdetermined system,
3717 @item solve a linear system Ax=B for the unknown x.
3718 @end enumerate
3719
3720 It includes banded and tridiagonal linear systems. The package calls Fortran
3721 functions from LINPACK.")
3722 ;; Any GPL version.
3723 (license (list license:gpl2+ license:gpl3+))))
3724
3725 (define-public r-fitdistrplus
3726 (package
3727 (name "r-fitdistrplus")
3728 (version "1.1-3")
3729 (source
3730 (origin
3731 (method url-fetch)
3732 (uri (cran-uri "fitdistrplus" version))
3733 (sha256
3734 (base32
3735 "1pjnqx0j26dai2fa4ip56wspmfsrcm9dpmxkg15y9623w5b58vbp"))))
3736 (build-system r-build-system)
3737 (propagated-inputs
3738 `(("r-mass" ,r-mass)
3739 ("r-survival" ,r-survival)))
3740 (native-inputs
3741 `(("r-knitr" ,r-knitr)))
3742 (home-page "http://riskassessment.r-forge.r-project.org")
3743 (synopsis "Fitting a parametric distribution from data")
3744 (description
3745 "This package extends the @code{fitdistr} function of the MASS package
3746 with several functions to help the fit of a parametric distribution to
3747 non-censored or censored data. Censored data may contain left-censored,
3748 right-censored and interval-censored values, with several lower and upper
3749 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
3750 provides moment matching (MME), quantile matching (QME) and maximum
3751 goodness-of-fit estimation (MGE) methods (available only for non-censored
3752 data). Weighted versions of MLE, MME and QME are available.")
3753 (license license:gpl2+)))
3754
3755 (define-public r-energy
3756 (package
3757 (name "r-energy")
3758 (version "1.7-8")
3759 (source
3760 (origin
3761 (method url-fetch)
3762 (uri (cran-uri "energy" version))
3763 (sha256
3764 (base32
3765 "12a7gy681aq3l55iys044cs6sn1s2l5qihghpdl01cvv0ggfh26y"))))
3766 (build-system r-build-system)
3767 (propagated-inputs
3768 `(("r-boot" ,r-boot)
3769 ("r-gsl" ,r-gsl)
3770 ("r-rcpp" ,r-rcpp)))
3771 (home-page "https://cran.r-project.org/web/packages/energy")
3772 (synopsis "Multivariate inference via the energy of data")
3773 (description
3774 "This package provides e-statistics (energy) tests and statistics for
3775 multivariate and univariate inference, including distance correlation,
3776 one-sample, two-sample, and multi-sample tests for comparing multivariate
3777 distributions, are implemented. Measuring and testing multivariate
3778 independence based on distance correlation, partial distance correlation,
3779 multivariate goodness-of-fit tests, clustering based on energy distance,
3780 testing for multivariate normality, distance components (disco) for
3781 non-parametric analysis of structured data, and other energy
3782 statistics/methods are implemented.")
3783 (license license:gpl2+)))
3784
3785 (define-public r-suppdists
3786 (package
3787 (name "r-suppdists")
3788 (version "1.1-9.5")
3789 (source
3790 (origin
3791 (method url-fetch)
3792 (uri (cran-uri "SuppDists" version))
3793 (sha256
3794 (base32
3795 "01j6p94m1g363nph2158fq2rmd6z3h5dvcv6aidh2d6syw131xak"))))
3796 (properties `((upstream-name . "SuppDists")))
3797 (build-system r-build-system)
3798 (home-page "https://cran.r-project.org/web/packages/SuppDists")
3799 (synopsis "Supplementary distributions")
3800 (description
3801 "This package provides ten distributions supplementing those built into
3802 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
3803 Spearman's rho, maximum F ratio, the Pearson product moment correlation
3804 coefficient, Johnson distributions, normal scores and generalized
3805 hypergeometric distributions. In addition two random number generators of
3806 George Marsaglia are included.")
3807 (license license:gpl2+)))
3808
3809 (define-public r-ksamples
3810 (package
3811 (name "r-ksamples")
3812 (version "1.2-9")
3813 (source
3814 (origin
3815 (method url-fetch)
3816 (uri (cran-uri "kSamples" version))
3817 (sha256
3818 (base32
3819 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
3820 (properties `((upstream-name . "kSamples")))
3821 (build-system r-build-system)
3822 (propagated-inputs
3823 `(("r-suppdists" ,r-suppdists)))
3824 (home-page "https://cran.r-project.org/web/packages/kSamples")
3825 (synopsis "K-Sample rank tests and their combinations")
3826 (description
3827 "This package provides tools to compares k samples using the
3828 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
3829 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
3830 test. It computes asymptotic, simulated or (limited) exact P-values, all
3831 valid under randomization, with or without ties, or conditionally under random
3832 sampling from populations, given the observed tie pattern. Except for Steel's
3833 test and the JT test it also combines these tests across several blocks of
3834 samples.")
3835 (license license:gpl2+)))
3836
3837 (define-public r-cvst
3838 (package
3839 (name "r-cvst")
3840 (version "0.2-2")
3841 (source
3842 (origin
3843 (method url-fetch)
3844 (uri (cran-uri "CVST" version))
3845 (sha256
3846 (base32
3847 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
3848 (properties `((upstream-name . "CVST")))
3849 (build-system r-build-system)
3850 (propagated-inputs
3851 `(("r-kernlab" ,r-kernlab)
3852 ("r-matrix" ,r-matrix)))
3853 (home-page "https://cran.r-project.org/web/packages/CVST")
3854 (synopsis "Fast cross-validation via sequential testing")
3855 (description
3856 "This package implements the fast cross-validation via sequential
3857 testing (CVST) procedure. CVST is an improved cross-validation procedure
3858 which uses non-parametric testing coupled with sequential analysis to
3859 determine the best parameter set on linearly increasing subsets of the data.
3860 Additionally to the CVST the package contains an implementation of the
3861 ordinary k-fold cross-validation with a flexible and powerful set of helper
3862 objects and methods to handle the overall model selection process. The
3863 implementations of the Cochran's Q test with permutations and the sequential
3864 testing framework of Wald are generic and can therefore also be used in other
3865 contexts.")
3866 (license license:gpl2+)))
3867
3868 (define-public r-squarem
3869 (package
3870 (name "r-squarem")
3871 (version "2021.1")
3872 (source
3873 (origin
3874 (method url-fetch)
3875 (uri (cran-uri "SQUAREM" version))
3876 (sha256
3877 (base32
3878 "0n1s32l9p4vdm3h5q6g43s0qbpzry08difsh0yay80wrla6f3rb6"))))
3879 (properties `((upstream-name . "SQUAREM")))
3880 (build-system r-build-system)
3881 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
3882 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
3883 (description
3884 "This package provides algorithms for accelerating the convergence of
3885 slow, monotone sequences from smooth, contraction mapping such as the EM
3886 algorithm. It can be used to accelerate any smooth, linearly convergent
3887 acceleration scheme. A tutorial style introduction to this package is
3888 available in a vignette.")
3889 (license license:gpl2+)))
3890
3891 (define-public r-lava
3892 (package
3893 (name "r-lava")
3894 (version "1.6.9")
3895 (source
3896 (origin
3897 (method url-fetch)
3898 (uri (cran-uri "lava" version))
3899 (sha256
3900 (base32
3901 "07difbrz8zmvdyns63958v0zw4hyv48956mcww8zh7064a564k83"))))
3902 (build-system r-build-system)
3903 (propagated-inputs
3904 `(("r-numderiv" ,r-numderiv)
3905 ("r-squarem" ,r-squarem)
3906 ("r-survival" ,r-survival)))
3907 (native-inputs
3908 `(("r-knitr" ,r-knitr)))
3909 (home-page "https://github.com/kkholst/lava")
3910 (synopsis "Latent variable models")
3911 (description
3912 "This package provides tools for the estimation and simulation of latent
3913 variable models.")
3914 (license license:gpl3)))
3915
3916 (define-public r-drr
3917 (package
3918 (name "r-drr")
3919 (version "0.0.4")
3920 (source
3921 (origin
3922 (method url-fetch)
3923 (uri (cran-uri "DRR" version))
3924 (sha256
3925 (base32
3926 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
3927 (properties `((upstream-name . "DRR")))
3928 (build-system r-build-system)
3929 (propagated-inputs
3930 `(("r-cvst" ,r-cvst)
3931 ("r-kernlab" ,r-kernlab)
3932 ("r-matrix" ,r-matrix)))
3933 (home-page "https://cran.r-project.org/web/packages/DRR")
3934 (synopsis "Dimensionality reduction via regression")
3935 (description
3936 "This package provides an implementation of dimensionality reduction via
3937 regression using Kernel Ridge Regression.")
3938 (license license:gpl3)))
3939
3940 (define-public r-prodlim
3941 (package
3942 (name "r-prodlim")
3943 (version "2019.11.13")
3944 (source
3945 (origin
3946 (method url-fetch)
3947 (uri (cran-uri "prodlim" version))
3948 (sha256
3949 (base32
3950 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
3951 (build-system r-build-system)
3952 (propagated-inputs
3953 `(("r-kernsmooth" ,r-kernsmooth)
3954 ("r-lava" ,r-lava)
3955 ("r-rcpp" ,r-rcpp)
3956 ("r-survival" ,r-survival)))
3957 (home-page "https://cran.r-project.org/web/packages/prodlim")
3958 (synopsis "Product-limit estimation for censored event history analysis")
3959 (description
3960 "This package provides a fast and user-friendly implementation of
3961 nonparametric estimators for censored event history (survival) analysis with
3962 the Kaplan-Meier and Aalen-Johansen methods.")
3963 (license license:gpl2+)))
3964
3965 (define-public r-dimred
3966 (package
3967 (name "r-dimred")
3968 (version "0.2.3")
3969 (source
3970 (origin
3971 (method url-fetch)
3972 (uri (cran-uri "dimRed" version))
3973 (sha256
3974 (base32
3975 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
3976 (properties `((upstream-name . "dimRed")))
3977 (build-system r-build-system)
3978 (propagated-inputs
3979 `(("r-drr" ,r-drr)
3980 ("r-magrittr" ,r-magrittr)))
3981 (home-page "https://github.com/gdkrmr/dimRed")
3982 (synopsis "Framework for dimensionality reduction")
3983 (description
3984 "This package provides a collection of dimensionality reduction
3985 techniques from R packages and provides a common interface for calling the
3986 methods.")
3987 (license license:gpl3)))
3988
3989 (define-public r-timedate
3990 (package
3991 (name "r-timedate")
3992 (version "3043.102")
3993 (source
3994 (origin
3995 (method url-fetch)
3996 (uri (cran-uri "timeDate" version))
3997 (sha256
3998 (base32
3999 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
4000 (properties `((upstream-name . "timeDate")))
4001 (build-system r-build-system)
4002 (home-page "https://www.rmetrics.org")
4003 (synopsis "Chronological and calendar objects")
4004 (description
4005 "This package provides an environment for teaching \"Financial
4006 Engineering and Computational Finance\" and for managing chronological and
4007 calendar objects.")
4008 (license license:gpl2+)))
4009
4010 (define-public r-magic
4011 (package
4012 (name "r-magic")
4013 (version "1.5-9")
4014 (source
4015 (origin
4016 (method url-fetch)
4017 (uri (cran-uri "magic" version))
4018 (sha256
4019 (base32
4020 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
4021 (build-system r-build-system)
4022 (propagated-inputs
4023 `(("r-abind" ,r-abind)))
4024 (home-page "https://github.com/RobinHankin/magic.git")
4025 (synopsis "Create and investigate magic squares")
4026 (description
4027 "This package provides a collection of efficient, vectorized algorithms
4028 for the creation and investigation of magic squares and hypercubes, including
4029 a variety of functions for the manipulation and analysis of arbitrarily
4030 dimensioned arrays.")
4031 (license license:gpl2)))
4032
4033 (define-public r-rmysql
4034 (package
4035 (name "r-rmysql")
4036 (version "0.10.21")
4037 (source
4038 (origin
4039 (method url-fetch)
4040 (uri (cran-uri "RMySQL" version))
4041 (sha256
4042 (base32
4043 "0cbb5ln9iigl816nzvsls9zil5qlfr8yv2aginapqv6n69nz0srs"))))
4044 (properties `((upstream-name . "RMySQL")))
4045 (build-system r-build-system)
4046 (inputs
4047 `(("mariadb-dev" ,mariadb "dev")
4048 ("zlib" ,zlib)))
4049 (propagated-inputs
4050 `(("r-dbi" ,r-dbi)))
4051 (home-page "https://github.com/r-dbi/RMySQL")
4052 (synopsis "Database interface and MySQL driver for R")
4053 (description
4054 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
4055 package contains an old implementation based on legacy code from S-PLUS which
4056 is being phased out. A modern MySQL client based on Rcpp is available from
4057 the RMariaDB package.")
4058 (license license:gpl2)))
4059
4060 (define-public r-rpostgresql
4061 (package
4062 (name "r-rpostgresql")
4063 (version "0.6-2")
4064 (source
4065 (origin
4066 (method url-fetch)
4067 (uri (cran-uri "RPostgreSQL" version))
4068 (sha256
4069 (base32
4070 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
4071 (properties `((upstream-name . "RPostgreSQL")))
4072 (build-system r-build-system)
4073 (inputs
4074 `(("postgresql" ,postgresql)))
4075 (propagated-inputs
4076 `(("r-dbi" ,r-dbi)))
4077 (home-page "https://github.com/tomoakin/RPostgreSQL")
4078 (synopsis "R interface to the PostgreSQL database system")
4079 (description
4080 "This package provides a Database Interface (DBI) compliant driver for R
4081 to access PostgreSQL database systems.")
4082 ;; The whole package is released under GPL version 2. It includes code
4083 ;; under the PostgreSQL license.
4084 (license license:gpl2)))
4085
4086 (define-public r-linprog
4087 (package
4088 (name "r-linprog")
4089 (version "0.9-2")
4090 (source
4091 (origin
4092 (method url-fetch)
4093 (uri (cran-uri "linprog" version))
4094 (sha256
4095 (base32
4096 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
4097 (build-system r-build-system)
4098 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
4099 (home-page "http://linprog.r-forge.r-project.org/")
4100 (synopsis "Linear programming and optimization")
4101 (description
4102 "This package can be used to solve Linear Programming / Linear
4103 Optimization problems by using the simplex algorithm.")
4104 (license license:gpl2+)))
4105
4106 (define-public r-geometry
4107 (package
4108 (name "r-geometry")
4109 (version "0.4.5")
4110 (source
4111 (origin
4112 (method url-fetch)
4113 (uri (cran-uri "geometry" version))
4114 (sha256
4115 (base32
4116 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
4117 (build-system r-build-system)
4118 (propagated-inputs
4119 `(("r-magic" ,r-magic)
4120 ("r-linprog" ,r-linprog)
4121 ("r-lpsolve" ,r-lpsolve)
4122 ("r-rcpp" ,r-rcpp)
4123 ("r-rcppprogress" ,r-rcppprogress)))
4124 (home-page "http://geometry.r-forge.r-project.org/")
4125 (synopsis "Mesh generator and surface tessellator")
4126 (description
4127 "This package makes the qhull library available in R, in a similar manner
4128 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
4129 intersections about a point, Voronoi diagrams, furthest-site Delaunay
4130 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
4131 and higher dimensions. It implements the Quickhull algorithm for computing
4132 the convex hull. Qhull does not support constrained Delaunay triangulations,
4133 or mesh generation of non-convex objects, but the package does include some R
4134 functions that allow for this. Currently the package only gives access to
4135 Delaunay triangulation and convex hull computation.")
4136 ;; The Qhull sources are included and are distributed under a custom
4137 ;; non-copyleft license. The R sources are released under GPL version 2.
4138 (license (list license:gpl2
4139 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
4140
4141 (define-public r-ddalpha
4142 (package
4143 (name "r-ddalpha")
4144 (version "1.3.11")
4145 (source
4146 (origin
4147 (method url-fetch)
4148 (uri (cran-uri "ddalpha" version))
4149 (sha256
4150 (base32
4151 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
4152 (build-system r-build-system)
4153 (propagated-inputs
4154 `(("r-bh" ,r-bh)
4155 ("r-class" ,r-class)
4156 ("r-geometry" ,r-geometry)
4157 ("r-mass" ,r-mass)
4158 ("r-rcpp" ,r-rcpp)
4159 ("r-robustbase" ,r-robustbase)
4160 ("r-sfsmisc" ,r-sfsmisc)))
4161 (native-inputs
4162 `(("gfortran" ,gfortran)))
4163 (home-page "https://cran.r-project.org/web/packages/ddalpha")
4164 (synopsis "Depth-Based classification and calculation of data depth")
4165 (description
4166 "This package contains procedures for depth-based supervised learning,
4167 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
4168 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
4169 statistical depth function to a compact low-dimensional space, where the final
4170 classification is done. It also offers an extension to functional data and
4171 routines for calculating certain notions of statistical depth functions. 50
4172 multivariate and 5 functional classification problems are included.")
4173 (license license:gpl2)))
4174
4175 (define-public r-gower
4176 (package
4177 (name "r-gower")
4178 (version "0.2.2")
4179 (source
4180 (origin
4181 (method url-fetch)
4182 (uri (cran-uri "gower" version))
4183 (sha256
4184 (base32
4185 "0c9n921wn4hhlvjq96r4nkk96s5788376cbldr7y7bwz348200iz"))))
4186 (build-system r-build-system)
4187 (home-page "https://github.com/markvanderloo/gower")
4188 (synopsis "Gower's distance")
4189 (description
4190 "This package provides tools to compute Gower's distance (or similarity)
4191 coefficient between records, and to compute the top-n matches between records.
4192 Core algorithms are executed in parallel on systems supporting OpenMP.")
4193 (license license:gpl3)))
4194
4195 (define-public r-rcpproll
4196 (package
4197 (name "r-rcpproll")
4198 (version "0.3.0")
4199 (source
4200 (origin
4201 (method url-fetch)
4202 (uri (cran-uri "RcppRoll" version))
4203 (sha256
4204 (base32
4205 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
4206 (properties `((upstream-name . "RcppRoll")))
4207 (build-system r-build-system)
4208 (propagated-inputs
4209 `(("r-rcpp" ,r-rcpp)))
4210 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
4211 (synopsis "Efficient rolling and windowed operations")
4212 (description
4213 "This package provides fast and efficient routines for common rolling /
4214 windowed operations. Routines for the efficient computation of windowed mean,
4215 median, sum, product, minimum, maximum, standard deviation and variance are
4216 provided.")
4217 (license license:gpl2+)))
4218
4219 (define-public r-ipred
4220 (package
4221 (name "r-ipred")
4222 (version "0.9-11")
4223 (source
4224 (origin
4225 (method url-fetch)
4226 (uri (cran-uri "ipred" version))
4227 (sha256
4228 (base32
4229 "04hfg27c72v0fz4091w3rgbc2vd7g6yl78y9plvsvh0vjlx8ymmp"))))
4230 (build-system r-build-system)
4231 (propagated-inputs
4232 `(("r-class" ,r-class)
4233 ("r-mass" ,r-mass)
4234 ("r-nnet" ,r-nnet)
4235 ("r-prodlim" ,r-prodlim)
4236 ("r-rpart" ,r-rpart)
4237 ("r-survival" ,r-survival)))
4238 (home-page "https://cran.r-project.org/web/packages/ipred")
4239 (synopsis "Improved predictors")
4240 (description
4241 "This package provides improved predictive models by indirect
4242 classification and bagging for classification, regression and survival
4243 problems as well as resampling based estimators of prediction error.")
4244 (license license:gpl2+)))
4245
4246 (define-public r-psych
4247 (package
4248 (name "r-psych")
4249 (version "2.0.12")
4250 (source
4251 (origin
4252 (method url-fetch)
4253 (uri (cran-uri "psych" version))
4254 (sha256
4255 (base32
4256 "0k5dw5nb7kx7f21b0z01dry99qcpnk7iaicv7xq9d35wv2hx8wca"))))
4257 (build-system r-build-system)
4258 (propagated-inputs
4259 `(("r-lattice" ,r-lattice)
4260 ("r-mnormt" ,r-mnormt)
4261 ("r-nlme" ,r-nlme)))
4262 (home-page "https://cran.r-project.org/web/packages/psych/")
4263 (synopsis "Procedures for psychological, psychometric, and personality research")
4264 (description
4265 "This package provides a general purpose toolbox for personality,
4266 psychometric theory and experimental psychology. Functions are primarily for
4267 multivariate analysis and scale construction using factor analysis, principal
4268 component analysis, cluster analysis and reliability analysis, although others
4269 provide basic descriptive statistics. Item Response Theory is done using
4270 factor analysis of tetrachoric and polychoric correlations. Functions for
4271 analyzing data at multiple levels include within and between group statistics,
4272 including correlations and factor analysis. Functions for simulating and
4273 testing particular item and test structures are included. Several functions
4274 serve as a useful front end for structural equation modeling. Graphical
4275 displays of path diagrams, factor analysis and structural equation models are
4276 created using basic graphics.")
4277 (license license:gpl2+)))
4278
4279 (define-public r-generics
4280 (package
4281 (name "r-generics")
4282 (version "0.1.0")
4283 (source
4284 (origin
4285 (method url-fetch)
4286 (uri (cran-uri "generics" version))
4287 (sha256
4288 (base32
4289 "0qw7r0d2qvlj1pvrlpv30d6akml624ydxkk19hv85iv6pfyx2wdb"))))
4290 (build-system r-build-system)
4291 (home-page "https://github.com/r-lib/generics")
4292 (synopsis "Common S3 generics not provided by base R methods")
4293 (description
4294 "In order to reduce potential package dependencies and conflicts,
4295 generics provides a number of commonly used S3 generics that are not provided
4296 by base R methods related to model fitting.")
4297 (license license:gpl2)))
4298
4299 (define-public r-broom
4300 (package
4301 (name "r-broom")
4302 (version "0.7.5")
4303 (source
4304 (origin
4305 (method url-fetch)
4306 (uri (cran-uri "broom" version))
4307 (sha256
4308 (base32
4309 "1qjyl5b100bsakm48w1vi3819lkpys7vb86n1sv9h4y2wr1c4jmw"))))
4310 (build-system r-build-system)
4311 (propagated-inputs
4312 `(("r-backports" ,r-backports)
4313 ("r-dplyr" ,r-dplyr)
4314 ("r-ellipsis" ,r-ellipsis)
4315 ("r-generics" ,r-generics)
4316 ("r-glue" ,r-glue)
4317 ("r-purrr" ,r-purrr)
4318 ("r-rlang" ,r-rlang)
4319 ("r-stringr" ,r-stringr)
4320 ("r-tibble" ,r-tibble)
4321 ("r-tidyr" ,r-tidyr)))
4322 (native-inputs
4323 `(("r-knitr" ,r-knitr)))
4324 (home-page "https://github.com/tidyverse/broom")
4325 (synopsis "Convert statistical analysis objects into tidy data frames")
4326 (description
4327 "This package provides tools to convert statistical analysis objects from
4328 R into tidy data frames, so that they can more easily be combined, reshaped
4329 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
4330 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
4331 summarizes a model's statistical findings such as coefficients of a
4332 regression; @code{augment}, which adds columns to the original data such as
4333 predictions, residuals and cluster assignments; and @code{glance}, which
4334 provides a one-row summary of model-level statistics.")
4335 (license license:expat)))
4336
4337 (define-public r-recipes
4338 (package
4339 (name "r-recipes")
4340 (version "0.1.15")
4341 (source
4342 (origin
4343 (method url-fetch)
4344 (uri (cran-uri "recipes" version))
4345 (sha256
4346 (base32
4347 "0xif0ak3w90xmfzlxvb5pnzc3scpfl1pyhrjffi3mq4asvsd52l0"))))
4348 (build-system r-build-system)
4349 (propagated-inputs
4350 `(("r-dplyr" ,r-dplyr)
4351 ("r-generics" ,r-generics)
4352 ("r-glue" ,r-glue)
4353 ("r-gower" ,r-gower)
4354 ("r-ipred" ,r-ipred)
4355 ("r-lifecycle" ,r-lifecycle)
4356 ("r-lubridate" ,r-lubridate)
4357 ("r-magrittr" ,r-magrittr)
4358 ("r-matrix" ,r-matrix)
4359 ("r-purrr" ,r-purrr)
4360 ("r-rlang" ,r-rlang)
4361 ("r-tibble" ,r-tibble)
4362 ("r-tidyr" ,r-tidyr)
4363 ("r-tidyselect" ,r-tidyselect)
4364 ("r-timedate" ,r-timedate)
4365 ("r-withr" ,r-withr)))
4366 (native-inputs
4367 `(("r-knitr" ,r-knitr)))
4368 (home-page "https://github.com/topepo/recipes")
4369 (synopsis "Preprocessing tools to create design matrices")
4370 (description
4371 "Recipes is an extensible framework to create and preprocess design
4372 matrices. Recipes consist of one or more data manipulation and analysis
4373 \"steps\". Statistical parameters for the steps can be estimated from an
4374 initial data set and then applied to other data sets. The resulting design
4375 matrices can then be used as inputs into statistical or machine learning
4376 models.")
4377 (license license:gpl2)))
4378
4379 (define-public r-pdist
4380 (package
4381 (name "r-pdist")
4382 (version "1.2")
4383 (source
4384 (origin
4385 (method url-fetch)
4386 (uri (cran-uri "pdist" version))
4387 (sha256
4388 (base32
4389 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
4390 (build-system r-build-system)
4391 (home-page "https://github.com/jeffwong/pdist")
4392 (synopsis "Partitioned distance function")
4393 (description
4394 "Pdist computes the euclidean distance between rows of a matrix X and
4395 rows of another matrix Y. Previously, this could be done by binding the two
4396 matrices together and calling @code{dist}, but this creates unnecessary
4397 computation by computing the distances between a row of X and another row of
4398 X, and likewise for Y. Pdist strictly computes distances across the two
4399 matrices, not within the same matrix, making computations significantly faster
4400 for certain use cases.")
4401 (license license:gpl3+)))
4402
4403 (define-public r-ggrepel
4404 (package
4405 (name "r-ggrepel")
4406 (version "0.9.1")
4407 (source
4408 (origin
4409 (method url-fetch)
4410 (uri (cran-uri "ggrepel" version))
4411 (sha256
4412 (base32
4413 "1z5xyr5f4aryy0v1gzz9m8m4s5fzzwbrf0fxll1nbflr8xnr3yr9"))))
4414 (build-system r-build-system)
4415 (propagated-inputs
4416 `(("r-ggplot2" ,r-ggplot2)
4417 ("r-rcpp" ,r-rcpp)
4418 ("r-rlang" ,r-rlang)
4419 ("r-scales" ,r-scales)))
4420 (native-inputs
4421 `(("r-knitr" ,r-knitr))) ; for vignettes
4422 (home-page "https://github.com/slowkow/ggrepel")
4423 (synopsis "Repulsive text and label geometries for ggplot2")
4424 (description
4425 "This package provides text and label geometries for ggplot2 that help to
4426 avoid overlapping text labels. Labels repel away from each other and away
4427 from the data points.")
4428 (license license:gpl3)))
4429
4430 (define-public r-corrplot
4431 (package
4432 (name "r-corrplot")
4433 (version "0.84")
4434 (source
4435 (origin
4436 (method url-fetch)
4437 (uri (cran-uri "corrplot" version))
4438 (sha256
4439 (base32
4440 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
4441 (build-system r-build-system)
4442 (home-page "https://github.com/taiyun/corrplot")
4443 (synopsis "Visualization of a correlation matrix")
4444 (description
4445 "This package provides a graphical display of a correlation matrix or
4446 general matrix. It also contains some algorithms to do matrix reordering. In
4447 addition, corrplot is good at details, including choosing color, text labels,
4448 color labels, layout, etc.")
4449 ;; Any version of the GPL
4450 (license license:gpl2+)))
4451
4452 (define-public r-stringdist
4453 (package
4454 (name "r-stringdist")
4455 (version "0.9.6.3")
4456 (source
4457 (origin
4458 (method url-fetch)
4459 (uri (cran-uri "stringdist" version))
4460 (sha256
4461 (base32 "06rzbgw43vzg496xca82pydf3g2rz6iw6h50ai0prbp9hbwrhvfd"))))
4462 (build-system r-build-system)
4463 (home-page "https://github.com/markvanderloo/stringdist")
4464 (synopsis "Approximate string matching and string distance functions")
4465 (description
4466 "This package implements an approximate string matching version of R's
4467 native @code{match} function. It can calculate various string distances based
4468 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal string alignment),
4469 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
4470 Jaro-Winkler). An implementation of soundex is provided as well. Distances
4471 can be computed between character vectors while taking proper care of encoding
4472 or between integer vectors representing generic sequences.")
4473 (license license:gpl3+)))
4474
4475 (define-public r-ucminf
4476 (package
4477 (name "r-ucminf")
4478 (version "1.1-4")
4479 (source
4480 (origin
4481 (method url-fetch)
4482 (uri (cran-uri "ucminf" version))
4483 (sha256
4484 (base32
4485 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
4486 (build-system r-build-system)
4487 (native-inputs `(("gfortran" ,gfortran)))
4488 (home-page "https://cran.r-project.org/web/packages/ucminf/")
4489 (synopsis "General-purpose unconstrained non-linear optimization")
4490 (description
4491 "This package provides an implementation of an algorithm for
4492 general-purpose unconstrained non-linear optimization. The algorithm is of
4493 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
4494 search with a trust region type monitoring of the input to the line search
4495 algorithm. The interface of @code{ucminf} is designed for easy interchange
4496 with the package @code{optim}.")
4497 (license license:gpl2+)))
4498
4499 (define-public r-useful
4500 (package
4501 (name "r-useful")
4502 (version "1.2.6")
4503 (source (origin
4504 (method url-fetch)
4505 (uri (cran-uri "useful" version))
4506 (sha256
4507 (base32
4508 "0n50v1q75k518sq23id14jphwla35q4sasahrnrnllwrachl67v1"))))
4509 (properties `((upstream-name . "useful")))
4510 (build-system r-build-system)
4511 (propagated-inputs
4512 `(("r-assertthat" ,r-assertthat)
4513 ("r-dplyr" ,r-dplyr)
4514 ("r-ggplot2" ,r-ggplot2)
4515 ("r-magrittr" ,r-magrittr)
4516 ("r-matrix" ,r-matrix)
4517 ("r-plyr" ,r-plyr)
4518 ("r-purrr" ,r-purrr)
4519 ("r-scales" ,r-scales)))
4520 (home-page "https://github.com/jaredlander/useful")
4521 (synopsis "Collection of handy, useful functions")
4522 (description "This package provides a set of little functions that have been
4523 found useful to do little odds and ends such as plotting the results of K-means
4524 clustering, substituting special text characters, viewing parts of a
4525 @code{data.frame}, constructing formulas from text and building design and
4526 response matrices.")
4527 (license license:bsd-3)))
4528
4529 (define-public r-ordinal
4530 (package
4531 (name "r-ordinal")
4532 (version "2019.12-10")
4533 (source
4534 (origin
4535 (method url-fetch)
4536 (uri (cran-uri "ordinal" version))
4537 (sha256
4538 (base32
4539 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
4540 (build-system r-build-system)
4541 (propagated-inputs
4542 `(("r-mass" ,r-mass)
4543 ("r-matrix" ,r-matrix)
4544 ("r-numderiv" ,r-numderiv)
4545 ("r-ucminf" ,r-ucminf)))
4546 (home-page "https://github.com/runehaubo/ordinal")
4547 (synopsis "Regression models for ordinal data")
4548 (description
4549 "This package provides an implementation of cumulative link (mixed)
4550 models also known as ordered regression models, proportional odds models,
4551 proportional hazards models for grouped survival times and ordered models.
4552 Estimation is via maximum likelihood and mixed models are fitted with the
4553 Laplace approximation and adaptive Gauss-Hermite quadrature.")
4554 (license license:gpl2+)))
4555
4556 (define-public r-jomo
4557 (package
4558 (name "r-jomo")
4559 (version "2.7-2")
4560 (source
4561 (origin
4562 (method url-fetch)
4563 (uri (cran-uri "jomo" version))
4564 (sha256
4565 (base32
4566 "1sbcpacxnxbzwa8rr9x2bq7hh0s3sw6yznr90dkp43n6xk5xaqir"))))
4567 (build-system r-build-system)
4568 (propagated-inputs
4569 `(("r-lme4" ,r-lme4)
4570 ("r-mass" ,r-mass)
4571 ("r-ordinal" ,r-ordinal)
4572 ("r-survival" ,r-survival)))
4573 (home-page "https://cran.r-project.org/web/packages/jomo/")
4574 (synopsis "Multilevel Joint Modelling Multiple Imputation")
4575 (description
4576 "Similarly to Schafer's package pan, jomo is a package for multilevel
4577 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
4578 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
4579 possibility of handling binary and categorical data through latent normal
4580 variables, the option to use cluster-specific covariance matrices and to
4581 impute compatibly with the substantive model.")
4582 (license license:gpl2)))
4583
4584 (define-public r-pan
4585 (package
4586 (name "r-pan")
4587 (version "1.6")
4588 (source
4589 (origin
4590 (method url-fetch)
4591 (uri (cran-uri "pan" version))
4592 (sha256
4593 (base32
4594 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
4595 (build-system r-build-system)
4596 (native-inputs `(("gfortran" ,gfortran)))
4597 (home-page "https://cran.r-project.org/web/packages/pan/")
4598 (synopsis "Multiple imputation for multivariate panel or clustered data")
4599 (description
4600 "This package implements multiple imputation for multivariate panel or
4601 clustered data.")
4602 (license license:gpl3)))
4603
4604 (define-public r-mitml
4605 (package
4606 (name "r-mitml")
4607 (version "0.4-1")
4608 (source
4609 (origin
4610 (method url-fetch)
4611 (uri (cran-uri "mitml" version))
4612 (sha256
4613 (base32
4614 "1bw92fl6xp3yvawh3nbjzs4hp4alpwj6vnv6lsysd74aqndw447c"))))
4615 (build-system r-build-system)
4616 (propagated-inputs
4617 `(("r-haven" ,r-haven)
4618 ("r-jomo" ,r-jomo)
4619 ("r-pan" ,r-pan)))
4620 (native-inputs
4621 `(("r-knitr" ,r-knitr)))
4622 (home-page "https://cran.r-project.org/web/packages/mitml/")
4623 (synopsis "Tools for multiple imputation in multilevel modeling")
4624 (description
4625 "This package provides tools for multiple imputation of missing data in
4626 multilevel modeling. It includes a user-friendly interface to the packages
4627 pan and jomo, and several functions for visualization, data management and the
4628 analysis of multiply imputed data sets.")
4629 (license license:gpl2+)))
4630
4631 (define-public r-mice
4632 (package
4633 (name "r-mice")
4634 (version "3.13.0")
4635 (source
4636 (origin
4637 (method url-fetch)
4638 (uri (cran-uri "mice" version))
4639 (sha256
4640 (base32
4641 "11cpyqlilakan2pwjzacb9jjlazazsqdngy237nnrj8j6mky822i"))))
4642 (build-system r-build-system)
4643 (propagated-inputs
4644 `(("r-broom" ,r-broom)
4645 ("r-cpp11" ,r-cpp11)
4646 ("r-dplyr" ,r-dplyr)
4647 ("r-generics" ,r-generics)
4648 ("r-lattice" ,r-lattice)
4649 ("r-rcpp" ,r-rcpp)
4650 ("r-rlang" ,r-rlang)
4651 ("r-tidyr" ,r-tidyr)))
4652 (home-page "https://cran.r-project.org/web/packages/mice/")
4653 (synopsis "Multivariate imputation by chained equations")
4654 (description
4655 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
4656 implemented by the MICE algorithm as described in @url{Van Buuren and
4657 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
4658 variable has its own imputation model. Built-in imputation models are
4659 provided for continuous data (predictive mean matching, normal), binary
4660 data (logistic regression), unordered categorical data (polytomous logistic
4661 regression) and ordered categorical data (proportional odds). MICE can also
4662 impute continuous two-level data (normal model, pan, second-level variables).
4663 Passive imputation can be used to maintain consistency between variables.
4664 Various diagnostic plots are available to inspect the quality of the
4665 imputations.")
4666 ;; Any of these two versions.
4667 (license (list license:gpl2 license:gpl3))))
4668
4669 (define-public r-truncnorm
4670 (package
4671 (name "r-truncnorm")
4672 (version "1.0-8")
4673 (source
4674 (origin
4675 (method url-fetch)
4676 (uri (cran-uri "truncnorm" version))
4677 (sha256
4678 (base32
4679 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
4680 (build-system r-build-system)
4681 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
4682 (synopsis "Truncated normal distribution")
4683 (description "This package provides functions for the truncated normal
4684 distribution with mean equal to @code{mean} and standard deviation equal to
4685 @code{sd}. It includes density, distribution, quantile, and expected value
4686 functions, as well as a random generation function.")
4687 (license license:gpl2)))
4688
4689 (define-public r-rsolnp
4690 (package
4691 (name "r-rsolnp")
4692 (version "1.16")
4693 (source
4694 (origin
4695 (method url-fetch)
4696 (uri (cran-uri "Rsolnp" version))
4697 (sha256
4698 (base32
4699 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
4700 (properties `((upstream-name . "Rsolnp")))
4701 (build-system r-build-system)
4702 (propagated-inputs
4703 `(("r-truncnorm" ,r-truncnorm)))
4704 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
4705 (synopsis "General non-linear optimization")
4706 (description "The Rsolnp package implements a general non-linear augmented
4707 Lagrange multiplier method solver, a @dfn{sequential quadratic
4708 programming} (SQP) based solver).")
4709 ;; Any version of the GPL.
4710 (license license:gpl2+)))
4711
4712 (define-public r-hardyweinberg
4713 (package
4714 (name "r-hardyweinberg")
4715 (version "1.7.1")
4716 (source
4717 (origin
4718 (method url-fetch)
4719 (uri (cran-uri "HardyWeinberg" version))
4720 (sha256
4721 (base32
4722 "0afjz818yvaq3akvgpy4irnlpspd2dj71qkrwj81lm9y36ypwlw6"))))
4723 (properties `((upstream-name . "HardyWeinberg")))
4724 (build-system r-build-system)
4725 (propagated-inputs
4726 `(("r-mice" ,r-mice)
4727 ("r-rcpp" ,r-rcpp)
4728 ("r-rsolnp" ,r-rsolnp)))
4729 (home-page "https://cran.r-project.org/package=HardyWeinberg")
4730 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
4731 (description
4732 "This package contains tools for exploring Hardy-Weinberg equilibrium for
4733 diallelic genetic marker data. All classical tests (chi-square, exact,
4734 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
4735 included in the package, as well as functions for power computation and for
4736 the simulation of marker data under equilibrium and disequilibrium. Routines
4737 for dealing with markers on the X-chromosome are included. Functions for
4738 testing equilibrium in the presence of missing data by using multiple
4739 imputation are also provided. Implements several graphics for exploring the
4740 equilibrium status of a large set of diallelic markers: ternary plots with
4741 acceptance regions, log-ratio plots and Q-Q plots.")
4742 (license license:gpl2+)))
4743
4744 (define-public r-sm
4745 (package
4746 (name "r-sm")
4747 (version "2.2-5.6")
4748 (source
4749 (origin
4750 (method url-fetch)
4751 (uri (cran-uri "sm" version))
4752 (sha256
4753 (base32
4754 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
4755 (build-system r-build-system)
4756 (native-inputs `(("gfortran" ,gfortran)))
4757 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
4758 (synopsis "Smoothing methods for nonparametric regression and density estimation")
4759 (description
4760 "This is software accompanying the book 'Applied Smoothing Techniques for
4761 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
4762 University Press. It provides smoothing methods for nonparametric regression
4763 and density estimation")
4764 (license license:gpl2+)))
4765
4766 (define-public r-venndiagram
4767 (package
4768 (name "r-venndiagram")
4769 (version "1.6.20")
4770 (source (origin
4771 (method url-fetch)
4772 (uri (cran-uri "VennDiagram" version))
4773 (sha256
4774 (base32
4775 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
4776 (properties `((upstream-name . "VennDiagram")))
4777 (build-system r-build-system)
4778 (propagated-inputs
4779 `(("r-futile-logger" ,r-futile-logger)))
4780 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
4781 (synopsis "Generate High-Resolution Venn and Euler Plots")
4782 (description
4783 "This package provides a set of functions to generate high-resolution
4784 Venn and Euler plots. It includes handling for several special cases,
4785 including two-case scaling, and extensive customization of plot shape and
4786 structure.")
4787 (license license:gpl2+)))
4788
4789 (define-public r-vioplot
4790 (package
4791 (name "r-vioplot")
4792 (version "0.3.5")
4793 (source
4794 (origin
4795 (method url-fetch)
4796 (uri (cran-uri "vioplot" version))
4797 (sha256
4798 (base32
4799 "0aiy615kn9lpr2cs757g3pklg81n01yhqh0wrwv111fn3cy86r0v"))))
4800 (build-system r-build-system)
4801 (propagated-inputs
4802 `(("r-sm" ,r-sm)
4803 ("r-zoo" ,r-zoo)))
4804 (native-inputs
4805 `(("r-knitr" ,r-knitr)))
4806 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
4807 (synopsis "Violin plot")
4808 (description
4809 "This package provides a violin plot, which is a combination of a box
4810 plot and a kernel density plot.")
4811 (license license:bsd-3)))
4812
4813 (define-public r-rsofia
4814 (package
4815 (name "r-rsofia")
4816 (version "1.1")
4817 (source (origin
4818 (method url-fetch)
4819 ;; This package has been removed from CRAN, so we can
4820 ;; only fetch it from the archives.
4821 (uri (string-append "https://cran.r-project.org/src/"
4822 "contrib/Archive/RSofia/RSofia_"
4823 version ".tar.gz"))
4824 (sha256
4825 (base32
4826 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
4827 (properties `((upstream-name . "RSofia")))
4828 (build-system r-build-system)
4829 (propagated-inputs
4830 `(("r-rcpp" ,r-rcpp)))
4831 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
4832 (synopsis "Port of sofia-ml to R")
4833 (description "This package is a port of sofia-ml to R. Sofia-ml is a
4834 suite of fast incremental algorithms for machine learning that can be used for
4835 training models for classification or ranking.")
4836 (license license:asl2.0)))
4837
4838 (define-public r-xts
4839 (package
4840 (name "r-xts")
4841 (version "0.12.1")
4842 (source
4843 (origin
4844 (method url-fetch)
4845 (uri (cran-uri "xts" version))
4846 (sha256
4847 (base32
4848 "0b6a7mpyk9aw6axas7nz01gadczprwwfhii01fz31z26z555i06n"))))
4849 (build-system r-build-system)
4850 (propagated-inputs `(("r-zoo" ,r-zoo)))
4851 (home-page "https://github.com/joshuaulrich/xts")
4852 (synopsis "Extensible time series")
4853 (description
4854 "This package provides for uniform handling of R's different time-based
4855 data classes by extending @code{zoo}, maximizing native format information
4856 preservation and allowing for user-level customization and extension, while
4857 simplifying cross-class interoperability.")
4858 (license license:gpl2+)))
4859
4860 (define-public r-performanceanalytics
4861 (package
4862 (name "r-performanceanalytics")
4863 (version "2.0.4")
4864 (source
4865 (origin
4866 (method url-fetch)
4867 (uri (cran-uri "PerformanceAnalytics" version))
4868 (sha256
4869 (base32
4870 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
4871 (properties
4872 `((upstream-name . "PerformanceAnalytics")))
4873 (build-system r-build-system)
4874 (propagated-inputs
4875 `(("r-quadprog" ,r-quadprog)
4876 ("r-xts" ,r-xts)
4877 ("r-zoo" ,r-zoo)))
4878 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
4879 (synopsis "Econometric tools for performance and risk analysis")
4880 (description "This is a collection of econometric functions for
4881 performance and risk analysis. This package aims to aid practitioners and
4882 researchers in utilizing the latest research in analysis of non-normal return
4883 streams. In general, it is most tested on return (rather than price) data on
4884 a regular scale, but most functions will work with irregular return data as
4885 well, and increasing numbers of functions will work with P&L or price data
4886 where possible.")
4887 ;; Either version may be picked.
4888 (license (list license:gpl2 license:gpl3))))
4889
4890 (define-public r-laeken
4891 (package
4892 (name "r-laeken")
4893 (version "0.5.1")
4894 (source
4895 (origin
4896 (method url-fetch)
4897 (uri (cran-uri "laeken" version))
4898 (sha256
4899 (base32
4900 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
4901 (build-system r-build-system)
4902 (propagated-inputs
4903 `(("r-boot" ,r-boot)
4904 ("r-mass" ,r-mass)))
4905 (home-page "https://cran.r-project.org/web/packages/laeken/")
4906 (synopsis "Estimation of indicators on social exclusion and poverty")
4907 (description "This package provides tools for the estimation of indicators
4908 on social exclusion and poverty, as well as an implementation of Pareto tail
4909 modeling for empirical income distributions.")
4910 (license license:gpl2+)))
4911
4912 (define-public r-vcd
4913 (package
4914 (name "r-vcd")
4915 (version "1.4-8")
4916 (source
4917 (origin
4918 (method url-fetch)
4919 (uri (cran-uri "vcd" version))
4920 (sha256
4921 (base32
4922 "030yyhpzsj4ivwrla7p9kgvmyjh6b8fr7czf678ykxjj64ccnvr3"))))
4923 (build-system r-build-system)
4924 (propagated-inputs
4925 `(("r-colorspace" ,r-colorspace)
4926 ("r-lmtest" ,r-lmtest)
4927 ("r-mass" ,r-mass)))
4928 (home-page "https://cran.r-project.org/web/packages/vcd/")
4929 (synopsis "Visualizing categorical data")
4930 (description "This package provides visualization techniques, data sets,
4931 summary and inference procedures aimed particularly at categorical data.
4932 Special emphasis is given to highly extensible grid graphics. The package was
4933 originally inspired by the book \"Visualizing Categorical Data\" by Michael
4934 Friendly and is now the main support package for a new book, \"Discrete Data
4935 Analysis with R\" by Michael Friendly and David Meyer (2015).")
4936 (license license:gpl2)))
4937
4938 (define-public r-ica
4939 (package
4940 (name "r-ica")
4941 (version "1.0-2")
4942 (source
4943 (origin
4944 (method url-fetch)
4945 (uri (cran-uri "ica" version))
4946 (sha256
4947 (base32
4948 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
4949 (build-system r-build-system)
4950 (home-page "https://cran.r-project.org/web/packages/ica/")
4951 (synopsis "Independent component analysis")
4952 (description "This package provides tools for @dfn{Independent Component
4953 Analysis} (ICA) using various algorithms: FastICA,
4954 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
4955 of Eigenmatrices} (JADE).")
4956 (license license:gpl2+)))
4957
4958 (define-public r-dtw
4959 (package
4960 (name "r-dtw")
4961 (version "1.22-3")
4962 (source
4963 (origin
4964 (method url-fetch)
4965 (uri (cran-uri "dtw" version))
4966 (sha256
4967 (base32
4968 "004gm4mzgdzdj807j3bwqsv5lizmnmz5jq514bdjshhkysnzjz6z"))))
4969 (build-system r-build-system)
4970 (propagated-inputs `(("r-proxy" ,r-proxy)))
4971 (home-page "http://dtw.r-forge.r-project.org/")
4972 (synopsis "Dynamic Time Warping Algorithms")
4973 (description "This package provides a comprehensive implementation of
4974 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
4975 optimal (least cumulative distance) alignment between points of two time
4976 series. Common DTW variants covered include local (slope) and global (window)
4977 constraints, subsequence matches, arbitrary distance definitions,
4978 normalizations, minimum variance matching, and so on.")
4979 (license license:gpl2+)))
4980
4981 (define-public r-sdmtools
4982 (package
4983 (name "r-sdmtools")
4984 (version "1.1-221.2")
4985 (source
4986 (origin
4987 (method url-fetch)
4988 (uri (cran-uri "SDMTools" version))
4989 (sha256
4990 (base32
4991 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
4992 (properties `((upstream-name . "SDMTools")))
4993 (build-system r-build-system)
4994 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
4995 (home-page "https://www.rforge.net/SDMTools/")
4996 (synopsis "Species distribution modelling tools")
4997 (description "This package provides a set of tools for post processing
4998 the outcomes of species distribution modeling exercises. It includes novel
4999 methods for comparing models and tracking changes in distributions through
5000 time. It further includes methods for visualizing outcomes, selecting
5001 thresholds, calculating measures of accuracy and landscape fragmentation
5002 statistics, etc.")
5003 (license license:gpl3+)))
5004
5005 (define-public r-scatterplot3d
5006 (package
5007 (name "r-scatterplot3d")
5008 (version "0.3-41")
5009 (source
5010 (origin
5011 (method url-fetch)
5012 (uri (cran-uri "scatterplot3d" version))
5013 (sha256
5014 (base32
5015 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
5016 (build-system r-build-system)
5017 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
5018 (synopsis "3D scatter plot")
5019 (description "This package provides an implementation of scatter plots for
5020 plotting. a three dimensional point cloud.")
5021 (license license:gpl2)))
5022
5023 (define-public r-ggridges
5024 (package
5025 (name "r-ggridges")
5026 (version "0.5.3")
5027 (source
5028 (origin
5029 (method url-fetch)
5030 (uri (cran-uri "ggridges" version))
5031 (sha256
5032 (base32
5033 "0bmlqy1p6rac90af97ffpdi6php7dblx66l2hcm8ljidgyqzmspm"))))
5034 (build-system r-build-system)
5035 (propagated-inputs
5036 `(("r-ggplot2" ,r-ggplot2)
5037 ("r-plyr" ,r-plyr)
5038 ("r-scales" ,r-scales)
5039 ("r-withr" ,r-withr)))
5040 (native-inputs
5041 `(("r-knitr" ,r-knitr)))
5042 (home-page "https://github.com/clauswilke/ggridges")
5043 (synopsis "Ridgeline plots in ggplot2")
5044 (description
5045 "Ridgeline plots provide a convenient way of visualizing changes in
5046 distributions over time or space. This package enables the creation of such
5047 plots in @code{ggplot2}.")
5048 (license license:gpl2)))
5049
5050 (define-public r-ggjoy
5051 (package
5052 (name "r-ggjoy")
5053 (version "0.4.1")
5054 (source
5055 (origin
5056 (method url-fetch)
5057 (uri (cran-uri "ggjoy" version))
5058 (sha256
5059 (base32
5060 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
5061 (build-system r-build-system)
5062 (propagated-inputs
5063 `(("r-ggplot2" ,r-ggplot2)
5064 ("r-ggridges" ,r-ggridges)))
5065 (home-page "https://github.com/clauswilke/ggjoy")
5066 (synopsis "Joyplots in ggplot2")
5067 (description "Joyplots provide a convenient way of visualizing changes in
5068 distributions over time or space. This package enables the creation of such
5069 plots in @code{ggplot2}.")
5070 (license license:gpl2)))
5071
5072 (define-public r-cli
5073 (package
5074 (name "r-cli")
5075 (version "2.3.1")
5076 (source
5077 (origin
5078 (method url-fetch)
5079 (uri (cran-uri "cli" version))
5080 (sha256
5081 (base32
5082 "1jh64ixn6mg2ap1sx4azrxkjnlsyjbfxyc9zjkx8m9dlakgf4v2i"))))
5083 (build-system r-build-system)
5084 (propagated-inputs
5085 `(("r-assertthat" ,r-assertthat)
5086 ("r-glue" ,r-glue)))
5087 (home-page "https://github.com/r-lib/cli#readme")
5088 (synopsis "Helpers for developing command line interfaces")
5089 (description "This package provides a suite of tools designed to build
5090 attractive command line interfaces (CLIs). It includes tools for drawing
5091 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
5092 (license license:expat)))
5093
5094 (define-public r-argparser
5095 (package
5096 (name "r-argparser")
5097 (version "0.7.1")
5098 (source
5099 (origin
5100 (method url-fetch)
5101 (uri (cran-uri "argparser" version))
5102 (sha256
5103 (base32
5104 "0xcl0ivsbc4iw8s7027q4cx68j6s5lihbby0xa9pmlv4wjmcvdr6"))))
5105 (build-system r-build-system)
5106 (home-page "https://bitbucket.org/djhshih/argparser")
5107 (synopsis "Command-line argument parser")
5108 (description
5109 "This package provides a cross-platform command-line argument parser
5110 written purely in R with no external dependencies. It is useful with the
5111 Rscript front-end and facilitates turning an R script into an executable
5112 script.")
5113 (license license:gpl3+)))
5114
5115 (define-public r-debugme
5116 (package
5117 (name "r-debugme")
5118 (version "1.1.0")
5119 (source
5120 (origin
5121 (method url-fetch)
5122 (uri (cran-uri "debugme" version))
5123 (sha256
5124 (base32
5125 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
5126 (build-system r-build-system)
5127 (propagated-inputs `(("r-crayon" ,r-crayon)))
5128 (home-page "https://github.com/r-lib/debugme#readme")
5129 (synopsis "Debug R packages")
5130 (description
5131 "This package allows the user to specify debug messages as special string
5132 constants, and control debugging of packages via environment variables.")
5133 (license license:expat)))
5134
5135 (define-public r-processx
5136 (package
5137 (name "r-processx")
5138 (version "3.4.5")
5139 (source
5140 (origin
5141 (method url-fetch)
5142 (uri (cran-uri "processx" version))
5143 (sha256
5144 (base32 "055v2gdrgqsfy8s672wsq79bqr44b4jjmcbqivx4p2d6lqx10s73"))))
5145 (build-system r-build-system)
5146 (propagated-inputs
5147 `(("r-ps" ,r-ps)
5148 ("r-r6" ,r-r6)))
5149 (home-page "https://github.com/r-lib/processx3")
5150 (synopsis "Execute and control system processes")
5151 (description
5152 "This package provides portable tools to run system processes in the
5153 background. It can check if a background process is running; wait on a
5154 background process to finish; get the exit status of finished processes; kill
5155 background processes and their children; restart processes. It can read the
5156 standard output and error of the processes, using non-blocking connections.
5157 @code{processx} can poll a process for standard output or error, with a
5158 timeout. It can also poll several processes at once.")
5159 (license license:expat)))
5160
5161 (define-public r-tsp
5162 (package
5163 (name "r-tsp")
5164 (version "1.1-10")
5165 (source
5166 (origin
5167 (method url-fetch)
5168 (uri (cran-uri "TSP" version))
5169 (sha256
5170 (base32
5171 "0z1v6m0vqjzxc4az3zyjaayygx0jr3mdmc56jjd421iqh0b9z5s4"))))
5172 (properties `((upstream-name . "TSP")))
5173 (build-system r-build-system)
5174 (propagated-inputs `(("r-foreach" ,r-foreach)))
5175 (home-page "https://cran.r-project.org/web/packages/TSP/")
5176 (synopsis "Traveling salesperson problem (TSP)")
5177 (description "This package provides basic infrastructure and some
5178 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
5179 traveling salesman problem).")
5180 (license license:gpl3)))
5181
5182 (define-public r-qap
5183 (package
5184 (name "r-qap")
5185 (version "0.1-1")
5186 (source
5187 (origin
5188 (method url-fetch)
5189 (uri (cran-uri "qap" version))
5190 (sha256
5191 (base32
5192 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
5193 (build-system r-build-system)
5194 (native-inputs `(("gfortran" ,gfortran)))
5195 (home-page "https://cran.r-project.org/web/packages/qap/")
5196 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
5197 (description "This package implements heuristics for the @dfn{quadratic
5198 assignment problem} (QAP). Currently only a simulated annealing heuristic is
5199 available.")
5200 (license license:gpl3)))
5201
5202 (define-public r-gclus
5203 (package
5204 (name "r-gclus")
5205 (version "1.3.2")
5206 (source
5207 (origin
5208 (method url-fetch)
5209 (uri (cran-uri "gclus" version))
5210 (sha256
5211 (base32
5212 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
5213 (build-system r-build-system)
5214 (propagated-inputs `(("r-cluster" ,r-cluster)))
5215 (home-page "https://cran.r-project.org/web/packages/gclus/")
5216 (synopsis "Clustering graphics")
5217 (description "This package orders panels in scatterplot matrices and
5218 parallel coordinate displays by some merit index. It contains various indices
5219 of merit, ordering functions, and enhanced versions of @code{pairs} and
5220 @code{parcoord} which color panels according to their merit level.")
5221 (license license:gpl2+)))
5222
5223 (define-public r-webshot
5224 (package
5225 (name "r-webshot")
5226 (version "0.5.2")
5227 (source
5228 (origin
5229 (method url-fetch)
5230 (uri (cran-uri "webshot" version))
5231 (sha256
5232 (base32
5233 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
5234 (build-system r-build-system)
5235 (propagated-inputs
5236 `(("r-callr" ,r-callr)
5237 ("r-jsonlite" ,r-jsonlite)
5238 ("r-magrittr" ,r-magrittr)))
5239 (home-page "https://github.com/wch/webshot/")
5240 (synopsis "Take screenshots of web pages")
5241 (description
5242 "Webshot makes it easy to take screenshots of web pages from within R.
5243 It can also run Shiny applications locally and take screenshots of the
5244 application; and it can render and screenshot static as well as interactive R
5245 Markdown documents.")
5246 (license license:gpl2)))
5247
5248 (define-public r-seriation
5249 (package
5250 (name "r-seriation")
5251 (version "1.2-9")
5252 (source
5253 (origin
5254 (method url-fetch)
5255 (uri (cran-uri "seriation" version))
5256 (sha256
5257 (base32
5258 "1glxn098ar1v96xlwp85kjxzfd1nyfzp2f82x5z3fm87yv57k4lb"))))
5259 (build-system r-build-system)
5260 (propagated-inputs
5261 `(("r-cluster" ,r-cluster)
5262 ("r-colorspace" ,r-colorspace)
5263 ("r-dendextend" ,r-dendextend)
5264 ("r-gclus" ,r-gclus)
5265 ("r-gplots" ,r-gplots)
5266 ("r-mass" ,r-mass)
5267 ("r-qap" ,r-qap)
5268 ("r-registry" ,r-registry)
5269 ("r-tsp" ,r-tsp)))
5270 (native-inputs `(("gfortran" ,gfortran)))
5271 (home-page "https://s2.smu.edu/IDA/seriation/")
5272 (synopsis "Infrastructure for ordering objects using seriation")
5273 (description
5274 "This package provides infrastructure for seriation with an
5275 implementation of several seriation/sequencing techniques to reorder matrices,
5276 dissimilarity matrices, and dendrograms. It also provides (optimally)
5277 reordered heatmaps, color images and clustering visualizations like
5278 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
5279 iVAT).")
5280 (license license:gpl3)))
5281
5282 (define-public r-xfun
5283 (package
5284 (name "r-xfun")
5285 (version "0.22")
5286 (source
5287 (origin
5288 (method url-fetch)
5289 (uri (cran-uri "xfun" version))
5290 (sha256
5291 (base32 "0ix3p0iw2c60whn5mvsflh0vhm4yixhw4s9d9v4023qhp077nw9y"))))
5292 (build-system r-build-system)
5293 ;; knitr itself depends on xfun
5294 #;
5295 (native-inputs
5296 `(("r-knitr" ,r-knitr)))
5297 (home-page "https://github.com/yihui/xfun")
5298 (synopsis "Miscellaneous functions")
5299 (description
5300 "This package provides miscellaneous functions commonly used in other
5301 packages maintained by Yihui Xie.")
5302 (license license:expat)))
5303
5304 (define-public r-utf8
5305 (package
5306 (name "r-utf8")
5307 (version "1.1.4")
5308 (source
5309 (origin
5310 (method url-fetch)
5311 (uri (cran-uri "utf8" version))
5312 (sha256
5313 (base32
5314 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
5315 (build-system r-build-system)
5316 (home-page "https://github.com/patperry/r-utf8")
5317 (synopsis "Unicode text processing")
5318 (description
5319 "This package provides tools to process and print UTF-8 encoded
5320 international text (Unicode). Input, validate, normalize, encode, format, and
5321 display.")
5322 (license license:asl2.0)))
5323
5324 (define-public r-zeallot
5325 (package
5326 (name "r-zeallot")
5327 (version "0.1.0")
5328 (source
5329 (origin
5330 (method url-fetch)
5331 (uri (cran-uri "zeallot" version))
5332 (sha256
5333 (base32
5334 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
5335 (build-system r-build-system)
5336 (home-page "https://github.com/nteetor/zeallot")
5337 (synopsis "Multiple, unpacking, and destructuring assignment")
5338 (description
5339 "This package provides a @code{%<-%} operator to perform multiple,
5340 unpacking, and destructuring assignment in R. The operator unpacks the
5341 right-hand side of an assignment into multiple values and assigns these values
5342 to variables on the left-hand side of the assignment.")
5343 (license license:expat)))
5344
5345 (define-public r-vctrs
5346 (package
5347 (name "r-vctrs")
5348 (version "0.3.6")
5349 (source
5350 (origin
5351 (method url-fetch)
5352 (uri (cran-uri "vctrs" version))
5353 (sha256
5354 (base32
5355 "09ddxgzyah7lw42hn6n8fynsixf43s10jamsf94d2aidky63czfz"))))
5356 (build-system r-build-system)
5357 (propagated-inputs
5358 `(("r-digest" ,r-digest)
5359 ("r-ellipsis" ,r-ellipsis)
5360 ("r-glue" ,r-glue)
5361 ("r-rlang" ,r-rlang)))
5362 (native-inputs
5363 `(("r-knitr" ,r-knitr)))
5364 (home-page "https://github.com/r-lib/vctrs")
5365 (synopsis "Vector helpers")
5366 (description
5367 "There are three main goals to the @code{vctrs} package:
5368
5369 @enumerate
5370 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
5371 @code{length()} and @code{class()}. These definitions are paired with a
5372 framework for type-coercion and size-recycling.
5373 @item To define type- and size-stability as desirable function properties, use
5374 them to analyse existing base function, and to propose better alternatives.
5375 This work has been particularly motivated by thinking about the ideal
5376 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
5377 @item To provide a new @code{vctr} base class that makes it easy to create new
5378 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
5379 a few new @code{vctrs} generics, making implementation considerably simpler
5380 and more robust.
5381 @end enumerate\n")
5382 (license license:gpl3)))
5383
5384 (define-public r-pillar
5385 (package
5386 (name "r-pillar")
5387 (version "1.5.1")
5388 (source
5389 (origin
5390 (method url-fetch)
5391 (uri (cran-uri "pillar" version))
5392 (sha256
5393 (base32
5394 "0wp68cg95895aybi7yjqy0sidvc68lmfqndinpd63dysci9x3r8c"))))
5395 (build-system r-build-system)
5396 (propagated-inputs
5397 `(("r-cli" ,r-cli)
5398 ("r-crayon" ,r-crayon)
5399 ("r-ellipsis" ,r-ellipsis)
5400 ("r-fansi" ,r-fansi)
5401 ("r-lifecycle" ,r-lifecycle)
5402 ("r-rlang" ,r-rlang)
5403 ("r-utf8" ,r-utf8)
5404 ("r-vctrs" ,r-vctrs)))
5405 (native-inputs
5406 `(("r-knitr" ,r-knitr)))
5407 (home-page "https://github.com/r-lib/pillar")
5408 (synopsis "Coloured formatting for columns")
5409 (description
5410 "This package provides a @code{pillar} generic designed for formatting
5411 columns of data using the full range of colours provided by modern
5412 terminals.")
5413 (license license:gpl3)))
5414
5415 (define-public r-uuid
5416 (package
5417 (name "r-uuid")
5418 (version "0.1-4")
5419 (source
5420 (origin
5421 (method url-fetch)
5422 (uri (cran-uri "uuid" version))
5423 (sha256
5424 (base32
5425 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
5426 (build-system r-build-system)
5427 (home-page "https://www.rforge.net/uuid")
5428 (synopsis "Tools for generating and handling of UUIDs")
5429 (description
5430 "This package provides tools for generating and handling of
5431 @dfn{Universally Unique Identifiers} (UUIDs).")
5432 (license license:expat)))
5433
5434 (define-public r-tinytex
5435 (package
5436 (name "r-tinytex")
5437 (version "0.30")
5438 (source
5439 (origin
5440 (method url-fetch)
5441 (uri (cran-uri "tinytex" version))
5442 (sha256
5443 (base32
5444 "0dk6mpszwh1m65b0wfwjlcvpzywmasf6p31niqiq53wnd92my0gw"))))
5445 (build-system r-build-system)
5446 (propagated-inputs
5447 `(("r-xfun" ,r-xfun)))
5448 (home-page "https://github.com/yihui/tinytex")
5449 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
5450 (description
5451 "This package provides helper functions to install and maintain the LaTeX
5452 distribution named TinyTeX, a lightweight, cross-platform, portable, and
5453 easy-to-maintain version of TeX Live. This package also contains helper
5454 functions to compile LaTeX documents, and install missing LaTeX packages
5455 automatically.")
5456 (license license:expat)))
5457
5458 (define-public r-tinytest
5459 (package
5460 (name "r-tinytest")
5461 (version "1.2.4")
5462 (source
5463 (origin
5464 (method url-fetch)
5465 (uri (cran-uri "tinytest" version))
5466 (sha256
5467 (base32
5468 "1asryjrah3fj39gg0c6yxgpr142j5bg2n990v7q8r0a5pb8gcr45"))))
5469 (properties `((upstream-name . "tinytest")))
5470 (build-system r-build-system)
5471 (home-page "https://github.com/markvanderloo/tinytest")
5472 (synopsis "Lightweight unit testing framework")
5473 (description
5474 "This package provides a lightweight unit testing framework. Main
5475 features:
5476
5477 @enumerate
5478 @item install tests with the package;
5479 @item test results are treated as data that can be stored and manipulated;
5480 @item test files are R scripts interspersed with test commands, that can be
5481 programmed over;
5482 @item fully automated build-install-test sequence for packages;
5483 @item skip tests when not run locally (e.g. on CRAN);
5484 @item flexible and configurable output printing;
5485 @item compare computed output with output stored with the package;
5486 @item run tests in parallel;
5487 @item extensible by other packages;
5488 @item report side effects.
5489 @end enumerate
5490 ")
5491 (license license:gpl3)))
5492
5493 (define-public r-network
5494 (package
5495 (name "r-network")
5496 (version "1.16.1")
5497 (source
5498 (origin
5499 (method url-fetch)
5500 (uri (cran-uri "network" version))
5501 (sha256
5502 (base32
5503 "1cgy7vlbinyndl0zkzvnpcmi240wry6iwfb42sz1mj5c9iwkar7b"))))
5504 (build-system r-build-system)
5505 (propagated-inputs
5506 `(("r-magrittr" ,r-magrittr)
5507 ("r-tibble" ,r-tibble)))
5508 (home-page "https://statnet.org/")
5509 (synopsis "Classes for relational data")
5510 (description
5511 "This package provides tools to create and modify network objects. The
5512 @code{network} class can represent a range of relational data types, and
5513 supports arbitrary vertex/edge/graph attributes.")
5514 (license license:gpl2+)))
5515
5516 (define-public r-stabs
5517 (package
5518 (name "r-stabs")
5519 (version "0.6-4")
5520 (source
5521 (origin
5522 (method url-fetch)
5523 (uri (cran-uri "stabs" version))
5524 (sha256
5525 (base32
5526 "1nf1yg14cgxrs4np1yghpzw1nczaslfv3rvf3918wrlzg0vp6l7q"))))
5527 (build-system r-build-system)
5528 (native-inputs
5529 `(("r-knitr" ,r-knitr)))
5530 (home-page "https://github.com/hofnerb/stabs")
5531 (synopsis "Stability selection with error control")
5532 (description
5533 "This package provides resampling procedures to assess the stability of
5534 selected variables with additional finite sample error control for
5535 high-dimensional variable selection procedures such as Lasso or boosting.
5536 Both, standard stability selection (Meinshausen & Buhlmann, 2010) and
5537 complementary pairs stability selection with improved error bounds
5538 (Shah & Samworth, 2013) are implemented. The package can be combined with
5539 arbitrary user specified variable selection approaches.")
5540 (license license:gpl2)))
5541
5542 (define-public r-rle
5543 (package
5544 (name "r-rle")
5545 (version "0.9.2")
5546 (source
5547 (origin
5548 (method url-fetch)
5549 (uri (cran-uri "rle" version))
5550 (sha256
5551 (base32
5552 "0sagl0jggg40lihzy7pfq4593rfvc3b3f7g6ggi85s7n18qvwg40"))))
5553 (properties `((upstream-name . "rle")))
5554 (build-system r-build-system)
5555 (home-page "https://cran.r-project.org/web/packages/rle/")
5556 (synopsis "Common functions for run-length encoded vectors")
5557 (description
5558 "This package provides common @code{base} and @code{stats} methods for
5559 @code{rle} objects, aiming to make it possible to treat them transparently as
5560 vectors.")
5561 (license license:gpl3)))
5562
5563 (define-public r-statnet-common
5564 (package
5565 (name "r-statnet-common")
5566 (version "4.4.1")
5567 (source
5568 (origin
5569 (method url-fetch)
5570 (uri (cran-uri "statnet.common" version))
5571 (sha256
5572 (base32
5573 "1z89an46xcl1d7dacj4irhk6pkajdz7v85b2347vczwdf622pksf"))))
5574 (properties
5575 `((upstream-name . "statnet.common")))
5576 (build-system r-build-system)
5577 (propagated-inputs
5578 `(("r-coda" ,r-coda)
5579 ("r-rle" ,r-rle)))
5580 (home-page "https://statnet.org")
5581 (synopsis "R scripts and utilities used by the Statnet software")
5582 (description "This package provides non-statistical utilities used by the
5583 software developed by the Statnet Project.")
5584 (license license:gpl3)))
5585
5586 (define-public r-statcheck
5587 (package
5588 (name "r-statcheck")
5589 (version "1.3.0")
5590 (source
5591 (origin
5592 (method url-fetch)
5593 (uri (cran-uri "statcheck" version))
5594 (sha256
5595 (base32
5596 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
5597 (build-system r-build-system)
5598 (propagated-inputs
5599 `(("r-ggplot2" ,r-ggplot2)
5600 ("r-plyr" ,r-plyr)
5601 ("r-rmarkdown" ,r-rmarkdown)))
5602 (home-page "https://cran.r-project.org/web/packages/statcheck/")
5603 (synopsis "Extract statistics from articles and recompute p-values")
5604 (description "This package can automatically extract statistical
5605 null-hypothesis significant testing (NHST) results from articles and recompute
5606 the p-values based on the reported test statistic and degrees of freedom to
5607 detect possible inconsistencies.")
5608 (license license:gpl2)))
5609
5610 (define-public r-sna
5611 (package
5612 (name "r-sna")
5613 (version "2.6")
5614 (source
5615 (origin
5616 (method url-fetch)
5617 (uri (cran-uri "sna" version))
5618 (sha256
5619 (base32
5620 "0ai0v4538d30m4wks5s3lch1yfmx1ml0nnrz7ihs097lv586a09s"))))
5621 (build-system r-build-system)
5622 (propagated-inputs
5623 `(("r-network" ,r-network)
5624 ("r-statnet-common" ,r-statnet-common)))
5625 (home-page "https://statnet.org")
5626 (synopsis "Tools for social network analysis")
5627 (description
5628 "This package provides a range of tools for social network analysis,
5629 including node and graph-level indices, structural distance and covariance
5630 methods, structural equivalence detection, network regression, random graph
5631 generation, and 2D/3D network visualization.")
5632 (license license:gpl2+)))
5633
5634 (define-public r-tfisher
5635 (package
5636 (name "r-tfisher")
5637 (version "0.2.0")
5638 (source
5639 (origin
5640 (method url-fetch)
5641 (uri (cran-uri "TFisher" version))
5642 (sha256
5643 (base32
5644 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
5645 (properties `((upstream-name . "TFisher")))
5646 (build-system r-build-system)
5647 (propagated-inputs
5648 `(("r-matrix" ,r-matrix)
5649 ("r-mvtnorm" ,r-mvtnorm)
5650 ("r-sn" ,r-sn)))
5651 (home-page "https://cran.r-project.org/web/packages/TFisher/")
5652 (synopsis "Optimal thresholding Fisher's p-value combination method")
5653 (description
5654 "This package provides the @dfn{cumulative distribution function} (CDF),
5655 quantile, and statistical power calculator for a collection of thresholding
5656 Fisher's p-value combination methods, including Fisher's p-value combination
5657 method, truncated product method and, in particular, soft-thresholding
5658 Fisher's p-value combination method which is proven to be optimal in some
5659 context of signal detection. The p-value calculator for the omnibus version
5660 of these tests are also included.")
5661 (license license:gpl2)))
5662
5663 (define-public r-ttr
5664 (package
5665 (name "r-ttr")
5666 (version "0.24.2")
5667 (source
5668 (origin
5669 (method url-fetch)
5670 (uri (cran-uri "TTR" version))
5671 (sha256
5672 (base32
5673 "06vicgbhwpsww09hhha5mbcd0cwip6cvkfbhjjhp950rv64bk1r5"))))
5674 (properties `((upstream-name . "TTR")))
5675 (build-system r-build-system)
5676 (propagated-inputs
5677 `(("r-curl" ,r-curl)
5678 ("r-xts" ,r-xts)
5679 ("r-zoo" ,r-zoo)))
5680 (home-page "https://github.com/joshuaulrich/TTR")
5681 (synopsis "Technical trading rules")
5682 (description
5683 "This package provides functions and data to construct technical trading
5684 rules with R.")
5685 (license license:gpl2)))
5686
5687 (define-public r-leaps
5688 (package
5689 (name "r-leaps")
5690 (version "3.1")
5691 (source
5692 (origin
5693 (method url-fetch)
5694 (uri (cran-uri "leaps" version))
5695 (sha256
5696 (base32
5697 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
5698 (build-system r-build-system)
5699 (native-inputs `(("gfortran" ,gfortran)))
5700 (home-page "https://cran.r-project.org/web/packages/leaps/")
5701 (synopsis "Regression subset selection")
5702 (description
5703 "This package provides tools for regression subset selection, including
5704 exhaustive search.")
5705 (license license:gpl2+)))
5706
5707 (define-public r-splus2r
5708 (package
5709 (name "r-splus2r")
5710 (version "1.3-3")
5711 (source
5712 (origin
5713 (method url-fetch)
5714 (uri (cran-uri "splus2R" version))
5715 (sha256
5716 (base32
5717 "035zd22zcpkh74rik9ws6g8al6vjz7jgrqs5si361bzb5n290p3x"))))
5718 (properties `((upstream-name . "splus2R")))
5719 (build-system r-build-system)
5720 (home-page "https://cran.r-project.org/web/packages/splus2R/")
5721 (synopsis "Supplemental S-PLUS functionality in R")
5722 (description
5723 "Currently there are many functions in S-PLUS that are missing in R. To
5724 facilitate the conversion of S-PLUS packages to R packages, this package
5725 provides some missing S-PLUS functionality in R.")
5726 (license license:gpl2)))
5727
5728 (define-public r-ifultools
5729 (package
5730 (name "r-ifultools")
5731 (version "2.0-22")
5732 (source
5733 (origin
5734 (method url-fetch)
5735 (uri (cran-uri "ifultools" version))
5736 (sha256
5737 (base32
5738 "0f95vqc47dgssqngznk0rclr72ndbyxc7gdq2cmbksvq7qpn3gg1"))))
5739 (build-system r-build-system)
5740 (propagated-inputs
5741 `(("r-mass" ,r-mass)
5742 ("r-splus2r" ,r-splus2r)))
5743 (home-page "https://cran.r-project.org/web/packages/ifultools/")
5744 (synopsis "Insightful research tools")
5745 (description "This package provides C code used by the wmtsa, fractal, and
5746 sapa R packages.")
5747 (license license:gpl2)))
5748
5749 (define-public r-sapa
5750 (package
5751 (name "r-sapa")
5752 (version "2.0-2")
5753 (source
5754 (origin
5755 (method url-fetch)
5756 (uri (cran-uri "sapa" version))
5757 (sha256
5758 (base32
5759 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
5760 (build-system r-build-system)
5761 (propagated-inputs
5762 `(("r-ifultools" ,r-ifultools)
5763 ("r-splus2r" ,r-splus2r)))
5764 (home-page "https://cran.r-project.org/web/packages/sapa/")
5765 (synopsis "Spectral analysis for physical applications")
5766 (description "This package provides software for the book Spectral
5767 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
5768 Cambridge University Press, 1993.")
5769 (license license:gpl2)))
5770
5771 (define-public r-aggregation
5772 (package
5773 (name "r-aggregation")
5774 (version "1.0.1")
5775 (source
5776 (origin
5777 (method url-fetch)
5778 (uri (cran-uri "aggregation" version))
5779 (sha256
5780 (base32
5781 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
5782 (build-system r-build-system)
5783 (home-page "https://cran.r-project.org/web/packages/aggregation/")
5784 (synopsis "Methods for p-value aggregation")
5785 (description
5786 "This package contains functionality for performing the following methods
5787 of p-value aggregation: Fisher's method, the Lancaster method (weighted
5788 Fisher's method), and Sidak correction.")
5789 (license license:gpl3)))
5790
5791 (define-public r-quantmod
5792 (package
5793 (name "r-quantmod")
5794 (version "0.4.18")
5795 (source
5796 (origin
5797 (method url-fetch)
5798 (uri (cran-uri "quantmod" version))
5799 (sha256
5800 (base32
5801 "0dbcrncv06iqcbkky95dd7l32xq0hhbnkb0kj8wwzym1jf748h5a"))))
5802 (build-system r-build-system)
5803 (propagated-inputs
5804 `(("r-curl" ,r-curl)
5805 ("r-ttr" ,r-ttr)
5806 ("r-xts" ,r-xts)
5807 ("r-zoo" ,r-zoo)))
5808 (home-page "https://cran.r-project.org/web/packages/quantmod/")
5809 (synopsis "Quantitative financial modelling framework")
5810 (description "This package provides a quantitative financial modelling
5811 framework to allow users to specify, build, trade, and analyse quantitative
5812 financial trading strategies.")
5813 (license license:gpl3)))
5814
5815 (define-public r-tseries
5816 (package
5817 (name "r-tseries")
5818 (version "0.10-48")
5819 (source
5820 (origin
5821 (method url-fetch)
5822 (uri (cran-uri "tseries" version))
5823 (sha256
5824 (base32
5825 "0wa4rcf0igayi1yrwc6wak6d491560p0z89rz32haqlkiiq25gak"))))
5826 (build-system r-build-system)
5827 (propagated-inputs
5828 `(("r-quadprog" ,r-quadprog)
5829 ("r-quantmod" ,r-quantmod)
5830 ("r-zoo" ,r-zoo)))
5831 (native-inputs
5832 `(("gfortran" ,gfortran)))
5833 (home-page "https://cran.r-project.org/web/packages/tseries/")
5834 (synopsis "Time series analysis and computational finance")
5835 (description
5836 "This package provides functions relating to time series analysis and
5837 computational finance.")
5838 (license license:gpl2)))
5839
5840 (define-public r-wmtsa
5841 (package
5842 (name "r-wmtsa")
5843 (version "2.0-3")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (cran-uri "wmtsa" version))
5848 (sha256
5849 (base32
5850 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
5851 (build-system r-build-system)
5852 (propagated-inputs
5853 `(("r-ifultools" ,r-ifultools)
5854 ("r-mass" ,r-mass)
5855 ("r-splus2r" ,r-splus2r)))
5856 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
5857 (synopsis "Wavelet methods for time series analysis")
5858 (description
5859 "This package provides software to accompany the book \"Wavelet Methods
5860 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
5861 University Press, 2000.")
5862 (license license:gpl2)))
5863
5864 (define-public r-tsa
5865 (package
5866 (name "r-tsa")
5867 (version "1.3")
5868 (source
5869 (origin
5870 (method url-fetch)
5871 (uri (cran-uri "TSA" version))
5872 (sha256
5873 (base32
5874 "1bv5q609lhmrcxnjnvcj497fbjlv89zwa8q918hw4iki5nkvwwdb"))))
5875 (properties `((upstream-name . "TSA")))
5876 (build-system r-build-system)
5877 (propagated-inputs
5878 `(("r-leaps" ,r-leaps)
5879 ("r-locfit" ,r-locfit)
5880 ("r-mgcv" ,r-mgcv)
5881 ("r-tseries" ,r-tseries)))
5882 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
5883 (synopsis "Time series analysis")
5884 (description
5885 "This package contains R functions and datasets detailed in the book
5886 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
5887 Cryer and Kung-Sik Chan.")
5888 (license license:gpl2+)))
5889
5890 (define-public r-extradistr
5891 (package
5892 (name "r-extradistr")
5893 (version "1.9.1")
5894 (source
5895 (origin
5896 (method url-fetch)
5897 (uri (cran-uri "extraDistr" version))
5898 (sha256
5899 (base32
5900 "1gypnbvdzczl0mvznvy8r7hzsvc5gvdvi2mmzj21cqdw9n63944r"))))
5901 (properties `((upstream-name . "extraDistr")))
5902 (build-system r-build-system)
5903 (propagated-inputs
5904 `(("r-rcpp" ,r-rcpp)))
5905 (home-page "https://github.com/twolodzko/extraDistr")
5906 (synopsis "Additional univariate and multivariate distributions")
5907 (description
5908 "This package implements density, distribution functions, quantile
5909 functions and random generation functions for a large number of univariate and
5910 multivariate distributions.")
5911 (license license:gpl2)))
5912
5913 (define-public r-fractal
5914 (package
5915 (name "r-fractal")
5916 (version "2.0-4")
5917 (source
5918 (origin
5919 (method url-fetch)
5920 (uri (cran-uri "fractal" version))
5921 (sha256
5922 (base32
5923 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
5924 (build-system r-build-system)
5925 (propagated-inputs
5926 `(("r-ifultools" ,r-ifultools)
5927 ("r-mass" ,r-mass)
5928 ("r-sapa" ,r-sapa)
5929 ("r-scatterplot3d" ,r-scatterplot3d)
5930 ("r-splus2r" ,r-splus2r)
5931 ("r-wmtsa" ,r-wmtsa)))
5932 (home-page "https://cran.r-project.org/web/packages/fractal/")
5933 (synopsis "Fractal time series modeling and analysis")
5934 (description
5935 "This package provides tools for stochastic fractal and deterministic
5936 chaotic time series analysis.")
5937 (license license:gpl2)))
5938
5939 (define-public r-urca
5940 (package
5941 (name "r-urca")
5942 (version "1.3-0")
5943 (source
5944 (origin
5945 (method url-fetch)
5946 (uri (cran-uri "urca" version))
5947 (sha256
5948 (base32
5949 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
5950 (build-system r-build-system)
5951 (propagated-inputs `(("r-nlme" ,r-nlme)))
5952 (native-inputs `(("gfortran" ,gfortran)))
5953 (home-page "https://cran.r-project.org/web/packages/urca/")
5954 (synopsis "Unit root and cointegration tests for time series data")
5955 (description
5956 "This package provides unit root and cointegration tests encountered in
5957 applied econometric analysis.")
5958 (license license:gpl2+)))
5959
5960 (define-public r-cubature
5961 (package
5962 (name "r-cubature")
5963 (version "2.0.4.1")
5964 (source
5965 (origin
5966 (method url-fetch)
5967 (uri (cran-uri "cubature" version))
5968 (sha256
5969 (base32
5970 "006la36gxdikvmdnq4ny7ik7r30id4z3b3fqsl57dpqwkpsbsgrq"))))
5971 (build-system r-build-system)
5972 (propagated-inputs
5973 `(("r-rcpp" ,r-rcpp)))
5974 (native-inputs
5975 `(("r-knitr" ,r-knitr)))
5976 (home-page "https://github.com/bnaras/cubature")
5977 (synopsis "Adaptive multivariate integration over hypercubes")
5978 (description
5979 "This package is an R wrapper around the cubature C library for adaptive
5980 multivariate integration over hypercubes. This version provides both
5981 @code{hcubature} and @code{pcubature} routines in addition to a vector
5982 interface.")
5983 ;; The included cubature C library is released under GPLv2+, but the
5984 ;; wrapper declares the license to be GPLv3+.
5985 (license (list license:gpl2+ license:gpl3+))))
5986
5987 (define-public r-trend
5988 (package
5989 (name "r-trend")
5990 (version "1.1.4")
5991 (source
5992 (origin
5993 (method url-fetch)
5994 (uri (cran-uri "trend" version))
5995 (sha256
5996 (base32
5997 "1mr5g5gaxiqj6x83ngcbwwh57vhrhcz0x9dh0rmvs9y2ivk29ccs"))))
5998 (build-system r-build-system)
5999 (propagated-inputs
6000 `(("r-extradistr" ,r-extradistr)))
6001 (native-inputs
6002 `(("gfortran" ,gfortran)))
6003 (home-page "https://cran.r-project.org/web/packages/trend/")
6004 (synopsis "Non-parametric trend tests and change-point detection")
6005 (description
6006 "The analysis of environmental data often requires the detection of
6007 trends and change-points. This package includes tests for trend
6008 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
6009 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
6010 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
6011 correlation trend test), change-point detection (Lanzante's test procedures,
6012 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
6013 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
6014 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
6015 sample Robust Rank-Order Distributional Test.")
6016 (license license:gpl3)))
6017
6018 (define-public r-expm
6019 (package
6020 (name "r-expm")
6021 (version "0.999-6")
6022 (source
6023 (origin
6024 (method url-fetch)
6025 (uri (cran-uri "expm" version))
6026 (sha256
6027 (base32
6028 "1p5dapwv8ycxaysgi6imnby04i4kh1c5a2czqa4wygz0s8pr2y9c"))))
6029 (build-system r-build-system)
6030 (propagated-inputs `(("r-matrix" ,r-matrix)))
6031 (native-inputs `(("gfortran" ,gfortran)))
6032 (home-page "https://r-forge.r-project.org/projects/expm/")
6033 (synopsis "Tools for matrix exponentials and related quantities")
6034 (description
6035 "This package provides tools for the computation of the matrix
6036 exponential, logarithm, square root, and related quantities.")
6037 (license license:gpl2+)))
6038
6039 (define-public r-complexplus
6040 (package
6041 (name "r-complexplus")
6042 (version "2.1")
6043 (source
6044 (origin
6045 (method url-fetch)
6046 (uri (cran-uri "complexplus" version))
6047 (sha256
6048 (base32
6049 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
6050 (build-system r-build-system)
6051 (propagated-inputs
6052 `(("r-expm" ,r-expm)
6053 ("r-matrix" ,r-matrix)))
6054 (home-page "https://cran.r-project.org/web/packages/complexplus/")
6055 (synopsis "Functions of complex or real variables")
6056 (description
6057 "This package extends several functions to the complex domain, including
6058 the matrix exponential and logarithm, and the determinant.")
6059 (license license:gpl2)))
6060
6061 (define-public r-phontools
6062 (package
6063 (name "r-phontools")
6064 (version "0.2-2.1")
6065 (source
6066 (origin
6067 (method url-fetch)
6068 (uri (cran-uri "phonTools" version))
6069 (sha256
6070 (base32
6071 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
6072 (properties `((upstream-name . "phonTools")))
6073 (build-system r-build-system)
6074 (home-page "http://www.santiagobarreda.com/rscripts.html")
6075 (synopsis "Tools for phonetic and acoustic analyses")
6076 (description
6077 "This package contains tools for the organization, display, and analysis
6078 of the sorts of data frequently encountered in phonetics research and
6079 experimentation, including the easy creation of IPA vowel plots, and the
6080 creation and manipulation of WAVE audio files.")
6081 (license license:bsd-2)))
6082
6083 (define-public r-np
6084 (package
6085 (name "r-np")
6086 (version "0.60-10")
6087 (source
6088 (origin
6089 (method url-fetch)
6090 (uri (cran-uri "np" version))
6091 (sha256
6092 (base32
6093 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
6094 (build-system r-build-system)
6095 (propagated-inputs
6096 `(("r-boot" ,r-boot)
6097 ("r-cubature" ,r-cubature)
6098 ("r-quadprog" ,r-quadprog)
6099 ("r-quantreg" ,r-quantreg)))
6100 (home-page "https://github.com/JeffreyRacine/R-Package-np")
6101 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
6102 (description "This package provides non-parametric (and semi-parametric)
6103 kernel methods that seamlessly handle a mix of continuous, unordered, and
6104 ordered factor data types.")
6105 ;; Any version of the GPL.
6106 (license license:gpl3+)))
6107
6108 (define-public r-powerplus
6109 (package
6110 (name "r-powerplus")
6111 (version "3.1")
6112 (source
6113 (origin
6114 (method url-fetch)
6115 (uri (cran-uri "powerplus" version))
6116 (sha256
6117 (base32
6118 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
6119 (build-system r-build-system)
6120 (propagated-inputs
6121 `(("r-complexplus" ,r-complexplus)
6122 ("r-expm" ,r-expm)
6123 ("r-mass" ,r-mass)
6124 ("r-matrix" ,r-matrix)
6125 ("r-phontools" ,r-phontools)))
6126 (home-page "https://cran.r-project.org/web/packages/powerplus/")
6127 (synopsis "Exponentiation operations")
6128 (description
6129 "This package provides tools for the computation of matrix and scalar
6130 exponentiation.")
6131 (license license:gpl2)))
6132
6133 (define-public r-egg
6134 (package
6135 (name "r-egg")
6136 (version "0.4.5")
6137 (source
6138 (origin
6139 (method url-fetch)
6140 (uri (cran-uri "egg" version))
6141 (sha256
6142 (base32
6143 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
6144 (properties `((upstream-name . "egg")))
6145 (build-system r-build-system)
6146 (propagated-inputs
6147 `(("r-ggplot2" ,r-ggplot2)
6148 ("r-gridextra" ,r-gridextra)
6149 ("r-gtable" ,r-gtable)))
6150 (home-page "https://cran.r-project.org/web/packages/egg")
6151 (synopsis "Extensions for ggplot2")
6152 (description
6153 "This package provides miscellaneous functions to help customize ggplot2
6154 objects. High-level functions are provided to post-process ggplot2 layouts
6155 and allow alignment between plot panels, as well as setting panel sizes to
6156 fixed values. Other functions include a custom @code{geom}, and helper
6157 functions to enforce symmetric scales or add tags to facetted plots.")
6158 (license license:gpl3)))
6159
6160 (define-public r-heatmaply
6161 (package
6162 (name "r-heatmaply")
6163 (version "1.2.1")
6164 (source
6165 (origin
6166 (method url-fetch)
6167 (uri (cran-uri "heatmaply" version))
6168 (sha256
6169 (base32
6170 "0hspfkninwy62sf8gkdcsvwnvl66bbnjs2dpah9rr95a3rsgdp9d"))))
6171 (build-system r-build-system)
6172 (propagated-inputs
6173 `(("r-assertthat" ,r-assertthat)
6174 ("r-colorspace" ,r-colorspace)
6175 ("r-dendextend" ,r-dendextend)
6176 ("r-egg" ,r-egg)
6177 ("r-ggplot2" ,r-ggplot2)
6178 ("r-htmlwidgets" ,r-htmlwidgets)
6179 ("r-magrittr" ,r-magrittr)
6180 ("r-plotly" ,r-plotly)
6181 ("r-rcolorbrewer" ,r-rcolorbrewer)
6182 ("r-reshape2" ,r-reshape2)
6183 ("r-scales" ,r-scales)
6184 ("r-seriation" ,r-seriation)
6185 ("r-viridis" ,r-viridis)
6186 ("r-webshot" ,r-webshot)))
6187 (native-inputs
6188 `(("r-knitr" ,r-knitr)))
6189 (home-page "https://cran.r-project.org/package=heatmaply")
6190 (synopsis "Interactive cluster heat maps using plotly")
6191 (description
6192 "This package enables you to create interactive cluster heatmaps that can
6193 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
6194 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
6195 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
6196 a popular graphical method for visualizing high-dimensional data, in which a
6197 table of numbers is encoded as a grid of colored cells. The rows and columns
6198 of the matrix are ordered to highlight patterns and are often accompanied by
6199 dendrograms.")
6200 ;; Either version of the license.
6201 (license (list license:gpl2 license:gpl3))))
6202
6203 (define-public r-h5
6204 (package
6205 (name "r-h5")
6206 (version "0.9.9")
6207 (source
6208 (origin
6209 (method url-fetch)
6210 (uri (cran-uri "h5" version))
6211 (sha256
6212 (base32
6213 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
6214 (build-system r-build-system)
6215 (inputs
6216 `(("zlib" ,zlib)
6217 ("hdf5" ,hdf5)))
6218 (native-inputs
6219 `(("which" ,which)))
6220 (propagated-inputs
6221 `(("r-rcpp" ,r-rcpp)))
6222 (home-page "https://github.com/mannau/h5")
6223 (synopsis "Interface to the HDF5 Library")
6224 (description
6225 "This package provides an S4 interface to the HDF5 library supporting
6226 fast storage and retrieval of R-objects like vectors, matrices and arrays to
6227 binary files in a language independent format. The HDF5 format can therefore
6228 be used as an alternative to R's save/load mechanism. Since h5 is able to
6229 access only subsets of stored data it can also handle data sets which do not
6230 fit into memory.")
6231 (license license:bsd-2)))
6232
6233 (define-public r-cgdsr
6234 (package
6235 (name "r-cgdsr")
6236 (version "1.3.0")
6237 (source
6238 (origin
6239 (method url-fetch)
6240 (uri (cran-uri "cgdsr" version))
6241 (sha256
6242 (base32
6243 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
6244 (build-system r-build-system)
6245 (propagated-inputs
6246 `(("r-httr" ,r-httr)
6247 ("r-r-methodss3" ,r-r-methodss3)
6248 ("r-r-oo" ,r-r-oo)))
6249 (home-page "https://github.com/cBioPortal/cgdsr")
6250 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
6251 (description
6252 "This package provides a basic set of R functions for querying the Cancer
6253 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
6254 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
6255 (license license:lgpl3)))
6256
6257 (define-public r-import
6258 (package
6259 (name "r-import")
6260 (version "1.2.0")
6261 (source
6262 (origin
6263 (method url-fetch)
6264 (uri (cran-uri "import" version))
6265 (sha256
6266 (base32
6267 "018s0x224gqnv4cjfh0fwliyfg6ma9vslmwybrlizfsmqcc5wp37"))))
6268 (build-system r-build-system)
6269 (native-inputs
6270 `(("r-knitr" ,r-knitr)))
6271 (home-page "https://github.com/smbache/import")
6272 (synopsis "Import mechanism for R")
6273 (description
6274 "This is an alternative mechanism for importing objects from packages.
6275 The syntax allows for importing multiple objects from a package with a single
6276 command in an expressive way. The import package bridges some of the gap
6277 between using @code{library} (or @code{require}) and direct (single-object)
6278 imports. Furthermore the imported objects are not placed in the current
6279 environment. It is also possible to import objects from stand-alone @code{.R}
6280 files.")
6281 (license license:expat)))
6282
6283 (define-public r-shinyace
6284 (package
6285 (name "r-shinyace")
6286 (version "0.4.1")
6287 (source
6288 (origin
6289 (method url-fetch)
6290 (uri (cran-uri "shinyAce" version))
6291 (sha256
6292 (base32
6293 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
6294 (properties `((upstream-name . "shinyAce")))
6295 (build-system r-build-system)
6296 (propagated-inputs
6297 `(("r-shiny" ,r-shiny)
6298 ("r-jsonlite" ,r-jsonlite)))
6299 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
6300 (synopsis "Ace editor bindings for Shiny")
6301 (description
6302 "This package provides Ace editor bindings to enable a rich text editing
6303 environment within Shiny.")
6304 (license license:expat)))
6305
6306 (define-public r-randomizr
6307 (package
6308 (name "r-randomizr")
6309 (version "0.20.0")
6310 (source
6311 (origin
6312 (method url-fetch)
6313 (uri (cran-uri "randomizr" version))
6314 (sha256
6315 (base32
6316 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
6317 (properties `((upstream-name . "randomizr")))
6318 (build-system r-build-system)
6319 (native-inputs
6320 `(("r-knitr" ,r-knitr)))
6321 (home-page "https://declaredesign.org/r/randomizr/")
6322 (synopsis "Tools for common forms of random assignment and sampling")
6323 (description
6324 "This package provides tools for generating random assignments for common
6325 experimental designs and random samples for common sampling designs.")
6326 (license license:expat)))
6327
6328 (define-public r-base64url
6329 (package
6330 (name "r-base64url")
6331 (version "1.4")
6332 (source
6333 (origin
6334 (method url-fetch)
6335 (uri (cran-uri "base64url" version))
6336 (sha256
6337 (base32
6338 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
6339 (build-system r-build-system)
6340 (propagated-inputs
6341 `(("r-backports" ,r-backports)))
6342 (home-page "https://github.com/mllg/base64url")
6343 (synopsis "Fast and URL-safe base64 encoder and decoder")
6344 (description
6345 "This package provides a URL-safe base64 encoder and decoder. In
6346 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
6347 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
6348 encoder does not fill the string with trailing @code{=}. The resulting
6349 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
6350 and thus are safe to use in URLs or for file names. The package also comes
6351 with a simple base32 encoder/decoder suited for case insensitive file
6352 systems.")
6353 (license license:gpl3)))
6354
6355 (define-public r-radiant-data
6356 (package
6357 (name "r-radiant-data")
6358 (version "1.3.12")
6359 (source
6360 (origin
6361 (method url-fetch)
6362 (uri (cran-uri "radiant.data" version))
6363 (sha256
6364 (base32
6365 "08bqqrfvpgyf613ikihwfnzb23l23f5nfs7zynnxbjxc1zfhbpny"))
6366 (modules '((guix build utils)))
6367 (snippet
6368 '(begin
6369 ;; Delete files that are under CC-NC-SA.
6370 (delete-file-recursively "inst/app/tools/help")
6371 #t))))
6372 (properties `((upstream-name . "radiant.data")))
6373 (build-system r-build-system)
6374 (propagated-inputs
6375 `(("r-base64enc" ,r-base64enc)
6376 ("r-broom" ,r-broom)
6377 ("r-car" ,r-car)
6378 ("r-curl" ,r-curl)
6379 ("r-dplyr" ,r-dplyr)
6380 ("r-dt" ,r-dt)
6381 ("r-glue" ,r-glue)
6382 ("r-ggplot2" ,r-ggplot2)
6383 ("r-import" ,r-import)
6384 ("r-jsonlite" ,r-jsonlite)
6385 ("r-knitr" ,r-knitr)
6386 ("r-lubridate" ,r-lubridate)
6387 ("r-magrittr" ,r-magrittr)
6388 ("r-markdown" ,r-markdown)
6389 ("r-mass" ,r-mass)
6390 ("r-patchwork" ,r-patchwork)
6391 ("r-plotly" ,r-plotly)
6392 ("r-psych" ,r-psych)
6393 ("r-randomizr" ,r-randomizr)
6394 ("r-readr" ,r-readr)
6395 ("r-readxl" ,r-readxl)
6396 ("r-rlang" ,r-rlang)
6397 ("r-rmarkdown" ,r-rmarkdown)
6398 ("r-rstudioapi" ,r-rstudioapi)
6399 ("r-scales" ,r-scales)
6400 ("r-shiny" ,r-shiny)
6401 ("r-shinyfiles" ,r-shinyfiles)
6402 ("r-shinyace" ,r-shinyace)
6403 ("r-stringi" ,r-stringi)
6404 ("r-tibble" ,r-tibble)
6405 ("r-tidyr" ,r-tidyr)
6406 ("r-writexl" ,r-writexl)))
6407 (home-page "https://github.com/radiant-rstats/radiant.data")
6408 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
6409 (description
6410 "The Radiant Data menu includes interfaces for loading, saving, viewing,
6411 visualizing, summarizing, transforming, and combining data. It also contains
6412 functionality to generate reproducible reports of the analyses conducted in
6413 the application.")
6414 (license license:agpl3)))
6415
6416 (define-public r-algdesign
6417 (package
6418 (name "r-algdesign")
6419 (version "1.2.0")
6420 (source
6421 (origin
6422 (method url-fetch)
6423 (uri (cran-uri "AlgDesign" version))
6424 (sha256
6425 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
6426 (properties `((upstream-name . "AlgDesign")))
6427 (build-system r-build-system)
6428 (home-page "https://github.com/jvbraun/AlgDesign")
6429 (synopsis "Algorithmic experimental design")
6430 (description
6431 "This package provides tools to calculate exact and approximate theory
6432 experimental designs for D, A, and I criteria. Very large designs may be
6433 created. Experimental designs may be blocked or blocked designs created from
6434 a candidate list, using several criteria. The blocking can be done when whole
6435 and within plot factors interact.")
6436 (license license:gpl2+)))
6437
6438 (define-public r-signal
6439 (package
6440 (name "r-signal")
6441 (version "0.7-6")
6442 (source
6443 (origin
6444 (method url-fetch)
6445 (uri (cran-uri "signal" version))
6446 (sha256
6447 (base32
6448 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
6449 (build-system r-build-system)
6450 (propagated-inputs `(("r-mass" ,r-mass)))
6451 (native-inputs `(("gfortran" ,gfortran)))
6452 (home-page "https://cran.r-project.org/web/packages/signal/")
6453 (synopsis "Signal processing")
6454 (description
6455 "This package provides a set of signal processing functions originally
6456 written for Matlab and GNU Octave. It includes filter generation utilities,
6457 filtering functions, resampling routines, and visualization of filter models.
6458 It also includes interpolation functions.")
6459 (license license:gpl2)))
6460
6461 (define-public r-gsubfn
6462 (package
6463 (name "r-gsubfn")
6464 (version "0.7")
6465 (source
6466 (origin
6467 (method url-fetch)
6468 (uri (cran-uri "gsubfn" version))
6469 (sha256
6470 (base32
6471 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
6472 (build-system r-build-system)
6473 (propagated-inputs `(("r-proto" ,r-proto)))
6474 (home-page "https://code.google.com/archive/p/gsubfn/")
6475 (synopsis "Utilities for strings and function arguments.")
6476 (description
6477 "This package provides @code{gsubfn} which is like @code{gsub} but can
6478 take a replacement function or certain other objects instead of the
6479 replacement string. Matches and back references are input to the replacement
6480 function and replaced by the function output. @code{gsubfn} can be used to
6481 split strings based on content rather than delimiters and for quasi-perl-style
6482 string interpolation. The package also has facilities for translating
6483 formulas to functions and allowing such formulas in function calls instead of
6484 functions.")
6485 (license license:gpl2+)))
6486
6487 (define-public r-sqldf
6488 (package
6489 (name "r-sqldf")
6490 (version "0.4-11")
6491 (source
6492 (origin
6493 (method url-fetch)
6494 (uri (cran-uri "sqldf" version))
6495 (sha256
6496 (base32
6497 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
6498 (build-system r-build-system)
6499 (propagated-inputs
6500 `(("r-chron" ,r-chron)
6501 ("r-dbi" ,r-dbi)
6502 ("r-gsubfn" ,r-gsubfn)
6503 ("r-proto" ,r-proto)
6504 ("r-rsqlite" ,r-rsqlite)))
6505 (home-page "https://github.com/ggrothendieck/sqldf")
6506 (synopsis "Manipulate R data frames using SQL")
6507 (description
6508 "The @code{sqldf} function is typically passed a single argument which is
6509 an SQL select statement where the table names are ordinary R data frame names.
6510 @code{sqldf} transparently sets up a database, imports the data frames into
6511 that database, performs the SQL statement and returns the result using a
6512 heuristic to determine which class to assign to each column of the returned
6513 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
6514 used to read filtered files into R even if the original files are larger than
6515 R itself can handle.")
6516 (license license:gpl2)))
6517
6518 (define-public r-abind
6519 (package
6520 (name "r-abind")
6521 (version "1.4-5")
6522 (source
6523 (origin
6524 (method url-fetch)
6525 (uri (cran-uri "abind" version))
6526 (sha256
6527 (base32
6528 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
6529 (build-system r-build-system)
6530 (home-page "https://cran.r-project.org/web/packages/abind/")
6531 (synopsis "Combine multidimensional arrays")
6532 (description
6533 "This package provides tools to combine multidimensional arrays into a
6534 single array. This is a generalization of @code{cbind} and @code{rbind}. It
6535 works with vectors, matrices, and higher-dimensional arrays. It also provides
6536 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
6537 extracting and replacing data in arrays.")
6538 (license license:lgpl2.0+)))
6539
6540 (define-public r-prroc
6541 (package
6542 (name "r-prroc")
6543 (version "1.3.1")
6544 (source
6545 (origin
6546 (method url-fetch)
6547 (uri (cran-uri "PRROC" version))
6548 (sha256
6549 (base32
6550 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
6551 (properties `((upstream-name . "PRROC")))
6552 (build-system r-build-system)
6553 (home-page "https://cran.r-project.org/web/packages/PRROC/")
6554 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
6555 (description
6556 "This package computes the areas under the @dfn{precision-recall} (PR)
6557 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
6558 contrast to other implementations, the interpolation between points of the PR
6559 curve is done by a non-linear piecewise function. In addition to the areas
6560 under the curves, the curves themselves can also be computed and plotted by a
6561 specific S3-method.")
6562 (license license:gpl3)))
6563
6564 (define-public r-vim
6565 (package
6566 (name "r-vim")
6567 (version "6.1.0")
6568 (source
6569 (origin
6570 (method url-fetch)
6571 (uri (cran-uri "VIM" version))
6572 (sha256
6573 (base32
6574 "1a8aw0ysaf0al95m2la2zx1p3g5mnwqx0x30br1s1dqqkfnv57hz"))))
6575 (properties `((upstream-name . "VIM")))
6576 (build-system r-build-system)
6577 (propagated-inputs
6578 `(("r-car" ,r-car)
6579 ("r-colorspace" ,r-colorspace)
6580 ("r-data-table" ,r-data-table)
6581 ("r-e1071" ,r-e1071)
6582 ("r-laeken" ,r-laeken)
6583 ("r-magrittr" ,r-magrittr)
6584 ("r-mass" ,r-mass)
6585 ("r-nnet" ,r-nnet)
6586 ("r-ranger" ,r-ranger)
6587 ("r-rcpp" ,r-rcpp)
6588 ("r-robustbase" ,r-robustbase)
6589 ("r-sp" ,r-sp)
6590 ("r-vcd" ,r-vcd)))
6591 (native-inputs
6592 `(("r-knitr" ,r-knitr)))
6593 (home-page "https://github.com/alexkowa/VIM")
6594 (synopsis "Visualization and imputation of missing values")
6595 (description
6596 "This package provides tools for the visualization of missing and/or
6597 imputed values are introduced, which can be used for exploring the data and
6598 the structure of the missing and/or imputed values. Depending on this
6599 structure of the missing values, the corresponding methods may help to
6600 identify the mechanism generating the missing values and explore the
6601 data including missing values. In addition, the quality of imputation can be
6602 visually explored using various univariate, bivariate, multiple and
6603 multivariate plot methods.")
6604 (license license:gpl2+)))
6605
6606 (define-public r-fnn
6607 (package
6608 (name "r-fnn")
6609 (version "1.1.3")
6610 (source
6611 (origin
6612 (method url-fetch)
6613 (uri (cran-uri "FNN" version))
6614 (sha256
6615 (base32
6616 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
6617 (properties `((upstream-name . "FNN")))
6618 (build-system r-build-system)
6619 (home-page "https://cran.r-project.org/web/packages/FNN")
6620 (synopsis "Fast nearest neighbor search algorithms and applications")
6621 (description
6622 "This package provides cover-tree and kd-tree fast k-nearest neighbor
6623 search algorithms. Related applications including KNN classification,
6624 regression and information measures are implemented.")
6625 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
6626 ;; later can be used.
6627 (license license:gpl2+)))
6628
6629 (define-public r-smoother
6630 (package
6631 (name "r-smoother")
6632 (version "1.1")
6633 (source
6634 (origin
6635 (method url-fetch)
6636 (uri (cran-uri "smoother" version))
6637 (sha256
6638 (base32
6639 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
6640 (build-system r-build-system)
6641 (propagated-inputs
6642 `(("r-ttr" ,r-ttr)))
6643 (home-page "https://cran.r-project.org/web/packages/smoother")
6644 (synopsis "Functions relating to the smoothing of numerical data")
6645 (description
6646 "This package provides a collection of methods for smoothing numerical
6647 data, commencing with a port of the Matlab gaussian window smoothing function.
6648 In addition, several functions typically used in smoothing of financial data
6649 are included.")
6650 (license license:gpl2)))
6651
6652 (define-public r-riverplot
6653 (package
6654 (name "r-riverplot")
6655 (version "0.10")
6656 (source
6657 (origin
6658 (method url-fetch)
6659 (uri (cran-uri "riverplot" version))
6660 (sha256
6661 (base32
6662 "04ap1dsa7fx03l73jhv1ql3adaaaz2100qawdplxa9xmrllgcgbj"))))
6663 (build-system r-build-system)
6664 (propagated-inputs
6665 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
6666 (native-inputs
6667 `(("r-knitr" ,r-knitr)))
6668 (home-page "https://logfc.wordpress.com")
6669 (synopsis "Sankey or ribbon plots")
6670 (description
6671 "Sankey plots are a type of diagram that is convenient to illustrate how
6672 flow of information, resources etc. separates and joins, much like observing
6673 how rivers split and merge. For example, they can be used to compare
6674 different clusterings. This package provides an implementation of Sankey
6675 plots for R.")
6676 (license license:gpl2+)))
6677
6678 (define-public r-dyn
6679 (package
6680 (name "r-dyn")
6681 (version "0.2-9.6")
6682 (source
6683 (origin
6684 (method url-fetch)
6685 (uri (cran-uri "dyn" version))
6686 (sha256
6687 (base32
6688 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
6689 (build-system r-build-system)
6690 (propagated-inputs
6691 `(("r-zoo" ,r-zoo)))
6692 (home-page "https://cran.r-project.org/web/packages/dyn")
6693 (synopsis "Time series regression")
6694 (description
6695 "This package provides the dyn class interfaces @code{ts}, @code{irts},
6696 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
6697 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
6698 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
6699 @code{randomForest::randomForest()} and other regression functions, allowing
6700 those functions to be used with time series including specifications that may
6701 contain lags, diffs and missing values.")
6702 ;; Any GPL version.
6703 (license license:gpl2+)))
6704
6705 (define-public r-catdap
6706 (package
6707 (name "r-catdap")
6708 (version "1.3.5")
6709 (source
6710 (origin
6711 (method url-fetch)
6712 (uri (cran-uri "catdap" version))
6713 (sha256
6714 (base32
6715 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
6716 (build-system r-build-system)
6717 (native-inputs
6718 `(("gfortran" ,gfortran)))
6719 (home-page "https://cran.r-project.org/web/packages/catdap/")
6720 (synopsis "Tools for categorical data analysis")
6721 (description
6722 "This package provides functions for analyzing multivariate data.
6723 Dependencies of the distribution of the specified variable (response
6724 variable) to other variables (explanatory variables) are derived and
6725 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
6726 (license license:gpl2+)))
6727
6728 (define-public r-arules
6729 (package
6730 (name "r-arules")
6731 (version "1.6-6")
6732 (source
6733 (origin
6734 (method url-fetch)
6735 (uri (cran-uri "arules" version))
6736 (sha256
6737 (base32
6738 "1pk3jjizn2m5rwi7qkdkbq9f07acgpy0qdzzqmx0agg47cwahlkm"))))
6739 (build-system r-build-system)
6740 (propagated-inputs
6741 `(("r-matrix" ,r-matrix)))
6742 (home-page "https://github.com/mhahsler/arules")
6743 (synopsis "Mining association rules and frequent itemsets")
6744 (description
6745 "This package provides an infrastructure for representing, manipulating
6746 and analyzing transaction data and patterns (frequent itemsets and association rules).
6747 It also provides C implementations of the association mining algorithms Apriori
6748 and Eclat.")
6749 (license license:gpl3)))
6750
6751 (define-public r-parsedate
6752 (package
6753 (name "r-parsedate")
6754 (version "1.2.0")
6755 (source
6756 (origin
6757 (method url-fetch)
6758 (uri (cran-uri "parsedate" version))
6759 (sha256
6760 (base32
6761 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
6762 (build-system r-build-system)
6763 (propagated-inputs
6764 `(("r-rematch2" ,r-rematch2)))
6765 (home-page "https://github.com/gaborcsardi/parsedate")
6766 (synopsis
6767 "Recognize and parse dates in various formats")
6768 (description
6769 "This package provides three functions for dealing with dates:
6770 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
6771 time formats, @code{parse_date} parses dates in unspecified formats,
6772 and @code{format_iso_8601} formats a date in ISO 8601 format.")
6773 (license license:gpl2)))
6774
6775 (define-public r-abc-data
6776 (package
6777 (name "r-abc-data")
6778 (version "1.0")
6779 (source
6780 (origin
6781 (method url-fetch)
6782 (uri (cran-uri "abc.data" version))
6783 (sha256
6784 (base32
6785 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
6786 (properties `((upstream-name . "abc.data")))
6787 (build-system r-build-system)
6788 (home-page "https://cran.r-project.org/web/packages/abc.data/")
6789 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
6790 (description
6791 "This package contains data which are used by functions of the abc
6792 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
6793 algorithms for performing parameter estimation, model selection, and
6794 goodness-of-fit.")
6795 (license license:gpl3+)))
6796
6797 (define-public r-abc
6798 (package
6799 (name "r-abc")
6800 (version "2.1")
6801 (source
6802 (origin
6803 (method url-fetch)
6804 (uri (cran-uri "abc" version))
6805 (sha256
6806 (base32
6807 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
6808 (build-system r-build-system)
6809 (propagated-inputs
6810 `(("r-abc-data" ,r-abc-data)
6811 ("r-locfit" ,r-locfit)
6812 ("r-mass" ,r-mass)
6813 ("r-nnet" ,r-nnet)
6814 ("r-quantreg" ,r-quantreg)))
6815 (home-page "https://cran.r-project.org/web/packages/abc/")
6816 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
6817 (description
6818 "This package implements several @dfn{Approximate Bayesian
6819 Computation} (ABC) algorithms for performing parameter estimation, model
6820 selection, and goodness-of-fit. Cross-validation tools are also available for
6821 measuring the accuracy of ABC estimates, and to calculate the
6822 misclassification probabilities of different models.")
6823 (license license:gpl3+)))
6824
6825 (define-public r-zip
6826 (package
6827 (name "r-zip")
6828 (version "2.1.1")
6829 (source
6830 (origin
6831 (method url-fetch)
6832 (uri (cran-uri "zip" version))
6833 (sha256
6834 (base32
6835 "0b3wmbx5v0i1scylgk4nli2ljg4p12wx7a1sqljklv9969wl3p8i"))))
6836 (build-system r-build-system)
6837 (home-page "https://github.com/gaborcsardi/zip")
6838 (synopsis "Cross-platform Zip compression")
6839 (description
6840 "This package provides a cross-platform Zip compression library for R.
6841 It is a replacement for the @code{zip} function, that does not require any
6842 additional external tools on any platform.")
6843 (license license:cc0)))
6844
6845 (define-public r-openxlsx
6846 (package
6847 (name "r-openxlsx")
6848 (version "4.2.3")
6849 (source
6850 (origin
6851 (method url-fetch)
6852 (uri (cran-uri "openxlsx" version))
6853 (sha256
6854 (base32
6855 "0vz4nlrwgsiifrgza8kfd9i1c0ya6plymrgk59vyy2z54vc8kvyd"))))
6856 (build-system r-build-system)
6857 (propagated-inputs
6858 `(("r-rcpp" ,r-rcpp)
6859 ("r-stringi" ,r-stringi)
6860 ("r-zip" ,r-zip)))
6861 (native-inputs
6862 `(("r-knitr" ,r-knitr)))
6863 (home-page "https://github.com/awalker89/openxlsx")
6864 (synopsis "Read, write and edit XLSX files")
6865 (description
6866 "This package simplifies the creation of Excel @code{.xlsx} files by
6867 providing a high level interface to writing, styling and editing worksheets.
6868 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
6869 and @code{XLConnect} packages with the added benefit of removing the
6870 dependency on Java.")
6871 (license license:gpl3)))
6872
6873 (define-public r-rio
6874 (package
6875 (name "r-rio")
6876 (version "0.5.26")
6877 (source
6878 (origin
6879 (method url-fetch)
6880 (uri (cran-uri "rio" version))
6881 (sha256
6882 (base32
6883 "1k6zxjb2bb0z6rv7zmkbaz85cbvs84mj602ikkwk60alh8kpdw2d"))))
6884 (build-system r-build-system)
6885 (propagated-inputs
6886 `(("r-curl" ,r-curl)
6887 ("r-data-table" ,r-data-table)
6888 ("r-foreign" ,r-foreign)
6889 ("r-haven" ,r-haven)
6890 ("r-openxlsx" ,r-openxlsx)
6891 ("r-readxl" ,r-readxl)
6892 ("r-tibble" ,r-tibble)))
6893 (native-inputs
6894 `(("r-knitr" ,r-knitr)))
6895 (home-page "https://github.com/leeper/rio")
6896 (synopsis "Swiss-army knife for data I/O")
6897 (description
6898 "This package provides streamlined data import and export infrastructure
6899 by making assumptions that the user is probably willing to make: @code{import}
6900 and @code{export} determine the data structure from the file extension,
6901 reasonable defaults are used for data import and export (e.g.,
6902 @code{stringsAsFactors=FALSE}), web-based import is natively
6903 supported (including from SSL/HTTPS), compressed files can be read directly
6904 without explicit decompression, and fast import packages are used where
6905 appropriate. An additional convenience function, @code{convert}, provides a
6906 simple method for converting between file types.")
6907 (license license:gpl2)))
6908
6909 (define-public r-maptools
6910 (package
6911 (name "r-maptools")
6912 (version "1.0-2")
6913 (source
6914 (origin
6915 (method url-fetch)
6916 (uri (cran-uri "maptools" version))
6917 (sha256
6918 (base32
6919 "0jgf3wg47jdnznxb3ncv4is9ackwviy4lzcyggqwzw3wh6jnvb6s"))))
6920 (build-system r-build-system)
6921 (propagated-inputs
6922 `(("r-foreign" ,r-foreign)
6923 ("r-lattice" ,r-lattice)
6924 ("r-sp" ,r-sp)))
6925 (home-page "https://r-forge.r-project.org/projects/maptools/")
6926 (synopsis "Tools for reading and handling spatial objects")
6927 (description
6928 "This package provides a set of tools for manipulating and reading
6929 geographic data, in particular ESRI Shapefiles. It includes binary access to
6930 GSHHG shoreline files. The package also provides interface wrappers for
6931 exchanging spatial objects with other R packages.")
6932 ;; The C source files from shapelib are released under the Expat license.
6933 ;; The R code is released under GPL version 2 or later.
6934 (license (list license:gpl2+
6935 license:expat))))
6936
6937 (define-public r-later
6938 (package
6939 (name "r-later")
6940 (version "1.1.0.1")
6941 (source
6942 (origin
6943 (method url-fetch)
6944 (uri (cran-uri "later" version))
6945 (sha256
6946 (base32
6947 "1k9n2j7zxw9gfclnx8zfqp6w64c5d6apn7g02yhkajkpmszagfki"))))
6948 (build-system r-build-system)
6949 (propagated-inputs
6950 `(("r-bh" ,r-bh)
6951 ("r-rcpp" ,r-rcpp)
6952 ("r-rlang" ,r-rlang)))
6953 (native-inputs
6954 `(("r-knitr" ,r-knitr)))
6955 (home-page "https://github.com/r-lib/later")
6956 (synopsis "Utilities for delaying function execution")
6957 (description
6958 "This package provides tools to execute arbitrary R or C functions some
6959 time after the current time, after the R execution stack has emptied.")
6960 (license license:gpl2+)))
6961
6962 (define-public r-promises
6963 (package
6964 (name "r-promises")
6965 (version "1.2.0.1")
6966 (source
6967 (origin
6968 (method url-fetch)
6969 (uri (cran-uri "promises" version))
6970 (sha256
6971 (base32
6972 "1dy4cbqw17awh4q8m7cy3anaj0n9iynabfzflb1g94cyj0bq4fld"))))
6973 (build-system r-build-system)
6974 (propagated-inputs
6975 `(("r-later" ,r-later)
6976 ("r-magrittr" ,r-magrittr)
6977 ("r-r6" ,r-r6)
6978 ("r-rcpp" ,r-rcpp)
6979 ("r-rlang" ,r-rlang)))
6980 (native-inputs
6981 `(("r-knitr" ,r-knitr)))
6982 (home-page "https://rstudio.github.io/promises")
6983 (synopsis "Abstractions for promise-based asynchronous programming")
6984 (description
6985 "This package provides fundamental abstractions for doing asynchronous
6986 programming in R using promises. Asynchronous programming is useful for
6987 allowing a single R process to orchestrate multiple tasks in the background
6988 while also attending to something else. Semantics are similar to JavaScript
6989 promises, but with a syntax that is idiomatic R.")
6990 (license license:expat)))
6991
6992 (define-public r-dosnow
6993 (package
6994 (name "r-dosnow")
6995 (version "1.0.19")
6996 (source
6997 (origin
6998 (method url-fetch)
6999 (uri (cran-uri "doSNOW" version))
7000 (sha256
7001 (base32
7002 "0f07b38cl7s61vwzkyqkzzsic9g4sw9k6ndbxk3g90l4ca0d1ljc"))))
7003 (properties `((upstream-name . "doSNOW")))
7004 (build-system r-build-system)
7005 (propagated-inputs
7006 `(("r-foreach" ,r-foreach)
7007 ("r-iterators" ,r-iterators)
7008 ("r-snow" ,r-snow)))
7009 (home-page "https://cran.r-project.org/web/packages/doSNOW")
7010 (synopsis "Foreach parallel adaptor for the snow package")
7011 (description
7012 "This package provides a parallel backend for the @code{%dopar%} function
7013 using the @code{snow} package.")
7014 (license license:gpl2)))
7015
7016 (define-public r-fst
7017 (package
7018 (name "r-fst")
7019 (version "0.9.4")
7020 (source
7021 (origin
7022 (method url-fetch)
7023 (uri (cran-uri "fst" version))
7024 (sha256
7025 (base32
7026 "0vwclzxww8mw9nnpyj29bn71mrr8jjg7ka03979h9rbzw6d9bjrr"))))
7027 (properties `((upstream-name . "fst")))
7028 (build-system r-build-system)
7029 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7030 (home-page "http://www.fstpackage.org")
7031 (synopsis "Fast serialization of data frames")
7032 (description
7033 "The fst package for R provides a fast, easy and flexible way to
7034 serialize data frames. With access speeds of multiple GB/s, fst is
7035 specifically designed to unlock the potential of high speed solid state disks.
7036 Data frames stored in the fst format have full random access, both in column
7037 and rows. The fst format allows for random access of stored data and
7038 compression with the LZ4 and ZSTD compressors.")
7039 (license license:agpl3)))
7040
7041 (define-public r-snowfall
7042 (package
7043 (name "r-snowfall")
7044 (version "1.84-6.1")
7045 (source (origin
7046 (method url-fetch)
7047 (uri (cran-uri "snowfall" version))
7048 (sha256
7049 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
7050 (build-system r-build-system)
7051 (propagated-inputs
7052 `(("r-snow" ,r-snow)))
7053 (home-page "https://cran.r-project.org/web/packages/snowfall/")
7054 (synopsis "Easier cluster computing")
7055 (description "This package is a usability wrapper around snow for easier
7056 development of parallel R programs. This package offers e.g. extended error
7057 checks, and additional functions. All functions work in sequential mode, too,
7058 if no cluster is present or wished. The package is also designed as connector
7059 to the cluster management tool @code{sfCluster}, but can also used without
7060 it.")
7061 (license license:gpl2+)))
7062
7063 (define-public r-rgexf
7064 (package
7065 (name "r-rgexf")
7066 (version "0.16.0")
7067 (source
7068 (origin
7069 (method url-fetch)
7070 (uri (cran-uri "rgexf" version))
7071 (sha256
7072 (base32
7073 "1vj5ha1qx0xzflchxf25ycys6clfn9y32m1717afzkvhmkwisrra"))
7074 (snippet
7075 '(begin
7076 ;; Delete minified JavaScript files
7077 (for-each delete-file
7078 '("inst/gexf-js/js/jquery-2.0.2.min.js"
7079 "inst/gexf-js/js/jquery-ui-1.10.3.custom.min.js"
7080 "inst/gexf-js/js/jquery.mousewheel.min.js"))
7081 #true))))
7082 (properties `((upstream-name . "rgexf")))
7083 (build-system r-build-system)
7084 (arguments
7085 `(#:modules ((guix build utils)
7086 (guix build r-build-system)
7087 (srfi srfi-1)
7088 (ice-9 popen))
7089 #:phases
7090 (modify-phases %standard-phases
7091 (add-after 'unpack 'process-javascript
7092 (lambda* (#:key inputs #:allow-other-keys)
7093 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-jquery-ui"))
7094 (with-directory-excursion "inst/gexf-js/js/"
7095 (call-with-values
7096 (lambda ()
7097 (unzip2
7098 `((,(assoc-ref inputs "js-jquery")
7099 "jquery-2.0.2.min.js")
7100 ("/tmp/jquery-ui-1.10.3/ui/jquery-ui.js"
7101 "jquery-ui-1.10.3.custom.min.js")
7102 (,(assoc-ref inputs "js-jquery-mousewheel")
7103 "jquery.mousewheel.min.js"))))
7104 (lambda (sources targets)
7105 (for-each (lambda (source target)
7106 (format #true "Processing ~a --> ~a~%"
7107 source target)
7108 (invoke "esbuild" source "--minify"
7109 (string-append "--outfile=" target)))
7110 sources targets))))
7111 #t)))))
7112 (propagated-inputs
7113 `(("r-igraph" ,r-igraph)
7114 ("r-servr" ,r-servr)
7115 ("r-xml" ,r-xml)))
7116 (native-inputs
7117 `(("r-knitr" ,r-knitr)
7118 ("esbuild" ,esbuild)
7119 ("unzip" ,unzip)
7120 ("js-jquery"
7121 ,(origin
7122 (method url-fetch)
7123 (uri "https://code.jquery.com/jquery-2.0.2.js")
7124 (sha256
7125 (base32
7126 "0v818bxpw48gdk8i95qqqij80r9jcgisi2r4ac6xnxca20h0gvfj"))))
7127 ("js-jquery-ui"
7128 ,(origin
7129 (method url-fetch)
7130 (uri "https://jqueryui.com/resources/download/jquery-ui-1.10.3.zip")
7131 (sha256
7132 (base32
7133 "00xpfy0l69nj2yan4s8k65ldsrlfsjkmyw2dwcg93dc8mv454vxx"))))
7134 ("js-jquery-mousewheel"
7135 ,(origin
7136 (method url-fetch)
7137 (uri "https://raw.githubusercontent.com/jquery/jquery-mousewheel/\
7138 3.0.6/jquery.mousewheel.js")
7139 (sha256
7140 (base32
7141 "19lk5xy2s47bx8hsa7j6bg012f8yw6d770g230bcnm559kf4nc6v"))))))
7142 (home-page "https://gvegayon.github.io/rgexf")
7143 (synopsis "Build, import and export GEXF graph files")
7144 (description
7145 "Create, read and write GEXF (Graph Exchange XML Format) graph
7146 files (used in Gephi and others). It allows the user to easily build/read
7147 graph files including attributes, GEXF visual attributes (such as color, size,
7148 and position), network dynamics (for both edges and nodes) and edge weighting.
7149 Users can build/handle graphs element-by-element or massively through
7150 data-frames, visualize the graph on a web browser through gexf-js (a
7151 JavaScript library) and interact with the igraph package.")
7152 (license license:expat)))
7153
7154 (define-public r-data-tree
7155 (package
7156 (name "r-data-tree")
7157 (version "1.0.0")
7158 (source
7159 (origin
7160 (method url-fetch)
7161 (uri (cran-uri "data.tree" version))
7162 (sha256
7163 (base32
7164 "0pizmx2312zsym4m42b97q2184bg3hibvbdrblcga05xln84qrs0"))))
7165 (properties `((upstream-name . "data.tree")))
7166 (build-system r-build-system)
7167 (propagated-inputs
7168 `(("r-r6" ,r-r6)
7169 ("r-stringi" ,r-stringi)))
7170 (native-inputs
7171 `(("r-knitr" ,r-knitr)))
7172 (home-page "https://github.com/gluc/data.tree")
7173 (synopsis "General purpose hierarchical data structure")
7174 (description
7175 "Create tree structures from hierarchical data, and traverse the tree in
7176 various orders. Aggregate, cumulate, print, plot, convert to and from
7177 data.frame and more. This is useful for decision trees, machine learning,
7178 finance, conversion from and to JSON, and many other applications.")
7179 (license license:gpl2+)))
7180
7181 (define-public r-collapsibletree
7182 (package
7183 (name "r-collapsibletree")
7184 (version "0.1.7")
7185 (source
7186 (origin
7187 (method url-fetch)
7188 (uri (cran-uri "collapsibleTree" version))
7189 (sha256
7190 (base32
7191 "0b65pbp1wnpsrayqi630ds4r98jvcvynnlp6wxdqrnnr9nzw5343"))
7192 (snippet
7193 '(begin
7194 ;; Delete minified JavaScript file
7195 (delete-file "inst/htmlwidgets/lib/d3-4.10.2/d3.min.js")
7196 #true))))
7197 (properties
7198 `((upstream-name . "collapsibleTree")))
7199 (build-system r-build-system)
7200 (arguments
7201 `(#:phases
7202 (modify-phases %standard-phases
7203 (add-after 'unpack 'process-javascript
7204 (lambda* (#:key inputs #:allow-other-keys)
7205 (with-directory-excursion "inst/htmlwidgets/lib/d3-4.10.2/"
7206 (let ((source (assoc-ref inputs "d3.v4.js"))
7207 (target "d3.min.js"))
7208 (format #t "Processing ~a --> ~a~%"
7209 source target)
7210 (invoke "esbuild" source "--minify"
7211 (string-append "--outfile=" target)))))))))
7212 (propagated-inputs
7213 `(("r-data-tree" ,r-data-tree)
7214 ("r-htmlwidgets" ,r-htmlwidgets)))
7215 (native-inputs
7216 `(("esbuild" ,esbuild)
7217 ("d3.v4.js"
7218 ,(origin
7219 (method url-fetch)
7220 (uri "https://d3js.org/d3.v4.js")
7221 (sha256
7222 (base32
7223 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
7224 (home-page "https://github.com/AdeelK93/collapsibleTree")
7225 (synopsis "Interactive collapsible tree diagrams using D3.js")
7226 (description
7227 "This is a package for interactive Reingold-Tilford tree diagrams created
7228 using D3.js, where every node can be expanded and collapsed by clicking on it.
7229 Tooltips and color gradients can be mapped to nodes using a numeric column in
7230 the source data frame.")
7231 (license license:gpl3+)))
7232
7233 (define-public r-rappdirs
7234 (package
7235 (name "r-rappdirs")
7236 (version "0.3.3")
7237 (source
7238 (origin
7239 (method url-fetch)
7240 (uri (cran-uri "rappdirs" version))
7241 (sha256
7242 (base32
7243 "1161i3jgjvzjv4p8qbz9r976fnggkcrw3mlj4yd1h2svnijrz5a9"))))
7244 (build-system r-build-system)
7245 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
7246 (synopsis "Determine where to save data, caches, and logs")
7247 (description
7248 "This package provides an easy way to determine which directories on the
7249 user's computer should be used to save data, caches and logs. It is a port of
7250 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
7251 (license license:expat)))
7252
7253 (define-public r-rastervis
7254 (package
7255 (name "r-rastervis")
7256 (version "0.50")
7257 (source
7258 (origin
7259 (method url-fetch)
7260 (uri (cran-uri "rasterVis" version))
7261 (sha256
7262 (base32
7263 "0m7fjd53apxim0d0rjnyzc28vmfcg4spcrn0zbnk8llillxji1hi"))))
7264 (properties `((upstream-name . "rasterVis")))
7265 (build-system r-build-system)
7266 (propagated-inputs
7267 `(("r-hexbin" ,r-hexbin)
7268 ("r-lattice" ,r-lattice)
7269 ("r-latticeextra" ,r-latticeextra)
7270 ("r-raster" ,r-raster)
7271 ("r-rcolorbrewer" ,r-rcolorbrewer)
7272 ("r-sp" ,r-sp)
7273 ("r-terra" ,r-terra)
7274 ("r-viridislite" ,r-viridislite)
7275 ("r-zoo" ,r-zoo)))
7276 (home-page "https://oscarperpinan.github.io/rastervis/")
7277 (synopsis "Visualization methods for raster data")
7278 (description
7279 "This package provides methods for enhanced visualization and interaction
7280 with raster data. It implements visualization methods for quantitative data
7281 and categorical data, both for univariate and multivariate rasters. It also
7282 provides methods to display spatiotemporal rasters, and vector fields.")
7283 (license license:gpl3)))
7284
7285 (define-public r-rentrez
7286 (package
7287 (name "r-rentrez")
7288 (version "1.2.3")
7289 (source
7290 (origin
7291 (method url-fetch)
7292 (uri (cran-uri "rentrez" version))
7293 (sha256
7294 (base32
7295 "0x1g2f6hvkqqlb39z8m5qxhcvsizddic5i7rpqw0wy77xfbna9gv"))))
7296 (properties `((upstream-name . "rentrez")))
7297 (build-system r-build-system)
7298 (propagated-inputs
7299 `(("r-httr" ,r-httr)
7300 ("r-jsonlite" ,r-jsonlite)
7301 ("r-xml" ,r-xml)))
7302 (native-inputs
7303 `(("r-knitr" ,r-knitr)))
7304 (home-page "https://docs.ropensci.org/rentrez/")
7305 (synopsis "Entrez in R")
7306 (description
7307 "This package provides an R interface to the NCBI's EUtils API,
7308 allowing users to search databases like GenBank PubMed, process the results of
7309 those searches and pull data into their R sessions.")
7310 (license license:expat)))
7311
7312 (define-public r-renv
7313 (package
7314 (name "r-renv")
7315 (version "0.13.0")
7316 (source
7317 (origin
7318 (method url-fetch)
7319 (uri (cran-uri "renv" version))
7320 (sha256
7321 (base32
7322 "16n2dz9jibc03f7q1wrzxss6l5jmaks7m2lnli9dz9anvcmxbdia"))))
7323 (properties `((upstream-name . "renv")))
7324 (build-system r-build-system)
7325 (native-inputs
7326 `(("r-knitr" ,r-knitr)))
7327 (home-page "https://rstudio.github.io/renv")
7328 (synopsis "Project environments")
7329 (description
7330 "This package provides a dependency management toolkit for R. Using
7331 renv, you can create and manage project-local R libraries, save the state of
7332 these libraries to a lockfile, and later restore your library as required.
7333 Together, these tools can help make your projects more isolated, portable, and
7334 reproducible.")
7335 (license license:expat)))
7336
7337 (define-public r-learnr
7338 (package
7339 (name "r-learnr")
7340 (version "0.10.1")
7341 (source
7342 (origin
7343 (method url-fetch)
7344 (uri (cran-uri "learnr" version))
7345 (sha256
7346 (base32
7347 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
7348 (build-system r-build-system)
7349 (propagated-inputs
7350 `(("r-checkmate" ,r-checkmate)
7351 ("r-ellipsis" ,r-ellipsis)
7352 ("r-evaluate" ,r-evaluate)
7353 ("r-htmltools" ,r-htmltools)
7354 ("r-htmlwidgets" ,r-htmlwidgets)
7355 ("r-jsonlite" ,r-jsonlite)
7356 ("r-knitr" ,r-knitr)
7357 ("r-markdown" ,r-markdown)
7358 ("r-rappdirs" ,r-rappdirs)
7359 ("r-renv" ,r-renv)
7360 ("r-rmarkdown" ,r-rmarkdown)
7361 ("r-rprojroot" ,r-rprojroot)
7362 ("r-shiny" ,r-shiny)
7363 ("r-withr" ,r-withr)))
7364 (home-page "https://rstudio.github.io/learnr/")
7365 (synopsis "Interactive tutorials for R")
7366 (description
7367 "This package provides tools to create interactive tutorials using R
7368 Markdown. Use a combination of narrative, figures, videos, exercises, and
7369 quizzes to create self-paced tutorials for learning about R and R packages.")
7370 (license license:asl2.0)))
7371
7372 (define-public r-analytics
7373 (package
7374 (name "r-analytics")
7375 (version "3.0")
7376 (source
7377 (origin
7378 (method url-fetch)
7379 (uri (cran-uri "analytics" version))
7380 (sha256
7381 (base32
7382 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
7383 (build-system r-build-system)
7384 (propagated-inputs
7385 `(("r-car" ,r-car)
7386 ("r-cluster" ,r-cluster)
7387 ("r-fractal" ,r-fractal)
7388 ("r-lmtest" ,r-lmtest)
7389 ("r-mass" ,r-mass)
7390 ("r-np" ,r-np)
7391 ("r-powerplus" ,r-powerplus)
7392 ("r-robust" ,r-robust)
7393 ("r-trend" ,r-trend)
7394 ("r-tsa" ,r-tsa)
7395 ("r-urca" ,r-urca)
7396 ("r-vim" ,r-vim)))
7397 (home-page "https://cran.r-project.org/web/packages/analytics/")
7398 (synopsis "Collection of data analysis tools")
7399 (description
7400 "This package is a collection of data analysis tools. It includes tools
7401 for regression outlier detection in a fitted linear model, stationary
7402 bootstrap using a truncated geometric distribution, a comprehensive test for
7403 weak stationarity, column means by group, weighted biplots, and a heuristic to
7404 obtain a better initial configuration in non-metric MDS.")
7405 (license license:gpl2)))
7406
7407 (define-public r-reticulate
7408 (package
7409 (name "r-reticulate")
7410 (version "1.18")
7411 (source
7412 (origin
7413 (method url-fetch)
7414 (uri (cran-uri "reticulate" version))
7415 (sha256
7416 (base32
7417 "04w5c9jfxakb4rr2qjynxgagb42khsja3y4dwgxywiplb1d8agxk"))))
7418 (build-system r-build-system)
7419 (inputs `(("python" ,python)))
7420 (propagated-inputs
7421 `(("r-rappdirs" ,r-rappdirs)
7422 ("r-jsonlite" ,r-jsonlite)
7423 ("r-matrix" ,r-matrix)
7424 ("r-rcpp" ,r-rcpp)))
7425 (native-inputs
7426 `(("r-knitr" ,r-knitr)))
7427 (home-page "https://github.com/rstudio/reticulate")
7428 (synopsis "R interface to Python")
7429 (description
7430 "This package provides an interface from R to Python modules, classes,
7431 and functions. When calling into Python, R data types are automatically
7432 converted to their equivalent Python types. When values are returned from
7433 Python to R they are converted back to R types.")
7434 (license license:asl2.0)))
7435
7436 (define-public r-bibtex
7437 (package
7438 (name "r-bibtex")
7439 (version "0.4.2.3")
7440 (source
7441 (origin
7442 (method url-fetch)
7443 (uri (cran-uri "bibtex" version))
7444 (sha256
7445 (base32
7446 "0vdwx6808r73pk15263f33bkqbfmb08d8jkmr4d7h4ml414ikbbv"))))
7447 (build-system r-build-system)
7448 (propagated-inputs `(("r-stringr" ,r-stringr)))
7449 (home-page "https://github.com/romainfrancois/bibtex")
7450 (synopsis "Bibtex parser")
7451 (description "This package provides a utility for R to parse a bibtex
7452 file.")
7453 (license license:gpl2+)))
7454
7455 (define-public r-ggseqlogo
7456 (package
7457 (name "r-ggseqlogo")
7458 (version "0.1")
7459 (source
7460 (origin
7461 (method url-fetch)
7462 (uri (cran-uri "ggseqlogo" version))
7463 (sha256
7464 (base32
7465 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
7466 (build-system r-build-system)
7467 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
7468 (home-page "https://github.com/omarwagih/ggseqlogo")
7469 (synopsis "ggplot2 extension for drawing genetic sequence logos")
7470 (description
7471 "The range of functions provided by this package makes it possible to
7472 draw highly versatile genomic sequence logos. Features include, but are not
7473 limited to, modifying colour schemes and fonts used to draw the logo,
7474 generating multiple logo plots, and aiding the visualisation with annotations.
7475 Sequence logos can easily be combined with other ggplot2 plots.")
7476 ;; Unspecified version of the LGPL.
7477 (license license:lgpl3+)))
7478
7479 (define-public r-ggsci
7480 (package
7481 (name "r-ggsci")
7482 (version "2.9")
7483 (source
7484 (origin
7485 (method url-fetch)
7486 (uri (cran-uri "ggsci" version))
7487 (sha256
7488 (base32
7489 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
7490 (build-system r-build-system)
7491 (propagated-inputs
7492 `(("r-ggplot2" ,r-ggplot2)
7493 ("r-scales" ,r-scales)))
7494 (home-page "https://nanx.me/ggsci/")
7495 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
7496 (description
7497 "This package provides a collection of ggplot2 color palettes inspired by
7498 plots in scientific journals, data visualization libraries, science fiction
7499 movies, and TV shows.")
7500 (license license:gpl3)))
7501
7502 (define-public r-ggsignif
7503 (package
7504 (name "r-ggsignif")
7505 (version "0.6.1")
7506 (source
7507 (origin
7508 (method url-fetch)
7509 (uri (cran-uri "ggsignif" version))
7510 (sha256
7511 (base32
7512 "0rjy9wqsq67jjm1jz3j7hm599x0rshrrhw2w01iaqb9kf506hvjh"))))
7513 (build-system r-build-system)
7514 (native-inputs
7515 `(("r-knitr" ,r-knitr)))
7516 (propagated-inputs
7517 `(("r-ggplot2" ,r-ggplot2)))
7518 (home-page "https://github.com/const-ae/ggsignif")
7519 (synopsis "Significance brackets for ggplot2")
7520 (description
7521 "Enrich your ggplots with group-wise comparisons. This package provides
7522 an easy way to indicate if two groups are significantly different. Commonly
7523 this is shown by a bracket on top connecting the groups of interest which
7524 itself is annotated with the level of significance. The package provides a
7525 single layer that takes the groups for comparison and the test as arguments
7526 and adds the annotation to the plot.")
7527 (license license:gpl3)))
7528
7529 (define-public r-rstatix
7530 (package
7531 (name "r-rstatix")
7532 (version "0.7.0")
7533 (source
7534 (origin
7535 (method url-fetch)
7536 (uri (cran-uri "rstatix" version))
7537 (sha256
7538 (base32
7539 "0330y8iziffqg8j9j5h9zv4qcdyf8ybhmzxrr9fzq9nc6bf1gbm5"))))
7540 (properties `((upstream-name . "rstatix")))
7541 (build-system r-build-system)
7542 (propagated-inputs
7543 `(("r-broom" ,r-broom)
7544 ("r-car" ,r-car)
7545 ("r-corrplot" ,r-corrplot)
7546 ("r-dplyr" ,r-dplyr)
7547 ("r-generics" ,r-generics)
7548 ("r-magrittr" ,r-magrittr)
7549 ("r-purrr" ,r-purrr)
7550 ("r-rlang" ,r-rlang)
7551 ("r-tibble" ,r-tibble)
7552 ("r-tidyr" ,r-tidyr)
7553 ("r-tidyselect" ,r-tidyselect)))
7554 (home-page "https://rpkgs.datanovia.com/rstatix/")
7555 (synopsis "Pipe-friendly framework for basic statistical tests")
7556 (description
7557 "This package provides a simple and intuitive pipe-friendly framework,
7558 coherent with the @code{tidyverse} design philosophy, for performing basic
7559 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
7560 correlation analyses. The output of each test is automatically transformed
7561 into a tidy data frame to facilitate visualization. Additional functions are
7562 available for reshaping, reordering, manipulating and visualizing correlation
7563 matrix.")
7564 (license license:gpl2)))
7565
7566 (define-public r-ggpubr
7567 (package
7568 (name "r-ggpubr")
7569 (version "0.4.0")
7570 (source
7571 (origin
7572 (method url-fetch)
7573 (uri (cran-uri "ggpubr" version))
7574 (sha256
7575 (base32
7576 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
7577 (build-system r-build-system)
7578 (propagated-inputs
7579 `(("r-cowplot" ,r-cowplot)
7580 ("r-dplyr" ,r-dplyr)
7581 ("r-ggplot2" ,r-ggplot2)
7582 ("r-ggrepel" ,r-ggrepel)
7583 ("r-ggsci" ,r-ggsci)
7584 ("r-ggsignif" ,r-ggsignif)
7585 ("r-glue" ,r-glue)
7586 ("r-gridextra" ,r-gridextra)
7587 ("r-magrittr" ,r-magrittr)
7588 ("r-polynom" ,r-polynom)
7589 ("r-purrr" ,r-purrr)
7590 ("r-rlang" ,r-rlang)
7591 ("r-scales" ,r-scales)
7592 ("r-rstatix" ,r-rstatix)
7593 ("r-tibble" ,r-tibble)
7594 ("r-tidyr" ,r-tidyr)))
7595 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
7596 (synopsis "ggplot2-based publication-ready plots")
7597 (description
7598 "The ggplot2 package is an excellent and flexible package for elegant
7599 data visualization in R. However the default generated plots require some
7600 formatting before we can send them for publication. The ggpubr package
7601 provides some easy-to-use functions for creating and customizing ggplot2-based
7602 publication-ready plots.")
7603 (license license:gpl2)))
7604
7605 (define-public r-ellipse
7606 (package
7607 (name "r-ellipse")
7608 (version "0.4.2")
7609 (source
7610 (origin
7611 (method url-fetch)
7612 (uri (cran-uri "ellipse" version))
7613 (sha256
7614 (base32
7615 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
7616 (build-system r-build-system)
7617 (home-page "https://cran.r-project.org/web/packages/ellipse/")
7618 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
7619 (description
7620 "This package contains various routines for drawing ellipses and
7621 ellipse-like confidence regions, implementing the plots described in Murdoch
7622 and Chow (1996), A graphical display of large correlation matrices, The
7623 American Statistician 50, 178-180. There are also routines implementing the
7624 profile plots described in Bates and Watts (1988), Nonlinear Regression
7625 Analysis and its Applications.")
7626 (license license:gpl2+)))
7627
7628 (define-public r-flashclust
7629 (package
7630 (name "r-flashclust")
7631 (version "1.01-2")
7632 (source
7633 (origin
7634 (method url-fetch)
7635 (uri (cran-uri "flashClust" version))
7636 (sha256
7637 (base32
7638 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
7639 (properties `((upstream-name . "flashClust")))
7640 (build-system r-build-system)
7641 (native-inputs `(("gfortran" ,gfortran)))
7642 (home-page "https://cran.r-project.org/web/packages/flashClust/")
7643 (synopsis "Implementation of optimal hierarchical clustering")
7644 (description
7645 "This package provides a fast implementation of hierarchical
7646 clustering.")
7647 (license license:gpl2+)))
7648
7649 (define-public r-factominer
7650 (package
7651 (name "r-factominer")
7652 (version "2.4")
7653 (source
7654 (origin
7655 (method url-fetch)
7656 (uri (cran-uri "FactoMineR" version))
7657 (sha256
7658 (base32
7659 "0lg8n9fxxk46nchnj4pbpqqf4swxfsq7r9jzr36dmd36kb7avqxr"))))
7660 (properties `((upstream-name . "FactoMineR")))
7661 (build-system r-build-system)
7662 (propagated-inputs
7663 `(("r-car" ,r-car)
7664 ("r-cluster" ,r-cluster)
7665 ("r-dt" ,r-dt)
7666 ("r-ellipse" ,r-ellipse)
7667 ("r-flashclust" ,r-flashclust)
7668 ("r-ggplot2" ,r-ggplot2)
7669 ("r-ggrepel" ,r-ggrepel)
7670 ("r-lattice" ,r-lattice)
7671 ("r-leaps" ,r-leaps)
7672 ("r-mass" ,r-mass)
7673 ("r-scatterplot3d" ,r-scatterplot3d)))
7674 (native-inputs
7675 `(("r-knitr" ,r-knitr)))
7676 (home-page "http://factominer.free.fr")
7677 (synopsis "Multivariate exploratory data analysis and data mining")
7678 (description
7679 "This package provides exploratory data analysis methods to summarize,
7680 visualize and describe datasets. The main principal component methods are
7681 available, those with the largest potential in terms of applications:
7682 principal component analysis (PCA) when variables are quantitative,
7683 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
7684 variables are categorical, Multiple Factor Analysis when variables are
7685 structured in groups, etc. and hierarchical cluster analysis.")
7686 (license license:gpl2+)))
7687
7688 (define-public r-factoextra
7689 (package
7690 (name "r-factoextra")
7691 (version "1.0.7")
7692 (source
7693 (origin
7694 (method url-fetch)
7695 (uri (cran-uri "factoextra" version))
7696 (sha256
7697 (base32
7698 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
7699 (build-system r-build-system)
7700 (propagated-inputs
7701 `(("r-abind" ,r-abind)
7702 ("r-cluster" ,r-cluster)
7703 ("r-dendextend" ,r-dendextend)
7704 ("r-factominer" ,r-factominer)
7705 ("r-ggplot2" ,r-ggplot2)
7706 ("r-ggpubr" ,r-ggpubr)
7707 ("r-ggrepel" ,r-ggrepel)
7708 ("r-reshape2" ,r-reshape2)
7709 ("r-tidyr" ,r-tidyr)))
7710 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
7711 (synopsis "Extract and visualize the results of multivariate data analyses")
7712 (description
7713 "This package provides some easy-to-use functions to extract and
7714 visualize the output of multivariate data analyses, including
7715 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
7716 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
7717 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
7718 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
7719 packages. It contains also functions for simplifying some clustering analysis
7720 steps and provides ggplot2-based elegant data visualization.")
7721 (license license:gpl2)))
7722
7723 (define-public r-fansi
7724 (package
7725 (name "r-fansi")
7726 (version "0.4.2")
7727 (source
7728 (origin
7729 (method url-fetch)
7730 (uri (cran-uri "fansi" version))
7731 (sha256
7732 (base32
7733 "0i7wmaflkjzdbggqv31wnsj3m9imvc6db429vyjk64xrz1ng1vd2"))))
7734 (build-system r-build-system)
7735 (native-inputs
7736 `(("r-knitr" ,r-knitr))) ; for vignettes
7737 (home-page "https://github.com/brodieG/fansi")
7738 (synopsis "ANSI control sequence aware string functions")
7739 (description
7740 "This package provides counterparts to R string manipulation functions
7741 that account for the effects of ANSI text formatting control sequences.")
7742 (license license:gpl2+)))
7743
7744 (define-public r-nbclust
7745 (package
7746 (name "r-nbclust")
7747 (version "3.0")
7748 (source
7749 (origin
7750 (method url-fetch)
7751 (uri (cran-uri "NbClust" version))
7752 (sha256
7753 (base32
7754 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
7755 (properties `((upstream-name . "NbClust")))
7756 (build-system r-build-system)
7757 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
7758 (synopsis "Determine the best number of clusters in a data set")
7759 (description
7760 "NbClust provides 30 indexes for determining the optimal number of
7761 clusters in a data set and offers the best clustering scheme from different
7762 results to the user.")
7763 (license license:gpl2)))
7764
7765 (define-public r-hdf5r
7766 (package
7767 (name "r-hdf5r")
7768 (version "1.3.3")
7769 (source
7770 (origin
7771 (method url-fetch)
7772 (uri (cran-uri "hdf5r" version))
7773 (sha256
7774 (base32
7775 "0i8m4yjxggrs05slq2afvz2ckl1yc9wq7gd1s7dq2gjn46zkry50"))))
7776 (build-system r-build-system)
7777 (inputs
7778 `(("hdf5" ,hdf5)
7779 ("zlib" ,zlib)))
7780 (propagated-inputs
7781 `(("r-bit64" ,r-bit64)
7782 ("r-r6" ,r-r6)))
7783 (native-inputs
7784 `(("r-knitr" ,r-knitr)))
7785 (home-page "https://hhoeflin.github.io/hdf5r")
7786 (synopsis "Interface to the HDF5 binary data format")
7787 (description
7788 "HDF5 is a data model, library and file format for storing and managing
7789 large amounts of data. This package provides a nearly feature complete,
7790 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
7791 functionality is added so that HDF5 objects behave very similar to their
7792 corresponding R counterparts.")
7793 (license license:asl2.0)))
7794
7795 (define-public r-itertools
7796 (package
7797 (name "r-itertools")
7798 (version "0.1-3")
7799 (source
7800 (origin
7801 (method url-fetch)
7802 (uri (cran-uri "itertools" version))
7803 (sha256
7804 (base32
7805 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
7806 (build-system r-build-system)
7807 (propagated-inputs
7808 `(("r-iterators" ,r-iterators)))
7809 (home-page "https://cran.r-project.org/web/packages/itertools/")
7810 (synopsis "Iterator tools")
7811 (description
7812 "This package provides various tools for creating iterators, many
7813 patterned after functions in the Python @code{itertools} module, and others
7814 patterned after functions in the snow package.")
7815 (license license:gpl2)))
7816
7817 (define-public r-polynom
7818 (package
7819 (name "r-polynom")
7820 (version "1.4-0")
7821 (source
7822 (origin
7823 (method url-fetch)
7824 (uri (cran-uri "polynom" version))
7825 (sha256
7826 (base32
7827 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
7828 (build-system r-build-system)
7829 (home-page "https://cran.r-project.org/web/packages/polynom/")
7830 (synopsis "Functions for univariate polynomial manipulations")
7831 (description
7832 "This package provides a collection of functions to implement a class for
7833 univariate polynomial manipulations.")
7834 (license license:gpl2)))
7835
7836 (define-public r-gbrd
7837 (package
7838 (name "r-gbrd")
7839 (version "0.4-11")
7840 (source
7841 (origin
7842 (method url-fetch)
7843 (uri (cran-uri "gbRd" version))
7844 (sha256
7845 (base32
7846 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
7847 (properties `((upstream-name . "gbRd")))
7848 (build-system r-build-system)
7849 (home-page "https://cran.r-project.org/web/packages/gbRd/")
7850 (synopsis "Utilities for processing Rd objects and files")
7851 (description
7852 "This package provides utilities for processing Rd objects and files.
7853 Extract argument descriptions and other parts of the help pages of
7854 functions.")
7855 (license license:gpl2+)))
7856
7857 (define-public r-rjags
7858 (package
7859 (name "r-rjags")
7860 (version "4-10")
7861 (source
7862 (origin
7863 (method url-fetch)
7864 (uri (cran-uri "rjags" version))
7865 (sha256
7866 (base32
7867 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
7868 (build-system r-build-system)
7869 (propagated-inputs
7870 `(("r-coda" ,r-coda)))
7871 (inputs
7872 `(("jags" ,jags)))
7873 (native-inputs
7874 `(("pkg-config" ,pkg-config)))
7875 (home-page "http://mcmc-jags.sourceforge.net")
7876 (synopsis "Bayesian graphical models using MCMC")
7877 (description
7878 "This package provides an R interface to the JAGS MCMC library. JAGS is
7879 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
7880 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
7881 (license license:gpl2)))
7882
7883 (define-public r-rbibutils
7884 (package
7885 (name "r-rbibutils")
7886 (version "2.0")
7887 (source
7888 (origin
7889 (method url-fetch)
7890 (uri (cran-uri "rbibutils" version))
7891 (sha256
7892 (base32
7893 "1vfg2188i4dyhrmvnwpsh2la8qkd4wkryz2fpj4cppi1wfz3ml83"))))
7894 (properties `((upstream-name . "rbibutils")))
7895 (build-system r-build-system)
7896 (home-page "https://geobosh.github.io/rbibutils/")
7897 (synopsis "Convert between bibliography formats")
7898 (description
7899 "This package converts between a number of bibliography formats,
7900 including BibTeX, BibLaTeX and Bibentry. It includes a port of the bibutils
7901 utilities and supports all bibliography formats and character encodings
7902 implemented in bibutils.")
7903 (license license:gpl2)))
7904
7905 (define-public r-rdpack
7906 (package
7907 (name "r-rdpack")
7908 (version "2.1.1")
7909 (source
7910 (origin
7911 (method url-fetch)
7912 (uri (cran-uri "Rdpack" version))
7913 (sha256
7914 (base32
7915 "11psw5yiamq0g7jc6fqn2wis565i60qgda4a5d09qi8fyzd6mnfb"))))
7916 (properties `((upstream-name . "Rdpack")))
7917 (build-system r-build-system)
7918 (propagated-inputs
7919 `(("r-rbibutils" ,r-rbibutils)))
7920 (home-page "https://github.com/GeoBosh/Rdpack")
7921 (synopsis "Update and manipulate Rd documentation objects")
7922 (description
7923 "This package provides functions for manipulation of R documentation
7924 objects, including functions @code{reprompt()} and @code{ereprompt()} for
7925 updating Rd documentation for functions, methods and classes; it also includes
7926 Rd macros for citations and import of references from bibtex files for use in
7927 Rd files and roxygen2 comments, as well as many functions for manipulation of
7928 references and Rd files.")
7929 (license license:gpl2+)))
7930
7931 (define-public r-officer
7932 (package
7933 (name "r-officer")
7934 (version "0.3.17")
7935 (source
7936 (origin
7937 (method url-fetch)
7938 (uri (cran-uri "officer" version))
7939 (sha256
7940 (base32
7941 "1apg0dh1zfhrqcbbmm8318l40gyjbqc2l9sdvwxx7qi8mzc1mqvw"))))
7942 (build-system r-build-system)
7943 (propagated-inputs
7944 `(("r-r6" ,r-r6)
7945 ("r-uuid" ,r-uuid)
7946 ("r-xml2" ,r-xml2)
7947 ("r-zip" ,r-zip)))
7948 (native-inputs
7949 `(("r-knitr" ,r-knitr)))
7950 (home-page "https://davidgohel.github.io/officer")
7951 (synopsis "Manipulation of Word and PowerPoint documents")
7952 (description
7953 "This package provides tools to access and manipulate Word and PowerPoint
7954 documents from R. The package focuses on tabular and graphical reporting from
7955 R; it also provides two functions that let users get document content into
7956 data objects. A set of functions lets add and remove images, tables and
7957 paragraphs of text in new or existing documents. When working with PowerPoint
7958 presentations, slides can be added or removed; shapes inside slides can also
7959 be added or removed. When working with Word documents, a cursor can be used
7960 to help insert or delete content at a specific location in the document.")
7961 (license license:gpl3)))
7962
7963 (define-public r-profilemodel
7964 (package
7965 (name "r-profilemodel")
7966 (version "0.6.1")
7967 (source
7968 (origin
7969 (method url-fetch)
7970 (uri (cran-uri "profileModel" version))
7971 (sha256
7972 (base32
7973 "01m5nb8cmq0aq555pxk2a99182si65hhmn68yn9nal2j3zl2bp4i"))))
7974 (properties `((upstream-name . "profileModel")))
7975 (build-system r-build-system)
7976 (home-page "https://github.com/ikosmidis/profileModel")
7977 (synopsis "Profiling inference functions for various model classes")
7978 (description
7979 "This package provides tools that can be used to calculate, evaluate,
7980 plot and use for inference the profiles of *arbitrary* inference functions for
7981 arbitrary @code{glm}-like fitted models with linear predictors. More information
7982 on the methods that are implemented can be found in Kosmidis (2008)
7983 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
7984 (license license:gpl2+)))
7985
7986 (define-public r-brglm
7987 (package
7988 (name "r-brglm")
7989 (version "0.7.1")
7990 (source
7991 (origin
7992 (method url-fetch)
7993 (uri (cran-uri "brglm" version))
7994 (sha256
7995 (base32
7996 "1v68ma1agwhxar76mfvdfkcnd5h4gmxiz8j491rhdsckg271j7sa"))))
7997 (properties `((upstream-name . "brglm")))
7998 (build-system r-build-system)
7999 (propagated-inputs
8000 `(("r-profilemodel" ,r-profilemodel)))
8001 (home-page "https://github.com/ikosmidis/brglm")
8002 (synopsis "Bias reduction in binomial-response generalized linear models")
8003 (description
8004 "Fit generalized linear models with binomial responses using either an
8005 adjusted-score approach to bias reduction or maximum penalized likelihood
8006 where penalization is by Jeffreys invariant prior. These procedures return
8007 estimates with improved frequentist properties (bias, mean squared error) that
8008 are always finite even in cases where the maximum likelihood estimates are
8009 infinite (data separation). Fitting takes place by fitting generalized linear
8010 models on iteratively updated pseudo-data. The interface is essentially the
8011 same as @code{glm}. More flexibility is provided by the fact that custom
8012 pseudo-data representations can be specified and used for model fitting.
8013 Functions are provided for the construction of confidence intervals for the
8014 reduced-bias estimates.")
8015 (license license:gpl2+)))
8016
8017 (define-public r-entropy
8018 (package
8019 (name "r-entropy")
8020 (version "1.2.1")
8021 (source
8022 (origin
8023 (method url-fetch)
8024 (uri (cran-uri "entropy" version))
8025 (sha256
8026 (base32
8027 "10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"))))
8028 (properties `((upstream-name . "entropy")))
8029 (build-system r-build-system)
8030 (home-page "https://www.strimmerlab.org/software/entropy/")
8031 (synopsis "Estimation of entropy, mutual information and related quantities")
8032 (description
8033 "This package implements various estimators of entropy, such as the
8034 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
8035 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
8036 estimator. It also offers an R interface to the NSB estimator. Furthermore,
8037 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
8038 mutual information, and chi-squared statistic of independence. In addition
8039 there are functions for discretizing continuous random variables.")
8040 (license license:gpl3+)))
8041
8042 (define-public r-abn
8043 (package
8044 (name "r-abn")
8045 (version "2.3-0")
8046 (source
8047 (origin
8048 (method url-fetch)
8049 (uri (cran-uri "abn" version))
8050 (sha256
8051 (base32
8052 "17vdrqm6qp5aijg00ah2imj3pqr6cl5r43hgg8dijbrbhznarci6"))))
8053 (build-system r-build-system)
8054 (inputs
8055 `(("gsl" ,gsl)))
8056 (propagated-inputs
8057 `(("r-lme4" ,r-lme4)
8058 ("r-nnet" ,r-nnet)
8059 ("r-rcpp" ,r-rcpp)
8060 ("r-rcpparmadillo" ,r-rcpparmadillo)
8061 ("r-rjags" ,r-rjags)))
8062 (home-page "https://r-bayesian-networks.org/")
8063 (synopsis "Modelling multivariate data with additive bayesian networks")
8064 (description
8065 "Bayesian network analysis is a form of probabilistic graphical models
8066 which derives from empirical data a directed acyclic graph, DAG, describing
8067 the dependency structure between random variables. An additive Bayesian
8068 network model consists of a form of a DAG where each node comprises a
8069 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
8070 equivalent to Bayesian multivariate regression using graphical modelling, they
8071 generalises the usual multivariable regression, GLM, to multiple dependent
8072 variables. This package provides routines to help determine optimal Bayesian
8073 network models for a given data set, where these models are used to identify
8074 statistical dependencies in messy, complex data.")
8075 (license license:gpl2+)))
8076
8077 (define-public r-acd
8078 (package
8079 (name "r-acd")
8080 (version "1.5.3")
8081 (source
8082 (origin
8083 (method url-fetch)
8084 (uri (cran-uri "ACD" version))
8085 (sha256
8086 (base32
8087 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
8088 (properties `((upstream-name . "ACD")))
8089 (build-system r-build-system)
8090 (home-page "https://cran.r-project.org/web/packages/ACD/")
8091 (synopsis "Categorical data analysis with complete or missing responses")
8092 (description
8093 "This package provides tools for categorical data analysis with complete
8094 or missing responses.")
8095 (license license:gpl2+)))
8096
8097 (define-public r-acdm
8098 (package
8099 (name "r-acdm")
8100 (version "1.0.4")
8101 (source
8102 (origin
8103 (method url-fetch)
8104 (uri (cran-uri "ACDm" version))
8105 (sha256
8106 (base32
8107 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
8108 (properties `((upstream-name . "ACDm")))
8109 (build-system r-build-system)
8110 (propagated-inputs
8111 `(("r-dplyr" ,r-dplyr)
8112 ("r-ggplot2" ,r-ggplot2)
8113 ("r-plyr" ,r-plyr)
8114 ("r-rsolnp" ,r-rsolnp)
8115 ("r-zoo" ,r-zoo)))
8116 (home-page "https://cran.r-project.org/web/packages/ACDm/")
8117 (synopsis "Tools for Autoregressive Conditional Duration Models")
8118 (description
8119 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
8120 and Russell, 1998) models. It creates trade, price or volume durations from
8121 transactions (tic) data, performs diurnal adjustments, fits various ACD models
8122 and tests them.")
8123 (license license:gpl2+)))
8124
8125 (define-public r-overlap
8126 (package
8127 (name "r-overlap")
8128 (version "0.3.3")
8129 (source
8130 (origin
8131 (method url-fetch)
8132 (uri (cran-uri "overlap" version))
8133 (sha256
8134 (base32
8135 "17cnr4qin1qy0df4k491267acna12gpbbps6w3gi8nccqxfrb1pd"))))
8136 (build-system r-build-system)
8137 (home-page "https://cran.r-project.org/web/packages/overlap/")
8138 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
8139 (description
8140 "This package provides functions to fit kernel density functions to data
8141 on temporal activity patterns of animals; estimate coefficients of overlapping
8142 of densities for two species; and calculate bootstrap estimates of confidence
8143 intervals.")
8144 (license license:gpl3+)))
8145
8146 (define-public r-snakecase
8147 (package
8148 (name "r-snakecase")
8149 (version "0.11.0")
8150 (source
8151 (origin
8152 (method url-fetch)
8153 (uri (cran-uri "snakecase" version))
8154 (sha256
8155 (base32
8156 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
8157 (build-system r-build-system)
8158 (propagated-inputs
8159 `(("r-stringi" ,r-stringi)
8160 ("r-stringr" ,r-stringr)))
8161 (home-page "https://github.com/Tazinho/snakecase")
8162 (synopsis "Convert strings into any case")
8163 (description
8164 "This package provides a consistent, flexible and easy to use tool to
8165 parse and convert strings into cases like snake or camel among others.")
8166 (license license:gpl3)))
8167
8168 (define-public r-prediction
8169 (package
8170 (name "r-prediction")
8171 (version "0.3.14")
8172 (source
8173 (origin
8174 (method url-fetch)
8175 (uri (cran-uri "prediction" version))
8176 (sha256
8177 (base32
8178 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
8179 (build-system r-build-system)
8180 (propagated-inputs
8181 `(("r-data-table" ,r-data-table)))
8182 (home-page "https://github.com/leeper/prediction")
8183 (synopsis "Tidy, type-safe prediction methods")
8184 (description
8185 "This package provides the @code{prediction()} function, a type-safe
8186 alternative to @code{predict()} that always returns a data frame. The package
8187 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
8188 from the @code{stats} package, as well as numerous other model classes from
8189 other add-on packages.")
8190 (license license:expat)))
8191
8192 (define-public r-insight
8193 (package
8194 (name "r-insight")
8195 (version "0.13.1")
8196 (source
8197 (origin
8198 (method url-fetch)
8199 (uri (cran-uri "insight" version))
8200 (sha256
8201 (base32
8202 "1la4yxzfl9fnknamnaziil6gvpdzl78z16lfzis9jgzg8r9q0y5l"))))
8203 (build-system r-build-system)
8204 (native-inputs
8205 `(("r-knitr" ,r-knitr)))
8206 (home-page "https://easystats.github.io/insight/")
8207 (synopsis "Easy access to model information for various model objects")
8208 (description
8209 "This package provides a tool to provide an easy, intuitive and
8210 consistent access to information contained in various R models, like model
8211 formulas, model terms, information about random effects, data that was used to
8212 fit the model or data from response variables. The package mainly revolves
8213 around two types of functions: Functions that find (the names of) information,
8214 starting with @code{find_}, and functions that get the underlying data,
8215 starting with @code{get_}. The package has a consistent syntax and works with
8216 many different model objects, where otherwise functions to access these
8217 information are missing.")
8218 (license license:gpl3)))
8219
8220 (define-public r-sjlabelled
8221 (package
8222 (name "r-sjlabelled")
8223 (version "1.1.7")
8224 (source
8225 (origin
8226 (method url-fetch)
8227 (uri (cran-uri "sjlabelled" version))
8228 (sha256
8229 (base32
8230 "0d3fsjd2gxchv8mlx9l5pf8xvkmx4pgvizam83f3qss07bmvpzwg"))))
8231 (build-system r-build-system)
8232 (propagated-inputs
8233 `(("r-insight" ,r-insight)))
8234 (native-inputs
8235 `(("r-knitr" ,r-knitr)))
8236 (home-page "https://github.com/strengejacke/sjlabelled")
8237 (synopsis "Labelled data utility functions")
8238 (description
8239 "This package provides a collection of functions dealing with labelled
8240 data, like reading and writing data between R and other statistical software
8241 packages. This includes easy ways to get, set or change value and variable
8242 label attributes, to convert labelled vectors into factors or numeric (and
8243 vice versa), or to deal with multiple declared missing values.")
8244 (license license:gpl3)))
8245
8246 (define-public r-sjmisc
8247 (package
8248 (name "r-sjmisc")
8249 (version "2.8.6")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (cran-uri "sjmisc" version))
8254 (sha256
8255 (base32
8256 "1nfrkv5jfnwb85blpv7yk7xac1myzi2c30bqcf7xicniknkjwycr"))))
8257 (build-system r-build-system)
8258 (propagated-inputs
8259 `(("r-dplyr" ,r-dplyr)
8260 ("r-insight" ,r-insight)
8261 ("r-magrittr" ,r-magrittr)
8262 ("r-purrr" ,r-purrr)
8263 ("r-rlang" ,r-rlang)
8264 ("r-sjlabelled" ,r-sjlabelled)
8265 ("r-tidyselect" ,r-tidyselect)))
8266 (native-inputs
8267 `(("r-knitr" ,r-knitr)))
8268 (home-page "https://github.com/strengejacke/sjmisc")
8269 (synopsis "Data and variable transformation functions")
8270 (description
8271 "This package is a collection of miscellaneous utility functions,
8272 supporting data transformation tasks like recoding, dichotomizing or grouping
8273 variables, setting and replacing missing values. The data transformation
8274 functions also support labelled data, and all integrate seamlessly into a
8275 tidyverse workflow.")
8276 (license license:gpl3)))
8277
8278 (define-public r-nortest
8279 (package
8280 (name "r-nortest")
8281 (version "1.0-4")
8282 (source
8283 (origin
8284 (method url-fetch)
8285 (uri (cran-uri "nortest" version))
8286 (sha256
8287 (base32
8288 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
8289 (build-system r-build-system)
8290 (home-page "https://cran.r-project.org/web/packages/nortest/")
8291 (synopsis "Tests for normality")
8292 (description
8293 "This package provides five omnibus tests for testing the composite
8294 hypothesis of normality.")
8295 (license license:gpl2+)))
8296
8297 (define-public r-moonbook
8298 (package
8299 (name "r-moonbook")
8300 (version "0.2.4")
8301 (source
8302 (origin
8303 (method url-fetch)
8304 (uri (cran-uri "moonBook" version))
8305 (sha256
8306 (base32
8307 "0z78pzc8sr2g19xjdd9cmai4iqyifmh79gj8x40ddww6a27dalry"))))
8308 (properties `((upstream-name . "moonBook")))
8309 (build-system r-build-system)
8310 (propagated-inputs
8311 `(("r-magrittr" ,r-magrittr)
8312 ("r-nortest" ,r-nortest)
8313 ("r-sjmisc" ,r-sjmisc)
8314 ("r-stringr" ,r-stringr)
8315 ("r-survival" ,r-survival)
8316 ("r-ztable" ,r-ztable)))
8317 (native-inputs
8318 `(("r-knitr" ,r-knitr)))
8319 (home-page "https://github.com/cardiomoon/moonBook")
8320 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
8321 (description
8322 "This package provides several analysis-related functions for the book
8323 entitled \"R statistics and graph for medical articles\" (written in Korean),
8324 version 1, by Keon-Woong Moon with Korean demographic data with several plot
8325 functions.")
8326 (license license:gpl2)))
8327
8328 (define-public r-flextable
8329 (package
8330 (name "r-flextable")
8331 (version "0.6.3")
8332 (source
8333 (origin
8334 (method url-fetch)
8335 (uri (cran-uri "flextable" version))
8336 (sha256
8337 (base32
8338 "0as80m19lvajc0vzllq9d9p63zglsm2ph7vdfg3jgk90jp8j76dg"))))
8339 (build-system r-build-system)
8340 (propagated-inputs
8341 `(("r-base64enc" ,r-base64enc)
8342 ("r-data-table" ,r-data-table)
8343 ("r-gdtools" ,r-gdtools)
8344 ("r-htmltools" ,r-htmltools)
8345 ("r-knitr" ,r-knitr)
8346 ("r-officer" ,r-officer)
8347 ("r-rlang" ,r-rlang)
8348 ("r-rmarkdown" ,r-rmarkdown)
8349 ("r-uuid" ,r-uuid)
8350 ("r-xml2" ,r-xml2)))
8351 (native-inputs
8352 `(("r-knitr" ,r-knitr)))
8353 (home-page "https://davidgohel.github.io/flextable")
8354 (synopsis "Functions for tabular reporting")
8355 (description
8356 "This package provides tools to create pretty tables for HTML documents
8357 and other formats. Functions are provided to let users create tables, modify
8358 and format their content. It extends the @code{officer} package and can be
8359 used within R markdown documents when rendering to HTML and to Word
8360 documents.")
8361 (license license:gpl3)))
8362
8363 (define-public r-writexl
8364 (package
8365 (name "r-writexl")
8366 (version "1.3.1")
8367 (source
8368 (origin
8369 (method url-fetch)
8370 (uri (cran-uri "writexl" version))
8371 (sha256
8372 (base32
8373 "1njdhvh8605wd2j8glrbxfyc36p2n88prpq080jn44s9lgfmbgsb"))))
8374 (build-system r-build-system)
8375 (inputs `(("zlib" ,zlib)))
8376 (home-page "https://github.com/ropensci/writexl")
8377 (synopsis "Export data frames to xlsx format")
8378 (description
8379 "This package provides a data frame to xlsx exporter based on
8380 libxlsxwriter.")
8381 (license license:bsd-2)))
8382
8383 (define-public r-biasedurn
8384 (package
8385 (name "r-biasedurn")
8386 (version "1.07")
8387 (source
8388 (origin
8389 (method url-fetch)
8390 (uri (cran-uri "BiasedUrn" version))
8391 (sha256
8392 (base32
8393 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
8394 (properties `((upstream-name . "BiasedUrn")))
8395 (build-system r-build-system)
8396 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
8397 (synopsis "Biased Urn model distributions")
8398 (description
8399 "This package provides statistical models of biased sampling in the form
8400 of univariate and multivariate noncentral hypergeometric distributions,
8401 including Wallenius' noncentral hypergeometric distribution and Fisher's
8402 noncentral hypergeometric distribution (also called extended hypergeometric
8403 distribution).")
8404 (license license:gpl3)))
8405
8406 (define-public r-goplot
8407 (package
8408 (name "r-goplot")
8409 (version "1.0.2")
8410 (source
8411 (origin
8412 (method url-fetch)
8413 (uri (cran-uri "GOplot" version))
8414 (sha256
8415 (base32
8416 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
8417 (properties `((upstream-name . "GOplot")))
8418 (build-system r-build-system)
8419 (propagated-inputs
8420 `(("r-ggdendro" ,r-ggdendro)
8421 ("r-ggplot2" ,r-ggplot2)
8422 ("r-gridextra" ,r-gridextra)
8423 ("r-rcolorbrewer" ,r-rcolorbrewer)))
8424 (home-page "https://github.com/wencke/wencke.github.io")
8425 (synopsis "Visualization of functional analysis data")
8426 (description
8427 "This package provides an implementation of multilayered visualizations
8428 for enhanced graphical representation of functional analysis data. It
8429 combines and integrates omics data derived from expression and functional
8430 annotation enrichment analyses. Its plotting functions have been developed
8431 with an hierarchical structure in mind: starting from a general overview to
8432 identify the most enriched categories (modified bar plot, bubble plot) to a
8433 more detailed one displaying different types of relevant information for the
8434 molecules in a given set of categories (circle plot, chord plot, cluster plot,
8435 Venn diagram, heatmap).")
8436 (license license:gpl2)))
8437
8438 (define-public r-getopt
8439 (package
8440 (name "r-getopt")
8441 (version "1.20.3")
8442 (source
8443 (origin
8444 (method url-fetch)
8445 (uri (cran-uri "getopt" version))
8446 (sha256
8447 (base32
8448 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
8449 (build-system r-build-system)
8450 (home-page "https://github.com/trevorld/getopt")
8451 (synopsis "Command-line option processor for R")
8452 (description
8453 "This package is designed to be used with Rscript to write shebang
8454 scripts that accept short and long options. Many users will prefer to
8455 use the packages @code{optparse} or @code{argparse} which add extra
8456 features like automatically generated help options and usage texts,
8457 support for default values, positional argument support, etc.")
8458 (license license:gpl2+)))
8459
8460 (define-public r-findpython
8461 (package
8462 (name "r-findpython")
8463 (version "1.0.7")
8464 (source
8465 (origin
8466 (method url-fetch)
8467 (uri (cran-uri "findpython" version))
8468 (sha256
8469 (base32
8470 "0jf10jpqla90x03kl3k77gnd255zmw9rvr8d724vb17cqawh9yar"))))
8471 (build-system r-build-system)
8472 (home-page "https://github.com/trevorld/findpython")
8473 (synopsis "Functions to find an acceptable Python binary")
8474 (description
8475 "This package was designed to find an acceptable Python binary that
8476 matches version and feature constraints.")
8477 (license license:expat)))
8478
8479 ;; This in not the same as "r-argparser"
8480 (define-public r-argparse
8481 (package
8482 (name "r-argparse")
8483 (version "2.0.3")
8484 (source
8485 (origin
8486 (method url-fetch)
8487 (uri (cran-uri "argparse" version))
8488 (sha256
8489 (base32
8490 "1c2r417m1dxk1jhcggv3g4zax5a59k9rqs9jcs6xy2pa2333jqfj"))))
8491 (build-system r-build-system)
8492 (inputs `(("python" ,python)))
8493 (propagated-inputs
8494 `(("r-findpython" ,r-findpython)
8495 ("r-jsonlite" ,r-jsonlite)
8496 ("r-r6" ,r-r6)))
8497 (native-inputs
8498 `(("r-knitr" ,r-knitr)))
8499 (home-page "https://github.com/trevorld/argparse")
8500 (synopsis "Command line optional and positional argument parser")
8501 (description
8502 "This package provides a command line parser to be used with Rscript to
8503 write shebang scripts that gracefully accept positional and optional arguments
8504 and automatically generate usage notices.")
8505 (license license:gpl2+)))
8506
8507 (define-public r-hash
8508 (package
8509 (name "r-hash")
8510 (version "2.2.6.1")
8511 (source
8512 (origin
8513 (method url-fetch)
8514 (uri (cran-uri "hash" version))
8515 (sha256
8516 (base32
8517 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
8518 (build-system r-build-system)
8519 (home-page "https://cran.r-project.org/web/packages/hash/")
8520 (synopsis "Implementation of hash/associated arrays/dictionaries")
8521 (description
8522 "This package implements a data structure similar to hashes in Perl and
8523 dictionaries in Python but with a purposefully R flavor. For objects of
8524 appreciable size, access using hashes outperforms native named lists and
8525 vectors.")
8526 (license license:gpl2+)))
8527
8528 (define-public r-orddom
8529 (package
8530 (name "r-orddom")
8531 (version "3.1")
8532 (source
8533 (origin
8534 (method url-fetch)
8535 (uri (cran-uri "orddom" version))
8536 (sha256
8537 (base32
8538 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
8539 (build-system r-build-system)
8540 (propagated-inputs `(("r-psych" ,r-psych)))
8541 (home-page "https://cran.r-project.org/web/packages/orddom/")
8542 (synopsis "Ordinal dominance statistics")
8543 (description
8544 "This package provides tools to compute ordinal, statistics and effect
8545 sizes as an alternative to mean comparison: Cliff's delta or success rate
8546 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
8547 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
8548 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
8549 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
8550 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
8551 Group (Non-)Overlap considerations.")
8552 (license license:gpl2)))
8553
8554 (define-public r-deriv
8555 (package
8556 (name "r-deriv")
8557 (version "4.1.3")
8558 (source
8559 (origin
8560 (method url-fetch)
8561 (uri (cran-uri "Deriv" version))
8562 (sha256
8563 (base32
8564 "130g3mv0z9sqs6y23a0a94512iiw05yr6fp378vhdxxbignzbnyv"))))
8565 (properties `((upstream-name . "Deriv")))
8566 (build-system r-build-system)
8567 (home-page "https://cran.r-project.org/web/packages/Deriv")
8568 (synopsis "Symbolic differentiation")
8569 (description
8570 "This package provides an R-based solution for symbolic differentiation.
8571 It admits user-defined functions as well as function substitution in arguments
8572 of functions to be differentiated. Some symbolic simplification is part of
8573 the work.")
8574 (license license:gpl3+)))
8575
8576 (define-public r-doby
8577 (package
8578 (name "r-doby")
8579 (version "4.6.9")
8580 (source
8581 (origin
8582 (method url-fetch)
8583 (uri (cran-uri "doBy" version))
8584 (sha256
8585 (base32
8586 "02f545md5yhbpp3wb3q2c8zabqwgf02555r5c6g7znab5zjbyr00"))))
8587 (properties `((upstream-name . "doBy")))
8588 (build-system r-build-system)
8589 (propagated-inputs
8590 `(("r-broom" ,r-broom)
8591 ("r-deriv" ,r-deriv)
8592 ("r-dplyr" ,r-dplyr)
8593 ("r-ggplot2" ,r-ggplot2)
8594 ("r-magrittr" ,r-magrittr)
8595 ("r-mass" ,r-mass)
8596 ("r-matrix" ,r-matrix)
8597 ("r-pbkrtest" ,r-pbkrtest)
8598 ("r-tibble" ,r-tibble)))
8599 (native-inputs
8600 `(("r-knitr" ,r-knitr)))
8601 (home-page "https://people.math.aau.dk/~sorenh/software/doBy/")
8602 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
8603 (description
8604 "This package contains:
8605
8606 @itemize
8607 @item facilities for working with grouped data: @code{do}
8608 something to data stratified @code{by} some variables.
8609 @item implementations of least-squares means, general linear contrasts, and
8610 @item miscellaneous other utilities.
8611 @end itemize\n")
8612 (license license:gpl2+)))
8613
8614 (define-public r-refgenome
8615 (package
8616 (name "r-refgenome")
8617 (version "1.7.7")
8618 (source
8619 (origin
8620 (method url-fetch)
8621 (uri (cran-uri "refGenome" version))
8622 (sha256
8623 (base32
8624 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
8625 (properties `((upstream-name . "refGenome")))
8626 (build-system r-build-system)
8627 (propagated-inputs
8628 `(("r-dbi" ,r-dbi)
8629 ("r-doby" ,r-doby)
8630 ("r-rsqlite" ,r-rsqlite)))
8631 (home-page "https://cran.r-project.org/web/packages/refGenome/")
8632 (synopsis
8633 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
8634 (description
8635 "This package contains functionality for importing and managing of
8636 downloaded genome annotation data from the Ensembl genome browser (European
8637 Bioinformatics Institute) and from the UCSC genome browser (University of
8638 California, Santa Cruz) and annotation routines for genomic positions and
8639 splice site positions.")
8640 (license license:gpl2)))
8641
8642 (define-public r-basix
8643 (package
8644 (name "r-basix")
8645 (version "1.1")
8646 (source
8647 (origin
8648 (method url-fetch)
8649 (uri (cran-uri "BASIX" version))
8650 (sha256
8651 (base32
8652 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
8653 (properties `((upstream-name . "BASIX")))
8654 (build-system r-build-system)
8655 (home-page "https://cran.r-project.org/web/packages/BASIX/")
8656 (synopsis "Efficient C/C++ toolset for R")
8657 (description
8658 "BASIX provides some efficient C/C++ implementations of native R
8659 procedures to speed up calculations in R.")
8660 (license license:gpl2)))
8661
8662 (define-public r-blockfest
8663 (package
8664 (name "r-blockfest")
8665 (version "1.8")
8666 (source
8667 (origin
8668 (method url-fetch)
8669 (uri (cran-uri "BlockFeST" version))
8670 (sha256
8671 (base32
8672 "12cbrmgqszlj729zrn9d1d7drbr0iay43knnmrzcxs6v7lfszsx5"))))
8673 (properties `((upstream-name . "BlockFeST")))
8674 (build-system r-build-system)
8675 (propagated-inputs `(("r-basix" ,r-basix)))
8676 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
8677 (synopsis "Bayesian calculation of region-specific fixation index")
8678 (description
8679 "This package provides an R implementation of an extension of the
8680 BayeScan software for codominant markers, adding the option to group
8681 individual SNPs into pre-defined blocks. A typical application of this new
8682 approach is the identification of genomic regions, genes, or gene sets
8683 containing one or more SNPs that evolved under directional selection.")
8684 (license license:gpl2)))
8685
8686 (define-public r-proc
8687 (package
8688 (name "r-proc")
8689 (version "1.17.0.1")
8690 (source
8691 (origin
8692 (method url-fetch)
8693 (uri (cran-uri "pROC" version))
8694 (sha256
8695 (base32
8696 "1gd6a47d6bcfd237s3g7r9rws8x2sg7zrvq5k6clpc41zdpp4712"))))
8697 (properties `((upstream-name . "pROC")))
8698 (build-system r-build-system)
8699 (propagated-inputs
8700 `(("r-plyr" ,r-plyr)
8701 ("r-rcpp" ,r-rcpp)))
8702 (home-page "https://web.expasy.org/pROC/")
8703 (synopsis "Display and analyze ROC curves")
8704 (description
8705 "This package provides tools for visualizing, smoothing and comparing
8706 receiver operating characteristic (ROC curves). The area under the
8707 curve (AUC) can be compared with statistical tests based on U-statistics or
8708 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
8709 (license license:gpl3+)))
8710
8711 (define-public r-rootsolve
8712 (package
8713 (name "r-rootsolve")
8714 (version "1.8.2.1")
8715 (source
8716 (origin
8717 (method url-fetch)
8718 (uri (cran-uri "rootSolve" version))
8719 (sha256
8720 (base32
8721 "0c9hhgq1pgqdg80a6n2ssfbj5nyaf97y4iiya7j7l6b34qc53128"))))
8722 (properties `((upstream-name . "rootSolve")))
8723 (build-system r-build-system)
8724 (native-inputs `(("gfortran" ,gfortran)))
8725 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
8726 (synopsis "Tools for the analysis of ordinary differential equations")
8727 (description
8728 "This package provides routines to find the root of nonlinear functions,
8729 and to perform steady-state and equilibrium analysis of @dfn{ordinary
8730 differential equations} (ODE). It includes routines that:
8731
8732 @enumerate
8733 @item generate gradient and jacobian matrices (full and banded),
8734 @item find roots of non-linear equations by the Newton-Raphson method,
8735 @item estimate steady-state conditions of a system of (differential) equations
8736 in full, banded or sparse form, using the Newton-Raphson method, or by
8737 dynamically running,
8738 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
8739 and 3-D partial differential equations, that have been converted to ordinary
8740 differential equations by numerical differencing (using the method-of-lines
8741 approach).
8742 @end enumerate\n")
8743 (license license:gpl2+)))
8744
8745 (define-public r-abcanalysis
8746 (package
8747 (name "r-abcanalysis")
8748 (version "1.2.1")
8749 (source
8750 (origin
8751 (method url-fetch)
8752 (uri (cran-uri "ABCanalysis" version))
8753 (sha256
8754 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
8755 (properties `((upstream-name . "ABCanalysis")))
8756 (build-system r-build-system)
8757 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
8758 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
8759 (synopsis "Computed ABC Analysis")
8760 (description
8761 "Multivariate data sets often differ in several factors or derived statistical
8762 parameters, which have to be selected for a valid interpretation. Basing this
8763 selection on traditional statistical limits leads occasionally to the perception
8764 of losing information from a data set. This package provides tools to calculate
8765 these limits on the basis of the mathematical properties of the distribution of
8766 the analyzed items.")
8767 (license license:gpl3)))
8768
8769 (define-public r-slam
8770 (package
8771 (name "r-slam")
8772 (version "0.1-48")
8773 (source
8774 (origin
8775 (method url-fetch)
8776 (uri (cran-uri "slam" version))
8777 (sha256
8778 (base32 "1ppsvkph4v1dffxgp12a4wnr9arj7pkmh4qv0and3f6nbz9k42qa"))))
8779 (build-system r-build-system)
8780 (home-page "https://cran.r-project.org/web/packages/slam/")
8781 (synopsis "Sparse lightweight arrays and matrices")
8782 (description
8783 "This package contains data structures and algorithms for sparse arrays and matrices,
8784 based on index arrays and simple triplet representations, respectively.")
8785 (license license:gpl2)))
8786
8787 (define-public r-manipulatewidget
8788 (package
8789 (name "r-manipulatewidget")
8790 (version "0.10.1")
8791 (source
8792 (origin
8793 (method url-fetch)
8794 (uri (cran-uri "manipulateWidget" version))
8795 (sha256
8796 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
8797 (properties
8798 `((upstream-name . "manipulateWidget")))
8799 (build-system r-build-system)
8800 (propagated-inputs
8801 `(("r-base64enc" ,r-base64enc)
8802 ("r-codetools" ,r-codetools)
8803 ("r-htmltools" ,r-htmltools)
8804 ("r-htmlwidgets" ,r-htmlwidgets)
8805 ("r-knitr" ,r-knitr)
8806 ("r-miniui" ,r-miniui)
8807 ("r-shiny" ,r-shiny)
8808 ("r-webshot" ,r-webshot)))
8809 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
8810 (synopsis "Add even more interactivity to interactive charts")
8811 (description
8812 "This package lets you create in just a few lines of R code a nice user interface to
8813 modify the data or the graphical parameters of one or multiple interactive
8814 charts. It is useful to quickly explore visually some data or for package
8815 developers to generate user interfaces easy to maintain.")
8816 (license license:gpl2+)))
8817
8818 (define-public r-a3
8819 (package
8820 (name "r-a3")
8821 (version "1.0.0")
8822 (source
8823 (origin
8824 (method url-fetch)
8825 (uri (cran-uri "A3" version))
8826 (sha256
8827 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
8828 (properties `((upstream-name . "A3")))
8829 (build-system r-build-system)
8830 (propagated-inputs
8831 `(("r-pbapply" ,r-pbapply)
8832 ("r-xtable" ,r-xtable)))
8833 (home-page "https://cran.r-project.org/web/packages/A3/")
8834 (synopsis "Error metrics for predictive models")
8835 (description
8836 "This package supplies tools for tabulating and analyzing the results of predictive
8837 models. The methods employed are applicable to virtually any predictive model
8838 and make comparisons between different methodologies straightforward.")
8839 (license license:gpl2+)))
8840
8841 (define-public r-infotheo
8842 (package
8843 (name "r-infotheo")
8844 (version "1.2.0")
8845 (source
8846 (origin
8847 (method url-fetch)
8848 (uri (cran-uri "infotheo" version))
8849 (sha256
8850 (base32
8851 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
8852 (build-system r-build-system)
8853 (home-page "http://homepage.meyerp.com/software")
8854 (synopsis "Information-theoretic measures")
8855 (description
8856 "This package implements various measures of information theory based on
8857 several entropy estimators.")
8858 (license license:gpl3+)))
8859
8860 (define-public r-abcoptim
8861 (package
8862 (name "r-abcoptim")
8863 (version "0.15.0")
8864 (source
8865 (origin
8866 (method url-fetch)
8867 (uri (cran-uri "ABCoptim" version))
8868 (sha256
8869 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
8870 (properties `((upstream-name . "ABCoptim")))
8871 (build-system r-build-system)
8872 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8873 (home-page "https://github.com/gvegayon/ABCoptim/")
8874 (synopsis "Optimization of Artificial Bee Colony algorithm")
8875 (description
8876 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
8877 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
8878 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
8879 algorithms, and uses only common control parameters such as colony size and
8880 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
8881 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
8882 This version is a work-in-progress and is written in R code.")
8883 (license license:expat)))
8884
8885 (define-public r-abcp2
8886 (package
8887 (name "r-abcp2")
8888 (version "1.2")
8889 (source
8890 (origin
8891 (method url-fetch)
8892 (uri (cran-uri "ABCp2" version))
8893 (sha256
8894 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
8895 (properties `((upstream-name . "ABCp2")))
8896 (build-system r-build-system)
8897 (propagated-inputs `(("r-mass" ,r-mass)))
8898 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
8899 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
8900 (description
8901 "This package tests the goodness of fit of a distribution of offspring to the Normal,
8902 Poisson, and Gamma distribution and estimates the proportional paternity of the
8903 second male (P2) based on the best fit distribution.")
8904 (license license:gpl2)))
8905
8906 (define-public r-abcrf
8907 (package
8908 (name "r-abcrf")
8909 (version "1.8.1")
8910 (source
8911 (origin
8912 (method url-fetch)
8913 (uri (cran-uri "abcrf" version))
8914 (sha256
8915 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
8916 (build-system r-build-system)
8917 (propagated-inputs
8918 `(("r-doparallel" ,r-doparallel)
8919 ("r-foreach" ,r-foreach)
8920 ("r-mass" ,r-mass)
8921 ("r-matrixstats" ,r-matrixstats)
8922 ("r-ranger" ,r-ranger)
8923 ("r-rcpp" ,r-rcpp)
8924 ("r-rcpparmadillo" ,r-rcpparmadillo)
8925 ("r-readr" ,r-readr)
8926 ("r-stringr" ,r-stringr)))
8927 (home-page "https://cran.r-project.org/web/packages/abcrf/")
8928 (synopsis "Approximate bayesian computation via random forests")
8929 (description
8930 "This package performs approximate bayesian computation (ABC) model choice and
8931 parameter inference via random forests. This machine learning tool named random
8932 forests (RF) can conduct selection among the highly complex models covered by
8933 ABC algorithms.")
8934 (license license:gpl2+)))
8935
8936 (define-public r-abctools
8937 (package
8938 (name "r-abctools")
8939 (version "1.1.3")
8940 (source
8941 (origin
8942 (method url-fetch)
8943 (uri (cran-uri "abctools" version))
8944 (sha256
8945 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
8946 (build-system r-build-system)
8947 (propagated-inputs
8948 `(("r-abc" ,r-abc)
8949 ("r-abind" ,r-abind)
8950 ("r-hmisc" ,r-hmisc)
8951 ("r-plyr" ,r-plyr)))
8952 (home-page "https://github.com/dennisprangle/abctools/")
8953 (synopsis "Tools for ABC analyses")
8954 (description
8955 "This @code{r-abctools} package provides tools for approximate Bayesian computation
8956 including summary statistic selection and assessing coverage. This includes
8957 recent dimension reduction algorithms to tune the choice of summary statistics,
8958 and coverage methods to tune the choice of threshold.")
8959 (license license:gpl2+)))
8960
8961 (define-public r-ggstance
8962 (package
8963 (name "r-ggstance")
8964 (version "0.3.5")
8965 (source
8966 (origin
8967 (method url-fetch)
8968 (uri (cran-uri "ggstance" version))
8969 (sha256
8970 (base32 "0jz9vvnmcc6a38n8nzr458r65sna23bgn5r8mxdhzdlyqibihr7d"))))
8971 (build-system r-build-system)
8972 (propagated-inputs
8973 `(("r-ggplot2" ,r-ggplot2)
8974 ("r-plyr" ,r-plyr)
8975 ("r-rlang" ,r-rlang)
8976 ("r-withr" ,r-withr)))
8977 (home-page "https://cran.r-project.org/web/packages/ggstance/")
8978 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
8979 (description
8980 "This package is a @code{r-ggplot2} extension that provides flipped components:
8981 @enumerate
8982 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
8983 @item vertical versions of @code{r-ggplot2} positions.
8984 @end enumerate")
8985 (license license:gpl3)))
8986
8987 (define-public r-mosaiccore
8988 (package
8989 (name "r-mosaiccore")
8990 (version "0.9.0")
8991 (source
8992 (origin
8993 (method url-fetch)
8994 (uri (cran-uri "mosaicCore" version))
8995 (sha256
8996 (base32 "1h3ixzna4xy42rdnd89jj0v9q0riy3fnkd33z6l5c0zaidzm58fz"))))
8997 (properties `((upstream-name . "mosaicCore")))
8998 (build-system r-build-system)
8999 (propagated-inputs
9000 `(("r-dplyr" ,r-dplyr)
9001 ("r-mass" ,r-mass)
9002 ("r-rlang" ,r-rlang)
9003 ("r-tidyr" ,r-tidyr)))
9004 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
9005 (synopsis "Common utilities for mosaic family packages")
9006 (description
9007 "Common utilities used in other Mosaic family packages are collected here.")
9008 (license license:gpl2+)))
9009
9010 (define-public r-labelled
9011 (package
9012 (name "r-labelled")
9013 (version "2.8.0")
9014 (source
9015 (origin
9016 (method url-fetch)
9017 (uri (cran-uri "labelled" version))
9018 (sha256
9019 (base32
9020 "0fs8fhmk9j2nv2j87mpkmm0clz34f8kybnzn6pzqpcbwk0i2pcwg"))))
9021 (properties `((upstream-name . "labelled")))
9022 (build-system r-build-system)
9023 (propagated-inputs
9024 `(("r-dplyr" ,r-dplyr)
9025 ("r-haven" ,r-haven)
9026 ("r-lifecycle" ,r-lifecycle)
9027 ("r-rlang" ,r-rlang)
9028 ("r-stringr" ,r-stringr)
9029 ("r-tidyr" ,r-tidyr)
9030 ("r-vctrs" ,r-vctrs)))
9031 (native-inputs
9032 `(("r-knitr" ,r-knitr)))
9033 (home-page "http://larmarange.github.io/labelled/")
9034 (synopsis "Manipulating labelled data")
9035 (description
9036 "This package provides useful functions to deal with the
9037 @code{haven_labelled} and @code{haven_labelled_spss} classes introduced by the
9038 haven package. ")
9039 (license license:gpl3)))
9040
9041 (define-public r-ggformula
9042 (package
9043 (name "r-ggformula")
9044 (version "0.10.1")
9045 (source
9046 (origin
9047 (method url-fetch)
9048 (uri (cran-uri "ggformula" version))
9049 (sha256
9050 (base32 "1ph5jd8svk8hmshi894vmmpq3zwgdmf4yn3gmdlkad68z8jynhsp"))))
9051 (build-system r-build-system)
9052 (propagated-inputs
9053 `(("r-ggforce" ,r-ggforce)
9054 ("r-ggplot2" ,r-ggplot2)
9055 ("r-ggridges" ,r-ggridges)
9056 ("r-ggstance" ,r-ggstance)
9057 ("r-labelled" ,r-labelled)
9058 ("r-magrittr" ,r-magrittr)
9059 ("r-mosaiccore" ,r-mosaiccore)
9060 ("r-rlang" ,r-rlang)
9061 ("r-scales" ,r-scales)
9062 ("r-stringr" ,r-stringr)
9063 ("r-tibble" ,r-tibble)))
9064 (native-inputs
9065 `(("r-knitr" ,r-knitr)))
9066 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
9067 (synopsis "Formula interface for the @code{r-ggplot2}")
9068 (description
9069 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
9070 gf_density(), and so on, bring the formula interface to ggplot(). This captures
9071 and extends the excellent simplicity of the lattice-graphics formula interface,
9072 while providing the intuitive capabilities of @code{r-ggplot2}.")
9073 (license license:expat)))
9074
9075 (define-public r-mosaicdata
9076 (package
9077 (name "r-mosaicdata")
9078 (version "0.20.2")
9079 (source
9080 (origin
9081 (method url-fetch)
9082 (uri (cran-uri "mosaicData" version))
9083 (sha256
9084 (base32 "0h3f5fgzkzjfgf3ml0qa5j52921y6wy6jgggxmhs31bs8fd4srg4"))))
9085 (properties `((upstream-name . "mosaicData")))
9086 (build-system r-build-system)
9087 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
9088 (synopsis "Data sets for project Mosaic")
9089 (description
9090 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
9091 used to teach mathematics, statistics, computation and modeling.")
9092 (license license:gpl2+)))
9093
9094 (define-public r-raster
9095 (package
9096 (name "r-raster")
9097 (version "3.4-5")
9098 (source
9099 (origin
9100 (method url-fetch)
9101 (uri (cran-uri "raster" version))
9102 (sha256
9103 (base32
9104 "19g4chd0nyhnz6hc2j0v9ahjcgz64vvja4y3mrj1pfis1dwhsqn6"))))
9105 (build-system r-build-system)
9106 (propagated-inputs
9107 `(("r-rcpp" ,r-rcpp)
9108 ("r-sp" ,r-sp)))
9109 (home-page "https://www.rspatial.org/")
9110 (synopsis "Geographic data analysis and modeling")
9111 (description
9112 "The package implements basic and high-level functions for reading,
9113 writing, manipulating, analyzing and modeling of gridded spatial data.
9114 Processing of very large files is supported.")
9115 (license license:gpl3+)))
9116
9117 (define-public r-mosaic
9118 (package
9119 (name "r-mosaic")
9120 (version "1.4.0")
9121 (source
9122 (origin
9123 (method url-fetch)
9124 (uri (cran-uri "mosaic" version))
9125 (sha256
9126 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
9127 (build-system r-build-system)
9128 (propagated-inputs
9129 `(("r-broom" ,r-broom)
9130 ("r-dplyr" ,r-dplyr)
9131 ("r-ggdendro" ,r-ggdendro)
9132 ("r-ggformula" ,r-ggformula)
9133 ("r-ggplot2" ,r-ggplot2)
9134 ("r-ggrepel" ,r-ggrepel)
9135 ("r-glue" ,r-glue)
9136 ("r-gridextra" ,r-gridextra)
9137 ("r-lattice" ,r-lattice)
9138 ("r-latticeextra" ,r-latticeextra)
9139 ("r-lazyeval" ,r-lazyeval)
9140 ("r-mass" ,r-mass)
9141 ("r-matrix" ,r-matrix)
9142 ("r-mosaiccore" ,r-mosaiccore)
9143 ("r-mosaicdata" ,r-mosaicdata)
9144 ("r-readr" ,r-readr)
9145 ("r-tidyr" ,r-tidyr)))
9146 (native-inputs
9147 `(("r-knitr" ,r-knitr)))
9148 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
9149 (synopsis "Mathematics, statistics, and computation teaching utilities")
9150 (description
9151 "This package contain data sets and utilities from
9152 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
9153 statistics, computation and modeling. Project MOSAIC is a community of
9154 educators working to tie together aspects of quantitative work that students
9155 in science, technology, engineering and mathematics will need in their
9156 professional lives, but which are usually taught in isolation, if at all.")
9157 (license license:gpl2+)))
9158
9159 (define-public r-abd
9160 (package
9161 (name "r-abd")
9162 (version "0.2-8")
9163 (source
9164 (origin
9165 (method url-fetch)
9166 (uri (cran-uri "abd" version))
9167 (sha256
9168 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
9169 (build-system r-build-system)
9170 (propagated-inputs
9171 `(("r-lattice" ,r-lattice)
9172 ("r-mosaic" ,r-mosaic)
9173 ("r-nlme" ,r-nlme)))
9174 (home-page "https://cran.r-project.org/web/packages/abd/")
9175 (synopsis "Analysis of biological data")
9176 (description
9177 "The @code{r-abd} package contains data sets and sample code for the Analysis of
9178 biological data by Michael Whitlock and Dolph Schluter.")
9179 (license license:gpl2)))
9180
9181 (define-public r-svgui
9182 (package
9183 (name "r-svgui")
9184 (version "1.0.0")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (cran-uri "svGUI" version))
9189 (sha256
9190 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
9191 (properties `((upstream-name . "svGUI")))
9192 (build-system r-build-system)
9193 (home-page "https://github.com/SciViews/svGUI/")
9194 (synopsis "Functions for managing GUI clients in R")
9195 (description
9196 "The SciViews @code{svGUI} package eases the management of Graphical User
9197 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
9198 centralizes info about GUI elements currently used, and it dispatches GUI
9199 calls to the particular toolkits in use in function of the context.")
9200 (license license:gpl2)))
9201
9202 (define-public r-svdialogs
9203 (package
9204 (name "r-svdialogs")
9205 (version "1.0.0")
9206 (source
9207 (origin
9208 (method url-fetch)
9209 (uri (cran-uri "svDialogs" version))
9210 (sha256
9211 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
9212 (properties `((upstream-name . "svDialogs")))
9213 (build-system r-build-system)
9214 (inputs
9215 `(("yad" ,yad)
9216 ("zenity" ,zenity)))
9217 (propagated-inputs
9218 `(("r-rstudioapi" ,r-rstudioapi)
9219 ("r-svgui" ,r-svgui)))
9220 (home-page "https://github.com/SciViews/svDialogs/")
9221 (synopsis "Portable dialog boxes")
9222 (description
9223 "This package helps to construct standard dialog boxes for your GUI, including
9224 message boxes, input boxes, list, file or directory selection, and others. In
9225 case R cannot display GUI dialog boxes, a simpler command line version of these
9226 interactive elements is also provided as a fallback solution.")
9227 (license license:gpl2)))
9228
9229 (define-public r-abe
9230 (package
9231 (name "r-abe")
9232 (version "3.0.1")
9233 (source
9234 (origin
9235 (method url-fetch)
9236 (uri (cran-uri "abe" version))
9237 (sha256
9238 (base32
9239 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
9240 (build-system r-build-system)
9241 (home-page "https://cran.r-project.org/web/packages/abe/")
9242 (synopsis "Augmented backward elimination")
9243 (description
9244 "This package performs augmented backward elimination and checks the
9245 stability of the obtained model. Augmented backward elimination combines
9246 significance or information based criteria with the change in estimate to
9247 either select the optimal model for prediction purposes or to serve as a tool
9248 to obtain a practically sound, highly interpretable model.")
9249 (license license:gpl2+)))
9250
9251 (define-public r-abf2
9252 (package
9253 (name "r-abf2")
9254 (version "0.7-1")
9255 (source
9256 (origin
9257 (method url-fetch)
9258 (uri (cran-uri "abf2" version))
9259 (sha256
9260 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
9261 (build-system r-build-system)
9262 (home-page "https://cran.r-project.org/web/packages/abf2/")
9263 (synopsis "Load gap-free axon @code{r-abf2} files")
9264 (description
9265 "This package loads electrophysiology data from ABF2 files, as created by
9266 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
9267 mode are currently supported.")
9268 (license license:artistic2.0)))
9269
9270 (define-public r-abhgenotyper
9271 (package
9272 (name "r-abhgenotyper")
9273 (version "1.0.1")
9274 (source
9275 (origin
9276 (method url-fetch)
9277 (uri (cran-uri "ABHgenotypeR" version))
9278 (sha256
9279 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
9280 (properties `((upstream-name . "ABHgenotypeR")))
9281 (build-system r-build-system)
9282 (propagated-inputs
9283 `(("r-ggplot2" ,r-ggplot2)
9284 ("r-reshape2" ,r-reshape2)))
9285 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
9286 (synopsis "Visualize and manipulate ABH genotypes")
9287 (description
9288 "The @code{r-abhgenotyper} package provides simple imputation,
9289 error-correction and plotting capacities for genotype data. The package is
9290 supposed to serve as an intermediate but independent analysis tool between the
9291 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
9292 not found in either TASSEL or @code{r-qtl} in addition to visualization of
9293 genotypes as \"graphical genotypes\".")
9294 (license license:gpl3)))
9295
9296 (define-public r-furrr
9297 (package
9298 (name "r-furrr")
9299 (version "0.2.2")
9300 (source
9301 (origin
9302 (method url-fetch)
9303 (uri (cran-uri "furrr" version))
9304 (sha256
9305 (base32
9306 "0kfd4hw1yn2mfxzjgiz4r6yi2vsp1j0wy5hdhzd6wha7vi9h7hg5"))))
9307 (build-system r-build-system)
9308 (propagated-inputs
9309 `(("r-ellipsis" ,r-ellipsis)
9310 ("r-future" ,r-future)
9311 ("r-globals" ,r-globals)
9312 ("r-lifecycle" ,r-lifecycle)
9313 ("r-purrr" ,r-purrr)
9314 ("r-rlang" ,r-rlang)
9315 ("r-vctrs" ,r-vctrs)))
9316 (home-page "https://github.com/DavisVaughan/furrr")
9317 (synopsis "Apply mapping functions in parallel using futures")
9318 (description
9319 "This package provides implementations of the family of @code{map()}
9320 functions from the @code{purrr} package that can be resolved using any
9321 @code{future}-supported backend, e.g. parallel on the local machine or
9322 distributed on a compute cluster.")
9323 (license license:lgpl2.1+)))
9324
9325 (define-public r-abjutils
9326 (package
9327 (name "r-abjutils")
9328 (version "0.3.1")
9329 (source
9330 (origin
9331 (method url-fetch)
9332 (uri (cran-uri "abjutils" version))
9333 (sha256
9334 (base32 "18mmlkqsrjfclk8islfjdsp8sbw6dpjj5x45kqilxdiss69gg5zd"))))
9335 (build-system r-build-system)
9336 (propagated-inputs
9337 `(("r-dplyr" ,r-dplyr)
9338 ("r-magrittr" ,r-magrittr)
9339 ("r-purrr" ,r-purrr)
9340 ("r-rlang" ,r-rlang)
9341 ("r-rstudioapi" ,r-rstudioapi)
9342 ("r-stringi" ,r-stringi)
9343 ("r-stringr" ,r-stringr)
9344 ("r-tidyr" ,r-tidyr)))
9345 (home-page "https://github.com/abjur/abjutils/")
9346 (synopsis "Collection of tools for jurimetrical analysis")
9347 (description
9348 "This package implements general purpose tools, such as functions for
9349 sampling and basic manipulation of Brazilian lawsuits identification number.
9350 It also implements functions for text cleaning, such as accentuation
9351 removal.")
9352 (license license:expat)))
9353
9354 (define-public r-abnormality
9355 (package
9356 (name "r-abnormality")
9357 (version "0.1.0")
9358 (source
9359 (origin
9360 (method url-fetch)
9361 (uri (cran-uri "abnormality" version))
9362 (sha256
9363 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
9364 (build-system r-build-system)
9365 (propagated-inputs
9366 `(("r-mass" ,r-mass)
9367 ("r-matrix" ,r-matrix)))
9368 (home-page "https://cran.r-project.org/web/packages/abnormality/")
9369 (synopsis "Measure a subject's abnormality with respect to a reference population")
9370 (description
9371 "This package contains functions to implement the methodology and
9372 considerations laid out by Marks et al. in the article \"Measuring abnormality
9373 in high dimensional spaces: applications in biomechanical gait analysis\".
9374 Using high-dimensional datasets to measure a subject's overall level of
9375 abnormality as compared to a reference population is often needed in outcomes
9376 research.")
9377 (license license:expat)))
9378
9379 (define-public r-abodoutlier
9380 (package
9381 (name "r-abodoutlier")
9382 (version "0.1")
9383 (source
9384 (origin
9385 (method url-fetch)
9386 (uri (cran-uri "abodOutlier" version))
9387 (sha256
9388 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
9389 (properties `((upstream-name . "abodOutlier")))
9390 (build-system r-build-system)
9391 (propagated-inputs
9392 `(("r-cluster" ,r-cluster)))
9393 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
9394 (synopsis "Angle-based outlier detection")
9395 (description
9396 "This package performs angle-based outlier detection on a given data
9397 frame. It offers three methods to process data:
9398 @enumerate
9399 @item full but slow implementation using all the data that has cubic
9400 complexity;
9401 @item a fully randomized method;
9402 @item a method using k-nearest neighbours.
9403 @end enumerate
9404 These algorithms are well suited for high dimensional data outlier
9405 detection.")
9406 (license license:expat)))
9407
9408 (define-public r-abps
9409 (package
9410 (name "r-abps")
9411 (version "0.3")
9412 (source
9413 (origin
9414 (method url-fetch)
9415 (uri (cran-uri "ABPS" version))
9416 (sha256
9417 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
9418 (properties `((upstream-name . "ABPS")))
9419 (build-system r-build-system)
9420 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
9421 (home-page "https://cran.r-project.org/web/packages/ABPS/")
9422 (synopsis "Abnormal blood profile score to detect blood doping")
9423 (description
9424 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
9425 The ABPS is a part of the Athlete biological passport program of the World
9426 anti-doping agency, which combines several blood parameters into a single
9427 score in order to detect blood doping. The package also contains functions to
9428 calculate other scores used in anti-doping programs, such as the ratio of
9429 hemoglobin to reticulocytes (OFF-score), as well as example data.")
9430 (license license:gpl2+)))
9431
9432 (define-public r-parmigene
9433 (package
9434 (name "r-parmigene")
9435 (version "1.1.0")
9436 (source
9437 (origin
9438 (method url-fetch)
9439 (uri (cran-uri "parmigene" version))
9440 (sha256
9441 (base32
9442 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
9443 (build-system r-build-system)
9444 (home-page "https://cran.r-project.org/web/packages/parmigene/")
9445 (synopsis "Mutual information estimation for gene network reconstruction")
9446 (description
9447 "This package provides a parallel estimation of the mutual information
9448 based on entropy estimates from k-nearest neighbors distances and algorithms
9449 for the reconstruction of gene regulatory networks.")
9450 (license license:agpl3+)))
9451
9452 (define-public r-pscl
9453 (package
9454 (name "r-pscl")
9455 (version "1.5.5")
9456 (source
9457 (origin
9458 (method url-fetch)
9459 (uri (cran-uri "pscl" version))
9460 (sha256
9461 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
9462 (build-system r-build-system)
9463 (propagated-inputs
9464 `(("r-mass" ,r-mass)))
9465 (home-page "https://github.com/atahk/pscl/")
9466 (synopsis "Political science computational laboratory")
9467 (description
9468 "The @code{pscl} is an R package providing classes and methods for:
9469 @enumerate
9470 @item Bayesian analysis of roll call data (item-response models);
9471 @item elementary Bayesian statistics;
9472 @item maximum likelihood estimation of zero-inflated and hurdle models for count
9473 data;
9474 @item utility functions.
9475 @end enumerate")
9476 (license license:gpl2)))
9477
9478 (define-public r-accelmissing
9479 (package
9480 (name "r-accelmissing")
9481 (version "1.4")
9482 (source
9483 (origin
9484 (method url-fetch)
9485 (uri (cran-uri "accelmissing" version))
9486 (sha256
9487 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
9488 (build-system r-build-system)
9489 (propagated-inputs
9490 `(("r-mice" ,r-mice)
9491 ("r-pscl" ,r-pscl)))
9492 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
9493 (synopsis "Missing value imputation for accelerometer data")
9494 (description
9495 "This package provides a statistical method to impute the missing values in
9496 accelerometer data. The methodology includes both parametric and
9497 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
9498 model. It also provides multiple functions to preprocess the accelerometer data
9499 previous to the missing data imputation. These include detecting the wearing
9500 and the non-wearing time, selecting valid days and subjects, and creating plots.")
9501 (license license:gpl2+)))
9502
9503 (define-public r-mhsmm
9504 (package
9505 (name "r-mhsmm")
9506 (version "0.4.16")
9507 (source
9508 (origin
9509 (method url-fetch)
9510 (uri (cran-uri "mhsmm" version))
9511 (sha256
9512 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
9513 (build-system r-build-system)
9514 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
9515 (home-page "https://github.com/jaredo/mhsmm/")
9516 (synopsis "Inference for hidden Markov and semi-Markov models")
9517 (description
9518 "The @code{r-mhsmm} package implements estimation and prediction methods for
9519 hidden Markov and semi-Markov models for multiple observation sequences. Such
9520 techniques are of interest when observed data is thought to be dependent on some
9521 unobserved (or hidden) state. Also, this package is suitable for equidistant
9522 time series data, with multivariate and/or missing data. Allows user defined
9523 emission distributions.")
9524 (license license:gpl2+)))
9525
9526 (define-public r-nleqslv
9527 (package
9528 (name "r-nleqslv")
9529 (version "3.3.2")
9530 (source
9531 (origin
9532 (method url-fetch)
9533 (uri (cran-uri "nleqslv" version))
9534 (sha256
9535 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
9536 (build-system r-build-system)
9537 (native-inputs `(("gfortran" ,gfortran)))
9538 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
9539 (synopsis "Solve systems of nonlinear equations")
9540 (description
9541 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
9542 Broyden or a Newton method with a choice of global strategies such as line
9543 search and trust region. There are options for using a numerical or user
9544 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
9545 singular or ill-conditioned Jacobian.")
9546 (license license:gpl2+)))
9547
9548 (define-public r-physicalactivity
9549 (package
9550 (name "r-physicalactivity")
9551 (version "0.2-4")
9552 (source
9553 (origin
9554 (method url-fetch)
9555 (uri (cran-uri "PhysicalActivity" version))
9556 (sha256
9557 (base32 "0b27prkv3x6v2afz0y53ccs9scibpc7nj54n0hpd9fgn1wyg4c40"))))
9558 (properties
9559 `((upstream-name . "PhysicalActivity")))
9560 (build-system r-build-system)
9561 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
9562 (synopsis "Procesing accelerometer data for physical activity measurement")
9563 (description
9564 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
9565 for classification of monitor wear and nonwear time intervals in accelerometer
9566 data collected to assess physical activity. The package also contains functions
9567 for making plots of accelerometer data and obtaining the summary of various
9568 information including daily monitor wear time and the mean monitor wear time
9569 during valid days. The revised package version 0.2-1 improved the functions
9570 regarding speed, robustness and add better support for time zones and daylight
9571 saving. In addition, several functions were added:
9572 @enumerate
9573 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
9574 @item the @code{markPAI} can categorize physical activity intensity level based
9575 on user-defined cut-points of accelerometer counts.
9576 @end enumerate
9577 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
9578 @code{queryActigraph} functions.")
9579 (license license:gpl3+)))
9580
9581 (define-public r-acc
9582 (package
9583 (name "r-acc")
9584 (version "1.3.3")
9585 (source
9586 (origin
9587 (method url-fetch)
9588 (uri (cran-uri "acc" version))
9589 (sha256
9590 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
9591 (build-system r-build-system)
9592 (propagated-inputs
9593 `(("r-circlize" ,r-circlize)
9594 ("r-dbi" ,r-dbi)
9595 ("r-ggplot2" ,r-ggplot2)
9596 ("r-iterators" ,r-iterators)
9597 ("r-mhsmm" ,r-mhsmm)
9598 ("r-nleqslv" ,r-nleqslv)
9599 ("r-physicalactivity" ,r-physicalactivity)
9600 ("r-plyr" ,r-plyr)
9601 ("r-r-utils" ,r-r-utils)
9602 ("r-rcpp" ,r-rcpp)
9603 ("r-rcpparmadillo" ,r-rcpparmadillo)
9604 ("r-rsqlite" ,r-rsqlite)
9605 ("r-zoo" ,r-zoo)))
9606 (home-page "https://cran.r-project.org/web/packages/acc/")
9607 (synopsis "Exploring accelerometer data")
9608 (description
9609 "This package processes accelerometer data from uni-axial and tri-axial devices
9610 and generates data summaries. Also, includes functions to plot, analyze, and
9611 simulate accelerometer data.")
9612 (license license:gpl2+)))
9613
9614 (define-public r-rbenchmark
9615 (package
9616 (name "r-rbenchmark")
9617 (version "1.0.0")
9618 (source
9619 (origin
9620 (method url-fetch)
9621 (uri (cran-uri "rbenchmark" version))
9622 (sha256
9623 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
9624 (build-system r-build-system)
9625 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
9626 (synopsis "Benchmarking routine for R")
9627 (description
9628 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
9629 and is intended to facilitate benchmarking of arbitrary R code. The library
9630 consists of just one function, benchmark, which is a simple wrapper around
9631 system.time. Given a specification of the benchmarking process (counts of
9632 replications, evaluation environment) and an arbitrary number of expressions,
9633 benchmark evaluates each of the expressions in the specified environment,
9634 replicating the evaluation as many times as specified, and returning the results
9635 conveniently wrapped into a data frame.")
9636 (license license:gpl2+)))
9637
9638 (define-public r-mitools
9639 (package
9640 (name "r-mitools")
9641 (version "2.4")
9642 (source
9643 (origin
9644 (method url-fetch)
9645 (uri (cran-uri "mitools" version))
9646 (sha256
9647 (base32
9648 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
9649 (build-system r-build-system)
9650 (propagated-inputs `(("r-dbi" ,r-dbi)))
9651 (home-page "https://cran.r-project.org/web/packages/mitools/")
9652 (synopsis "Tools for multiple imputation of missing data")
9653 (description
9654 "This package provides tools to perform analyses and combine results from
9655 multiple-imputation datasets.")
9656 (license license:gpl2)))
9657
9658 (define-public r-mixsqp
9659 (package
9660 (name "r-mixsqp")
9661 (version "0.3-43")
9662 (source (origin
9663 (method url-fetch)
9664 (uri (cran-uri "mixsqp" version))
9665 (sha256
9666 (base32
9667 "1qics04w0swyp216d6g8dmsph8q2kpadpacp66h2qih3521js12q"))))
9668 (properties `((upstream-name . "mixsqp")))
9669 (build-system r-build-system)
9670 (propagated-inputs
9671 `(("r-irlba" ,r-irlba)
9672 ("r-rcpp" ,r-rcpp)
9673 ("r-rcpparmadillo" ,r-rcpparmadillo)))
9674 (native-inputs
9675 `(("r-knitr" ,r-knitr)))
9676 (home-page "https://github.com/stephenslab/mixsqp")
9677 (synopsis
9678 "Sequential quadratic programming for maximum-likelihood estimation")
9679 (description
9680 "This package provides an optimization method based on sequential
9681 quadratic programming for maximum likelihood estimation of the mixture
9682 proportions in a finite mixture model where the component densities are
9683 known. The algorithm is expected to obtain solutions that are at least
9684 as accurate as the state-of-the-art MOSEK interior-point solver, and they
9685 are expected to arrive at solutions more quickly when the number of
9686 samples is large and the number of mixture components is not too large.")
9687 (license license:expat)))
9688
9689 (define-public r-magick
9690 (package
9691 (name "r-magick")
9692 (version "2.6.0")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (cran-uri "magick" version))
9697 (sha256
9698 (base32
9699 "1k4fqhxh2ppynl56fs044wpn4wk6gbv6lwp2x4x7j67zwcv56n36"))))
9700 (build-system r-build-system)
9701 (inputs
9702 `(("imagemagick" ,imagemagick)
9703 ("zlib" ,zlib)))
9704 (propagated-inputs
9705 `(("r-curl" ,r-curl)
9706 ("r-magrittr" ,r-magrittr)
9707 ("r-rcpp" ,r-rcpp)))
9708 (native-inputs
9709 `(("pkg-config" ,pkg-config)
9710 ("r-knitr" ,r-knitr)))
9711 (home-page "https://github.com/ropensci/magick")
9712 (synopsis "Advanced graphics and image-processing in R")
9713 (description
9714 "This package provides bindings to ImageMagick, a comprehensive image
9715 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
9716 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
9717 operations are vectorized via the Magick++ STL meaning they operate either on
9718 a single frame or a series of frames for working with layers, collages, or
9719 animation. In RStudio, images are automatically previewed when printed to the
9720 console, resulting in an interactive editing environment.")
9721 (license license:expat)))
9722
9723 (define-public r-survey
9724 (package
9725 (name "r-survey")
9726 (version "4.0")
9727 (source
9728 (origin
9729 (method url-fetch)
9730 (uri (cran-uri "survey" version))
9731 (sha256
9732 (base32
9733 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
9734 (build-system r-build-system)
9735 (propagated-inputs
9736 `(("r-lattice" ,r-lattice)
9737 ("r-matrix" ,r-matrix)
9738 ("r-minqa" ,r-minqa)
9739 ("r-mitools" ,r-mitools)
9740 ("r-numderiv" ,r-numderiv)
9741 ("r-survival" ,r-survival)))
9742 (home-page "http://r-survey.r-forge.r-project.org/survey/")
9743 (synopsis "Analysis of complex survey samples")
9744 (description
9745 "This package provides tools for the analysis of complex survey samples.
9746 The provided features include: summary statistics, two-sample tests, rank
9747 tests, generalised linear models, cumulative link models, Cox models,
9748 loglinear models, and general maximum pseudolikelihood estimation for
9749 multistage stratified, cluster-sampled, unequally weighted survey samples;
9750 variances by Taylor series linearisation or replicate weights;
9751 post-stratification, calibration, and raking; two-phase subsampling designs;
9752 graphics; PPS sampling without replacement; principal components, and factor
9753 analysis.")
9754 ;; Either version of the GPL.
9755 (license (list license:gpl2 license:gpl3))))
9756
9757 (define-public r-gee
9758 (package
9759 (name "r-gee")
9760 (version "4.13-20")
9761 (source
9762 (origin
9763 (method url-fetch)
9764 (uri (cran-uri "gee" version))
9765 (sha256
9766 (base32
9767 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
9768 (properties `((upstream-name . "gee")))
9769 (build-system r-build-system)
9770 (native-inputs
9771 `(("gfortran" ,gfortran)))
9772 (home-page "https://cran.r-project.org/web/packages/gee/")
9773 (synopsis "Generalized estimation equation solver")
9774 (description
9775 "This package provides a solver for generalized estimation equations.")
9776 (license license:gpl2)))
9777
9778 (define-public r-tab
9779 (package
9780 (name "r-tab")
9781 (version "4.1.1")
9782 (source
9783 (origin
9784 (method url-fetch)
9785 (uri (cran-uri "tab" version))
9786 (sha256
9787 (base32
9788 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
9789 (properties `((upstream-name . "tab")))
9790 (build-system r-build-system)
9791 (propagated-inputs
9792 `(("r-dplyr" ,r-dplyr)
9793 ("r-gee" ,r-gee)
9794 ("r-knitr" ,r-knitr)
9795 ("r-mass" ,r-mass)
9796 ("r-survey" ,r-survey)
9797 ("r-survival" ,r-survival)
9798 ("r-xtable" ,r-xtable)))
9799 (home-page "https://cran.r-project.org/web/packages/tab/")
9800 (synopsis "Create summary tables for statistical reports")
9801 (description
9802 "This package contains functions for creating various types of summary
9803 tables, e.g. comparing characteristics across levels of a categorical variable
9804 and summarizing fitted generalized linear models, generalized estimating
9805 equations, and Cox proportional hazards models. Functions are available to
9806 handle data from simple random samples as well as complex surveys.")
9807 (license license:gpl3+)))
9808
9809 (define-public r-dvmisc
9810 (package
9811 (name "r-dvmisc")
9812 (version "1.1.4")
9813 (source
9814 (origin
9815 (method url-fetch)
9816 (uri (cran-uri "dvmisc" version))
9817 (sha256
9818 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
9819 (build-system r-build-system)
9820 (propagated-inputs
9821 `(("r-cubature" ,r-cubature)
9822 ("r-data-table" ,r-data-table)
9823 ("r-dplyr" ,r-dplyr)
9824 ("r-ggplot2" ,r-ggplot2)
9825 ("r-mass" ,r-mass)
9826 ("r-mvtnorm" ,r-mvtnorm)
9827 ("r-pracma" ,r-pracma)
9828 ("r-rbenchmark" ,r-rbenchmark)
9829 ("r-rcpp" ,r-rcpp)
9830 ("r-survey" ,r-survey)
9831 ("r-tab" ,r-tab)))
9832 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
9833 (synopsis "Faster computation of common statistics and miscellaneous functions")
9834 (description
9835 "This package implements faster versions of base R functions (e.g. mean, standard
9836 deviation, covariance, weighted mean), mostly written in C++, along with
9837 miscellaneous functions for various purposes (e.g. create the histogram with
9838 fitted probability density function or probability mass function curve, create
9839 the body mass index groups, assess the linearity assumption in logistic
9840 regression).")
9841 (license license:gpl2)))
9842
9843 (define-public r-accelerometry
9844 (package
9845 (name "r-accelerometry")
9846 (version "3.1.2")
9847 (source
9848 (origin
9849 (method url-fetch)
9850 (uri (cran-uri "accelerometry" version))
9851 (sha256
9852 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
9853 (build-system r-build-system)
9854 (propagated-inputs
9855 `(("r-dvmisc" ,r-dvmisc)
9856 ("r-rcpp" ,r-rcpp)))
9857 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
9858 (synopsis "Functions for processing accelerometer data")
9859 (description
9860 "This package provides a collection of functions that perform operations on
9861 time-series accelerometer data, such as identify the non-wear time, flag minutes
9862 that are part of an activity bout, and find the maximum 10-minute average count
9863 value. The functions are generally very flexible, allowing for a variety of
9864 algorithms to be implemented.")
9865 (license license:gpl3)))
9866
9867 (define-public r-absim
9868 (package
9869 (name "r-absim")
9870 (version "0.2.6")
9871 (source
9872 (origin
9873 (method url-fetch)
9874 (uri (cran-uri "AbSim" version))
9875 (sha256
9876 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
9877 (properties `((upstream-name . "AbSim")))
9878 (build-system r-build-system)
9879 (propagated-inputs
9880 `(("r-ape" ,r-ape)
9881 ("r-powerlaw" ,r-powerlaw)))
9882 (home-page "https://cran.r-project.org/web/packages/AbSim/")
9883 (synopsis "Time resolved simulations of antibody repertoires")
9884 (description
9885 "This package provides simulation methods for the evolution of antibody repertoires.
9886 The heavy and light chain variable region of both human and C57BL/6 mice can
9887 be simulated in a time-dependent fashion. Both single lineages using one set of
9888 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
9889 with an initial V-D-J recombination event, starting the first phylogenetic tree.
9890 Upon completion, the main loop of the algorithm begins, with each iteration
9891 representing one simulated time step. Various mutation events are possible at
9892 each time step, contributing to a diverse final repertoire.")
9893 (license license:gpl2)))
9894
9895 (define-public r-quic
9896 (package
9897 (name "r-quic")
9898 (version "1.1")
9899 (source
9900 (origin
9901 (method url-fetch)
9902 (uri (cran-uri "QUIC" version))
9903 (sha256
9904 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
9905 (properties `((upstream-name . "QUIC")))
9906 (build-system r-build-system)
9907 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
9908 (synopsis "Regularized sparse inverse covariance matrix estimation")
9909 (description
9910 "This package implements the regularized Gaussian maximum likelihood
9911 estimation of the inverse of a covariance matrix. It uses Newton's method and
9912 coordinate descent to solve the regularized inverse covariance matrix
9913 estimation problem.")
9914 ;; The project home page states that the release is under GPLv3 or later.
9915 ;; The CRAN page only says GPL-3.
9916 (license license:gpl3+)))
9917
9918 (define-public r-abundant
9919 (package
9920 (name "r-abundant")
9921 (version "1.1")
9922 (source
9923 (origin
9924 (method url-fetch)
9925 (uri (cran-uri "abundant" version))
9926 (sha256
9927 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
9928 (build-system r-build-system)
9929 (propagated-inputs
9930 `(("r-quic" ,r-quic)))
9931 (home-page "https://cran.r-project.org/web/packages/abundant/")
9932 (synopsis "Abundant regression and high-dimensional principal fitted components")
9933 (description
9934 "This package provides tools to fit and predict with the high-dimensional
9935 principal fitted components model. This model is described by Cook, Forzani,
9936 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
9937 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
9938 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
9939 (license license:gpl2+)))
9940
9941 (define-public r-ac3net
9942 (package
9943 (name "r-ac3net")
9944 (version "1.2.2")
9945 (source
9946 (origin
9947 (method url-fetch)
9948 (uri (cran-uri "Ac3net" version))
9949 (sha256
9950 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
9951 (properties `((upstream-name . "Ac3net")))
9952 (build-system r-build-system)
9953 (propagated-inputs
9954 `(("r-data-table" ,r-data-table)))
9955 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
9956 (synopsis "Inferring directional conservative causal core gene networks")
9957 (description "This package infers directional Conservative causal core
9958 (gene) networks (C3NET). This is a version of the algorithm C3NET with
9959 directional network.")
9960 (license license:gpl3+)))
9961
9962 (define-public r-aca
9963 (package
9964 (name "r-aca")
9965 (version "1.1")
9966 (source
9967 (origin
9968 (method url-fetch)
9969 (uri (cran-uri "ACA" version))
9970 (sha256
9971 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
9972 (properties `((upstream-name . "ACA")))
9973 (build-system r-build-system)
9974 (home-page "https://cran.r-project.org/web/packages/ACA/")
9975 (synopsis "Abrupt change-point or aberration detection in point series")
9976 (description
9977 "This package offers an interactive function for the detection of breakpoints in
9978 series.")
9979 ;; Any version of the GPL
9980 (license (list license:gpl2+ license:gpl3+))))
9981
9982 (define-public r-acceptancesampling
9983 (package
9984 (name "r-acceptancesampling")
9985 (version "1.0-6")
9986 (source
9987 (origin
9988 (method url-fetch)
9989 (uri (cran-uri "AcceptanceSampling" version))
9990 (sha256
9991 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
9992 (properties
9993 `((upstream-name . "AcceptanceSampling")))
9994 (build-system r-build-system)
9995 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
9996 (synopsis "Creation and evaluation of acceptance sampling plans")
9997 (description
9998 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
9999 acceptance sampling plans. Acceptance sampling is a methodology commonly used
10000 in quality control and improvement. International standards of acceptance
10001 sampling provide sampling plans for specific circumstances. The aim of this
10002 package is to provide an easy-to-use interface to visualize single, double or
10003 multiple sampling plans. In addition, methods have been provided to enable the
10004 user to assess sampling plans against pre-specified levels of performance, as
10005 measured by the probability of acceptance for a given level of quality in the
10006 lot.")
10007 (license license:gpl3+)))
10008
10009 (define-public r-acclma
10010 (package
10011 (name "r-acclma")
10012 (version "1.0")
10013 (source
10014 (origin
10015 (method url-fetch)
10016 (uri (cran-uri "ACCLMA" version))
10017 (sha256
10018 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
10019 (properties `((upstream-name . "ACCLMA")))
10020 (build-system r-build-system)
10021 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
10022 (synopsis "ACC & LMA graph plotting")
10023 (description
10024 "This package contains a function that imports data from a @acronym{CSV,
10025 Comma-Separated Values} file, or uses manually entered data from the format (x,
10026 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
10027 Curve} vs @acronym{LOI, Line of Independence} graph and
10028 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
10029 function is @code{plotLMA} (source file, header) that takes a data set and plots the
10030 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
10031 string) was passed, a manual data entry window is opened. The header parameter
10032 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
10033 a header row or not. The dataset should contain only one independent variable
10034 (x) and one dependent variable (y) and can contain a weight for each
10035 observation.")
10036 (license license:gpl2)))
10037
10038 (define-public r-aspi
10039 (package
10040 (name "r-aspi")
10041 (version "0.2.0")
10042 (source
10043 (origin
10044 (method url-fetch)
10045 (uri (cran-uri "aspi" version))
10046 (sha256
10047 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
10048 (build-system r-build-system)
10049 (home-page
10050 "https://cran.r-project.org/web/packages/aspi/")
10051 (synopsis
10052 "Analysis of symmetry of parasitic infections")
10053 (description
10054 "This package provides tools for the analysis and visualization of bilateral
10055 asymmetry in parasitic infections.")
10056 (license license:gpl3+)))
10057
10058 (define-public r-sandwich
10059 (package
10060 (name "r-sandwich")
10061 (version "3.0-0")
10062 (source
10063 (origin
10064 (method url-fetch)
10065 (uri (cran-uri "sandwich" version))
10066 (sha256
10067 (base32
10068 "0afm6snak7r11dxyl3qirqdjah6d9pdv4afmxwam1nq9bqxyb3w2"))))
10069 (build-system r-build-system)
10070 (propagated-inputs
10071 `(("r-zoo" ,r-zoo)))
10072 (home-page "https://cran.r-project.org/web/packages/sandwich/")
10073 (synopsis "Robust Covariance Matrix Estimators")
10074 (description
10075 "This package provides model-robust standard error estimators for
10076 cross-sectional, time series, clustered, panel, and longitudinal data.")
10077 ;; Either version of the license.
10078 (license (list license:gpl2 license:gpl3))))
10079
10080 (define-public r-th-data
10081 (package
10082 (name "r-th-data")
10083 (version "1.0-10")
10084 (source
10085 (origin
10086 (method url-fetch)
10087 (uri (cran-uri "TH.data" version))
10088 (sha256
10089 (base32
10090 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
10091 (properties `((upstream-name . "TH.data")))
10092 (build-system r-build-system)
10093 (propagated-inputs
10094 `(("r-mass" ,r-mass)
10095 ("r-survival" ,r-survival)))
10096 (home-page "https://cran.r-project.org/web/packages/TH.data/")
10097 (synopsis "Shared data sets")
10098 (description
10099 "This package contains supporting data sets that are used in other
10100 packages maintained by Torsten Hothorn.")
10101 (license license:gpl3)))
10102
10103 (define-public r-multcomp
10104 (package
10105 (name "r-multcomp")
10106 (version "1.4-16")
10107 (source
10108 (origin
10109 (method url-fetch)
10110 (uri (cran-uri "multcomp" version))
10111 (sha256
10112 (base32
10113 "1s8qmljawalisggniy7va5l5cicsgvs0lp20c33vxlvyiy0dbb1s"))))
10114 (build-system r-build-system)
10115 (propagated-inputs
10116 `(("r-codetools" ,r-codetools)
10117 ("r-mvtnorm" ,r-mvtnorm)
10118 ("r-sandwich" ,r-sandwich)
10119 ("r-survival" ,r-survival)
10120 ("r-th-data" ,r-th-data)))
10121 (home-page "https://cran.r-project.org/web/packages/multcomp/")
10122 (synopsis "Simultaneous inference in general parametric models")
10123 (description
10124 "Simultaneous tests and confidence intervals for general linear
10125 hypotheses in parametric models, including linear, generalized linear, linear
10126 mixed effects, and survival models. The package includes demos reproducing
10127 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
10128 Hothorn, Westfall, 2010, CRC Press).")
10129 (license license:gpl2)))
10130
10131 (define-public r-emmeans
10132 (package
10133 (name "r-emmeans")
10134 (version "1.5.4")
10135 (source
10136 (origin
10137 (method url-fetch)
10138 (uri (cran-uri "emmeans" version))
10139 (sha256
10140 (base32
10141 "1rbh3ls23fazrwpsam5llk3kqdzz2zvsms3i4f1cgn34ky3w8361"))))
10142 (build-system r-build-system)
10143 (propagated-inputs
10144 `(("r-estimability" ,r-estimability)
10145 ("r-mvtnorm" ,r-mvtnorm)
10146 ("r-numderiv" ,r-numderiv)
10147 ("r-plyr" ,r-plyr)
10148 ("r-xtable" ,r-xtable)))
10149 (native-inputs
10150 `(("r-knitr" ,r-knitr)))
10151 (home-page "https://github.com/rvlenth/emmeans")
10152 (synopsis "Estimated marginal means, aka least-squares means")
10153 (description
10154 "This package provides tools to obtain @dfn{estimated marginal
10155 means} (EMMs) for many linear, generalized linear, and mixed models. It can
10156 be used to compute contrasts or linear functions of EMMs, trends, and
10157 comparisons of slopes.")
10158 ;; Either version of the license.
10159 (license (list license:gpl2 license:gpl3))))
10160
10161 (define-public r-pwr
10162 (package
10163 (name "r-pwr")
10164 (version "1.3-0")
10165 (source
10166 (origin
10167 (method url-fetch)
10168 (uri (cran-uri "pwr" version))
10169 (sha256
10170 (base32
10171 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
10172 (build-system r-build-system)
10173 (native-inputs
10174 `(("r-knitr" ,r-knitr)))
10175 (home-page "https://github.com/heliosdrm/pwr")
10176 (synopsis "Basic functions for power analysis")
10177 (description
10178 "This package provides power analysis functions along the lines of
10179 Cohen (1988).")
10180 (license license:gpl3+)))
10181
10182 (define-public r-libcoin
10183 (package
10184 (name "r-libcoin")
10185 (version "1.0-8")
10186 (source
10187 (origin
10188 (method url-fetch)
10189 (uri (cran-uri "libcoin" version))
10190 (sha256
10191 (base32 "0izgnr4zdrbz3a05b0s28xfly4izp2zslgh282l9ads4skrmj3hl"))))
10192 (build-system r-build-system)
10193 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
10194 (home-page "https://cran.r-project.org/web/packages/libcoin")
10195 (synopsis "Linear test statistics for permutation inference")
10196 (description
10197 "This package provides basic infrastructure for linear test statistics
10198 and permutation inference in the framework of Strasser and Weber (1999).")
10199 (license license:gpl2)))
10200
10201 (define-public r-coin
10202 (package
10203 (name "r-coin")
10204 (version "1.4-1")
10205 (source
10206 (origin
10207 (method url-fetch)
10208 (uri (cran-uri "coin" version))
10209 (sha256
10210 (base32
10211 "15xvhnbyg34aacn6jfz4bsa1f7wq2ci0hslj8mgymql90k50x1qi"))))
10212 (build-system r-build-system)
10213 (propagated-inputs
10214 `(("r-libcoin" ,r-libcoin)
10215 ("r-matrixstats" ,r-matrixstats)
10216 ("r-modeltools" ,r-modeltools)
10217 ("r-multcomp" ,r-multcomp)
10218 ("r-mvtnorm" ,r-mvtnorm)
10219 ("r-survival" ,r-survival)))
10220 (home-page "http://coin.r-forge.r-project.org")
10221 (synopsis "Conditional inference procedures in a permutation test framework")
10222 (description
10223 "This package provides conditional inference procedures for the general
10224 independence problem including two-sample, K-sample (non-parametric ANOVA),
10225 correlation, censored, ordered and multivariate problems.")
10226 (license license:gpl2)))
10227
10228 (define-public r-bayesplot
10229 (package
10230 (name "r-bayesplot")
10231 (version "1.8.0")
10232 (source
10233 (origin
10234 (method url-fetch)
10235 (uri (cran-uri "bayesplot" version))
10236 (sha256
10237 (base32
10238 "0j69a78l5z0wyxcz607amaa4jc8kwwvcia9wxyir65b8ks9gj1d6"))))
10239 (build-system r-build-system)
10240 (inputs
10241 `(("pandoc" ,pandoc)
10242 ("pandoc-citeproc" ,pandoc-citeproc)))
10243 (native-inputs
10244 `(("r-knitr" ,r-knitr)))
10245 (propagated-inputs
10246 `(("r-dplyr" ,r-dplyr)
10247 ("r-ggplot2" ,r-ggplot2)
10248 ("r-ggridges" ,r-ggridges)
10249 ("r-glue" ,r-glue)
10250 ("r-reshape2" ,r-reshape2)
10251 ("r-rlang" ,r-rlang)
10252 ("r-tibble" ,r-tibble)
10253 ("r-tidyselect" ,r-tidyselect)))
10254 (home-page "https://mc-stan.org/bayesplot")
10255 (synopsis "Plotting for Bayesian models")
10256 (description
10257 "This package provides plotting functions for posterior analysis, model
10258 checking, and MCMC diagnostics. The package is designed not only to provide
10259 convenient functionality for users, but also a common set of functions that
10260 can be easily used by developers working on a variety of R packages for
10261 Bayesian modeling.")
10262 (license license:gpl3+)))
10263
10264 (define-public r-tmb
10265 (package
10266 (name "r-tmb")
10267 (version "1.7.19")
10268 (source
10269 (origin
10270 (method url-fetch)
10271 (uri (cran-uri "TMB" version))
10272 (sha256
10273 (base32
10274 "0vnjh8d5gnjswil8ld3gbbspy4m5l2pzar1mpj62qxn2mwx0cc4s"))))
10275 (properties `((upstream-name . "TMB")))
10276 (build-system r-build-system)
10277 (propagated-inputs
10278 `(("r-matrix" ,r-matrix)
10279 ("r-rcppeigen" ,r-rcppeigen)))
10280 (home-page "http://tmb-project.org")
10281 (synopsis "Template model builder: a general random effect tool")
10282 (description
10283 "With this tool, a user should be able to quickly implement complex
10284 random effect models through simple C++ templates. The package combines
10285 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
10286 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
10287 from R) to obtain an efficient implementation of the applied Laplace
10288 approximation with exact derivatives. Key features are: Automatic sparseness
10289 detection, parallelism through BLAS and parallel user templates.")
10290 (license license:gpl2)))
10291
10292 (define-public r-sjstats
10293 (package
10294 (name "r-sjstats")
10295 (version "0.18.1")
10296 (source
10297 (origin
10298 (method url-fetch)
10299 (uri (cran-uri "sjstats" version))
10300 (sha256
10301 (base32 "1cv80yjnyh6qihxf57zivihhia20gibr5f03x8aspy6382wnwlka"))))
10302 (build-system r-build-system)
10303 (propagated-inputs
10304 `(("r-bayestestr" ,r-bayestestr)
10305 ("r-broom" ,r-broom)
10306 ("r-dplyr" ,r-dplyr)
10307 ("r-effectsize" ,r-effectsize)
10308 ("r-emmeans" ,r-emmeans)
10309 ("r-insight" ,r-insight)
10310 ("r-lme4" ,r-lme4)
10311 ("r-magrittr" ,r-magrittr)
10312 ("r-mass" ,r-mass)
10313 ("r-modelr" ,r-modelr)
10314 ("r-parameters" ,r-parameters)
10315 ("r-performance" ,r-performance)
10316 ("r-purrr" ,r-purrr)
10317 ("r-rlang" ,r-rlang)
10318 ("r-sjlabelled" ,r-sjlabelled)
10319 ("r-sjmisc" ,r-sjmisc)
10320 ("r-tidyr" ,r-tidyr)))
10321 (home-page "https://github.com/strengejacke/sjstats")
10322 (synopsis "Functions for common statistical computations")
10323 (description
10324 "This package provides a collection of convenient functions for common
10325 statistical computations, which are not directly provided by R's @code{base}
10326 or @code{stats} packages. This package aims at providing, first, shortcuts
10327 for statistical measures, which otherwise could only be calculated with
10328 additional effort. Second, these shortcut functions are generic, and can be
10329 applied not only to vectors, but also to other objects as well. The focus of
10330 most functions lies on summary statistics or fit measures for regression
10331 models, including generalized linear models, mixed effects models and Bayesian
10332 models.")
10333 (license license:gpl3)))
10334
10335 (define-public r-glmmtmb
10336 (package
10337 (name "r-glmmtmb")
10338 (version "1.0.2.1")
10339 (source
10340 (origin
10341 (method url-fetch)
10342 (uri (cran-uri "glmmTMB" version))
10343 (sha256
10344 (base32
10345 "1a35hxcxz1cdm3zd5s7fyjaw2qs00hkacgr7h9130amygc1262ab"))))
10346 (properties `((upstream-name . "glmmTMB")))
10347 (build-system r-build-system)
10348 (propagated-inputs
10349 `(("r-lme4" ,r-lme4)
10350 ("r-matrix" ,r-matrix)
10351 ("r-nlme" ,r-nlme)
10352 ("r-rcppeigen" ,r-rcppeigen)
10353 ("r-tmb" ,r-tmb)))
10354 (native-inputs
10355 `(("r-knitr" ,r-knitr))) ; for vignettes
10356 (home-page "https://github.com/glmmTMB")
10357 (synopsis "Generalized linear mixed models")
10358 (description
10359 "Fit linear and generalized linear mixed models with various extensions,
10360 including zero-inflation. The models are fitted using maximum likelihood
10361 estimation via the Template Model Builder. Random effects are assumed to be
10362 Gaussian on the scale of the linear predictor and are integrated out using the
10363 Laplace approximation. Gradients are calculated using automatic
10364 differentiation.")
10365 (license license:agpl3+)))
10366
10367 (define-public r-bayestestr
10368 (package
10369 (name "r-bayestestr")
10370 (version "0.8.2")
10371 (source
10372 (origin
10373 (method url-fetch)
10374 (uri (cran-uri "bayestestR" version))
10375 (sha256
10376 (base32
10377 "06y7vccgln1882yv04may9p6s915py8nnhg82d5ppbpxzcifi7l4"))))
10378 (properties `((upstream-name . "bayestestR")))
10379 (build-system r-build-system)
10380 (propagated-inputs
10381 `(("r-insight" ,r-insight)))
10382 (native-inputs
10383 `(("r-knitr" ,r-knitr)))
10384 (home-page "https://github.com/easystats/bayestestR")
10385 (synopsis "Describe Bayesian models and posterior distributions")
10386 (description
10387 "This package provides utilities to understand and describe posterior
10388 distributions and Bayesian models. It includes point-estimates such as
10389 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
10390 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
10391 ROPE percentage and pd).")
10392 (license license:gpl3)))
10393
10394 (define-public r-performance
10395 (package
10396 (name "r-performance")
10397 (version "0.7.0")
10398 (source
10399 (origin
10400 (method url-fetch)
10401 (uri (cran-uri "performance" version))
10402 (sha256
10403 (base32
10404 "1z45vy8gg77c2imcspwqf94anzi6c40wwbq0h7hg6zy76jsgvbyj"))))
10405 (build-system r-build-system)
10406 (propagated-inputs
10407 `(("r-bayestestr" ,r-bayestestr)
10408 ("r-insight" ,r-insight)))
10409 (home-page "https://easystats.github.io/performance/")
10410 (synopsis "Assessment of regression models performance")
10411 (description
10412 "This package provides utilities for computing measures to assess model
10413 quality, which are not directly provided by R's @code{base} or @code{stats}
10414 packages. These include e.g. measures like r-squared, intraclass correlation
10415 coefficient, root mean squared error or functions to check models for
10416 overdispersion, singularity or zero-inflation and more. Functions apply to a
10417 large variety of regression models, including generalized linear models, mixed
10418 effects models and Bayesian models.")
10419 (license license:gpl3)))
10420
10421 (define-public r-ggeffects
10422 (package
10423 (name "r-ggeffects")
10424 (version "1.0.1")
10425 (source
10426 (origin
10427 (method url-fetch)
10428 (uri (cran-uri "ggeffects" version))
10429 (sha256
10430 (base32
10431 "1c5rvycaqp7zp1j6j17c84v8nlpi0w7bhfxmcha4n37m0snk1kgy"))))
10432 (build-system r-build-system)
10433 (propagated-inputs
10434 `(("r-insight" ,r-insight)
10435 ("r-mass" ,r-mass)
10436 ("r-sjlabelled" ,r-sjlabelled)))
10437 (native-inputs
10438 `(("r-knitr" ,r-knitr)))
10439 (home-page "https://github.com/strengejacke/ggeffects")
10440 (synopsis "Create tidy data frames of marginal effects for ggplot")
10441 (description
10442 "This package provides tools to compute marginal effects from statistical
10443 models and return the result as tidy data frames. These data frames are ready
10444 to use with the @code{ggplot2} package. Marginal effects can be calculated
10445 for many different models. Interaction terms, splines and polynomial terms
10446 are also supported. The two main functions are @code{ggpredict()} and
10447 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
10448 results using @code{ggplot2}.")
10449 (license license:gpl3)))
10450
10451 (define-public r-effectsize
10452 (package
10453 (name "r-effectsize")
10454 (version "0.4.3")
10455 (source
10456 (origin
10457 (method url-fetch)
10458 (uri (cran-uri "effectsize" version))
10459 (sha256
10460 (base32
10461 "1hcrnax9wf0nwsb8nv15rxw8yy8w5dak16dw3w5bxi8xnf56lkz2"))))
10462 (properties `((upstream-name . "effectsize")))
10463 (build-system r-build-system)
10464 (propagated-inputs
10465 `(("r-bayestestr" ,r-bayestestr)
10466 ("r-insight" ,r-insight)
10467 ("r-parameters" ,r-parameters)))
10468 (native-inputs
10469 `(("r-knitr" ,r-knitr)))
10470 (home-page "https://github.com/easystats/effectsize")
10471 (synopsis "Indices of effect size and standardized parameters")
10472 (description
10473 "This package provides utilities to work with indices of effect size and
10474 standardized parameters for a wide variety of models, allowing computation and
10475 conversion of indices such as Cohen's d, r, odds, etc.")
10476 (license license:gpl3)))
10477
10478 (define-public r-sjplot
10479 (package
10480 (name "r-sjplot")
10481 (version "2.8.7")
10482 (source
10483 (origin
10484 (method url-fetch)
10485 (uri (cran-uri "sjPlot" version))
10486 (sha256
10487 (base32 "1g4qabg654kwdm09ihp4h3mg64a1d7a7gsn6w56rwsidqqaxilq0"))))
10488 (properties `((upstream-name . "sjPlot")))
10489 (build-system r-build-system)
10490 (propagated-inputs
10491 `(("r-bayestestr" ,r-bayestestr)
10492 ("r-dplyr" ,r-dplyr)
10493 ("r-effectsize" ,r-effectsize)
10494 ("r-ggeffects" ,r-ggeffects)
10495 ("r-ggplot2" ,r-ggplot2)
10496 ("r-insight" ,r-insight)
10497 ("r-knitr" ,r-knitr)
10498 ("r-mass" ,r-mass)
10499 ("r-parameters" ,r-parameters)
10500 ("r-performance" ,r-performance)
10501 ("r-purrr" ,r-purrr)
10502 ("r-rlang" ,r-rlang)
10503 ("r-scales" ,r-scales)
10504 ("r-sjlabelled" ,r-sjlabelled)
10505 ("r-sjmisc" ,r-sjmisc)
10506 ("r-sjstats" ,r-sjstats)
10507 ("r-tidyr" ,r-tidyr)))
10508 (native-inputs
10509 `(("r-knitr" ,r-knitr)))
10510 (home-page "https://strengejacke.github.io/sjPlot/")
10511 (synopsis "Data visualization for statistics in social science")
10512 (description
10513 "This package represents a collection of plotting and table output
10514 functions for data visualization. Results of various statistical
10515 analyses (that are commonly used in social sciences) can be visualized using
10516 this package, including simple and cross tabulated frequencies, histograms,
10517 box plots, (generalized) linear models, mixed effects models, principal
10518 component analysis and correlation matrices, cluster analyses, scatter plots,
10519 stacked scales, effects plots of regression models (including interaction
10520 terms) and much more. This package supports labelled data.")
10521 (license license:gpl3)))
10522
10523 (define-public r-ini
10524 (package
10525 (name "r-ini")
10526 (version "0.3.1")
10527 (source
10528 (origin
10529 (method url-fetch)
10530 (uri (cran-uri "ini" version))
10531 (sha256
10532 (base32
10533 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
10534 (build-system r-build-system)
10535 (home-page "https://github.com/dvdscripter/ini")
10536 (synopsis "Read and write configuration files")
10537 (description
10538 "This package provides tools to parse simple @code{.ini} configuration
10539 files to an structured list. Users can manipulate this resulting list with
10540 @code{lapply()} functions. This same structured list can be used to write
10541 back to file after modifications.")
10542 (license license:gpl3)))
10543
10544 (define-public r-gitcreds
10545 (package
10546 (name "r-gitcreds")
10547 (version "0.1.1")
10548 (source
10549 (origin
10550 (method url-fetch)
10551 (uri (cran-uri "gitcreds" version))
10552 (sha256
10553 (base32
10554 "1snzn7nxy0rwz0bzjsg6k04c0n811dgn8gn9cmn2v78aj57ayjmi"))))
10555 (properties `((upstream-name . "gitcreds")))
10556 (build-system r-build-system)
10557 (inputs `(("git" ,git-minimal)))
10558 (native-inputs `(("r-knitr" ,r-knitr)))
10559 (home-page "https://github.com/r-lib/gitcreds")
10560 (synopsis "Query git credentials from R")
10561 (description
10562 "Query, set, and delete credentials from the git credential store.
10563 Manage GitHub tokens and other git credentials. This package is to be used by
10564 other packages that need to authenticate to GitHub and/or other git
10565 repositories.")
10566 (license license:expat)))
10567
10568 (define-public r-gh
10569 (package
10570 (name "r-gh")
10571 (version "1.2.0")
10572 (source
10573 (origin
10574 (method url-fetch)
10575 (uri (cran-uri "gh" version))
10576 (sha256
10577 (base32
10578 "1zvy3ylxvni10lhvmbm9h14mg4wlsbdbzbzviwf28jxss8749219"))))
10579 (build-system r-build-system)
10580 (propagated-inputs
10581 `(("r-cli" ,r-cli)
10582 ("r-gitcreds" ,r-gitcreds)
10583 ("r-httr" ,r-httr)
10584 ("r-ini" ,r-ini)
10585 ("r-jsonlite" ,r-jsonlite)))
10586 (native-inputs
10587 `(("r-knitr" ,r-knitr)))
10588 (home-page "https://github.com/r-lib/gh#readme")
10589 (synopsis "Access the GitHub API via R")
10590 (description
10591 "This package provides a minimal R client to access the GitHub API.")
10592 (license license:expat)))
10593
10594 (define-public r-fs
10595 (package
10596 (name "r-fs")
10597 (version "1.5.0")
10598 (source
10599 (origin
10600 (method url-fetch)
10601 (uri (cran-uri "fs" version))
10602 (sha256
10603 (base32
10604 "15rqc3ljmcmgfvadj1j1kq7kvibagxic8sgplhlcdqqxax9idprn"))))
10605 (build-system r-build-system)
10606 (native-inputs
10607 `(("r-knitr" ,r-knitr)))
10608 (home-page "https://fs.r-lib.org")
10609 (synopsis "Cross-platform file system operations based on libuv")
10610 (description
10611 "This package provides a cross-platform interface to file system
10612 operations, built on top of the libuv C library.")
10613 (license license:gpl3)))
10614
10615 (define-public r-clisymbols
10616 (package
10617 (name "r-clisymbols")
10618 (version "1.2.0")
10619 (source
10620 (origin
10621 (method url-fetch)
10622 (uri (cran-uri "clisymbols" version))
10623 (sha256
10624 (base32
10625 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
10626 (build-system r-build-system)
10627 (home-page "https://github.com/gaborcsardi/clisymbols")
10628 (synopsis "Unicode symbols at the R prompt")
10629 (description
10630 "This package provides a small subset of Unicode symbols, that are useful
10631 when building command line applications. They fall back to alternatives on
10632 terminals that do not support Unicode.")
10633 (license license:expat)))
10634
10635 (define-public r-credentials
10636 (package
10637 (name "r-credentials")
10638 (version "1.3.0")
10639 (source
10640 (origin
10641 (method url-fetch)
10642 (uri (cran-uri "credentials" version))
10643 (sha256
10644 (base32
10645 "1w9zj34xdwz9bszsvhv2cbgq96y5sgxbh7ndn31pgfcpzlkfq6f1"))))
10646 (properties `((upstream-name . "credentials")))
10647 (build-system r-build-system)
10648 (arguments
10649 `(#:phases
10650 (modify-phases %standard-phases
10651 (add-after 'unpack 'setenv-HOME
10652 (lambda _
10653 ;; This is necessary because git looks for $HOME/.gitconfig
10654 (setenv "HOME" "/tmp")
10655 #t)))))
10656 (inputs
10657 `(("git" ,git-minimal)))
10658 (propagated-inputs
10659 `(("r-askpass" ,r-askpass)
10660 ("r-curl" ,r-curl)
10661 ("r-jsonlite" ,r-jsonlite)
10662 ("r-openssl" ,r-openssl)
10663 ("r-sys" ,r-sys)))
10664 (native-inputs
10665 `(("r-knitr" ,r-knitr)))
10666 (home-page "https://docs.ropensci.org/credentials/")
10667 (synopsis "Tools for managing SSH and Git credentials")
10668 (description
10669 "This package assists you in setting up and retrieving of HTTPS and SSH
10670 credentials for use with git and other services. For HTTPS remotes the
10671 package interfaces the @command{git-credential} utility which @command{git}
10672 uses to store HTTP usernames and passwords. For SSH remotes this package
10673 provides convenient functions to find or generate appropriate SSH keys. The
10674 package both helps the user to setup a local git installation, and also
10675 provides a back-end for git/ssh client libraries to authenticate with existing
10676 user credentials.")
10677 (license license:expat)))
10678
10679 (define-public r-gert
10680 (package
10681 (name "r-gert")
10682 (version "1.2.0")
10683 (source
10684 (origin
10685 (method url-fetch)
10686 (uri (cran-uri "gert" version))
10687 (sha256
10688 (base32
10689 "0ag2ia6cfb5drf3517lg5nhik1w0nv09a75wdy5jdciws1qra3d6"))))
10690 (properties `((upstream-name . "gert")))
10691 (build-system r-build-system)
10692 (inputs
10693 `(("libgit2" ,libgit2)
10694 ("zlib" ,zlib)))
10695 (propagated-inputs
10696 `(("r-askpass" ,r-askpass)
10697 ("r-credentials" ,r-credentials)
10698 ("r-openssl" ,r-openssl)
10699 ("r-rstudioapi" ,r-rstudioapi)
10700 ("r-sys" ,r-sys)
10701 ("r-zip" ,r-zip)))
10702 (native-inputs
10703 `(("pkg-config" ,pkg-config)
10704 ("r-knitr" ,r-knitr)))
10705 (home-page "https://docs.ropensci.org/gert/")
10706 (synopsis "Simple Git client for R")
10707 (description
10708 "This package provides a simple git client for R based on libgit2 with
10709 support for SSH and HTTPS remotes. All functions in gert use basic R data
10710 types (such as vectors and data-frames) for their arguments and return values.
10711 User credentials are shared with command line git through the
10712 @code{git-credential} store and SSH keys stored on disk or ssh-agent.")
10713 (license license:expat)))
10714
10715 (define-public r-usethis
10716 (package
10717 (name "r-usethis")
10718 (version "2.0.1")
10719 (source
10720 (origin
10721 (method url-fetch)
10722 (uri (cran-uri "usethis" version))
10723 (sha256
10724 (base32
10725 "1j6nzzrm2m6vi1gq0d5kxnnr9d8cy88wpmgigz3inych65x9w9pg"))))
10726 (build-system r-build-system)
10727 (propagated-inputs
10728 `(("r-cli" ,r-cli)
10729 ("r-clipr" ,r-clipr)
10730 ("r-crayon" ,r-crayon)
10731 ("r-curl" ,r-curl)
10732 ("r-desc" ,r-desc)
10733 ("r-fs" ,r-fs)
10734 ("r-gert" ,r-gert)
10735 ("r-gh" ,r-gh)
10736 ("r-glue" ,r-glue)
10737 ("r-jsonlite" ,r-jsonlite)
10738 ("r-lifecycle" ,r-lifecycle)
10739 ("r-purrr" ,r-purrr)
10740 ("r-rappdirs" ,r-rappdirs)
10741 ("r-rlang" ,r-rlang)
10742 ("r-rprojroot" ,r-rprojroot)
10743 ("r-rstudioapi" ,r-rstudioapi)
10744 ("r-whisker" ,r-whisker)
10745 ("r-withr" ,r-withr)
10746 ("r-yaml" ,r-yaml)))
10747 (home-page "https://github.com/r-lib/usethis")
10748 (synopsis "Automate R package and project setup")
10749 (description
10750 "This package helps you to automate R package and project setup tasks
10751 that are otherwise performed manually. This includes setting up unit testing,
10752 test coverage, continuous integration, Git, GitHub integration, licenses,
10753 Rcpp, RStudio projects, and more.")
10754 (license license:gpl3)))
10755
10756 (define-public r-sessioninfo
10757 (package
10758 (name "r-sessioninfo")
10759 (version "1.1.1")
10760 (source
10761 (origin
10762 (method url-fetch)
10763 (uri (cran-uri "sessioninfo" version))
10764 (sha256
10765 (base32
10766 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
10767 (build-system r-build-system)
10768 (propagated-inputs
10769 `(("r-cli" ,r-cli)
10770 ("r-withr" ,r-withr)))
10771 (home-page "https://github.com/r-lib/sessioninfo#readme")
10772 (synopsis "R session information")
10773 (description
10774 "This package provides tools to query and print information about the
10775 current R session. It is similar to @code{utils::sessionInfo()}, but includes
10776 more information about packages, and where they were installed from.")
10777 (license license:gpl2)))
10778
10779 (define-public r-remotes
10780 (package
10781 (name "r-remotes")
10782 (version "2.2.0")
10783 (source
10784 (origin
10785 (method url-fetch)
10786 (uri (cran-uri "remotes" version))
10787 (sha256
10788 (base32
10789 "1f1kdw9j1wald3fs8b3n68x1kljy07j60g3aw1aarx26ikyk9whj"))))
10790 (build-system r-build-system)
10791 (native-inputs
10792 `(("r-knitr" ,r-knitr)))
10793 (home-page "https://github.com/r-lib/remotes#readme")
10794 (synopsis "R package installation from remote repositories")
10795 (description
10796 "Download and install R packages stored in GitHub, BitBucket, or plain
10797 subversion or git repositories. This package is a lightweight replacement of
10798 the @code{install_*} functions in the @code{devtools} package. Indeed most of
10799 the code was copied over from @code{devtools}.")
10800 (license license:gpl2+)))
10801
10802 (define-public r-xopen
10803 (package
10804 (name "r-xopen")
10805 (version "1.0.0")
10806 (source
10807 (origin
10808 (method url-fetch)
10809 (uri (cran-uri "xopen" version))
10810 (sha256
10811 (base32
10812 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
10813 (build-system r-build-system)
10814 (propagated-inputs
10815 `(("r-processx" ,r-processx)))
10816 (home-page "https://github.com/r-lib/xopen#readme")
10817 (synopsis "Open system files, URLs, anything")
10818 (description
10819 "This package provides a cross-platform solution to open files,
10820 directories or URLs with their associated programs.")
10821 (license license:expat)))
10822
10823 (define-public r-rcmdcheck
10824 (package
10825 (name "r-rcmdcheck")
10826 (version "1.3.3")
10827 (source
10828 (origin
10829 (method url-fetch)
10830 (uri (cran-uri "rcmdcheck" version))
10831 (sha256
10832 (base32
10833 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
10834 (build-system r-build-system)
10835 (propagated-inputs
10836 `(("r-callr" ,r-callr)
10837 ("r-cli" ,r-cli)
10838 ("r-crayon" ,r-crayon)
10839 ("r-desc" ,r-desc)
10840 ("r-digest" ,r-digest)
10841 ("r-pkgbuild" ,r-pkgbuild)
10842 ("r-prettyunits" ,r-prettyunits)
10843 ("r-r6" ,r-r6)
10844 ("r-rprojroot" ,r-rprojroot)
10845 ("r-sessioninfo" ,r-sessioninfo)
10846 ("r-withr" ,r-withr)
10847 ("r-xopen" ,r-xopen)))
10848 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
10849 (synopsis "Run R CMD check from R and capture results")
10850 (description
10851 "Run @code{R CMD check} from R programmatically, and capture the results
10852 of the individual checks.")
10853 (license license:expat)))
10854
10855 (define-public r-rapportools
10856 (package
10857 (name "r-rapportools")
10858 (version "1.0")
10859 (source
10860 (origin
10861 (method url-fetch)
10862 (uri (cran-uri "rapportools" version))
10863 (sha256
10864 (base32
10865 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
10866 (build-system r-build-system)
10867 (propagated-inputs
10868 `(("r-pander" ,r-pander)
10869 ("r-plyr" ,r-plyr)
10870 ("r-reshape" ,r-reshape)))
10871 (home-page "https://cran.r-project.org/web/packages/rapportools/")
10872 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
10873 (description
10874 "This package provides helper functions that act as wrappers to more
10875 advanced statistical methods with the advantage of having sane defaults for
10876 quick reporting.")
10877 (license license:agpl3+)))
10878
10879 (define-public r-pander
10880 (package
10881 (name "r-pander")
10882 (version "0.6.3")
10883 (source
10884 (origin
10885 (method url-fetch)
10886 (uri (cran-uri "pander" version))
10887 (sha256
10888 (base32
10889 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
10890 (build-system r-build-system)
10891 (propagated-inputs
10892 `(("r-digest" ,r-digest)
10893 ("r-rcpp" ,r-rcpp)))
10894 (home-page "https://rapporter.github.io/pander")
10895 (synopsis "Render R objects into Pandoc's markdown")
10896 (description
10897 "The main aim of the pander R package is to provide a minimal and easy
10898 tool for rendering R objects into Pandoc's markdown. The package is also
10899 capable of exporting/converting complex Pandoc documents (reports) in various
10900 ways.")
10901 ;; This package is licensed under either the AGPLv3+ or the very rarely
10902 ;; used OSL 3.0.
10903 (license license:agpl3+)))
10904
10905 (define-public r-summarytools
10906 (package
10907 (name "r-summarytools")
10908 (version "0.9.8")
10909 (source
10910 (origin
10911 (method url-fetch)
10912 (uri (cran-uri "summarytools" version))
10913 (sha256
10914 (base32
10915 "0n7rad6bkfn9cb99wbfzbwl5qzch48r0gafhddfcqvyh4fbn2k0j"))))
10916 (build-system r-build-system)
10917 (propagated-inputs
10918 `(("r-base64enc" ,r-base64enc)
10919 ("r-checkmate" ,r-checkmate)
10920 ("r-dplyr" ,r-dplyr)
10921 ("r-htmltools" ,r-htmltools)
10922 ("r-lubridate" ,r-lubridate)
10923 ("r-magick" ,r-magick)
10924 ("r-matrixstats" ,r-matrixstats)
10925 ("r-pander" ,r-pander)
10926 ("r-pryr" ,r-pryr)
10927 ("r-rapportools" ,r-rapportools)
10928 ("r-tibble" ,r-tibble)
10929 ("r-tidyr" ,r-tidyr)))
10930 (native-inputs
10931 `(("r-knitr" ,r-knitr)))
10932 (home-page "https://github.com/dcomtois/summarytools")
10933 (synopsis "Tools to quickly and neatly summarize data")
10934 (description
10935 "This package provides tools for data frame summaries, cross-tabulations,
10936 weight-enabled frequency tables and common univariate statistics in concise
10937 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
10938 good point-of-entry for exploring data, both for experienced and new R
10939 users.")
10940 (license license:gpl2)))
10941
10942 (define-public r-lsei
10943 (package
10944 (name "r-lsei")
10945 (version "1.3-0")
10946 (source
10947 (origin
10948 (method url-fetch)
10949 (uri (cran-uri "lsei" version))
10950 (sha256
10951 (base32
10952 "1dka0rigfw4vj809qma2dkiwjb3nw5635ynnba5cm299cn7hb2b2"))))
10953 (build-system r-build-system)
10954 (native-inputs
10955 `(("gfortran" ,gfortran)))
10956 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
10957 (synopsis "Solve regression problems under equality/inequality constraints")
10958 (description
10959 "It contains functions that solve least squares linear regression
10960 problems under linear equality/inequality constraints. Functions for solving
10961 quadratic programming problems are also available, which transform such
10962 problems into least squares ones first.")
10963 (license license:gpl2+)))
10964
10965 (define-public r-npsurv
10966 (package
10967 (name "r-npsurv")
10968 (version "0.5-0")
10969 (source
10970 (origin
10971 (method url-fetch)
10972 (uri (cran-uri "npsurv" version))
10973 (sha256
10974 (base32
10975 "1ihxhb42cga1hssj2jv4ah0f4hlwsky899ij5261fzh1wxvdp1xw"))))
10976 (build-system r-build-system)
10977 (propagated-inputs
10978 `(("r-lsei" ,r-lsei)))
10979 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
10980 (synopsis "Nonparametric survival analysis")
10981 (description
10982 "This package contains functions for non-parametric survival analysis of
10983 exact and interval-censored observations.")
10984 (license license:gpl2+)))
10985
10986 (define-public r-clusteval
10987 (package
10988 (name "r-clusteval")
10989 (version "0.1")
10990 (source
10991 (origin
10992 (method url-fetch)
10993 (uri (cran-uri "clusteval" version))
10994 (sha256
10995 (base32
10996 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
10997 (build-system r-build-system)
10998 (propagated-inputs
10999 `(("r-mvtnorm" ,r-mvtnorm)
11000 ("r-rcpp" ,r-rcpp)))
11001 (home-page "https://cran.r-project.org/web/packages/clusteval/")
11002 (synopsis "Evaluation of clustering algorithms")
11003 (description
11004 "This R package provides a suite of tools to evaluate clustering
11005 algorithms, clusterings, and individual clusters.")
11006 (license license:expat)))
11007
11008 (define-public r-tweedie
11009 (package
11010 (name "r-tweedie")
11011 (version "2.3.3")
11012 (source
11013 (origin
11014 (method url-fetch)
11015 (uri (cran-uri "tweedie" version))
11016 (sha256
11017 (base32
11018 "1nfhaqblvm62j8gfkyrgba5ai0pb2fsnrxp63637mhys2bawlcm0"))))
11019 (build-system r-build-system)
11020 (native-inputs `(("gfortran" ,gfortran)))
11021 (home-page "https://cran.r-project.org/web/packages/tweedie/")
11022 (synopsis "Evaluation of Tweedie exponential family models")
11023 (description
11024 "Maximum likelihood computations for Tweedie families, including the
11025 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
11026 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
11027 and related methods.")
11028 (license license:gpl2+)))
11029
11030 (define-public r-rcppgsl
11031 (package
11032 (name "r-rcppgsl")
11033 (version "0.3.8")
11034 (source
11035 (origin
11036 (method url-fetch)
11037 (uri (cran-uri "RcppGSL" version))
11038 (sha256
11039 (base32 "17nlayy6gvwb3v6l5aiqm84i75yf4dfi3zclxrgpqwf3j9v09yvz"))))
11040 (properties `((upstream-name . "RcppGSL")))
11041 (build-system r-build-system)
11042 (propagated-inputs
11043 `(("r-rcpp" ,r-rcpp)
11044 ("gsl" ,gsl)))
11045 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
11046 (synopsis "Rcpp integration for GSL vectors and matrices")
11047 (description
11048 "The GNU Scientific Library (or GSL) is a collection of numerical
11049 routines for scientific computing. It is particularly useful for C and C++
11050 programs as it provides a standard C interface to a wide range of mathematical
11051 routines. There are over 1000 functions in total with an extensive test
11052 suite. The RcppGSL package provides an easy-to-use interface between GSL data
11053 structures and R using concepts from Rcpp which is itself a package that eases
11054 the interfaces between R and C++.")
11055 (license license:gpl2+)))
11056
11057 (define-public r-mvabund
11058 (package
11059 (name "r-mvabund")
11060 (version "4.1.9")
11061 (source
11062 (origin
11063 (method url-fetch)
11064 (uri (cran-uri "mvabund" version))
11065 (sha256
11066 (base32
11067 "19kyg0agjk7gxipa5kmklz4cqh97xrdbibmmy1g99r1gp3s9ml30"))))
11068 (build-system r-build-system)
11069 (propagated-inputs
11070 `(("r-mass" ,r-mass)
11071 ("r-rcpp" ,r-rcpp)
11072 ("r-rcppgsl" ,r-rcppgsl)
11073 ("r-statmod" ,r-statmod)
11074 ("r-tweedie" ,r-tweedie)))
11075 (home-page "https://cran.r-project.org/web/packages/mvabund/")
11076 (synopsis "Statistical methods for analysing multivariate abundance data")
11077 (description
11078 "This package provides a set of tools for displaying, modeling and
11079 analysing multivariate abundance data in community ecology.")
11080 (license license:lgpl2.1+)))
11081
11082 (define-public r-afex
11083 (package
11084 (name "r-afex")
11085 (version "0.28-1")
11086 (source
11087 (origin
11088 (method url-fetch)
11089 (uri (cran-uri "afex" version))
11090 (sha256
11091 (base32
11092 "0blwqr5ni3psav1dcdmhfi4jy3b4scm5njimqfpr1d81zadvgc6g"))))
11093 (build-system r-build-system)
11094 (propagated-inputs
11095 `(("r-car" ,r-car)
11096 ("r-lme4" ,r-lme4)
11097 ("r-lmertest" ,r-lmertest)
11098 ("r-pbkrtest" ,r-pbkrtest)
11099 ("r-reshape2" ,r-reshape2)))
11100 (native-inputs
11101 `(("r-knitr" ,r-knitr)))
11102 (home-page "https://afex.singmann.science/")
11103 (synopsis "Analysis of factorial experiments")
11104 (description
11105 "This package provides convenience functions for analyzing factorial
11106 experiments using ANOVA or mixed models.")
11107 (license license:gpl2+)))
11108
11109 (define-public r-lmertest
11110 (package
11111 (name "r-lmertest")
11112 (version "3.1-3")
11113 (source
11114 (origin
11115 (method url-fetch)
11116 (uri (cran-uri "lmerTest" version))
11117 (sha256
11118 (base32
11119 "1zd8gqjkazhxgpnnr484xwsq30p62fq8592nzyc171zjyplpbaim"))))
11120 (properties `((upstream-name . "lmerTest")))
11121 (build-system r-build-system)
11122 (propagated-inputs
11123 `(("r-ggplot2" ,r-ggplot2)
11124 ("r-lme4" ,r-lme4)
11125 ("r-mass" ,r-mass)
11126 ("r-numderiv" ,r-numderiv)))
11127 (home-page "https://github.com/runehaubo/lmerTestR")
11128 (synopsis "Tests in linear mixed effects models")
11129 (description
11130 "This package provides p-values in type I, II or III anova and summary
11131 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
11132 method. A Kenward-Roger method is also available via the @code{pbkrtest}
11133 package. Model selection methods include step, drop1 and anova-like tables
11134 for random effects (ranova). Methods for Least-Square means (LS-means) and
11135 tests of linear contrasts of fixed effects are also available.")
11136 (license license:gpl2+)))
11137
11138 (define-public r-r2glmm
11139 (package
11140 (name "r-r2glmm")
11141 (version "0.1.2")
11142 (source
11143 (origin
11144 (method url-fetch)
11145 (uri (cran-uri "r2glmm" version))
11146 (sha256
11147 (base32
11148 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
11149 (build-system r-build-system)
11150 (propagated-inputs
11151 `(("r-afex" ,r-afex)
11152 ("r-data-table" ,r-data-table)
11153 ("r-dplyr" ,r-dplyr)
11154 ("r-ggplot2" ,r-ggplot2)
11155 ("r-gridextra" ,r-gridextra)
11156 ("r-lmertest" ,r-lmertest)
11157 ("r-mass" ,r-mass)
11158 ("r-matrix" ,r-matrix)
11159 ("r-mgcv" ,r-mgcv)
11160 ("r-pbkrtest" ,r-pbkrtest)))
11161 (home-page "https://github.com/bcjaeger/r2glmm")
11162 (synopsis "Compute R squared for mixed (multilevel) models")
11163 (description
11164 "This package computes model and semi partial R squared with confidence
11165 limits for the linear and generalized linear mixed model (LMM and GLMM). The
11166 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
11167 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
11168 al. (2016)).")
11169 (license license:gpl2)))
11170
11171 (define-public r-weights
11172 (package
11173 (name "r-weights")
11174 (version "1.0.1")
11175 (source
11176 (origin
11177 (method url-fetch)
11178 (uri (cran-uri "weights" version))
11179 (sha256
11180 (base32
11181 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
11182 (build-system r-build-system)
11183 (propagated-inputs
11184 `(("r-gdata" ,r-gdata)
11185 ("r-hmisc" ,r-hmisc)
11186 ("r-mice" ,r-mice)))
11187 (home-page
11188 "https://cran.r-project.org/web/packages/weights/")
11189 (synopsis "Weighting and weighted statistics")
11190 (description "This package Provides a variety of functions for producing
11191 simple weighted statistics, such as weighted Pearson's correlations, partial
11192 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
11193 includes some software for quickly recoding survey data and plotting point
11194 estimates from interaction terms in regressions (and multiply imputed
11195 regressions). NOTE: Weighted partial correlation calculations pulled to
11196 address a bug.")
11197 (license license:gpl2+)))
11198
11199 (define-public r-rcppannoy
11200 (package
11201 (name "r-rcppannoy")
11202 (version "0.0.18")
11203 (source
11204 (origin
11205 (method url-fetch)
11206 (uri (cran-uri "RcppAnnoy" version))
11207 (sha256
11208 (base32
11209 "0n68cf77gz34iq6w6ad87pbqwqam45nxp1gjzns4g6qhf7qdvrz4"))))
11210 (properties `((upstream-name . "RcppAnnoy")))
11211 (build-system r-build-system)
11212 (propagated-inputs
11213 `(("r-rcpp" ,r-rcpp)))
11214 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
11215 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
11216 (description
11217 "Annoy is a small C++ library for Approximate Nearest Neighbors written
11218 for efficient memory usage as well an ability to load from and save to disk.
11219 This package provides an R interface.")
11220 ;; Annoy is released under ASL 2.0, but this wrapper is released under
11221 ;; GPLv2+.
11222 (license (list license:gpl2+ license:asl2.0))))
11223
11224 (define-public r-rcpphnsw
11225 (package
11226 (name "r-rcpphnsw")
11227 (version "0.3.0")
11228 (source
11229 (origin
11230 (method url-fetch)
11231 (uri (cran-uri "RcppHNSW" version))
11232 (sha256
11233 (base32
11234 "01z0plf1i6dyibw4ica8shmijyk1grpqb886hcga72z2cpm4xsx0"))))
11235 (properties `((upstream-name . "RcppHNSW")))
11236 (build-system r-build-system)
11237 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11238 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
11239 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
11240 (description
11241 "Hnswlib is a C++ library for approximate nearest neighbors. This
11242 package provides a minimal R interface by relying on the Rcpp package.")
11243 ;; hnswlib is released under Version 2.0 of the Apache License.
11244 (license (list license:gpl3 license:asl2.0))))
11245
11246 (define-public r-rcppparallel
11247 (package
11248 (name "r-rcppparallel")
11249 (version "5.0.3")
11250 (source
11251 (origin
11252 (method url-fetch)
11253 (uri (cran-uri "RcppParallel" version))
11254 (sha256
11255 (base32
11256 "0ihcirny4al2ydymxhdfacwmybmrgrz5nm0lbf49gk2zy8w124ki"))))
11257 (properties `((upstream-name . "RcppParallel")))
11258 (build-system r-build-system)
11259 (home-page "https://rcppcore.github.io/RcppParallel/")
11260 (synopsis "Parallel programming tools for Rcpp")
11261 (description
11262 "This package provides high level functions for parallel programming with
11263 Rcpp. For example, the @code{parallelFor()} function can be used to convert
11264 the work of a standard serial @code{for} loop into a parallel one and the
11265 @code{parallelReduce()} function can be used for accumulating aggregates or
11266 other values.")
11267 (license license:gpl2)))
11268
11269 (define-public r-ncdf4
11270 (package
11271 (name "r-ncdf4")
11272 (version "1.17")
11273 (source
11274 (origin
11275 (method url-fetch)
11276 (uri (cran-uri "ncdf4" version))
11277 (sha256
11278 (base32
11279 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
11280 (build-system r-build-system)
11281 (inputs
11282 `(("netcdf" ,netcdf)
11283 ("zlib" ,zlib)))
11284 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
11285 (synopsis "R interface to Unidata netCDF format data files")
11286 (description
11287 "This package provides a high-level R interface to data files written
11288 using Unidata's netCDF library (version 4 or earlier), which are binary data
11289 files that are portable across platforms and include metadata information in
11290 addition to the data sets. Using this package, netCDF files can be opened and
11291 data sets read in easily. It is also easy to create new netCDF dimensions,
11292 variables, and files, in either version 3 or 4 format, and manipulate existing
11293 netCDF files.")
11294 (license license:gpl3+)))
11295
11296 (define-public r-biocmanager
11297 (package
11298 (name "r-biocmanager")
11299 (version "1.30.10")
11300 (source
11301 (origin
11302 (method url-fetch)
11303 (uri (cran-uri "BiocManager" version))
11304 (sha256
11305 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
11306 (properties `((upstream-name . "BiocManager")))
11307 (build-system r-build-system)
11308 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
11309 (synopsis "Access the Bioconductor project package repository")
11310 (description
11311 "This package provides a convenient tool to install and update
11312 Bioconductor packages.")
11313 (license license:artistic2.0)))
11314
11315 (define-public r-rgl
11316 (package
11317 (name "r-rgl")
11318 (version "0.105.22")
11319 (source
11320 (origin
11321 (method url-fetch)
11322 (uri (cran-uri "rgl" version))
11323 (sha256
11324 (base32
11325 "1y69phym8pkdh1k808y3rp1030xmhjpc8vig9035v9n1r7v7a1kz"))))
11326 (build-system r-build-system)
11327 (native-inputs
11328 `(("pkg-config" ,pkg-config)
11329 ("r-knitr" ,r-knitr)))
11330 (inputs
11331 `(("freetype" ,freetype)
11332 ("libpng" ,libpng)
11333 ("glu" ,glu)
11334 ("libx11" ,libx11)
11335 ("pandoc" ,pandoc)
11336 ("zlib" ,zlib)))
11337 (propagated-inputs
11338 `(("r-crosstalk" ,r-crosstalk)
11339 ("r-htmltools" ,r-htmltools)
11340 ("r-htmlwidgets" ,r-htmlwidgets)
11341 ("r-jsonlite" ,r-jsonlite)
11342 ("r-knitr" ,r-knitr)
11343 ("r-magrittr" ,r-magrittr)
11344 ("r-manipulatewidget" ,r-manipulatewidget)
11345 ("r-shiny" ,r-shiny)))
11346 (home-page "https://r-forge.r-project.org/projects/rgl/")
11347 (synopsis "3D visualization using OpenGL")
11348 (description
11349 "This package provides medium to high level functions for 3D interactive graphics,
11350 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
11351 as functions for constructing representations of geometric
11352 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
11353 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
11354 image formats, including PNG, Postscript, SVG, PGF.")
11355 ;; Any version of the GPL.
11356 (license (list license:gpl2+ license:gpl3+))))
11357
11358 (define-public r-multicool
11359 (package
11360 (name "r-multicool")
11361 (version "0.1-11")
11362 (source
11363 (origin
11364 (method url-fetch)
11365 (uri (cran-uri "multicool" version))
11366 (sha256
11367 (base32
11368 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
11369 (build-system r-build-system)
11370 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11371 (home-page "https://cran.r-project.org/web/packages/multicool/")
11372 (synopsis "Permutations of multisets in cool-lex order")
11373 (description
11374 "This package provides a set of tools to permute multisets without loops
11375 or hash tables and to generate integer partitions. Cool-lex order is similar
11376 to colexicographical order.")
11377 (license license:gpl2)))
11378
11379 (define-public r-misc3d
11380 (package
11381 (name "r-misc3d")
11382 (version "0.9-0")
11383 (source
11384 (origin
11385 (method url-fetch)
11386 (uri (cran-uri "misc3d" version))
11387 (sha256
11388 (base32
11389 "10jf5r1x588vi54bzaqgi9mgcqlkiga2c3jvmqmk3lavc8fjksd1"))))
11390 (build-system r-build-system)
11391 (home-page "https://cran.r-project.org/web/packages/misc3d/")
11392 (synopsis "Miscellaneous 3D Plots")
11393 (description
11394 "This package provides a collection of miscellaneous 3d plots, including
11395 isosurfaces.")
11396 ;; Any version of the GPL.
11397 (license (list license:gpl2+ license:gpl3+))))
11398
11399 (define-public r-ks
11400 (package
11401 (name "r-ks")
11402 (version "1.12.0")
11403 (source
11404 (origin
11405 (method url-fetch)
11406 (uri (cran-uri "ks" version))
11407 (sha256
11408 (base32 "1sff6rlpq64lqyvwgral9zbcan30wpgmfb26hw9y6wzypd9gxbz6"))))
11409 (build-system r-build-system)
11410 (propagated-inputs
11411 `(("r-fnn" ,r-fnn)
11412 ("r-kernlab" ,r-kernlab)
11413 ("r-kernsmooth" ,r-kernsmooth)
11414 ("r-matrix" ,r-matrix)
11415 ("r-mclust" ,r-mclust)
11416 ("r-mgcv" ,r-mgcv)
11417 ("r-multicool" ,r-multicool)
11418 ("r-mvtnorm" ,r-mvtnorm)
11419 ("r-plot3d" ,r-plot3d)))
11420 (home-page "https://www.mvstat.net/tduong/")
11421 (synopsis "Kernel smoothing")
11422 (description
11423 "This package provides kernel smoothers for univariate and multivariate
11424 data, including density functions, density derivatives, cumulative
11425 distributions, modal clustering, discriminant analysis, and two-sample
11426 hypothesis testing.")
11427 ;; Either version of the GPL.
11428 (license (list license:gpl2 license:gpl3))))
11429
11430 (define-public r-feature
11431 (package
11432 (name "r-feature")
11433 (version "1.2.15")
11434 (source
11435 (origin
11436 (method url-fetch)
11437 (uri (cran-uri "feature" version))
11438 (sha256
11439 (base32
11440 "0yzn1w1sasilcp8v0pcjnxjv9l6lspkskqi412i6h040gqmjjf6y"))))
11441 (build-system r-build-system)
11442 (propagated-inputs
11443 `(("r-ks" ,r-ks)
11444 ("r-plot3d" ,r-plot3d)))
11445 (native-inputs
11446 `(("r-knitr" ,r-knitr)))
11447 (home-page "https://www.mvstat.net/tduong/")
11448 (synopsis "Inferential feature significance for kernel density estimation")
11449 (description
11450 "The feature package contains functions to display and compute kernel
11451 density estimates, significant gradient and significant curvature regions.
11452 Significant gradient and/or curvature regions often correspond to significant
11453 features (e.g. local modes).")
11454 ;; Either version of the GPL.
11455 (license (list license:gpl2 license:gpl3))))
11456
11457 (define-public r-arm
11458 (package
11459 (name "r-arm")
11460 (version "1.11-2")
11461 (source
11462 (origin
11463 (method url-fetch)
11464 (uri (cran-uri "arm" version))
11465 (sha256
11466 (base32
11467 "1grb27vayr2vhyalzfqbhx6p278r7c3l4pzi5nrz3dmnyqrbx1c3"))))
11468 (build-system r-build-system)
11469 (propagated-inputs
11470 `(("r-abind" ,r-abind)
11471 ("r-coda" ,r-coda)
11472 ("r-hmisc" ,r-hmisc)
11473 ("r-lme4" ,r-lme4)
11474 ("r-mass" ,r-mass)
11475 ("r-matrix" ,r-matrix)
11476 ("r-nlme" ,r-nlme)))
11477 (home-page "https://cran.r-project.org/web/packages/arm/")
11478 (synopsis "Data analysis using regression and multilevel/hierarchical models")
11479 (description
11480 "This package provides functions to accompany A. Gelman and J. Hill,
11481 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
11482 University Press, 2007.")
11483 (license license:gpl3+)))
11484
11485 (define-public r-circular
11486 (package
11487 (name "r-circular")
11488 (version "0.4-93")
11489 (source
11490 (origin
11491 (method url-fetch)
11492 (uri (cran-uri "circular" version))
11493 (sha256
11494 (base32
11495 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
11496 (build-system r-build-system)
11497 (propagated-inputs
11498 `(("r-boot" ,r-boot)
11499 ("r-mvtnorm" ,r-mvtnorm)))
11500 (native-inputs
11501 `(("gfortran" ,gfortran)))
11502 (home-page "https://cran.r-project.org/web/packages/circular/")
11503 (synopsis "Circular statistics")
11504 (description
11505 "This package provides tools for circular statistics, from \"Topics in
11506 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
11507 Scientific.")
11508 (license license:gpl2+)))
11509
11510 (define-public r-activity
11511 (package
11512 (name "r-activity")
11513 (version "1.3.1")
11514 (source
11515 (origin
11516 (method url-fetch)
11517 (uri (cran-uri "activity" version))
11518 (sha256
11519 (base32
11520 "1wn2a0hx7wfr2jyj1b772w5fgl6bcqkkw8cybais2s1wyjx8kjr5"))))
11521 (build-system r-build-system)
11522 (propagated-inputs
11523 `(("r-circular" ,r-circular)
11524 ("r-insol" ,r-insol)
11525 ("r-pbapply" ,r-pbapply)))
11526 (home-page "https://cran.r-project.org/web/packages/activity/")
11527 (synopsis "Animal activity statistics")
11528 (description
11529 "This package provides functions to fit kernel density functions to
11530 animal activity time data; plot activity distributions; quantify overall
11531 levels of activity; statistically compare activity metrics through
11532 bootstrapping; and evaluate variation in linear variables with time (or other
11533 circular variables).")
11534 (license license:gpl3)))
11535
11536 (define-public r-ouch
11537 (package
11538 (name "r-ouch")
11539 (version "2.15-1")
11540 (source
11541 (origin
11542 (method url-fetch)
11543 (uri (cran-uri "ouch" version))
11544 (sha256
11545 (base32
11546 "0myddn3b28pswyk42kvwhyvkj30q41f677vpxclxacdfkhgvrj6q"))))
11547 (build-system r-build-system)
11548 (propagated-inputs `(("r-subplex" ,r-subplex)))
11549 (home-page "https://kingaa.github.io/ouch/")
11550 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
11551 (description
11552 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
11553 for evolution along a phylogenetic tree.")
11554 (license license:gpl2+)))
11555
11556 (define-public r-fmsb
11557 (package
11558 (name "r-fmsb")
11559 (version "0.7.0")
11560 (source
11561 (origin
11562 (method url-fetch)
11563 (uri (cran-uri "fmsb" version))
11564 (sha256
11565 (base32
11566 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
11567 (build-system r-build-system)
11568 (home-page "http://minato.sip21c.org/msb/")
11569 (synopsis "Functions for medical statistics book with demographic data")
11570 (description
11571 "This package provides several utility functions for the book entitled
11572 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
11573 Japan, 2007) with Japanese demographic data and some demographic analysis
11574 related functions.")
11575 (license license:gpl2+)))
11576
11577 (define-public r-stabledist
11578 (package
11579 (name "r-stabledist")
11580 (version "0.7-1")
11581 (source
11582 (origin
11583 (method url-fetch)
11584 (uri (cran-uri "stabledist" version))
11585 (sha256
11586 (base32
11587 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
11588 (build-system r-build-system)
11589 (home-page "https://www.rmetrics.org")
11590 (synopsis "Stable distribution functions")
11591 (description
11592 "This package provides density, probability and quantile functions, and
11593 random number generation for (skew) stable distributions, using the
11594 parametrizations of Nolan.")
11595 (license license:gpl2+)))
11596
11597 (define-public r-gsl
11598 (package
11599 (name "r-gsl")
11600 (version "2.1-6")
11601 (source
11602 (origin
11603 (method url-fetch)
11604 (uri (cran-uri "gsl" version))
11605 (sha256
11606 (base32
11607 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
11608 (build-system r-build-system)
11609 (inputs
11610 `(("gsl" ,gsl)))
11611 (home-page "https://cran.r-project.org/web/packages/gsl")
11612 (synopsis "Wrapper for the GNU Scientific Library")
11613 (description
11614 "This package provides an R wrapper for the special functions and quasi
11615 random number generators of the GNU Scientific Library.")
11616 (license license:gpl2+)))
11617
11618 (define-public r-adgoftest
11619 (package
11620 (name "r-adgoftest")
11621 (version "0.3")
11622 (source
11623 (origin
11624 (method url-fetch)
11625 (uri (cran-uri "ADGofTest" version))
11626 (sha256
11627 (base32
11628 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
11629 (properties `((upstream-name . "ADGofTest")))
11630 (build-system r-build-system)
11631 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
11632 (synopsis "Anderson-Darling GoF test")
11633 (description
11634 "This package provides an implementation of the Anderson-Darling GoF test
11635 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
11636 Anderson-Darling Distribution\".")
11637 ;; Any version of the GPL.
11638 (license license:gpl3+)))
11639
11640 (define-public r-sodium
11641 (package
11642 (name "r-sodium")
11643 (version "1.1")
11644 (source
11645 (origin
11646 (method url-fetch)
11647 (uri (cran-uri "sodium" version))
11648 (sha256
11649 (base32
11650 "1zxzi8xvxnhgcd5qrylf08nz1cdq3aslrswjas440qg63ypmbf6w"))))
11651 (properties `((upstream-name . "sodium")))
11652 (build-system r-build-system)
11653 (inputs
11654 `(("libsodium" ,libsodium)))
11655 (native-inputs
11656 `(("pkg-config" ,pkg-config)
11657 ("r-knitr" ,r-knitr)))
11658 (home-page "https://github.com/jeroen/sodium")
11659 (synopsis "R bindings to the libsodium crypto library")
11660 (description
11661 "This package provides bindings to libsodium: a library for encryption,
11662 decryption, signatures, password hashing and more. Sodium uses curve25519, a
11663 Diffie-Hellman function by Daniel Bernstein, which has become very popular
11664 after it was discovered that the NSA had backdoored Dual EC DRBG.")
11665 (license license:expat)))
11666
11667 (define-public r-softimpute
11668 (package
11669 (name "r-softimpute")
11670 (version "1.4")
11671 (source
11672 (origin
11673 (method url-fetch)
11674 (uri (cran-uri "softImpute" version))
11675 (sha256
11676 (base32
11677 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
11678 (properties `((upstream-name . "softImpute")))
11679 (build-system r-build-system)
11680 (propagated-inputs
11681 `(("r-matrix" ,r-matrix)))
11682 (native-inputs
11683 `(("gfortran" ,gfortran)))
11684 (home-page "https://cran.r-project.org/web/packages/softImpute")
11685 (synopsis "Matrix completion via iterative soft-thresholded SVD")
11686 (description
11687 "This package provides iterative methods for matrix completion that use
11688 nuclear-norm regularization. The package includes procedures for centering
11689 and scaling rows, columns or both, and for computing low-rank @dfn{single
11690 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
11691 components).")
11692 (license license:gpl2)))
11693
11694 (define-public r-fftwtools
11695 (package
11696 (name "r-fftwtools")
11697 (version "0.9-11")
11698 (source
11699 (origin
11700 (method url-fetch)
11701 (uri (cran-uri "fftwtools" version))
11702 (sha256
11703 (base32
11704 "0zrchp4l0jdbir2gibjf00x225y9giqk80zvqmr2yyvc12lwkw7i"))))
11705 (build-system r-build-system)
11706 (inputs `(("fftw" ,fftw)))
11707 (native-inputs
11708 `(("pkg-config" ,pkg-config)))
11709 (home-page "https://github.com/krahim/fftwtools")
11710 (synopsis "Wrapper for FFTW3")
11711 (description
11712 "This package provides a wrapper for several FFTW functions. It provides
11713 access to the two-dimensional FFT, the multivariate FFT, and the
11714 one-dimensional real to complex FFT using the FFTW3 library. The package
11715 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
11716 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
11717 The FFT functions have a parameter that allows them to not return the
11718 redundant complex conjugate when the input is real data.")
11719 (license license:gpl2+)))
11720
11721 (define-public r-tiff
11722 (package
11723 (name "r-tiff")
11724 (version "0.1-7")
11725 (source
11726 (origin
11727 (method url-fetch)
11728 (uri (cran-uri "tiff" version))
11729 (sha256
11730 (base32
11731 "101n6x70fr1dhcwx53g3s8q1j4wh93y0388v1s1316f8558rxqxh"))))
11732 (build-system r-build-system)
11733 (inputs
11734 `(("libtiff" ,libtiff)
11735 ("libjpeg" ,libjpeg-turbo)
11736 ("zlib" ,zlib)))
11737 (home-page "https://www.rforge.net/tiff/")
11738 (synopsis "Read and write TIFF images")
11739 (description
11740 "This package provides an easy and simple way to read, write and display
11741 bitmap images stored in the TIFF format. It can read and write both files and
11742 in-memory raw vectors.")
11743 ;; Either of these two license versions.
11744 (license (list license:gpl2 license:gpl3))))
11745
11746 (define-public r-nlp
11747 (package
11748 (name "r-nlp")
11749 (version "0.2-1")
11750 (source
11751 (origin
11752 (method url-fetch)
11753 (uri (cran-uri "NLP" version))
11754 (sha256
11755 (base32
11756 "1dpj04fmld2lnhg072ahgjbhmciqqy9h1lrz0wf32mr7mm9s9sh5"))))
11757 (properties `((upstream-name . "NLP")))
11758 (build-system r-build-system)
11759 (home-page "https://cran.r-project.org/web/packages/NLP/")
11760 (synopsis "Natural language processing infrastructure")
11761 (description
11762 "This package provides basic classes and methods for Natural Language
11763 Processing.")
11764 (license license:gpl3)))
11765
11766 (define-public r-tm
11767 (package
11768 (name "r-tm")
11769 (version "0.7-8")
11770 (source
11771 (origin
11772 (method url-fetch)
11773 (uri (cran-uri "tm" version))
11774 (sha256
11775 (base32
11776 "0mk2lsplynms15nw92vbdgsafg4bw1m0ik31gch1mnsnv61idsxi"))))
11777 (properties `((upstream-name . "tm")))
11778 (build-system r-build-system)
11779 (propagated-inputs
11780 `(("r-bh" ,r-bh)
11781 ("r-nlp" ,r-nlp)
11782 ("r-rcpp" ,r-rcpp)
11783 ("r-slam" ,r-slam)
11784 ("r-xml2" ,r-xml2)))
11785 (home-page "http://tm.r-forge.r-project.org/")
11786 (synopsis "Text mining package")
11787 (description
11788 "This package provides a framework for text mining applications within R.")
11789 (license license:gpl3)))
11790
11791 (define-public r-waveslim
11792 (package
11793 (name "r-waveslim")
11794 (version "1.8.2")
11795 (source
11796 (origin
11797 (method url-fetch)
11798 (uri (cran-uri "waveslim" version))
11799 (sha256
11800 (base32
11801 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
11802 (build-system r-build-system)
11803 (native-inputs
11804 `(("gfortran" ,gfortran)))
11805 (home-page "http://waveslim.blogspot.com")
11806 (synopsis "Basic wavelet routines for signal processing")
11807 (description
11808 "This package provides basic wavelet routines for time series (1D),
11809 image (2D) and array (3D) analysis. The code provided here is based on
11810 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
11811 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
11812 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
11813 pairs (Selesnick 2001, 2002).")
11814 (license license:bsd-3)))
11815
11816 (define-public r-wordcloud
11817 (package
11818 (name "r-wordcloud")
11819 (version "2.6")
11820 (source
11821 (origin
11822 (method url-fetch)
11823 (uri (cran-uri "wordcloud" version))
11824 (sha256
11825 (base32
11826 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
11827 (build-system r-build-system)
11828 (propagated-inputs
11829 `(("r-rcolorbrewer" ,r-rcolorbrewer)
11830 ("r-rcpp" ,r-rcpp)
11831 ;; The "tm" package is only "suggested" according to CRAN, but the
11832 ;; wordcloud package cannot be loaded without it.
11833 ("r-tm" ,r-tm)))
11834 (home-page "https://cran.r-project.org/web/packages/wordcloud")
11835 (synopsis "Word clouds")
11836 (description
11837 "This package provides functionality to create pretty word clouds,
11838 visualize differences and similarity between documents, and avoid
11839 over-plotting in scatter plots with text.")
11840 (license license:lgpl2.1)))
11841
11842 (define-public r-colorramps
11843 (package
11844 (name "r-colorramps")
11845 (version "2.3")
11846 (source
11847 (origin
11848 (method url-fetch)
11849 (uri (cran-uri "colorRamps" version))
11850 (sha256
11851 (base32
11852 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
11853 (properties `((upstream-name . "colorRamps")))
11854 (build-system r-build-system)
11855 (home-page "https://cran.r-project.org/web/packages/colorRamps")
11856 (synopsis "Build color tables")
11857 (description "This package provides features to build gradient color
11858 maps.")
11859 ;; Any version of the GPL
11860 (license license:gpl3+)))
11861
11862 (define-public r-tidytree
11863 (package
11864 (name "r-tidytree")
11865 (version "0.3.3")
11866 (source
11867 (origin
11868 (method url-fetch)
11869 (uri (cran-uri "tidytree" version))
11870 (sha256
11871 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
11872 (build-system r-build-system)
11873 (propagated-inputs
11874 `(("r-ape" ,r-ape)
11875 ("r-dplyr" ,r-dplyr)
11876 ("r-lazyeval" ,r-lazyeval)
11877 ("r-magrittr" ,r-magrittr)
11878 ("r-rlang" ,r-rlang)
11879 ("r-tibble" ,r-tibble)))
11880 (native-inputs
11881 `(("r-knitr" ,r-knitr)))
11882 (home-page "https://github.com/GuangchuangYu/tidytree")
11883 (synopsis "Tidy tool for phylogenetic tree data manipulation")
11884 (description
11885 "Phylogenetic trees generally contain multiple components including nodes,
11886 edges, branches and associated data. This package provides an approach to
11887 convert tree objects to tidy data frames. It also provides tidy interfaces to
11888 manipulate tree data.")
11889 (license license:artistic2.0)))
11890
11891 (define-public r-rvcheck
11892 (package
11893 (name "r-rvcheck")
11894 (version "0.1.8")
11895 (source
11896 (origin
11897 (method url-fetch)
11898 (uri (cran-uri "rvcheck" version))
11899 (sha256
11900 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
11901 (build-system r-build-system)
11902 (propagated-inputs
11903 `(("r-biocmanager" ,r-biocmanager)
11904 ("r-rlang" ,r-rlang)))
11905 (home-page "https://cran.r-project.org/web/packages/rvcheck")
11906 (synopsis "R package version check")
11907 (description
11908 "This package provides tools to check the latest release version of R and
11909 R packages (on CRAN, Bioconductor or Github).")
11910 (license license:artistic2.0)))
11911
11912 (define-public r-docopt
11913 (package
11914 (name "r-docopt")
11915 (version "0.7.1")
11916 (source
11917 (origin
11918 (method url-fetch)
11919 (uri (cran-uri "docopt" version))
11920 (sha256
11921 (base32
11922 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
11923 (build-system r-build-system)
11924 (home-page "https://github.com/docopt/docopt.R")
11925 (synopsis "Command-line interface specification language")
11926 (description
11927 "This package enables you to define a command-line interface by just
11928 giving it a description in the specific format.")
11929 (license license:expat)))
11930
11931 (define-public r-sparsesvd
11932 (package
11933 (name "r-sparsesvd")
11934 (version "0.2")
11935 (source
11936 (origin
11937 (method url-fetch)
11938 (uri (cran-uri "sparsesvd" version))
11939 (sha256
11940 (base32
11941 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
11942 (build-system r-build-system)
11943 (propagated-inputs `(("r-matrix" ,r-matrix)))
11944 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
11945 (synopsis "Sparse truncated singular value decomposition")
11946 (description
11947 "This package provides a Wrapper around the SVDLIBC library
11948 for (truncated) singular value decomposition of a sparse matrix. Currently,
11949 only sparse real matrices in Matrix package format are supported.")
11950 ;; SVDLIBC is released under BSD-2. The R interface is released under
11951 ;; BSD-3.
11952 (license (list license:bsd-3 license:bsd-2))))
11953
11954 (define-public r-speedglm
11955 (package
11956 (name "r-speedglm")
11957 (version "0.3-3")
11958 (source
11959 (origin
11960 (method url-fetch)
11961 (uri (cran-uri "speedglm" version))
11962 (sha256
11963 (base32
11964 "0f37w4lj8dpcg1sfkd7cv6qpdkanmb97mnd8zih2fxzv8bpd0rfh"))))
11965 (build-system r-build-system)
11966 (propagated-inputs
11967 `(("r-mass" ,r-mass)
11968 ("r-matrix" ,r-matrix)))
11969 (home-page "https://cran.r-project.org/web/packages/speedglm")
11970 (synopsis "Fit linear and generalized linear models to large data sets")
11971 (description
11972 "This package provides tools for fitting linear models and generalized
11973 linear models to large data sets by updating algorithms.")
11974 ;; Any version of the GPL
11975 (license license:gpl2+)))
11976
11977 (define-public r-densityclust
11978 (package
11979 (name "r-densityclust")
11980 (version "0.3")
11981 (source
11982 (origin
11983 (method url-fetch)
11984 (uri (cran-uri "densityClust" version))
11985 (sha256
11986 (base32
11987 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
11988 (properties `((upstream-name . "densityClust")))
11989 (build-system r-build-system)
11990 (propagated-inputs
11991 `(("r-fnn" ,r-fnn)
11992 ("r-ggplot2" ,r-ggplot2)
11993 ("r-ggrepel" ,r-ggrepel)
11994 ("r-gridextra" ,r-gridextra)
11995 ("r-rcolorbrewer" ,r-rcolorbrewer)
11996 ("r-rcpp" ,r-rcpp)
11997 ("r-rtsne" ,r-rtsne)))
11998 (home-page "https://cran.r-project.org/web/packages/densityClust")
11999 (synopsis "Clustering by fast search and find of density peaks")
12000 (description
12001 "This package provides an improved implementation (based on k-nearest
12002 neighbors) of the density peak clustering algorithm, originally described by
12003 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
12004 large datasets (> 100,000 samples) very efficiently.")
12005 (license license:gpl2+)))
12006
12007 (define-public r-combinat
12008 (package
12009 (name "r-combinat")
12010 (version "0.0-8")
12011 (source
12012 (origin
12013 (method url-fetch)
12014 (uri (cran-uri "combinat" version))
12015 (sha256
12016 (base32
12017 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
12018 (build-system r-build-system)
12019 (home-page "https://cran.r-project.org/web/packages/combinat")
12020 (synopsis "Combinatorics utilities")
12021 (description "This package provides assorted routines for combinatorics.")
12022 (license license:gpl2)))
12023
12024 (define-public r-qlcmatrix
12025 (package
12026 (name "r-qlcmatrix")
12027 (version "0.9.7")
12028 (source
12029 (origin
12030 (method url-fetch)
12031 (uri (cran-uri "qlcMatrix" version))
12032 (sha256
12033 (base32
12034 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
12035 (properties `((upstream-name . "qlcMatrix")))
12036 (build-system r-build-system)
12037 (propagated-inputs
12038 `(("r-docopt" ,r-docopt)
12039 ("r-matrix" ,r-matrix)
12040 ("r-slam" ,r-slam)
12041 ("r-sparsesvd" ,r-sparsesvd)))
12042 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
12043 (synopsis "Sparse matrix functions for quantitative language comparison")
12044 (description
12045 "This package provides an extension of the functionality of the Matrix
12046 package for using sparse matrices. Some of the functions are very general,
12047 while other are highly specific for the special data format used for
12048 @dfn{quantitative language comparison} (QLC).")
12049 (license license:gpl3)))
12050
12051 (define-public r-ddrtree
12052 (package
12053 (name "r-ddrtree")
12054 (version "0.1.5")
12055 (source
12056 (origin
12057 (method url-fetch)
12058 (uri (cran-uri "DDRTree" version))
12059 (sha256
12060 (base32
12061 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
12062 (properties `((upstream-name . "DDRTree")))
12063 (build-system r-build-system)
12064 (propagated-inputs
12065 `(("r-bh" ,r-bh)
12066 ("r-irlba" ,r-irlba)
12067 ("r-rcpp" ,r-rcpp)
12068 ("r-rcppeigen" ,r-rcppeigen)))
12069 (home-page "https://cran.r-project.org/web/packages/DDRTree")
12070 (synopsis "Learning principal graphs with DDRTree")
12071 (description
12072 "This package provides an implementation of the framework of
12073 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
12074 dimensional space while constructs a principal tree which passes through the
12075 middle of the data simultaneously. DDRTree shows superiority to
12076 alternatives (Wishbone, DPT) for inferring the ordering as well as the
12077 intrinsic structure of single cell genomics data. In general, it could be
12078 used to reconstruct the temporal progression as well as the bifurcation
12079 structure of any data type.")
12080 (license license:asl2.0)))
12081
12082 (define-public r-corpcor
12083 (package
12084 (name "r-corpcor")
12085 (version "1.6.9")
12086 (source
12087 (origin
12088 (method url-fetch)
12089 (uri (cran-uri "corpcor" version))
12090 (sha256
12091 (base32
12092 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
12093 (build-system r-build-system)
12094 (home-page "http://strimmerlab.org/software/corpcor/")
12095 (synopsis "Efficient estimation of covariance and (partial) correlation")
12096 (description
12097 "This package implements a James-Stein-type shrinkage estimator for the
12098 covariance matrix, with separate shrinkage for variances and correlations.
12099 Furthermore, functions are available for fast singular value decomposition,
12100 for computing the pseudoinverse, and for checking the rank and positive
12101 definiteness of a matrix.")
12102 (license license:gpl3+)))
12103
12104 (define-public r-rspectra
12105 (package
12106 (name "r-rspectra")
12107 (version "0.16-0")
12108 (source
12109 (origin
12110 (method url-fetch)
12111 (uri (cran-uri "RSpectra" version))
12112 (sha256
12113 (base32
12114 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
12115 (properties `((upstream-name . "RSpectra")))
12116 (build-system r-build-system)
12117 (propagated-inputs
12118 `(("r-matrix" ,r-matrix)
12119 ("r-rcpp" ,r-rcpp)
12120 ("r-rcppeigen" ,r-rcppeigen)))
12121 (home-page "https://github.com/yixuan/RSpectra")
12122 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
12123 (description
12124 "This package provides an R interface to the Spectra library for
12125 large-scale eigenvalue and SVD problems. It is typically used to compute a
12126 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
12127 which is usually more efficient than @code{eigen()} if k << n.")
12128 ;; MPL 2 or later.
12129 (license license:mpl2.0)))
12130
12131 (define-public r-vbsr
12132 (package
12133 (name "r-vbsr")
12134 (version "0.0.5")
12135 (source
12136 (origin
12137 (method url-fetch)
12138 (uri (cran-uri "vbsr" version))
12139 (sha256
12140 (base32
12141 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
12142 (build-system r-build-system)
12143 (home-page "https://cran.r-project.org/web/packages/vbsr")
12144 (synopsis "Variational Bayes spike regression regularized linear models")
12145 (description
12146 "This package provides an efficient algorithm for solving ultra-sparse
12147 regularized regression models using a variational Bayes algorithm with a spike
12148 prior. The algorithm is solved on a path, with coordinate updates, and is
12149 capable of generating very sparse models. Very general model
12150 diagnostics for controlling type-1 errors are also provided.")
12151 (license license:gpl2)))
12152
12153 (define-public r-flare
12154 (package
12155 (name "r-flare")
12156 (version "1.7.0")
12157 (source
12158 (origin
12159 (method url-fetch)
12160 (uri (cran-uri "flare" version))
12161 (sha256
12162 (base32
12163 "0f992dmgnr6s8g3386i9bjfyf08q8srgw7sjz2yx7snj8znq7251"))))
12164 (build-system r-build-system)
12165 (propagated-inputs
12166 `(("r-igraph" ,r-igraph)
12167 ("r-lattice" ,r-lattice)
12168 ("r-mass" ,r-mass)
12169 ("r-matrix" ,r-matrix)))
12170 (home-page "https://cran.r-project.org/web/packages/flare")
12171 (synopsis "Family of Lasso regression implementations")
12172 (description
12173 "This package provides implementations of a family of Lasso variants
12174 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
12175 high dimensional sparse linear models.")
12176 (license license:gpl2)))
12177
12178 (define-public r-lassopv
12179 (package
12180 (name "r-lassopv")
12181 (version "0.2.0")
12182 (source
12183 (origin
12184 (method url-fetch)
12185 (uri (cran-uri "lassopv" version))
12186 (sha256
12187 (base32
12188 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
12189 (build-system r-build-system)
12190 (propagated-inputs `(("r-lars" ,r-lars)))
12191 (home-page "https://github.com/lingfeiwang/lassopv")
12192 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
12193 (description
12194 "This package enables you to estimate the p-values for predictors x
12195 against target variable y in Lasso regression, using the regularization
12196 strength when each predictor enters the active set of regularization path for
12197 the first time as the statistic.")
12198 (license license:gpl3)))
12199
12200 (define-public r-splitstackshape
12201 (package
12202 (name "r-splitstackshape")
12203 (version "1.4.8")
12204 (source
12205 (origin
12206 (method url-fetch)
12207 (uri (cran-uri "splitstackshape" version))
12208 (sha256
12209 (base32
12210 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
12211 (build-system r-build-system)
12212 (propagated-inputs
12213 `(("r-data-table" ,r-data-table)))
12214 (home-page "https://github.com/mrdwab/splitstackshape")
12215 (synopsis "Stack and reshape datasets after splitting concatenated values")
12216 (description
12217 "Online data collection tools like Google Forms often export
12218 multiple-response questions with data concatenated in cells. The
12219 @code{concat.split} (cSplit) family of functions provided by this package
12220 splits such data into separate cells. This package also includes functions to
12221 stack groups of columns and to reshape wide data, even when the data are
12222 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
12223 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
12224 handle.")
12225 (license license:gpl3)))
12226
12227 (define-public r-tfmpvalue
12228 (package
12229 (name "r-tfmpvalue")
12230 (version "0.0.8")
12231 (source
12232 (origin
12233 (method url-fetch)
12234 (uri (cran-uri "TFMPvalue" version))
12235 (sha256
12236 (base32
12237 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
12238 (properties `((upstream-name . "TFMPvalue")))
12239 (build-system r-build-system)
12240 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12241 (home-page "https://github.com/ge11232002/TFMPvalue")
12242 (synopsis "P-value computation for position weight matrices")
12243 (description
12244 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
12245 identification from sequence/alignments, we are interested in the significance
12246 of certain match scores. TFMPvalue provides the accurate calculation of a
12247 p-value with a score threshold for position weight matrices, or the score with
12248 a given p-value. It is an interface to code originally made available by
12249 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
12250 Touzet and Varre (2007).")
12251 (license license:gpl2)))
12252
12253 (define-public r-rnifti
12254 (package
12255 (name "r-rnifti")
12256 (version "1.3.0")
12257 (source
12258 (origin
12259 (method url-fetch)
12260 (uri (cran-uri "RNifti" version))
12261 (sha256
12262 (base32
12263 "1zr0q79id62csmc30c7gs4hbmavk8n6p50a981sfz51dczhjj5ny"))))
12264 (properties `((upstream-name . "RNifti")))
12265 (build-system r-build-system)
12266 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12267 (home-page "https://github.com/jonclayden/RNifti")
12268 (synopsis "Fast R and C++ access to NIfTI images")
12269 (description
12270 "This package provides very fast read and write access to images stored
12271 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
12272 compiled C and interpreted R code. It also provides a C/C++ API that can be
12273 used by other packages.")
12274 (license license:gpl2)))
12275
12276 (define-public r-shades
12277 (package
12278 (name "r-shades")
12279 (version "1.4.0")
12280 (source
12281 (origin
12282 (method url-fetch)
12283 (uri (cran-uri "shades" version))
12284 (sha256
12285 (base32
12286 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
12287 (build-system r-build-system)
12288 (home-page "https://github.com/jonclayden/shades")
12289 (synopsis "Simple color manipulation")
12290 (description
12291 "This package provides functions for easily manipulating colors,
12292 creating color scales and calculating color distances.")
12293 (license license:bsd-3)))
12294
12295 (define-public r-ore
12296 (package
12297 (name "r-ore")
12298 (version "1.6.3")
12299 (source
12300 (origin
12301 (method url-fetch)
12302 (uri (cran-uri "ore" version))
12303 (sha256
12304 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
12305 (build-system r-build-system)
12306 (home-page "https://github.com/jonclayden/ore")
12307 (synopsis "R interface to the Onigmo regular expression library")
12308 (description
12309 "This package provides an alternative to R's built-in functionality for
12310 handling regular expressions, based on the Onigmo library. It offers
12311 first-class compiled regex objects, partial matching and function-based
12312 substitutions, amongst other features.")
12313 (license license:bsd-3)))
12314
12315 (define-public r-reportr
12316 (package
12317 (name "r-reportr")
12318 (version "1.3.0")
12319 (source
12320 (origin
12321 (method url-fetch)
12322 (uri (cran-uri "reportr" version))
12323 (sha256
12324 (base32
12325 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
12326 (build-system r-build-system)
12327 (propagated-inputs `(("r-ore" ,r-ore)))
12328 (home-page "https://github.com/jonclayden/reportr")
12329 (synopsis "General message and error reporting system")
12330 (description
12331 "This package provides a system for reporting messages, which offers
12332 certain useful features over the standard R system, such as the incorporation
12333 of output consolidation, message filtering, assertions, expression
12334 substitution, automatic generation of stack traces for debugging, and
12335 conditional reporting based on the current \"output level\".")
12336 (license license:gpl2)))
12337
12338 (define-public r-tractor-base
12339 (package
12340 (name "r-tractor-base")
12341 (version "3.3.3.1")
12342 (source
12343 (origin
12344 (method url-fetch)
12345 (uri (cran-uri "tractor.base" version))
12346 (sha256
12347 (base32
12348 "0w5jw7pf77npkgig7667yikpbwv4dfk1dcq63qm88l409ga2f95p"))))
12349 (properties `((upstream-name . "tractor.base")))
12350 (build-system r-build-system)
12351 (propagated-inputs
12352 `(("r-ore" ,r-ore)
12353 ("r-reportr" ,r-reportr)
12354 ("r-rnifti" ,r-rnifti)
12355 ("r-shades" ,r-shades)))
12356 (home-page "https://www.tractor-mri.org.uk")
12357 (synopsis "Read, manipulate and visualize magnetic resonance images")
12358 (description
12359 "This package provides functions for working with magnetic resonance
12360 images. It supports reading and writing of popular file formats (DICOM,
12361 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
12362 visualization; flexible image manipulation; metadata and sparse image
12363 handling.")
12364 (license license:gpl2)))
12365
12366 (define-public r-grimport
12367 (package
12368 (name "r-grimport")
12369 (version "0.9-3")
12370 (source
12371 (origin
12372 (method url-fetch)
12373 (uri (cran-uri "grImport" version))
12374 (sha256
12375 (base32
12376 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
12377 (properties `((upstream-name . "grImport")))
12378 (build-system r-build-system)
12379 (inputs
12380 `(("ghostscript" ,ghostscript)))
12381 (propagated-inputs
12382 `(("r-xml" ,r-xml)))
12383 (home-page "https://cran.r-project.org/web/packages/grImport")
12384 (synopsis "Convert, import, and draw PostScript pictures")
12385 (description
12386 "This package provides functions for converting, importing, and drawing
12387 PostScript pictures in R plots.")
12388 (license license:gpl2+)))
12389
12390 (define-public r-grimport2
12391 (package
12392 (name "r-grimport2")
12393 (version "0.2-0")
12394 (source
12395 (origin
12396 (method url-fetch)
12397 (uri (cran-uri "grImport2" version))
12398 (sha256
12399 (base32
12400 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
12401 (properties `((upstream-name . "grImport2")))
12402 (build-system r-build-system)
12403 (propagated-inputs
12404 `(("r-base64enc" ,r-base64enc)
12405 ("r-jpeg" ,r-jpeg)
12406 ("r-png" ,r-png)
12407 ("r-xml" ,r-xml)))
12408 (home-page "https://cran.r-project.org/web/packages/grImport2/")
12409 (synopsis "Import SVG graphics")
12410 (description
12411 "This package provides functions for importing external vector images and
12412 drawing them as part of R plots. This package is different from the
12413 @code{grImport} package because, where that package imports PostScript format
12414 images, this package imports SVG format images. Furthermore, this package
12415 imports a specific subset of SVG, so external images must be preprocessed
12416 using a package like @code{rsvg} to produce SVG that this package can import.
12417 SVG features that are not supported by R graphics, such as gradient fills, can
12418 be imported and then exported via the @code{gridSVG} package.")
12419 (license license:gpl2+)))
12420
12421 (define-public r-kohonen
12422 (package
12423 (name "r-kohonen")
12424 (version "3.0.10")
12425 (source
12426 (origin
12427 (method url-fetch)
12428 (uri (cran-uri "kohonen" version))
12429 (sha256
12430 (base32
12431 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
12432 (build-system r-build-system)
12433 (propagated-inputs
12434 `(("r-rcpp" ,r-rcpp)))
12435 (home-page "https://cran.r-project.org/web/packages/kohonen")
12436 (synopsis "Supervised and unsupervised self-organising maps")
12437 (description
12438 "This package provides functions to train @dfn{self-organising
12439 maps} (SOMs). Also interrogation of the maps and prediction using trained
12440 maps are supported. The name of the package refers to Teuvo Kohonen, the
12441 inventor of the SOM.")
12442 (license license:gpl2+)))
12443
12444 (define-public r-nnls
12445 (package
12446 (name "r-nnls")
12447 (version "1.4")
12448 (source
12449 (origin
12450 (method url-fetch)
12451 (uri (cran-uri "nnls" version))
12452 (sha256
12453 (base32
12454 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
12455 (build-system r-build-system)
12456 (native-inputs `(("gfortran" ,gfortran)))
12457 (home-page "https://cran.r-project.org/web/packages/nnls")
12458 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
12459 (description
12460 "This package provides an R interface to the Lawson-Hanson implementation
12461 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
12462 the combination of non-negative and non-positive constraints.")
12463 (license license:gpl2+)))
12464
12465 (define-public r-iso
12466 (package
12467 (name "r-iso")
12468 (version "0.0-18.1")
12469 (source
12470 (origin
12471 (method url-fetch)
12472 (uri (cran-uri "Iso" version))
12473 (sha256
12474 (base32
12475 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
12476 (properties `((upstream-name . "Iso")))
12477 (build-system r-build-system)
12478 (native-inputs `(("gfortran" ,gfortran)))
12479 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
12480 (synopsis "Functions to perform isotonic regression")
12481 (description
12482 "This package provides support for linear order and unimodal
12483 order (univariate) isotonic regression and bivariate isotonic regression with
12484 linear order on both variables.")
12485 (license license:gpl2+)))
12486
12487 (define-public r-chemometricswithr
12488 (package
12489 (name "r-chemometricswithr")
12490 (version "0.1.13")
12491 (source
12492 (origin
12493 (method url-fetch)
12494 (uri (cran-uri "ChemometricsWithR" version))
12495 (sha256
12496 (base32
12497 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
12498 (properties
12499 `((upstream-name . "ChemometricsWithR")))
12500 (build-system r-build-system)
12501 (propagated-inputs
12502 `(("r-devtools" ,r-devtools)
12503 ("r-kohonen" ,r-kohonen)
12504 ("r-mass" ,r-mass)
12505 ("r-pls" ,r-pls)))
12506 (home-page "https://github.com/rwehrens/CWR")
12507 (synopsis "Chemometrics with R")
12508 (description
12509 "This package provides functions and scripts used in the book
12510 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
12511 Life Sciences\" by Ron Wehrens, Springer (2011).")
12512 (license license:gpl2+)))
12513
12514 (define-public r-als
12515 (package
12516 (name "r-als")
12517 (version "0.0.6")
12518 (source
12519 (origin
12520 (method url-fetch)
12521 (uri (cran-uri "ALS" version))
12522 (sha256
12523 (base32
12524 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
12525 (properties `((upstream-name . "ALS")))
12526 (build-system r-build-system)
12527 (propagated-inputs
12528 `(("r-iso" ,r-iso)
12529 ("r-nnls" ,r-nnls)))
12530 (home-page "https://cran.r-project.org/web/packages/ALS")
12531 (synopsis "Multivariate curve resolution alternating least squares")
12532 (description
12533 "Alternating least squares is often used to resolve components
12534 contributing to data with a bilinear structure; the basic technique may be
12535 extended to alternating constrained least squares. This package provides an
12536 implementation of @dfn{multivariate curve resolution alternating least
12537 squares} (MCR-ALS).
12538
12539 Commonly applied constraints include unimodality, non-negativity, and
12540 normalization of components. Several data matrices may be decomposed
12541 simultaneously by assuming that one of the two matrices in the bilinear
12542 decomposition is shared between datasets.")
12543 (license license:gpl2+)))
12544
12545 (define-public r-strucchange
12546 (package
12547 (name "r-strucchange")
12548 (version "1.5-2")
12549 (source
12550 (origin
12551 (method url-fetch)
12552 (uri (cran-uri "strucchange" version))
12553 (sha256
12554 (base32
12555 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
12556 (build-system r-build-system)
12557 (propagated-inputs
12558 `(("r-sandwich" ,r-sandwich)
12559 ("r-zoo" ,r-zoo)))
12560 (home-page "https://cran.r-project.org/web/packages/strucchange")
12561 (synopsis "Testing, monitoring, and dating structural changes")
12562 (description
12563 "This package provides tools for testing, monitoring and dating
12564 structural changes in (linear) regression models. It features tests/methods
12565 from the generalized fluctuation test framework as well as from the F
12566 test (Chow test) framework. This includes methods to fit, plot and test
12567 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
12568 statistics, respectively. It is possible to monitor incoming data online
12569 using fluctuation processes. Finally, the breakpoints in regression models
12570 with structural changes can be estimated together with confidence intervals.
12571 Emphasis is always given to methods for visualizing the data.")
12572 ;; Either of these two GPL versions
12573 (license (list license:gpl2 license:gpl3))))
12574
12575 (define-public r-pixmap
12576 (package
12577 (name "r-pixmap")
12578 (version "0.4-12")
12579 (source
12580 (origin
12581 (method url-fetch)
12582 (uri (cran-uri "pixmap" version))
12583 (sha256
12584 (base32
12585 "1v1a1adsgh5jlvvi98j4nhb1h681s97ip76zdrga12rlsjaahfw9"))))
12586 (build-system r-build-system)
12587 (home-page "https://cran.r-project.org/web/packages/pixmap")
12588 (synopsis "Tools for bitmap images")
12589 (description
12590 "This package provides functions for importing, exporting, plotting and
12591 other manipulations of bitmapped images.")
12592 (license license:gpl2)))
12593
12594 (define-public r-rapidjsonr
12595 (package
12596 (name "r-rapidjsonr")
12597 (version "1.2.0")
12598 (source
12599 (origin
12600 (method url-fetch)
12601 (uri (cran-uri "rapidjsonr" version))
12602 (sha256
12603 (base32
12604 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
12605 (build-system r-build-system)
12606 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
12607 (synopsis "JSON parser")
12608 (description
12609 "This package provides JSON parsing capability through the Rapidjson
12610 library.")
12611 (license license:expat)))
12612
12613 (define-public r-ontologyindex
12614 (package
12615 (name "r-ontologyindex")
12616 (version "2.7")
12617 (source
12618 (origin
12619 (method url-fetch)
12620 (uri (cran-uri "ontologyIndex" version))
12621 (sha256
12622 (base32
12623 "0j3h1spqwjhh1wbmwivmqcyi042yy7d565c3kxgn70xrmy693x1k"))))
12624 (properties `((upstream-name . "ontologyIndex")))
12625 (build-system r-build-system)
12626 (native-inputs
12627 `(("r-knitr" ,r-knitr)))
12628 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
12629 (synopsis "Functions for processing ontologies in R")
12630 (description
12631 "This package provides functions for reading ontologies into R as lists
12632 and manipulating sets of ontological terms.")
12633 (license license:gpl2+)))
12634
12635 (define-public r-gargle
12636 (package
12637 (name "r-gargle")
12638 (version "1.0.0")
12639 (source
12640 (origin
12641 (method url-fetch)
12642 (uri (cran-uri "gargle" version))
12643 (sha256
12644 (base32
12645 "0hsqn4hf935wn6vk2pwym7la4sdvy271y4cashp38pg4hkpg9zph"))))
12646 (build-system r-build-system)
12647 (propagated-inputs
12648 `(("r-fs" ,r-fs)
12649 ("r-glue" ,r-glue)
12650 ("r-httr" ,r-httr)
12651 ("r-jsonlite" ,r-jsonlite)
12652 ("r-rlang" ,r-rlang)
12653 ("r-withr" ,r-withr)))
12654 (native-inputs
12655 `(("r-knitr" ,r-knitr)))
12656 (home-page "https://gargle.r-lib.org")
12657 (synopsis "Utilities for working with Google APIs")
12658 (description
12659 "This package provides utilities for working with Google APIs. This
12660 includes functions and classes for handling common credential types and for
12661 preparing, executing, and processing HTTP requests.")
12662 (license license:expat)))
12663
12664 (define-public r-bigrquery
12665 (package
12666 (name "r-bigrquery")
12667 (version "1.3.2")
12668 (source
12669 (origin
12670 (method url-fetch)
12671 (uri (cran-uri "bigrquery" version))
12672 (sha256
12673 (base32
12674 "16whccv7f94vf57dvbbrhdskz3nnbmpa11a14kp7aynckldlfy0v"))))
12675 (build-system r-build-system)
12676 (propagated-inputs
12677 `(("r-assertthat" ,r-assertthat)
12678 ("r-bit64" ,r-bit64)
12679 ("r-curl" ,r-curl)
12680 ("r-dbi" ,r-dbi)
12681 ("r-gargle" ,r-gargle)
12682 ("r-glue" ,r-glue)
12683 ("r-httr" ,r-httr)
12684 ("r-jsonlite" ,r-jsonlite)
12685 ("r-prettyunits" ,r-prettyunits)
12686 ("r-progress" ,r-progress)
12687 ("r-rapidjsonr" ,r-rapidjsonr)
12688 ("r-rcpp" ,r-rcpp)
12689 ("r-rlang" ,r-rlang)
12690 ("r-tibble" ,r-tibble)))
12691 (home-page "https://github.com/rstats-db/bigrquery")
12692 (synopsis "R interface to Google's BigQuery API")
12693 (description
12694 "This package provides an R interface to Google's BigQuery database.")
12695 (license license:gpl3)))
12696
12697 (define-public r-gmp
12698 (package
12699 (name "r-gmp")
12700 (version "0.6-2")
12701 (source
12702 (origin
12703 (method url-fetch)
12704 (uri (cran-uri "gmp" version))
12705 (sha256
12706 (base32
12707 "03kzbflgpy5sgnzxmhshs5qv7jjmfc113ybkhxys4z8y7xdv9z3b"))))
12708 (build-system r-build-system)
12709 (arguments
12710 '(#:phases
12711 (modify-phases %standard-phases
12712 (add-after 'unpack 'set-CC
12713 (lambda _ (setenv "CC" "gcc") #t)))))
12714 (inputs `(("gmp" ,gmp)))
12715 (home-page "https://cran.r-project.org/web/packages/gmp")
12716 (synopsis "Multiple precision arithmetic")
12717 (description
12718 "This package supports multiple precision arithmetic (big integers and
12719 rationals, prime number tests, matrix computation), \"arithmetic without
12720 limitations\" using the GNU Multiple Precision library.")
12721 ;; Any version of the GPL.
12722 (license license:gpl3+)))
12723
12724 (define-public r-rmpfr
12725 (package
12726 (name "r-rmpfr")
12727 (version "0.8-2")
12728 (source
12729 (origin
12730 (method url-fetch)
12731 (uri (cran-uri "Rmpfr" version))
12732 (sha256
12733 (base32
12734 "007pc7fpzl2mcg3qxa2vfjip6m2dr314qjsnybkj3kdj70bszxkl"))))
12735 (properties `((upstream-name . "Rmpfr")))
12736 (build-system r-build-system)
12737 (inputs
12738 `(("mpfr" ,mpfr)
12739 ("gmp" ,gmp)))
12740 (propagated-inputs
12741 `(("r-gmp" ,r-gmp)))
12742 (native-inputs
12743 `(("pkg-config" ,pkg-config)))
12744 (home-page "http://rmpfr.r-forge.r-project.org/")
12745 (synopsis "R bindings to the MPFR library")
12746 (description
12747 "This package supports arithmetic (via S4 classes and methods) for
12748 arbitrary precision floating point numbers, including transcendental
12749 functions. To this end, the package interfaces with the @dfn{Multiple
12750 Precision Floating-Point Reliable} (MPFR) library.")
12751 (license license:gpl2+)))
12752
12753 (define-public r-assertive-base
12754 (package
12755 (name "r-assertive-base")
12756 (version "0.0-9")
12757 (source
12758 (origin
12759 (method url-fetch)
12760 (uri (cran-uri "assertive.base" version))
12761 (sha256
12762 (base32
12763 "07m0ddz092bgbl2fn1yk932h0iajdcqkri632477wl5a1q5r3w2b"))))
12764 (properties
12765 `((upstream-name . "assertive.base")))
12766 (build-system r-build-system)
12767 (home-page "https://bitbucket.org/richierocks/assertive.base")
12768 (synopsis "Core of the assertive package")
12769 (description
12770 "This package provides a minimal set of predicates and assertions used by
12771 the assertive package. This is mainly for use by other package developers who
12772 want to include run-time testing features in their own packages.")
12773 (license license:gpl3+)))
12774
12775 (define-public r-assertive-properties
12776 (package
12777 (name "r-assertive-properties")
12778 (version "0.0-4")
12779 (source
12780 (origin
12781 (method url-fetch)
12782 (uri (cran-uri "assertive.properties" version))
12783 (sha256
12784 (base32
12785 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
12786 (properties
12787 `((upstream-name . "assertive.properties")))
12788 (build-system r-build-system)
12789 (propagated-inputs
12790 `(("r-assertive-base" ,r-assertive-base)))
12791 (home-page "https://bitbucket.org/richierocks/assertive.properties")
12792 (synopsis "Assertions to check properties of variables")
12793 (description
12794 "This package provides a set of predicates and assertions for checking
12795 the properties of variables, such as length, names and attributes. This is
12796 mainly for use by other package developers who want to include run-time
12797 testing features in their own packages.")
12798 (license license:gpl3+)))
12799
12800 (define-public r-assertive-numbers
12801 (package
12802 (name "r-assertive-numbers")
12803 (version "0.0-2")
12804 (source
12805 (origin
12806 (method url-fetch)
12807 (uri (cran-uri "assertive.numbers" version))
12808 (sha256
12809 (base32
12810 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
12811 (properties
12812 `((upstream-name . "assertive.numbers")))
12813 (build-system r-build-system)
12814 (propagated-inputs
12815 `(("r-assertive-base" ,r-assertive-base)))
12816 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
12817 (synopsis "Assertions to check properties of numbers")
12818 (description
12819 "This package provides a set of predicates and assertions for checking
12820 the properties of numbers. This is mainly for use by other package developers
12821 who want to include run-time testing features in their own packages.")
12822 (license license:gpl3+)))
12823
12824 (define-public r-assertive-sets
12825 (package
12826 (name "r-assertive-sets")
12827 (version "0.0-3")
12828 (source
12829 (origin
12830 (method url-fetch)
12831 (uri (cran-uri "assertive.sets" version))
12832 (sha256
12833 (base32
12834 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
12835 (properties
12836 `((upstream-name . "assertive.sets")))
12837 (build-system r-build-system)
12838 (propagated-inputs
12839 `(("r-assertive-base" ,r-assertive-base)))
12840 (home-page "https://bitbucket.org/richierocks/assertive.sets")
12841 (synopsis "Assertions to check properties of sets")
12842 (description
12843 "This package provides a set of predicates and assertions for checking
12844 the properties of sets. This is mainly for use by other package developers
12845 who want to include run-time testing features in their own packages.")
12846 (license license:gpl3+)))
12847
12848 (define-public r-assertive-matrices
12849 (package
12850 (name "r-assertive-matrices")
12851 (version "0.0-2")
12852 (source
12853 (origin
12854 (method url-fetch)
12855 (uri (cran-uri "assertive.matrices" version))
12856 (sha256
12857 (base32
12858 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
12859 (properties
12860 `((upstream-name . "assertive.matrices")))
12861 (build-system r-build-system)
12862 (propagated-inputs
12863 `(("r-assertive-base" ,r-assertive-base)))
12864 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
12865 (synopsis "Assertions to check properties of matrices")
12866 (description
12867 "This package provides a set of predicates and assertions for checking
12868 the properties of matrices. This is mainly for use by other package
12869 developers who want to include run-time testing features in their own
12870 packages.")
12871 (license license:gpl3+)))
12872
12873 (define-public r-assertive-models
12874 (package
12875 (name "r-assertive-models")
12876 (version "0.0-2")
12877 (source
12878 (origin
12879 (method url-fetch)
12880 (uri (cran-uri "assertive.models" version))
12881 (sha256
12882 (base32
12883 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
12884 (properties
12885 `((upstream-name . "assertive.models")))
12886 (build-system r-build-system)
12887 (propagated-inputs
12888 `(("r-assertive-base" ,r-assertive-base)))
12889 (home-page "https://bitbucket.org/richierocks/assertive.models")
12890 (synopsis "Assertions to check properties of models")
12891 (description
12892 "This package provides a set of predicates and assertions for checking
12893 the properties of models. This is mainly for use by other package developers
12894 who want to include run-time testing features in their own packages.")
12895 (license license:gpl3+)))
12896
12897 (define-public r-assertive-reflection
12898 (package
12899 (name "r-assertive-reflection")
12900 (version "0.0-5")
12901 (source
12902 (origin
12903 (method url-fetch)
12904 (uri (cran-uri "assertive.reflection" version))
12905 (sha256
12906 (base32
12907 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
12908 (properties
12909 `((upstream-name . "assertive.reflection")))
12910 (build-system r-build-system)
12911 (propagated-inputs
12912 `(("r-assertive-base" ,r-assertive-base)))
12913 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
12914 (synopsis "Assertions for checking the state of R")
12915 (description
12916 "This package provides a set of predicates and assertions for checking
12917 the state and capabilities of R, the operating system it is running on, and
12918 the IDE being used. This is mainly for use by other package developers who
12919 want to include run-time testing features in their own packages.")
12920 (license license:gpl3+)))
12921
12922 (define-public r-assertive-types
12923 (package
12924 (name "r-assertive-types")
12925 (version "0.0-3")
12926 (source
12927 (origin
12928 (method url-fetch)
12929 (uri (cran-uri "assertive.types" version))
12930 (sha256
12931 (base32
12932 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
12933 (properties
12934 `((upstream-name . "assertive.types")))
12935 (build-system r-build-system)
12936 (propagated-inputs
12937 `(("r-assertive-base" ,r-assertive-base)
12938 ("r-assertive-properties" ,r-assertive-properties)
12939 ("r-codetools" ,r-codetools)))
12940 (home-page "https://bitbucket.org/richierocks/assertive.types")
12941 (synopsis "Assertions to check types of variables")
12942 (description
12943 "This package provides a set of predicates and assertions for checking
12944 the types of variables. This is mainly for use by other package developers
12945 who want to include run-time testing features in their own packages.")
12946 (license license:gpl3+)))
12947
12948 (define-public r-assertive-files
12949 (package
12950 (name "r-assertive-files")
12951 (version "0.0-2")
12952 (source
12953 (origin
12954 (method url-fetch)
12955 (uri (cran-uri "assertive.files" version))
12956 (sha256
12957 (base32
12958 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
12959 (properties
12960 `((upstream-name . "assertive.files")))
12961 (build-system r-build-system)
12962 (propagated-inputs
12963 `(("r-assertive-base" ,r-assertive-base)
12964 ("r-assertive-numbers" ,r-assertive-numbers)))
12965 (home-page "https://bitbucket.org/richierocks/assertive.files")
12966 (synopsis "Assertions to check properties of files")
12967 (description
12968 "This package provides a set of predicates and assertions for checking
12969 the properties of files and connections. This is mainly for use by other
12970 package developers who want to include run-time testing features in their own
12971 packages.")
12972 (license license:gpl3+)))
12973
12974 (define-public r-assertive-code
12975 (package
12976 (name "r-assertive-code")
12977 (version "0.0-3")
12978 (source
12979 (origin
12980 (method url-fetch)
12981 (uri (cran-uri "assertive.code" version))
12982 (sha256
12983 (base32
12984 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
12985 (properties
12986 `((upstream-name . "assertive.code")))
12987 (build-system r-build-system)
12988 (propagated-inputs
12989 `(("r-assertive-base" ,r-assertive-base)
12990 ("r-assertive-properties" ,r-assertive-properties)
12991 ("r-assertive-types" ,r-assertive-types)))
12992 (home-page "https://bitbucket.org/richierocks/assertive.code")
12993 (synopsis "Assertions to check properties of code")
12994 (description
12995 "This package provides a set of predicates and assertions for checking
12996 the properties of code. This is mainly for use by other package developers
12997 who want to include run-time testing features in their own packages.")
12998 (license license:gpl3+)))
12999
13000 (define-public r-assertive-datetimes
13001 (package
13002 (name "r-assertive-datetimes")
13003 (version "0.0-3")
13004 (source
13005 (origin
13006 (method url-fetch)
13007 (uri (cran-uri "assertive.datetimes" version))
13008 (sha256
13009 (base32
13010 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
13011 (properties
13012 `((upstream-name . "assertive.datetimes")))
13013 (build-system r-build-system)
13014 (propagated-inputs
13015 `(("r-assertive-base" ,r-assertive-base)
13016 ("r-assertive-types" ,r-assertive-types)))
13017 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
13018 (synopsis "Assertions to check properties of dates and times")
13019 (description
13020 "This package provides a set of predicates and assertions for checking
13021 the properties of dates and times. This is mainly for use by other package
13022 developers who want to include run-time testing features in their own
13023 packages.")
13024 (license license:gpl3+)))
13025
13026 (define-public r-assertive-strings
13027 (package
13028 (name "r-assertive-strings")
13029 (version "0.0-3")
13030 (source
13031 (origin
13032 (method url-fetch)
13033 (uri (cran-uri "assertive.strings" version))
13034 (sha256
13035 (base32
13036 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
13037 (properties
13038 `((upstream-name . "assertive.strings")))
13039 (build-system r-build-system)
13040 (propagated-inputs
13041 `(("r-assertive-base" ,r-assertive-base)
13042 ("r-assertive-types" ,r-assertive-types)
13043 ("r-stringi" ,r-stringi)))
13044 (home-page "https://bitbucket.org/richierocks/assertive.strings")
13045 (synopsis "Assertions to check properties of strings")
13046 (description
13047 "This package provides a set of predicates and assertions for checking
13048 the properties of strings. This is mainly for use by other package developers
13049 who want to include run-time testing features in their own packages.")
13050 (license license:gpl3+)))
13051
13052 (define-public r-assertive-data-us
13053 (package
13054 (name "r-assertive-data-us")
13055 (version "0.0-2")
13056 (source
13057 (origin
13058 (method url-fetch)
13059 (uri (cran-uri "assertive.data.us" version))
13060 (sha256
13061 (base32
13062 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
13063 (properties
13064 `((upstream-name . "assertive.data.us")))
13065 (build-system r-build-system)
13066 (propagated-inputs
13067 `(("r-assertive-base" ,r-assertive-base)
13068 ("r-assertive-strings" ,r-assertive-strings)))
13069 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
13070 (synopsis "Assertions to check properties of strings")
13071 (description
13072 "This package provides a set of predicates and assertions for checking
13073 the properties of US-specific complex data types. This is mainly for use by
13074 other package developers who want to include run-time testing features in
13075 their own packages.")
13076 (license license:gpl3+)))
13077
13078 (define-public r-assertive-data-uk
13079 (package
13080 (name "r-assertive-data-uk")
13081 (version "0.0-2")
13082 (source
13083 (origin
13084 (method url-fetch)
13085 (uri (cran-uri "assertive.data.uk" version))
13086 (sha256
13087 (base32
13088 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
13089 (properties
13090 `((upstream-name . "assertive.data.uk")))
13091 (build-system r-build-system)
13092 (propagated-inputs
13093 `(("r-assertive-base" ,r-assertive-base)
13094 ("r-assertive-strings" ,r-assertive-strings)))
13095 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
13096 (synopsis "Assertions to check properties of strings")
13097 (description
13098 "This package provides a set of predicates and assertions for checking
13099 the properties of UK-specific complex data types. This is mainly for use by
13100 other package developers who want to include run-time testing features in
13101 their own packages.")
13102 (license license:gpl3+)))
13103
13104 (define-public r-assertive-data
13105 (package
13106 (name "r-assertive-data")
13107 (version "0.0-3")
13108 (source
13109 (origin
13110 (method url-fetch)
13111 (uri (cran-uri "assertive.data" version))
13112 (sha256
13113 (base32
13114 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
13115 (properties
13116 `((upstream-name . "assertive.data")))
13117 (build-system r-build-system)
13118 (propagated-inputs
13119 `(("r-assertive-base" ,r-assertive-base)
13120 ("r-assertive-strings" ,r-assertive-strings)))
13121 (home-page "https://bitbucket.org/richierocks/assertive.data")
13122 (synopsis "Assertions to check properties of data")
13123 (description
13124 "This package provides a set of predicates and assertions for checking
13125 the properties of (country independent) complex data types. This is mainly
13126 for use by other package developers who want to include run-time testing
13127 features in their own packages.")
13128 (license license:gpl3+)))
13129
13130 (define-public r-assertive
13131 (package
13132 (name "r-assertive")
13133 (version "0.3-6")
13134 (source
13135 (origin
13136 (method url-fetch)
13137 (uri (cran-uri "assertive" version))
13138 (sha256
13139 (base32
13140 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
13141 (build-system r-build-system)
13142 (propagated-inputs
13143 `(("r-assertive-base" ,r-assertive-base)
13144 ("r-assertive-code" ,r-assertive-code)
13145 ("r-assertive-data" ,r-assertive-data)
13146 ("r-assertive-data-uk" ,r-assertive-data-uk)
13147 ("r-assertive-data-us" ,r-assertive-data-us)
13148 ("r-assertive-datetimes" ,r-assertive-datetimes)
13149 ("r-assertive-files" ,r-assertive-files)
13150 ("r-assertive-matrices" ,r-assertive-matrices)
13151 ("r-assertive-models" ,r-assertive-models)
13152 ("r-assertive-numbers" ,r-assertive-numbers)
13153 ("r-assertive-properties" ,r-assertive-properties)
13154 ("r-assertive-reflection" ,r-assertive-reflection)
13155 ("r-assertive-sets" ,r-assertive-sets)
13156 ("r-assertive-strings" ,r-assertive-strings)
13157 ("r-assertive-types" ,r-assertive-types)
13158 ("r-knitr" ,r-knitr)))
13159 (native-inputs
13160 `(("r-knitr" ,r-knitr)))
13161 (home-page "https://bitbucket.org/richierocks/assertive")
13162 (synopsis "Readable check functions to ensure code integrity")
13163 (description
13164 "This package provides lots of predicates (@code{is_*} functions) to
13165 check the state of your variables, and assertions (@code{assert_*} functions)
13166 to throw errors if they aren't in the right form.")
13167 (license license:gpl3+)))
13168
13169 (define-public r-dotcall64
13170 (package
13171 (name "r-dotcall64")
13172 (version "1.0-1")
13173 (source
13174 (origin
13175 (method url-fetch)
13176 (uri (cran-uri "dotCall64" version))
13177 (sha256
13178 (base32
13179 "1im5k8jbviwj2i42mq1kmjskh80isa7jr9w8i0fknidrzzy2h2zi"))))
13180 (properties `((upstream-name . "dotCall64")))
13181 (build-system r-build-system)
13182 (native-inputs `(("gfortran" ,gfortran)))
13183 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
13184 (synopsis "Enhanced foreign function interface supporting long vectors")
13185 (description
13186 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
13187 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
13188 supports long vectors, arguments of type 64-bit integer, and provides a
13189 mechanism to avoid unnecessary copies of read-only and write-only arguments.
13190 This makes it a convenient and fast interface to C/C++ and Fortran code.")
13191 (license license:gpl2+)))
13192
13193 (define-public r-spam
13194 (package
13195 (name "r-spam")
13196 (version "2.6-0")
13197 (source
13198 (origin
13199 (method url-fetch)
13200 (uri (cran-uri "spam" version))
13201 (sha256
13202 (base32 "0p5ycvpry955ldrgbbq3syy91wx9425mddpn8r5m9xwlirjxv3v3"))))
13203 (build-system r-build-system)
13204 (propagated-inputs
13205 `(("r-dotcall64" ,r-dotcall64)))
13206 (native-inputs
13207 `(("gfortran" ,gfortran)
13208 ("r-knitr" ,r-knitr)))
13209 (home-page "https://www.math.uzh.ch/pages/spam/")
13210 (synopsis "Sparse matrix algebra")
13211 (description
13212 "This package provides a set of functions for sparse matrix algebra.
13213 Differences with other sparse matrix packages are:
13214
13215 @enumerate
13216 @item it only supports (essentially) one sparse matrix format;
13217 @item it is based on transparent and simple structure(s);
13218 @item it is tailored for MCMC calculations within G(M)RF;
13219 @item and it is fast and scalable (with the extension package @code{spam64}).
13220 @end enumerate\n")
13221 ;; Either of these licenses
13222 (license (list license:bsd-3 license:lgpl2.0))))
13223
13224 (define-public r-fields
13225 (package
13226 (name "r-fields")
13227 (version "11.6")
13228 (source
13229 (origin
13230 (method url-fetch)
13231 (uri (cran-uri "fields" version))
13232 (sha256
13233 (base32 "1nsrgkw9w3mwd3sajyzc06h49gg1s0bkq6xh5b66h1n4jbcx2046"))))
13234 (build-system r-build-system)
13235 (propagated-inputs
13236 `(("r-maps" ,r-maps)
13237 ("r-spam" ,r-spam)))
13238 (native-inputs
13239 `(("gfortran" ,gfortran)))
13240 (home-page "https://www.image.ucar.edu/fields")
13241 (synopsis "Tools for spatial data")
13242 (description
13243 "This is a package for curve, surface and function fitting with an
13244 emphasis on splines, spatial data and spatial statistics. The major methods
13245 include cubic, and thin plate splines, Kriging, and compactly supported
13246 covariance functions for large data sets.")
13247 (license license:gpl2+)))
13248
13249 (define-public r-spatialextremes
13250 (package
13251 (name "r-spatialextremes")
13252 (version "2.0-9")
13253 (source
13254 (origin
13255 (method url-fetch)
13256 (uri (cran-uri "SpatialExtremes" version))
13257 (sha256
13258 (base32
13259 "1mhn1c8n3bmgf0fjyac3wji4790zswzkqliqcv3n8kv9806crb0y"))))
13260 (properties
13261 `((upstream-name . "SpatialExtremes")))
13262 (build-system r-build-system)
13263 (propagated-inputs
13264 `(("r-fields" ,r-fields)
13265 ("r-maps" ,r-maps)))
13266 (home-page "http://spatialextremes.r-forge.r-project.org/")
13267 (synopsis "Modelling spatial extremes")
13268 (description
13269 "This package provides tools for the statistical modelling of spatial
13270 extremes using max-stable processes, copula or Bayesian hierarchical models.
13271 More precisely, this package allows (conditional) simulations from various
13272 parametric max-stable models, analysis of the extremal spatial dependence, the
13273 fitting of such processes using composite likelihoods or least square (simple
13274 max-stable processes only), model checking and selection and prediction.")
13275 (license license:gpl2+)))
13276
13277 (define-public r-drc
13278 (package
13279 (name "r-drc")
13280 (version "3.0-1")
13281 (source
13282 (origin
13283 (method url-fetch)
13284 (uri (cran-uri "drc" version))
13285 (sha256
13286 (base32
13287 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
13288 (build-system r-build-system)
13289 (propagated-inputs
13290 `(("r-car" ,r-car)
13291 ("r-gtools" ,r-gtools)
13292 ("r-mass" ,r-mass)
13293 ("r-multcomp" ,r-multcomp)
13294 ("r-plotrix" ,r-plotrix)
13295 ("r-scales" ,r-scales)))
13296 (home-page "https://cran.r-project.org/web/packages/drc")
13297 (synopsis "Analysis of dose-response curves")
13298 (description
13299 "This package provides a suite of flexible and versatile model fitting
13300 and after-fitting functions for the analysis of dose-response data.")
13301 (license license:gpl2+)))
13302
13303 (define-public r-rmeta
13304 (package
13305 (name "r-rmeta")
13306 (version "3.0")
13307 (source
13308 (origin
13309 (method url-fetch)
13310 (uri (cran-uri "rmeta" version))
13311 (sha256
13312 (base32
13313 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
13314 (build-system r-build-system)
13315 (home-page "https://cran.r-project.org/web/packages/rmeta")
13316 (synopsis "Tools for meta-analysis")
13317 (description
13318 "This package provides functions for simple fixed and random effects
13319 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
13320 draws standard summary plots, funnel plots, and computes summaries and tests
13321 for association and heterogeneity.")
13322 (license license:gpl2)))
13323
13324 (define-public r-bootstrap
13325 (package
13326 (name "r-bootstrap")
13327 (version "2019.6")
13328 (source
13329 (origin
13330 (method url-fetch)
13331 (uri (cran-uri "bootstrap" version))
13332 (sha256
13333 (base32
13334 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
13335 (build-system r-build-system)
13336 (native-inputs `(("gfortran" ,gfortran)))
13337 (home-page "https://cran.r-project.org/web/packages/bootstrap")
13338 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
13339 (description
13340 "This package provides software and data for the book \"An Introduction
13341 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
13342 This package is primarily provided for projects already based on it, and for
13343 support of the book. New projects should preferentially use the recommended
13344 package \"boot\".")
13345 (license license:bsd-3)))
13346
13347 (define-public r-survivalroc
13348 (package
13349 (name "r-survivalroc")
13350 (version "1.0.3")
13351 (source
13352 (origin
13353 (method url-fetch)
13354 (uri (cran-uri "survivalROC" version))
13355 (sha256
13356 (base32
13357 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
13358 (properties `((upstream-name . "survivalROC")))
13359 (build-system r-build-system)
13360 (home-page "https://cran.r-project.org/web/packages/survivalROC")
13361 (synopsis "Time-dependent ROC curve estimation from censored survival data")
13362 (description
13363 "Compute time-dependent ROC curve from censored survival data using
13364 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
13365 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
13366 (license license:gpl2+)))
13367
13368 (define-public r-longitudinal
13369 (package
13370 (name "r-longitudinal")
13371 (version "1.1.12")
13372 (source
13373 (origin
13374 (method url-fetch)
13375 (uri (cran-uri "longitudinal" version))
13376 (sha256
13377 (base32
13378 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
13379 (build-system r-build-system)
13380 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
13381 (home-page "http://strimmerlab.org/software/longitudinal/")
13382 (synopsis "Analysis of multiple time course data")
13383 (description
13384 "This package contains general data structures and functions for
13385 longitudinal data with multiple variables, repeated measurements, and
13386 irregularly spaced time points. It also implements a shrinkage estimator of
13387 dynamical correlation and dynamical covariance.")
13388 (license license:gpl3+)))
13389
13390 (define-public r-genenet
13391 (package
13392 (name "r-genenet")
13393 (version "1.2.15")
13394 (source
13395 (origin
13396 (method url-fetch)
13397 (uri (cran-uri "GeneNet" version))
13398 (sha256
13399 (base32
13400 "11ba6ahsk3x9alvcw8bai2bpg84ki1m8nadrjjdhjg65svhw8njm"))))
13401 (properties `((upstream-name . "GeneNet")))
13402 (build-system r-build-system)
13403 (propagated-inputs
13404 `(("r-corpcor" ,r-corpcor)
13405 ("r-fdrtool" ,r-fdrtool)
13406 ("r-longitudinal" ,r-longitudinal)))
13407 (home-page "http://strimmerlab.org/software/genenet/")
13408 (synopsis "Modeling and inferring gene networks")
13409 (description
13410 "This package analyzes gene expression (time series) data with focus on
13411 the inference of gene networks. In particular, GeneNet implements the methods
13412 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
13413 for learning large-scale gene association networks (including assignment of
13414 putative directions).")
13415 (license license:gpl3+)))
13416
13417 (define-public r-rbamtools
13418 (package
13419 (name "r-rbamtools")
13420 (version "2.16.17")
13421 (source
13422 (origin
13423 (method url-fetch)
13424 (uri (cran-uri "rbamtools" version))
13425 (sha256
13426 (base32
13427 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
13428 (build-system r-build-system)
13429 (inputs `(("zlib" ,zlib)))
13430 (propagated-inputs
13431 `(("r-refgenome" ,r-refgenome)))
13432 (home-page "https://cran.r-project.org/web/packages/rbamtools")
13433 (synopsis "Read and write BAM (binary alignment) files")
13434 (description
13435 "This package provides an R interface to functions of the SAMtools
13436 library.")
13437 (license license:artistic2.0)))
13438
13439 (define-public r-protviz
13440 (package
13441 (name "r-protviz")
13442 (version "0.6.8")
13443 (source
13444 (origin
13445 (method url-fetch)
13446 (uri (cran-uri "protViz" version))
13447 (sha256
13448 (base32
13449 "0rn8fjg7791a4j2k1kk1jwx40xz20bfaavvflmhyzpl398vmmy3a"))))
13450 (properties `((upstream-name . "protViz")))
13451 (build-system r-build-system)
13452 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13453 (home-page "https://github.com/protViz/protViz/")
13454 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
13455 (description
13456 "This package helps with quality checks, visualizations and analysis of
13457 mass spectrometry data, coming from proteomics experiments. The package is
13458 developed, tested and used at the Functional Genomics Center Zurich, where it
13459 is used mainly for prototyping, teaching, and having fun with proteomics data.
13460 But it can also be used to do data analysis for small scale data sets.")
13461 (license license:gpl3)))
13462
13463 (define-public r-cmprsk
13464 (package
13465 (name "r-cmprsk")
13466 (version "2.2-10")
13467 (source
13468 (origin
13469 (method url-fetch)
13470 (uri (cran-uri "cmprsk" version))
13471 (sha256
13472 (base32 "1xnx2zanw548prxsw2zw5cddkkg6kj97jgyzw67achq5mnsvfbg8"))))
13473 (build-system r-build-system)
13474 (propagated-inputs
13475 `(("r-survival" ,r-survival)))
13476 (native-inputs
13477 `(("gfortran" ,gfortran)))
13478 (home-page "https://cran.r-project.org/web/packages/cmprsk")
13479 (synopsis "Subdistribution analysis of competing risks")
13480 (description
13481 "This package provides tool for estimation, testing and regression
13482 modeling of subdistribution functions in competing risks, as described in
13483 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
13484 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
13485 A proportional hazards model for the subdistribution of a competing risk,
13486 JASA, 94:496-509.")
13487 (license license:gpl2+)))
13488
13489 (define-public r-etm
13490 (package
13491 (name "r-etm")
13492 (version "1.1.1")
13493 (source
13494 (origin
13495 (method url-fetch)
13496 (uri (cran-uri "etm" version))
13497 (sha256
13498 (base32
13499 "1hvrplmdpjjpjji663rw0vjbbrzj2nvr04d1nkc8bf46p4ixyxgy"))))
13500 (build-system r-build-system)
13501 (propagated-inputs
13502 `(("r-data-table" ,r-data-table)
13503 ("r-lattice" ,r-lattice)
13504 ("r-rcpp" ,r-rcpp)
13505 ("r-rcpparmadillo" ,r-rcpparmadillo)
13506 ("r-survival" ,r-survival)))
13507 (home-page "https://cran.r-project.org/web/packages/etm")
13508 (synopsis "Empirical transition matrix")
13509 (description
13510 "The @dfn{empirical transition matrix} (etm) package estimates
13511 the matrix of transition probabilities for any time-inhomogeneous multistate
13512 model with finite state space using the Aalen-Johansen estimator.")
13513 (license license:expat)))
13514
13515 (define-public r-epi
13516 (package
13517 (name "r-epi")
13518 (version "2.44")
13519 (source
13520 (origin
13521 (method url-fetch)
13522 (uri (cran-uri "Epi" version))
13523 (sha256
13524 (base32
13525 "1wcxr1f7irgfdwzz4vf67114yhxrhxxxnhy4hfaww0zy91vzxx10"))))
13526 (properties `((upstream-name . "Epi")))
13527 (build-system r-build-system)
13528 (propagated-inputs
13529 `(("r-cmprsk" ,r-cmprsk)
13530 ("r-data-table" ,r-data-table)
13531 ("r-dplyr" ,r-dplyr)
13532 ("r-etm" ,r-etm)
13533 ("r-mass" ,r-mass)
13534 ("r-matrix" ,r-matrix)
13535 ("r-mgcv" ,r-mgcv)
13536 ("r-numderiv" ,r-numderiv)
13537 ("r-plyr" ,r-plyr)
13538 ("r-purrr" ,r-purrr)
13539 ("r-survival" ,r-survival)
13540 ("r-zoo" ,r-zoo)))
13541 (home-page "https://BendixCarstensen.com/Epi/")
13542 (synopsis "Statistical analysis in epidemiology")
13543 (description
13544 "This package provides functions for demographic and epidemiological
13545 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
13546 particular representation, manipulation and simulation of multistate data -
13547 the Lexis suite of functions, which includes interfaces to the @code{mstate},
13548 @code{etm} and @code{cmprsk} packages. It also contains functions for
13549 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
13550 data and some useful functions for tabulation and plotting, as well as a
13551 number of epidemiological data sets.")
13552 (license license:gpl2)))
13553
13554 (define-public r-ppls
13555 (package
13556 (name "r-ppls")
13557 (version "1.6-1.1")
13558 (source
13559 (origin
13560 (method url-fetch)
13561 (uri (cran-uri "ppls" version))
13562 (sha256
13563 (base32
13564 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
13565 (build-system r-build-system)
13566 (propagated-inputs `(("r-mass" ,r-mass)))
13567 (home-page "https://cran.r-project.org/web/packages/ppls")
13568 (synopsis "Penalized partial least squares")
13569 (description
13570 "This package contains linear and nonlinear regression methods based on
13571 partial least squares and penalization techniques. Model parameters are
13572 selected via cross-validation, and confidence intervals ans tests for the
13573 regression coefficients can be conducted via jackknifing.")
13574 (license license:gpl2+)))
13575
13576 (define-public r-huge
13577 (package
13578 (name "r-huge")
13579 (version "1.3.4.1")
13580 (source
13581 (origin
13582 (method url-fetch)
13583 (uri (cran-uri "huge" version))
13584 (sha256
13585 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
13586 (build-system r-build-system)
13587 (propagated-inputs
13588 `(("r-igraph" ,r-igraph)
13589 ("r-mass" ,r-mass)
13590 ("r-matrix" ,r-matrix)
13591 ("r-rcpp" ,r-rcpp)
13592 ("r-rcppeigen" ,r-rcppeigen)))
13593 (home-page "https://cran.r-project.org/web/packages/huge")
13594 (synopsis "High-dimensional undirected graph estimation")
13595 (description
13596 "This package provides a general framework for high-dimensional
13597 undirected graph estimation. It integrates data preprocessing, neighborhood
13598 screening, graph estimation, and model selection techniques into a pipeline.")
13599 (license license:gpl2)))
13600
13601 (define-public r-parcor
13602 (package
13603 (name "r-parcor")
13604 (version "0.2-6")
13605 (source
13606 (origin
13607 (method url-fetch)
13608 (uri (cran-uri "parcor" version))
13609 (sha256
13610 (base32
13611 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
13612 (build-system r-build-system)
13613 (propagated-inputs
13614 `(("r-epi" ,r-epi)
13615 ("r-genenet" ,r-genenet)
13616 ("r-glmnet" ,r-glmnet)
13617 ("r-mass" ,r-mass)
13618 ("r-ppls" ,r-ppls)))
13619 (home-page "https://cran.r-project.org/web/packages/parcor")
13620 (synopsis "Regularized estimation of partial correlation matrices")
13621 (description
13622 "This package estimates the matrix of partial correlations based on
13623 different regularized regression methods: lasso, adaptive lasso, PLS, and
13624 Ridge Regression. In addition, the package provides model selection for
13625 lasso, adaptive lasso and Ridge regression based on cross-validation.")
13626 (license license:gpl2+)))
13627
13628 (define-public r-mcmc
13629 (package
13630 (name "r-mcmc")
13631 (version "0.9-7")
13632 (source
13633 (origin
13634 (method url-fetch)
13635 (uri (cran-uri "mcmc" version))
13636 (sha256
13637 (base32
13638 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
13639 (build-system r-build-system)
13640 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
13641 (synopsis "Markov chain Monte Carlo")
13642 (description
13643 "This package simulates continuous distributions of random vectors using
13644 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
13645 function that evaluates the log unnormalized density. Algorithms are random
13646 walk Metropolis algorithm (function @code{metrop}), simulated
13647 tempering (function @code{temper}), and morphometric random walk
13648 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
13649 by change of variable.")
13650 (license license:expat)))
13651
13652 (define-public r-listenv
13653 (package
13654 (name "r-listenv")
13655 (version "0.8.0")
13656 (source
13657 (origin
13658 (method url-fetch)
13659 (uri (cran-uri "listenv" version))
13660 (sha256
13661 (base32
13662 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
13663 (build-system r-build-system)
13664 (native-inputs
13665 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13666 (home-page "https://github.com/HenrikBengtsson/listenv")
13667 (synopsis "Environments behaving (almost) as lists")
13668 (description
13669 "This package implements list environments. List environments are
13670 environments that have list-like properties. For instance, the elements of a
13671 list environment are ordered and can be accessed and iterated over using index
13672 subsetting.")
13673 (license license:lgpl2.1+)))
13674
13675 (define-public r-globals
13676 (package
13677 (name "r-globals")
13678 (version "0.14.0")
13679 (source
13680 (origin
13681 (method url-fetch)
13682 (uri (cran-uri "globals" version))
13683 (sha256
13684 (base32
13685 "1wrjiiif6rpc268zz79pvpw33si6n6ffgxdnxmmcracwhb5vqg90"))))
13686 (build-system r-build-system)
13687 (propagated-inputs
13688 `(("r-codetools" ,r-codetools)))
13689 (home-page "https://github.com/HenrikBengtsson/globals")
13690 (synopsis "Identify global objects in R expressions")
13691 (description
13692 "This package provides tools to identify global (\"unknown\" or \"free\")
13693 objects in R expressions by code inspection using various strategies, e.g.
13694 conservative or liberal. The objective of this package is to make it as
13695 simple as possible to identify global objects for the purpose of exporting
13696 them in distributed compute environments.")
13697 (license license:lgpl2.1+)))
13698
13699 (define-public r-parallelly
13700 (package
13701 (name "r-parallelly")
13702 (version "1.23.0")
13703 (source
13704 (origin
13705 (method url-fetch)
13706 (uri (cran-uri "parallelly" version))
13707 (sha256
13708 (base32
13709 "025whcz55wj9jd73dalkbxh4l2331mqn758glr6hlf472lwf4v1p"))))
13710 (properties `((upstream-name . "parallelly")))
13711 (build-system r-build-system)
13712 (home-page "https://github.com/HenrikBengtsson/parallelly")
13713 (synopsis "Enhancements of the parallel package")
13714 (description
13715 "This package provides utility functions that enhance the @code{parallel}
13716 package and support the built-in parallel backends of the @code{future}
13717 package. For example, @code{availableCores} gives the number of CPU cores
13718 available to your R process as given by R options and environment variables,
13719 including those set by job schedulers on high-performance compute clusters.
13720 If none is set, it will fall back to @code{parallel::detectCores}. Another
13721 example is @code{makeClusterPSOCK}, which is backward compatible with
13722 @code{parallel::makePSOCKcluster} while doing a better job in setting up
13723 remote cluster workers without the need for configuring the firewall to do
13724 port-forwarding to your local computer.")
13725 (license license:lgpl2.1+)))
13726
13727 (define-public r-future
13728 (package
13729 (name "r-future")
13730 (version "1.21.0")
13731 (source
13732 (origin
13733 (method url-fetch)
13734 (uri (cran-uri "future" version))
13735 (sha256
13736 (base32
13737 "0bfiy17n5rghxw0702k0vgpjkk13268lniifdlx59flf0q16d7lh"))))
13738 (build-system r-build-system)
13739 (propagated-inputs
13740 `(("r-digest" ,r-digest)
13741 ("r-globals" ,r-globals)
13742 ("r-listenv" ,r-listenv)
13743 ("r-parallelly" ,r-parallelly)))
13744 (native-inputs
13745 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13746 (home-page "https://github.com/HenrikBengtsson/future")
13747 (synopsis "Unified parallel and distributed processing in R")
13748 (description
13749 "The purpose of this package is to provide a lightweight and unified
13750 Future API for sequential and parallel processing of R expression via futures.
13751 This package implements sequential, multicore, multisession, and cluster
13752 futures. With these, R expressions can be evaluated on the local machine, in
13753 parallel a set of local machines, or distributed on a mix of local and remote
13754 machines. Extensions to this package implement additional backends for
13755 processing futures via compute cluster schedulers etc. Because of its unified
13756 API, there is no need to modify any code in order to switch from sequential on
13757 the local machine to, say, distributed processing on a remote compute cluster.")
13758 (license license:lgpl2.1+)))
13759
13760 (define-public r-future-apply
13761 (package
13762 (name "r-future-apply")
13763 (version "1.7.0")
13764 (source
13765 (origin
13766 (method url-fetch)
13767 (uri (cran-uri "future.apply" version))
13768 (sha256
13769 (base32
13770 "1ns5cf80vyabvyz9qp6kpvkg4jycinn7x6v7x6692fgjapdnmyig"))))
13771 (properties `((upstream-name . "future.apply")))
13772 (build-system r-build-system)
13773 (propagated-inputs
13774 `(("r-future" ,r-future)
13775 ("r-globals" ,r-globals)))
13776 (native-inputs
13777 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13778 (home-page "https://github.com/HenrikBengtsson/future.apply")
13779 (synopsis "Apply function to elements in parallel using futures")
13780 (description
13781 "This package provides implementations of @code{apply()},
13782 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
13783 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
13784 can be resolved using any future-supported backend, e.g. parallel on the local
13785 machine or distributed on a compute cluster.")
13786 (license license:gpl2+)))
13787
13788 (define-public r-rsvd
13789 (package
13790 (name "r-rsvd")
13791 (version "1.0.3")
13792 (source
13793 (origin
13794 (method url-fetch)
13795 (uri (cran-uri "rsvd" version))
13796 (sha256
13797 (base32
13798 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
13799 (build-system r-build-system)
13800 (propagated-inputs
13801 `(("r-matrix" ,r-matrix)))
13802 (home-page "https://github.com/erichson/rSVD")
13803 (synopsis "Randomized singular value decomposition")
13804 (description
13805 "Low-rank matrix decompositions are fundamental tools and widely used for
13806 data analysis, dimension reduction, and data compression. Classically, highly
13807 accurate deterministic matrix algorithms are used for this task. However, the
13808 emergence of large-scale data has severely challenged our computational
13809 ability to analyze big data. The concept of randomness has been demonstrated
13810 as an effective strategy to quickly produce approximate answers to familiar
13811 problems such as the @dfn{singular value decomposition} (SVD). This package
13812 provides several randomized matrix algorithms such as the randomized singular
13813 value decomposition (@code{rsvd}), randomized principal component
13814 analysis (@code{rpca}), randomized robust principal component
13815 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
13816 and the randomized CUR decomposition (@code{rcur}). In addition several plot
13817 functions are provided.")
13818 (license license:gpl3+)))
13819
13820 (define-public r-sloop
13821 (package
13822 (name "r-sloop")
13823 (version "1.0.1")
13824 (source
13825 (origin
13826 (method url-fetch)
13827 (uri (cran-uri "sloop" version))
13828 (sha256
13829 (base32
13830 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
13831 (build-system r-build-system)
13832 (propagated-inputs
13833 `(("r-codetools" ,r-codetools)
13834 ("r-crayon" ,r-crayon)
13835 ("r-purrr" ,r-purrr)
13836 ("r-rlang" ,r-rlang)
13837 ("r-tibble" ,r-tibble)))
13838 (home-page "https://github.com/r-lib/sloop")
13839 (synopsis "Helpers for object-oriented programming in R")
13840 (description
13841 "This package provides a collection of helper functions designed to
13842 help you to better understand object oriented programming in R, particularly
13843 using @code{S3}.")
13844 (license license:gpl3)))
13845
13846 (define-public r-capushe
13847 (package
13848 (name "r-capushe")
13849 (version "1.1.1")
13850 (source
13851 (origin
13852 (method url-fetch)
13853 (uri (cran-uri "capushe" version))
13854 (sha256
13855 (base32
13856 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
13857 (build-system r-build-system)
13858 (propagated-inputs `(("r-mass" ,r-mass)))
13859 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
13860 (synopsis "Calibrating penalties using slope heuristics")
13861 (description
13862 "This package provides tools for the calibration of penalized criteria
13863 for model selection. The calibration methods available are based on the slope
13864 heuristics.")
13865 (license license:gpl2+)))
13866
13867 (define-public r-dorng
13868 (package
13869 (name "r-dorng")
13870 (version "1.8.2")
13871 (source
13872 (origin
13873 (method url-fetch)
13874 (uri (cran-uri "doRNG" version))
13875 (sha256
13876 (base32
13877 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
13878 (properties `((upstream-name . "doRNG")))
13879 (build-system r-build-system)
13880 (propagated-inputs
13881 `(("r-foreach" ,r-foreach)
13882 ("r-iterators" ,r-iterators)
13883 ("r-rngtools" ,r-rngtools)))
13884 (home-page "https://renozao.github.io/doRNG/")
13885 (synopsis "Generic reproducible parallel backend for foreach loops")
13886 (description
13887 "This package provides functions to perform reproducible parallel
13888 @code{foreach} loops, using independent random streams as generated by
13889 L'Ecuyer's combined multiple-recursive generator. It enables to easily
13890 convert standard @code{%dopar%} loops into fully reproducible loops,
13891 independently of the number of workers, the task scheduling strategy, or the
13892 chosen parallel environment and associated foreach backend.")
13893 (license license:gpl2+)))
13894
13895 (define-public r-blockmodeling
13896 (package
13897 (name "r-blockmodeling")
13898 (version "1.0.0")
13899 (source
13900 (origin
13901 (method url-fetch)
13902 (uri (cran-uri "blockmodeling" version))
13903 (sha256
13904 (base32
13905 "1z4w2kq0id0gb5d0lqcdaw3clplhzywarkpvvx3drivdypzl237i"))))
13906 (build-system r-build-system)
13907 (propagated-inputs
13908 `(("r-matrix" ,r-matrix)))
13909 (native-inputs `(("gfortran" ,gfortran)))
13910 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
13911 (synopsis "Generalized and classical blockmodeling of valued networks")
13912 (description
13913 "This package is primarily meant as an implementation of generalized
13914 blockmodeling for valued networks. In addition, measures of similarity or
13915 dissimilarity based on structural equivalence and regular equivalence (REGE
13916 algorithms) can be computed and partitioned matrices can be plotted.")
13917 (license license:gpl2+)))
13918
13919 (define-public r-upsetr
13920 (package
13921 (name "r-upsetr")
13922 (version "1.4.0")
13923 (source
13924 (origin
13925 (method url-fetch)
13926 (uri (cran-uri "UpSetR" version))
13927 (sha256
13928 (base32
13929 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
13930 (properties `((upstream-name . "UpSetR")))
13931 (build-system r-build-system)
13932 (propagated-inputs
13933 `(("r-ggplot2" ,r-ggplot2)
13934 ("r-gridextra" ,r-gridextra)
13935 ("r-plyr" ,r-plyr)
13936 ("r-scales" ,r-scales)))
13937 (home-page "https://github.com/hms-dbmi/UpSetR")
13938 (synopsis "Visualize intersecting sets")
13939 (description
13940 "This package provides a more scalable alternative to Venn and Euler
13941 diagrams for visualizing intersecting sets. Create visualizations of
13942 intersecting sets using a novel matrix design, along with visualizations of
13943 several common set, element and attribute related tasks.")
13944 (license license:expat)))
13945
13946 ;; This package includes a JavaScript file, which is not minified. When
13947 ;; upgrading please check that there are no new minified JavaScript files.
13948 (define-public r-shinybs
13949 (package
13950 (name "r-shinybs")
13951 (version "0.61")
13952 (source
13953 (origin
13954 (method url-fetch)
13955 (uri (cran-uri "shinyBS" version))
13956 (sha256
13957 (base32
13958 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
13959 (properties `((upstream-name . "shinyBS")))
13960 (build-system r-build-system)
13961 ;; The tests spawn Shiny browser apps. They cannot be run
13962 ;; non-interactively.
13963 (arguments '(#:tests? #f))
13964 (propagated-inputs
13965 `(("r-htmltools" ,r-htmltools)
13966 ("r-shiny" ,r-shiny)))
13967 (home-page "https://ebailey78.github.io/shinyBS/")
13968 (synopsis "Twitter Bootstrap components for Shiny")
13969 (description
13970 "This package adds additional Twitter Bootstrap components to Shiny.")
13971 (license license:gpl3)))
13972
13973 (define-public r-shinyjqui
13974 (package
13975 (name "r-shinyjqui")
13976 (version "0.4.0")
13977 (source
13978 (origin
13979 (method url-fetch)
13980 (uri (cran-uri "shinyjqui" version))
13981 (sha256
13982 (base32
13983 "0ins0pmfis34jr0rimsp1k1aw856r3xjdnsvv8lkwqhvp58nzqah"))
13984 (snippet
13985 '(begin
13986 (delete-file "inst/www/shinyjqui.min.js")))))
13987 (properties `((upstream-name . "shinyjqui")))
13988 (build-system r-build-system)
13989 (arguments
13990 `(#:phases
13991 (modify-phases %standard-phases
13992 (add-after 'unpack 'process-javascript
13993 (lambda* (#:key inputs #:allow-other-keys)
13994 (with-directory-excursion "inst/www/"
13995 (let ((source "shinyjqui.js")
13996 (target "shinyjqui.min.js"))
13997 (format #true "Processing ~a --> ~a~%"
13998 source target)
13999 (invoke "esbuild" source "--minify"
14000 (string-append "--outfile=" target)))))))))
14001 (propagated-inputs
14002 `(("r-htmltools" ,r-htmltools)
14003 ("r-htmlwidgets" ,r-htmlwidgets)
14004 ("r-jsonlite" ,r-jsonlite)
14005 ("r-shiny" ,r-shiny)))
14006 (native-inputs
14007 `(("r-knitr" ,r-knitr)
14008 ("esbuild" ,esbuild)))
14009 (home-page "https://github.com/yang-tang/shinyjqui")
14010 (synopsis "jQuery UI interactions and effects for Shiny")
14011 (description
14012 "This is an extension to Shiny that brings interactions and animation
14013 effects from the jQuery UI library.")
14014 (license license:expat)))
14015
14016 (define-public r-outliers
14017 (package
14018 (name "r-outliers")
14019 (version "0.14")
14020 (source
14021 (origin
14022 (method url-fetch)
14023 (uri (cran-uri "outliers" version))
14024 (sha256
14025 (base32
14026 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
14027 (build-system r-build-system)
14028 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
14029 (synopsis "Tests for outliers")
14030 (description
14031 "This package provides a collection of some tests commonly used for
14032 identifying outliers.")
14033 (license license:gpl2+)))
14034
14035 (define-public r-bayesm
14036 (package
14037 (name "r-bayesm")
14038 (version "3.1-4")
14039 (source
14040 (origin
14041 (method url-fetch)
14042 (uri (cran-uri "bayesm" version))
14043 (sha256
14044 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
14045 (build-system r-build-system)
14046 (propagated-inputs
14047 `(("r-rcpp" ,r-rcpp)
14048 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14049 (home-page "http://www.perossi.org/home/bsm-1")
14050 (synopsis "Bayesian inference for marketing/micro-econometrics")
14051 (description
14052 "This package covers many important models used in marketing and
14053 micro-econometrics applications, including Bayes Regression (univariate or
14054 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
14055 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
14056 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
14057 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
14058 Estimation with normal base, Hierarchical Linear Models with normal prior and
14059 covariates, Hierarchical Linear Models with a mixture of normals prior and
14060 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
14061 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
14062 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
14063 analysis of choice-based conjoint data, Bayesian treatment of linear
14064 instrumental variables models, Analysis of Multivariate Ordinal survey data
14065 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
14066 Coefficient Logit Models.")
14067 (license license:gpl2+)))
14068
14069 (define-public r-tensora
14070 (package
14071 (name "r-tensora")
14072 (version "0.36.2")
14073 (source
14074 (origin
14075 (method url-fetch)
14076 (uri (cran-uri "tensorA" version))
14077 (sha256
14078 (base32
14079 "19wwh654qlja4z1n7afjpzsrrm53p8ddysa2vra5mdnkddb4g2cf"))))
14080 (properties `((upstream-name . "tensorA")))
14081 (build-system r-build-system)
14082 (home-page "http://www.stat.boogaart.de/tensorA")
14083 (synopsis "Advanced tensor arithmetic with named indices")
14084 (description
14085 "This package provides convenience functions for advanced linear algebra
14086 with tensors and computation with datasets of tensors on a higher level
14087 abstraction. It includes Einstein and Riemann summing conventions, dragging,
14088 co- and contravariate indices, and parallel computations on sequences of
14089 tensors.")
14090 (license license:gpl2+)))
14091
14092 (define-public r-rarpack
14093 (package
14094 (name "r-rarpack")
14095 (version "0.11-0")
14096 (source
14097 (origin
14098 (method url-fetch)
14099 (uri (cran-uri "rARPACK" version))
14100 (sha256
14101 (base32
14102 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
14103 (properties `((upstream-name . "rARPACK")))
14104 (build-system r-build-system)
14105 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
14106 (home-page "https://github.com/yixuan/rARPACK")
14107 (synopsis "Solvers for large scale eigenvalue and SVD problems")
14108 (description
14109 "This package was previously an R wrapper of the ARPACK library, and now
14110 a shell of the R package RSpectra, an R interface to the Spectra library for
14111 solving large scale eigenvalue/vector problems. The current version of
14112 rARPACK simply imports and exports the functions provided by RSpectra. New
14113 users of rARPACK are advised to switch to the RSpectra package.")
14114 (license license:bsd-3)))
14115
14116 (define-public r-compositions
14117 (package
14118 (name "r-compositions")
14119 (version "2.0-1")
14120 (source
14121 (origin
14122 (method url-fetch)
14123 (uri (cran-uri "compositions" version))
14124 (sha256
14125 (base32
14126 "03qslsfx11gshls901zlhw47prd55mf16w4mkmd8x1dgiwq938l4"))))
14127 (build-system r-build-system)
14128 (propagated-inputs
14129 `(("r-bayesm" ,r-bayesm)
14130 ("r-mass" ,r-mass)
14131 ("r-robustbase" ,r-robustbase)
14132 ("r-tensora" ,r-tensora)))
14133 (native-inputs
14134 `(("r-knitr" ,r-knitr)))
14135 (home-page "http://www.stat.boogaart.de/compositions")
14136 (synopsis "Compositional data analysis")
14137 (description
14138 "This package provides functions for the consistent analysis of
14139 compositional data (e.g. portions of substances) and positive
14140 numbers (e.g. concentrations).")
14141 (license license:gpl2+)))
14142
14143 (define-public r-cobs
14144 (package
14145 (name "r-cobs")
14146 (version "1.3-4")
14147 (source
14148 (origin
14149 (method url-fetch)
14150 (uri (cran-uri "cobs" version))
14151 (sha256
14152 (base32
14153 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
14154 (build-system r-build-system)
14155 (propagated-inputs
14156 `(("r-quantreg" ,r-quantreg)
14157 ("r-sparsem" ,r-sparsem)))
14158 (home-page "https://cran.r-project.org/web/packages/cobs")
14159 (synopsis "Constrained B-Splines (sparse matrix based)")
14160 (description
14161 "This package provides qualitatively constrained (regression) smoothing
14162 splines via linear programming and sparse matrices.")
14163 (license license:gpl2+)))
14164
14165 (define-public r-drimpute
14166 (package
14167 (name "r-drimpute")
14168 (version "1.0")
14169 (source
14170 (origin
14171 (method url-fetch)
14172 (uri (cran-uri "DrImpute" version))
14173 (sha256
14174 (base32
14175 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
14176 (properties `((upstream-name . "DrImpute")))
14177 (build-system r-build-system)
14178 (propagated-inputs
14179 `(("r-rcpp" ,r-rcpp)
14180 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14181 (home-page "https://github.com/ikwak2/DrImpute")
14182 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
14183 (description
14184 "This is an R package for imputing dropout events. Many statistical
14185 methods in cell type identification, visualization and lineage reconstruction
14186 do not account for dropout events. DrImpute can improve the performance of
14187 such software by imputing dropout events.")
14188 (license license:gpl3)))
14189
14190 (define-public r-gamlss-dist
14191 (package
14192 (name "r-gamlss-dist")
14193 (version "5.3-2")
14194 (source
14195 (origin
14196 (method url-fetch)
14197 (uri (cran-uri "gamlss.dist" version))
14198 (sha256
14199 (base32 "1lyf2rvkplywgyhcni93k52z3b89vv86yrgl38dx3ln3436r5ahc"))))
14200 (properties `((upstream-name . "gamlss.dist")))
14201 (build-system r-build-system)
14202 (propagated-inputs `(("r-mass" ,r-mass)))
14203 (home-page "http://www.gamlss.org/")
14204 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
14205 (description
14206 "This package provides a set of distributions which can be used for
14207 modelling the response variables in Generalized Additive Models for Location
14208 Scale and Shape. The distributions can be continuous, discrete or mixed
14209 distributions. Extra distributions can be created, by transforming, any
14210 continuous distribution defined on the real line, to a distribution defined on
14211 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
14212 transformation, respectively.")
14213 ;; Either version of the GPL.
14214 (license (list license:gpl2 license:gpl3))))
14215
14216 ;; This package includes JavaScript files, which are not minified. When
14217 ;; upgrading please check that there are no new minified JavaScript files.
14218 (define-public r-shinyjs
14219 (package
14220 (name "r-shinyjs")
14221 (version "2.0.0")
14222 (source
14223 (origin
14224 (method url-fetch)
14225 (uri (cran-uri "shinyjs" version))
14226 (sha256
14227 (base32
14228 "1zzq356dvd8ciajy6r5n4ybgx9xk7ydwv25j86xlcsqznkxdkkf2"))))
14229 (build-system r-build-system)
14230 (propagated-inputs
14231 `(("r-digest" ,r-digest)
14232 ("r-htmltools" ,r-htmltools)
14233 ("r-jsonlite" ,r-jsonlite)
14234 ("r-shiny" ,r-shiny)))
14235 (native-inputs
14236 `(("r-knitr" ,r-knitr)))
14237 (home-page "https://deanattali.com/shinyjs")
14238 (synopsis "Improve the user experience of your Shiny apps")
14239 (description
14240 "Perform common useful JavaScript operations in Shiny apps that will
14241 greatly improve your apps without having to know any JavaScript. Examples
14242 include: hiding an element, disabling an input, resetting an input back to its
14243 original value, delaying code execution by a few seconds, and many more useful
14244 functions for both the end user and the developer. Shinyjs can also be used
14245 to easily call your own custom JavaScript functions from R.")
14246 (license license:agpl3+)))
14247
14248 ;; This package includes minified JavaScript files. When upgrading please
14249 ;; check that there are no new minified JavaScript files.
14250 (define-public r-colourpicker
14251 (package
14252 (name "r-colourpicker")
14253 (version "1.1.0")
14254 (source
14255 (origin
14256 (method url-fetch)
14257 (uri (cran-uri "colourpicker" version))
14258 (sha256
14259 (base32
14260 "1qjispj7i12m02js5cm5xlgn5lyff0kc5ybz6lbknz8q5lkbdyrd"))))
14261 (build-system r-build-system)
14262 (arguments
14263 `(#:modules ((guix build utils)
14264 (guix build r-build-system)
14265 (srfi srfi-1)
14266 (ice-9 popen))
14267 #:phases
14268 (modify-phases %standard-phases
14269 (add-after 'unpack 'process-javascript
14270 (lambda* (#:key inputs #:allow-other-keys)
14271 (with-directory-excursion "inst"
14272 (call-with-values
14273 (lambda ()
14274 (unzip2
14275 `((,(assoc-ref inputs "js-salvattore")
14276 "examples/colourInput/www/salvattore.min.js")
14277 (,(assoc-ref inputs "js-jquery")
14278 "htmlwidgets/lib/jquery/jquery.min.js")
14279 ("www/shared/colourpicker/js/colourpicker.js"
14280 "www/shared/colourpicker/js/colourpicker.min.js"))))
14281 (lambda (sources targets)
14282 (for-each (lambda (source target)
14283 (format #t "Processing ~a --> ~a~%"
14284 source target)
14285 (delete-file target)
14286 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14287 (call-with-output-file target
14288 (lambda (port)
14289 (dump-port minified port)))))
14290 sources targets))))
14291 #t)))))
14292 (propagated-inputs
14293 `(("r-ggplot2" ,r-ggplot2)
14294 ("r-htmltools" ,r-htmltools)
14295 ("r-htmlwidgets" ,r-htmlwidgets)
14296 ("r-jsonlite" ,r-jsonlite)
14297 ("r-miniui" ,r-miniui)
14298 ("r-shiny" ,r-shiny)
14299 ("r-shinyjs" ,r-shinyjs)))
14300 (native-inputs
14301 `(("r-knitr" ,r-knitr)
14302 ("uglify-js" ,uglify-js)
14303 ("js-jquery"
14304 ,(origin
14305 (method url-fetch)
14306 (uri "https://code.jquery.com/jquery-3.3.1.js")
14307 (sha256
14308 (base32
14309 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
14310 ("js-salvattore"
14311 ,(origin
14312 (method url-fetch)
14313 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
14314 (sha256
14315 (base32
14316 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
14317 (home-page "https://github.com/daattali/colourpicker")
14318 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
14319 (description
14320 "This package provides a color picker that can be used as an input in
14321 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
14322 custom color palettes, and many more options. A plot color helper tool is
14323 available as an RStudio Addin, which helps you pick colors to use in your
14324 plots. A more generic color picker RStudio Addin is also provided to let you
14325 select colors to use in your R code.")
14326 (license license:expat)))
14327
14328 (define-public r-ggextra
14329 (package
14330 (name "r-ggextra")
14331 (version "0.9")
14332 (source
14333 (origin
14334 (method url-fetch)
14335 (uri (cran-uri "ggExtra" version))
14336 (sha256
14337 (base32
14338 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
14339 (properties `((upstream-name . "ggExtra")))
14340 (build-system r-build-system)
14341 (propagated-inputs
14342 `(("r-colourpicker" ,r-colourpicker)
14343 ("r-ggplot2" ,r-ggplot2)
14344 ("r-gtable" ,r-gtable)
14345 ("r-miniui" ,r-miniui)
14346 ("r-r6" ,r-r6)
14347 ("r-scales" ,r-scales)
14348 ("r-shiny" ,r-shiny)
14349 ("r-shinyjs" ,r-shinyjs)))
14350 (native-inputs
14351 `(("r-knitr" ,r-knitr)))
14352 (home-page "https://github.com/daattali/ggExtra")
14353 (synopsis "Marginal histograms for ggplot2 and other enhancements")
14354 (description
14355 "This package is a collection of functions and layers to enhance ggplot2.
14356 The flagship function is @code{ggMarginal()}, which can be used to add
14357 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
14358 (license license:expat)))
14359
14360 (define-public r-minpack-lm
14361 (package
14362 (name "r-minpack-lm")
14363 (version "1.2-1")
14364 (source
14365 (origin
14366 (method url-fetch)
14367 (uri (cran-uri "minpack.lm" version))
14368 (sha256
14369 (base32
14370 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
14371 (properties `((upstream-name . "minpack.lm")))
14372 (build-system r-build-system)
14373 (native-inputs `(("gfortran" ,gfortran)))
14374 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
14375 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
14376 (description
14377 "The @code{nls.lm} function provides an R interface to @code{lmder} and
14378 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
14379 problems by a modification of the Levenberg-Marquardt algorithm, with support
14380 for lower and upper parameter bounds. The implementation can be used via
14381 @code{nls}-like calls using the @code{nlsLM} function.")
14382 (license license:gpl3)))
14383
14384 (define-public r-moments
14385 (package
14386 (name "r-moments")
14387 (version "0.14")
14388 (source
14389 (origin
14390 (method url-fetch)
14391 (uri (cran-uri "moments" version))
14392 (sha256
14393 (base32
14394 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
14395 (build-system r-build-system)
14396 (home-page "https://cran.r-project.org/web/packages/moments")
14397 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
14398 (description
14399 "This package provides functions to calculate: moments, Pearson's
14400 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
14401 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
14402 (license license:gpl2+)))
14403
14404 (define-public r-msir
14405 (package
14406 (name "r-msir")
14407 (version "1.3.3")
14408 (source
14409 (origin
14410 (method url-fetch)
14411 (uri (cran-uri "msir" version))
14412 (sha256
14413 (base32
14414 "1wm83m3cqd6llxb9p2jwim0wb81v84pgdmgcznygzaaq6kbn3n84"))))
14415 (build-system r-build-system)
14416 (propagated-inputs
14417 `(("r-mclust" ,r-mclust)))
14418 (native-inputs
14419 `(("r-knitr" ,r-knitr)))
14420 (home-page "https://cran.r-project.org/web/packages/msir")
14421 (synopsis "Model-based sliced inverse regression")
14422 (description
14423 "This is an R package for dimension reduction based on finite Gaussian
14424 mixture modeling of inverse regression.")
14425 (license license:gpl2+)))
14426
14427 (define-public r-pbivnorm
14428 (package
14429 (name "r-pbivnorm")
14430 (version "0.6.0")
14431 (source
14432 (origin
14433 (method url-fetch)
14434 (uri (cran-uri "pbivnorm" version))
14435 (sha256
14436 (base32
14437 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
14438 (build-system r-build-system)
14439 (native-inputs `(("gfortran" ,gfortran)))
14440 (home-page "https://github.com/brentonk/pbivnorm")
14441 (synopsis "Vectorized bivariate normal CDF")
14442 (description
14443 "This package provides a vectorized R function for calculating
14444 probabilities from a standard bivariate normal CDF.")
14445 (license license:gpl2+)))
14446
14447 (define-public r-lavaan
14448 (package
14449 (name "r-lavaan")
14450 (version "0.6-7")
14451 (source
14452 (origin
14453 (method url-fetch)
14454 (uri (cran-uri "lavaan" version))
14455 (sha256
14456 (base32
14457 "0ks62wrwghbm1brzmqvr92h5n1295dpc87m1g3xrfx0mkdaqdcdk"))))
14458 (build-system r-build-system)
14459 (propagated-inputs
14460 `(("r-mass" ,r-mass)
14461 ("r-mnormt" ,r-mnormt)
14462 ("r-numderiv" ,r-numderiv)
14463 ("r-pbivnorm" ,r-pbivnorm)))
14464 (home-page "https://lavaan.ugent.be")
14465 (synopsis "Latent variable analysis")
14466 (description
14467 "This package provides tools to fit a variety of latent variable models,
14468 including confirmatory factor analysis, structural equation modeling and
14469 latent growth curve models.")
14470 (license license:gpl2+)))
14471
14472 (define-public r-nonnest2
14473 (package
14474 (name "r-nonnest2")
14475 (version "0.5-5")
14476 (source
14477 (origin
14478 (method url-fetch)
14479 (uri (cran-uri "nonnest2" version))
14480 (sha256
14481 (base32
14482 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
14483 (build-system r-build-system)
14484 (propagated-inputs
14485 `(("r-compquadform" ,r-compquadform)
14486 ("r-lavaan" ,r-lavaan)
14487 ("r-mvtnorm" ,r-mvtnorm)
14488 ("r-sandwich" ,r-sandwich)))
14489 (native-inputs
14490 `(("r-knitr" ,r-knitr)))
14491 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
14492 (synopsis "Tests of non-nested models")
14493 (description
14494 "This package allows for testing of non-nested models. It includes tests
14495 of model distinguishability and of model fit that can be applied to both
14496 nested and non-nested models. The package also includes functionality to
14497 obtain confidence intervals associated with AIC and BIC.")
14498 ;; Either version of the GPL.
14499 (license (list license:gpl2 license:gpl3))))
14500
14501 (define-public r-penalized
14502 (package
14503 (name "r-penalized")
14504 (version "0.9-51")
14505 (source
14506 (origin
14507 (method url-fetch)
14508 (uri (cran-uri "penalized" version))
14509 (sha256
14510 (base32
14511 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
14512 (build-system r-build-system)
14513 (propagated-inputs
14514 `(("r-rcpp" ,r-rcpp)
14515 ("r-rcpparmadillo" ,r-rcpparmadillo)
14516 ("r-survival" ,r-survival)))
14517 (home-page "https://cran.r-project.org/web/packages/penalized/")
14518 (synopsis "Penalized estimation in GLMs and in the Cox model")
14519 (description
14520 "This package provides tools for fitting possibly high dimensional
14521 penalized regression models. The penalty structure can be any combination of
14522 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
14523 constraint on the regression coefficients. The supported regression models
14524 are linear, logistic and Poisson regression and the Cox Proportional Hazards
14525 model. Cross-validation routines allow optimization of the tuning
14526 parameters.")
14527 (license license:gpl2+)))
14528
14529 (define-public r-zim
14530 (package
14531 (name "r-zim")
14532 (version "1.1.0")
14533 (source
14534 (origin
14535 (method url-fetch)
14536 (uri (cran-uri "ZIM" version))
14537 (sha256
14538 (base32
14539 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
14540 (properties `((upstream-name . "ZIM")))
14541 (build-system r-build-system)
14542 (propagated-inputs `(("r-mass" ,r-mass)))
14543 (home-page "https://github.com/biostatstudio/ZIM")
14544 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
14545 (description
14546 "Analyze count time series with excess zeros. Two types of statistical
14547 models are supported: Markov regression and state-space models. They are also
14548 known as observation-driven and parameter-driven models respectively in the
14549 time series literature. The functions used for Markov regression or
14550 observation-driven models can also be used to fit ordinary regression models
14551 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
14552 negative binomial (ZINB) assumption. The package also contains miscellaneous
14553 functions to compute density, distribution, quantile, and generate random
14554 numbers from ZIP and ZINB distributions.")
14555 (license license:gpl3)))
14556
14557 (define-public r-nor1mix
14558 (package
14559 (name "r-nor1mix")
14560 (version "1.3-0")
14561 (source
14562 (origin
14563 (method url-fetch)
14564 (uri (cran-uri "nor1mix" version))
14565 (sha256
14566 (base32
14567 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
14568 (build-system r-build-system)
14569 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
14570 (synopsis "Normal (1-d) mixture models")
14571 (description
14572 "This package provides S3 classes and methods for one-dimensional normal
14573 mixture models, for, e.g., density estimation or clustering algorithms
14574 research and teaching; it provides the widely used Marron-Wand densities. It
14575 also provides tools for efficient random number generation and graphics.")
14576 (license license:gpl2+)))
14577
14578 (define-public r-beanplot
14579 (package
14580 (name "r-beanplot")
14581 (version "1.2")
14582 (source
14583 (origin
14584 (method url-fetch)
14585 (uri (cran-uri "beanplot" version))
14586 (sha256
14587 (base32
14588 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
14589 (build-system r-build-system)
14590 (home-page "https://cran.r-project.org/web/packages/beanplot/")
14591 (synopsis "Visualization via beanplots")
14592 (description
14593 "This package provides beanplots, an alternative to
14594 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
14595 graphs.")
14596 (license license:gpl2)))
14597
14598 (define-public r-pbdzmq
14599 (package
14600 (name "r-pbdzmq")
14601 (version "0.3-5")
14602 (source
14603 (origin
14604 (method url-fetch)
14605 (uri (cran-uri "pbdZMQ" version))
14606 (sha256
14607 (base32
14608 "1v8iv1pzs4j3ics9k9h4xjkv6z1ma2xbqy003xk2lqax6srqi02d"))))
14609 (properties `((upstream-name . "pbdZMQ")))
14610 (build-system r-build-system)
14611 (inputs
14612 `(("zeromq" ,zeromq)
14613 ("zlib" ,zlib)))
14614 (native-inputs
14615 `(("pkg-config" ,pkg-config)))
14616 (home-page "https://pbdr.org/")
14617 (synopsis "R interface to ZeroMQ")
14618 (description
14619 "ZeroMQ is a well-known library for high-performance asynchronous
14620 messaging in scalable, distributed applications. This package provides high
14621 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
14622 interactive client/server programming frameworks. A few wrapper functions
14623 compatible with @code{rzmq} are also provided.")
14624 (license license:gpl3)))
14625
14626 (define-public r-repr
14627 (package
14628 (name "r-repr")
14629 (version "1.1.3")
14630 (source
14631 (origin
14632 (method url-fetch)
14633 (uri (cran-uri "repr" version))
14634 (sha256
14635 (base32
14636 "0qimllv9pn8wsl550bjkp5dkknbmr69j85mrwfbbq75m2ga466sk"))))
14637 (build-system r-build-system)
14638 (propagated-inputs
14639 `(("r-base64enc" ,r-base64enc)
14640 ("r-htmltools" ,r-htmltools)
14641 ("r-jsonlite" ,r-jsonlite)
14642 ("r-pillar" ,r-pillar)))
14643 (home-page "https://cran.r-project.org/web/packages/repr/")
14644 (synopsis "Serializable representations")
14645 (description
14646 "This package provides string and binary representations of objects for
14647 several formats and MIME types.")
14648 (license license:gpl3)))
14649
14650 (define-public r-irdisplay
14651 (package
14652 (name "r-irdisplay")
14653 (version "1.0")
14654 (source
14655 (origin
14656 (method url-fetch)
14657 (uri (cran-uri "IRdisplay" version))
14658 (sha256
14659 (base32
14660 "15jbjrihm1mk899357h9xb08iq3xyagds1xb40fmdpkfcmcfqrw9"))))
14661 (properties `((upstream-name . "IRdisplay")))
14662 (build-system r-build-system)
14663 (propagated-inputs
14664 `(("r-repr" ,r-repr)))
14665 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
14666 (synopsis "Jupyter display machinery")
14667 (description
14668 "This package provides an interface to the rich display capabilities of
14669 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
14670 running IRkernel session.")
14671 (license license:expat)))
14672
14673 (define-public r-irkernel
14674 (package
14675 (name "r-irkernel")
14676 (version "1.1.1")
14677 (source
14678 (origin
14679 (method url-fetch)
14680 (uri (cran-uri "IRkernel" version))
14681 (sha256
14682 (base32
14683 "1y06v3difaiihxfm2abm88nnjzvkla4p346cm1nxmga4iwb2k8gm"))))
14684 (properties `((upstream-name . "IRkernel")))
14685 (build-system r-build-system)
14686 (arguments
14687 `(#:phases
14688 (modify-phases %standard-phases
14689 (add-after 'install 'install-kernelspec
14690 (lambda* (#:key outputs #:allow-other-keys)
14691 (let ((out (assoc-ref outputs "out")))
14692 (setenv "HOME" "/tmp")
14693 (invoke "jupyter" "kernelspec" "install"
14694 "--name" "ir"
14695 "--prefix" out
14696 (string-append out "/site-library/IRkernel/kernelspec"))
14697 ;; Record the absolute file name of the 'R' executable in
14698 ;; 'kernel.json'.
14699 (substitute* (string-append out "/share/jupyter"
14700 "/kernels/ir/kernel.json")
14701 (("\\[\"R\",")
14702 (string-append "[\"" (which "R") "\",")))
14703 #t))))))
14704 (inputs
14705 `(("jupyter" ,jupyter)))
14706 (propagated-inputs
14707 `(("r-crayon" ,r-crayon)
14708 ("r-digest" ,r-digest)
14709 ("r-evaluate" ,r-evaluate)
14710 ("r-irdisplay" ,r-irdisplay)
14711 ("r-jsonlite" ,r-jsonlite)
14712 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
14713 ("r-minimal" ,r-minimal)
14714 ("r-pbdzmq" ,r-pbdzmq)
14715 ("r-repr" ,r-repr)
14716 ("r-uuid" ,r-uuid)))
14717 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
14718 (synopsis "Native R kernel for Jupyter")
14719 (description
14720 "The R kernel for the Jupyter environment executes R code which the
14721 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
14722 network.")
14723 (license license:expat)))
14724
14725 (define-public r-gmodels
14726 (package
14727 (name "r-gmodels")
14728 (version "2.18.1")
14729 (source
14730 (origin
14731 (method url-fetch)
14732 (uri (cran-uri "gmodels" version))
14733 (sha256
14734 (base32
14735 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
14736 (build-system r-build-system)
14737 (propagated-inputs
14738 `(("r-gdata" ,r-gdata)
14739 ("r-mass" ,r-mass)))
14740 (home-page "https://cran.r-project.org/web/packages/gmodels/")
14741 (synopsis "Various R programming tools for model fitting")
14742 (description
14743 "This package provides various R programming tools for model fitting.")
14744 (license license:gpl2)))
14745
14746 (define-public r-apcluster
14747 (package
14748 (name "r-apcluster")
14749 (version "1.4.8")
14750 (source
14751 (origin
14752 (method url-fetch)
14753 (uri (cran-uri "apcluster" version))
14754 (sha256
14755 (base32
14756 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
14757 (build-system r-build-system)
14758 (propagated-inputs
14759 `(("r-matrix" ,r-matrix)
14760 ("r-rcpp" ,r-rcpp)))
14761 (home-page "https://cran.r-project.org/web/packages/apcluster/")
14762 (synopsis "Affinity propagation clustering")
14763 (description
14764 "This package implements affinity propagation clustering introduced by
14765 Frey and Dueck (2007). The package further provides leveraged affinity
14766 propagation and an algorithm for exemplar-based agglomerative clustering that
14767 can also be used to join clusters obtained from affinity propagation. Various
14768 plotting functions are available for analyzing clustering results.")
14769 (license license:gpl2+)))
14770
14771 (define-public r-valr
14772 (package
14773 (name "r-valr")
14774 (version "0.6.2")
14775 (source
14776 (origin
14777 (method url-fetch)
14778 (uri (cran-uri "valr" version))
14779 (sha256
14780 (base32
14781 "1vbp89zfylgih5acvw7lcx3a0dbbd7dhq7yhywr7kq02737qykdx"))))
14782 (build-system r-build-system)
14783 (propagated-inputs
14784 `(("r-broom" ,r-broom)
14785 ("r-dplyr" ,r-dplyr)
14786 ("r-ggplot2" ,r-ggplot2)
14787 ("r-rcpp" ,r-rcpp)
14788 ("r-readr" ,r-readr)
14789 ("r-rlang" ,r-rlang)
14790 ("r-stringr" ,r-stringr)
14791 ("r-tibble" ,r-tibble)))
14792 (native-inputs
14793 `(("r-knitr" ,r-knitr)))
14794 (home-page "https://github.com/rnabioco/valr")
14795 (synopsis "Genome interval arithmetic in R")
14796 (description
14797 "This package enables you to read and manipulate genome intervals and
14798 signals. It provides functionality similar to command-line tool suites within
14799 R, enabling interactive analysis and visualization of genome-scale data.")
14800 (license license:expat)))
14801
14802 (define-public r-rematch2
14803 (package
14804 (name "r-rematch2")
14805 (version "2.1.2")
14806 (source
14807 (origin
14808 (method url-fetch)
14809 (uri (cran-uri "rematch2" version))
14810 (sha256
14811 (base32
14812 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
14813 (build-system r-build-system)
14814 (propagated-inputs
14815 `(("r-tibble" ,r-tibble)))
14816 (home-page "https://github.com/r-lib/rematch2")
14817 (synopsis "Tidy output from regular expression matching")
14818 (description
14819 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
14820 return the match results in tidy data frames.")
14821 (license license:expat)))
14822
14823 (define-public r-picante
14824 (package
14825 (name "r-picante")
14826 (version "1.8.2")
14827 (source
14828 (origin
14829 (method url-fetch)
14830 (uri (cran-uri "picante" version))
14831 (sha256
14832 (base32
14833 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
14834 (build-system r-build-system)
14835 (propagated-inputs
14836 `(("r-ape" ,r-ape)
14837 ("r-nlme" ,r-nlme)
14838 ("r-vegan" ,r-vegan)))
14839 (home-page "https://cran.r-project.org/web/packages/picante/")
14840 (synopsis "Integrating phylogenies and ecology")
14841 (description
14842 "This package provides functions for phylocom integration, community
14843 analyses, null-models, traits and evolution. It implements numerous
14844 ecophylogenetic approaches including measures of community phylogenetic and
14845 trait diversity, phylogenetic signal, estimation of trait values for
14846 unobserved taxa, null models for community and phylogeny randomizations, and
14847 utility functions for data input/output and phylogeny plotting. A full
14848 description of package functionality and methods are provided by Kembel et
14849 al. (2010).")
14850 (license license:gpl2)))
14851
14852 (define-public r-reinforcelearn
14853 (package
14854 (name "r-reinforcelearn")
14855 (version "0.2.1")
14856 (source
14857 (origin
14858 (method url-fetch)
14859 (uri (cran-uri "reinforcelearn" version))
14860 (sha256
14861 (base32
14862 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
14863 (build-system r-build-system)
14864 (propagated-inputs
14865 `(("r-checkmate" ,r-checkmate)
14866 ("r-nnet" ,r-nnet)
14867 ("r-purrr" ,r-purrr)
14868 ("r-r6" ,r-r6)))
14869 (home-page "https://markusdumke.github.io/reinforcelearn")
14870 (synopsis "Reinforcement learning")
14871 (description
14872 "This package implements reinforcement learning environments and
14873 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
14874 can be used with function approximation, eligibility traces (Singh & Sutton,
14875 1996) and experience replay (Mnih et al., 2013).")
14876 (license license:expat)))
14877
14878 (define-public r-lemon
14879 (package
14880 (name "r-lemon")
14881 (version "0.4.5")
14882 (source
14883 (origin
14884 (method url-fetch)
14885 (uri (cran-uri "lemon" version))
14886 (sha256
14887 (base32
14888 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
14889 (build-system r-build-system)
14890 (propagated-inputs
14891 `(("r-ggplot2" ,r-ggplot2)
14892 ("r-gridextra" ,r-gridextra)
14893 ("r-gtable" ,r-gtable)
14894 ("r-knitr" ,r-knitr)
14895 ("r-lattice" ,r-lattice)
14896 ("r-plyr" ,r-plyr)
14897 ("r-rlang" ,r-rlang)
14898 ("r-scales" ,r-scales)))
14899 (native-inputs
14900 `(("r-knitr" ,r-knitr)))
14901 (home-page "https://github.com/stefanedwards/lemon")
14902 (synopsis "Freshen up your ggplot2 plots")
14903 (description
14904 "This package provides functions for working with legends and axis lines
14905 of ggplot2, facets that repeat axis lines on all panels, and some knitr
14906 extensions.")
14907 (license license:gpl3)))
14908
14909 (define-public r-wgaim
14910 (package
14911 (name "r-wgaim")
14912 (version "2.0-1")
14913 (source
14914 (origin
14915 (method url-fetch)
14916 (uri (cran-uri "wgaim" version))
14917 (sha256
14918 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
14919 (build-system r-build-system)
14920 (propagated-inputs
14921 `(("r-ggplot2" ,r-ggplot2)
14922 ("r-qtl" ,r-qtl)))
14923 (home-page "https://cran.r-project.org/web/packages/wgaim")
14924 (synopsis "Whole genome average interval mapping for QTL detection")
14925 (description
14926 "This package integrates sophisticated mixed modelling methods with a
14927 whole genome approach to detecting significant QTL in linkage maps.")
14928 (license license:gpl2+)))
14929
14930 (define-public r-bedr
14931 (package
14932 (name "r-bedr")
14933 (version "1.0.7")
14934 (source
14935 (origin
14936 (method url-fetch)
14937 (uri (cran-uri "bedr" version))
14938 (sha256
14939 (base32
14940 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
14941 (build-system r-build-system)
14942 (propagated-inputs
14943 `(("r-data-table" ,r-data-table)
14944 ("r-r-utils" ,r-r-utils)
14945 ("r-testthat" ,r-testthat)
14946 ("r-venndiagram" ,r-venndiagram)
14947 ("r-yaml" ,r-yaml)
14948 ("bedops" ,bedops)
14949 ("bedtools" ,bedtools)
14950 ("htslib" ,htslib))) ; for tabix
14951 (native-inputs
14952 `(("r-knitr" ,r-knitr))) ; for vignettes
14953 (home-page "https://cran.r-project.org/web/packages/bedr")
14954 (synopsis "Genomic region processing")
14955 (description
14956 "This package is for genomic regions processing using command line tools
14957 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
14958 utilities to perform genome arithmetic e.g indexing, formatting and merging.
14959 The bedr package's API enhances access to these tools as well as offers
14960 additional utilities for genomic regions processing.")
14961 (license license:gpl2)))
14962
14963 (define-public r-sets
14964 (package
14965 (name "r-sets")
14966 (version "1.0-18")
14967 (source
14968 (origin
14969 (method url-fetch)
14970 (uri (cran-uri "sets" version))
14971 (sha256
14972 (base32
14973 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
14974 (properties `((upstream-name . "sets")))
14975 (build-system r-build-system)
14976 (home-page "https://cran.r-project.org/web/packages/sets")
14977 (synopsis "Sets, generalized sets, customizable sets and intervals")
14978 (description
14979 "This package provides data structures and basic operations for ordinary
14980 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
14981 customizable sets, and intervals.")
14982 (license license:gpl2)))
14983
14984 (define-public r-partitions
14985 (package
14986 (name "r-partitions")
14987 (version "1.9-22")
14988 (source
14989 (origin
14990 (method url-fetch)
14991 (uri (cran-uri "partitions" version))
14992 (sha256
14993 (base32
14994 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
14995 (build-system r-build-system)
14996 (propagated-inputs
14997 `(("r-gmp" ,r-gmp)
14998 ("r-polynom" ,r-polynom)
14999 ("r-sets" ,r-sets)))
15000 (home-page "https://cran.r-project.org/web/packages/partitions")
15001 (synopsis "Additive partitions of integers")
15002 (description
15003 "This package provides tools to enumerates the partitions, unequal
15004 partitions, and restricted partitions of an integer; the three corresponding
15005 partition functions are also given.")
15006 ;; Any version of the GPL
15007 (license license:gpl2+)))
15008
15009 (define-public r-brobdingnag
15010 (package
15011 (name "r-brobdingnag")
15012 (version "1.2-6")
15013 (source
15014 (origin
15015 (method url-fetch)
15016 (uri (cran-uri "Brobdingnag" version))
15017 (sha256
15018 (base32
15019 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
15020 (properties `((upstream-name . "Brobdingnag")))
15021 (build-system r-build-system)
15022 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
15023 (synopsis "Very large numbers in R")
15024 (description
15025 "This package handles very large numbers in R. Real numbers are held
15026 using their natural logarithms, plus a logical flag indicating sign. The
15027 package includes a vignette that gives a step-by-step introduction to using S4
15028 methods.")
15029 ;; Any version of the GPL
15030 (license license:gpl2+)))
15031
15032 (define-public r-untb
15033 (package
15034 (name "r-untb")
15035 (version "1.7-4")
15036 (source
15037 (origin
15038 (method url-fetch)
15039 (uri (cran-uri "untb" version))
15040 (sha256
15041 (base32
15042 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
15043 (build-system r-build-system)
15044 (propagated-inputs
15045 `(("r-brobdingnag" ,r-brobdingnag)
15046 ("r-partitions" ,r-partitions)
15047 ("r-polynom" ,r-polynom)))
15048 (home-page "https://github.com/RobinHankin/untb.git")
15049 (synopsis "Ecological drift under the UNTB")
15050 (description
15051 "This package provides numerical simulations, and visualizations, of
15052 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
15053 (license license:gpl2+)))
15054
15055 (define-public r-stepwise
15056 (package
15057 (name "r-stepwise")
15058 (version "0.3")
15059 (source
15060 (origin
15061 (method url-fetch)
15062 (uri (cran-uri "stepwise" version))
15063 (sha256
15064 (base32
15065 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
15066 (build-system r-build-system)
15067 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
15068 (synopsis "Stepwise detection of recombination breakpoints")
15069 (description
15070 "This package provides a stepwise approach to identifying recombination
15071 breakpoints in a genomic sequence alignment.")
15072 (license license:gpl2+)))
15073
15074 (define-public r-snpmaxsel
15075 (package
15076 (name "r-snpmaxsel")
15077 (version "1.0-3")
15078 (source
15079 (origin
15080 (method url-fetch)
15081 (uri (cran-uri "SNPmaxsel" version))
15082 (sha256
15083 (base32
15084 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
15085 (properties `((upstream-name . "SNPmaxsel")))
15086 (build-system r-build-system)
15087 (propagated-inputs
15088 `(("r-combinat" ,r-combinat)
15089 ("r-mvtnorm" ,r-mvtnorm)))
15090 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
15091 (synopsis "Maximally selected statistics for SNP data")
15092 (description
15093 "This package implements asymptotic methods related to maximally selected
15094 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
15095 data.")
15096 (license license:gpl2+)))
15097
15098 (define-public r-acsnminer
15099 (package
15100 (name "r-acsnminer")
15101 (version "0.16.8.25")
15102 (source (origin
15103 (method url-fetch)
15104 (uri (cran-uri "ACSNMineR" version))
15105 (sha256
15106 (base32
15107 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
15108 (properties `((upstream-name . "ACSNMineR")))
15109 (build-system r-build-system)
15110 (propagated-inputs
15111 `(("r-ggplot2" ,r-ggplot2)
15112 ("r-gridextra" ,r-gridextra)))
15113 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
15114 (synopsis "Gene enrichment analysis")
15115 (description
15116 "This package provides tools to compute and represent gene set enrichment
15117 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
15118 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
15119 enrichment can be run with hypergeometric test or Fisher exact test, and can
15120 use multiple corrections. Visualization of data can be done either by
15121 barplots or heatmaps.")
15122 (license license:gpl2+)))
15123
15124 (define-public r-seqinr
15125 (package
15126 (name "r-seqinr")
15127 (version "4.2-5")
15128 (source
15129 (origin
15130 (method url-fetch)
15131 (uri (cran-uri "seqinr" version))
15132 (sha256
15133 (base32
15134 "1z1jipgrn9nrnxlx7bcf8c2chwpa3kfva0zgyb12xbr3kisn166y"))))
15135 (build-system r-build-system)
15136 (propagated-inputs
15137 `(("r-ade4" ,r-ade4)
15138 ("r-segmented" ,r-segmented)))
15139 (inputs
15140 `(("zlib" ,zlib)))
15141 (home-page "http://seqinr.r-forge.r-project.org/")
15142 (synopsis "Biological sequences retrieval and analysis")
15143 (description
15144 "This package provides tools for exploratory data analysis and data
15145 visualization of biological sequence (DNA and protein) data. It also includes
15146 utilities for sequence data management under the ACNUC system.")
15147 (license license:gpl2+)))
15148
15149 (define-public r-units
15150 (package
15151 (name "r-units")
15152 (version "0.7-0")
15153 (source
15154 (origin
15155 (method url-fetch)
15156 (uri (cran-uri "units" version))
15157 (sha256
15158 (base32
15159 "0kwfcrrbcwl7s50n1wp33vswqzmprh91clvakbd1jpznqpg5m3js"))))
15160 (build-system r-build-system)
15161 (inputs
15162 `(("udunits" ,udunits)))
15163 (propagated-inputs
15164 `(("r-rcpp" ,r-rcpp)))
15165 (native-inputs
15166 `(("r-knitr" ,r-knitr)))
15167 (home-page "https://github.com/r-quantities/units/")
15168 (synopsis "Measurement Units for R Vectors")
15169 (description
15170 "This package provides support for measurement units in R vectors,
15171 matrices and arrays: automatic propagation, conversion, derivation and
15172 simplification of units; raising errors in case of unit incompatibility. It
15173 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
15174 classes.")
15175 (license license:gpl2)))
15176
15177 (define-public r-udunits2
15178 (package
15179 (name "r-udunits2")
15180 (version "0.13")
15181 (source
15182 (origin
15183 (method url-fetch)
15184 (uri (cran-uri "udunits2" version))
15185 (sha256
15186 (base32
15187 "0yav7rm2afcx67xqrknybxgz7x63w78zyxa0xifvc0k2gz0d6mfi"))))
15188 (properties `((upstream-name . "udunits2")))
15189 (build-system r-build-system)
15190 (inputs
15191 `(("udunits" ,udunits)))
15192 (home-page "https://cran.r-project.org/package=udunits2")
15193 (synopsis "Udunits-2 bindings for R")
15194 (description
15195 "This package provides simple bindings to Unidata's udunits library.")
15196 (license license:gpl2)))
15197
15198 (define-public r-classint
15199 (package
15200 (name "r-classint")
15201 (version "0.4-3")
15202 (source
15203 (origin
15204 (method url-fetch)
15205 (uri (cran-uri "classInt" version))
15206 (sha256
15207 (base32
15208 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
15209 (properties `((upstream-name . "classInt")))
15210 (build-system r-build-system)
15211 (propagated-inputs
15212 `(("r-class" ,r-class)
15213 ("r-e1071" ,r-e1071)
15214 ("r-kernsmooth" ,r-kernsmooth)))
15215 (native-inputs
15216 `(("gfortran" ,gfortran)
15217 ("r-knitr" ,r-knitr)))
15218 (home-page "https://github.com/r-spatial/classInt/")
15219 (synopsis "Choose univariate class intervals")
15220 (description
15221 "This package provides selected commonly used methods for choosing
15222 univariate class intervals for mapping or other graphics purposes.")
15223 (license license:gpl2+)))
15224
15225 (define-public r-spdata
15226 (package
15227 (name "r-spdata")
15228 (version "0.3.8")
15229 (source
15230 (origin
15231 (method url-fetch)
15232 (uri (cran-uri "spData" version))
15233 (sha256
15234 (base32
15235 "1mlsqy9cbilfc80cbdlbgsngvzdkrd9yjdkxnw2b1gzxnj6jcqbs"))))
15236 (properties `((upstream-name . "spData")))
15237 (build-system r-build-system)
15238 (propagated-inputs
15239 `(("r-raster" ,r-raster)
15240 ("r-sp" ,r-sp)))
15241 (home-page "https://github.com/Nowosad/spData")
15242 (synopsis "Datasets for spatial analysis")
15243 (description
15244 "This a package containing diverse spatial datasets for demonstrating,
15245 benchmarking and teaching spatial data analysis. It includes R data of class
15246 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
15247 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
15248 of the datasets are designed to illustrate specific analysis techniques.
15249 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
15250 illustrate point pattern analysis techniques.")
15251 (license license:cc0)))
15252
15253 (define-public r-learnbayes
15254 (package
15255 (name "r-learnbayes")
15256 (version "2.15.1")
15257 (source
15258 (origin
15259 (method url-fetch)
15260 (uri (cran-uri "LearnBayes" version))
15261 (sha256
15262 (base32
15263 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
15264 (properties `((upstream-name . "LearnBayes")))
15265 (build-system r-build-system)
15266 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
15267 (synopsis "Functions for learning Bayesian inference")
15268 (description
15269 "This package provides a collection of functions helpful in learning the
15270 basic tenets of Bayesian statistical inference. It contains functions for
15271 summarizing basic one and two parameter posterior distributions and predictive
15272 distributions. It contains MCMC algorithms for summarizing posterior
15273 distributions defined by the user. It also contains functions for regression
15274 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
15275 sampling.")
15276 (license license:gpl2+)))
15277
15278 (define-public r-deldir
15279 (package
15280 (name "r-deldir")
15281 (version "0.2-10")
15282 (source
15283 (origin
15284 (method url-fetch)
15285 (uri (cran-uri "deldir" version))
15286 (sha256
15287 (base32
15288 "08ij6zb6id71zk6gzs9z779y49y41c2gpi7p7mljnlw7py92g8k5"))))
15289 (build-system r-build-system)
15290 (native-inputs `(("gfortran" ,gfortran)))
15291 (home-page "https://cran.r-project.org/web/packages/deldir")
15292 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
15293 (description
15294 "This package provides tools for calculating the Delaunay triangulation
15295 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
15296 of a planar point set. It plots triangulations and tessellations in various
15297 ways, clips tessellations to sub-windows, calculates perimeters of
15298 tessellations, and summarizes information about the tiles of the
15299 tessellation.")
15300 (license license:gpl2+)))
15301
15302 (define-public r-sf
15303 (package
15304 (name "r-sf")
15305 (version "0.9-7")
15306 (source
15307 (origin
15308 (method url-fetch)
15309 (uri (cran-uri "sf" version))
15310 (sha256
15311 (base32
15312 "175fmnnw11fjhfgjv9sn9b0jfjcqbybpgwsvv99d5yddigvw5jja"))))
15313 (build-system r-build-system)
15314 (inputs
15315 `(("gdal" ,gdal)
15316 ("geos" ,geos)
15317 ("proj" ,proj)
15318 ("sqlite" ,sqlite)
15319 ("zlib" ,zlib)))
15320 (propagated-inputs
15321 `(("r-classint" ,r-classint)
15322 ("r-dbi" ,r-dbi)
15323 ("r-magrittr" ,r-magrittr)
15324 ("r-rcpp" ,r-rcpp)
15325 ("r-units" ,r-units)))
15326 (native-inputs
15327 `(("pkg-config" ,pkg-config)
15328 ("r-knitr" ,r-knitr)))
15329 (home-page "https://github.com/r-spatial/sf/")
15330 (synopsis "Simple features for R")
15331 (description
15332 "This package provides support for simple features, a standardized way to
15333 encode spatial vector data. It binds to GDAL for reading and writing data, to
15334 GEOS for geometrical operations, and to PROJ for projection conversions and
15335 datum transformations.")
15336 ;; Either of these licenses
15337 (license (list license:gpl2 license:expat))))
15338
15339 (define-public r-spdep
15340 (package
15341 (name "r-spdep")
15342 (version "1.1-5")
15343 (source
15344 (origin
15345 (method url-fetch)
15346 (uri (cran-uri "spdep" version))
15347 (sha256
15348 (base32
15349 "0pbd7wrg5v44p2yxsjp774lpyzap3madir5mn5p3ix7ibk7ldjs7"))))
15350 (build-system r-build-system)
15351 (propagated-inputs
15352 `(("r-boot" ,r-boot)
15353 ("r-coda" ,r-coda)
15354 ("r-deldir" ,r-deldir)
15355 ("r-expm" ,r-expm)
15356 ("r-gmodels" ,r-gmodels)
15357 ("r-learnbayes" ,r-learnbayes)
15358 ("r-mass" ,r-mass)
15359 ("r-matrix" ,r-matrix)
15360 ("r-nlme" ,r-nlme)
15361 ("r-sf" ,r-sf)
15362 ("r-sp" ,r-sp)
15363 ("r-spdata" ,r-spdata)))
15364 (native-inputs
15365 `(("r-knitr" ,r-knitr)))
15366 (home-page "https://github.com/r-spatial/spdep/")
15367 (synopsis "Spatial dependence: weighting schemes, statistics and models")
15368 (description
15369 "This package provides a collection of functions to create spatial
15370 weights matrix objects from polygon contiguities, from point patterns by
15371 distance and tessellations, for summarizing these objects, and for permitting
15372 their use in spatial data analysis, including regional aggregation by minimum
15373 spanning tree.")
15374 (license license:gpl2+)))
15375
15376 (define-public r-adegenet
15377 (package
15378 (name "r-adegenet")
15379 (version "2.1.3")
15380 (source
15381 (origin
15382 (method url-fetch)
15383 (uri (cran-uri "adegenet" version))
15384 (sha256
15385 (base32
15386 "1ipnawi0qfd4rfwj37igvh36x1a9d8x4n7xynn1jcr12rd713407"))))
15387 (build-system r-build-system)
15388 (propagated-inputs
15389 `(("r-ade4" ,r-ade4)
15390 ("r-ape" ,r-ape)
15391 ("r-boot" ,r-boot)
15392 ("r-dplyr" ,r-dplyr)
15393 ("r-ggplot2" ,r-ggplot2)
15394 ("r-igraph" ,r-igraph)
15395 ("r-mass" ,r-mass)
15396 ("r-reshape2" ,r-reshape2)
15397 ("r-seqinr" ,r-seqinr)
15398 ("r-shiny" ,r-shiny)
15399 ("r-spdep" ,r-spdep)
15400 ("r-vegan" ,r-vegan)))
15401 (home-page "https://github.com/thibautjombart/adegenet")
15402 (synopsis "Exploratory analysis of genetic and genomic data")
15403 (description
15404 "This package provides a toolset for the exploration of genetic and
15405 genomic data. Adegenet provides formal (S4) classes for storing and handling
15406 various genetic data, including genetic markers with varying ploidy and
15407 hierarchical population structure (@code{genind} class), alleles counts by
15408 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
15409 also implements original multivariate methods (DAPC, sPCA), graphics,
15410 statistical tests, simulation tools, distance and similarity measures, and
15411 several spatial methods. A range of both empirical and simulated datasets is
15412 also provided to illustrate various methods.")
15413 (license license:gpl2+)))
15414
15415 (define-public r-pegas
15416 (package
15417 (name "r-pegas")
15418 (version "0.14")
15419 (source
15420 (origin
15421 (method url-fetch)
15422 (uri (cran-uri "pegas" version))
15423 (sha256
15424 (base32 "0lr06gajzdanj8ax91kgpxsj863m367v2s1z5gnxps3999n0xybx"))))
15425 (build-system r-build-system)
15426 (propagated-inputs
15427 `(("r-adegenet" ,r-adegenet)
15428 ("r-ape" ,r-ape)))
15429 (home-page "http://ape-package.ird.fr/pegas.html")
15430 (synopsis "Population and evolutionary genetics analysis system")
15431 (description
15432 "This package provides functions for reading, writing, plotting,
15433 analysing, and manipulating allelic and haplotypic data, including from VCF
15434 files, and for the analysis of population nucleotide sequences and
15435 micro-satellites including coalescent analyses, linkage disequilibrium,
15436 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
15437 minimum spanning tree and network, and median-joining networks.")
15438 (license license:gpl2+)))
15439
15440 (define-public r-rmetasim
15441 (package
15442 (name "r-rmetasim")
15443 (version "3.1.14")
15444 (source
15445 (origin
15446 (method url-fetch)
15447 (uri (cran-uri "rmetasim" version))
15448 (sha256
15449 (base32
15450 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
15451 (build-system r-build-system)
15452 (propagated-inputs
15453 `(("r-ade4" ,r-ade4)
15454 ("r-adegenet" ,r-adegenet)
15455 ("r-gtools" ,r-gtools)
15456 ("r-pegas" ,r-pegas)))
15457 (home-page "https://cran.r-project.org/web/packages/rmetasim")
15458 (synopsis "Individual-based population genetic simulation environment")
15459 (description
15460 "This package provides an interface between R and the metasim simulation
15461 engine. The simulation environment is documented in: Strand, A.(2002),
15462 Metasim 1.0: an individual-based environment for simulating population
15463 genetics of complex population dynamics.")
15464 ;; Any GPL version
15465 (license license:gpl2+)))
15466
15467 (define-public r-genetics
15468 (package
15469 (name "r-genetics")
15470 (version "1.3.8.1.3")
15471 (source
15472 (origin
15473 (method url-fetch)
15474 (uri (cran-uri "genetics" version))
15475 (sha256
15476 (base32
15477 "0lljxvz7nc6y2z303icphar2niir0i407w5cyhy2pwspd9gwkwpy"))))
15478 (build-system r-build-system)
15479 (propagated-inputs
15480 `(("r-combinat" ,r-combinat)
15481 ("r-gdata" ,r-gdata)
15482 ("r-gtools" ,r-gtools)
15483 ("r-mass" ,r-mass)
15484 ("r-mvtnorm" ,r-mvtnorm)))
15485 (home-page "https://cran.r-project.org/web/packages/genetics/")
15486 (synopsis "Population genetics")
15487 (description
15488 "This package provides classes and methods for handling genetic data.
15489 It includes classes to represent genotypes and haplotypes at single markers up
15490 to multiple markers on multiple chromosomes. Function include allele
15491 frequencies, flagging homo/heterozygotes, flagging carriers of certain
15492 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
15493 and testing for linkage disequilibrium, ...")
15494 ;; Any GPL version.
15495 (license license:gpl2+)))
15496
15497 (define-public r-snp-plotter
15498 (package
15499 (name "r-snp-plotter")
15500 (version "0.5.1")
15501 (source
15502 (origin
15503 (method url-fetch)
15504 (uri (cran-uri "snp.plotter" version))
15505 (sha256
15506 (base32
15507 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
15508 (properties `((upstream-name . "snp.plotter")))
15509 (build-system r-build-system)
15510 (propagated-inputs `(("r-genetics" ,r-genetics)))
15511 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
15512 (synopsis "Plot p-values using single SNP and/or haplotype data")
15513 (description
15514 "This package helps you create plots of p-values using single SNP and/or
15515 haplotype data. Main features of the package include options to display a
15516 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
15517 datasets simultaneously. Plots can be created using global and/or individual
15518 haplotype p-values along with single SNP p-values. Images are created as
15519 either PDF/EPS files.")
15520 (license license:gpl2+)))
15521
15522 (define-public r-polspline
15523 (package
15524 (name "r-polspline")
15525 (version "1.1.19")
15526 (source
15527 (origin
15528 (method url-fetch)
15529 (uri (cran-uri "polspline" version))
15530 (sha256
15531 (base32 "0rhzf735hmbqfn2xbgcln4sqx7m9far72g5gq9mghgkw016kqglm"))))
15532 (build-system r-build-system)
15533 (native-inputs `(("gfortran" ,gfortran)))
15534 (home-page "https://cran.r-project.org/web/packages/polspline/")
15535 (synopsis "Polynomial spline routines")
15536 (description
15537 "This package provides routines for the polynomial spline fitting
15538 routines hazard regression, hazard estimation with flexible tails, logspline,
15539 lspec, polyclass, and polymars.")
15540 (license license:gpl2+)))
15541
15542 (define-public r-rms
15543 (package
15544 (name "r-rms")
15545 (version "6.1-1")
15546 (source
15547 (origin
15548 (method url-fetch)
15549 (uri (cran-uri "rms" version))
15550 (sha256
15551 (base32 "1zgfd60lzbakcv7x0i5k3lkw3s0xx5bzssjgangna5lq2j17cdli"))))
15552 (build-system r-build-system)
15553 (propagated-inputs
15554 `(("r-cluster" ,r-cluster)
15555 ("r-digest" ,r-digest)
15556 ("r-ggplot2" ,r-ggplot2)
15557 ("r-hmisc" ,r-hmisc)
15558 ("r-htmltable" ,r-htmltable)
15559 ("r-htmltools" ,r-htmltools)
15560 ("r-lattice" ,r-lattice)
15561 ("r-mass" ,r-mass)
15562 ("r-multcomp" ,r-multcomp)
15563 ("r-nlme" ,r-nlme)
15564 ("r-polspline" ,r-polspline)
15565 ("r-quantreg" ,r-quantreg)
15566 ("r-rpart" ,r-rpart)
15567 ("r-sparsem" ,r-sparsem)
15568 ("r-survival" ,r-survival)))
15569 (native-inputs `(("gfortran" ,gfortran)))
15570 (home-page "http://biostat.mc.vanderbilt.edu/rms")
15571 (synopsis "Regression modeling strategies")
15572 (description
15573 "This is a package for regression modeling, testing, estimation,
15574 validation, graphics, prediction, and typesetting by storing enhanced model
15575 design attributes in the fit. The rms package is a collection of functions
15576 that assist with and streamline modeling. It also contains functions for
15577 binary and ordinal logistic regression models, ordinal models for continuous Y
15578 with a variety of distribution families, and the Buckley-James multiple
15579 regression model for right-censored responses, and implements penalized
15580 maximum likelihood estimation for logistic and ordinary linear models. The
15581 package works with almost any regression model, but it was especially written
15582 to work with binary or ordinal regression models, Cox regression, accelerated
15583 failure time models, ordinary linear models, the Buckley-James model,
15584 generalized least squares for serially or spatially correlated observations,
15585 generalized linear models, and quantile regression.")
15586 (license license:gpl2+)))
15587
15588 (define-public r-arsenal
15589 (package
15590 (name "r-arsenal")
15591 (version "3.6.2")
15592 (source
15593 (origin
15594 (method url-fetch)
15595 (uri (cran-uri "arsenal" version))
15596 (sha256
15597 (base32
15598 "0spm0s23xs5bm88slkz6a65mbs663qhnravwxp7rkdkr378vb5fn"))))
15599 (properties `((upstream-name . "arsenal")))
15600 (build-system r-build-system)
15601 (propagated-inputs `(("r-knitr" ,r-knitr)))
15602 (native-inputs `(("r-knitr" ,r-knitr)))
15603 (home-page "https://github.com/mayoverse/arsenal")
15604 (synopsis "Functions for large-scale statistical summaries")
15605 (description
15606 "This package provides an arsenal of R functions for large-scale
15607 statistical summaries, which are streamlined to work within the latest
15608 reporting tools in R and RStudio and which use formulas and versatile
15609 summary statistics for summary tables and models. The primary functions
15610 include
15611
15612 @enumerate
15613 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
15614 levels of one or more categorical variables;
15615 @item @code{paired}, a Table-1-like summary of multiple variable types paired
15616 across two time points;
15617 @item @code{modelsum}, which performs simple model fits on one or more
15618 endpoints for many variables (univariate or adjusted for covariates);
15619 @item @code{freqlist}, a powerful frequency table across many categorical
15620 variables;
15621 @item @code{comparedf}, a function for comparing @code{data.frames}; and
15622 @item @code{write2}, a function to output tables to a document.
15623 @end enumerate
15624 ")
15625 (license license:gpl2+)))
15626
15627 (define-public r-haplo-stats
15628 (package
15629 (name "r-haplo-stats")
15630 (version "1.8.6")
15631 (source
15632 (origin
15633 (method url-fetch)
15634 (uri (cran-uri "haplo.stats" version))
15635 (sha256
15636 (base32
15637 "1imz4gs0n57vixwwbirrihpgvn2pyj5da4rgjcjk14n2xkk0nay7"))))
15638 (properties `((upstream-name . "haplo.stats")))
15639 (build-system r-build-system)
15640 (propagated-inputs
15641 `(("r-arsenal" ,r-arsenal)
15642 ("r-rms" ,r-rms)))
15643 (native-inputs
15644 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
15645 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
15646 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
15647 (description
15648 "This package provides routines for the analysis of indirectly measured
15649 haplotypes. The statistical methods assume that all subjects are unrelated
15650 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
15651 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
15652 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
15653 examples in the vignette.")
15654 (license license:gpl2+)))
15655
15656 (define-public r-bqtl
15657 (package
15658 (name "r-bqtl")
15659 (version "1.0-32")
15660 (source
15661 (origin
15662 (method url-fetch)
15663 (uri (cran-uri "bqtl" version))
15664 (sha256
15665 (base32
15666 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
15667 (build-system r-build-system)
15668 (native-inputs `(("gfortran" ,gfortran)))
15669 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
15670 (synopsis "Bayesian QTL mapping toolkit")
15671 (description
15672 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
15673 lines. It includes maximum likelihood and Bayesian tools.")
15674 (license license:gpl2+)))
15675
15676 (define-public r-ibdreg
15677 (package
15678 (name "r-ibdreg")
15679 (version "0.3.1")
15680 (source
15681 (origin
15682 (method url-fetch)
15683 (uri (cran-uri "ibdreg" version))
15684 (sha256
15685 (base32
15686 "0kgx9iavgm6d6njhki7bm82d6lw2c7kcch2pryd339js2hm0l5gq"))))
15687 (build-system r-build-system)
15688 (home-page "https://www.mayo.edu/research/labs/\
15689 statistical-genetics-genetic-epidemiology/software")
15690 (synopsis "Regression methods for IBD linkage with covariates")
15691 (description
15692 "This package provides a method to test genetic linkage with covariates
15693 by regression methods with response IBD sharing for relative pairs. Account
15694 for correlations of IBD statistics and covariates for relative pairs within
15695 the same pedigree.")
15696 (license license:gpl2+)))
15697
15698 (define-public r-dlmap
15699 (package
15700 (name "r-dlmap")
15701 (version "1.13")
15702 (source
15703 (origin
15704 (method url-fetch)
15705 (uri (cran-uri "dlmap" version))
15706 (sha256
15707 (base32
15708 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
15709 (build-system r-build-system)
15710 (propagated-inputs
15711 `(("r-ibdreg" ,r-ibdreg)
15712 ("r-mgcv" ,r-mgcv)
15713 ("r-nlme" ,r-nlme)
15714 ("r-qtl" ,r-qtl)
15715 ("r-wgaim" ,r-wgaim)))
15716 (home-page "https://cran.r-project.org/web/packages/dlmap/")
15717 (synopsis "Detection localization mapping for QTL")
15718 (description
15719 "This is package for QTL mapping in a mixed model framework with separate
15720 detection and localization stages. The first stage detects the number of QTL
15721 on each chromosome based on the genetic variation due to grouped markers on
15722 the chromosome; the second stage uses this information to determine the most
15723 likely QTL positions. The mixed model can accommodate general fixed and
15724 random effects, including spatial effects in field trials and pedigree
15725 effects. It is applicable to backcrosses, doubled haploids, recombinant
15726 inbred lines, F2 intercrosses, and association mapping populations.")
15727 (license license:gpl2)))
15728
15729 (define-public r-hwde
15730 (package
15731 (name "r-hwde")
15732 (version "0.67")
15733 (source
15734 (origin
15735 (method url-fetch)
15736 (uri (cran-uri "hwde" version))
15737 (sha256
15738 (base32
15739 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
15740 (build-system r-build-system)
15741 (home-page "https://cran.r-project.org/web/packages/hwde/")
15742 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
15743 (description
15744 "This package fits models for genotypic disequilibria, as described in
15745 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
15746 terms are available that account for first order interactions between loci.
15747 It also implements, for a single locus in a single population, a conditional
15748 exact test for Hardy-Weinberg equilibrium.")
15749 (license license:gpl2+)))
15750
15751 (define-public r-tdthap
15752 (package
15753 (name "r-tdthap")
15754 (version "1.1-11")
15755 (source
15756 (origin
15757 (method url-fetch)
15758 (uri (cran-uri "tdthap" version))
15759 (sha256
15760 (base32
15761 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
15762 (build-system r-build-system)
15763 (home-page "https://cran.r-project.org/web/packages/tdthap/")
15764 (synopsis "TDT tests for extended haplotypes")
15765 (description
15766 "Functions and examples are provided for transmission/disequilibrium
15767 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
15768 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
15769 (license license:artistic2.0)))
15770
15771 (define-public r-sparql
15772 (package
15773 (name "r-sparql")
15774 (version "1.16")
15775 (source (origin
15776 (method url-fetch)
15777 (uri (cran-uri "SPARQL" version))
15778 (sha256
15779 (base32
15780 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
15781 (properties `((upstream-name . "SPARQL")))
15782 (build-system r-build-system)
15783 (propagated-inputs
15784 `(("r-rcurl" ,r-rcurl)
15785 ("r-xml" ,r-xml)))
15786 (home-page "https://cran.r-project.org/web/packages/SPARQL")
15787 (synopsis "SPARQL client for R")
15788 (description "This package provides an interface to use SPARQL to pose
15789 SELECT or UPDATE queries to an end-point.")
15790 ;; The only license indication is found in the DESCRIPTION file,
15791 ;; which states GPL-3. So we cannot assume GPLv3+.
15792 (license license:gpl3)))
15793
15794 (define-public r-bookdown
15795 (package
15796 (name "r-bookdown")
15797 (version "0.21")
15798 (source (origin
15799 (method url-fetch)
15800 (uri (cran-uri "bookdown" version))
15801 (sha256
15802 (base32
15803 "0xms1srx9l2mn8xaxnpic0s21y8k56bhwpj45wy7b0yscmxgmh27"))))
15804 (build-system r-build-system)
15805 (propagated-inputs
15806 `(("r-htmltools" ,r-htmltools)
15807 ("r-knitr" ,r-knitr)
15808 ("r-rmarkdown" ,r-rmarkdown)
15809 ("r-tinytex" ,r-tinytex)
15810 ("r-xfun" ,r-xfun)
15811 ("r-yaml" ,r-yaml)
15812 ("pandoc" ,pandoc)))
15813 (home-page "https://github.com/rstudio/bookdown")
15814 (synopsis "Authoring books and technical documents with R markdown")
15815 (description "This package provides output formats and utilities for
15816 authoring books and technical documents with R Markdown.")
15817 (license license:gpl3)))
15818
15819 (define-public r-optparse
15820 (package
15821 (name "r-optparse")
15822 (version "1.6.6")
15823 (source
15824 (origin
15825 (method url-fetch)
15826 (uri (cran-uri "optparse" version))
15827 (sha256
15828 (base32
15829 "1l301dy3gc8pn7j00awcjh41wmc1ks9kswak255kbsa6f54rsxsi"))))
15830 (build-system r-build-system)
15831 (propagated-inputs
15832 `(("r-getopt" ,r-getopt)))
15833 (native-inputs
15834 `(("r-knitr" ,r-knitr)))
15835 (home-page "https://github.com/trevorld/optparse")
15836 (synopsis "Command line option parser")
15837 (description
15838 "This package provides a command line parser inspired by Python's
15839 @code{optparse} library to be used with Rscript to write shebang scripts
15840 that accept short and long options.")
15841 (license license:gpl2+)))
15842
15843 (define-public r-kernlab
15844 (package
15845 (name "r-kernlab")
15846 (version "0.9-29")
15847 (source
15848 (origin
15849 (method url-fetch)
15850 (uri (cran-uri "kernlab" version))
15851 (sha256
15852 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
15853 (build-system r-build-system)
15854 (home-page "https://cran.r-project.org/web/packages/kernlab")
15855 (synopsis "Kernel-based machine learning tools")
15856 (description
15857 "This package provides kernel-based machine learning methods for
15858 classification, regression, clustering, novelty detection, quantile regression
15859 and dimensionality reduction. Among other methods @code{kernlab} includes
15860 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
15861 and a QP solver.")
15862 (license license:gpl2)))
15863
15864 (define-public r-hierfstat
15865 (package
15866 (name "r-hierfstat")
15867 (version "0.5-7")
15868 (source
15869 (origin
15870 (method url-fetch)
15871 (uri (cran-uri "hierfstat" version))
15872 (sha256
15873 (base32
15874 "0dp8k1z5a8gqnax99y1hwfvxilzf4n2i751zr0z6ihrzirsvb3m3"))))
15875 (build-system r-build-system)
15876 (propagated-inputs
15877 `(("r-ade4" ,r-ade4)
15878 ("r-adegenet" ,r-adegenet)
15879 ("r-gaston" ,r-gaston)
15880 ("r-gtools" ,r-gtools)))
15881 (native-inputs
15882 `(("r-knitr" ,r-knitr)))
15883 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
15884 (synopsis "Estimation and tests of hierarchical F-statistics")
15885 (description
15886 "This package allows the estimation of hierarchical F-statistics from
15887 haploid or diploid genetic data with any numbers of levels in the hierarchy,
15888 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
15889 are also given to test via randomisations the significance of each F and
15890 variance components, using the likelihood-ratio statistics G.")
15891 (license license:gpl2+)))
15892
15893 (define-public r-hapassoc
15894 (package
15895 (name "r-hapassoc")
15896 (version "1.2-8")
15897 (source
15898 (origin
15899 (method url-fetch)
15900 (uri (cran-uri "hapassoc" version))
15901 (sha256
15902 (base32
15903 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
15904 (build-system r-build-system)
15905 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
15906 (synopsis "Inference of trait associations with SNP haplotypes")
15907 (description
15908 "Hapassoc performs likelihood inference of trait associations with
15909 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
15910 functions are developed primarily for data collected in cohort or
15911 cross-sectional studies. They can accommodate uncertain haplotype phase and
15912 handle missing genotypes at some SNPs.")
15913 (license license:gpl2)))
15914
15915 (define-public r-sampling
15916 (package
15917 (name "r-sampling")
15918 (version "2.9")
15919 (source
15920 (origin
15921 (method url-fetch)
15922 (uri (cran-uri "sampling" version))
15923 (sha256
15924 (base32
15925 "11xis4vzn2ga8ml9xrgfgqzccvwbnabq35aidzdvpnvciybsanvz"))))
15926 (build-system r-build-system)
15927 (propagated-inputs
15928 `(("r-lpsolve" ,r-lpsolve)
15929 ("r-mass" ,r-mass)))
15930 (home-page "https://cran.r-project.org/web/packages/sampling/")
15931 (synopsis "Survey sampling")
15932 (description
15933 "This package provides functions for drawing and calibrating samples.")
15934 (license license:gpl2+)))
15935
15936 (define-public r-r2html
15937 (package
15938 (name "r-r2html")
15939 (version "2.3.2")
15940 (source
15941 (origin
15942 (method url-fetch)
15943 (uri (cran-uri "R2HTML" version))
15944 (sha256
15945 (base32
15946 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
15947 (properties `((upstream-name . "R2HTML")))
15948 (build-system r-build-system)
15949 (home-page "https://github.com/nalimilan/R2HTML")
15950 (synopsis "HTML export for R objects")
15951 (description
15952 "This package includes HTML functions and methods to write in an HTML
15953 file. Thus, making HTML reports is easy. It includes a function that allows
15954 redirection on the fly, which appears to be very useful for teaching purposes,
15955 as the student can keep a copy of the produced output to keep all that they
15956 did during the course. The package comes with a vignette describing how to
15957 write HTML reports for statistical analysis. Finally, a driver for Sweave
15958 parses HTML flat files containing R code and to automatically write
15959 the corresponding outputs (tables and graphs).")
15960 (license license:gpl2+)))
15961
15962 (define-public r-rjava
15963 (package
15964 (name "r-rjava")
15965 (version "0.9-13")
15966 (source
15967 (origin
15968 (method url-fetch)
15969 (uri (cran-uri "rJava" version))
15970 (sha256
15971 (base32
15972 "1x3mihyqzr61j52rwaqciw43mkjzmhib4s6qf57v6xj40ksqh5jv"))))
15973 (properties `((upstream-name . "rJava")))
15974 (build-system r-build-system)
15975 (arguments
15976 `(#:modules ((guix build utils)
15977 (guix build r-build-system)
15978 (ice-9 match))
15979 #:phases
15980 (modify-phases %standard-phases
15981 (add-after 'unpack 'set-JAVA_HOME
15982 (lambda* (#:key inputs #:allow-other-keys)
15983 (let ((jdk (assoc-ref inputs "jdk")))
15984 (setenv "JAVA_HOME" jdk)
15985 (setenv "JAVA" (which "java"))
15986 (setenv "JAR" (which "jar"))
15987 (setenv "JAVAC" (which "javac"))
15988 (setenv "JAVAH" (which "javah"))
15989 (setenv "JAVA_CPPFLAGS"
15990 (string-append "-I" jdk "/include "
15991 "-I" jdk "/include/linux"))
15992 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
15993 ((lib) (setenv "JAVA_LIBS" lib))
15994 (_ (error "Could not find libjvm.so"))))
15995 #t)))))
15996 (inputs
15997 `(("icu4c" ,icu4c)
15998 ("jdk" ,icedtea-8 "jdk")
15999 ("pcre" ,pcre)
16000 ("zlib" ,zlib)))
16001 (home-page "https://www.rforge.net/rJava/")
16002 (synopsis "Low-Level R to Java interface")
16003 (description
16004 "This package provides a low-level interface to the Java VM very much
16005 like .C/.Call and friends. It allows the creation of objects, calling methods
16006 and accessing fields.")
16007 (license license:gpl2)))
16008
16009 (define-public r-svmisc
16010 (package
16011 (name "r-svmisc")
16012 (version "1.1.0")
16013 (source
16014 (origin
16015 (method url-fetch)
16016 (uri (cran-uri "svMisc" version))
16017 (sha256
16018 (base32
16019 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
16020 (properties `((upstream-name . "svMisc")))
16021 (build-system r-build-system)
16022 (home-page "https://github.com/SciViews/svMisc")
16023 (synopsis "Miscellaneous functions for SciViews")
16024 (description
16025 "This package provides miscellaneous functions for SciViews or general
16026 use, including tools to manage a temporary environment attached to the search
16027 path for temporary variables you do not want to @code{save()} or
16028 @code{load()}; test the current platform; showing progress bars, etc.")
16029 (license license:gpl2)))
16030
16031 (define-public r-xyz
16032 (package
16033 (name "r-xyz")
16034 (version "0.2")
16035 (source
16036 (origin
16037 (method url-fetch)
16038 (uri (cran-uri "xyz" version))
16039 (sha256
16040 (base32
16041 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
16042 (build-system r-build-system)
16043 (propagated-inputs
16044 `(("r-rcpp" ,r-rcpp)))
16045 (home-page "https://cran.r-project.org/web/packages/xyz/")
16046 (synopsis "Algorithm for fast interaction search in high-dimensional data")
16047 (description
16048 "High dimensional interaction search by brute force requires a quadratic
16049 computational cost in the number of variables. The xyz algorithm provably
16050 finds strong interactions in almost linear time. For details of the algorithm
16051 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
16052 interaction search in high-dimensional data.")
16053 ;; Any version of the GPL.
16054 (license license:gpl2+)))
16055
16056 (define-public r-rttf2pt1
16057 (package
16058 (name "r-rttf2pt1")
16059 (version "1.3.8")
16060 (source
16061 (origin
16062 (method url-fetch)
16063 (uri (cran-uri "Rttf2pt1" version))
16064 (sha256
16065 (base32
16066 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
16067 (properties `((upstream-name . "Rttf2pt1")))
16068 (build-system r-build-system)
16069 (home-page "https://github.com/wch/Rttf2pt1")
16070 (synopsis "Font conversion utility")
16071 (description
16072 "This package contains the program @code{ttf2pt1}, for use with the
16073 @code{extrafont} package.")
16074 ;; Most of the files are covered under the Expat license. Some files are
16075 ;; covered under BSD-3. Deviations for individual files are recorded in
16076 ;; the LICENSE file.
16077 (license (list license:bsd-3 license:expat
16078 (license:non-copyleft "file://LICENSE")))))
16079
16080 (define-public r-extrafontdb
16081 (package
16082 (name "r-extrafontdb")
16083 (version "1.0")
16084 (source
16085 (origin
16086 (method url-fetch)
16087 (uri (cran-uri "extrafontdb" version))
16088 (sha256
16089 (base32
16090 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
16091 (build-system r-build-system)
16092 (home-page "https://github.com/wch/extrafontdb")
16093 (synopsis "Database for the extrafont package")
16094 (description
16095 "This package holds the database for the @code{extrafont} package.")
16096 (license license:gpl2)))
16097
16098 (define-public r-extrafont
16099 (package
16100 (name "r-extrafont")
16101 (version "0.17")
16102 (source
16103 (origin
16104 (method url-fetch)
16105 (uri (cran-uri "extrafont" version))
16106 (sha256
16107 (base32
16108 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
16109 (build-system r-build-system)
16110 (propagated-inputs
16111 `(("r-extrafontdb" ,r-extrafontdb)
16112 ("r-rttf2pt1" ,r-rttf2pt1)))
16113 (home-page "https://github.com/wch/extrafont")
16114 (synopsis "Tools for using fonts in R")
16115 (description
16116 "The extrafont package makes it easier to use fonts other than the basic
16117 PostScript fonts that R uses. Fonts that are imported into extrafont can be
16118 used with PDF or PostScript output files. There are two hurdles for using
16119 fonts in PDF (or Postscript) output files:
16120
16121 @enumerate
16122 @item Making R aware of the font and the dimensions of the characters.
16123 @item Embedding the fonts in the PDF file so that the PDF can be displayed
16124 properly on a device that doesn't have the font. This is usually needed if
16125 you want to print the PDF file or share it with others.
16126 @end enumerate
16127
16128 The extrafont package makes both of these things easier.")
16129 (license license:gpl2)))
16130
16131 (define-public r-xkcd
16132 (package
16133 (name "r-xkcd")
16134 (version "0.0.6")
16135 (source
16136 (origin
16137 (method url-fetch)
16138 (uri (cran-uri "xkcd" version))
16139 (sha256
16140 (base32
16141 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
16142 (build-system r-build-system)
16143 (propagated-inputs
16144 `(("r-extrafont" ,r-extrafont)
16145 ("r-ggplot2" ,r-ggplot2)
16146 ("r-hmisc" ,r-hmisc)))
16147 (home-page "https://cran.r-project.org/web/packages/xkcd/")
16148 (synopsis "Plot ggplot2 graphics in the XKCD style")
16149 (description
16150 "This package provides the means to plot ggplot2 graphs in the style of
16151 the XKCD web comic.")
16152 (license license:gpl3)))
16153
16154 (define-public r-msigdbr
16155 (package
16156 (name "r-msigdbr")
16157 (version "7.2.1")
16158 (source
16159 (origin
16160 (method url-fetch)
16161 (uri (cran-uri "msigdbr" version))
16162 (sha256
16163 (base32
16164 "1rc2p9vw57pn4prmfgay4w18qd53ggq7wxfsi9kp7w25ciip1dq1"))))
16165 (build-system r-build-system)
16166 (propagated-inputs
16167 `(("r-dplyr" ,r-dplyr)
16168 ("r-magrittr" ,r-magrittr)
16169 ("r-rlang" ,r-rlang)
16170 ("r-tibble" ,r-tibble)
16171 ("r-tidyselect" ,r-tidyselect)))
16172 (native-inputs
16173 `(("r-knitr" ,r-knitr)))
16174 (home-page "https://github.com/igordot/msigdbr")
16175 (synopsis "MSigDB gene sets for multiple organisms")
16176 (description
16177 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
16178 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
16179 software in a standard R data frame with key-value pairs. Included are the
16180 original human gene symbols and Entrez IDs as well as the equivalents for
16181 various frequently studied model organisms such as mouse, rat, pig, fly, and
16182 yeast.")
16183 ;; The package is covered under the Expat license, but the upstream MSigDB
16184 ;; files are made available under the Creative Commons Attribution 4.0
16185 ;; International license.
16186 (license (list license:expat license:cc-by4.0))))
16187
16188 (define-public r-gridgraphics
16189 (package
16190 (name "r-gridgraphics")
16191 (version "0.5-1")
16192 (source
16193 (origin
16194 (method url-fetch)
16195 (uri (cran-uri "gridGraphics" version))
16196 (sha256
16197 (base32
16198 "12yswy02j3h5wir7m5jnkhpjmb0sa4snn61vjd68i49qwsa6w219"))))
16199 (properties `((upstream-name . "gridGraphics")))
16200 (build-system r-build-system)
16201 (home-page "https://github.com/pmur002/gridgraphics")
16202 (synopsis "Redraw base graphics using @code{grid} graphics")
16203 (description
16204 "This package provides functions to convert a page of plots drawn with
16205 the @code{graphics} package into identical output drawn with the @code{grid}
16206 package. The result looks like the original @code{graphics}-based plot, but
16207 consists of @code{grid} grobs and viewports that can then be manipulated with
16208 @code{grid} functions (e.g., edit grobs and revisit viewports).")
16209 (license license:gpl2+)))
16210
16211 (define-public r-farver
16212 (package
16213 (name "r-farver")
16214 (version "2.1.0")
16215 (source
16216 (origin
16217 (method url-fetch)
16218 (uri (cran-uri "farver" version))
16219 (sha256
16220 (base32
16221 "1x6ffwxqbrwlylnk995jz2a6nz2y9z59jaq0ncpni7q40w367j75"))))
16222 (build-system r-build-system)
16223 (home-page "https://github.com/thomasp85/farver")
16224 (synopsis "Vectorized color conversion and comparison")
16225 (description
16226 "The encoding of color can be handled in many different ways, using
16227 different color spaces. As different color spaces have different uses,
16228 efficient conversion between these representations are important. This
16229 package provides a set of functions that gives access to very fast color space
16230 conversion and comparisons implemented in C++, and offers 100-fold speed
16231 improvements over the @code{convertColor} function in the @code{grDevices}
16232 package.")
16233 (license license:expat)))
16234
16235 (define-public r-ggplotify
16236 (package
16237 (name "r-ggplotify")
16238 (version "0.0.5")
16239 (source
16240 (origin
16241 (method url-fetch)
16242 (uri (cran-uri "ggplotify" version))
16243 (sha256
16244 (base32
16245 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
16246 (build-system r-build-system)
16247 (propagated-inputs
16248 `(("r-ggplot2" ,r-ggplot2)
16249 ("r-gridgraphics" ,r-gridgraphics)
16250 ("r-rvcheck" ,r-rvcheck)))
16251 (native-inputs
16252 `(("r-knitr" ,r-knitr)))
16253 (home-page "https://github.com/GuangchuangYu/ggplotify")
16254 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
16255 (description
16256 "This package provides tools to convert plot function calls (using
16257 expression or formula) to @code{grob} or @code{ggplot} objects that are
16258 compatible with the @code{grid} and @code{ggplot2} environment. With this
16259 package, we are able to e.g. use @code{cowplot} to align plots produced by
16260 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
16261 converting them to @code{ggplot} objects.")
16262 (license license:artistic2.0)))
16263
16264 (define-public r-triebeard
16265 (package
16266 (name "r-triebeard")
16267 (version "0.3.0")
16268 (source
16269 (origin
16270 (method url-fetch)
16271 (uri (cran-uri "triebeard" version))
16272 (sha256
16273 (base32
16274 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
16275 (build-system r-build-system)
16276 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16277 (home-page "https://github.com/Ironholds/triebeard/")
16278 (synopsis "Radix trees in Rcpp")
16279 (description
16280 "Radix trees, or tries, are key-value data structures optimized for
16281 efficient lookups, similar in purpose to hash tables. This package provides
16282 an implementation of radix trees for use in R programming and in developing
16283 packages with Rcpp.")
16284 (license license:expat)))
16285
16286 (define-public r-tweenr
16287 (package
16288 (name "r-tweenr")
16289 (version "1.0.1")
16290 (source
16291 (origin
16292 (method url-fetch)
16293 (uri (cran-uri "tweenr" version))
16294 (sha256
16295 (base32
16296 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
16297 (build-system r-build-system)
16298 (propagated-inputs
16299 `(("r-farver" ,r-farver)
16300 ("r-magrittr" ,r-magrittr)
16301 ("r-rcpp" ,r-rcpp)
16302 ("r-rlang" ,r-rlang)))
16303 (home-page "https://github.com/thomasp85/tweenr")
16304 (synopsis "Interpolate data for smooth animations")
16305 (description
16306 "In order to create smooth animation between states of data, tweening is
16307 necessary. This package provides a range of functions for creating tweened
16308 data that can be used as basis for animation. Furthermore it adds a number of
16309 vectorized interpolaters for common R data types such as numeric, date and
16310 color.")
16311 (license license:expat)))
16312
16313 (define-public r-polyclip
16314 (package
16315 (name "r-polyclip")
16316 (version "1.10-0")
16317 (source
16318 (origin
16319 (method url-fetch)
16320 (uri (cran-uri "polyclip" version))
16321 (sha256
16322 (base32
16323 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
16324 (build-system r-build-system)
16325 (native-inputs `(("pkg-config" ,pkg-config)))
16326 (home-page "http://www.angusj.com/delphi/clipper.php")
16327 (synopsis "Polygon clipping")
16328 (description
16329 "This package provides an R port of the library Clipper. It performs
16330 polygon clipping operations (intersection, union, set minus, set difference)
16331 for polygonal regions of arbitrary complexity, including holes. It computes
16332 offset polygons (spatial buffer zones, morphological dilations, Minkowski
16333 dilations) for polygonal regions and polygonal lines. It computes the
16334 Minkowski Sum of general polygons. There is a function for removing
16335 self-intersections from polygon data.")
16336 (license license:boost1.0)))
16337
16338 (define-public r-urltools
16339 (package
16340 (name "r-urltools")
16341 (version "1.7.3")
16342 (source
16343 (origin
16344 (method url-fetch)
16345 (uri (cran-uri "urltools" version))
16346 (sha256
16347 (base32
16348 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
16349 (build-system r-build-system)
16350 (propagated-inputs
16351 `(("r-rcpp" ,r-rcpp)
16352 ("r-triebeard" ,r-triebeard)))
16353 (home-page "https://github.com/Ironholds/urltools/")
16354 (synopsis "Vectorized tools for URL handling and parsing")
16355 (description
16356 "This package provides a toolkit for all URL-handling needs, including
16357 encoding and decoding, parsing, parameter extraction and modification. All
16358 functions are designed to be both fast and entirely vectorized. It is
16359 intended to be useful for people dealing with web-related datasets, such as
16360 server-side logs, although may be useful for other situations involving large
16361 sets of URLs.")
16362 (license license:expat)))
16363
16364 (define-public r-ggforce
16365 (package
16366 (name "r-ggforce")
16367 (version "0.3.3")
16368 (source
16369 (origin
16370 (method url-fetch)
16371 (uri (cran-uri "ggforce" version))
16372 (sha256
16373 (base32
16374 "0bwzjbjl678xvc2ihm80dwn9pidwafqjdab3k299csys16s3na1a"))))
16375 (build-system r-build-system)
16376 (propagated-inputs
16377 `(("r-ggplot2" ,r-ggplot2)
16378 ("r-gtable" ,r-gtable)
16379 ("r-mass" ,r-mass)
16380 ("r-polyclip" ,r-polyclip)
16381 ("r-rcpp" ,r-rcpp)
16382 ("r-rcppeigen" ,r-rcppeigen)
16383 ("r-rlang" ,r-rlang)
16384 ("r-scales" ,r-scales)
16385 ("r-tidyselect" ,r-tidyselect)
16386 ("r-tweenr" ,r-tweenr)
16387 ("r-withr" ,r-withr)))
16388 (home-page "https://ggforce.data-imaginist.com")
16389 (synopsis "Accelerating ggplot2")
16390 (description
16391 "The aim of the ggplot2 package is to aid in visual data investigations.
16392 This focus has led to a lack of facilities for composing specialized plots.
16393 Thi package aims to be a collection of mainly new statistics and geometries
16394 that fills this gap.")
16395 (license license:expat)))
16396
16397 (define-public r-europepmc
16398 (package
16399 (name "r-europepmc")
16400 (version "0.4")
16401 (source
16402 (origin
16403 (method url-fetch)
16404 (uri (cran-uri "europepmc" version))
16405 (sha256
16406 (base32
16407 "174nnyc2mbgqxb5kgqabn1vf71c2mps7ig2bclq4is0f7nb64pym"))))
16408 (build-system r-build-system)
16409 (propagated-inputs
16410 `(("r-dplyr" ,r-dplyr)
16411 ("r-httr" ,r-httr)
16412 ("r-jsonlite" ,r-jsonlite)
16413 ("r-plyr" ,r-plyr)
16414 ("r-progress" ,r-progress)
16415 ("r-purrr" ,r-purrr)
16416 ("r-rlang" ,r-rlang)
16417 ("r-tibble" ,r-tibble)
16418 ("r-tidyr" ,r-tidyr)
16419 ("r-urltools" ,r-urltools)
16420 ("r-xml2" ,r-xml2)))
16421 (native-inputs
16422 `(("r-knitr" ,r-knitr)))
16423 (home-page "https://github.com/ropensci/europepmc/")
16424 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
16425 (description
16426 "This package provides an R Client for the
16427 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
16428 Service}. It gives access to both metadata on life science literature and
16429 open access full texts. Europe PMC indexes all PubMed content and other
16430 literature sources including Agricola, a bibliographic database of citations
16431 to the agricultural literature, or Biological Patents. In addition to
16432 bibliographic metadata, the client allows users to fetch citations and
16433 reference lists. Links between life-science literature and other EBI
16434 databases, including ENA, PDB or ChEMBL are also accessible.")
16435 (license license:gpl3)))
16436
16437 (define-public r-ggraph
16438 (package
16439 (name "r-ggraph")
16440 (version "2.0.5")
16441 (source
16442 (origin
16443 (method url-fetch)
16444 (uri (cran-uri "ggraph" version))
16445 (sha256
16446 (base32
16447 "0m4n8iw2b9jk8hcy5blg5w59zsqcpsbv27wbw598dvljpafx8sp3"))))
16448 (build-system r-build-system)
16449 (propagated-inputs
16450 `(("r-digest" ,r-digest)
16451 ("r-dplyr" ,r-dplyr)
16452 ("r-ggforce" ,r-ggforce)
16453 ("r-ggplot2" ,r-ggplot2)
16454 ("r-ggrepel" ,r-ggrepel)
16455 ("r-graphlayouts" ,r-graphlayouts)
16456 ("r-gtable" ,r-gtable)
16457 ("r-igraph" ,r-igraph)
16458 ("r-mass" ,r-mass)
16459 ("r-rcpp" ,r-rcpp)
16460 ("r-rlang" ,r-rlang)
16461 ("r-scales" ,r-scales)
16462 ("r-tidygraph" ,r-tidygraph)
16463 ("r-viridis" ,r-viridis)
16464 ("r-withr" ,r-withr)))
16465 (native-inputs
16466 `(("r-knitr" ,r-knitr)))
16467 (home-page "https://cran.r-project.org/web/packages/ggraph/")
16468 (synopsis "Implementation of grammar of graphics for graphs and networks")
16469 (description
16470 "The grammar of graphics as implemented in ggplot2 is a poor fit for
16471 graph and network visualizations due to its reliance on tabular data input.
16472 The ggraph package is an extension of the ggplot2 API tailored to graph
16473 visualizations and provides the same flexible approach to building up plots
16474 layer by layer.")
16475 (license license:gpl3)))
16476
16477 (define-public r-gkmsvm
16478 (package
16479 (name "r-gkmsvm")
16480 (version "0.81.0")
16481 (source
16482 (origin
16483 (method url-fetch)
16484 (uri (cran-uri "gkmSVM" version))
16485 (sha256
16486 (base32
16487 "119g5rhc7ffyviz04r04aj5z1g6abnj3ddd01g7db505sdr6lapj"))))
16488 (properties `((upstream-name . "gkmSVM")))
16489 (build-system r-build-system)
16490 (propagated-inputs
16491 `(("r-kernlab" ,r-kernlab)
16492 ("r-rcpp" ,r-rcpp)
16493 ("r-rocr" ,r-rocr)
16494 ("r-seqinr" ,r-seqinr)))
16495 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
16496 (synopsis "Gapped-kmer support vector machine")
16497 (description
16498 "This R package provides tools for training gapped-kmer SVM classifiers
16499 for DNA and protein sequences. This package supports several sequence
16500 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
16501 (license license:gpl2+)))
16502
16503 (define-public r-varselrf
16504 (package
16505 (name "r-varselrf")
16506 (version "0.7-8")
16507 (source
16508 (origin
16509 (method url-fetch)
16510 (uri (cran-uri "varSelRF" version))
16511 (sha256
16512 (base32
16513 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
16514 (properties `((upstream-name . "varSelRF")))
16515 (build-system r-build-system)
16516 (propagated-inputs
16517 `(("r-randomforest" ,r-randomforest)))
16518 (home-page "https://www.ligarto.org/rdiaz/software/software")
16519 (synopsis "Variable selection using random forests")
16520 (description
16521 "This package provides tools for the variable selection from random
16522 forests using both backwards variable elimination (for the selection of small
16523 sets of non-redundant variables) and selection based on the importance
16524 spectrum (somewhat similar to scree plots; for the selection of large,
16525 potentially highly-correlated variables). The main applications are in
16526 high-dimensional data (e.g., microarray data, and other genomics and
16527 proteomics applications).")
16528 (license license:gpl2+)))
16529
16530 (define-public r-pamr
16531 (package
16532 (name "r-pamr")
16533 (version "1.56.1")
16534 (source
16535 (origin
16536 (method url-fetch)
16537 (uri (cran-uri "pamr" version))
16538 (sha256
16539 (base32
16540 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
16541 (build-system r-build-system)
16542 (propagated-inputs
16543 `(("r-cluster" ,r-cluster)
16544 ("r-survival" ,r-survival)))
16545 (native-inputs `(("gfortran" ,gfortran)))
16546 (home-page "https://cran.r-project.org/web/packages/pamr/")
16547 (synopsis "Prediction Analysis for Microarrays")
16548 (description
16549 "This package provides some functions for sample classification in
16550 microarrays.")
16551 (license license:gpl2)))
16552
16553 (define-public r-rda
16554 (package
16555 (name "r-rda")
16556 (version "1.0.2-2.1")
16557 (source
16558 (origin
16559 (method url-fetch)
16560 (uri (cran-uri "rda" version))
16561 (sha256
16562 (base32
16563 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
16564 (build-system r-build-system)
16565 (home-page "https://cran.r-project.org/web/packages/rda/")
16566 (synopsis "Shrunken centroids regularized discriminant analysis")
16567 (description
16568 "This package provides tools for shrunken centroids regularized
16569 discriminant analysis for the purpose of classifying high dimensional data.")
16570 (license license:gpl2+)))
16571
16572 (define-public r-ggvis
16573 (package
16574 (name "r-ggvis")
16575 (version "0.4.7")
16576 (source
16577 (origin
16578 (method url-fetch)
16579 (uri (cran-uri "ggvis" version))
16580 (sha256
16581 (base32
16582 "1qv512pd4x5vmx15y9nvqmabbbw14h75fmi1sjbcg5yl25z0cswy"))))
16583 (build-system r-build-system)
16584 (propagated-inputs
16585 `(("r-assertthat" ,r-assertthat)
16586 ("r-dplyr" ,r-dplyr)
16587 ("r-htmltools" ,r-htmltools)
16588 ("r-jsonlite" ,r-jsonlite)
16589 ("r-magrittr" ,r-magrittr)
16590 ("r-rlang" ,r-rlang)
16591 ("r-shiny" ,r-shiny)))
16592 (home-page "https://ggvis.rstudio.com/")
16593 (synopsis "Interactive grammar of graphics")
16594 (description
16595 "This package is a data visualization package for R providing an
16596 implementation of an interactive grammar of graphics, taking the best parts of
16597 ggplot2, combining them with the reactive framework of Shiny and drawing web
16598 graphics using Vega.")
16599 (license license:gpl2)))
16600
16601 (define-public r-gbm
16602 (package
16603 (name "r-gbm")
16604 (version "2.1.8")
16605 (source
16606 (origin
16607 (method url-fetch)
16608 (uri (cran-uri "gbm" version))
16609 (sha256
16610 (base32
16611 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
16612 (build-system r-build-system)
16613 (propagated-inputs
16614 `(("r-lattice" ,r-lattice)
16615 ("r-survival" ,r-survival)))
16616 (native-inputs
16617 `(("r-knitr" ,r-knitr)))
16618 (home-page "https://github.com/gbm-developers/gbm")
16619 (synopsis "Generalized boosted regression models")
16620 (description
16621 "This package is an implementation of extensions to Freund and Schapire's
16622 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
16623 regression methods for least squares, absolute loss, t-distribution loss,
16624 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
16625 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
16626 and Learning to Rank measures (LambdaMart).")
16627 (license license:gpl2+)))
16628
16629 (define-public r-threejs
16630 (package
16631 (name "r-threejs")
16632 (version "0.3.3")
16633 (source
16634 (origin
16635 (method url-fetch)
16636 (uri (cran-uri "threejs" version))
16637 (sha256
16638 (base32
16639 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
16640 (build-system r-build-system)
16641 (arguments
16642 `(#:modules ((guix build utils)
16643 (guix build r-build-system)
16644 (srfi srfi-1)
16645 (ice-9 popen))
16646 #:phases
16647 (modify-phases %standard-phases
16648 (add-after 'unpack 'process-javascript
16649 (lambda* (#:key inputs #:allow-other-keys)
16650 (with-directory-excursion "inst"
16651 (call-with-values
16652 (lambda ()
16653 (unzip2
16654 `((,(assoc-ref inputs "js-jquery")
16655 "htmlwidgets/lib/jquery/jquery.min.js")
16656 (,(assoc-ref inputs "js-threejs-111")
16657 "htmlwidgets/lib/threejs-111/three.min.js"))))
16658 (lambda (sources targets)
16659 (for-each (lambda (source target)
16660 (format #t "Processing ~a --> ~a~%"
16661 source target)
16662 (delete-file target)
16663 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16664 (call-with-output-file target
16665 (lambda (port)
16666 (dump-port minified port)))))
16667 sources targets))))
16668 #t)))))
16669 (propagated-inputs
16670 `(("r-base64enc" ,r-base64enc)
16671 ("r-crosstalk" ,r-crosstalk)
16672 ("r-htmlwidgets" ,r-htmlwidgets)
16673 ("r-igraph" ,r-igraph)))
16674 (native-inputs
16675 `(("uglify-js" ,uglify-js)
16676 ("js-jquery"
16677 ,(origin
16678 (method url-fetch)
16679 (uri "https://code.jquery.com/jquery-1.12.4.js")
16680 (sha256
16681 (base32
16682 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
16683 ("js-threejs-111"
16684 ,(origin
16685 (method url-fetch)
16686 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
16687 (sha256
16688 (base32
16689 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
16690 (home-page "https://bwlewis.github.io/rthreejs")
16691 (synopsis "Interactive 3D scatter plots, networks and globes")
16692 (description
16693 "Create interactive 3D scatter plots, network plots, and globes in R
16694 using the three.js visualization library.")
16695 (license license:expat)))
16696
16697 (define-public r-mlbench
16698 (package
16699 (name "r-mlbench")
16700 (version "2.1-3")
16701 (source
16702 (origin
16703 (method url-fetch)
16704 (uri (cran-uri "mlbench" version))
16705 (sha256
16706 (base32
16707 "157iqsld0wj8g8cbs7nh6p2x6kasmkhs3078hsmqac946gk2pydi"))))
16708 (build-system r-build-system)
16709 (home-page "https://cran.r-project.org/web/packages/mlbench/")
16710 (synopsis "Machine learning benchmark problems")
16711 (description
16712 "This package provides a collection of artificial and real-world machine
16713 learning benchmark problems, including, e.g., several data sets from the UCI
16714 repository.")
16715 (license license:gpl2)))
16716
16717 (define-public r-mpm
16718 (package
16719 (name "r-mpm")
16720 (version "1.0-22")
16721 (source
16722 (origin
16723 (method url-fetch)
16724 (uri (cran-uri "mpm" version))
16725 (sha256
16726 (base32
16727 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
16728 (build-system r-build-system)
16729 (propagated-inputs
16730 `(("r-kernsmooth" ,r-kernsmooth)
16731 ("r-mass" ,r-mass)))
16732 (home-page "http://mpm.r-forge.r-project.org")
16733 (synopsis "Multivariate projection methods")
16734 (description
16735 "This is a package for exploratory graphical analysis of multivariate
16736 data, specifically gene expression data with different projection methods:
16737 principal component analysis, correspondence analysis, spectral map
16738 analysis.")
16739 (license license:gpl2+)))
16740
16741 (define-public r-png
16742 (package
16743 (name "r-png")
16744 (version "0.1-7")
16745 (source (origin
16746 (method url-fetch)
16747 (uri (cran-uri "png" version))
16748 (sha256
16749 (base32
16750 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
16751 (build-system r-build-system)
16752 (inputs
16753 `(("libpng" ,libpng)
16754 ("zlib" ,zlib)))
16755 (home-page "https://www.rforge.net/png/")
16756 (synopsis "Read and write PNG images")
16757 (description
16758 "This package provides an easy and simple way to read, write and display
16759 bitmap images stored in the PNG format. It can read and write both files and
16760 in-memory raw vectors.")
16761 ;; Any of these GPL versions.
16762 (license (list license:gpl2 license:gpl3))))
16763
16764 (define-public r-ggcorrplot
16765 (package
16766 (name "r-ggcorrplot")
16767 (version "0.1.3")
16768 (source
16769 (origin
16770 (method url-fetch)
16771 (uri (cran-uri "ggcorrplot" version))
16772 (sha256
16773 (base32
16774 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
16775 (build-system r-build-system)
16776 (propagated-inputs
16777 `(("r-ggplot2" ,r-ggplot2)
16778 ("r-reshape2" ,r-reshape2)))
16779 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
16780 (synopsis "Visualization of a correlation matrix using ggplot2")
16781 (description
16782 "The ggcorrplot package can be used to visualize easily a correlation
16783 matrix using ggplot2. It provides a solution for reordering the correlation
16784 matrix and displays the significance level on the plot. It also includes a
16785 function for computing a matrix of correlation p-values.")
16786 (license license:gpl2)))
16787
16788 (define-public r-gridtext
16789 (package
16790 (name "r-gridtext")
16791 (version "0.1.4")
16792 (source
16793 (origin
16794 (method url-fetch)
16795 (uri (cran-uri "gridtext" version))
16796 (sha256
16797 (base32
16798 "131kw7nkfwksviwfifd2kk7lyvhxzzzv1nnj8rahkr3dik3akk61"))))
16799 (properties `((upstream-name . "gridtext")))
16800 (build-system r-build-system)
16801 (propagated-inputs
16802 `(("r-jpeg" ,r-jpeg)
16803 ("r-markdown" ,r-markdown)
16804 ("r-png" ,r-png)
16805 ("r-rcpp" ,r-rcpp)
16806 ("r-rcurl" ,r-rcurl)
16807 ("r-rlang" ,r-rlang)
16808 ("r-stringr" ,r-stringr)
16809 ("r-xml2" ,r-xml2)))
16810 (home-page "https://wilkelab.org/gridtext/")
16811 (synopsis "Improved text rendering support for Grid graphics")
16812 (description
16813 "This package provides support for rendering of formatted text using Grid
16814 graphics. Text can be formatted via a minimal subset of Markdown, HTML, and
16815 inline CSS directives, and it can be rendered both with and without word
16816 wrap.")
16817 (license license:expat)))
16818
16819 (define-public r-ggtext
16820 (package
16821 (name "r-ggtext")
16822 (version "0.1.1")
16823 (source
16824 (origin
16825 (method url-fetch)
16826 (uri (cran-uri "ggtext" version))
16827 (sha256
16828 (base32
16829 "0n19dlcys8v7myfyckr6dnq0kx79k3sbh8nwx1jsx8pgzfbi8a2b"))))
16830 (properties `((upstream-name . "ggtext")))
16831 (build-system r-build-system)
16832 (propagated-inputs
16833 `(("r-ggplot2" ,r-ggplot2)
16834 ("r-gridtext" ,r-gridtext)
16835 ("r-rlang" ,r-rlang)
16836 ("r-scales" ,r-scales)))
16837 (native-inputs `(("r-knitr" ,r-knitr)))
16838 (home-page "https://wilkelab.org/ggtext/")
16839 (synopsis "Improved text rendering support for ggplot2")
16840 (description
16841 "This package provides a ggplot2 extension that enables the rendering of
16842 complex formatted plot labels (titles, subtitles, facet labels, axis labels,
16843 etc.). Text boxes with automatic word wrap are also supported.")
16844 (license license:gpl2)))
16845
16846 ;; This package includes minified JavaScript files. When upgrading please
16847 ;; check that there are no new minified JavaScript files.
16848 (define-public r-flexdashboard
16849 (package
16850 (name "r-flexdashboard")
16851 (version "0.5.2")
16852 (source
16853 (origin
16854 (method url-fetch)
16855 (uri (cran-uri "flexdashboard" version))
16856 (sha256
16857 (base32
16858 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
16859 (modules '((guix build utils)))
16860 (snippet
16861 '(begin
16862 ;; Delete bundled minified JavaScript files
16863 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
16864 (delete-file "inst/www/sly/sly.min.js")
16865 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
16866 (delete-file "inst/www/prism/prism.js")
16867 #t))))
16868 (build-system r-build-system)
16869 (arguments
16870 `(#:modules ((guix build utils)
16871 (guix build r-build-system)
16872 (srfi srfi-1)
16873 (srfi srfi-26)
16874 (ice-9 popen)
16875 (ice-9 textual-ports))
16876 #:phases
16877 (modify-phases %standard-phases
16878 (add-after 'unpack 'process-javascript
16879 (lambda* (#:key inputs #:allow-other-keys)
16880 (with-directory-excursion "inst"
16881 ;; Concatenate all components of prism.js
16882 (let ((contents (string-join
16883 (map (lambda (name)
16884 (call-with-input-file
16885 (assoc-ref inputs name)
16886 get-string-all))
16887 (list "js-prism"
16888 "js-prism-r"
16889 "js-prism-line-numbers"))
16890 "\n")))
16891 (call-with-output-file "prism-src.js"
16892 (cut display contents <>)))
16893 (call-with-values
16894 (lambda ()
16895 (unzip2
16896 `(("www/stickytableheaders/jquery.stickytableheaders.js"
16897 "www/stickytableheaders/jquery.stickytableheaders.min.js")
16898 ("www/sly/sly.js"
16899 "www/sly/sly.min.js")
16900 ("prism-src.js"
16901 "www/prism/prism.js")
16902 (,(assoc-ref inputs "js-raphael")
16903 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
16904 (,(assoc-ref inputs "js-featherlight")
16905 "www/featherlight/featherlight.min.js"))))
16906 (lambda (sources targets)
16907 (for-each (lambda (source target)
16908 (format #t "Processing ~a --> ~a~%"
16909 source target)
16910 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16911 (call-with-output-file target
16912 (lambda (port)
16913 (dump-port minified port)))))
16914 sources targets))))
16915 #t)))))
16916 (propagated-inputs
16917 `(("r-htmltools" ,r-htmltools)
16918 ("r-htmlwidgets" ,r-htmlwidgets)
16919 ("r-jsonlite" ,r-jsonlite)
16920 ("r-knitr" ,r-knitr)
16921 ("r-rmarkdown" ,r-rmarkdown)
16922 ("r-shiny" ,r-shiny)))
16923 (native-inputs
16924 `(("uglify-js" ,uglify-js)
16925 ("js-raphael"
16926 ,(origin
16927 (method url-fetch)
16928 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
16929 (sha256
16930 (base32
16931 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
16932 ("js-prism"
16933 ,(origin
16934 (method url-fetch)
16935 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
16936 (sha256
16937 (base32
16938 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
16939 ("js-prism-r"
16940 ,(origin
16941 (method url-fetch)
16942 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
16943 (sha256
16944 (base32
16945 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
16946 ("js-prism-line-numbers"
16947 ,(origin
16948 (method url-fetch)
16949 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
16950 (sha256
16951 (base32
16952 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
16953 ("js-featherlight"
16954 ,(origin
16955 (method url-fetch)
16956 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
16957 (sha256
16958 (base32
16959 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
16960 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
16961 (synopsis "R Markdown format for flexible dashboards")
16962 (description
16963 "This package provides an R Markdown format for converting an R Markdown
16964 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
16965 of its components to the containing web page.")
16966 (license license:expat)))
16967
16968 (define-public r-preseqr
16969 (package
16970 (name "r-preseqr")
16971 (version "4.0.0")
16972 (source
16973 (origin
16974 (method url-fetch)
16975 (uri (cran-uri "preseqR" version))
16976 (sha256
16977 (base32
16978 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
16979 (properties `((upstream-name . "preseqR")))
16980 (build-system r-build-system)
16981 (propagated-inputs
16982 `(("r-polynom" ,r-polynom)))
16983 (home-page "https://cran.r-project.org/web/packages/preseqR/")
16984 (synopsis "Predicting species accumulation curves")
16985 (description
16986 "This package can be used to predict the r-species accumulation
16987 curve (r-SAC), which is the number of species represented at least r times as
16988 a function of the sampling effort. When r = 1, the curve is known as the
16989 species accumulation curve, or the library complexity curve in high-throughput
16990 genomic sequencing. The package includes both parametric and nonparametric
16991 methods, as described by Deng C, et al. (2018).")
16992 (license license:gpl3)))
16993
16994 (define-public r-mapplots
16995 (package
16996 (name "r-mapplots")
16997 (version "1.5.1")
16998 (source
16999 (origin
17000 (method url-fetch)
17001 (uri (cran-uri "mapplots" version))
17002 (sha256
17003 (base32
17004 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
17005 (build-system r-build-system)
17006 (home-page "https://cran.r-project.org/web/packages/mapplots/")
17007 (synopsis "Data visualization on maps")
17008 (description
17009 "This package helps you create simple maps; add sub-plots like pie plots
17010 to a map or any other plot; format, plot and export gridded data. The package
17011 was developed for displaying fisheries data but most functions can be used for
17012 more generic data visualisation.")
17013 (license license:gpl2+)))
17014
17015 (define-public r-pmcmr
17016 (package
17017 (name "r-pmcmr")
17018 (version "4.3")
17019 (source
17020 (origin
17021 (method url-fetch)
17022 (uri (cran-uri "PMCMR" version))
17023 (sha256
17024 (base32
17025 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
17026 (properties `((upstream-name . "PMCMR")))
17027 (build-system r-build-system)
17028 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
17029 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
17030 (description
17031 "This is a deprecated package for calculating pairwise multiple
17032 comparisons of mean rank sums. This package is superseded by the novel
17033 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
17034 compatibility of dependent packages for some time.")
17035 (license license:gpl3+)))
17036
17037 (define-public r-downloader
17038 (package
17039 (name "r-downloader")
17040 (version "0.4")
17041 (source
17042 (origin
17043 (method url-fetch)
17044 (uri (cran-uri "downloader" version))
17045 (sha256
17046 (base32
17047 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
17048 (build-system r-build-system)
17049 (propagated-inputs
17050 `(("r-digest" ,r-digest)))
17051 (home-page "https://github.com/wch/downloader")
17052 (synopsis "Download files over HTTP and HTTPS")
17053 (description
17054 "This package provides a wrapper for the @code{download.file} function,
17055 making it possible to download files over HTTPS across platforms. The
17056 @code{RCurl} package provides this functionality (and much more) but has
17057 external dependencies. This package has is implemented purely in R.")
17058 (license license:gpl2)))
17059
17060 (define-public r-rex
17061 (package
17062 (name "r-rex")
17063 (version "1.2.0")
17064 (source
17065 (origin
17066 (method url-fetch)
17067 (uri (cran-uri "rex" version))
17068 (sha256
17069 (base32
17070 "0m7bq8db3m5dhf01rw7xc7xy1ciq3m7dfgsl80p8cy4h8vqr3d06"))))
17071 (build-system r-build-system)
17072 (propagated-inputs
17073 `(("r-lazyeval" ,r-lazyeval)))
17074 (native-inputs
17075 `(("r-knitr" ,r-knitr)))
17076 (home-page "https://github.com/kevinushey/rex")
17077 (synopsis "Friendly regular expressions")
17078 (description
17079 "This package provides a friendly interface for the construction of
17080 regular expressions. Regular expressions are a very powerful feature, however
17081 they are often difficult to interpret. Rex allows you to build complex
17082 regular expressions from human readable expressions")
17083 (license license:expat)))
17084
17085 (define-public r-xmlparsedata
17086 (package
17087 (name "r-xmlparsedata")
17088 (version "1.0.5")
17089 (source
17090 (origin
17091 (method url-fetch)
17092 (uri (cran-uri "xmlparsedata" version))
17093 (sha256
17094 (base32
17095 "1c6bnz3ng1qw7sfip8wq3a4dn36a4d6rbja0sadn0a4pbsmk8q3n"))))
17096 (properties `((upstream-name . "xmlparsedata")))
17097 (build-system r-build-system)
17098 (home-page "https://github.com/r-lib/xmlparsedata#readme")
17099 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
17100 (description
17101 "This package provides tools to convert the output of
17102 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
17103 @code{XPath}, and is easier to manipulate in general.")
17104 (license license:expat)))
17105
17106 (define-public r-cyclocomp
17107 (package
17108 (name "r-cyclocomp")
17109 (version "1.1.0")
17110 (source
17111 (origin
17112 (method url-fetch)
17113 (uri (cran-uri "cyclocomp" version))
17114 (sha256
17115 (base32
17116 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
17117 (properties `((upstream-name . "cyclocomp")))
17118 (build-system r-build-system)
17119 (propagated-inputs
17120 `(("r-callr" ,r-callr)
17121 ("r-crayon" ,r-crayon)
17122 ("r-desc" ,r-desc)
17123 ("r-remotes" ,r-remotes)
17124 ("r-withr" ,r-withr)))
17125 (home-page "https://github.com/MangoTheCat/cyclocomp")
17126 (synopsis "Cyclomatic complexity of R code")
17127 (description
17128 "Cyclomatic complexity is a software metric, used to indicate the
17129 complexity of a program. It is a quantitative measure of the number of
17130 linearly independent paths through a program's source code. This package
17131 provides tools to compute this metric.")
17132 (license license:expat)))
17133
17134 (define-public r-lintr
17135 (package
17136 (name "r-lintr")
17137 (version "2.0.1")
17138 (source
17139 (origin
17140 (method url-fetch)
17141 (uri (cran-uri "lintr" version))
17142 (sha256
17143 (base32
17144 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
17145 (properties `((upstream-name . "lintr")))
17146 (build-system r-build-system)
17147 (propagated-inputs
17148 `(("r-codetools" ,r-codetools)
17149 ("r-crayon" ,r-crayon)
17150 ("r-cyclocomp" ,r-cyclocomp)
17151 ("r-digest" ,r-digest)
17152 ("r-httr" ,r-httr)
17153 ("r-jsonlite" ,r-jsonlite)
17154 ("r-knitr" ,r-knitr)
17155 ("r-rex" ,r-rex)
17156 ("r-rstudioapi" ,r-rstudioapi)
17157 ("r-testthat" ,r-testthat)
17158 ("r-xml2" ,r-xml2)
17159 ("r-xmlparsedata" ,r-xmlparsedata)))
17160 (home-page "https://github.com/jimhester/lintr")
17161 (synopsis "Linter for R code")
17162 (description "This package checks adherence to a given style, syntax
17163 errors and possible semantic issues. It supports on the fly checking of R
17164 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
17165 (license license:expat)))
17166
17167 (define-public r-sctransform
17168 (package
17169 (name "r-sctransform")
17170 (version "0.3.2")
17171 (source
17172 (origin
17173 (method url-fetch)
17174 (uri (cran-uri "sctransform" version))
17175 (sha256
17176 (base32
17177 "1p3m6i28nlxh6r609syn88cwlbdpl3dw44dy3gsijk2ibq20mfsx"))))
17178 (build-system r-build-system)
17179 (propagated-inputs
17180 `(("r-future" ,r-future)
17181 ("r-future-apply" ,r-future-apply)
17182 ("r-ggplot2" ,r-ggplot2)
17183 ("r-gridextra" ,r-gridextra)
17184 ("r-mass" ,r-mass)
17185 ("r-matrix" ,r-matrix)
17186 ("r-matrixstats" ,r-matrixstats)
17187 ("r-rcpp" ,r-rcpp)
17188 ("r-rcpparmadillo" ,r-rcpparmadillo)
17189 ("r-reshape2" ,r-reshape2)))
17190 (home-page "https://github.com/ChristophH/sctransform")
17191 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
17192 (description
17193 "This package provides a normalization method for single-cell UMI count
17194 data using a variance stabilizing transformation. The transformation is based
17195 on a negative binomial regression model with regularized parameters. As part
17196 of the same regression framework, this package also provides functions for
17197 batch correction, and data correction.")
17198 (license license:gpl3)))
17199
17200 (define-public r-styler
17201 (package
17202 (name "r-styler")
17203 (version "1.3.2")
17204 (source
17205 (origin
17206 (method url-fetch)
17207 (uri (cran-uri "styler" version))
17208 (sha256
17209 (base32
17210 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
17211 (build-system r-build-system)
17212 (propagated-inputs
17213 `(("r-backports" ,r-backports)
17214 ("r-cli" ,r-cli)
17215 ("r-magrittr" ,r-magrittr)
17216 ("r-purrr" ,r-purrr)
17217 ("r-r-cache" ,r-r-cache)
17218 ("r-rematch2" ,r-rematch2)
17219 ("r-rlang" ,r-rlang)
17220 ("r-rprojroot" ,r-rprojroot)
17221 ("r-tibble" ,r-tibble)
17222 ("r-withr" ,r-withr)
17223 ("r-xfun" ,r-xfun)))
17224 (home-page "https://github.com/r-lib/styler")
17225 (synopsis "Non-invasive pretty printing of R code")
17226 (description
17227 "This is a package for pretty-printing R code without changing the user's
17228 formatting intent.")
17229 (license license:gpl3)))
17230
17231 (define-public r-scrime
17232 (package
17233 (name "r-scrime")
17234 (version "1.3.5")
17235 (source
17236 (origin
17237 (method url-fetch)
17238 (uri (cran-uri "scrime" version))
17239 (sha256
17240 (base32
17241 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
17242 (build-system r-build-system)
17243 (home-page "https://cran.r-project.org/web/packages/scrime/")
17244 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
17245 (description
17246 "This package provides tools for the analysis of high-dimensional data
17247 developed/implemented at the group \"Statistical Complexity Reduction In
17248 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
17249 the functions can also be applied to other types of categorical data.")
17250 (license license:gpl2)))
17251
17252 (define-public r-pbmcapply
17253 (package
17254 (name "r-pbmcapply")
17255 (version "1.5.0")
17256 (source
17257 (origin
17258 (method url-fetch)
17259 (uri (cran-uri "pbmcapply" version))
17260 (sha256
17261 (base32
17262 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
17263 (build-system r-build-system)
17264 (home-page "https://github.com/kvnkuang/pbmcapply")
17265 (synopsis "Track the progress of apply procedures with a progress bar")
17266 (description
17267 "This light-weight package helps you track and visualize the progress of
17268 parallel versions of vectorized R functions of the @code{mc*apply} family.")
17269 (license license:expat)))
17270
17271 (define-public r-blme
17272 (package
17273 (name "r-blme")
17274 (version "1.0-5")
17275 (source
17276 (origin
17277 (method url-fetch)
17278 (uri (cran-uri "blme" version))
17279 (sha256
17280 (base32
17281 "0413j7gwr5yj14jamkizj55q7xii1a0kgazzj0ilqn2ascclz6k7"))))
17282 (build-system r-build-system)
17283 (propagated-inputs `(("r-lme4" ,r-lme4)))
17284 (home-page "https://github.com/vdorie/blme")
17285 (synopsis "Bayesian linear mixed-effects models")
17286 (description
17287 "This package provides tools for maximum a posteriori estimation for
17288 linear and generalized linear mixed-effects models in a Bayesian setting. It
17289 extends the lme4 package.")
17290 (license license:gpl2+)))
17291
17292 (define-public r-batchtools
17293 (package
17294 (name "r-batchtools")
17295 (version "0.9.15")
17296 (source
17297 (origin
17298 (method url-fetch)
17299 (uri (cran-uri "batchtools" version))
17300 (sha256
17301 (base32
17302 "0d2xy77hkzhcnyz8zxcv98i80fx6ripjw4rvyx4ww1d0vjjgqf52"))))
17303 (build-system r-build-system)
17304 (propagated-inputs
17305 `(("r-backports" ,r-backports)
17306 ("r-base64url" ,r-base64url)
17307 ("r-brew" ,r-brew)
17308 ("r-checkmate" ,r-checkmate)
17309 ("r-data-table" ,r-data-table)
17310 ("r-digest" ,r-digest)
17311 ("r-fs" ,r-fs)
17312 ("r-progress" ,r-progress)
17313 ("r-r6" ,r-r6)
17314 ("r-rappdirs" ,r-rappdirs)
17315 ("r-stringi" ,r-stringi)
17316 ("r-withr" ,r-withr)))
17317 (native-inputs
17318 `(("r-knitr" ,r-knitr)))
17319 (home-page "https://github.com/mllg/batchtools")
17320 (synopsis "Tools for computation on batch systems")
17321 (description
17322 "As a successor of the packages BatchJobs and BatchExperiments, this
17323 package provides a parallel implementation of the Map function for high
17324 performance computing systems managed by various schedulers. A multicore and
17325 socket mode allow the parallelization on a local machines, and multiple
17326 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
17327 the package provides an abstraction mechanism to define large-scale computer
17328 experiments in a well-organized and reproducible way.")
17329 (license license:lgpl3)))
17330
17331 (define-public r-clue
17332 (package
17333 (name "r-clue")
17334 (version "0.3-58")
17335 (source
17336 (origin
17337 (method url-fetch)
17338 (uri (cran-uri "clue" version))
17339 (sha256
17340 (base32
17341 "1rwwxlnpl1k0n4k96vxc9zajw9kb4syqwzj76fvaf0qim8p6ddia"))))
17342 (build-system r-build-system)
17343 (propagated-inputs `(("r-cluster" ,r-cluster)))
17344 (home-page "https://cran.r-project.org/web/packages/clue/")
17345 (synopsis "Tools for analyzing cluster ensembles")
17346 (description "Cluster ensembles are collections of individual solutions to
17347 a given clustering problem which are useful or necessary to consider in a wide
17348 range of applications. This R package provides an extensible computational
17349 environment for creating and analyzing cluster ensembles, with basic data
17350 structures for representing partitions and hierarchies, and facilities for
17351 computing on them, including methods for measuring proximity and obtaining
17352 consensus and secondary clusterings.")
17353 (license license:gpl2)))
17354
17355 (define-public r-sitmo
17356 (package
17357 (name "r-sitmo")
17358 (version "2.0.1")
17359 (source
17360 (origin
17361 (method url-fetch)
17362 (uri (cran-uri "sitmo" version))
17363 (sha256
17364 (base32
17365 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
17366 (build-system r-build-system)
17367 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17368 (home-page "https://github.com/coatless/sitmo/")
17369 (synopsis "Parallel pseudo random number generator header files")
17370 (description
17371 "This package provides two high quality and fast PPRNGs that may be used
17372 in an OpenMP parallel environment. In addition, there is a generator for one
17373 dimensional low-discrepancy sequence.")
17374 (license license:expat)))
17375
17376 (define-public r-dqrng
17377 (package
17378 (name "r-dqrng")
17379 (version "0.2.1")
17380 (source
17381 (origin
17382 (method url-fetch)
17383 (uri (cran-uri "dqrng" version))
17384 (sha256
17385 (base32
17386 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
17387 (build-system r-build-system)
17388 (propagated-inputs
17389 `(("r-bh" ,r-bh)
17390 ("r-rcpp" ,r-rcpp)
17391 ("r-sitmo" ,r-sitmo)))
17392 (home-page "https://www.daqana.org/dqrng")
17393 (synopsis "Fast pseudo random number generators")
17394 (description
17395 "Several fast random number generators are provided as C++ header-only
17396 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
17397 Additionally, fast functions for generating random numbers according to a
17398 uniform, normal and exponential distribution are included. The latter two use
17399 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
17400 functions are exported to R and as a C++ interface and are enabled for use
17401 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
17402 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
17403 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
17404 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
17405 ;; whole is distributed under the terms of the AGPL 3.
17406 (license license:agpl3)))
17407
17408 (define-public r-ingredients
17409 (package
17410 (name "r-ingredients")
17411 (version "2.0.1")
17412 (source
17413 (origin
17414 (method url-fetch)
17415 (uri (cran-uri "ingredients" version))
17416 (sha256
17417 (base32
17418 "0w46h1f28y5ypqm3ypsvk7yk9v7k8p21f1pzjl3ima8r1ivmhv12"))))
17419 (properties `((upstream-name . "ingredients")))
17420 (build-system r-build-system)
17421 (propagated-inputs
17422 `(("r-ggplot2" ,r-ggplot2)
17423 ("r-gridextra" ,r-gridextra)
17424 ("r-scales" ,r-scales)))
17425 (native-inputs `(("r-knitr" ,r-knitr)))
17426 (home-page "https://ModelOriented.github.io/ingredients/")
17427 (synopsis "Effects and importances of model ingredients")
17428 (description
17429 "This is a collection of tools for assessment of feature importance and
17430 feature effects. Key functions are:
17431
17432 @itemize
17433 @item @code{feature_importance()} for assessment of global level feature
17434 importance,
17435 @item @code{ceteris_paribus()} for calculation of the what-if plots,
17436 @item @code{partial_dependence()} for partial dependence plots,
17437 @item @code{conditional_dependence()} for conditional dependence plots,
17438 @item @code{accumulated_dependence()} for accumulated local effects plots,
17439 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
17440 aggregation of ceteris paribus profiles,
17441 @item generic @code{print()} and @code{plot()} for better usability of
17442 selected explainers,
17443 @item generic @code{plotD3()} for interactive, D3 based explanations, and
17444 @item generic @code{describe()} for explanations in natural language.
17445 @end itemize\n")
17446 (license license:gpl3)))
17447
17448 (define-public r-ibreakdown
17449 (package
17450 (name "r-ibreakdown")
17451 (version "1.3.1")
17452 (source
17453 (origin
17454 (method url-fetch)
17455 (uri (cran-uri "iBreakDown" version))
17456 (sha256
17457 (base32
17458 "1bfl5bh0x6z5a0cmdmx68sap9zdxa3kwdnyk57csxapc362yz108"))))
17459 (properties `((upstream-name . "iBreakDown")))
17460 (build-system r-build-system)
17461 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
17462 (native-inputs `(("r-knitr" ,r-knitr)))
17463 (home-page "https://ModelOriented.github.io/iBreakDown/")
17464 (synopsis "Model agnostic instance level variable attributions")
17465 (description
17466 "This package provides a model agnostic tool for decomposition of
17467 predictions from black boxes. It supports additive attributions and
17468 attributions with interactions. The Break Down Table shows contributions of
17469 every variable to a final prediction. The Break Down Plot presents variable
17470 contributions in a concise graphical way. This package works for
17471 classification and regression models.")
17472 (license license:gpl3)))
17473
17474 (define-public r-dae
17475 (package
17476 (name "r-dae")
17477 (version "3.1-32")
17478 (source
17479 (origin
17480 (method url-fetch)
17481 (uri (cran-uri "dae" version))
17482 (sha256
17483 (base32
17484 "126w1lb9pz8mb2ajl2vz5dj798nbifp0dypnzfgcwixif5g5bpqi"))))
17485 (build-system r-build-system)
17486 (propagated-inputs
17487 `(("r-ggplot2" ,r-ggplot2)
17488 ("r-plyr" ,r-plyr)))
17489 (native-inputs
17490 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
17491 (home-page "http://chris.brien.name")
17492 (synopsis "Functions useful in the design and ANOVA of experiments")
17493 (description
17494 "This package provides functions useful in the design and ANOVA of
17495 experiments. The content falls into the following groupings:
17496
17497 @enumerate
17498 @item data,
17499 @item factor manipulation functions,
17500 @item design functions,
17501 @item ANOVA functions,
17502 @item matrix functions,
17503 @item projector and canonical efficiency functions, and
17504 @item miscellaneous functions.
17505 @end enumerate
17506
17507 There is a vignette called @code{DesignNotes} describing how to use the design
17508 functions for randomizing and assessing designs. The ANOVA functions
17509 facilitate the extraction of information when the @code{Error} function has
17510 been used in the call to @code{aov}.")
17511 (license license:gpl2)))
17512
17513 (define-public r-dalex
17514 (package
17515 (name "r-dalex")
17516 (version "2.1.1")
17517 (source
17518 (origin
17519 (method url-fetch)
17520 (uri (cran-uri "DALEX" version))
17521 (sha256
17522 (base32
17523 "1dnqsml94s648w8swsrq8spddnd4mj5pl3q6xxr917w6a1jxgyfz"))))
17524 (properties `((upstream-name . "DALEX")))
17525 (build-system r-build-system)
17526 (propagated-inputs
17527 `(("r-ggplot2" ,r-ggplot2)
17528 ("r-ibreakdown" ,r-ibreakdown)
17529 ("r-ingredients" ,r-ingredients)))
17530 (home-page "https://pbiecek.github.io/DALEX/")
17531 (synopsis "Descriptive machine learning explanations")
17532 (description
17533 "Machine Learning models are widely used and have various applications in
17534 classification or regression. Models created with boosting, bagging, stacking
17535 or similar techniques are often used due to their high performance, but such
17536 black-box models usually lack interpretability. The DALEX package contains
17537 various explainers that help to understand the link between input variables
17538 and model output.")
17539 ;; Any version of the GPL
17540 (license license:gpl3+)))
17541
17542 (define-public r-enrichr
17543 (package
17544 (name "r-enrichr")
17545 (version "3.0")
17546 (source
17547 (origin
17548 (method url-fetch)
17549 (uri (cran-uri "enrichR" version))
17550 (sha256
17551 (base32
17552 "0i3kfq4fkmx47n61zj5f87iv8ci6gbgy90a7s8dy9zbndzvbgya3"))))
17553 (properties `((upstream-name . "enrichR")))
17554 (build-system r-build-system)
17555 (propagated-inputs
17556 `(("r-ggplot2" ,r-ggplot2)
17557 ("r-httr" ,r-httr)
17558 ("r-rjson" ,r-rjson)))
17559 (native-inputs
17560 `(("r-knitr" ,r-knitr)))
17561 (home-page "https://cran.r-project.org/web/packages/enrichR/")
17562 (synopsis "R Interface to Enrichr database for analyzing gene sets")
17563 (description
17564 "This package provides an R interface to all Enrichr databases, a
17565 web-based tool for analyzing gene sets and returns any enrichment of common
17566 annotated biological functions.")
17567 (license license:gpl2+)))
17568
17569 (define-public r-plot3d
17570 (package
17571 (name "r-plot3d")
17572 (version "1.3")
17573 (source
17574 (origin
17575 (method url-fetch)
17576 (uri (cran-uri "plot3D" version))
17577 (sha256
17578 (base32
17579 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
17580 (properties `((upstream-name . "plot3D")))
17581 (build-system r-build-system)
17582 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
17583 (home-page "https://cran.r-project.org/web/packages/plot3D")
17584 (synopsis "Plot multi-dimensional data")
17585 (description
17586 "This package provides functions for viewing 2D and 3D data, including
17587 perspective plots, slice plots, surface plots, scatter plots, etc. It
17588 includes data sets from oceanography.")
17589 (license license:gpl3+)))
17590
17591 (define-public r-ggfortify
17592 (package
17593 (name "r-ggfortify")
17594 (version "0.4.11")
17595 (source
17596 (origin
17597 (method url-fetch)
17598 (uri (cran-uri "ggfortify" version))
17599 (sha256
17600 (base32
17601 "1wfm7l9bz6msh7rflgfv9dgbxh1ikz2ay0v7sgk9nkc24y6lhbpk"))))
17602 (build-system r-build-system)
17603 (propagated-inputs
17604 `(("r-dplyr" ,r-dplyr)
17605 ("r-ggplot2" ,r-ggplot2)
17606 ("r-gridextra" ,r-gridextra)
17607 ("r-scales" ,r-scales)
17608 ("r-stringr" ,r-stringr)
17609 ("r-tibble" ,r-tibble)
17610 ("r-tidyr" ,r-tidyr)))
17611 (native-inputs
17612 `(("r-knitr" ,r-knitr)))
17613 (home-page "https://github.com/sinhrks/ggfortify")
17614 (synopsis "Data visualization tools for statistical analysis results")
17615 (description
17616 "This package provides unified plotting tools for statistics commonly
17617 used, such as GLM, time series, PCA families, clustering and survival
17618 analysis. The package offers a single plotting interface for these analysis
17619 results and plots in a unified style using the @code{ggplot2} package.")
17620 (license license:gpl2)))
17621
17622 (define-public r-refmanager
17623 (package
17624 (name "r-refmanager")
17625 (version "1.3.0")
17626 (source
17627 (origin
17628 (method url-fetch)
17629 (uri (cran-uri "RefManageR" version))
17630 (sha256
17631 (base32
17632 "1spzdp5ni52dybcaxqnhwdphh27wjyrsfy4hsxsplpg9rqwfqfps"))))
17633 (properties `((upstream-name . "RefManageR")))
17634 (build-system r-build-system)
17635 (propagated-inputs
17636 `(("r-httr" ,r-httr)
17637 ("r-jsonlite" ,r-jsonlite)
17638 ("r-lubridate" ,r-lubridate)
17639 ("r-plyr" ,r-plyr)
17640 ("r-stringr" ,r-stringr)
17641 ("r-xml2" ,r-xml2)))
17642 (native-inputs
17643 `(("r-knitr" ,r-knitr)))
17644 (home-page "https://github.com/ropensci/RefManageR/")
17645 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
17646 (description
17647 "This package provides tools for importing and working with bibliographic
17648 references. It greatly enhances the @code{bibentry} class by providing a
17649 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
17650 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
17651 by various formats for name lists (author by last names, translator by full
17652 names, etc.). Entries can be updated, combined, sorted, printed in a number
17653 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
17654 into R and converted to @code{BibEntry} objects.")
17655 ;; Any of these licenses may be picked.
17656 (license (list license:gpl2 license:gpl3 license:bsd-3))))
17657
17658 (define-public r-citr
17659 (package
17660 (name "r-citr")
17661 (version "0.3.2")
17662 (source
17663 (origin
17664 (method url-fetch)
17665 (uri (cran-uri "citr" version))
17666 (sha256
17667 (base32
17668 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
17669 (build-system r-build-system)
17670 (propagated-inputs
17671 `(("r-assertthat" ,r-assertthat)
17672 ("r-curl" ,r-curl)
17673 ("r-httr" ,r-httr)
17674 ("r-miniui" ,r-miniui)
17675 ("r-refmanager" ,r-refmanager)
17676 ("r-rstudioapi" ,r-rstudioapi)
17677 ("r-shiny" ,r-shiny)
17678 ("r-shinyjs" ,r-shinyjs)
17679 ("r-yaml" ,r-yaml)))
17680 (home-page "https://github.com/crsh/citr")
17681 (synopsis "RStudio add-in to insert Markdown citations")
17682 (description
17683 "This package provides functions and an RStudio add-in that search a
17684 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
17685 the current document.")
17686 (license license:expat)))
17687
17688 (define-public r-xgboost
17689 (package
17690 (name "r-xgboost")
17691 (version "1.3.2.1")
17692 (source
17693 (origin
17694 (method url-fetch)
17695 (uri (cran-uri "xgboost" version))
17696 (sha256
17697 (base32
17698 "117q8xqm82589517fi8xicd8724v9c0wnq3qpl84h6nm3aw65x1g"))))
17699 (build-system r-build-system)
17700 (propagated-inputs
17701 `(("r-data-table" ,r-data-table)
17702 ("r-magrittr" ,r-magrittr)
17703 ("r-matrix" ,r-matrix)))
17704 (native-inputs
17705 `(("r-knitr" ,r-knitr)))
17706 (home-page "https://github.com/dmlc/xgboost")
17707 (synopsis "Extreme gradient boosting")
17708 (description
17709 "This package provides an R interface to Extreme Gradient Boosting, which
17710 is an efficient implementation of the gradient boosting framework from Chen
17711 and Guestrin (2016). The package includes efficient linear model solver and
17712 tree learning algorithms. The package can automatically do parallel
17713 computation on a single machine. It supports various objective functions,
17714 including regression, classification and ranking. The package is made to be
17715 extensible, so that users are also allowed to define their own objectives
17716 easily.")
17717 (license license:asl2.0)))
17718
17719 (define-public r-umap
17720 (package
17721 (name "r-umap")
17722 (version "0.2.7.0")
17723 (source
17724 (origin
17725 (method url-fetch)
17726 (uri (cran-uri "umap" version))
17727 (sha256
17728 (base32
17729 "191vpy84s0bar06y9z1qx43x2kc4qp7lmrcmd0cvz2pnzq722jab"))))
17730 (build-system r-build-system)
17731 (propagated-inputs
17732 `(("r-openssl" ,r-openssl)
17733 ("r-rcpp" ,r-rcpp)
17734 ("r-reticulate" ,r-reticulate)
17735 ("r-rspectra" ,r-rspectra)))
17736 (native-inputs
17737 `(("r-knitr" ,r-knitr)))
17738 (home-page "https://github.com/tkonopka/umap")
17739 (synopsis "Uniform manifold approximation and projection")
17740 (description
17741 "Uniform manifold approximation and projection is a technique for
17742 dimension reduction. This package provides an interface to the UMAP algorithm
17743 in R, including a translation of the original algorithm into R.")
17744 (license license:expat)))
17745
17746 (define-public r-uwot
17747 (package
17748 (name "r-uwot")
17749 (version "0.1.10")
17750 (source
17751 (origin
17752 (method url-fetch)
17753 (uri (cran-uri "uwot" version))
17754 (sha256
17755 (base32
17756 "08vxh085wnrxgwy35ksb4cr7ccjvd98pyr2zlgarqryfgc1bdqbf"))))
17757 (build-system r-build-system)
17758 (propagated-inputs
17759 `(("r-dqrng" ,r-dqrng)
17760 ("r-fnn" ,r-fnn)
17761 ("r-irlba" ,r-irlba)
17762 ("r-matrix" ,r-matrix)
17763 ("r-rcpp" ,r-rcpp)
17764 ("r-rcppannoy" ,r-rcppannoy)
17765 ("r-rcppprogress" ,r-rcppprogress)
17766 ("r-rspectra" ,r-rspectra)))
17767 (home-page "https://github.com/jlmelville/uwot")
17768 (synopsis "Uniform manifold approximation and projection")
17769 (description
17770 "This package provides an implementation of the Uniform Manifold
17771 Approximation and Projection dimensionality reduction by McInnes et
17772 al. (2018). It also provides means to transform new data and to carry out
17773 supervised dimensionality reduction. An implementation of the related
17774 LargeVis method of Tang et al. (2016) is also provided.")
17775 (license license:gpl3)))
17776
17777 (define-public r-kableextra
17778 (package
17779 (name "r-kableextra")
17780 (version "1.3.4")
17781 (source
17782 (origin
17783 (method url-fetch)
17784 (uri (cran-uri "kableExtra" version))
17785 (sha256
17786 (base32
17787 "1c5vzy95cbz36jwyssr927qicrayifinv861rvnmg4nghb1gl7q9"))))
17788 (properties `((upstream-name . "kableExtra")))
17789 (build-system r-build-system)
17790 (propagated-inputs
17791 `(("r-digest" ,r-digest)
17792 ("r-glue" ,r-glue)
17793 ("r-htmltools" ,r-htmltools)
17794 ("r-knitr" ,r-knitr)
17795 ("r-magrittr" ,r-magrittr)
17796 ("r-rmarkdown" ,r-rmarkdown)
17797 ("r-rstudioapi" ,r-rstudioapi)
17798 ("r-rvest" ,r-rvest)
17799 ("r-scales" ,r-scales)
17800 ("r-stringr" ,r-stringr)
17801 ("r-svglite" ,r-svglite)
17802 ("r-viridislite" ,r-viridislite)
17803 ("r-webshot" ,r-webshot)
17804 ("r-xml2" ,r-xml2)))
17805 (native-inputs
17806 `(("r-knitr" ,r-knitr)))
17807 (home-page "https://haozhu233.github.io/kableExtra/")
17808 (synopsis "Construct complex tables with pipe syntax")
17809 (description
17810 "Build complex HTML or LaTeX tables using @code{kable()} from
17811 @code{knitr} and the piping syntax from @code{magrittr}. The function
17812 @code{kable()} is a light weight table generator coming from @code{knitr}.
17813 This package simplifies the way to manipulate the HTML or LaTeX codes
17814 generated by @code{kable()} and allows users to construct complex tables and
17815 customize styles using a readable syntax.")
17816 (license license:expat)))
17817
17818 (define-public r-glasso
17819 (package
17820 (name "r-glasso")
17821 (version "1.11")
17822 (source
17823 (origin
17824 (method url-fetch)
17825 (uri (cran-uri "glasso" version))
17826 (sha256
17827 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
17828 (build-system r-build-system)
17829 (native-inputs `(("gfortran" ,gfortran)))
17830 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
17831 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
17832 (description
17833 "This is a package for estimation of a sparse inverse covariance matrix
17834 using a lasso (L1) penalty. Facilities are provided for estimates along a
17835 path of values for the regularization parameter.")
17836 (license license:gpl2)))
17837
17838 (define-public r-rhpcblasctl
17839 (package
17840 (name "r-rhpcblasctl")
17841 (version "0.20-137")
17842 (source
17843 (origin
17844 (method url-fetch)
17845 (uri (cran-uri "RhpcBLASctl" version))
17846 (sha256
17847 (base32
17848 "0vv144sgjhf7fazk633i16fc06g9k43syyxj1g34pi9gsgdcn0nv"))))
17849 (properties `((upstream-name . "RhpcBLASctl")))
17850 (build-system r-build-system)
17851 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
17852 (synopsis "Control the number of threads on BLAS")
17853 (description
17854 "This package allows you to control the number of threads the BLAS
17855 library uses. It is also possible to control the number of threads in
17856 OpenMP.")
17857 (license license:agpl3+)))
17858
17859 (define-public r-lda
17860 (package
17861 (name "r-lda")
17862 (version "1.4.2")
17863 (source
17864 (origin
17865 (method url-fetch)
17866 (uri (cran-uri "lda" version))
17867 (sha256
17868 (base32
17869 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
17870 (build-system r-build-system)
17871 (home-page "https://cran.r-project.org/web/packages/lda/")
17872 (synopsis "Collapsed Gibbs sampling methods for topic models")
17873 (description
17874 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
17875 related models. This includes (but is not limited to) sLDA, corrLDA, and the
17876 mixed-membership stochastic blockmodel. Inference for all of these models is
17877 implemented via a fast collapsed Gibbs sampler written in C. Utility
17878 functions for reading/writing data typically used in topic models, as well as
17879 tools for examining posterior distributions are also included.")
17880 ;; Any version of the LGPL
17881 (license license:lgpl3+)))
17882
17883 (define-public r-rann-l1
17884 (package
17885 (name "r-rann-l1")
17886 (version "2.5.2")
17887 (source
17888 (origin
17889 (method url-fetch)
17890 (uri (cran-uri "RANN.L1" version))
17891 (sha256
17892 (base32
17893 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
17894 (properties `((upstream-name . "RANN.L1")))
17895 (build-system r-build-system)
17896 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
17897 (synopsis "Fast nearest neighbour search using L1 metric")
17898 (description
17899 "This package provides tools to find the k nearest neighbours for every
17900 point in a given dataset in O(N log N) time using Arya and Mount's ANN
17901 library. There is support for approximate as well as exact searches, fixed
17902 radius searches and @code{bd} as well as @code{kd} trees. The distance is
17903 computed using the L1 (Manhattan, taxicab) metric.")
17904 (license license:gpl3+)))
17905
17906 (define-public r-leiden
17907 (package
17908 (name "r-leiden")
17909 (version "0.3.7")
17910 (source
17911 (origin
17912 (method url-fetch)
17913 (uri (cran-uri "leiden" version))
17914 (sha256
17915 (base32
17916 "14iqn5iqcya6bqbjvjivpd7q9gwc323sj29y7ssrbhb3sz9982bp"))))
17917 (properties `((upstream-name . "leiden")))
17918 (build-system r-build-system)
17919 (propagated-inputs
17920 `(("r-igraph" ,r-igraph)
17921 ("r-matrix" ,r-matrix)
17922 ("r-reticulate" ,r-reticulate)))
17923 (native-inputs
17924 `(("r-knitr" ,r-knitr)))
17925 (home-page "https://github.com/TomKellyGenetics/leiden")
17926 (synopsis "R implementation of Leiden clustering algorithm")
17927 (description
17928 "This package implements the Python @code{leidenalg} module to be called
17929 in R. It enables clustering using the Leiden algorithm for partitioning a
17930 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
17931 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
17932 (license license:gpl3)))
17933
17934 (define-public r-patchwork
17935 (package
17936 (name "r-patchwork")
17937 (version "1.1.1")
17938 (source
17939 (origin
17940 (method url-fetch)
17941 (uri (cran-uri "patchwork" version))
17942 (sha256
17943 (base32
17944 "10glgkf58lcykcwda1hj6xdps02m3i247qynk6s2jmwljagps3fg"))))
17945 (build-system r-build-system)
17946 (propagated-inputs
17947 `(("r-ggplot2" ,r-ggplot2)
17948 ("r-gtable" ,r-gtable)))
17949 (native-inputs
17950 `(("r-knitr" ,r-knitr)))
17951 (home-page "https://github.com/thomasp85/patchwork")
17952 (synopsis "Compose ggplot2 plots")
17953 (description
17954 "The @code{ggplot2} package provides a strong API for sequentially
17955 building up a plot, but does not concern itself with composition of multiple
17956 plots. Patchwork is a package that expands the API to allow for arbitrarily
17957 complex composition of plots by providing mathematical operators for combining
17958 multiple plots.")
17959 (license license:expat)))
17960
17961 (define-public r-liger
17962 (package
17963 (name "r-liger")
17964 (version "0.4.2")
17965 (source
17966 (origin
17967 (method git-fetch)
17968 (uri (git-reference
17969 (url "https://github.com/MacoskoLab/liger")
17970 (commit (string-append "v" version))))
17971 (file-name (git-file-name name version))
17972 (sha256
17973 (base32
17974 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
17975 (modules '((guix build utils)))
17976 (snippet
17977 '(begin
17978 (delete-file "inst/java/ModularityOptimizer.jar")
17979 #t))))
17980 (build-system r-build-system)
17981 (arguments
17982 `(#:phases
17983 (modify-phases %standard-phases
17984 (add-after 'unpack 'build-java-part
17985 (lambda* (#:key inputs #:allow-other-keys)
17986 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
17987 (for-each (lambda (file) (invoke "javac" file))
17988 (find-files "." "\\.java$"))
17989 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
17990 (find-files "." "\\.class$"))
17991 #t)))))
17992 (propagated-inputs
17993 `(("r-cowplot" ,r-cowplot)
17994 ("r-dosnow" ,r-dosnow)
17995 ("r-dplyr" ,r-dplyr)
17996 ("r-fnn" ,r-fnn)
17997 ("r-foreach" ,r-foreach)
17998 ("r-ggplot2" ,r-ggplot2)
17999 ("r-ggrepel" ,r-ggrepel)
18000 ("r-hmisc" ,r-hmisc)
18001 ("r-ica" ,r-ica)
18002 ("r-irlba" ,r-irlba)
18003 ("r-matrix" ,r-matrix)
18004 ("r-mclust" ,r-mclust)
18005 ("r-patchwork" ,r-patchwork)
18006 ("r-plyr" ,r-plyr)
18007 ("r-rann-l1" ,r-rann-l1)
18008 ("r-rcpp" ,r-rcpp)
18009 ("r-rcpparmadillo" ,r-rcpparmadillo)
18010 ("r-riverplot" ,r-riverplot)
18011 ("r-rtsne" ,r-rtsne)
18012 ("r-snow" ,r-snow)))
18013 (native-inputs
18014 `(("jdk" ,icedtea "jdk")
18015 ;; See https://github.com/MacoskoLab/liger/issues/96
18016 ;; The optimizer is released under the Expat license.
18017 ("optimizer-src"
18018 ,(origin
18019 (method url-fetch)
18020 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
18021 (sha256
18022 (base32
18023 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
18024 ("unzip" ,unzip)
18025 ("r-knitr" ,r-knitr))) ; for vignettes
18026 (home-page "https://github.com/MacoskoLab/liger")
18027 (synopsis "Integrate and analyze multiple single-cell datasets")
18028 (description
18029 "LIGER is a package for integrating and analyzing multiple single-cell
18030 datasets, developed and maintained by the Macosko lab. It relies on
18031 integrative non-negative matrix factorization to identify shared and
18032 dataset-specific factors.")
18033 (license license:gpl3)))
18034
18035 (define-public r-harmony
18036 (package
18037 (name "r-harmony")
18038 (version "0.1")
18039 (source
18040 (origin
18041 (method git-fetch)
18042 (uri (git-reference
18043 (url "https://github.com/immunogenomics/harmony")
18044 (commit version)))
18045 (file-name (git-file-name name version))
18046 (sha256
18047 (base32
18048 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
18049 (modules '((guix build utils)))
18050 (snippet
18051 '(begin
18052 (for-each delete-file '("config.status" "configure"))
18053 #t))))
18054 (build-system r-build-system)
18055 (propagated-inputs
18056 `(("r-cowplot" ,r-cowplot)
18057 ("r-dplyr" ,r-dplyr)
18058 ("r-ggplot2" ,r-ggplot2)
18059 ("r-irlba" ,r-irlba)
18060 ("r-matrix" ,r-matrix)
18061 ("r-rcpp" ,r-rcpp)
18062 ("r-rcpparmadillo" ,r-rcpparmadillo)
18063 ("r-rcppprogress" ,r-rcppprogress)
18064 ("r-rlang" ,r-rlang)
18065 ("r-tibble" ,r-tibble)
18066 ("r-tidyr" ,r-tidyr)))
18067 (native-inputs
18068 `(("autoconf" ,autoconf)))
18069 (home-page "https://github.com/immunogenomics/harmony")
18070 (synopsis "Integration of single cell sequencing data")
18071 (description
18072 "This package provides an implementation of the Harmony algorithm for
18073 single cell integration, described in Korsunsky et al
18074 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
18075 function and interfaces to external frameworks.")
18076 (license license:gpl3)))
18077
18078 (define-public r-covr
18079 (package
18080 (name "r-covr")
18081 (version "3.5.1")
18082 (source
18083 (origin
18084 (method url-fetch)
18085 (uri (cran-uri "covr" version))
18086 (sha256
18087 (base32 "0v5cv3cw2kpdr6wxmkbd3wclavr17zipypdcb10hhmpa4cvgqk55"))))
18088 (properties `((upstream-name . "covr")))
18089 (build-system r-build-system)
18090 (propagated-inputs
18091 `(("r-crayon" ,r-crayon)
18092 ("r-digest" ,r-digest)
18093 ("r-httr" ,r-httr)
18094 ("r-jsonlite" ,r-jsonlite)
18095 ("r-rex" ,r-rex)
18096 ("r-withr" ,r-withr)
18097 ("r-yaml" ,r-yaml)))
18098 (native-inputs
18099 `(("r-knitr" ,r-knitr))) ; for vignettes
18100 (home-page "https://github.com/r-lib/covr")
18101 (synopsis "Test coverage for R packages")
18102 (description
18103 "Thisp package enables you to track and report code coverage for your
18104 package and (optionally) upload the results to a coverage service. Code
18105 coverage is a measure of the amount of code being exercised by a set of tests.
18106 It is an indirect measure of test quality and completeness. This package is
18107 compatible with any testing methodology or framework and tracks coverage of
18108 both R code and compiled C/C++/FORTRAN code.")
18109 (license license:gpl3)))
18110
18111 (define-public r-systemfonts
18112 (package
18113 (name "r-systemfonts")
18114 (version "1.0.1")
18115 (source
18116 (origin
18117 (method url-fetch)
18118 (uri (cran-uri "systemfonts" version))
18119 (sha256
18120 (base32
18121 "15x7qx8iigkybgz6b6s66i3mh75vgynzpd50nw05wflfwzcv87a0"))))
18122 (properties `((upstream-name . "systemfonts")))
18123 (build-system r-build-system)
18124 (propagated-inputs
18125 `(("r-cpp11" ,r-cpp11)))
18126 (inputs
18127 `(("fontconfig" ,fontconfig)
18128 ("zlib" ,zlib)))
18129 (native-inputs
18130 `(("pkg-config" ,pkg-config)
18131 ("r-knitr" ,r-knitr)))
18132 (home-page "https://github.com/r-lib/systemfonts")
18133 (synopsis "System native font finding")
18134 (description
18135 "This package provides system native access to the font catalogue. As
18136 font handling varies between systems it is difficult to correctly locate
18137 installed fonts across different operating systems. The 'systemfonts' package
18138 provides bindings to the native libraries for finding font files that can then
18139 be used further by e.g. graphic devices.")
18140 (license license:expat)))
18141
18142 (define-public r-graphlayouts
18143 (package
18144 (name "r-graphlayouts")
18145 (version "0.7.1")
18146 (source
18147 (origin
18148 (method url-fetch)
18149 (uri (cran-uri "graphlayouts" version))
18150 (sha256
18151 (base32
18152 "05v7ss18bflhqa4ipsca8iw2ln8ddbaiyrizx2a5cwq81g5qq3rq"))))
18153 (properties `((upstream-name . "graphlayouts")))
18154 (build-system r-build-system)
18155 (propagated-inputs
18156 `(("r-igraph" ,r-igraph)
18157 ("r-rcpp" ,r-rcpp)
18158 ("r-rcpparmadillo" ,r-rcpparmadillo)))
18159 (home-page "https://github.com/schochastics/graphlayouts")
18160 (synopsis "Additional layout algorithms for network visualizations")
18161 (description
18162 "This package provides several layout algorithms to visualize networks
18163 which are not part of the igraph library. Most are based on the concept of
18164 stress majorization by Gansner et al. (2004)
18165 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
18166 emphasize hidden group structures in networks or focus on specific nodes.")
18167 (license license:expat)))
18168
18169 (define-public r-terra
18170 (package
18171 (name "r-terra")
18172 (version "1.1-4")
18173 (source
18174 (origin
18175 (method url-fetch)
18176 (uri (cran-uri "terra" version))
18177 (sha256
18178 (base32
18179 "1vsh55sq56shc8s2vmkl27yvrdbrbn3l6jrigqf2hmvppkb2jsbg"))))
18180 (properties `((upstream-name . "terra")))
18181 (build-system r-build-system)
18182 (inputs
18183 `(("gdal" ,gdal)
18184 ("geos" ,geos)
18185 ("proj" ,proj)
18186 ("sqlite" ,sqlite) ; needed for proj
18187 ("zlib" ,zlib)))
18188 (propagated-inputs
18189 `(("r-raster" ,r-raster)
18190 ("r-rcpp" ,r-rcpp)))
18191 (native-inputs
18192 `(("pkg-config" ,pkg-config)))
18193 (home-page "https://rspatial.org/terra")
18194 (synopsis "Spatial data analysis")
18195 (description
18196 "This package provides methods for spatial data analysis, especially
18197 raster data. The included methods allow for low-level data manipulation as
18198 well as high-level global, local, zonal, and focal computation. The predict
18199 and interpolate methods facilitate the use of regression type (interpolation,
18200 machine learning) models for spatial prediction. Processing of very large
18201 files is supported.")
18202 (license license:gpl3+)))
18203
18204 (define-public r-tidygraph
18205 (package
18206 (name "r-tidygraph")
18207 (version "1.2.0")
18208 (source
18209 (origin
18210 (method url-fetch)
18211 (uri (cran-uri "tidygraph" version))
18212 (sha256
18213 (base32
18214 "17qjns33zcj82jcsl7bn7i4zxcm7ric50zyf7agi0i01zi16qz85"))))
18215 (properties `((upstream-name . "tidygraph")))
18216 (build-system r-build-system)
18217 (propagated-inputs
18218 `(("r-dplyr" ,r-dplyr)
18219 ("r-igraph" ,r-igraph)
18220 ("r-magrittr" ,r-magrittr)
18221 ("r-pillar" ,r-pillar)
18222 ("r-r6" ,r-r6)
18223 ("r-rcpp" ,r-rcpp)
18224 ("r-rlang" ,r-rlang)
18225 ("r-tibble" ,r-tibble)
18226 ("r-tidyr" ,r-tidyr)))
18227 (home-page "https://github.com/thomasp85/tidygraph")
18228 (synopsis "Tidy API for graph manipulation")
18229 (description
18230 "This package provides a graph implementation that can be thought of as
18231 two tidy data frames describing node and edge data respectively. It provides
18232 an approach to manipulate these two virtual data frames using the API defined
18233 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
18234 common graph algorithms.")
18235 (license license:expat)))
18236
18237 (define-public r-soupx
18238 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
18239 (revision "1"))
18240 (package
18241 (name "r-soupx")
18242 (version (git-version "0.3.1" revision commit))
18243 (source
18244 (origin
18245 (method git-fetch)
18246 (uri (git-reference
18247 (url "https://github.com/constantAmateur/SoupX")
18248 (commit commit)))
18249 (file-name (git-file-name name version))
18250 (sha256
18251 (base32
18252 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
18253 (properties `((upstream-name . "SoupX")))
18254 (build-system r-build-system)
18255 (propagated-inputs
18256 `(("r-ggplot2" ,r-ggplot2)
18257 ("r-matrix" ,r-matrix)
18258 ("r-seurat" ,r-seurat)))
18259 (home-page "https://github.com/constantAmateur/SoupX")
18260 (synopsis "Single cell mRNA Soup eXterminator")
18261 (description
18262 "This package provides a package for quantifying, profiling and
18263 removing cell free mRNA contamination (the \"soup\") from droplet based single
18264 cell RNA-seq experiments.")
18265 (license license:gpl2))))
18266
18267 (define-public r-assertr
18268 (package
18269 (name "r-assertr")
18270 (version "2.8")
18271 (source
18272 (origin
18273 (method url-fetch)
18274 (uri (cran-uri "assertr" version))
18275 (sha256
18276 (base32
18277 "00764vv86r3bn4r85in4w637harffyw605fgq0dj6mrbrwcfb650"))))
18278 (build-system r-build-system)
18279 (propagated-inputs
18280 `(("r-dplyr" ,r-dplyr)
18281 ("r-mass" ,r-mass)
18282 ("r-rlang" ,r-rlang)))
18283 (native-inputs
18284 `(("r-knitr" ,r-knitr))) ; needed for vignette
18285 (home-page "https://github.com/ropensci/assertr")
18286 (synopsis "Assertive programming for R analysis pipelines")
18287 (description
18288 "This package provides functionality to assert conditions that have to be
18289 met so that errors in data used in analysis pipelines can fail quickly. It is
18290 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
18291 in pipelines.")
18292 (license license:expat)))
18293
18294 (define-public r-parameters
18295 (package
18296 (name "r-parameters")
18297 (version "0.12.0")
18298 (source
18299 (origin
18300 (method url-fetch)
18301 (uri (cran-uri "parameters" version))
18302 (sha256
18303 (base32
18304 "0dfqn4l4qmlpwmdva2ahyhlngkzdm0sgiirbdrf3mbbw52bhlmpm"))))
18305 (properties `((upstream-name . "parameters")))
18306 (build-system r-build-system)
18307 (propagated-inputs
18308 `(("r-bayestestr" ,r-bayestestr)
18309 ("r-insight" ,r-insight)))
18310 (native-inputs
18311 `(("r-knitr" ,r-knitr)))
18312 (home-page "https://cran.r-project.org/web/packages/parameters")
18313 (synopsis "Processing of model parameters")
18314 (description
18315 "This package provides utilities for processing the parameters of various
18316 statistical models. Beyond computing p values, CIs, and other indices for a
18317 wide variety of models, this package implements features like standardization
18318 or bootstrapping of parameters and models, feature reduction (feature
18319 extraction and variable selection) as well as conversion between indices of
18320 effect size.")
18321 (license license:gpl3)))
18322
18323 (define-public r-rgdal
18324 (package
18325 (name "r-rgdal")
18326 (version "1.5-23")
18327 (source
18328 (origin
18329 (method url-fetch)
18330 (uri (cran-uri "rgdal" version))
18331 (sha256
18332 (base32 "0vnb7kw762y349pda4aq1hx0smafylmn3635l963qykfji5p99cw"))))
18333 (properties `((upstream-name . "rgdal")))
18334 (build-system r-build-system)
18335 (inputs
18336 `(("gdal" ,gdal)
18337 ("proj" ,proj)
18338 ("zlib" ,zlib)))
18339 (propagated-inputs
18340 `(("r-sp" ,r-sp)))
18341 (native-inputs
18342 `(("pkg-config" ,pkg-config)
18343 ("r-knitr" ,r-knitr)))
18344 (home-page "http://rgdal.r-forge.r-project.org")
18345 (synopsis "Bindings for the Geospatial Data Abstraction Library")
18346 (description
18347 "This package provides bindings to the Geospatial Data Abstraction
18348 Library (GDAL) and access to projection/transformation operations from the
18349 PROJ.4 library.")
18350 (license license:gpl2+)))
18351
18352 (define-public r-insol
18353 (package
18354 (name "r-insol")
18355 (version "1.2.2")
18356 (source
18357 (origin
18358 (method url-fetch)
18359 (uri (cran-uri "insol" version))
18360 (sha256
18361 (base32
18362 "166kgxgzbh55y2qqya6c2si22x0v7asi70im054g6xxwc5187kh3"))))
18363 (properties `((upstream-name . "insol")))
18364 (build-system r-build-system)
18365 (propagated-inputs
18366 `(("r-raster" ,r-raster)))
18367 (native-inputs
18368 `(("gfortran" ,gfortran)))
18369 (home-page "https://meteoexploration.com/R/insol/index.html")
18370 (synopsis "Tools for calculating solar radiation")
18371 (description
18372 "This package provides functions to compute insolation on tilted
18373 surfaces, computes atmospheric transmittance and related parameters such as:
18374 Earth radius vector, declination, sunset and sunrise, daylength, equation of
18375 time, vector in the direction of the sun, vector normal to surface, and some
18376 atmospheric physics.")
18377 (license license:gpl2+)))
18378
18379 (define-public r-lifecycle
18380 (package
18381 (name "r-lifecycle")
18382 (version "1.0.0")
18383 (source
18384 (origin
18385 (method url-fetch)
18386 (uri (cran-uri "lifecycle" version))
18387 (sha256
18388 (base32
18389 "13hgxk93q9387s8dnqpm8dfx610y0pr76khqksj4kbgj2fr4lcq3"))))
18390 (properties `((upstream-name . "lifecycle")))
18391 (build-system r-build-system)
18392 (propagated-inputs
18393 `(("r-glue" ,r-glue)
18394 ("r-rlang" ,r-rlang)))
18395 (native-inputs
18396 `(("r-knitr" ,r-knitr))) ; for vignettes
18397 (home-page "https://github.com/r-lib/lifecycle")
18398 (synopsis "Manage the life cycle of your package functions")
18399 (description
18400 "Manage the life cycle of your exported functions with shared
18401 conventions, documentation badges, and non-invasive deprecation warnings. The
18402 lifecycle package defines four development stages (experimental, maturing,
18403 stable, and questioning) and three deprecation stages (soft-deprecated,
18404 deprecated, and defunct). It makes it easy to insert badges corresponding to
18405 these stages in your documentation. Usage of deprecated functions are
18406 signalled with increasing levels of non-invasive verbosity.")
18407 (license license:gpl3)))
18408
18409 (define-public r-assertable
18410 (package
18411 (name "r-assertable")
18412 (version "0.2.8")
18413 (source
18414 (origin
18415 (method url-fetch)
18416 (uri (cran-uri "assertable" version))
18417 (sha256
18418 (base32
18419 "1cciil1nzxd8gbj49w99jiv077lbpb59vx7bmb4p218aj2h5hqq4"))))
18420 (build-system r-build-system)
18421 (propagated-inputs
18422 `(("r-data-table" ,r-data-table)))
18423 (native-inputs
18424 `(("r-knitr" ,r-knitr)))
18425 (home-page "https://cran.r-project.org/web/packages/assertable/")
18426 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
18427 (description "This package provides simple, flexible assertions on
18428 data.frame or data.table objects with verbose output for vetting. While other
18429 assertion packages apply towards more general use-cases, @code{assertable} is
18430 tailored towards tabular data. It includes functions to check variable names
18431 and values, whether the dataset contains all combinations of a given set of
18432 unique identifiers, and whether it is a certain length. In addition,
18433 @code{assertable} includes utility functions to check the existence of target
18434 files and to efficiently import multiple tabular data files into one
18435 data.table.")
18436 (license license:gpl3)))
18437
18438 (define-public r-quadprog
18439 (package
18440 (name "r-quadprog")
18441 (version "1.5-8")
18442 (source
18443 (origin
18444 (method url-fetch)
18445 (uri (cran-uri "quadprog" version))
18446 (sha256
18447 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
18448 (build-system r-build-system)
18449 (native-inputs
18450 `(("gfortran" ,gfortran)))
18451 (home-page "https://cran.r-project.org/web/packages/quadprog")
18452 (synopsis "Functions to solve quadratic programming problems")
18453 (description
18454 "This package contains routines and documentation for solving quadratic
18455 programming problems.")
18456 (license license:gpl3+)))
18457
18458 (define-public r-desolve
18459 (package
18460 (name "r-desolve")
18461 (version "1.28")
18462 (source
18463 (origin
18464 (method url-fetch)
18465 (uri (cran-uri "deSolve" version))
18466 (sha256
18467 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
18468 (properties `((upstream-name . "deSolve")))
18469 (build-system r-build-system)
18470 (native-inputs
18471 `(("gfortran" ,gfortran)))
18472 (home-page "https://desolve.r-forge.r-project.org/")
18473 (synopsis "Solvers for initial value problems of differential equations")
18474 (description "This package provides functions that solve initial value
18475 problems of a system of first-order @dfn{ordinary differential
18476 equations} (ODE), of @dfn{partial differential equations} (PDE), of
18477 @dfn{differential algebraic equations} (DAE), and of delay differential
18478 equations. The functions provide an interface to the FORTRAN functions
18479 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
18480 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
18481 C-implementation of solvers of the Runge-Kutta family with fixed or variable
18482 time steps. The package contains routines designed for solving ODEs resulting
18483 from 1-D, 2-D and 3-D partial differential equations that have been converted
18484 to ODEs by numerical differencing.")
18485 (license license:gpl2+)))
18486
18487 (define-public r-pracma
18488 (package
18489 (name "r-pracma")
18490 (version "2.3.3")
18491 (source (origin
18492 (method url-fetch)
18493 (uri (cran-uri "pracma" version))
18494 (sha256
18495 (base32 "0g5r5ir5k43ba0ngnsanp108k479l2dnsjd5w6idk1d34ivqs7yg"))))
18496 (build-system r-build-system)
18497 (home-page "https://cran.r-project.org/web/packages/pracma/")
18498 (synopsis "Practical numerical math functions")
18499 (description "This package provides functions for numerical analysis and
18500 linear algebra, numerical optimization, differential equations, plus some
18501 special functions. It uses Matlab function names where appropriate to simplify
18502 porting.")
18503 (license license:gpl3+)))
18504
18505 (define-public r-subplex
18506 (package
18507 (name "r-subplex")
18508 (version "1.6")
18509 (source
18510 (origin
18511 (method url-fetch)
18512 (uri (cran-uri "subplex" version))
18513 (sha256
18514 (base32
18515 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
18516 (build-system r-build-system)
18517 (native-inputs
18518 `(("gfortran" ,gfortran)))
18519 (home-page "https://cran.r-project.org/web/packages/subplex")
18520 (synopsis "Unconstrained optimization using the subplex algorithm")
18521 (description
18522 "This package implements the Subplex optimization algorithm.
18523 It solves unconstrained optimization problems using a simplex method on
18524 subspaces. The method is well suited for optimizing objective functions that
18525 are noisy or are discontinuous at the solution.")
18526 (license license:gpl3+)))
18527
18528 (define-public r-txtplot
18529 (package
18530 (name "r-txtplot")
18531 (version "1.0-4")
18532 (source
18533 (origin
18534 (method url-fetch)
18535 (uri (cran-uri "txtplot" version))
18536 (sha256
18537 (base32
18538 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
18539 (build-system r-build-system)
18540 (home-page "https://cran.r-project.org/web/packages/txtplot/")
18541 (synopsis "Text-based plotting")
18542 (description "This package provides functions to produce rudimentary ASCII
18543 graphics directly in the terminal window. This package provides a basic
18544 plotting function (and equivalents of curve, density, acf and barplot) as well
18545 as a boxplot function.")
18546 (license license:lgpl3+)))
18547
18548 (define-public r-bio3d
18549 (package
18550 (name "r-bio3d")
18551 (version "2.4-1")
18552 (source
18553 (origin
18554 (method url-fetch)
18555 (uri (cran-uri "bio3d" version))
18556 (sha256
18557 (base32
18558 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
18559 (properties `((upstream-name . "bio3d")))
18560 (build-system r-build-system)
18561 (inputs `(("zlib" ,zlib)))
18562 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
18563 (home-page "http://thegrantlab.org/bio3d/")
18564 (synopsis "Biological structure analysis")
18565 (description
18566 "This package provides utilities to process, organize and explore protein
18567 structure, sequence and dynamics data. Features include the ability to read
18568 and write structure, sequence and dynamic trajectory data, perform sequence
18569 and structure database searches, data summaries, atom selection, alignment,
18570 superposition, rigid core identification, clustering, torsion analysis,
18571 distance matrix analysis, structure and sequence conservation analysis, normal
18572 mode analysis, principal component analysis of heterogeneous structure data,
18573 and correlation network analysis from normal mode and molecular dynamics data.
18574 In addition, various utility functions are provided to enable the statistical
18575 and graphical power of the R environment to work with biological sequence and
18576 structural data.")
18577 (license license:gpl2+)))
18578
18579 (define-public r-bios2cor
18580 (package
18581 (name "r-bios2cor")
18582 (version "2.2")
18583 (source
18584 (origin
18585 (method url-fetch)
18586 (uri (cran-uri "Bios2cor" version))
18587 (sha256
18588 (base32
18589 "1wkj9vr33m9jilidil9jpw5rzr3pf7gkimxdvch22ks4bgkx7l1w"))))
18590 (properties `((upstream-name . "Bios2cor")))
18591 (build-system r-build-system)
18592 (propagated-inputs
18593 `(("r-bigmemory" ,r-bigmemory)
18594 ("r-bio3d" ,r-bio3d)
18595 ("r-circular" ,r-circular)
18596 ("r-igraph" ,r-igraph)))
18597 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
18598 (synopsis "From biological sequences and simulations to correlation analysis")
18599 (description
18600 "This package provides utilities for computation and analysis of
18601 correlation/covariation in multiple sequence alignments and in side chain
18602 motions during molecular dynamics simulations. Features include the
18603 computation of correlation/covariation scores using a variety of scoring
18604 functions between either sequence positions in alignments or side chain
18605 dihedral angles in molecular dynamics simulations and utilities to analyze the
18606 correlation/covariation matrix through a variety of tools including network
18607 representation and principal components analysis. In addition, several
18608 utility functions are based on the R graphical environment to provide friendly
18609 tools for help in data interpretation.")
18610 (license license:gpl2+)))
18611
18612 ;; This package includes minified JavaScript files. When upgrading please
18613 ;; check that there are no new minified JavaScript files.
18614 (define-public r-networkd3
18615 (package
18616 (name "r-networkd3")
18617 (version "0.4")
18618 (source
18619 (origin
18620 (method url-fetch)
18621 (uri (cran-uri "networkD3" version))
18622 (sha256
18623 (base32
18624 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
18625 (snippet
18626 '(begin
18627 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
18628 #t))))
18629 (properties `((upstream-name . "networkD3")))
18630 (build-system r-build-system)
18631 (arguments
18632 `(#:modules ((guix build utils)
18633 (guix build r-build-system)
18634 (srfi srfi-1)
18635 (ice-9 popen))
18636 #:phases
18637 (modify-phases %standard-phases
18638 (add-after 'unpack 'process-javascript
18639 (lambda* (#:key inputs #:allow-other-keys)
18640 (with-directory-excursion "inst/htmlwidgets/lib/"
18641 (call-with-values
18642 (lambda ()
18643 (unzip2
18644 `((,(assoc-ref inputs "d3.v4.js")
18645 "d3-4.5.0/d3.min.js"))))
18646 (lambda (sources targets)
18647 (for-each (lambda (source target)
18648 (format #t "Processing ~a --> ~a~%"
18649 source target)
18650 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
18651 (call-with-output-file target
18652 (lambda (port)
18653 (dump-port minified port)))))
18654 sources targets))))
18655 #t)))))
18656 (native-inputs
18657 `(("uglify-js" ,uglify-js)
18658 ;; NOTE: Make sure that this version of d3 is still valid when
18659 ;; upgrading the package.
18660 ("d3.v4.js"
18661 ,(origin
18662 (method url-fetch)
18663 (uri "https://d3js.org/d3.v4.js")
18664 (sha256
18665 (base32
18666 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
18667 (propagated-inputs
18668 `(("r-htmlwidgets" ,r-htmlwidgets)
18669 ("r-igraph" ,r-igraph)
18670 ("r-magrittr" ,r-magrittr)))
18671 (home-page "https://cran.r-project.org/package=networkD3")
18672 (synopsis "D3 JavaScript network graphs from R")
18673 (description
18674 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
18675 graphs from R.")
18676 (license license:gpl3+)))
18677
18678 (define-public r-aasea
18679 (package
18680 (name "r-aasea")
18681 (version "1.1.0")
18682 (source
18683 (origin
18684 (method url-fetch)
18685 (uri (cran-uri "aaSEA" version))
18686 (sha256
18687 (base32
18688 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
18689 (properties `((upstream-name . "aaSEA")))
18690 (build-system r-build-system)
18691 (propagated-inputs
18692 `(("r-bios2cor" ,r-bios2cor)
18693 ("r-dt" ,r-dt)
18694 ("r-hmisc" ,r-hmisc)
18695 ("r-magrittr" ,r-magrittr)
18696 ("r-networkd3" ,r-networkd3)
18697 ("r-plotly" ,r-plotly)
18698 ("r-seqinr" ,r-seqinr)
18699 ("r-shiny" ,r-shiny)
18700 ("r-shinydashboard" ,r-shinydashboard)))
18701 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
18702 (synopsis "Amino acid substitution effect analyzer")
18703 (description
18704 "Given a protein multiple sequence alignment, it is a daunting task to
18705 assess the effects of substitutions along sequence length. The aaSEA package
18706 is intended to help researchers to rapidly analyze property changes caused by
18707 single, multiple and correlated amino acid substitutions in proteins.")
18708 (license license:gpl3)))
18709
18710 (define-public r-abacus
18711 (package
18712 (name "r-abacus")
18713 (version "1.0.0")
18714 (source
18715 (origin
18716 (method url-fetch)
18717 (uri (cran-uri "ABACUS" version))
18718 (sha256
18719 (base32
18720 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
18721 (properties `((upstream-name . "ABACUS")))
18722 (build-system r-build-system)
18723 (propagated-inputs
18724 `(("r-ggplot2" ,r-ggplot2)
18725 ("r-shiny" ,r-shiny)))
18726 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
18727 (synopsis "Apps-based activities for communicating and understanding statistics")
18728 (description
18729 "This package provides a set of Shiny apps for effective communication
18730 and understanding in statistics. The current version includes properties of
18731 normal distribution, properties of sampling distribution, one-sample z and t
18732 tests, two samples independent (unpaired) t test and analysis of variance.")
18733 (license license:gpl3)))
18734
18735 (define-public r-abc-rap
18736 (package
18737 (name "r-abc-rap")
18738 (version "0.9.0")
18739 (source
18740 (origin
18741 (method url-fetch)
18742 (uri (cran-uri "ABC.RAP" version))
18743 (sha256
18744 (base32
18745 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
18746 (properties `((upstream-name . "ABC.RAP")))
18747 (build-system r-build-system)
18748 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
18749 (synopsis "Array-based CpG region analysis pipeline")
18750 (description
18751 "This package aims to identify candidate genes that are differentially
18752 methylated between cases and controls. It applies Student's t-test and delta
18753 beta analysis to identify candidate genes containing multiple CpG sites.")
18754 (license license:gpl3)))
18755
18756 (define-public r-abcadm
18757 (package
18758 (name "r-abcadm")
18759 (version "1.0")
18760 (source
18761 (origin
18762 (method url-fetch)
18763 (uri (cran-uri "abcADM" version))
18764 (sha256
18765 (base32
18766 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
18767 (properties `((upstream-name . "abcADM")))
18768 (build-system r-build-system)
18769 (propagated-inputs
18770 `(("r-bh" ,r-bh)
18771 ("r-rcpp" ,r-rcpp)))
18772 (home-page "https://cran.r-project.org/web/packages/abcADM/")
18773 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
18774 (description
18775 "This package provides tools to estimate parameters of accumulated
18776 damage (load duration) models based on failure time data under a Bayesian
18777 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
18778 long-term reliability under stochastic load profiles.")
18779 (license license:gpl3)))
18780
18781 (define-public r-rglpk
18782 (package
18783 (name "r-rglpk")
18784 (version "0.6-4")
18785 (source
18786 (origin
18787 (method url-fetch)
18788 (uri (cran-uri "Rglpk" version))
18789 (sha256
18790 (base32
18791 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
18792 (properties `((upstream-name . "Rglpk")))
18793 (build-system r-build-system)
18794 (propagated-inputs
18795 `(("r-slam" ,r-slam)))
18796 (inputs
18797 `(("glpk" ,glpk)))
18798 (home-page "https://r-forge.r-project.org/projects/rglp/")
18799 (synopsis "R interface to the GNU Linear Programming Kit")
18800 (description
18801 "This package provides an R interface to the GNU Linear Programming Kit,
18802 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
18803 integer linear programming} (MILP) and other related problems.")
18804 ;; Either license
18805 (license (list license:gpl2 license:gpl3))))
18806
18807 (define-public r-abcdefba
18808 (package
18809 (name "r-abcdefba")
18810 (version "0.4")
18811 (source
18812 (origin
18813 (method url-fetch)
18814 (uri (cran-uri "abcdeFBA" version))
18815 (sha256
18816 (base32
18817 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
18818 (properties `((upstream-name . "abcdeFBA")))
18819 (build-system r-build-system)
18820 (propagated-inputs
18821 `(("r-corrplot" ,r-corrplot)
18822 ("r-lattice" ,r-lattice)
18823 ("r-rgl" ,r-rgl)
18824 ("r-rglpk" ,r-rglpk)))
18825 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
18826 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
18827 (description
18828 "This package provides functions for Constraint Based Simulation using
18829 Flux Balance Analysis and informative analysis of the data generated during
18830 simulation.")
18831 (license license:gpl2)))
18832
18833 (define-public r-abcrlda
18834 (package
18835 (name "r-abcrlda")
18836 (version "1.0.3")
18837 (source
18838 (origin
18839 (method url-fetch)
18840 (uri (cran-uri "abcrlda" version))
18841 (sha256
18842 (base32
18843 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
18844 (properties `((upstream-name . "abcrlda")))
18845 (build-system r-build-system)
18846 (home-page "https://ieeexplore.ieee.org/document/8720003/")
18847 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
18848 (description
18849 "This package offers methods to perform @dfn{asymptotically
18850 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
18851 cost-sensitive binary classification. The bias-correction is an estimate of
18852 the bias term added to regularized discriminant analysis that minimizes the
18853 overall risk.")
18854 (license license:gpl3)))
18855
18856 (define-public r-abemus
18857 (package
18858 (name "r-abemus")
18859 (version "1.0.1")
18860 (source
18861 (origin
18862 (method url-fetch)
18863 (uri (cran-uri "abemus" version))
18864 (sha256
18865 (base32
18866 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
18867 (properties `((upstream-name . "abemus")))
18868 (build-system r-build-system)
18869 (propagated-inputs
18870 `(("r-data-table" ,r-data-table)))
18871 (home-page "https://cran.r-project.org/web/packages/abemus/")
18872 (synopsis "Adaptive base error model in ultra-deep sequencing data")
18873 (description
18874 "This package provides an implementation of @dfn{Adaptive Base Error
18875 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
18876 platform-specific genetic knowledge and empirical signal to readily detect and
18877 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
18878 cell free DNA} (cfDNA).")
18879 (license license:gpl3)))
18880
18881 ;; This package includes minified JavaScript files. When upgrading please
18882 ;; check that there are no new minified JavaScript files.
18883 (define-public r-rintrojs
18884 (package
18885 (name "r-rintrojs")
18886 (version "0.2.2")
18887 (source
18888 (origin
18889 (method url-fetch)
18890 (uri (cran-uri "rintrojs" version))
18891 (sha256
18892 (base32
18893 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
18894 (properties `((upstream-name . "rintrojs")))
18895 (build-system r-build-system)
18896 (arguments
18897 `(#:modules ((guix build utils)
18898 (guix build r-build-system)
18899 (srfi srfi-1)
18900 (ice-9 popen))
18901 #:phases
18902 (modify-phases %standard-phases
18903 (add-after 'unpack 'process-javascript
18904 (lambda* (#:key inputs #:allow-other-keys)
18905 (with-directory-excursion "inst/javascript/introjs/"
18906 (call-with-values
18907 (lambda ()
18908 (unzip2
18909 `((,(assoc-ref inputs "intro.js")
18910 "intro.min.js"))))
18911 (lambda (sources targets)
18912 (for-each (lambda (source target)
18913 (format #t "Processing ~a --> ~a~%"
18914 source target)
18915 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
18916 (call-with-output-file target
18917 (lambda (port)
18918 (dump-port minified port)))))
18919 sources targets))))
18920 #t)))))
18921 (native-inputs
18922 `(("uglify-js" ,uglify-js)
18923 ("intro.js"
18924 ,(origin
18925 (method url-fetch)
18926 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
18927 (sha256
18928 (base32
18929 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
18930 (propagated-inputs
18931 `(("r-jsonlite" ,r-jsonlite)
18932 ("r-shiny" ,r-shiny)))
18933 (home-page "https://github.com/carlganz/rintrojs")
18934 (synopsis "Wrapper for the Intro.js library")
18935 (description
18936 "This package provides a wrapper for the @url{http://www.introjs.com,
18937 Intro.js} library. This package makes it easy to include step-by-step
18938 introductions, and clickable hints in a Shiny application. It supports both
18939 static introductions in the UI, and programmatic introductions from the
18940 server-side.")
18941 (license license:agpl3+)))
18942
18943 (define-public r-sysfonts
18944 (package
18945 (name "r-sysfonts")
18946 (version "0.8.3")
18947 (source
18948 (origin
18949 (method url-fetch)
18950 (uri (cran-uri "sysfonts" version))
18951 (sha256
18952 (base32
18953 "00kbazxw6zd1kakfshffdj928krca53bw9k78k0zar40mbqxiwd5"))))
18954 (properties `((upstream-name . "sysfonts")))
18955 (build-system r-build-system)
18956 (inputs
18957 `(("freetype" ,freetype)
18958 ("libpng" ,libpng)
18959 ("zlib" ,zlib)))
18960 (native-inputs
18961 `(("pkg-config" ,pkg-config)))
18962 (home-page "https://github.com/yixuan/sysfonts")
18963 (synopsis "Loading fonts into R")
18964 (description
18965 "This is a package to simplify loading of system fonts and Google Fonts
18966 into R, in order to support other packages.")
18967 (license license:gpl2)))
18968
18969 (define-public r-showtextdb
18970 (package
18971 (name "r-showtextdb")
18972 (version "3.0")
18973 (source
18974 (origin
18975 (method url-fetch)
18976 (uri (cran-uri "showtextdb" version))
18977 (sha256
18978 (base32
18979 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
18980 (properties `((upstream-name . "showtextdb")))
18981 (build-system r-build-system)
18982 (propagated-inputs
18983 `(("r-sysfonts" ,r-sysfonts)))
18984 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
18985 (synopsis "Font files for the 'showtext' package")
18986 (description
18987 "This package provides font files that can be used by the @code{showtext}
18988 package.")
18989 (license license:asl2.0)))
18990
18991 (define-public r-showtext
18992 (package
18993 (name "r-showtext")
18994 (version "0.9-2")
18995 (source
18996 (origin
18997 (method url-fetch)
18998 (uri (cran-uri "showtext" version))
18999 (sha256
19000 (base32
19001 "0y5mw6ffk92r7b22irrfhdmj4hxfl0d1wjxj14hznbapc4qm6f0z"))))
19002 (properties `((upstream-name . "showtext")))
19003 (build-system r-build-system)
19004 (inputs
19005 `(("freetype" ,freetype)
19006 ("libpng" ,libpng)
19007 ("zlib" ,zlib)))
19008 (propagated-inputs
19009 `(("r-showtextdb" ,r-showtextdb)
19010 ("r-sysfonts" ,r-sysfonts)))
19011 (native-inputs
19012 `(("pkg-config" ,pkg-config)
19013 ("r-knitr" ,r-knitr)))
19014 (home-page "https://github.com/yixuan/showtext")
19015 (synopsis "Using fonts more easily in R graphs")
19016 (description
19017 "This package aims to make it easy to use various types of
19018 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
19019 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
19020 will be converted into polygons or raster images, hence after the plot has
19021 been created, it no longer relies on the font files. No external software
19022 such as Ghostscript is needed to use this package.")
19023 (license license:asl2.0)))
19024
19025 (define-public r-emojifont
19026 (package
19027 (name "r-emojifont")
19028 (version "0.5.3")
19029 (source
19030 (origin
19031 (method url-fetch)
19032 (uri (cran-uri "emojifont" version))
19033 (sha256
19034 (base32
19035 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
19036 (properties `((upstream-name . "emojifont")))
19037 (build-system r-build-system)
19038 (propagated-inputs
19039 `(("r-ggplot2" ,r-ggplot2)
19040 ("r-proto" ,r-proto)
19041 ("r-showtext" ,r-showtext)
19042 ("r-sysfonts" ,r-sysfonts)))
19043 (home-page "https://guangchuangyu.github.io/emojifont")
19044 (synopsis "Emoji and Font Awesome in R graphics")
19045 (description
19046 "This package enables the use of emoji and the Font Awesome glyphs in
19047 both base and ggplot2 graphics.")
19048 (license license:artistic2.0)))
19049
19050 (define-public r-abstractr
19051 (package
19052 (name "r-abstractr")
19053 (version "0.1.0")
19054 (source
19055 (origin
19056 (method url-fetch)
19057 (uri (cran-uri "abstractr" version))
19058 (sha256
19059 (base32
19060 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
19061 (properties `((upstream-name . "abstractr")))
19062 (build-system r-build-system)
19063 (propagated-inputs
19064 `(("r-colourpicker" ,r-colourpicker)
19065 ("r-emojifont" ,r-emojifont)
19066 ("r-ggplot2" ,r-ggplot2)
19067 ("r-gridextra" ,r-gridextra)
19068 ("r-rintrojs" ,r-rintrojs)
19069 ("r-shiny" ,r-shiny)
19070 ("r-shinythemes" ,r-shinythemes)))
19071 (home-page "https://matt-kumar.shinyapps.io/portfolio")
19072 (synopsis "R-Shiny application for creating visual abstracts")
19073 (description
19074 "This package provides an R Shiny application to create visual abstracts
19075 for original research. A variety of user defined options and formatting are
19076 included.")
19077 (license license:gpl3)))
19078
19079 (define-public r-qgam
19080 (package
19081 (name "r-qgam")
19082 (version "1.3.2")
19083 (source
19084 (origin
19085 (method url-fetch)
19086 (uri (cran-uri "qgam" version))
19087 (sha256
19088 (base32
19089 "0lks2cj0p7irp1i01756v1l7i26d7alax1fbkc20qd6wpz840fi7"))))
19090 (properties `((upstream-name . "qgam")))
19091 (build-system r-build-system)
19092 (propagated-inputs
19093 `(("r-doparallel" ,r-doparallel)
19094 ("r-mgcv" ,r-mgcv)
19095 ("r-plyr" ,r-plyr)
19096 ("r-shiny" ,r-shiny)))
19097 (native-inputs `(("r-knitr" ,r-knitr)))
19098 (home-page "https://cran.r-project.org/web/packages/qgam/")
19099 (synopsis "Smooth additive quantile regression models")
19100 (description
19101 "This package provides smooth additive quantile regression models, fitted
19102 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
19103 the smoothing parameters are estimated automatically by marginal loss
19104 minimization, while the regression coefficients are estimated using either
19105 PIRLS or Newton algorithm. The learning rate is determined so that the
19106 Bayesian credible intervals of the estimated effects have approximately the
19107 correct coverage. The main function is @code{qgam()} which is similar to
19108 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
19109 regression models.")
19110 (license license:gpl2+)))
19111
19112 (define-public r-abtest
19113 (package
19114 (name "r-abtest")
19115 (version "0.2.2")
19116 (source
19117 (origin
19118 (method url-fetch)
19119 (uri (cran-uri "abtest" version))
19120 (sha256
19121 (base32
19122 "1ak0m4jd1grriwg4pn3aqf1468qma6rjn5kqjh8izx7zl29jd07v"))))
19123 (properties `((upstream-name . "abtest")))
19124 (build-system r-build-system)
19125 (propagated-inputs
19126 `(("r-matrix" ,r-matrix)
19127 ("r-mvtnorm" ,r-mvtnorm)
19128 ("r-plotrix" ,r-plotrix)
19129 ("r-qgam" ,r-qgam)
19130 ("r-rcolorbrewer" ,r-rcolorbrewer)
19131 ("r-rcpp" ,r-rcpp)
19132 ("r-sn" ,r-sn)
19133 ("r-truncnorm" ,r-truncnorm)))
19134 (home-page "https://cran.r-project.org/web/packages/abtest/")
19135 (synopsis "Bayesian A/B testing")
19136 (description
19137 "This package provides functions for Bayesian A/B testing including prior
19138 elicitation options based on Kass and Vaidyanathan (1992)
19139 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
19140 (license license:gpl2+)))
19141
19142 (define-public r-accept
19143 (package
19144 (name "r-accept")
19145 (version "0.7.1")
19146 (source
19147 (origin
19148 (method url-fetch)
19149 (uri (cran-uri "accept" version))
19150 (sha256
19151 (base32
19152 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
19153 (properties `((upstream-name . "accept")))
19154 (build-system r-build-system)
19155 (propagated-inputs
19156 `(("r-dplyr" ,r-dplyr)
19157 ("r-extrafont" ,r-extrafont)
19158 ("r-mass" ,r-mass)
19159 ("r-plotly" ,r-plotly)
19160 ("r-stringr" ,r-stringr)
19161 ("r-viridis" ,r-viridis)))
19162 (home-page "https://cran.r-project.org/web/packages/accept/")
19163 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
19164 (description
19165 "This package allows clinicians to predict the rate and severity of
19166 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
19167 Disease} (COPD) patients, based on the clinical prediction model published in
19168 Adibi et al. (2019) @url{doi:10.1101/651901}.")
19169 (license license:gpl3)))
19170
19171 (define-public r-smpracticals
19172 (package
19173 (name "r-smpracticals")
19174 (version "1.4-3")
19175 (source
19176 (origin
19177 (method url-fetch)
19178 (uri (cran-uri "SMPracticals" version))
19179 (sha256
19180 (base32
19181 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
19182 (properties `((upstream-name . "SMPracticals")))
19183 (build-system r-build-system)
19184 (propagated-inputs
19185 `(("r-ellipse" ,r-ellipse)
19186 ("r-mass" ,r-mass)
19187 ("r-nlme" ,r-nlme)
19188 ("r-survival" ,r-survival)))
19189 (home-page "http://statwww.epfl.ch/davison/SM/")
19190 (synopsis "Practicals for use with Davison (2003) Statistical Models")
19191 (description
19192 "This package contains the datasets and a few functions for use with the
19193 practicals outlined in Appendix A of the book Statistical Models (Davison,
19194 2003, Cambridge University Press). The practicals themselves can be found at
19195 @url{http://statwww.epfl.ch/davison/SM/}.")
19196 (license license:gpl2+)))
19197
19198 (define-public r-fgui
19199 (package
19200 (name "r-fgui")
19201 (version "1.0-8")
19202 (source
19203 (origin
19204 (method url-fetch)
19205 (uri (cran-uri "fgui" version))
19206 (sha256
19207 (base32
19208 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
19209 (properties `((upstream-name . "fgui")))
19210 (build-system r-build-system)
19211 (home-page
19212 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
19213 (synopsis "Create GUI for R functions")
19214 (description
19215 "Rapidly create a GUI for a function you created by automatically
19216 creating widgets for arguments of the function. This package automatically
19217 parses help routines for context-sensitive help to these arguments. The
19218 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
19219 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
19220 incorporated into the interface for greater customization for the more
19221 experienced.")
19222 ;; Any version of the GPL.
19223 (license (list license:gpl2+ license:gpl3+))))
19224
19225 (define-public r-tcltk2
19226 (package
19227 (name "r-tcltk2")
19228 (version "1.2-11")
19229 (source
19230 (origin
19231 (method url-fetch)
19232 (uri (cran-uri "tcltk2" version))
19233 (sha256
19234 (base32
19235 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
19236 (properties `((upstream-name . "tcltk2")))
19237 (build-system r-build-system)
19238 (inputs
19239 `(("tcl" ,tcl)
19240 ("tk" ,tk)))
19241 (home-page "https://www.sciviews.org/SciViews-R")
19242 (synopsis "Tcl/Tk additions")
19243 (description
19244 "This package provides a series of additional Tcl commands and Tk widgets
19245 with style and various functions to supplement the tcltk package")
19246 (license license:lgpl3)))
19247
19248 (define-public r-accrual
19249 (package
19250 (name "r-accrual")
19251 (version "1.3")
19252 (source
19253 (origin
19254 (method url-fetch)
19255 (uri (cran-uri "accrual" version))
19256 (sha256
19257 (base32
19258 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
19259 (properties `((upstream-name . "accrual")))
19260 (build-system r-build-system)
19261 (propagated-inputs
19262 `(("r-fgui" ,r-fgui)
19263 ("r-smpracticals" ,r-smpracticals)
19264 ("r-tcltk2" ,r-tcltk2)))
19265 (home-page "https://cran.r-project.org/web/packages/accrual/")
19266 (synopsis "Bayesian accrual prediction")
19267 (description
19268 "Subject recruitment for medical research is challenging. Slow patient
19269 accrual leads to delay in research. Accrual monitoring during the process of
19270 recruitment is critical. Researchers need reliable tools to manage the
19271 accrual rate. This package provides an implementation of a Bayesian method
19272 that integrates researcher's experience on previous trials and data from the
19273 current study, providing reliable prediction on accrual rate for clinical
19274 studies. It provides functions for Bayesian accrual prediction which can be
19275 easily used by statisticians and clinical researchers.")
19276 (license license:gpl2)))
19277
19278 (define-public r-accrued
19279 (package
19280 (name "r-accrued")
19281 (version "1.4.1")
19282 (source
19283 (origin
19284 (method url-fetch)
19285 (uri (cran-uri "accrued" version))
19286 (sha256
19287 (base32
19288 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
19289 (properties `((upstream-name . "accrued")))
19290 (build-system r-build-system)
19291 (home-page "https://cran.r-project.org/web/packages/accrued/")
19292 (synopsis "Data quality visualization tools for partially accruing data")
19293 (description
19294 "This is a package for visualizing data quality of partially accruing
19295 data.")
19296 (license license:gpl3)))
19297
19298 (define-public r-mda
19299 (package
19300 (name "r-mda")
19301 (version "0.5-2")
19302 (source
19303 (origin
19304 (method url-fetch)
19305 (uri (cran-uri "mda" version))
19306 (sha256
19307 (base32
19308 "1hq0zhhz9klmp4zcr1w8hyn7s1h9kfg57d2l2mfm7psx459j0krl"))))
19309 (properties `((upstream-name . "mda")))
19310 (build-system r-build-system)
19311 (propagated-inputs `(("r-class" ,r-class)))
19312 (native-inputs `(("gfortran" ,gfortran)))
19313 (home-page "https://cran.r-project.org/web/packages/mda/")
19314 (synopsis "Mixture and flexible discriminant analysis")
19315 (description
19316 "This is a package for mixture and flexible discriminant analysis,
19317 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
19318 (license license:gpl2)))
19319
19320 (define-public r-elasticnet
19321 (package
19322 (name "r-elasticnet")
19323 (version "1.3")
19324 (source
19325 (origin
19326 (method url-fetch)
19327 (uri (cran-uri "elasticnet" version))
19328 (sha256
19329 (base32
19330 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
19331 (properties `((upstream-name . "elasticnet")))
19332 (build-system r-build-system)
19333 (propagated-inputs
19334 `(("r-lars" ,r-lars)))
19335 (home-page "http://users.stat.umn.edu/~zouxx019/")
19336 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
19337 (description
19338 "This package provides functions for fitting the entire solution path of
19339 the Elastic-Net and also provides functions for estimating sparse Principal
19340 Components. The Lasso solution paths can be computed by the same function.")
19341 (license license:gpl2+)))
19342
19343 (define-public r-sparselda
19344 (package
19345 (name "r-sparselda")
19346 (version "0.1-9")
19347 (source
19348 (origin
19349 (method url-fetch)
19350 (uri (cran-uri "sparseLDA" version))
19351 (sha256
19352 (base32
19353 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
19354 (properties `((upstream-name . "sparseLDA")))
19355 (build-system r-build-system)
19356 (propagated-inputs
19357 `(("r-elasticnet" ,r-elasticnet)
19358 ("r-mass" ,r-mass)
19359 ("r-mda" ,r-mda)))
19360 (home-page "https://www.imm.dtu.dk/~lkhc/")
19361 (synopsis "Sparse discriminant analysis")
19362 (description
19363 "This package performs sparse linear discriminant analysis for Gaussians
19364 and mixture of Gaussian models.")
19365 (license license:gpl2+)))
19366
19367 (define-public r-accsda
19368 (package
19369 (name "r-accsda")
19370 (version "1.0.0")
19371 (source
19372 (origin
19373 (method url-fetch)
19374 (uri (cran-uri "accSDA" version))
19375 (sha256
19376 (base32
19377 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
19378 (properties `((upstream-name . "accSDA")))
19379 (build-system r-build-system)
19380 (propagated-inputs
19381 `(("r-ggplot2" ,r-ggplot2)
19382 ("r-ggthemes" ,r-ggthemes)
19383 ("r-gridextra" ,r-gridextra)
19384 ("r-mass" ,r-mass)
19385 ("r-rarpack" ,r-rarpack)
19386 ("r-sparselda" ,r-sparselda)))
19387 (home-page "https://github.com/gumeo/accSDA/wiki")
19388 (synopsis "Accelerated sparse discriminant analysis")
19389 (description
19390 "This package provides an implementation of sparse linear discriminant
19391 analysis, which is a supervised classification method for multiple classes.
19392 Various novel optimization approaches to this problem are implemented
19393 including @dfn{alternating direction method of multipliers} (ADMM),
19394 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
19395 Functions for performing cross validation are also supplied along with basic
19396 prediction and plotting functions. @dfn{Sparse zero variance
19397 discriminant} (SZVD) analysis is also included in the package.")
19398 (license license:gpl2+)))
19399
19400 (define-public r-ace2fastq
19401 (package
19402 (name "r-ace2fastq")
19403 (version "0.6.0")
19404 (source
19405 (origin
19406 (method url-fetch)
19407 (uri (cran-uri "ace2fastq" version))
19408 (sha256
19409 (base32
19410 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
19411 (properties `((upstream-name . "ace2fastq")))
19412 (build-system r-build-system)
19413 (propagated-inputs
19414 `(("r-stringr" ,r-stringr)))
19415 (home-page "https://github.com/c5sire/ace2fastq")
19416 (synopsis "ACE file to FASTQ converter")
19417 (description
19418 "The ACE file format is used in genomics to store contigs from sequencing
19419 machines. This tools converts it into FASTQ format. Both formats contain the
19420 sequence characters and their corresponding quality information. Unlike the
19421 FASTQ file, the ACE file stores the quality values numerically. The
19422 conversion algorithm uses the standard Sanger formula. The package
19423 facilitates insertion into pipelines, and content inspection.")
19424 (license license:gpl3)))
19425
19426 (define-public r-rngwell
19427 (package
19428 (name "r-rngwell")
19429 (version "0.10-6")
19430 (source
19431 (origin
19432 (method url-fetch)
19433 (uri (cran-uri "rngWELL" version))
19434 (sha256
19435 (base32
19436 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
19437 (properties `((upstream-name . "rngWELL")))
19438 (build-system r-build-system)
19439 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
19440 (synopsis "Toolbox for WELL random number generators")
19441 (description
19442 "This is a dedicated package to WELL pseudo random generators, which were
19443 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
19444 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
19445 (license license:bsd-3)))
19446
19447 (define-public r-randtoolbox
19448 (package
19449 (name "r-randtoolbox")
19450 (version "1.30.1")
19451 (source
19452 (origin
19453 (method url-fetch)
19454 (uri (cran-uri "randtoolbox" version))
19455 (sha256
19456 (base32
19457 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
19458 (properties `((upstream-name . "randtoolbox")))
19459 (build-system r-build-system)
19460 (propagated-inputs
19461 `(("r-rngwell" ,r-rngwell)))
19462 (native-inputs
19463 `(("gfortran" ,gfortran)))
19464 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
19465 (synopsis "Toolbox for pseudo and quasi random number generation")
19466 (description
19467 "This package provides
19468
19469 @enumerate
19470 @item pseudo random generators, such as general linear
19471 congruential generators, multiple recursive generators and generalized
19472 feedback shift register (SF-Mersenne Twister algorithm and WELL
19473 generators)
19474
19475 @item quasi random generators, such as the Torus algorithm, the Sobol
19476 sequence, the Halton sequence (including the Van der Corput sequence), and
19477
19478 @item some generator tests: the gap test, the serial test, the poker test.
19479 @end enumerate
19480
19481 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
19482 (license license:bsd-3)))
19483
19484 (define-public r-lhs
19485 (package
19486 (name "r-lhs")
19487 (version "1.1.1")
19488 (source
19489 (origin
19490 (method url-fetch)
19491 (uri (cran-uri "lhs" version))
19492 (sha256
19493 (base32
19494 "1p4h03qlijs2a59wfd4rlvdlb9i87pw2zm8xsjd6yzz8vlm9yglh"))))
19495 (properties `((upstream-name . "lhs")))
19496 (build-system r-build-system)
19497 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19498 (native-inputs
19499 `(("r-knitr" ,r-knitr)))
19500 (home-page "https://github.com/bertcarnell/lhs")
19501 (synopsis "Latin Hypercube Samples")
19502 (description
19503 "This package provides a number of methods for creating and augmenting
19504 Latin Hypercube Samples.")
19505 (license license:gpl3)))
19506
19507 (define-public r-acebayes
19508 (package
19509 (name "r-acebayes")
19510 (version "1.10")
19511 (source
19512 (origin
19513 (method url-fetch)
19514 (uri (cran-uri "acebayes" version))
19515 (sha256
19516 (base32
19517 "11bffz430gdfdaxjx3simig66vhynmx6l1ylac4q2shcmj52nx73"))))
19518 (properties `((upstream-name . "acebayes")))
19519 (build-system r-build-system)
19520 (propagated-inputs
19521 `(("r-compare" ,r-compare)
19522 ("r-lhs" ,r-lhs)
19523 ("r-randtoolbox" ,r-randtoolbox)
19524 ("r-rcpp" ,r-rcpp)
19525 ("r-rcpparmadillo" ,r-rcpparmadillo)))
19526 (home-page "https://cran.r-project.org/web/packages/acebayes/")
19527 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
19528 (description
19529 "Finding an optimal Bayesian experimental design involves maximizing an
19530 objective function given by the expectation of some appropriately chosen
19531 utility function with respect to the joint distribution of unknown
19532 quantities (including responses). This objective function is usually not
19533 available in closed form and the design space can be continuous and of high
19534 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
19535 to maximise an approximation to the expectation of the utility function.")
19536 (license license:gpl2)))
19537
19538 (define-public r-acet
19539 (package
19540 (name "r-acet")
19541 (version "1.8.1")
19542 (source
19543 (origin
19544 (method url-fetch)
19545 (uri (cran-uri "ACEt" version))
19546 (sha256
19547 (base32
19548 "0b5lfpnppyk0237phr2aybhx29nhm8ngwk2qa1y4lshrvsw97wg4"))))
19549 (properties `((upstream-name . "ACEt")))
19550 (build-system r-build-system)
19551 (propagated-inputs
19552 `(("r-bh" ,r-bh)
19553 ("r-mass" ,r-mass)
19554 ("r-rcpp" ,r-rcpp)
19555 ("r-rcpparmadillo" ,r-rcpparmadillo)))
19556 (home-page "https://cran.r-project.org/web/packages/ACEt/")
19557 (synopsis "Estimating dynamic heritability and twin model comparison")
19558 (description
19559 "This package supports twin models that are able to estimate the dynamic
19560 behaviour of the variance components in the classical twin models with respect
19561 to age using B-splines and P-splines.")
19562 (license license:gpl2+)))
19563
19564 (define-public r-acfmperiod
19565 (package
19566 (name "r-acfmperiod")
19567 (version "1.0.0")
19568 (source
19569 (origin
19570 (method url-fetch)
19571 (uri (cran-uri "acfMPeriod" version))
19572 (sha256
19573 (base32
19574 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
19575 (properties `((upstream-name . "acfMPeriod")))
19576 (build-system r-build-system)
19577 (propagated-inputs
19578 `(("r-mass" ,r-mass)))
19579 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
19580 (synopsis "Estimation of the ACF from the M-periodogram")
19581 (description
19582 "This package support non-robust and robust computations of the sample
19583 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
19584 univariate and multivariate processes. The methodology consists in reversing
19585 the diagonalization procedure involving the periodogram or the
19586 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
19587 ACOVF or the ACF as discussed in Fuller (1995)
19588 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
19589 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
19590 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
19591 (license license:gpl2+)))
19592
19593 (define-public r-gamlss-data
19594 (package
19595 (name "r-gamlss-data")
19596 (version "5.1-4")
19597 (source
19598 (origin
19599 (method url-fetch)
19600 (uri (cran-uri "gamlss.data" version))
19601 (sha256
19602 (base32
19603 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
19604 (properties `((upstream-name . "gamlss.data")))
19605 (build-system r-build-system)
19606 (home-page "http://www.gamlss.org/")
19607 (synopsis "GAMLSS data")
19608 (description
19609 "This package provides data used as examples to demonstrate GAMLSS
19610 models.")
19611 ;; Either version of the license
19612 (license (list license:gpl2 license:gpl3))))
19613
19614 (define-public r-gamlss
19615 (package
19616 (name "r-gamlss")
19617 (version "5.3-1")
19618 (source
19619 (origin
19620 (method url-fetch)
19621 (uri (cran-uri "gamlss" version))
19622 (sha256
19623 (base32
19624 "1ngf6g4zixwm6ni5r0fs0f6132xd2f2a6mlski9hlqnvvwb46iwr"))))
19625 (properties `((upstream-name . "gamlss")))
19626 (build-system r-build-system)
19627 (propagated-inputs
19628 `(("r-gamlss-data" ,r-gamlss-data)
19629 ("r-gamlss-dist" ,r-gamlss-dist)
19630 ("r-mass" ,r-mass)
19631 ("r-nlme" ,r-nlme)
19632 ("r-survival" ,r-survival)))
19633 (home-page "http://www.gamlss.org/")
19634 (synopsis "Generalized additive models for location scale and shape")
19635 (description
19636 "This package provides functions for fitting the generalized additive
19637 models for location scale and shape introduced by Rigby and
19638 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
19639 use a distributional regression approach where all the parameters of the
19640 conditional distribution of the response variable are modelled using
19641 explanatory variables.")
19642 ;; Either version of the license
19643 (license (list license:gpl2 license:gpl3))))
19644
19645 (define-public r-acid
19646 (package
19647 (name "r-acid")
19648 (version "1.1")
19649 (source
19650 (origin
19651 (method url-fetch)
19652 (uri (cran-uri "acid" version))
19653 (sha256
19654 (base32
19655 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
19656 (properties `((upstream-name . "acid")))
19657 (build-system r-build-system)
19658 (propagated-inputs
19659 `(("r-gamlss" ,r-gamlss)
19660 ("r-gamlss-dist" ,r-gamlss-dist)
19661 ("r-hmisc" ,r-hmisc)))
19662 (home-page "https://cran.r-project.org/web/packages/acid/")
19663 (synopsis "Analysing conditional income distributions")
19664 (description
19665 "This package provides functions for the analysis of income distributions
19666 for subgroups of the population as defined by a set of variables like age,
19667 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
19668 distribution as well as functions for moments, inequality measures, entropy
19669 measures and polarisation measures of income distributions. This package thus
19670 aides the analysis of income inequality by offering tools for the exploratory
19671 analysis of income distributions at the disaggregated level.")
19672 (license license:gpl3)))
19673
19674 (define-public r-acm4r
19675 (package
19676 (name "r-acm4r")
19677 (version "1.0")
19678 (source
19679 (origin
19680 (method url-fetch)
19681 (uri (cran-uri "acm4r" version))
19682 (sha256
19683 (base32
19684 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
19685 (properties `((upstream-name . "acm4r")))
19686 (build-system r-build-system)
19687 (propagated-inputs `(("r-mass" ,r-mass)))
19688 (home-page "https://cran.r-project.org/web/packages/acm4r/")
19689 (synopsis "Align-and-count method comparisons of RFLP data")
19690 (description
19691 "This is a package to compare sequence fragment lengths or molecular
19692 weights from pairs of lanes. The number of matching bands in the
19693 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
19694 the align-and-count method.")
19695 ;; Any version of the GPL
19696 (license (list license:gpl2+ license:gpl3+))))
19697
19698 (define-public r-filelock
19699 (package
19700 (name "r-filelock")
19701 (version "1.0.2")
19702 (source
19703 (origin
19704 (method url-fetch)
19705 (uri (cran-uri "filelock" version))
19706 (sha256
19707 (base32
19708 "00ql5fw1hidpfnm0szaavf43ahmsnvdbi8i5lr1nrcc90yaiaadc"))))
19709 (properties `((upstream-name . "filelock")))
19710 (build-system r-build-system)
19711 (home-page "https://github.com/r-lib/filelock")
19712 (synopsis "Portable file locking")
19713 (description
19714 "This library lets you place an exclusive or shared lock on a file using
19715 the appropriate system call provided by the underlying operating system.")
19716 (license license:expat)))
19717
19718 (define-public r-filematrix
19719 (package
19720 (name "r-filematrix")
19721 (version "1.3")
19722 (source
19723 (origin
19724 (method url-fetch)
19725 (uri (cran-uri "filematrix" version))
19726 (sha256
19727 (base32
19728 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
19729 (properties `((upstream-name . "filematrix")))
19730 (build-system r-build-system)
19731 ;; These inputs are needed for vignettes
19732 (native-inputs
19733 `(("r-knitr" ,r-knitr)
19734 ("r-rmarkdown" ,r-rmarkdown)
19735 ("pandoc-citeproc" ,pandoc-citeproc)))
19736 (home-page "https://github.com/andreyshabalin/filematrix")
19737 (synopsis "File-backed matrix class with convenient read and write access")
19738 (description
19739 "This package provides an interface for working with large matrices
19740 stored in files, not in computer memory. It supports multiple non-character
19741 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
19742 byte real values). Access to parts of the matrix is done by indexing, exactly
19743 as with usual R matrices. It supports very large matrices; the package has
19744 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
19745 columns, ad allows for quick addition of extra columns to a filematrix.")
19746 (license license:lgpl3)))
19747
19748 (define-public r-acmeeqtl
19749 (package
19750 (name "r-acmeeqtl")
19751 (version "1.6")
19752 (source
19753 (origin
19754 (method url-fetch)
19755 (uri (cran-uri "ACMEeqtl" version))
19756 (sha256
19757 (base32
19758 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
19759 (properties `((upstream-name . "ACMEeqtl")))
19760 (build-system r-build-system)
19761 (propagated-inputs
19762 `(("r-filematrix" ,r-filematrix)))
19763 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
19764 (synopsis "Estimation of interpretable eQTL effect sizes")
19765 (description
19766 "This package provides a non-linear model, termed ACME, that reflects a
19767 parsimonious biological model for allelic contributions of cis-acting eQTLs.
19768 With non-linear least-squares algorithm the maximum likelihood parameters can
19769 be estimated. The ACME model provides interpretable effect size estimates and
19770 p-values with well controlled Type-I error.")
19771 (license license:lgpl3)))
19772
19773 (define-public r-acmer
19774 (package
19775 (name "r-acmer")
19776 (version "1.1.0")
19777 (source
19778 (origin
19779 (method url-fetch)
19780 (uri (cran-uri "acmeR" version))
19781 (sha256
19782 (base32
19783 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
19784 (properties `((upstream-name . "acmeR")))
19785 (build-system r-build-system)
19786 (propagated-inputs `(("r-foreign" ,r-foreign)))
19787 (home-page "https://cran.r-project.org/web/packages/acmeR/")
19788 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
19789 (description
19790 "This package provides an implementation of the ACME estimator, described
19791 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
19792 Mortality at Wind Turbines. Unlike most other models, this estimator supports
19793 decreasing-hazard Weibull model for persistence; decreasing search proficiency
19794 as carcasses age; variable bleed-through at successive searches; and interval
19795 mortality estimates. The package provides, based on search data, functions
19796 for estimating the mortality inflation factor in Frequentist and Bayesian
19797 settings.")
19798 (license license:expat)))
19799
19800 (define-public r-r-huge
19801 (package
19802 (name "r-r-huge")
19803 (version "0.9.0")
19804 (source
19805 (origin
19806 (method url-fetch)
19807 (uri (cran-uri "R.huge" version))
19808 (sha256
19809 (base32
19810 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
19811 (properties `((upstream-name . "R.huge")))
19812 (build-system r-build-system)
19813 (propagated-inputs
19814 `(("r-r-methodss3" ,r-r-methodss3)
19815 ("r-r-oo" ,r-r-oo)
19816 ("r-r-utils" ,r-r-utils)))
19817 (home-page "https://github.com/HenrikBengtsson/R.huge")
19818 (synopsis "Methods for accessing huge amounts of data")
19819 (description
19820 "This is a deprecated package for accessing huge amounts of data.
19821 Cross-platform alternatives are the following packages: bigmemory (CRAN),
19822 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
19823 the @code{aroma.affymetrix} package.")
19824 (license license:lgpl2.1+)))
19825
19826 (define-public r-r-filesets
19827 (package
19828 (name "r-r-filesets")
19829 (version "2.14.0")
19830 (source
19831 (origin
19832 (method url-fetch)
19833 (uri (cran-uri "R.filesets" version))
19834 (sha256
19835 (base32
19836 "08xv8b3c81nf54viyr3w912al18483k5gfnjpg7bxbdfk70dfzbh"))))
19837 (properties `((upstream-name . "R.filesets")))
19838 (build-system r-build-system)
19839 (propagated-inputs
19840 `(("r-digest" ,r-digest)
19841 ("r-r-cache" ,r-r-cache)
19842 ("r-r-methodss3" ,r-r-methodss3)
19843 ("r-r-oo" ,r-r-oo)
19844 ("r-r-utils" ,r-r-utils)))
19845 (home-page "https://github.com/HenrikBengtsson/R.filesets")
19846 (synopsis "Easy handling of and access to files")
19847 (description
19848 "This package provides classes and methods to locate, setup, subset,
19849 navigate and iterate file sets, i.e. sets of files located in one or more
19850 directories on the file system. The API is designed such that these classes
19851 can be extended via inheritance to provide a richer API for special file
19852 formats. Moreover, a specific name format is defined such that filenames and
19853 directories can be considered to have full names which consists of a name
19854 followed by comma-separated tags. This adds additional flexibility to
19855 identify file sets and individual files.")
19856 (license license:lgpl2.1+)))
19857
19858 (define-public r-r-devices
19859 (package
19860 (name "r-r-devices")
19861 (version "2.17.0")
19862 (source
19863 (origin
19864 (method url-fetch)
19865 (uri (cran-uri "R.devices" version))
19866 (sha256
19867 (base32
19868 "1djz6vm1b7sjvx1q319dl47gbnz9kvipaxcz9i0spyp094lv3m62"))))
19869 (properties `((upstream-name . "R.devices")))
19870 (build-system r-build-system)
19871 (propagated-inputs
19872 `(("r-base64enc" ,r-base64enc)
19873 ("r-r-methodss3" ,r-r-methodss3)
19874 ("r-r-oo" ,r-r-oo)
19875 ("r-r-utils" ,r-r-utils)))
19876 (home-page "https://github.com/HenrikBengtsson/R.devices")
19877 (synopsis "Unified handling of graphics devices")
19878 (description
19879 "This package provides functions for creating plots and image files in a
19880 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
19881 Default device options as well as scales and aspect ratios are controlled in a
19882 uniform way across all device types. Switching output format requires minimal
19883 changes in code. This package is ideal for large-scale batch processing,
19884 because it will never leave open graphics devices or incomplete image files
19885 behind, even on errors or user interrupts.")
19886 (license license:lgpl2.1+)))
19887
19888 (define-public r-acnr
19889 (package
19890 (name "r-acnr")
19891 (version "1.0.0")
19892 (source
19893 (origin
19894 (method url-fetch)
19895 (uri (cran-uri "acnr" version))
19896 (sha256
19897 (base32
19898 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
19899 (properties `((upstream-name . "acnr")))
19900 (build-system r-build-system)
19901 (home-page "https://github.com/mpierrejean/acnr")
19902 (synopsis "Annotated copy-number regions")
19903 (description
19904 "This package provides SNP array data from different types of copy-number
19905 regions. These regions were identified manually by the authors of the package
19906 and may be used to generate realistic data sets with known truth.")
19907 (license license:lgpl2.1+)))
19908
19909 (define-public r-acopula
19910 (package
19911 (name "r-acopula")
19912 (version "0.9.3")
19913 (source
19914 (origin
19915 (method url-fetch)
19916 (uri (cran-uri "acopula" version))
19917 (sha256
19918 (base32
19919 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
19920 (properties `((upstream-name . "acopula")))
19921 (build-system r-build-system)
19922 (home-page "https://cran.r-project.org/web/packages/acopula/")
19923 (synopsis "Modelling dependence with multivariate Archimax copulas")
19924 (description
19925 "Archimax copulas are a mixture of Archimedean and EV copulas. This
19926 package provides definitions of several parametric families of generator and
19927 dependence function, computes CDF and PDF, estimates parameters, tests for
19928 goodness of fit, generates random sample and checks copula properties for
19929 custom constructs. In the 2-dimensional case explicit formulas for density
19930 are used, contrary to higher dimensions when all derivatives are linearly
19931 approximated. Several non-archimax families (normal, FGM, Plackett) are
19932 provided as well.")
19933 (license license:gpl2)))
19934
19935 (define-public r-tuner
19936 (package
19937 (name "r-tuner")
19938 (version "1.3.3")
19939 (source
19940 (origin
19941 (method url-fetch)
19942 (uri (cran-uri "tuneR" version))
19943 (sha256
19944 (base32
19945 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
19946 (properties `((upstream-name . "tuneR")))
19947 (build-system r-build-system)
19948 (propagated-inputs `(("r-signal" ,r-signal)))
19949 (home-page "https://cran.r-project.org/web/packages/tuneR/")
19950 (synopsis "Analysis of music and speech")
19951 (description
19952 "This is a package for the analysis of music and speech. Analyze music
19953 and speech, extract features like MFCCs, handle wave files and their
19954 representation in various ways, read MP3, read MIDI, perform steps of a
19955 transcription, ...")
19956 ;; Either of these versions.
19957 (license (list license:gpl2 license:gpl3))))
19958
19959 (define-public r-seewave
19960 (package
19961 (name "r-seewave")
19962 (version "2.1.6")
19963 (source
19964 (origin
19965 (method url-fetch)
19966 (uri (cran-uri "seewave" version))
19967 (sha256
19968 (base32
19969 "123h3q0gps0vy9sikr7gjphnv9m3l4h4mykiydjllmrpaw1s1844"))))
19970 (properties `((upstream-name . "seewave")))
19971 (build-system r-build-system)
19972 (inputs
19973 `(("libsndfile" ,libsndfile)))
19974 (propagated-inputs
19975 `(("r-tuner" ,r-tuner)))
19976 (home-page "http://rug.mnhn.fr/seewave")
19977 (synopsis "Sound analysis and synthesis")
19978 (description
19979 "This package provides functions for analysing, manipulating, displaying,
19980 editing and synthesizing time waves (particularly sound). This package
19981 processes time analysis (oscillograms and envelopes), spectral content,
19982 resonance quality factor, entropy, cross correlation and autocorrelation,
19983 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
19984 and 3D spectrograms and many other analyses.")
19985 (license license:gpl2+)))
19986
19987 (define-public r-acousticndlcoder
19988 (package
19989 (name "r-acousticndlcoder")
19990 (version "1.0.2")
19991 (source
19992 (origin
19993 (method url-fetch)
19994 (uri (cran-uri "AcousticNDLCodeR" version))
19995 (sha256
19996 (base32
19997 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
19998 (properties
19999 `((upstream-name . "AcousticNDLCodeR")))
20000 (build-system r-build-system)
20001 (propagated-inputs
20002 `(("r-seewave" ,r-seewave)
20003 ("r-tuner" ,r-tuner)
20004 ("r-zoo" ,r-zoo)))
20005 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
20006 (synopsis "Coding sound files for use with NDL")
20007 (description
20008 "Make acoustic cues to use with the R package @code{ndl}.
20009 The package implements functions used in the PLoS ONE paper \"Words from
20010 spontaneous conversational speech can be recognized with human-like accuracy
20011 by an error-driven learning algorithm that discriminates between meanings
20012 straight from smart acoustic features, bypassing the phoneme as recognition
20013 unit.\" @url{doi:10.1371/journal.pone.0174623}")
20014 (license license:gpl2+)))
20015
20016 (define-public r-acp
20017 (package
20018 (name "r-acp")
20019 (version "2.1")
20020 (source
20021 (origin
20022 (method url-fetch)
20023 (uri (cran-uri "acp" version))
20024 (sha256
20025 (base32
20026 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
20027 (properties `((upstream-name . "acp")))
20028 (build-system r-build-system)
20029 (propagated-inputs
20030 `(("r-quantmod" ,r-quantmod)
20031 ("r-tseries" ,r-tseries)))
20032 (home-page "https://cran.r-project.org/web/packages/acp/")
20033 (synopsis "Autoregressive conditional Poisson")
20034 (description
20035 "This package supports the analysis of count data exhibiting
20036 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
20037 model (ACP(p,q)) proposed by Heinen (2003).")
20038 (license license:gpl2)))
20039
20040 (define-public r-ada
20041 (package
20042 (name "r-ada")
20043 (version "2.0-5")
20044 (source
20045 (origin
20046 (method url-fetch)
20047 (uri (cran-uri "ada" version))
20048 (sha256
20049 (base32
20050 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
20051 (properties `((upstream-name . "ada")))
20052 (build-system r-build-system)
20053 (propagated-inputs `(("r-rpart" ,r-rpart)))
20054 (home-page "https://cran.r-project.org/web/packages/ada/")
20055 (synopsis "Stochastic boosting")
20056 (description
20057 "This package provides a straightforward, well-documented, and broad
20058 boosting routine for classification, ideally suited for small to
20059 moderate-sized data sets. It performs discrete, real, and gentle boost under
20060 both exponential and logistic loss on a given data set.")
20061 ;; Any version of the GPL.
20062 (license (list license:gpl2+ license:gpl3+))))
20063
20064 (define-public r-genalg
20065 (package
20066 (name "r-genalg")
20067 (version "0.2.0")
20068 (source
20069 (origin
20070 (method url-fetch)
20071 (uri (cran-uri "genalg" version))
20072 (sha256
20073 (base32
20074 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
20075 (properties `((upstream-name . "genalg")))
20076 (build-system r-build-system)
20077 (home-page "https://github.com/egonw/genalg")
20078 (synopsis "R based genetic algorithm")
20079 (description
20080 "This package provides an R based genetic algorithm for binary and
20081 floating point chromosomes.")
20082 (license license:gpl2)))
20083
20084 (define-public r-kernelfactory
20085 (package
20086 (name "r-kernelfactory")
20087 (version "0.3.0")
20088 (source
20089 (origin
20090 (method url-fetch)
20091 (uri (cran-uri "kernelFactory" version))
20092 (sha256
20093 (base32
20094 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
20095 (properties `((upstream-name . "kernelFactory")))
20096 (build-system r-build-system)
20097 (propagated-inputs
20098 `(("r-auc" ,r-auc)
20099 ("r-genalg" ,r-genalg)
20100 ("r-kernlab" ,r-kernlab)
20101 ("r-randomforest" ,r-randomforest)))
20102 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
20103 (synopsis "Ensemble of kernel machines")
20104 (description
20105 "Kernel factory is an ensemble method where each base classifier (random
20106 forest) is fit on the kernel matrix of a subset of the training data.")
20107 (license license:gpl2+)))
20108
20109 (define-public r-dummies
20110 (package
20111 (name "r-dummies")
20112 (version "1.5.6")
20113 (source
20114 (origin
20115 (method url-fetch)
20116 (uri (cran-uri "dummies" version))
20117 (sha256
20118 (base32
20119 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
20120 (properties `((upstream-name . "dummies")))
20121 (build-system r-build-system)
20122 (home-page "https://decisionpatterns.com")
20123 (synopsis "Create dummy/indicator variables flexibly and efficiently")
20124 (description
20125 "This package lets you expand factors, characters and other eligible
20126 classes into dummy/indicator variables.")
20127 (license license:gpl2+)))
20128
20129 (define-public r-acrm
20130 (package
20131 (name "r-acrm")
20132 (version "0.1.1")
20133 (source
20134 (origin
20135 (method url-fetch)
20136 (uri (cran-uri "aCRM" version))
20137 (sha256
20138 (base32
20139 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
20140 (properties `((upstream-name . "aCRM")))
20141 (build-system r-build-system)
20142 (propagated-inputs
20143 `(("r-ada" ,r-ada)
20144 ("r-dummies" ,r-dummies)
20145 ("r-kernelfactory" ,r-kernelfactory)
20146 ("r-randomforest" ,r-randomforest)))
20147 (home-page "https://cran.r-project.org/web/packages/aCRM/")
20148 (synopsis "Convenience functions for analytical customer relationship management")
20149 (description
20150 "This package provides convenience functions for data preparation and
20151 modeling often used in @dfn{analytical customer relationship
20152 management} (aCRM).")
20153 (license license:gpl2+)))
20154
20155 (define-public r-treeclust
20156 (package
20157 (name "r-treeclust")
20158 (version "1.1-7")
20159 (source
20160 (origin
20161 (method url-fetch)
20162 (uri (cran-uri "treeClust" version))
20163 (sha256
20164 (base32
20165 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
20166 (properties `((upstream-name . "treeClust")))
20167 (build-system r-build-system)
20168 (propagated-inputs
20169 `(("r-cluster" ,r-cluster)
20170 ("r-rpart" ,r-rpart)))
20171 (home-page "https://cran.r-project.org/web/packages/treeClust/")
20172 (synopsis "Cluster distances through trees")
20173 (description
20174 "This package provides tools to create a measure of inter-point
20175 dissimilarity useful for clustering mixed data, and, optionally, perform the
20176 clustering.")
20177 (license license:gpl2+)))
20178
20179 (define-public r-acrosstic
20180 (package
20181 (name "r-acrosstic")
20182 (version "1.0-3")
20183 (source
20184 (origin
20185 (method url-fetch)
20186 (uri (cran-uri "AcrossTic" version))
20187 (sha256
20188 (base32
20189 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
20190 (properties `((upstream-name . "AcrossTic")))
20191 (build-system r-build-system)
20192 (propagated-inputs
20193 `(("r-lpsolve" ,r-lpsolve)
20194 ("r-treeclust" ,r-treeclust)))
20195 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
20196 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
20197 (description
20198 "This is a package for constructing minimum-cost regular spanning
20199 subgraph as part of a non-parametric two-sample test for equality of
20200 distribution.")
20201 (license license:gpl2+)))
20202
20203 (define-public r-acrt
20204 (package
20205 (name "r-acrt")
20206 (version "1.0.1")
20207 (source
20208 (origin
20209 (method url-fetch)
20210 (uri (cran-uri "acrt" version))
20211 (sha256
20212 (base32
20213 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
20214 (properties `((upstream-name . "acrt")))
20215 (build-system r-build-system)
20216 (propagated-inputs
20217 `(("r-rcpp" ,r-rcpp)
20218 ("r-rcppeigen" ,r-rcppeigen)
20219 ("r-sandwich" ,r-sandwich)))
20220 (home-page "https://cran.r-project.org/web/packages/acrt/")
20221 (synopsis "Autocorrelation robust testing")
20222 (description
20223 "This package provides functions for testing affine hypotheses on the
20224 regression coefficient vector in regression models with autocorrelated
20225 errors.")
20226 (license license:gpl2)))
20227
20228 (define-public r-acs
20229 (package
20230 (name "r-acs")
20231 (version "2.1.4")
20232 (source
20233 (origin
20234 (method url-fetch)
20235 (uri (cran-uri "acs" version))
20236 (sha256
20237 (base32
20238 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
20239 (properties `((upstream-name . "acs")))
20240 (build-system r-build-system)
20241 (propagated-inputs
20242 `(("r-httr" ,r-httr)
20243 ("r-plyr" ,r-plyr)
20244 ("r-rcpp" ,r-rcpp)
20245 ("r-stringr" ,r-stringr)
20246 ("r-xml" ,r-xml)))
20247 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
20248 (synopsis "Work with data from the US Census")
20249 (description
20250 "This package provides a general toolkit for downloading, managing,
20251 analyzing, and presenting data from the
20252 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
20253 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
20254 American Community Survey (ACS). Confidence intervals provided with ACS data
20255 are converted to standard errors to be bundled with estimates in complex
20256 @code{acs} objects. The package provides new methods to conduct standard
20257 operations on @code{acs} objects and present/plot data in statistically
20258 appropriate ways.")
20259 (license license:gpl3)))
20260
20261 (define-public r-acss-data
20262 (package
20263 (name "r-acss-data")
20264 (version "1.0")
20265 (source
20266 (origin
20267 (method url-fetch)
20268 (uri (cran-uri "acss.data" version))
20269 (sha256
20270 (base32
20271 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
20272 (properties `((upstream-name . "acss.data")))
20273 (build-system r-build-system)
20274 (home-page "http://complexitycalculator.com/methodology.html")
20275 (synopsis "Data for algorithmic complexity of short strings")
20276 (description
20277 "This is a data only package providing the algorithmic complexity of
20278 short strings, computed using the coding theorem method. For a given set of
20279 symbols in a string, all possible or a large number of random samples of
20280 Turing machines with a given number of states (e.g., 5) and number of symbols
20281 corresponding to the number of symbols in the strings were simulated until
20282 they reached a halting state or failed to end. This package contains data on
20283 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
20284 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
20285 distribution of the halting states.")
20286 (license license:gpl2+)))
20287
20288 (define-public r-acss
20289 (package
20290 (name "r-acss")
20291 (version "0.2-5")
20292 (source
20293 (origin
20294 (method url-fetch)
20295 (uri (cran-uri "acss" version))
20296 (sha256
20297 (base32
20298 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
20299 (properties `((upstream-name . "acss")))
20300 (build-system r-build-system)
20301 (propagated-inputs
20302 `(("r-acss-data" ,r-acss-data)
20303 ("r-zoo" ,r-zoo)))
20304 (home-page "http://complexitycalculator.com/methodology.html")
20305 (synopsis "Algorithmic complexity for short strings")
20306 (description
20307 "The main purpose of this package is to provide the algorithmic
20308 complexity for short strings, an approximation of the Kolmogorov Complexity of
20309 a short string using the coding theorem method. While the database containing
20310 the complexity is provided in the data only package @code{acss.data}, this
20311 package provides functions accessing the data such as @code{prob_random}
20312 returning the posterior probability that a given string was produced by a
20313 random process. In addition, two traditional (but problematic) measures of
20314 complexity are also provided: entropy and change complexity.")
20315 (license license:gpl2+)))
20316
20317 (define-public r-acswr
20318 (package
20319 (name "r-acswr")
20320 (version "1.0")
20321 (source
20322 (origin
20323 (method url-fetch)
20324 (uri (cran-uri "ACSWR" version))
20325 (sha256
20326 (base32
20327 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
20328 (properties `((upstream-name . "ACSWR")))
20329 (build-system r-build-system)
20330 (propagated-inputs
20331 `(("r-mass" ,r-mass)))
20332 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
20333 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
20334 (description
20335 "This is a companion package for the book \"A Course in Statistics with
20336 R\" (ISBN 978-1-119-15272-9.)")
20337 (license license:gpl2)))
20338
20339 (define-public r-alabama
20340 (package
20341 (name "r-alabama")
20342 (version "2015.3-1")
20343 (source
20344 (origin
20345 (method url-fetch)
20346 (uri (cran-uri "alabama" version))
20347 (sha256
20348 (base32
20349 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
20350 (properties `((upstream-name . "alabama")))
20351 (build-system r-build-system)
20352 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
20353 (home-page "https://cran.r-project.org/web/packages/alabama/")
20354 (synopsis "Constrained nonlinear optimization")
20355 (description
20356 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
20357 Algorithm; it is used for optimizing smooth nonlinear objective functions with
20358 constraints. Linear or nonlinear equality and inequality constraints are
20359 allowed.")
20360 (license license:gpl2+)))
20361
20362 (define-public r-gdina
20363 (package
20364 (name "r-gdina")
20365 (version "2.8.0")
20366 (source
20367 (origin
20368 (method url-fetch)
20369 (uri (cran-uri "GDINA" version))
20370 (sha256
20371 (base32
20372 "0chxnhp37xfd78gafkgwqrmc0jf3pvpdyrkc438kl0l53fb7dld7"))))
20373 (properties `((upstream-name . "GDINA")))
20374 (build-system r-build-system)
20375 (propagated-inputs
20376 `(("r-alabama" ,r-alabama)
20377 ("r-ggplot2" ,r-ggplot2)
20378 ("r-mass" ,r-mass)
20379 ("r-nloptr" ,r-nloptr)
20380 ("r-numderiv" ,r-numderiv)
20381 ("r-rcpp" ,r-rcpp)
20382 ("r-rcpparmadillo" ,r-rcpparmadillo)
20383 ("r-rsolnp" ,r-rsolnp)
20384 ("r-shiny" ,r-shiny)
20385 ("r-shinydashboard" ,r-shinydashboard)))
20386 (native-inputs
20387 `(("r-knitr" ,r-knitr)))
20388 (home-page "https://github.com/Wenchao-Ma/GDINA")
20389 (synopsis "Generalized DINA model framework")
20390 (description
20391 "This package provides a set of psychometric tools for cognitive
20392 diagnosis modeling based on the generalized deterministic inputs, noisy and
20393 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
20394 and its extensions, including the sequential G-DINA model by Ma and de la
20395 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
20396 polytomous G-DINA model by Chen and de la Torre
20397 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
20398 distribution can be independent, saturated, higher-order, loglinear smoothed
20399 or structured. Q-matrix validation, item and model fit statistics, model
20400 comparison at test and item level and differential item functioning can also
20401 be conducted. A graphical user interface is also provided.")
20402 (license license:gpl3)))
20403
20404 (define-public r-actcd
20405 (package
20406 (name "r-actcd")
20407 (version "1.2-0")
20408 (source
20409 (origin
20410 (method url-fetch)
20411 (uri (cran-uri "ACTCD" version))
20412 (sha256
20413 (base32
20414 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
20415 (properties `((upstream-name . "ACTCD")))
20416 (build-system r-build-system)
20417 (propagated-inputs
20418 `(("r-gdina" ,r-gdina)
20419 ("r-r-methodss3" ,r-r-methodss3)))
20420 (native-inputs
20421 `(("gfortran" ,gfortran)))
20422 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
20423 (synopsis "Asymptotic classification theory for cognitive diagnosis")
20424 (description
20425 "This is a package supporting cluster analysis for cognitive diagnosis
20426 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
20427 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
20428 sum-scores, cluster analysis techniques can be used to classify examinees into
20429 latent classes based on their attribute patterns. In addition to the
20430 algorithms used to classify data, three labeling approaches are proposed to
20431 label clusters so that examinees' attribute profiles can be obtained.")
20432 (license license:gpl2+)))
20433
20434 (define-public r-ineq
20435 (package
20436 (name "r-ineq")
20437 (version "0.2-13")
20438 (source
20439 (origin
20440 (method url-fetch)
20441 (uri (cran-uri "ineq" version))
20442 (sha256
20443 (base32
20444 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
20445 (properties `((upstream-name . "ineq")))
20446 (build-system r-build-system)
20447 (home-page "https://cran.r-project.org/web/packages/ineq/")
20448 (synopsis "Measuring inequality, concentration, and poverty")
20449 (description
20450 "This package provides tools for measuring inequality, concentration, and
20451 poverty measures. It provides both empirical and theoretical Lorenz curves.")
20452 ;; Either of these two versions.
20453 (license (list license:gpl2 license:gpl3))))
20454
20455 (define-public r-actfrag
20456 (package
20457 (name "r-actfrag")
20458 (version "0.1.1")
20459 (source
20460 (origin
20461 (method url-fetch)
20462 (uri (cran-uri "ActFrag" version))
20463 (sha256
20464 (base32
20465 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
20466 (properties `((upstream-name . "ActFrag")))
20467 (build-system r-build-system)
20468 (propagated-inputs
20469 `(("r-accelerometry" ,r-accelerometry)
20470 ("r-dplyr" ,r-dplyr)
20471 ("r-ineq" ,r-ineq)
20472 ("r-survival" ,r-survival)
20473 ("r-tidyr" ,r-tidyr)))
20474 (home-page "https://github.com/junruidi/ActFrag")
20475 (synopsis "Activity fragmentation metrics extraction")
20476 (description
20477 "This package provides functions to extract commonly used fragmentation
20478 metrics to quantify time accumulation strategies based on minute level
20479 actigraphy-measured activity counts data.")
20480 (license license:gpl3)))
20481
20482 (define-public r-ash
20483 (package
20484 (name "r-ash")
20485 (version "1.0-15")
20486 (source
20487 (origin
20488 (method url-fetch)
20489 (uri (cran-uri "ash" version))
20490 (sha256
20491 (base32
20492 "1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb"))))
20493 (properties `((upstream-name . "ash")))
20494 (build-system r-build-system)
20495 (native-inputs `(("gfortran" ,gfortran)))
20496 (home-page "https://cran.r-project.org/web/packages/ash/")
20497 (synopsis "David Scott's ASH routines")
20498 (description
20499 "This package provides David Scott's ASH routines ported from S-PLUS to
20500 R.")
20501 (license license:gpl2+)))
20502
20503 (define-public r-hdrcde
20504 (package
20505 (name "r-hdrcde")
20506 (version "3.4")
20507 (source
20508 (origin
20509 (method url-fetch)
20510 (uri (cran-uri "hdrcde" version))
20511 (sha256
20512 (base32
20513 "16qlk44cjvn2s0vzaf915df65ksdx20dbxhy7fpdqins46hccha3"))))
20514 (properties `((upstream-name . "hdrcde")))
20515 (build-system r-build-system)
20516 (propagated-inputs
20517 `(("r-ash" ,r-ash)
20518 ("r-ggplot2" ,r-ggplot2)
20519 ("r-kernsmooth" ,r-kernsmooth)
20520 ("r-ks" ,r-ks)
20521 ("r-locfit" ,r-locfit)
20522 ("r-rcolorbrewer" ,r-rcolorbrewer)))
20523 (native-inputs `(("gfortran" ,gfortran)))
20524 (home-page "http://pkg.robjhyndman.com/hdrcde")
20525 (synopsis "Highest density regions and conditional density estimation")
20526 (description
20527 "This is a package for the computation of highest density regions in one
20528 and two dimensions, kernel estimation of univariate density functions
20529 conditional on one covariate, and multimodal regression.")
20530 (license license:gpl3)))
20531
20532 (define-public r-rainbow
20533 (package
20534 (name "r-rainbow")
20535 (version "3.6")
20536 (source
20537 (origin
20538 (method url-fetch)
20539 (uri (cran-uri "rainbow" version))
20540 (sha256
20541 (base32
20542 "11vfcck17d2xjc049ci5i8l1nqv345anmd110gdz7654i1pj9lb3"))))
20543 (properties `((upstream-name . "rainbow")))
20544 (build-system r-build-system)
20545 (propagated-inputs
20546 `(("r-cluster" ,r-cluster)
20547 ("r-colorspace" ,r-colorspace)
20548 ("r-hdrcde" ,r-hdrcde)
20549 ("r-ks" ,r-ks)
20550 ("r-mass" ,r-mass)
20551 ("r-pcapp" ,r-pcapp)))
20552 (home-page "https://cran.r-project.org/web/packages/rainbow/")
20553 (synopsis "Bagplots, boxplots and rainbow plots for functional data")
20554 (description
20555 "This is a package for visualizing functional data and identifying
20556 functional outliers with bagplots, boxplots and rainbow plots.")
20557 (license license:gpl3)))
20558
20559 (define-public r-fds
20560 (package
20561 (name "r-fds")
20562 (version "1.8")
20563 (source
20564 (origin
20565 (method url-fetch)
20566 (uri (cran-uri "fds" version))
20567 (sha256
20568 (base32
20569 "1284vncixrzrz9x6b52gslrbrbia07sd0xac7nwdqhp5f5v5wfi0"))))
20570 (properties `((upstream-name . "fds")))
20571 (build-system r-build-system)
20572 (propagated-inputs
20573 `(("r-rainbow" ,r-rainbow)
20574 ("r-rcurl" ,r-rcurl)))
20575 (home-page "https://cran.r-project.org/web/packages/fds/")
20576 (synopsis "Functional data sets")
20577 (description "This package contains a list of functional time series,
20578 sliced functional time series, and functional data sets. Functional time
20579 series is a special type of functional data observed over time. Sliced
20580 functional time series is a special type of functional time series with a time
20581 variable observed over time.")
20582 (license license:gpl2+)))
20583
20584 (define-public r-fda
20585 (package
20586 (name "r-fda")
20587 (version "5.1.9")
20588 (source
20589 (origin
20590 (method url-fetch)
20591 (uri (cran-uri "fda" version))
20592 (sha256
20593 (base32
20594 "0yjrjsv55bcwqn2yxjgj3hn17wfvjvgngfw9xv3w802i52yz9gf8"))))
20595 (properties `((upstream-name . "fda")))
20596 (build-system r-build-system)
20597 (propagated-inputs
20598 `(("r-fds" ,r-fds)
20599 ("r-matrix" ,r-matrix)))
20600 (home-page "https://www.functionaldata.org")
20601 (synopsis "Functional data analysis")
20602 (description
20603 "These functions were developed to support functional data analysis as
20604 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
20605 Analysis. The package includes data sets and script files working many
20606 examples.")
20607 (license license:gpl2+)))
20608
20609 (define-public r-actigraphy
20610 (package
20611 (name "r-actigraphy")
20612 (version "1.4.0")
20613 (source
20614 (origin
20615 (method url-fetch)
20616 (uri (cran-uri "Actigraphy" version))
20617 (sha256
20618 (base32
20619 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
20620 (properties `((upstream-name . "Actigraphy")))
20621 (build-system r-build-system)
20622 (propagated-inputs
20623 `(("r-fda" ,r-fda)))
20624 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
20625 (synopsis "Actigraphy data analysis")
20626 (description
20627 "This package provides tools for functional linear modeling and analysis
20628 of actigraphy data.")
20629 (license license:asl2.0)))
20630
20631 (define-public r-activedriver
20632 (package
20633 (name "r-activedriver")
20634 (version "1.0.0")
20635 (source
20636 (origin
20637 (method url-fetch)
20638 (uri (cran-uri "ActiveDriver" version))
20639 (sha256
20640 (base32
20641 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
20642 (properties `((upstream-name . "ActiveDriver")))
20643 (build-system r-build-system)
20644 (propagated-inputs
20645 `(("r-mass" ,r-mass)))
20646 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
20647 (synopsis "Tools for finding cancer driver proteins")
20648 (description
20649 "This package provides a mutation analysis tool that discovers cancer
20650 driver genes with frequent mutations in protein signalling sites such as
20651 post-translational modifications (phosphorylation, ubiquitination, etc). The
20652 Poisson generalized linear regression model identifies genes where cancer
20653 mutations in signalling sites are more frequent than expected from the
20654 sequence of the entire gene. Integration of mutations with signalling
20655 information helps find new driver genes and propose candidate mechanisms to
20656 known drivers.")
20657 (license license:gpl2+)))
20658
20659 (define-public r-activitycounts
20660 (package
20661 (name "r-activitycounts")
20662 (version "0.1.2")
20663 (source
20664 (origin
20665 (method url-fetch)
20666 (uri (cran-uri "activityCounts" version))
20667 (sha256
20668 (base32
20669 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
20670 (properties
20671 `((upstream-name . "activityCounts")))
20672 (build-system r-build-system)
20673 (propagated-inputs
20674 `(("r-lubridate" ,r-lubridate)
20675 ("r-magrittr" ,r-magrittr)
20676 ("r-seewave" ,r-seewave)
20677 ("r-signal" ,r-signal)
20678 ("r-tibble" ,r-tibble)))
20679 (home-page "https://github.com/walkabillylab/activityCounts")
20680 (synopsis "Generate ActiLife counts")
20681 (description
20682 "ActiLife generates activity counts from data collected by Actigraph
20683 accelerometers. Actigraph is one of the most common research-grade
20684 accelerometers. There is considerable research validating and developing
20685 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
20686 counts are proprietary and difficult to implement if researchers use different
20687 accelerometer brands. The code creates ActiLife counts from raw acceleration
20688 data for different accelerometer brands.")
20689 (license license:gpl3)))
20690
20691 (define-public r-activityindex
20692 (package
20693 (name "r-activityindex")
20694 (version "0.3.7")
20695 (source
20696 (origin
20697 (method url-fetch)
20698 (uri (cran-uri "ActivityIndex" version))
20699 (sha256
20700 (base32
20701 "1zj2b6x31a1kxl80rarmkrlm7ack4154mrkbqs3fpi48zpmjbgd5"))))
20702 (properties `((upstream-name . "ActivityIndex")))
20703 (build-system r-build-system)
20704 (propagated-inputs
20705 `(("r-data-table" ,r-data-table)
20706 ("r-matrixstats" ,r-matrixstats)
20707 ("r-r-utils" ,r-r-utils)))
20708 (native-inputs
20709 `(("r-knitr" ,r-knitr)))
20710 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
20711 (synopsis "Activity Index calculation using raw accelerometry data")
20712 (description
20713 "This is a package to read raw accelerometry from GT3X+ accelerometry
20714 data and plain table data to calculate the Activity Index from Bai et
20715 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
20716 (license license:gpl3)))
20717
20718 (define-public r-activpal
20719 (package
20720 (name "r-activpal")
20721 (version "0.1.3")
20722 (source
20723 (origin
20724 (method url-fetch)
20725 (uri (cran-uri "activPAL" version))
20726 (sha256
20727 (base32
20728 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
20729 (properties `((upstream-name . "activPAL")))
20730 (build-system r-build-system)
20731 (propagated-inputs
20732 `(("r-devtools" ,r-devtools)
20733 ("r-dplyr" ,r-dplyr)
20734 ("r-ggplot2" ,r-ggplot2)
20735 ("r-lubridate" ,r-lubridate)
20736 ("r-magrittr" ,r-magrittr)
20737 ("r-tidyr" ,r-tidyr)))
20738 (home-page "https://cran.r-project.org/web/packages/activPAL")
20739 (synopsis "Processing and chart generation from activPAL events files")
20740 (description
20741 "This package contains functions to generate pre-defined summary
20742 statistics from activPAL events files. The package also contains functions to
20743 produce informative graphics that visualize physical activity behaviour and
20744 trends. This includes generating graphs that align physical activity
20745 behaviour with additional time based observations described by other data
20746 sets, such as sleep diaries and continuous glucose monitoring data.")
20747 (license license:gpl3)))
20748
20749 (define-public r-activpalprocessing
20750 (package
20751 (name "r-activpalprocessing")
20752 (version "1.0.2")
20753 (source
20754 (origin
20755 (method url-fetch)
20756 (uri (cran-uri "activpalProcessing" version))
20757 (sha256
20758 (base32
20759 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
20760 (properties
20761 `((upstream-name . "activpalProcessing")))
20762 (build-system r-build-system)
20763 (propagated-inputs
20764 `(("r-chron" ,r-chron)))
20765 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
20766 (synopsis "Process activPAL events files")
20767 (description
20768 "This package performs estimation of physical activity and sedentary
20769 behavior variables from activPAL events files.")
20770 ;; Either version of the GPL.
20771 (license (list license:gpl2 license:gpl3))))
20772
20773 (define-public r-actogrammr
20774 (package
20775 (name "r-actogrammr")
20776 (version "0.2.3")
20777 (source
20778 (origin
20779 (method url-fetch)
20780 (uri (cran-uri "actogrammr" version))
20781 (sha256
20782 (base32
20783 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
20784 (properties `((upstream-name . "actogrammr")))
20785 (build-system r-build-system)
20786 (propagated-inputs
20787 `(("r-dplyr" ,r-dplyr)
20788 ("r-ggplot2" ,r-ggplot2)
20789 ("r-lubridate" ,r-lubridate)
20790 ("r-readr" ,r-readr)
20791 ("r-tidyr" ,r-tidyr)))
20792 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
20793 (synopsis "Read in activity data and plot actograms")
20794 (description
20795 "Read in activity measurements from standard file formats used by
20796 circadian rhythm researchers, currently only ClockLab format, and process and
20797 plot the data. The central type of plot is the actogram, as first described
20798 in \"Activity and distribution of certain wild mice in relation to biotic
20799 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
20800 (license license:gpl3)))
20801
20802 (define-public r-expint
20803 (package
20804 (name "r-expint")
20805 (version "0.1-6")
20806 (source
20807 (origin
20808 (method url-fetch)
20809 (uri (cran-uri "expint" version))
20810 (sha256
20811 (base32
20812 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
20813 (properties `((upstream-name . "expint")))
20814 (build-system r-build-system)
20815 (home-page "https://gitlab.com/vigou3/expint")
20816 (synopsis "Exponential integral and incomplete Gamma function")
20817 (description
20818 "This package provides the exponential integrals @code{E_1(x)},
20819 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
20820 function @code{G(a, x)} defined for negative values of its first argument.
20821 The package also gives easy access to the underlying C routines through an
20822 API; see the package vignette for details.")
20823 (license license:gpl2+)))
20824
20825 (define-public r-actuar
20826 (package
20827 (name "r-actuar")
20828 (version "3.1-1")
20829 (source
20830 (origin
20831 (method url-fetch)
20832 (uri (cran-uri "actuar" version))
20833 (sha256
20834 (base32
20835 "0sxn1mskh7x164f1vbrqnadgxnq7y2p3a9mlmqc0sp6cqkw9lhp9"))))
20836 (properties `((upstream-name . "actuar")))
20837 (build-system r-build-system)
20838 (propagated-inputs `(("r-expint" ,r-expint)))
20839 (home-page "https://gitlab.com/vigou3/actuar")
20840 (synopsis "Actuarial functions and heavy tailed distributions")
20841 (description
20842 "This package provides functions and data sets for actuarial science:
20843 modeling of loss distributions; risk theory and ruin theory; simulation of
20844 compound models, discrete mixtures and compound hierarchical models;
20845 credibility theory. It boasts support for many additional probability
20846 distributions to model insurance loss amounts and loss frequency: 19
20847 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
20848 distribution; zero-truncated and zero-modified extensions of the standard
20849 discrete distributions. It also supports phase-type distributions commonly
20850 used to compute ruin probabilities.")
20851 (license license:gpl2+)))
20852
20853 (define-public r-bmp
20854 (package
20855 (name "r-bmp")
20856 (version "0.3")
20857 (source
20858 (origin
20859 (method url-fetch)
20860 (uri (cran-uri "bmp" version))
20861 (sha256
20862 (base32
20863 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
20864 (properties `((upstream-name . "bmp")))
20865 (build-system r-build-system)
20866 (home-page "https://cran.r-project.org/web/packages/bmp/")
20867 (synopsis "Read Bitmap (BMP) images")
20868 (description
20869 "This package provides pure R tools to read BMP format images. It is
20870 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
20871 (license license:gpl2+)))
20872
20873 (define-public r-readbitmap
20874 (package
20875 (name "r-readbitmap")
20876 (version "0.1.5")
20877 (source
20878 (origin
20879 (method url-fetch)
20880 (uri (cran-uri "readbitmap" version))
20881 (sha256
20882 (base32
20883 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
20884 (properties `((upstream-name . "readbitmap")))
20885 (build-system r-build-system)
20886 (inputs
20887 `(("libjpeg" ,libjpeg-turbo)
20888 ("libpng" ,libpng)))
20889 (propagated-inputs
20890 `(("r-bmp" ,r-bmp)
20891 ("r-jpeg" ,r-jpeg)
20892 ("r-png" ,r-png)
20893 ("r-tiff" ,r-tiff)))
20894 (home-page "https://github.com/jefferis/readbitmap")
20895 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
20896 (description
20897 "This package provides tools to identify and read BMP, JPEG, PNG, and
20898 TIFF format bitmap images. Identification defaults to the use of the magic
20899 number embedded in the file rather than the file extension.")
20900 (license license:gpl2+)))
20901
20902 (define-public r-imager
20903 (package
20904 (name "r-imager")
20905 (version "0.42.7")
20906 (source
20907 (origin
20908 (method url-fetch)
20909 (uri (cran-uri "imager" version))
20910 (sha256
20911 (base32
20912 "1dq0rblnrmnk689bcdmml179gk9lff8x92s2npkjllgjq5q2vfpd"))))
20913 (properties `((upstream-name . "imager")))
20914 (build-system r-build-system)
20915 (inputs
20916 `(("fftw" ,fftw)
20917 ("libtiff" ,libtiff)
20918 ("libx11" ,libx11)
20919 ("zlib" ,zlib)))
20920 (propagated-inputs
20921 `(("r-downloader" ,r-downloader)
20922 ("r-igraph" ,r-igraph)
20923 ("r-jpeg" ,r-jpeg)
20924 ("r-magrittr" ,r-magrittr)
20925 ("r-png" ,r-png)
20926 ("r-purrr" ,r-purrr)
20927 ("r-rcpp" ,r-rcpp)
20928 ("r-readbitmap" ,r-readbitmap)
20929 ("r-stringr" ,r-stringr)))
20930 (native-inputs
20931 `(("pkg-config" ,pkg-config)
20932 ("r-knitr" ,r-knitr)))
20933 (home-page "https://dahtah.github.io/imager/")
20934 (synopsis "Image processing library")
20935 (description
20936 "This is a package for fast image processing for images in up to 4
20937 dimensions (two spatial dimensions, one time/depth dimension, one color
20938 dimension). It provides most traditional image processing tools (filtering,
20939 morphology, transformations, etc.) as well as various functions for easily
20940 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
20941 simple, modern C++ library for image processing.")
20942 (license license:lgpl3)))
20943
20944 (define-public r-acuityview
20945 (package
20946 (name "r-acuityview")
20947 (version "0.1")
20948 (source
20949 (origin
20950 (method url-fetch)
20951 (uri (cran-uri "AcuityView" version))
20952 (sha256
20953 (base32
20954 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
20955 (properties `((upstream-name . "AcuityView")))
20956 (build-system r-build-system)
20957 (propagated-inputs
20958 `(("r-fftwtools" ,r-fftwtools)
20959 ("r-imager" ,r-imager)
20960 ("r-plotrix" ,r-plotrix)))
20961 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
20962 (synopsis "Display scenes as seen by an animal with less acute vision")
20963 (description
20964 "This package provides a simple method for representing a visual scene as
20965 it may be seen by an animal with less acute vision.")
20966 (license license:gpl2+)))
20967
20968 (define-public r-caret
20969 (package
20970 (name "r-caret")
20971 (version "6.0-86")
20972 (source
20973 (origin
20974 (method url-fetch)
20975 (uri (cran-uri "caret" version))
20976 (sha256
20977 (base32
20978 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
20979 (build-system r-build-system)
20980 (propagated-inputs
20981 `(("r-foreach" ,r-foreach)
20982 ("r-ggplot2" ,r-ggplot2)
20983 ("r-lattice" ,r-lattice)
20984 ("r-modelmetrics" ,r-modelmetrics)
20985 ("r-nlme" ,r-nlme)
20986 ("r-plyr" ,r-plyr)
20987 ("r-proc" ,r-proc)
20988 ("r-recipes" ,r-recipes)
20989 ("r-reshape2" ,r-reshape2)
20990 ("r-withr" ,r-withr)))
20991 (native-inputs
20992 `(("r-knitr" ,r-knitr)))
20993 (home-page "https://github.com/topepo/caret")
20994 (synopsis "Classification and regression training")
20995 (description
20996 "This package provides miscellaneous functions for training and plotting
20997 classification and regression models.")
20998 (license license:gpl2+)))
20999
21000 (define-public r-adabag
21001 (package
21002 (name "r-adabag")
21003 (version "4.2")
21004 (source
21005 (origin
21006 (method url-fetch)
21007 (uri (cran-uri "adabag" version))
21008 (sha256
21009 (base32
21010 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
21011 (properties `((upstream-name . "adabag")))
21012 (build-system r-build-system)
21013 (propagated-inputs
21014 `(("r-caret" ,r-caret)
21015 ("r-doparallel" ,r-doparallel)
21016 ("r-foreach" ,r-foreach)
21017 ("r-rpart" ,r-rpart)))
21018 (home-page "https://cran.r-project.org/web/packages/adabag/")
21019 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
21020 (description
21021 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
21022 Breiman's Bagging algorithm using classification trees as individual
21023 classifiers. Once these classifiers have been trained, they can be used to
21024 predict on new data. Also, cross validation estimation of the error can be
21025 done.")
21026 (license license:gpl2+)))
21027
21028 (define-public r-adagio
21029 (package
21030 (name "r-adagio")
21031 (version "0.7.1")
21032 (source
21033 (origin
21034 (method url-fetch)
21035 (uri (cran-uri "adagio" version))
21036 (sha256
21037 (base32
21038 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
21039 (properties `((upstream-name . "adagio")))
21040 (build-system r-build-system)
21041 (native-inputs `(("gfortran" ,gfortran)))
21042 (home-page "https://cran.r-project.org/web/packages/adagio/")
21043 (synopsis "Discrete and global optimization routines")
21044 (description
21045 "This package provides methods and algorithms for discrete optimization,
21046 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
21047 Hooke-Jeeves minimization, and some (evolutionary) global optimization
21048 functions.")
21049 (license license:gpl3+)))
21050
21051 (define-public r-univoutl
21052 (package
21053 (name "r-univoutl")
21054 (version "0.2")
21055 (source
21056 (origin
21057 (method url-fetch)
21058 (uri (cran-uri "univOutl" version))
21059 (sha256
21060 (base32
21061 "0rlc3w7cx2hfxacpjs9kmjzv5p8v9wxnlpxi3rh276wiy5zdr91v"))))
21062 (properties `((upstream-name . "univOutl")))
21063 (build-system r-build-system)
21064 (propagated-inputs
21065 `(("r-hmisc" ,r-hmisc)
21066 ("r-robustbase" ,r-robustbase)))
21067 (home-page "https://github.com/marcellodo/univOutl")
21068 (synopsis "Detection of univariate outliers")
21069 (description
21070 "This package provides well-known outlier detection techniques in the
21071 univariate case. Methods to deal with skewed distribution are included too.
21072 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
21073 historical data is implemented as well. When available, survey weights can be
21074 used in outliers detection.")
21075 (license license:gpl2+)))
21076
21077 (define-public r-tolerance
21078 (package
21079 (name "r-tolerance")
21080 (version "2.0.0")
21081 (source
21082 (origin
21083 (method url-fetch)
21084 (uri (cran-uri "tolerance" version))
21085 (sha256
21086 (base32
21087 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
21088 (properties `((upstream-name . "tolerance")))
21089 (build-system r-build-system)
21090 (propagated-inputs
21091 `(("r-mass" ,r-mass)
21092 ("r-rgl" ,r-rgl)))
21093 (home-page "https://cran.r-project.org/web/packages/tolerance/")
21094 (synopsis "Statistical tolerance intervals and regions")
21095 (description
21096 "This package provides functions for estimating tolerance
21097 limits (intervals) for various univariate distributions (binomial, Cauchy,
21098 discrete Pareto, exponential, two-parameter exponential, extreme value,
21099 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
21100 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
21101 Bayesian normal tolerance limits, multivariate normal tolerance regions,
21102 nonparametric tolerance intervals, tolerance bands for regression
21103 settings (linear regression, nonlinear regression, nonparametric regression,
21104 and multivariate regression), and analysis of variance tolerance intervals.
21105 Visualizations are also available for most of these settings.")
21106 (license license:gpl2+)))
21107
21108 (define-public r-additivitytests
21109 (package
21110 (name "r-additivitytests")
21111 (version "1.1-4")
21112 (source
21113 (origin
21114 (method url-fetch)
21115 (uri (cran-uri "additivityTests" version))
21116 (sha256
21117 (base32
21118 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
21119 (properties
21120 `((upstream-name . "additivityTests")))
21121 (build-system r-build-system)
21122 (home-page "https://github.com/simecek/additivityTests")
21123 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
21124 (description
21125 "This package provides an implementation of the Tukey, Mandel,
21126 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
21127 (license license:gpl3)))
21128
21129 (define-public r-flexclust
21130 (package
21131 (name "r-flexclust")
21132 (version "1.4-0")
21133 (source
21134 (origin
21135 (method url-fetch)
21136 (uri (cran-uri "flexclust" version))
21137 (sha256
21138 (base32
21139 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
21140 (properties `((upstream-name . "flexclust")))
21141 (build-system r-build-system)
21142 (propagated-inputs
21143 `(("r-class" ,r-class)
21144 ("r-lattice" ,r-lattice)
21145 ("r-modeltools" ,r-modeltools)))
21146 (home-page "https://cran.r-project.org/web/packages/flexclust/")
21147 (synopsis "Flexible cluster algorithms")
21148 (description
21149 "The main function @code{kcca} implements a general framework for
21150 k-centroids cluster analysis supporting arbitrary distance measures and
21151 centroid computation. Further cluster methods include hard competitive
21152 learning, neural gas, and QT clustering. There are numerous visualization
21153 methods for cluster results (neighborhood graphs, convex cluster hulls,
21154 barcharts of centroids, ...), and bootstrap methods for the analysis of
21155 cluster stability.")
21156 (license license:gpl2)))
21157
21158 (define-public r-biclust
21159 (package
21160 (name "r-biclust")
21161 (version "2.0.2")
21162 (source
21163 (origin
21164 (method url-fetch)
21165 (uri (cran-uri "biclust" version))
21166 (sha256
21167 (base32
21168 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
21169 (properties `((upstream-name . "biclust")))
21170 (build-system r-build-system)
21171 (propagated-inputs
21172 `(("r-additivitytests" ,r-additivitytests)
21173 ("r-colorspace" ,r-colorspace)
21174 ("r-flexclust" ,r-flexclust)
21175 ("r-ggplot2" ,r-ggplot2)
21176 ("r-lattice" ,r-lattice)
21177 ("r-mass" ,r-mass)
21178 ("r-tidyr" ,r-tidyr)))
21179 (home-page "https://cran.r-project.org/web/packages/biclust/")
21180 (synopsis "BiCluster algorithms")
21181 (description
21182 "The main function @code{biclust()} provides several algorithms to find
21183 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
21184 In addition, the package provides methods for data
21185 preprocessing (normalization and discretization), visualization, and
21186 validation of bicluster solutions.")
21187 (license license:gpl3)))
21188
21189 (define-public r-icge
21190 (package
21191 (name "r-icge")
21192 (version "0.3")
21193 (source
21194 (origin
21195 (method url-fetch)
21196 (uri (cran-uri "ICGE" version))
21197 (sha256
21198 (base32
21199 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
21200 (properties `((upstream-name . "ICGE")))
21201 (build-system r-build-system)
21202 (propagated-inputs
21203 `(("r-cluster" ,r-cluster)
21204 ("r-mass" ,r-mass)))
21205 (home-page "https://cran.r-project.org/web/packages/ICGE/")
21206 (synopsis "Cluster estimation and identification of atypical units")
21207 (description
21208 "ICGE is a package that helps to estimate the number of real clusters in
21209 data as well as to identify atypical units. The underlying methods are based
21210 on distances rather than on unit x variables.")
21211 (license license:gpl2+)))
21212
21213 (define-public r-depth
21214 (package
21215 (name "r-depth")
21216 (version "2.1-1.1")
21217 (source
21218 (origin
21219 (method url-fetch)
21220 (uri (cran-uri "depth" version))
21221 (sha256
21222 (base32
21223 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
21224 (properties `((upstream-name . "depth")))
21225 (build-system r-build-system)
21226 (propagated-inputs
21227 `(("r-abind" ,r-abind)
21228 ("r-circular" ,r-circular)
21229 ("r-rgl" ,r-rgl)))
21230 (native-inputs
21231 `(("gfortran" ,gfortran)))
21232 (home-page "https://cran.r-project.org/web/packages/depth/")
21233 (synopsis "Nonparametric depth functions for multivariate analysis")
21234 (description
21235 "This package provides tools for depth functions methodology applied to
21236 multivariate analysis. Besides allowing calculation of depth values and
21237 depth-based location estimators, the package includes functions or drawing
21238 contour plots and perspective plots of depth functions. Euclidean and
21239 spherical depths are supported.")
21240 (license license:gpl2)))
21241
21242 (define-public r-archetypes
21243 (package
21244 (name "r-archetypes")
21245 (version "2.2-0.1")
21246 (source
21247 (origin
21248 (method url-fetch)
21249 (uri (cran-uri "archetypes" version))
21250 (sha256
21251 (base32
21252 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
21253 (properties `((upstream-name . "archetypes")))
21254 (build-system r-build-system)
21255 (propagated-inputs
21256 `(("r-modeltools" ,r-modeltools)
21257 ("r-nnls" ,r-nnls)))
21258 (home-page "https://cran.r-project.org/web/packages/archetypes")
21259 (synopsis "Archetypal analysis")
21260 (description
21261 "The main function @code{archetypes} implements a framework for
21262 archetypal analysis supporting arbitrary problem solving mechanisms for the
21263 different conceptual parts of the algorithm.")
21264 (license license:gpl2+)))
21265
21266 (define-public r-shapes
21267 (package
21268 (name "r-shapes")
21269 (version "1.2.5")
21270 (source
21271 (origin
21272 (method url-fetch)
21273 (uri (cran-uri "shapes" version))
21274 (sha256
21275 (base32
21276 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
21277 (properties `((upstream-name . "shapes")))
21278 (build-system r-build-system)
21279 (propagated-inputs
21280 `(("r-mass" ,r-mass)
21281 ("r-minpack-lm" ,r-minpack-lm)
21282 ("r-rgl" ,r-rgl)
21283 ("r-scatterplot3d" ,r-scatterplot3d)))
21284 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
21285 (synopsis "Statistical shape analysis")
21286 (description
21287 "This package provides routines for the statistical analysis of landmark
21288 shapes, including Procrustes analysis, graphical displays, principal
21289 components analysis, permutation and bootstrap tests, thin-plate spline
21290 transformation grids and comparing covariance matrices. See Dryden, I.L. and
21291 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
21292 Edition), John Wiley and Sons.")
21293 (license license:gpl2)))
21294
21295 (define-public r-anthropometry
21296 (package
21297 (name "r-anthropometry")
21298 (version "1.14")
21299 (source
21300 (origin
21301 (method url-fetch)
21302 (uri (cran-uri "Anthropometry" version))
21303 (sha256
21304 (base32
21305 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
21306 (properties `((upstream-name . "Anthropometry")))
21307 (build-system r-build-system)
21308 (propagated-inputs
21309 `(("r-archetypes" ,r-archetypes)
21310 ("r-biclust" ,r-biclust)
21311 ("r-cluster" ,r-cluster)
21312 ("r-depth" ,r-depth)
21313 ("r-fnn" ,r-fnn)
21314 ("r-icge" ,r-icge)
21315 ("r-nnls" ,r-nnls)
21316 ("r-rgl" ,r-rgl)
21317 ("r-shapes" ,r-shapes)))
21318 (native-inputs
21319 `(("r-knitr" ,r-knitr)))
21320 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
21321 (synopsis "Statistical methods for anthropometric data")
21322 (description
21323 "This package provides statistical methods especially developed to
21324 analyze anthropometric data. These methods are aimed at providing effective
21325 solutions to some commons problems related to Ergonomics and Anthropometry.
21326 They are based on clustering, the statistical concept of data depth,
21327 statistical shape analysis and archetypal analysis.")
21328 (license license:gpl2+)))
21329
21330 (define-public r-adamethods
21331 (package
21332 (name "r-adamethods")
21333 (version "1.2.1")
21334 (source
21335 (origin
21336 (method url-fetch)
21337 (uri (cran-uri "adamethods" version))
21338 (sha256
21339 (base32
21340 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
21341 (properties `((upstream-name . "adamethods")))
21342 (build-system r-build-system)
21343 (propagated-inputs
21344 `(("r-anthropometry" ,r-anthropometry)
21345 ("r-archetypes" ,r-archetypes)
21346 ("r-fnn" ,r-fnn)
21347 ("r-foreach" ,r-foreach)
21348 ("r-nnls" ,r-nnls)
21349 ("r-tolerance" ,r-tolerance)
21350 ("r-univoutl" ,r-univoutl)))
21351 (home-page "https://cran.r-project.org/web/packages/adamethods/")
21352 (synopsis "Archetypoid algorithms and anomaly detection")
21353 (description
21354 "This package is a collection of several algorithms to obtain
21355 archetypoids with small and large databases and with both classical
21356 multivariate data and functional data (univariate and multivariate). Some of
21357 these algorithms also detect anomalies (outliers).")
21358 (license license:gpl2+)))
21359
21360 (define-public r-idpmisc
21361 (package
21362 (name "r-idpmisc")
21363 (version "1.1.20")
21364 (source
21365 (origin
21366 (method url-fetch)
21367 (uri (cran-uri "IDPmisc" version))
21368 (sha256
21369 (base32
21370 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
21371 (properties `((upstream-name . "IDPmisc")))
21372 (build-system r-build-system)
21373 (propagated-inputs
21374 `(("r-lattice" ,r-lattice)))
21375 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
21376 (synopsis "Functions for data analyses and visualization")
21377 (description
21378 "This package provides different high-level graphics functions for
21379 displaying large datasets, displaying circular data in a very flexible way,
21380 finding local maxima, brewing color ramps, drawing nice arrows, zooming
21381 2D-plots, creating figures with differently colored margin and plot region.
21382 In addition, the package contains auxiliary functions for data manipulation
21383 like omitting observations with irregular values or selecting data by logical
21384 vectors, which include NAs. Other functions are especially useful in
21385 spectroscopy and analyses of environmental data: robust baseline fitting,
21386 finding peaks in spectra, converting humidity measures.")
21387 (license license:gpl3+)))
21388
21389 (define-public r-qqman
21390 (package
21391 (name "r-qqman")
21392 (version "0.1.4")
21393 (source
21394 (origin
21395 (method url-fetch)
21396 (uri (cran-uri "qqman" version))
21397 (sha256
21398 (base32
21399 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
21400 (properties `((upstream-name . "qqman")))
21401 (build-system r-build-system)
21402 (propagated-inputs
21403 `(("r-calibrate" ,r-calibrate)))
21404 (home-page "https://cran.r-project.org/web/packages/qqman/")
21405 (synopsis "Q-Q and Manhattan plots for GWAS data")
21406 (description
21407 "This package allows you to create Q-Q and Manhattan plots for GWAS data
21408 from PLINK results.")
21409 (license license:gpl3)))
21410
21411 (define-public r-ggplot-multistats
21412 (package
21413 (name "r-ggplot-multistats")
21414 (version "1.0.0")
21415 (source
21416 (origin
21417 (method url-fetch)
21418 (uri (cran-uri "ggplot.multistats" version))
21419 (sha256
21420 (base32
21421 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
21422 (properties
21423 `((upstream-name . "ggplot.multistats")))
21424 (build-system r-build-system)
21425 (propagated-inputs
21426 `(("r-ggplot2" ,r-ggplot2)
21427 ("r-hexbin" ,r-hexbin)
21428 ("r-rlang" ,r-rlang)
21429 ("r-scales" ,r-scales)))
21430 (home-page "https://github.com/flying-sheep/ggplot.multistats")
21431 (synopsis "Multiple summary statistics for binned stats/geometries")
21432 (description
21433 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
21434 which functions similar to its singular form, but allows the use of multiple
21435 statistics per bin. Those statistics can be mapped to multiple bin
21436 aesthetics.")
21437 (license license:gpl3)))
21438
21439 (define-public r-knn-covertree
21440 (package
21441 (name "r-knn-covertree")
21442 (version "1.0")
21443 (source
21444 (origin
21445 (method url-fetch)
21446 (uri (cran-uri "knn.covertree" version))
21447 (sha256
21448 (base32
21449 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
21450 (properties `((upstream-name . "knn.covertree")))
21451 (build-system r-build-system)
21452 (propagated-inputs
21453 `(("r-matrix" ,r-matrix)
21454 ("r-rcpp" ,r-rcpp)
21455 ("r-rcppeigen" ,r-rcppeigen)))
21456 (home-page "https://github.com/flying-sheep/knn.covertree")
21457 (synopsis "Accurate kNN Implementation with multiple distance measures")
21458 (description
21459 "Similarly to the FNN package, this package allows calculation of the k
21460 nearest neighbors (kNN) of a data matrix. The implementation is based on
21461 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
21462 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
21463 (license license:agpl3+)))
21464
21465 (define-public r-poibin
21466 (package
21467 (name "r-poibin")
21468 (version "1.5")
21469 (source
21470 (origin
21471 (method url-fetch)
21472 (uri (cran-uri "poibin" version))
21473 (sha256
21474 (base32
21475 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
21476 (properties `((upstream-name . "poibin")))
21477 (build-system r-build-system)
21478 (home-page "https://cran.r-project.org/web/packages/poibin/")
21479 (synopsis "Poisson binomial distribution")
21480 (description
21481 "This package provides an implementation of both the exact and
21482 approximation methods for computing the @dfn{cumulative distribution
21483 function} (CDF) of the Poisson binomial distribution. It also provides the
21484 @dfn{probability mass function} (PMF), quantile function, and random number
21485 generation for the Poisson binomial distribution.")
21486 (license license:gpl2)))
21487
21488 (define-public r-diagram
21489 (package
21490 (name "r-diagram")
21491 (version "1.6.5")
21492 (source
21493 (origin
21494 (method url-fetch)
21495 (uri (cran-uri "diagram" version))
21496 (sha256
21497 (base32
21498 "1r3lyl0h7mk9cfg8smr3jydfkjdawaphnxibkxfjqa7029vkxh79"))))
21499 (properties `((upstream-name . "diagram")))
21500 (build-system r-build-system)
21501 (propagated-inputs
21502 `(("r-shape" ,r-shape)))
21503 (home-page "https://cran.r-project.org/web/packages/diagram/")
21504 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
21505 (description
21506 "This package provides tools to visualize simple graphs (networks) based
21507 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
21508 electrical networks, etc. It also includes supporting material for the book
21509 \"A practical guide to ecological modelling - using R as a simulation
21510 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
21511 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
21512 Francesca Mazzia (2012).")
21513 (license license:gpl2+)))
21514
21515 (define-public r-lim
21516 (package
21517 (name "r-lim")
21518 (version "1.4.6")
21519 (source
21520 (origin
21521 (method url-fetch)
21522 (uri (cran-uri "LIM" version))
21523 (sha256
21524 (base32
21525 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
21526 (properties `((upstream-name . "LIM")))
21527 (build-system r-build-system)
21528 (propagated-inputs
21529 `(("r-diagram" ,r-diagram)
21530 ("r-limsolve" ,r-limsolve)))
21531 (home-page "https://cran.r-project.org/web/packages/LIM/")
21532 (synopsis "Linear inverse model examples and solution methods")
21533 (description
21534 "This package provides functions that read and solve linear inverse
21535 problems (food web problems, linear programming problems).")
21536 (license license:gpl2+)))
21537
21538 (define-public r-shinycssloaders
21539 (package
21540 (name "r-shinycssloaders")
21541 (version "1.0.0")
21542 (source
21543 (origin
21544 (method url-fetch)
21545 (uri (cran-uri "shinycssloaders" version))
21546 (sha256
21547 (base32
21548 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
21549 (properties
21550 `((upstream-name . "shinycssloaders")))
21551 (build-system r-build-system)
21552 (propagated-inputs
21553 `(("r-digest" ,r-digest)
21554 ("r-glue" ,r-glue)
21555 ("r-shiny" ,r-shiny)))
21556 (home-page "https://github.com/andrewsali/shinycssloaders")
21557 (synopsis "Add CSS loading animations to Shiny outputs")
21558 (description
21559 "This package provides tools to create a lightweight Shiny wrapper for
21560 the css-loaders created by Luke Hass
21561 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
21562 automatically show a loader when the output is (re)calculating.")
21563 (license license:gpl3)))
21564
21565 (define-public r-rsvg
21566 (package
21567 (name "r-rsvg")
21568 (version "2.1")
21569 (source
21570 (origin
21571 (method url-fetch)
21572 (uri (cran-uri "rsvg" version))
21573 (sha256
21574 (base32
21575 "0bxnwa9sbzx6jlxrzh3ymjq81vkxil2qx7kk7wp13a0cql7dhxcn"))))
21576 (properties `((upstream-name . "rsvg")))
21577 (build-system r-build-system)
21578 (inputs
21579 `(("librsvg" ,librsvg)
21580 ("zlib" ,zlib)))
21581 (native-inputs
21582 `(("pkg-config" ,pkg-config)
21583 ("r-knitr" ,r-knitr)))
21584 (home-page "https://github.com/jeroen/rsvg#readme")
21585 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
21586 (description
21587 "This package allows you to render vector-based SVG images into
21588 high-quality custom-size bitmap arrays using the librsvg2 library. The
21589 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
21590 addition, the package can convert images directly to various formats such as
21591 PDF or PostScript.")
21592 (license license:expat)))
21593
21594 (define-public r-influencer
21595 (package
21596 (name "r-influencer")
21597 (version "0.1.0")
21598 (source
21599 (origin
21600 (method url-fetch)
21601 (uri (cran-uri "influenceR" version))
21602 (sha256
21603 (base32
21604 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
21605 (properties `((upstream-name . "influenceR")))
21606 (build-system r-build-system)
21607 (propagated-inputs
21608 `(("r-igraph" ,r-igraph)
21609 ("r-matrix" ,r-matrix)))
21610 (home-page "https://github.com/rcc-uchicago/influenceR")
21611 (synopsis "Tools to quantify structural importance of nodes in a network")
21612 (description
21613 "This package provides functionality to compute various node centrality
21614 measures on networks. Included are functions to compute betweenness
21615 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
21616 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
21617 algorithm to identify key players, and Valente's bridging metric. The
21618 betweenness, Key Players, and bridging implementations are parallelized with
21619 OpenMP.")
21620 (license license:gpl2)))
21621
21622 (define-public r-emplik
21623 (package
21624 (name "r-emplik")
21625 (version "1.1-1")
21626 (source
21627 (origin
21628 (method url-fetch)
21629 (uri (cran-uri "emplik" version))
21630 (sha256
21631 (base32
21632 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
21633 (properties `((upstream-name . "emplik")))
21634 (build-system r-build-system)
21635 (propagated-inputs
21636 `(("r-quantreg" ,r-quantreg)))
21637 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
21638 (synopsis "Empirical likelihood ratio for censored/truncated data")
21639 (description
21640 "This package provides empirical likelihood ratio tests for
21641 means/quantiles/hazards from possibly censored and/or truncated data. It also
21642 does regression.")
21643 (license license:gpl2+)))
21644
21645 (define-public r-imputeyn
21646 (package
21647 (name "r-imputeyn")
21648 (version "1.3")
21649 (source
21650 (origin
21651 (method url-fetch)
21652 (uri (cran-uri "imputeYn" version))
21653 (sha256
21654 (base32
21655 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
21656 (properties `((upstream-name . "imputeYn")))
21657 (build-system r-build-system)
21658 (propagated-inputs
21659 `(("r-boot" ,r-boot)
21660 ("r-emplik" ,r-emplik)
21661 ("r-mvtnorm" ,r-mvtnorm)
21662 ("r-quadprog" ,r-quadprog)
21663 ("r-survival" ,r-survival)))
21664 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
21665 (synopsis "Impute last largest censored observation under weighted least squares")
21666 (description
21667 "This package allows for the imputation of the last largest censored
21668 observantions. This method brings less bias and more efficient estimates for
21669 AFT models.")
21670 (license license:gpl2)))
21671
21672 (define-public r-adapenetclass
21673 (package
21674 (name "r-adapenetclass")
21675 (version "1.2")
21676 (source
21677 (origin
21678 (method url-fetch)
21679 (uri (cran-uri "AdapEnetClass" version))
21680 (sha256
21681 (base32
21682 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
21683 (properties `((upstream-name . "AdapEnetClass")))
21684 (build-system r-build-system)
21685 (propagated-inputs
21686 `(("r-glmnet" ,r-glmnet)
21687 ("r-imputeyn" ,r-imputeyn)
21688 ("r-lars" ,r-lars)
21689 ("r-quadprog" ,r-quadprog)))
21690 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
21691 (synopsis "Class of adaptive elastic net methods for censored data")
21692 (description
21693 "This package provides methods for variable selection for AFT models.")
21694 (license license:gpl2)))
21695
21696 (define-public r-flock
21697 (package
21698 (name "r-flock")
21699 (version "0.7")
21700 (source
21701 (origin
21702 (method url-fetch)
21703 (uri (cran-uri "flock" version))
21704 (sha256
21705 (base32
21706 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
21707 (properties `((upstream-name . "flock")))
21708 (build-system r-build-system)
21709 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
21710 (home-page "https://cran.r-project.org/web/packages/flock/")
21711 (synopsis "Process synchronization using file locks")
21712 (description
21713 "This package implements synchronization between R processes (spawned by
21714 using the @code{parallel} package for instance) using file locks. It supports
21715 both exclusive and shared locking.")
21716 (license license:asl2.0)))
21717
21718 (define-public r-archivist
21719 (package
21720 (name "r-archivist")
21721 (version "2.3.5")
21722 (source
21723 (origin
21724 (method url-fetch)
21725 (uri (cran-uri "archivist" version))
21726 (sha256
21727 (base32
21728 "0sk16bcafgswrvwh39ysbgm6jvsg20yil4pdsg3wsp81nnsrb43k"))))
21729 (properties `((upstream-name . "archivist")))
21730 (build-system r-build-system)
21731 (propagated-inputs
21732 `(("r-dbi" ,r-dbi)
21733 ("r-digest" ,r-digest)
21734 ("r-flock" ,r-flock)
21735 ("r-httr" ,r-httr)
21736 ("r-lubridate" ,r-lubridate)
21737 ("r-magrittr" ,r-magrittr)
21738 ("r-rcurl" ,r-rcurl)
21739 ("r-rsqlite" ,r-rsqlite)))
21740 (native-inputs
21741 `(("r-knitr" ,r-knitr)))
21742 (home-page "https://pbiecek.github.io/archivist/")
21743 (synopsis "Tools for storing, restoring and searching for R objects")
21744 (description
21745 "Data exploration and modelling is a process in which a lot of data
21746 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
21747 statistical models, different versions of data sets and different versions of
21748 results. Archivist helps to store and manage artifacts created in R. It
21749 allows you to store selected artifacts as binary files together with their
21750 metadata and relations. Archivist allows sharing artifacts with others. It
21751 can look for already created artifacts by using its class, name, date of the
21752 creation or other properties. It also makes it easy to restore such
21753 artifacts.")
21754 (license license:gpl2)))
21755
21756 (define-public r-versions
21757 (package
21758 (name "r-versions")
21759 (version "0.3")
21760 (source
21761 (origin
21762 (method url-fetch)
21763 (uri (cran-uri "versions" version))
21764 (sha256
21765 (base32
21766 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
21767 (properties `((upstream-name . "versions")))
21768 (build-system r-build-system)
21769 (home-page "https://cran.r-project.org/web/packages/versions/")
21770 (synopsis "Query and install specific versions of CRAN packages")
21771 (description
21772 "This package allows you to install specified versions of R packages
21773 hosted on CRAN and provides functions to list available versions and the
21774 versions of currently installed packages.")
21775 (license license:bsd-3)))
21776
21777 (define-public r-adapr
21778 (package
21779 (name "r-adapr")
21780 (version "2.0.0")
21781 (source
21782 (origin
21783 (method url-fetch)
21784 (uri (cran-uri "adapr" version))
21785 (sha256
21786 (base32
21787 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
21788 (properties `((upstream-name . "adapr")))
21789 (build-system r-build-system)
21790 (propagated-inputs
21791 `(("r-archivist" ,r-archivist)
21792 ("r-devtools" ,r-devtools)
21793 ("r-digest" ,r-digest)
21794 ("r-doparallel" ,r-doparallel)
21795 ("r-gdata" ,r-gdata)
21796 ("r-ggplot2" ,r-ggplot2)
21797 ("r-git2r" ,r-git2r)
21798 ("r-igraph" ,r-igraph)
21799 ("r-knitr" ,r-knitr)
21800 ("r-plotly" ,r-plotly)
21801 ("r-plyr" ,r-plyr)
21802 ("r-rmarkdown" ,r-rmarkdown)
21803 ("r-shiny" ,r-shiny)
21804 ("r-shinydashboard" ,r-shinydashboard)
21805 ("r-versions" ,r-versions)))
21806 (home-page "https://cran.r-project.org/web/packages/adapr/")
21807 (synopsis "Implementation of an accountable data analysis process")
21808 (description
21809 "This package tracks reading and writing within R scripts that are
21810 organized into a directed acyclic graph. It contains an interactive Shiny
21811 application @code{adaprApp()}. It uses Git and file hashes to track version
21812 histories of inputs and outputs.")
21813 (license license:lgpl2.0)))
21814
21815 (define-public r-adapsamp
21816 (package
21817 (name "r-adapsamp")
21818 (version "1.1.1")
21819 (source
21820 (origin
21821 (method url-fetch)
21822 (uri (cran-uri "AdapSamp" version))
21823 (sha256
21824 (base32
21825 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
21826 (properties `((upstream-name . "AdapSamp")))
21827 (build-system r-build-system)
21828 (propagated-inputs `(("r-pracma" ,r-pracma)))
21829 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
21830 (synopsis "Adaptive sampling algorithms")
21831 (description
21832 "For distributions whose probability density functions are log-concave,
21833 the adaptive rejection sampling algorithm can be used to build envelope
21834 functions for sampling. For others, the modified adaptive rejection sampling
21835 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
21836 adaptive slice sampling algorithm can be used. This R package mainly includes
21837 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
21838 @code{rASS()}. These functions can realize sampling based on the algorithms
21839 above.")
21840 (license license:gpl2)))
21841
21842 (define-public r-adaptalint
21843 (package
21844 (name "r-adaptalint")
21845 (version "0.2.4")
21846 (source
21847 (origin
21848 (method url-fetch)
21849 (uri (cran-uri "adaptalint" version))
21850 (sha256
21851 (base32
21852 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
21853 (properties `((upstream-name . "adaptalint")))
21854 (build-system r-build-system)
21855 (propagated-inputs
21856 `(("r-dplyr" ,r-dplyr)
21857 ("r-lintr" ,r-lintr)
21858 ("r-purrr" ,r-purrr)))
21859 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
21860 (synopsis "Check R code style")
21861 (description
21862 "This package provides tools to infer the code style (which style rules
21863 are followed and which ones are not) from one package and use it to check
21864 another. This makes it easier to find and correct the most important problems
21865 first.")
21866 (license license:gpl3)))
21867
21868 (define-public r-fracdiff
21869 (package
21870 (name "r-fracdiff")
21871 (version "1.5-1")
21872 (source
21873 (origin
21874 (method url-fetch)
21875 (uri (cran-uri "fracdiff" version))
21876 (sha256
21877 (base32
21878 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
21879 (properties `((upstream-name . "fracdiff")))
21880 (build-system r-build-system)
21881 (home-page "https://github.com/mmaechler/fracdiff")
21882 (synopsis
21883 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
21884 (description
21885 "This package provides tools for the maximum likelihood estimation of the
21886 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
21887 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
21888 (license license:gpl2+)))
21889
21890 (define-public r-forecast
21891 (package
21892 (name "r-forecast")
21893 (version "8.13")
21894 (source
21895 (origin
21896 (method url-fetch)
21897 (uri (cran-uri "forecast" version))
21898 (sha256
21899 (base32
21900 "0vrql5d4v28890np2m6ws1nr1fcl6frs1bz74vfkihkixcmkl3j9"))))
21901 (properties `((upstream-name . "forecast")))
21902 (build-system r-build-system)
21903 (propagated-inputs
21904 `(("r-colorspace" ,r-colorspace)
21905 ("r-fracdiff" ,r-fracdiff)
21906 ("r-ggplot2" ,r-ggplot2)
21907 ("r-lmtest" ,r-lmtest)
21908 ("r-magrittr" ,r-magrittr)
21909 ("r-nnet" ,r-nnet)
21910 ("r-rcpp" ,r-rcpp)
21911 ("r-rcpparmadillo" ,r-rcpparmadillo)
21912 ("r-timedate" ,r-timedate)
21913 ("r-tseries" ,r-tseries)
21914 ("r-urca" ,r-urca)
21915 ("r-zoo" ,r-zoo)))
21916 (native-inputs
21917 `(("r-knitr" ,r-knitr))) ; needed for vignettes
21918 (home-page "https://pkg.robjhyndman.com/forecast/")
21919 (synopsis "Forecasting functions for time series and linear models")
21920 (description
21921 "This package provides methods and tools for displaying and analysing
21922 univariate time series forecasts including exponential smoothing via state
21923 space models and automatic ARIMA modelling.")
21924 (license license:gpl3)))
21925
21926 (define-public r-xmisc
21927 (package
21928 (name "r-xmisc")
21929 (version "0.2.1")
21930 (source
21931 (origin
21932 (method url-fetch)
21933 (uri (cran-uri "Xmisc" version))
21934 (sha256
21935 (base32
21936 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
21937 (properties `((upstream-name . "Xmisc")))
21938 (build-system r-build-system)
21939 (home-page "https://cran.r-project.org/package=Xmisc")
21940 (synopsis
21941 "Xiaobei's miscellaneous classes and functions")
21942 (description
21943 "This package provides Xiaobei's miscellaneous classes and functions,
21944 which are useful when developing R packages for @dfn{object oriented
21945 programming} (OOP) using R Reference Class.")
21946 (license license:gpl2+)))
21947
21948 (define-public r-proxyc
21949 (package
21950 (name "r-proxyc")
21951 (version "0.1.5")
21952 (source
21953 (origin
21954 (method url-fetch)
21955 (uri (cran-uri "proxyC" version))
21956 (sha256
21957 (base32
21958 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
21959 (properties `((upstream-name . "proxyC")))
21960 (build-system r-build-system)
21961 (propagated-inputs
21962 `(("r-matrix" ,r-matrix)
21963 ("r-rcpp" ,r-rcpp)
21964 ("r-rcpparmadillo" ,r-rcpparmadillo)
21965 ("r-rcppparallel" ,r-rcppparallel)))
21966 (home-page "https://cran.r-project.org/package=proxyC")
21967 (synopsis "Compute proximity in large sparse matrices")
21968 (description
21969 "This package provides efficient tools to compute the proximity between
21970 rows or columns of large matrices. Functions are optimised for large sparse
21971 matrices using the Armadillo and Intel TBB libraries. Among several built-in
21972 similarity/distance measures, computation of correlation, cosine similarity
21973 and Euclidean distance is particularly fast.")
21974 (license license:gpl3)))
21975
21976 (define-public r-isocodes
21977 (package
21978 (name "r-isocodes")
21979 (version "2021.02.24")
21980 (source
21981 (origin
21982 (method url-fetch)
21983 (uri (cran-uri "ISOcodes" version))
21984 (sha256
21985 (base32
21986 "19irnn2yi1bzhf03g666la84kj8040f5913kfrmd16dfnjy6j9qm"))))
21987 (properties `((upstream-name . "ISOcodes")))
21988 (build-system r-build-system)
21989 (home-page "https://cran.r-project.org/package=ISOcodes")
21990 (synopsis "Selected ISO codes")
21991 (description
21992 "This package provides ISO language, territory, currency, script and
21993 character codes. It provides ISO 639 language codes, ISO 3166 territory
21994 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
21995 character codes as well as the UN M.49 area codes.")
21996 (license license:gpl2)))
21997
21998 (define-public r-stopwords
21999 (package
22000 (name "r-stopwords")
22001 (version "2.2")
22002 (source
22003 (origin
22004 (method url-fetch)
22005 (uri (cran-uri "stopwords" version))
22006 (sha256
22007 (base32
22008 "1f862y30c4r0phamlp7shzkpxg0vh3i410xy0336w310hv3wqsxn"))))
22009 (properties `((upstream-name . "stopwords")))
22010 (build-system r-build-system)
22011 (propagated-inputs
22012 `(("r-isocodes" ,r-isocodes)))
22013 (home-page "https://github.com/quanteda/stopwords")
22014 (synopsis "Multilingual stopword lists")
22015 (description
22016 "This package provides multiple sources of stopwords, for use in text
22017 analysis and natural language processing.")
22018 (license license:expat)))
22019
22020 (define-public r-spacyr
22021 (package
22022 (name "r-spacyr")
22023 (version "1.2.1")
22024 (source
22025 (origin
22026 (method url-fetch)
22027 (uri (cran-uri "spacyr" version))
22028 (sha256
22029 (base32
22030 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
22031 (properties `((upstream-name . "spacyr")))
22032 (build-system r-build-system)
22033 (propagated-inputs
22034 `(("r-data-table" ,r-data-table)
22035 ("r-reticulate" ,r-reticulate)))
22036 (home-page "https://spacyr.quanteda.io")
22037 (synopsis "R wrapper for the spaCy NLP library")
22038 (description
22039 "This package provides an R wrapper to the Python @dfn{natural language
22040 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
22041 (license license:gpl3)))
22042
22043 (define-public r-snowballc
22044 (package
22045 (name "r-snowballc")
22046 (version "0.7.0")
22047 (source
22048 (origin
22049 (method url-fetch)
22050 (uri (cran-uri "SnowballC" version))
22051 (sha256
22052 (base32
22053 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
22054 (properties `((upstream-name . "SnowballC")))
22055 (build-system r-build-system)
22056 (home-page "https://r-forge.r-project.org/projects/r-temis/")
22057 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
22058 (description
22059 "This package provides an R interface to the C @code{libstemmer} library
22060 that implements Porter's word stemming algorithm for collapsing words to a
22061 common root to aid comparison of vocabulary. Currently supported languages
22062 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
22063 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
22064 (license license:bsd-3)))
22065
22066 (define-public r-quanteda
22067 (package
22068 (name "r-quanteda")
22069 (version "2.1.2")
22070 (source
22071 (origin
22072 (method url-fetch)
22073 (uri (cran-uri "quanteda" version))
22074 (sha256
22075 (base32
22076 "13rjwgmg5v1dbryrs9ifyy76s5ib6wrbrm2y5af44vhf1h6p9cvy"))))
22077 (properties `((upstream-name . "quanteda")))
22078 (build-system r-build-system)
22079 (propagated-inputs
22080 `(("r-data-table" ,r-data-table)
22081 ("r-digest" ,r-digest)
22082 ("r-extrafont" ,r-extrafont)
22083 ("r-fastmatch" ,r-fastmatch)
22084 ("r-ggplot2" ,r-ggplot2)
22085 ("r-ggrepel" ,r-ggrepel)
22086 ("r-jsonlite" ,r-jsonlite)
22087 ("r-magrittr" ,r-magrittr)
22088 ("r-matrix" ,r-matrix)
22089 ("r-network" ,r-network)
22090 ("r-proxyc" ,r-proxyc)
22091 ("r-rcpp" ,r-rcpp)
22092 ("r-rcpparmadillo" ,r-rcpparmadillo)
22093 ("r-rcppparallel" ,r-rcppparallel)
22094 ("r-sna" ,r-sna)
22095 ("r-snowballc" ,r-snowballc)
22096 ("r-stopwords" ,r-stopwords)
22097 ("r-stringi" ,r-stringi)
22098 ("r-xml2" ,r-xml2)
22099 ("r-yaml" ,r-yaml)))
22100 (native-inputs
22101 `(("r-knitr" ,r-knitr)))
22102 (home-page "https://quanteda.io")
22103 (synopsis "Quantitative analysis of textual data")
22104 (description
22105 "This package provides a fast, flexible, and comprehensive framework for
22106 quantitative text analysis in R. It provides functionality for corpus
22107 management, creating and manipulating tokens and ngrams, exploring keywords in
22108 context, forming and manipulating sparse matrices of documents by features and
22109 feature co-occurrences, analyzing keywords, computing feature similarities and
22110 distances, applying content dictionaries, applying supervised and unsupervised
22111 machine learning, visually representing text and text analyses, and more.")
22112 (license license:gpl3)))
22113
22114 (define-public r-topicmodels
22115 (package
22116 (name "r-topicmodels")
22117 (version "0.2-12")
22118 (source
22119 (origin
22120 (method url-fetch)
22121 (uri (cran-uri "topicmodels" version))
22122 (sha256
22123 (base32
22124 "1d6iizmn042b59q2y6qc82z19wq3xm0zvgkf8iqf8fdzh51kmn5g"))))
22125 (properties `((upstream-name . "topicmodels")))
22126 (build-system r-build-system)
22127 (inputs
22128 `(("gsl" ,gsl)))
22129 (propagated-inputs
22130 `(("r-modeltools" ,r-modeltools)
22131 ("r-slam" ,r-slam)
22132 ("r-tm" ,r-tm)))
22133 (home-page "https://cran.r-project.org/package=topicmodels")
22134 (synopsis "Topic models")
22135 (description
22136 "This package provides an interface to the C code for @dfn{Latent
22137 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
22138 David M. Blei and co-authors and the C++ code for fitting LDA models using
22139 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
22140 (license license:gpl2)))
22141
22142 (define-public r-stm
22143 (package
22144 (name "r-stm")
22145 (version "1.3.6")
22146 (source
22147 (origin
22148 (method url-fetch)
22149 (uri (cran-uri "stm" version))
22150 (sha256
22151 (base32
22152 "0qwq4nin2n9fjd06852r8k7arvcgh46kcfb3lm21swgx6j8bgrhb"))))
22153 (properties `((upstream-name . "stm")))
22154 (build-system r-build-system)
22155 (propagated-inputs
22156 `(("r-data-table" ,r-data-table)
22157 ("r-glmnet" ,r-glmnet)
22158 ("r-lda" ,r-lda)
22159 ("r-matrix" ,r-matrix)
22160 ("r-matrixstats" ,r-matrixstats)
22161 ("r-quadprog" ,r-quadprog)
22162 ("r-quanteda" ,r-quanteda)
22163 ("r-rcpp" ,r-rcpp)
22164 ("r-rcpparmadillo" ,r-rcpparmadillo)
22165 ("r-slam" ,r-slam)
22166 ("r-stringr" ,r-stringr)))
22167 (home-page "http://www.structuraltopicmodel.com/")
22168 (synopsis "Estimation of the Structural Topic Model")
22169 (description
22170 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
22171 topic models with document-level covariates. The package also includes tools
22172 for model selection, visualization, and estimation of topic-covariate
22173 regressions.")
22174 (license license:expat)))
22175
22176 (define-public r-polycor
22177 (package
22178 (name "r-polycor")
22179 (version "0.7-10")
22180 (source
22181 (origin
22182 (method url-fetch)
22183 (uri (cran-uri "polycor" version))
22184 (sha256
22185 (base32
22186 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
22187 (properties `((upstream-name . "polycor")))
22188 (build-system r-build-system)
22189 (propagated-inputs
22190 `(("r-matrix" ,r-matrix)
22191 ("r-mvtnorm" ,r-mvtnorm)))
22192 (home-page "https://r-forge.r-project.org/projects/polycor/")
22193 (synopsis "Polychoric and polyserial correlations")
22194 (description
22195 "This package provides tools to compute polychoric and polyserial
22196 correlations by quick \"two-step\" methods or ML, optionally with standard
22197 errors; tetrachoric and biserial correlations are special cases.")
22198 (license license:gpl2+)))
22199
22200 (define-public r-msm
22201 (package
22202 (name "r-msm")
22203 (version "1.6.8")
22204 (source
22205 (origin
22206 (method url-fetch)
22207 (uri (cran-uri "msm" version))
22208 (sha256
22209 (base32
22210 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
22211 (properties `((upstream-name . "msm")))
22212 (build-system r-build-system)
22213 (propagated-inputs
22214 `(("r-expm" ,r-expm)
22215 ("r-mvtnorm" ,r-mvtnorm)
22216 ("r-survival" ,r-survival)))
22217 (home-page "https://github.com/chjackson/msm")
22218 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
22219 (description
22220 "This package provides functions for fitting continuous-time Markov and
22221 hidden Markov multi-state models to longitudinal data. It was designed for
22222 processes observed at arbitrary times in continuous time (panel data) but some
22223 other observation schemes are supported. Both Markov transition rates and the
22224 hidden Markov output process can be modelled in terms of covariates, which may
22225 be constant or piecewise-constant in time.")
22226 (license license:gpl2+)))
22227
22228 (define-public r-ltm
22229 (package
22230 (name "r-ltm")
22231 (version "1.1-1")
22232 (source
22233 (origin
22234 (method url-fetch)
22235 (uri (cran-uri "ltm" version))
22236 (sha256
22237 (base32
22238 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
22239 (properties `((upstream-name . "ltm")))
22240 (build-system r-build-system)
22241 (propagated-inputs
22242 `(("r-mass" ,r-mass)
22243 ("r-msm" ,r-msm)
22244 ("r-polycor" ,r-polycor)))
22245 (home-page "https://github.com/drizopoulos/ltm")
22246 (synopsis "Latent trait models under IRT")
22247 (description
22248 "This is a package supporting the analysis of multivariate dichotomous
22249 and polytomous data using latent trait models under the Item Response Theory
22250 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
22251 Three-Parameter, the Graded Response, and the Generalized Partial Credit
22252 Models.")
22253 (license license:gpl2+)))
22254
22255 (define-public r-mi
22256 (package
22257 (name "r-mi")
22258 (version "1.0")
22259 (source
22260 (origin
22261 (method url-fetch)
22262 (uri (cran-uri "mi" version))
22263 (sha256
22264 (base32
22265 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
22266 (properties `((upstream-name . "mi")))
22267 (build-system r-build-system)
22268 (propagated-inputs
22269 `(("r-arm" ,r-arm)
22270 ("r-matrix" ,r-matrix)))
22271 (home-page "http://www.stat.columbia.edu/~gelman/")
22272 (synopsis "Missing data imputation and model checking")
22273 (description
22274 "This package provides functions for data manipulation, imputing missing
22275 values in an approximate Bayesian framework, diagnostics of the models used to
22276 generate the imputations, confidence-building mechanisms to validate some of
22277 the assumptions of the imputation algorithm, and functions to analyze multiply
22278 imputed data sets with the appropriate degree of sampling uncertainty.")
22279 (license license:gpl2+)))
22280
22281 (define-public r-matrixcalc
22282 (package
22283 (name "r-matrixcalc")
22284 (version "1.0-3")
22285 (source
22286 (origin
22287 (method url-fetch)
22288 (uri (cran-uri "matrixcalc" version))
22289 (sha256
22290 (base32
22291 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
22292 (properties `((upstream-name . "matrixcalc")))
22293 (build-system r-build-system)
22294 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
22295 (synopsis "Collection of functions for matrix calculations")
22296 (description
22297 "This package provides a collection of functions to support matrix
22298 calculations for probability, econometric and numerical analysis. There are
22299 additional functions that are comparable to APL functions which are useful for
22300 actuarial models such as pension mathematics.")
22301 (license license:gpl2+)))
22302
22303 (define-public r-sem
22304 (package
22305 (name "r-sem")
22306 (version "3.1-11")
22307 (source
22308 (origin
22309 (method url-fetch)
22310 (uri (cran-uri "sem" version))
22311 (sha256
22312 (base32
22313 "03j3ig6fy34pi6nwfq9w8f5m555lilw5skr1vn6ay4yvjmvavc9k"))))
22314 (properties `((upstream-name . "sem")))
22315 (build-system r-build-system)
22316 (propagated-inputs
22317 `(("r-boot" ,r-boot)
22318 ("r-mass" ,r-mass)
22319 ("r-matrixcalc" ,r-matrixcalc)
22320 ("r-mi" ,r-mi)))
22321 (home-page "https://cran.r-project.org/package=sem")
22322 (synopsis "Structural equation models")
22323 (description
22324 "This package provides functions for fitting general linear structural
22325 equation models (with observed and latent variables) using the RAM approach,
22326 and for fitting structural equations in observed-variable models by two-stage
22327 least squares.")
22328 (license license:gpl2+)))
22329
22330 (define-public r-semtools
22331 (package
22332 (name "r-semtools")
22333 (version "0.5-4")
22334 (source
22335 (origin
22336 (method url-fetch)
22337 (uri (cran-uri "semTools" version))
22338 (sha256
22339 (base32
22340 "15kban4ds2mssxqslm126b89p8biya14c9m68sqk61vzvx5dm2vq"))))
22341 (properties `((upstream-name . "semTools")))
22342 (build-system r-build-system)
22343 (propagated-inputs
22344 `(("r-lavaan" ,r-lavaan)))
22345 (home-page "https://github.com/simsem/semTools/wiki")
22346 (synopsis "Useful tools for structural equation modeling")
22347 (description
22348 "This package provides useful tools for structural equation modeling.")
22349 (license license:gpl2+)))
22350
22351 (define-public r-regsem
22352 (package
22353 (name "r-regsem")
22354 (version "1.6.2")
22355 (source
22356 (origin
22357 (method url-fetch)
22358 (uri (cran-uri "regsem" version))
22359 (sha256
22360 (base32
22361 "14nrzyrkrijdrr4jwkri5zra2wh36w68wy6xs600l2z1633h2lmn"))))
22362 (properties `((upstream-name . "regsem")))
22363 (build-system r-build-system)
22364 (propagated-inputs
22365 `(("r-lavaan" ,r-lavaan)
22366 ("r-rcpp" ,r-rcpp)
22367 ("r-rcpparmadillo" ,r-rcpparmadillo)
22368 ("r-rsolnp" ,r-rsolnp)))
22369 (native-inputs
22370 `(("r-knitr" ,r-knitr)))
22371 (home-page "https://cran.r-project.org/package=regsem")
22372 (synopsis "Regularized structural equation modeling")
22373 (description
22374 "This package uses both ridge and lasso penalties (and extensions) to
22375 penalize specific parameters in structural equation models. The package
22376 offers additional cost functions, cross validation, and other extensions
22377 beyond traditional structural equation models. It also contains a function to
22378 perform @dfn{exploratory mediation} (XMed).")
22379 (license license:gpl2+)))
22380
22381 (define-public r-stanheaders
22382 (package
22383 (name "r-stanheaders")
22384 (version "2.21.0-7")
22385 (source
22386 (origin
22387 (method url-fetch)
22388 (uri (cran-uri "StanHeaders" version))
22389 (sha256
22390 (base32
22391 "0srkyawyiykn3p5lw1z3zf18s4ax4iasv1ci3l1px40f9w36wm17"))))
22392 (properties `((upstream-name . "StanHeaders")))
22393 (build-system r-build-system)
22394 (inputs `(("pandoc" ,pandoc)))
22395 (propagated-inputs
22396 `(("r-rcppeigen" ,r-rcppeigen)
22397 ("r-rcppparallel" ,r-rcppparallel)))
22398 (native-inputs
22399 `(("gfortran" ,gfortran)
22400 ("r-knitr" ,r-knitr))) ; for vignettes
22401 (home-page "https://mc-stan.org/")
22402 (synopsis "C++ header files for Stan")
22403 (description
22404 "The C++ header files of the Stan project are provided by this package.
22405 There is a shared object containing part of the @code{CVODES} library, but it
22406 is not accessible from R. @code{r-stanheaders} is only useful for developers
22407 who want to utilize the @code{LinkingTo} directive of their package's
22408 DESCRIPTION file to build on the Stan library without incurring unnecessary
22409 dependencies.
22410
22411 The Stan project develops a probabilistic programming language that implements
22412 full or approximate Bayesian statistical inference via Markov Chain Monte
22413 Carlo or variational methods and implements (optionally penalized) maximum
22414 likelihood estimation via optimization. The Stan library includes an advanced
22415 automatic differentiation scheme, templated statistical and linear algebra
22416 functions that can handle the automatically differentiable scalar types (and
22417 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
22418 package provides user-facing R functions to parse, compile, test, estimate,
22419 and analyze Stan models.")
22420 (license license:bsd-3)))
22421
22422 (define-public r-rpf
22423 (package
22424 (name "r-rpf")
22425 (version "1.0.5")
22426 (source
22427 (origin
22428 (method url-fetch)
22429 (uri (cran-uri "rpf" version))
22430 (sha256
22431 (base32
22432 "0kz7i7g3l16irz6bxgnkxdmmd931m1fk6rl72dvs21ir5brr010l"))))
22433 (properties `((upstream-name . "rpf")))
22434 (build-system r-build-system)
22435 (propagated-inputs
22436 `(("r-lifecycle" ,r-lifecycle)
22437 ("r-mvtnorm" ,r-mvtnorm)
22438 ("r-rcpp" ,r-rcpp)
22439 ("r-rcppeigen" ,r-rcppeigen)))
22440 (native-inputs
22441 `(("r-knitr" ,r-knitr)))
22442 (home-page "https://github.com/jpritikin/rpf")
22443 (synopsis "Response probability functions")
22444 (description
22445 "The purpose of this package is to factor out logic and math common to
22446 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
22447 core support code suitable for more specialized IRT packages to build upon.
22448 Complete access to optimized C functions is made available with
22449 @code{R_RegisterCCallable()}.")
22450 (license license:gpl3+)))
22451
22452 (define-public r-openmx
22453 (package
22454 (name "r-openmx")
22455 (version "2.19.1")
22456 (source
22457 (origin
22458 (method url-fetch)
22459 (uri (cran-uri "OpenMx" version))
22460 (sha256
22461 (base32
22462 "0fbndmwb3krypsavgm3blqkhh8blmi3p186yxmvgv3a9m6r154rj"))))
22463 (properties `((upstream-name . "OpenMx")))
22464 (build-system r-build-system)
22465 (propagated-inputs
22466 `(("r-bh" ,r-bh)
22467 ("r-digest" ,r-digest)
22468 ("r-lifecycle" ,r-lifecycle)
22469 ("r-mass" ,r-mass)
22470 ("r-matrix" ,r-matrix)
22471 ("r-rcpp" ,r-rcpp)
22472 ("r-rcppeigen" ,r-rcppeigen)
22473 ("r-rpf" ,r-rpf)
22474 ("r-stanheaders" ,r-stanheaders)))
22475 (native-inputs `(("gfortran" ,gfortran)))
22476 (home-page "http://openmx.ssri.psu.edu")
22477 (synopsis "Extended structural equation modelling")
22478 (description
22479 "This package allows for the estimation of a wide variety of advanced
22480 multivariate statistical models. It consists of a library of functions and
22481 optimizers that allow you to quickly and flexibly define an SEM model and
22482 estimate parameters given observed data.")
22483 (license license:asl2.0)))
22484
22485 (define-public r-kutils
22486 (package
22487 (name "r-kutils")
22488 (version "1.70")
22489 (source
22490 (origin
22491 (method url-fetch)
22492 (uri (cran-uri "kutils" version))
22493 (sha256
22494 (base32
22495 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
22496 (properties `((upstream-name . "kutils")))
22497 (build-system r-build-system)
22498 (propagated-inputs
22499 `(("r-foreign" ,r-foreign)
22500 ("r-openxlsx" ,r-openxlsx)
22501 ("r-plyr" ,r-plyr)
22502 ("r-runit" ,r-runit)
22503 ("r-xtable" ,r-xtable)))
22504 (home-page "https://cran.r-project.org/package=kutils")
22505 (synopsis "Project management tools")
22506 (description
22507 "This package provides tools for data importation, recoding, and
22508 inspection. There are functions to create new project folders, R code
22509 templates, create uniquely named output directories, and to quickly obtain a
22510 visual summary for each variable in a data frame. The main feature here is
22511 the systematic implementation of the \"variable key\" framework for data
22512 importation and recoding.")
22513 (license license:gpl2)))
22514
22515 (define-public r-rockchalk
22516 (package
22517 (name "r-rockchalk")
22518 (version "1.8.144")
22519 (source
22520 (origin
22521 (method url-fetch)
22522 (uri (cran-uri "rockchalk" version))
22523 (sha256
22524 (base32
22525 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
22526 (properties `((upstream-name . "rockchalk")))
22527 (build-system r-build-system)
22528 (propagated-inputs
22529 `(("r-cardata" ,r-cardata)
22530 ("r-kutils" ,r-kutils)
22531 ("r-lme4" ,r-lme4)
22532 ("r-mass" ,r-mass)))
22533 (home-page "https://cran.r-project.org/package=rockchalk")
22534 (synopsis "Regression estimation and presentation")
22535 (description
22536 "This package provides a collection of functions for interpretation and
22537 presentation of regression analysis. These functions are used to produce the
22538 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
22539 includes regression diagnostics, regression tables, and plots of interactions
22540 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
22541 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
22542 fairly comprehensive overview.")
22543 (license license:gpl3+)))
22544
22545 (define-public r-lisreltor
22546 (package
22547 (name "r-lisreltor")
22548 (version "0.1.4")
22549 (source
22550 (origin
22551 (method url-fetch)
22552 (uri (cran-uri "lisrelToR" version))
22553 (sha256
22554 (base32
22555 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
22556 (properties `((upstream-name . "lisrelToR")))
22557 (build-system r-build-system)
22558 (home-page "https://cran.r-project.org/package=lisrelToR")
22559 (synopsis "Import output from LISREL into R")
22560 (description
22561 "This is an unofficial package aimed at automating the import of LISREL
22562 output in R.")
22563 (license license:gpl2)))
22564
22565 (define-public r-bdgraph
22566 (package
22567 (name "r-bdgraph")
22568 (version "2.63")
22569 (source
22570 (origin
22571 (method url-fetch)
22572 (uri (cran-uri "BDgraph" version))
22573 (sha256
22574 (base32
22575 "05q6dbvdnxmh7myvw60zqcqx16f80i8d6qa4y7xnfkx02l9lwiyc"))))
22576 (properties `((upstream-name . "BDgraph")))
22577 (build-system r-build-system)
22578 (propagated-inputs
22579 `(("r-igraph" ,r-igraph)))
22580 (home-page "https://www.uva.nl/profile/a.mohammadi")
22581 (synopsis "Bayesian structure learning in graphical models")
22582 (description
22583 "This package provides statistical tools for Bayesian structure learning
22584 in undirected graphical models for continuous, discrete, and mixed data. It
22585 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
22586 on a continuous-time birth-death process.")
22587 (license license:gpl2+)))
22588
22589 (define-public r-d3network
22590 (package
22591 (name "r-d3network")
22592 (version "0.5.2.1")
22593 (source
22594 (origin
22595 (method url-fetch)
22596 (uri (cran-uri "d3Network" version))
22597 (sha256
22598 (base32
22599 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
22600 (properties `((upstream-name . "d3Network")))
22601 (build-system r-build-system)
22602 (propagated-inputs
22603 `(("r-plyr" ,r-plyr)
22604 ("r-rjson" ,r-rjson)
22605 ("r-whisker" ,r-whisker)))
22606 (home-page "http://christophergandrud.github.io/d3Network/")
22607 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
22608 (description
22609 "This package is intended to make it easy to create D3 JavaScript
22610 network, tree, dendrogram, and Sankey graphs from R using data frames.")
22611 (license license:gpl3+)))
22612
22613 (define-public r-qgraph
22614 (package
22615 (name "r-qgraph")
22616 (version "1.6.9")
22617 (source
22618 (origin
22619 (method url-fetch)
22620 (uri (cran-uri "qgraph" version))
22621 (sha256
22622 (base32
22623 "153bqfmsrghkg7598nfr57r3cxv6dn6ir084njl2sqq5np0sj9di"))))
22624 (properties `((upstream-name . "qgraph")))
22625 (build-system r-build-system)
22626 (propagated-inputs
22627 `(("r-abind" ,r-abind)
22628 ("r-colorspace" ,r-colorspace)
22629 ("r-corpcor" ,r-corpcor)
22630 ("r-dplyr" ,r-dplyr)
22631 ("r-fdrtool" ,r-fdrtool)
22632 ("r-ggplot2" ,r-ggplot2)
22633 ("r-glasso" ,r-glasso)
22634 ("r-gtools" ,r-gtools)
22635 ("r-hmisc" ,r-hmisc)
22636 ("r-igraph" ,r-igraph)
22637 ("r-jpeg" ,r-jpeg)
22638 ("r-lavaan" ,r-lavaan)
22639 ("r-matrix" ,r-matrix)
22640 ("r-pbapply" ,r-pbapply)
22641 ("r-plyr" ,r-plyr)
22642 ("r-png" ,r-png)
22643 ("r-psych" ,r-psych)
22644 ("r-rcpp" ,r-rcpp)
22645 ("r-reshape2" ,r-reshape2)))
22646 (home-page "http://sachaepskamp.com/qgraph/")
22647 (synopsis "Weighted network visualization and analysis")
22648 (description
22649 "This package implements tools for weighted network visualization and
22650 analysis, as well as Gaussian graphical model computation. It contains graph
22651 plotting methods, and tools for psychometric data visualization and graphical
22652 model estimation. See Epskamp et al. (2012)
22653 @url{doi:10.18637/jss.v048.i04}.")
22654 (license license:gpl2)))
22655
22656 (define-public r-semplot
22657 (package
22658 (name "r-semplot")
22659 (version "1.1.2")
22660 (source
22661 (origin
22662 (method url-fetch)
22663 (uri (cran-uri "semPlot" version))
22664 (sha256
22665 (base32
22666 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
22667 (properties `((upstream-name . "semPlot")))
22668 (build-system r-build-system)
22669 (propagated-inputs
22670 `(("r-colorspace" ,r-colorspace)
22671 ("r-corpcor" ,r-corpcor)
22672 ("r-igraph" ,r-igraph)
22673 ("r-lavaan" ,r-lavaan)
22674 ("r-lisreltor" ,r-lisreltor)
22675 ("r-openmx" ,r-openmx)
22676 ("r-plyr" ,r-plyr)
22677 ("r-qgraph" ,r-qgraph)
22678 ("r-regsem" ,r-regsem)
22679 ("r-rockchalk" ,r-rockchalk)
22680 ("r-sem" ,r-sem)
22681 ("r-xml" ,r-xml)))
22682 (home-page "https://github.com/SachaEpskamp/semPlot")
22683 (synopsis "Unified visualizations of structural equation models")
22684 (description
22685 "Structural equation modeling (SEM) has a long history of representing
22686 models graphically as path diagrams. The semPlot package for R fills the gap
22687 between advanced, but time-consuming, graphical software and the limited
22688 graphics produced automatically by SEM software. In addition, semPlot offers
22689 more functionality than drawing path diagrams: it can act as a common ground
22690 for importing SEM results into R. Any result usable as input to semPlot can
22691 also be represented in any of the three popular SEM frame-works, as well as
22692 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
22693 (license license:gpl2)))
22694
22695 (define-public r-cdm
22696 (package
22697 (name "r-cdm")
22698 (version "7.5-15")
22699 (source
22700 (origin
22701 (method url-fetch)
22702 (uri (cran-uri "CDM" version))
22703 (sha256
22704 (base32
22705 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
22706 (properties `((upstream-name . "CDM")))
22707 (build-system r-build-system)
22708 (propagated-inputs
22709 `(("r-mvtnorm" ,r-mvtnorm)
22710 ("r-polycor" ,r-polycor)
22711 ("r-rcpp" ,r-rcpp)
22712 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22713 (home-page
22714 "https://github.com/alexanderrobitzsch/CDM")
22715 (synopsis "Cognitive diagnosis modeling")
22716 (description
22717 "This package provides functions for cognitive diagnosis modeling and
22718 multidimensional item response modeling for dichotomous and polytomous item
22719 responses. It enables the estimation of the DINA and DINO model, the multiple
22720 group (polytomous) GDINA model, the multiple choice DINA model, the general
22721 diagnostic model (GDM), the structured latent class model (SLCA), and
22722 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
22723 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
22724 estimation and the package structure. For tutorials on how to use the CDM
22725 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
22726 well as Ravand and Robitzsch (2015).")
22727 (license license:gpl2+)))
22728
22729 (define-public r-tam
22730 (package
22731 (name "r-tam")
22732 (version "3.5-19")
22733 (source
22734 (origin
22735 (method url-fetch)
22736 (uri (cran-uri "TAM" version))
22737 (sha256
22738 (base32
22739 "1x1pdy0hrk4c3x5l4gcslpvyb0sv2zgly4n3a7y8j6yrzajx0sg7"))))
22740 (properties `((upstream-name . "TAM")))
22741 (build-system r-build-system)
22742 (propagated-inputs
22743 `(("r-cdm" ,r-cdm)
22744 ("r-rcpp" ,r-rcpp)
22745 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22746 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
22747 (synopsis "Test analysis modules")
22748 (description
22749 "This package includes tools for marginal maximum likelihood estimation
22750 and joint maximum likelihood estimation for unidimensional and
22751 multidimensional item response models. The package functionality covers the
22752 Rasch model, 2PL model, 3PL model, generalized partial credit model,
22753 multi-faceted Rasch model, nominal item response model, structured latent
22754 class model, mixture distribution IRT models, and located latent class models.
22755 Latent regression models and plausible value imputation are also supported.")
22756 (license license:gpl2+)))
22757
22758 (define-public r-erm
22759 (package
22760 (name "r-erm")
22761 (version "1.0-2")
22762 (source
22763 (origin
22764 (method url-fetch)
22765 (uri (cran-uri "eRm" version))
22766 (sha256
22767 (base32
22768 "0smym010kswc5vx90qr3x1vl16xj1x1i54rvrj006dc4agc1vmlk"))))
22769 (properties `((upstream-name . "eRm")))
22770 (build-system r-build-system)
22771 (propagated-inputs
22772 `(("r-colorspace" ,r-colorspace)
22773 ("r-lattice" ,r-lattice)
22774 ("r-mass" ,r-mass)
22775 ("r-matrix" ,r-matrix)
22776 ("r-psych" ,r-psych)))
22777 (native-inputs `(("gfortran" ,gfortran)))
22778 (home-page "https://cran.r-project.org/package=eRm")
22779 (synopsis "Extended Rasch modeling")
22780 (description
22781 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
22782 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
22783 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
22784 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
22785 data matrix. Additional features are the ML estimation of the person
22786 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
22787 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
22788 infit and outfit measures, ICC and other plots, automated stepwise item
22789 elimination, and a simulation module for various binary data matrices.")
22790 (license license:gpl3)))
22791
22792 (define-public r-irtoys
22793 (package
22794 (name "r-irtoys")
22795 (version "0.2.1")
22796 (source
22797 (origin
22798 (method url-fetch)
22799 (uri (cran-uri "irtoys" version))
22800 (sha256
22801 (base32
22802 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
22803 (properties `((upstream-name . "irtoys")))
22804 (build-system r-build-system)
22805 (propagated-inputs
22806 `(("r-ltm" ,r-ltm)
22807 ("r-sm" ,r-sm)))
22808 (home-page "https://cran.r-project.org/package=irtoys")
22809 (synopsis "Collection of functions related to Item Response Theory (IRT)")
22810 (description
22811 "This package provides a collection of functions useful in learning and
22812 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
22813 programs. It provides basic CTT analysis, a simple common interface to the
22814 estimation of item parameters in IRT models for binary responses with three
22815 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
22816 EAP, WLE, plausible values), item and person fit statistics, scaling
22817 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
22818 array of parametric and non-parametric (kernel) plots. It estimates and plots
22819 Haberman's interaction model when all items are dichotomously scored.")
22820 (license license:gpl2+)))
22821
22822 (define-public r-iheatmapr
22823 (package
22824 (name "r-iheatmapr")
22825 (version "0.5.1")
22826 (source
22827 (origin
22828 (method url-fetch)
22829 (uri (cran-uri "iheatmapr" version))
22830 (sha256
22831 (base32
22832 "1pwkwh7ljlpr6zyz6j8knpz3iw60xzkw8amc98x4pc2mw148jvzx"))))
22833 (properties `((upstream-name . "iheatmapr")))
22834 (build-system r-build-system)
22835 (propagated-inputs
22836 `(("r-fastcluster" ,r-fastcluster)
22837 ("r-ggdendro" ,r-ggdendro)
22838 ("r-htmlwidgets" ,r-htmlwidgets)
22839 ("r-jsonlite" ,r-jsonlite)
22840 ("r-knitr" ,r-knitr)
22841 ("r-magrittr" ,r-magrittr)
22842 ("r-rcolorbrewer" ,r-rcolorbrewer)
22843 ("r-scales" ,r-scales)))
22844 (native-inputs
22845 `(("r-knitr" ,r-knitr)))
22846 (home-page "https://docs.ropensci.org/iheatmapr")
22847 (synopsis "Interactive, Complex Heatmaps")
22848 (description
22849 "iheatmapr is an R package for building complex, interactive heatmaps
22850 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
22851 subplots along the rows or columns of the main heatmap add more information
22852 about each row or column. For example, a one column additional heatmap may
22853 indicate what group a particular row or column belongs to. Complex heatmaps
22854 may also include multiple side by side heatmaps which show different types of
22855 data for the same conditions. Interactivity can improve complex heatmaps by
22856 providing tooltips with information about each cell and enabling zooming into
22857 interesting features. iheatmapr uses the plotly library for interactivity.")
22858 (license license:expat)))
22859
22860 (define-public r-packrat
22861 (package
22862 (name "r-packrat")
22863 (version "0.5.0")
22864 (source
22865 (origin
22866 (method url-fetch)
22867 (uri (cran-uri "packrat" version))
22868 (sha256
22869 (base32
22870 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
22871 (properties `((upstream-name . "packrat")))
22872 (build-system r-build-system)
22873 (home-page "https://github.com/rstudio/packrat/")
22874 (synopsis "Dependency management R projects")
22875 (description
22876 "This package provides a dependency manager for R projects that allows
22877 you to manage the R packages your project depends on in an isolated, portable,
22878 and reproducible way.")
22879 (license license:gpl2)))
22880
22881 (define-public r-rsconnect
22882 (package
22883 (name "r-rsconnect")
22884 (version "0.8.16")
22885 (source
22886 (origin
22887 (method url-fetch)
22888 (uri (cran-uri "rsconnect" version))
22889 (sha256
22890 (base32
22891 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
22892 (properties `((upstream-name . "rsconnect")))
22893 (build-system r-build-system)
22894 (propagated-inputs
22895 `(("r-curl" ,r-curl)
22896 ("r-digest" ,r-digest)
22897 ("r-jsonlite" ,r-jsonlite)
22898 ("r-openssl" ,r-openssl)
22899 ("r-packrat" ,r-packrat)
22900 ("r-rstudioapi" ,r-rstudioapi)
22901 ("r-yaml" ,r-yaml)))
22902 (home-page "https://github.com/rstudio/rsconnect")
22903 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
22904 (description
22905 "This package provides a programmatic deployment interface for RPubs,
22906 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
22907 documents, Shiny applications, Plumber APIs, plots, and static web content.")
22908 (license license:gpl2)))
22909
22910 ;; This package includes minified JavaScript files. When upgrading please
22911 ;; check that there are no new minified JavaScript files.
22912 (define-public r-dygraphs
22913 (package
22914 (name "r-dygraphs")
22915 (version "1.1.1.6")
22916 (source
22917 (origin
22918 (method url-fetch)
22919 (uri (cran-uri "dygraphs" version))
22920 (sha256
22921 (base32
22922 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
22923 (properties `((upstream-name . "dygraphs")))
22924 (build-system r-build-system)
22925 (arguments
22926 `(#:modules ((guix build utils)
22927 (guix build r-build-system)
22928 (srfi srfi-1)
22929 (ice-9 popen))
22930 #:phases
22931 (modify-phases %standard-phases
22932 (add-after 'unpack 'process-javascript
22933 (lambda* (#:key inputs #:allow-other-keys)
22934 (with-directory-excursion "inst/htmlwidgets/lib/"
22935 (call-with-values
22936 (lambda ()
22937 (unzip2
22938 `(("dygraphs/dygraph-combined-dev.js"
22939 "dygraph-combined.js")
22940 (,(assoc-ref inputs "js-jquery")
22941 "jquery/jquery.min.js")
22942 (,(assoc-ref inputs "js-fquarter")
22943 "fquarter/moment-fquarter.min.js"))))
22944 (lambda (sources targets)
22945 (for-each (lambda (source target)
22946 (format #t "Processing ~a --> ~a~%"
22947 source target)
22948 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
22949 (call-with-output-file target
22950 (lambda (port)
22951 (dump-port minified port)))))
22952 sources targets))))
22953 #t)))))
22954 (native-inputs
22955 `(("uglify-js" ,uglify-js)
22956 ;; They actually use version 1.11.1, but this more recent version
22957 ;; should be just fine.
22958 ("js-jquery"
22959 ,(origin
22960 (method url-fetch)
22961 (uri "https://code.jquery.com/jquery-1.12.4.js")
22962 (sha256
22963 (base32
22964 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
22965 ("js-fquarter"
22966 ,(origin
22967 (method url-fetch)
22968 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
22969 "moment-fquarter/1.0.1/moment-fquarter.js"))
22970 (sha256
22971 (base32
22972 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
22973 (propagated-inputs
22974 `(("r-htmltools" ,r-htmltools)
22975 ("r-htmlwidgets" ,r-htmlwidgets)
22976 ("r-magrittr" ,r-magrittr)
22977 ("r-xts" ,r-xts)
22978 ("r-zoo" ,r-zoo)))
22979 (home-page "https://github.com/rstudio/dygraphs")
22980 (synopsis "Interface to Dygraphs interactive time series charting library")
22981 (description
22982 "This package provides an R interface to the dygraphs JavaScript charting
22983 library (a copy of which is included in the package). It provides rich
22984 facilities for charting time-series data in R, including highly configurable
22985 series- and axis-display and interactive features like zoom/pan and
22986 series/point highlighting.")
22987 (license license:expat)))
22988
22989 (define-public r-shinystan
22990 (package
22991 (name "r-shinystan")
22992 (version "2.5.0")
22993 (source
22994 (origin
22995 (method url-fetch)
22996 (uri (cran-uri "shinystan" version))
22997 (sha256
22998 (base32
22999 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
23000 (properties `((upstream-name . "shinystan")))
23001 (build-system r-build-system)
23002 (propagated-inputs
23003 `(("r-bayesplot" ,r-bayesplot)
23004 ("r-colourpicker" ,r-colourpicker)
23005 ("r-dt" ,r-dt)
23006 ("r-dygraphs" ,r-dygraphs)
23007 ("r-ggplot2" ,r-ggplot2)
23008 ("r-gridextra" ,r-gridextra)
23009 ("r-gtools" ,r-gtools)
23010 ("r-markdown" ,r-markdown)
23011 ("r-reshape2" ,r-reshape2)
23012 ("r-rsconnect" ,r-rsconnect)
23013 ("r-rstan" ,r-rstan)
23014 ("r-shiny" ,r-shiny)
23015 ("r-shinyjs" ,r-shinyjs)
23016 ("r-shinythemes" ,r-shinythemes)
23017 ("r-threejs" ,r-threejs)
23018 ("r-xtable" ,r-xtable)
23019 ("r-xts" ,r-xts)))
23020 (home-page "https://mc-stan.org/")
23021 (synopsis "Interactive visual and numerical analysis for Bayesian models")
23022 (description
23023 "This package provides a graphical user interface for interactive
23024 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
23025 for analyzing a posterior sample. The interface is powered by the Shiny web
23026 application framework and works with the output of MCMC programs written in
23027 any programming language (and has extended functionality for Stan models fit
23028 using the @code{rstan} and @code{rstanarm} packages).")
23029 (license license:gpl3+)))
23030
23031 (define-public r-rstantools
23032 (package
23033 (name "r-rstantools")
23034 (version "2.1.1")
23035 (source
23036 (origin
23037 (method url-fetch)
23038 (uri (cran-uri "rstantools" version))
23039 (sha256
23040 (base32
23041 "0b9x8rzj3dr4m7yjx476nn42z22xd1xnw85m9frfwxy5ivg1any9"))))
23042 (properties `((upstream-name . "rstantools")))
23043 (build-system r-build-system)
23044 (inputs `(("pandoc" ,pandoc)))
23045 (propagated-inputs
23046 `(("r-desc" ,r-desc)
23047 ("r-rcpp" ,r-rcpp)
23048 ("r-rcppparallel" ,r-rcppparallel)))
23049 (native-inputs
23050 `(("r-knitr" ,r-knitr)))
23051 (home-page "https://mc-stan.org/rstantools/")
23052 (synopsis "Tools for developing R packages interfacing with Stan")
23053 (description
23054 "This package provides various tools for developers of R packages
23055 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
23056 up the required package structure, S3 generics and default methods to unify
23057 function naming across Stan-based R packages, and vignettes with
23058 recommendations for developers.")
23059 (license license:gpl3+)))
23060
23061 (define-public r-loo
23062 (package
23063 (name "r-loo")
23064 (version "2.4.1")
23065 (source
23066 (origin
23067 (method url-fetch)
23068 (uri (cran-uri "loo" version))
23069 (sha256
23070 (base32 "0l2v8zpashqbnck3qx5lp1gqjcfphzky8mxyw5gfk9wk99mzn8dw"))))
23071 (properties `((upstream-name . "loo")))
23072 (build-system r-build-system)
23073 (inputs
23074 `(("pandoc" ,pandoc)
23075 ("pandoc-citeproc" ,pandoc-citeproc)))
23076 (propagated-inputs
23077 `(("r-checkmate" ,r-checkmate)
23078 ("r-matrixstats" ,r-matrixstats)))
23079 (native-inputs
23080 `(("r-knitr" ,r-knitr)))
23081 (home-page "https://mc-stan.org/loo/")
23082 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
23083 (description
23084 "This package provides an implementation of efficient approximate
23085 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
23086 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
23087 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
23088 procedure for regularizing importance weights. As a byproduct of the
23089 calculations, we also obtain approximate standard errors for estimated
23090 predictive errors and for the comparison of predictive errors between models.
23091 The package also provides methods for using stacking and other model weighting
23092 techniques to average Bayesian predictive distributions.")
23093 (license license:gpl3+)))
23094
23095 (define-public r-rstan
23096 (package
23097 (name "r-rstan")
23098 (version "2.21.2")
23099 (source
23100 (origin
23101 (method url-fetch)
23102 (uri (cran-uri "rstan" version))
23103 (sha256
23104 (base32
23105 "0jh58qfrksd2j9w2zy4bajryivgp36m3xdb9mjrjqbk1ib9h83p3"))))
23106 (properties `((upstream-name . "rstan")))
23107 (build-system r-build-system)
23108 (arguments
23109 `(#:phases
23110 (modify-phases %standard-phases
23111 (add-before 'install 'set-timezone
23112 ;; This package is picky about timezones.
23113 (lambda* (#:key inputs #:allow-other-keys)
23114 (setenv "TZ" "UTC+1")
23115 (setenv "TZDIR"
23116 (string-append (assoc-ref inputs "tzdata")
23117 "/share/zoneinfo"))
23118 #t)))))
23119 (native-inputs
23120 `(("tzdata" ,tzdata-for-tests)
23121 ("pandoc" ,pandoc)
23122 ("r-knitr" ,r-knitr)))
23123 (propagated-inputs
23124 `(("r-bh" ,r-bh)
23125 ("r-ggplot2" ,r-ggplot2)
23126 ("r-gridextra" ,r-gridextra)
23127 ("r-inline" ,r-inline)
23128 ("r-loo" ,r-loo)
23129 ("r-pkgbuild" ,r-pkgbuild)
23130 ("r-rcpp" ,r-rcpp)
23131 ("r-rcppeigen" ,r-rcppeigen)
23132 ("r-rcppparallel" ,r-rcppparallel)
23133 ("r-stanheaders" ,r-stanheaders)
23134 ("r-v8" ,r-v8)
23135 ("r-withr" ,r-withr)))
23136 (home-page "https://discourse.mc-stan.org/")
23137 (synopsis "R interface to Stan")
23138 (description
23139 "User-facing R functions are provided to parse, compile, test, estimate,
23140 and analyze Stan models by accessing the header-only Stan library provided by
23141 the StanHeaders package. The Stan project develops a probabilistic
23142 programming language that implements full Bayesian statistical inference via
23143 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
23144 approximation, and (optionally penalized) maximum likelihood estimation via
23145 optimization. In all three cases, automatic differentiation is used to
23146 quickly and accurately evaluate gradients without burdening the user with the
23147 need to derive the partial derivatives.")
23148 (license license:gpl3+)))
23149
23150 (define-public r-rstanarm
23151 (package
23152 (name "r-rstanarm")
23153 (version "2.21.1")
23154 (source
23155 (origin
23156 (method url-fetch)
23157 (uri (cran-uri "rstanarm" version))
23158 (sha256
23159 (base32
23160 "04ggzak3f7jaxza3dxyrmxp5b48qcgyspy22ykbhr03g4hzp7jk8"))))
23161 (properties `((upstream-name . "rstanarm")))
23162 (build-system r-build-system)
23163 (inputs
23164 `(("pandoc" ,pandoc)
23165 ("pandoc-citeproc" ,pandoc-citeproc)))
23166 (propagated-inputs
23167 `(("r-bayesplot" ,r-bayesplot)
23168 ("r-bh" ,r-bh)
23169 ("r-ggplot2" ,r-ggplot2)
23170 ("r-lme4" ,r-lme4)
23171 ("r-loo" ,r-loo)
23172 ("r-matrix" ,r-matrix)
23173 ("r-nlme" ,r-nlme)
23174 ("r-rcpp" ,r-rcpp)
23175 ("r-rcppeigen" ,r-rcppeigen)
23176 ("r-rcppparallel" ,r-rcppparallel)
23177 ("r-rstan" ,r-rstan)
23178 ("r-rstantools" ,r-rstantools)
23179 ("r-shinystan" ,r-shinystan)
23180 ("r-stanheaders" ,r-stanheaders)
23181 ("r-survival" ,r-survival)))
23182 (native-inputs
23183 `(("r-knitr" ,r-knitr)))
23184 (home-page "https://mc-stan.org/rstanarm/")
23185 (synopsis "Bayesian applied regression modeling via Stan")
23186 (description
23187 "This package estimates previously compiled regression models using the
23188 @code{rstan} package, which provides the R interface to the Stan C++ library
23189 for Bayesian estimation. Users specify models via the customary R syntax with
23190 a formula and @code{data.frame} plus some additional arguments for priors.")
23191 (license license:gpl3+)))
23192
23193 (define-public r-kendall
23194 (package
23195 (name "r-kendall")
23196 (version "2.2")
23197 (source
23198 (origin
23199 (method url-fetch)
23200 (uri (cran-uri "Kendall" version))
23201 (sha256
23202 (base32
23203 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
23204 (properties `((upstream-name . "Kendall")))
23205 (build-system r-build-system)
23206 (propagated-inputs
23207 `(("r-boot" ,r-boot)))
23208 (native-inputs
23209 `(("gfortran" ,gfortran)))
23210 (home-page "https://cran.r-project.org/web/packages/Kendall/")
23211 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
23212 (description
23213 "This package computes the Kendall rank correlation and Mann-Kendall
23214 trend test.")
23215 (license license:gpl2+)))
23216
23217 (define-public r-keyring
23218 (package
23219 (name "r-keyring")
23220 (version "1.1.0")
23221 (source
23222 (origin
23223 (method url-fetch)
23224 (uri (cran-uri "keyring" version))
23225 (sha256
23226 (base32
23227 "1hpfd4hbx43i39l995rg86kfxi7wlyla1gv8mwcdr4xx7z122zzq"))))
23228 (properties `((upstream-name . "keyring")))
23229 (build-system r-build-system)
23230 (propagated-inputs
23231 `(("r-assertthat" ,r-assertthat)
23232 ("r-filelock" ,r-filelock)
23233 ("r-getpass" ,r-getpass)
23234 ("r-openssl" ,r-openssl)
23235 ("r-r6" ,r-r6)
23236 ("r-rappdirs" ,r-rappdirs)
23237 ("r-sodium" ,r-sodium)
23238 ("r-yaml" ,r-yaml)))
23239 (native-inputs `(("pkg-config" ,pkg-config)))
23240 (home-page "https://github.com/r-lib/keyring")
23241 (synopsis "Access the system credential store from R")
23242 (description
23243 "This package provides a platform-independent API to access the operating
23244 system's credential store. It currently supports Keychain on macOS,
23245 Credential Store on Windows, the Secret Service API on GNU/Linux, and a
23246 simple, platform independent store implemented with environment variables.
23247 Additional storage back-ends can be added easily.")
23248 (license license:expat)))
23249
23250 (define-public r-zyp
23251 (package
23252 (name "r-zyp")
23253 (version "0.10-1.1")
23254 (source
23255 (origin
23256 (method url-fetch)
23257 (uri (cran-uri "zyp" version))
23258 (sha256
23259 (base32
23260 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
23261 (properties `((upstream-name . "zyp")))
23262 (build-system r-build-system)
23263 (propagated-inputs
23264 `(("r-kendall" ,r-kendall)))
23265 (home-page "https://cran.r-project.org/web/packages/zyp/")
23266 (synopsis "Zhang + Yue-Pilon Trends Package")
23267 (description
23268 "This package contains an efficient implementation of Sen's slope
23269 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
23270 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
23271 climate data.")
23272 (license license:lgpl2.1)))
23273
23274 (define-public r-rlinsolve
23275 (package
23276 (name "r-rlinsolve")
23277 (version "0.3.1")
23278 (source
23279 (origin
23280 (method url-fetch)
23281 (uri (cran-uri "Rlinsolve" version))
23282 (sha256
23283 (base32
23284 "1x02xxbkchcwwfa2123n9yqfzinfi0zba8zxhp977czzwysy75cc"))))
23285 (properties `((upstream-name . "Rlinsolve")))
23286 (build-system r-build-system)
23287 (propagated-inputs
23288 `(("r-matrix" ,r-matrix)
23289 ("r-rcpp" ,r-rcpp)
23290 ("r-rcpparmadillo" ,r-rcpparmadillo)
23291 ("r-rdpack" ,r-rdpack)))
23292 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
23293 (synopsis "Iterative solvers for (sparse) linear system of equations")
23294 (description
23295 "Solving a system of linear equations is one of the most fundamental
23296 computational problems for many fields of mathematical studies, such as
23297 regression problems from statistics or numerical partial differential
23298 equations. This package provides basic stationary iterative solvers such as
23299 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
23300 Nonstationary, also known as Krylov subspace methods are also provided.
23301 Sparse matrix computation is also supported in that solving large and sparse
23302 linear systems can be manageable using the @code{Matrix} package along with
23303 @code{RcppArmadillo}.")
23304 (license license:gpl3+)))
23305
23306 (define-public r-zvcv
23307 (package
23308 (name "r-zvcv")
23309 (version "2.1.0")
23310 (source
23311 (origin
23312 (method url-fetch)
23313 (uri (cran-uri "ZVCV" version))
23314 (sha256
23315 (base32
23316 "0np6h6x74kz1x13wmbkkm1wq43d8bnn2khzjc80prqdi6n0m9v8r"))))
23317 (properties `((upstream-name . "ZVCV")))
23318 (build-system r-build-system)
23319 (propagated-inputs
23320 `(("r-abind" ,r-abind)
23321 ("r-bh" ,r-bh)
23322 ("r-dplyr" ,r-dplyr)
23323 ("r-glmnet" ,r-glmnet)
23324 ("r-magrittr" ,r-magrittr)
23325 ("r-mvtnorm" ,r-mvtnorm)
23326 ("r-rcpp" ,r-rcpp)
23327 ("r-rcpparmadillo" ,r-rcpparmadillo)
23328 ("r-rlinsolve" ,r-rlinsolve)))
23329 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
23330 (synopsis "Zero-Variance Control Variates")
23331 (description
23332 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
23333 to reduce the variance of Monte Carlo estimators of expectations using the
23334 derivatives of the log target. Once the derivatives are available, the only
23335 additional computational effort is in solving a linear regression problem.
23336 This method has been extended to higher dimensions using regularisation. This
23337 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
23338 samples, derivatives and function evaluations are available. Additional
23339 functions for applying ZV-CV to two estimators for the normalising constant of
23340 the posterior distribution in Bayesian statistics are also supplied.")
23341 (license license:gpl2+)))
23342
23343 (define-public r-ztype
23344 (package
23345 (name "r-ztype")
23346 (version "0.1.0")
23347 (source
23348 (origin
23349 (method url-fetch)
23350 (uri (cran-uri "ztype" version))
23351 (sha256
23352 (base32
23353 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
23354 (properties `((upstream-name . "ztype")))
23355 (build-system r-build-system)
23356 (propagated-inputs
23357 `(("r-assertthat" ,r-assertthat)
23358 ("r-dplyr" ,r-dplyr)
23359 ("r-ggplot2" ,r-ggplot2)
23360 ("r-lubridate" ,r-lubridate)
23361 ("r-magrittr" ,r-magrittr)
23362 ("r-rvest" ,r-rvest)
23363 ("r-stringr" ,r-stringr)))
23364 (home-page "https://cran.r-project.org/web/packages/ztype/")
23365 (synopsis "Run a Ztype game loaded with R functions")
23366 (description
23367 "How fast can you type R functions on your keyboard? Find out by running
23368 a @code{zty.pe} game: export R functions as instructions to type to destroy
23369 opponents' vessels.")
23370 (license license:gpl3)))
23371
23372 (define-public r-zseq
23373 (package
23374 (name "r-zseq")
23375 (version "0.2.0")
23376 (source
23377 (origin
23378 (method url-fetch)
23379 (uri (cran-uri "Zseq" version))
23380 (sha256
23381 (base32
23382 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
23383 (properties `((upstream-name . "Zseq")))
23384 (build-system r-build-system)
23385 (propagated-inputs
23386 `(("r-gmp" ,r-gmp)))
23387 (home-page "https://cran.r-project.org/web/packages/Zseq/")
23388 (synopsis "Integer sequence generator")
23389 (description
23390 "This package generates well-known integer sequences. The @code{gmp}
23391 package is adopted for computing with arbitrarily large numbers. Every
23392 function has a hyperlink to its corresponding item in the @dfn{On-Line
23393 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
23394 (license license:gpl3+)))
23395
23396 (define-public r-isoband
23397 (package
23398 (name "r-isoband")
23399 (version "0.2.4")
23400 (source
23401 (origin
23402 (method url-fetch)
23403 (uri (cran-uri "isoband" version))
23404 (sha256
23405 (base32
23406 "0z1qpxcl8b6fi691fbdr3vrb19mn4pas1iff62zl1bafzbdvpmcn"))))
23407 (properties `((upstream-name . "isoband")))
23408 (build-system r-build-system)
23409 (native-inputs
23410 `(("r-knitr" ,r-knitr)))
23411 (home-page "https://github.com/wilkelab/isoband")
23412 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
23413 (description
23414 "This package provides a fast C++ implementation to generate contour
23415 lines (isolines) and contour polygons (isobands) from regularly spaced grids
23416 containing elevation data.")
23417 (license license:expat)))
23418
23419 (define-public r-ppcor
23420 (package
23421 (name "r-ppcor")
23422 (version "1.1")
23423 (source
23424 (origin
23425 (method url-fetch)
23426 (uri (cran-uri "ppcor" version))
23427 (sha256
23428 (base32
23429 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
23430 (properties `((upstream-name . "ppcor")))
23431 (build-system r-build-system)
23432 (propagated-inputs
23433 `(("r-mass" ,r-mass)))
23434 (home-page "https://cran.r-project.org/web/packages/ppcor/")
23435 (synopsis "Partial and semi-partial correlation")
23436 (description
23437 "This package provides users not only with a function to readily
23438 calculate the higher-order partial and semi-partial correlations but also with
23439 statistics and p-values of the correlation coefficients.")
23440 (license license:gpl2)))
23441
23442 (define-public r-hrbrthemes
23443 (package
23444 (name "r-hrbrthemes")
23445 (version "0.8.0")
23446 (source
23447 (origin
23448 (method url-fetch)
23449 (uri (cran-uri "hrbrthemes" version))
23450 (sha256
23451 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
23452 (properties `((upstream-name . "hrbrthemes")))
23453 (build-system r-build-system)
23454 (propagated-inputs
23455 `(("r-extrafont" ,r-extrafont)
23456 ("r-gdtools" ,r-gdtools)
23457 ("r-ggplot2" ,r-ggplot2)
23458 ("r-htmltools" ,r-htmltools)
23459 ("r-knitr" ,r-knitr)
23460 ("r-magrittr" ,r-magrittr)
23461 ("r-rmarkdown" ,r-rmarkdown)
23462 ("r-scales" ,r-scales)))
23463 (native-inputs
23464 `(("r-knitr" ,r-knitr)))
23465 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
23466 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
23467 (description
23468 "This package provides a compilation of extra @code{ggplot2} themes,
23469 scales and utilities, including a spell check function for plot label fields
23470 and an overall emphasis on typography.")
23471 (license license:expat)))
23472
23473 (define-public r-crochet
23474 (package
23475 (name "r-crochet")
23476 (version "2.3.0")
23477 (source
23478 (origin
23479 (method url-fetch)
23480 (uri (cran-uri "crochet" version))
23481 (sha256
23482 (base32
23483 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
23484 (build-system r-build-system)
23485 (native-inputs
23486 `(("r-knitr" ,r-knitr)))
23487 (home-page "https://github.com/agrueneberg/crochet")
23488 (synopsis "Implementation Helper for Matrix-Like Types")
23489 (description
23490 "Functions to help implement the extraction / subsetting / indexing
23491 function @code{[} and replacement function @code{[<-} of custom matrix-like
23492 types (based on S3, S4, etc.), modeled as closely to the base matrix class
23493 as possible (with tests to prove it).")
23494 (license license:expat)))
23495
23496 (define-public r-boa
23497 (package
23498 (name "r-boa")
23499 (version "1.1.8-2")
23500 (source
23501 (origin
23502 (method url-fetch)
23503 (uri (cran-uri "boa" version))
23504 (sha256
23505 (base32
23506 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
23507 (properties `((upstream-name . "boa")))
23508 (build-system r-build-system)
23509 (home-page "https://www.jstatsoft.org/v21/i11")
23510 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
23511 (description
23512 "This package provides a menu-driven program and library of functions for
23513 carrying out convergence diagnostics and statistical and graphical analysis of
23514 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
23515 (license license:gpl2+)))
23516
23517 (define-public r-httpcode
23518 (package
23519 (name "r-httpcode")
23520 (version "0.3.0")
23521 (source (origin
23522 (method url-fetch)
23523 (uri (cran-uri "httpcode" version))
23524 (sha256
23525 (base32
23526 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
23527 (build-system r-build-system)
23528 (home-page "https://github.com/sckott/httpcode")
23529 (synopsis "HTTP status code helper")
23530 (description "@code{httpcode} provides functionality for finding and
23531 explaining the meaning of @code{HTTP} status codes. Functions are included for
23532 searching for codes by full or partial number, by message, and to get
23533 appropriate dog and cat images for many status codes.")
23534 (license license:expat)))
23535
23536 (define-public r-latex2exp
23537 (package
23538 (name "r-latex2exp")
23539 (version "0.4.0")
23540 (source (origin
23541 (method url-fetch)
23542 (uri (cran-uri "latex2exp" version))
23543 (sha256
23544 (base32
23545 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
23546 (build-system r-build-system)
23547 (propagated-inputs
23548 `(("r-stringr" ,r-stringr)
23549 ("r-magrittr" ,r-magrittr)))
23550 (home-page "https://github.com/stefano-meschiari/latex2exp/")
23551 (synopsis "Use LaTeX expressions in plots")
23552 (description "@code{latex2exp} parses and converts LaTeX math formulas to
23553 R's plotmath expressions, used to enter mathematical formulas and symbols to be
23554 rendered as text, axis labels, etc. throughout R's plotting system.")
23555 (license license:expat)))
23556
23557 (define-public r-oai
23558 (package
23559 (name "r-oai")
23560 (version "0.3.0")
23561 (source (origin
23562 (method url-fetch)
23563 (uri (cran-uri "oai" version))
23564 (sha256
23565 (base32
23566 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
23567 (build-system r-build-system)
23568 (propagated-inputs
23569 `(("r-xml2" ,r-xml2)
23570 ("r-httr" ,r-httr)
23571 ("r-plyr" ,r-plyr)
23572 ("r-stringr" ,r-stringr)
23573 ("r-tibble" ,r-tibble)))
23574 (home-page "https://github.com/ropensci/oai/")
23575 (synopsis "General purpose OAI-PMH services client")
23576 (description "@code{oai} provides a general purpose client to work with
23577 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
23578 service. Functions are provided to work with the OAI-PMH verbs:
23579 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
23580 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
23581 (license license:expat)))
23582
23583 (define-public r-argon2
23584 (package
23585 (name "r-argon2")
23586 (version "0.2-0")
23587 (source
23588 (origin
23589 (method url-fetch)
23590 (uri (cran-uri "argon2" version))
23591 (sha256
23592 (base32
23593 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
23594 (properties `((upstream-name . "argon2")))
23595 (build-system r-build-system)
23596 (home-page "https://github.com/wrathematics/argon2")
23597 (synopsis "Secure password hashing based on the argon2 algorithm")
23598 (description
23599 "This package provides utilities for secure password hashing via the
23600 argon2 algorithm.")
23601 (license license:bsd-2)))
23602
23603 (define-public r-getpass
23604 (package
23605 (name "r-getpass")
23606 (version "0.2-2")
23607 (source
23608 (origin
23609 (method url-fetch)
23610 (uri (cran-uri "getPass" version))
23611 (sha256
23612 (base32
23613 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
23614 (properties `((upstream-name . "getPass")))
23615 (build-system r-build-system)
23616 (propagated-inputs
23617 `(("r-rstudioapi" ,r-rstudioapi)))
23618 (home-page "https://github.com/wrathematics/getPass")
23619 (synopsis "Masked user input")
23620 (description
23621 "This package provides a micro-package for reading \"passwords\", i.e.
23622 reading user input with masking, so that the input is not displayed as it is
23623 typed. Currently, RStudio, the command line (every OS), and any platform
23624 where tcltk is present are supported.")
23625 (license license:bsd-2)))
23626
23627 (define-public r-remoter
23628 (package
23629 (name "r-remoter")
23630 (version "0.4-0")
23631 (source
23632 (origin
23633 (method url-fetch)
23634 (uri (cran-uri "remoter" version))
23635 (sha256
23636 (base32
23637 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
23638 (properties `((upstream-name . "remoter")))
23639 (build-system r-build-system)
23640 (propagated-inputs
23641 `(("r-argon2" ,r-argon2)
23642 ("r-getpass" ,r-getpass)
23643 ("r-pbdzmq" ,r-pbdzmq)
23644 ("r-png" ,r-png)))
23645 (home-page "https://github.com/RBigData/remoter")
23646 (synopsis "Control a remote R session from a local one")
23647 (description
23648 "This package provides a set of utilities for client/server computing
23649 with R, controlling a remote R session (the server) from a local one (the
23650 client).")
23651 (license license:bsd-2)))
23652
23653 (define-public r-asd
23654 (package
23655 (name "r-asd")
23656 (version "2.2")
23657 (source
23658 (origin
23659 (method url-fetch)
23660 (uri (cran-uri "asd" version))
23661 (sha256
23662 (base32
23663 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
23664 (properties `((upstream-name . "asd")))
23665 (build-system r-build-system)
23666 (propagated-inputs
23667 `(("r-mvtnorm" ,r-mvtnorm)))
23668 (home-page "https://cran.r-project.org/web/packages/asd")
23669 (synopsis "Simulations for Adaptive Seamless Designs")
23670 (description
23671 "This package provdes means to run simulations for adaptive seamless
23672 designs with and without early outcomes for treatment selection and
23673 subpopulation type designs.")
23674 (license license:gpl3)))
23675
23676 (define-public r-nbconvertr
23677 (package
23678 (name "r-nbconvertr")
23679 (version "1.3.2")
23680 (source
23681 (origin
23682 (method url-fetch)
23683 (uri (cran-uri "nbconvertR" version))
23684 (sha256
23685 (base32
23686 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
23687 (properties `((upstream-name . "nbconvertR")))
23688 (build-system r-build-system)
23689 (inputs
23690 `(("jupyter" ,python-nbconvert)
23691 ("pandoc" ,pandoc)))
23692 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
23693 (synopsis "Vignette engine wrapping Jupyter notebooks")
23694 (description
23695 "This package calls the Jupyter script @code{nbconvert} to create
23696 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
23697 containing rich text, code, and its output. Code cells can be edited and
23698 evaluated interactively.")
23699 (license license:gpl3)))
23700
23701 (define-public r-bridgesampling
23702 (package
23703 (name "r-bridgesampling")
23704 (version "1.0-0")
23705 (source
23706 (origin
23707 (method url-fetch)
23708 (uri (cran-uri "bridgesampling" version))
23709 (sha256
23710 (base32
23711 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
23712 (properties
23713 `((upstream-name . "bridgesampling")))
23714 (build-system r-build-system)
23715 (propagated-inputs
23716 `(("r-brobdingnag" ,r-brobdingnag)
23717 ("r-coda" ,r-coda)
23718 ("r-matrix" ,r-matrix)
23719 ("r-mvtnorm" ,r-mvtnorm)
23720 ("r-scales" ,r-scales)
23721 ("r-stringr" ,r-stringr)))
23722 (native-inputs
23723 `(("r-knitr" ,r-knitr)))
23724 (home-page "https://github.com/quentingronau/bridgesampling")
23725 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
23726 (description
23727 "This package provides functions for estimating marginal likelihoods,
23728 Bayes factors, posterior model probabilities, and normalizing constants in
23729 general, via different versions of bridge sampling.")
23730 (license license:gpl2+)))
23731
23732 (define-public r-tea
23733 (package
23734 (name "r-tea")
23735 (version "1.1")
23736 (source
23737 (origin
23738 (method url-fetch)
23739 (uri (cran-uri "tea" version))
23740 (sha256
23741 (base32
23742 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
23743 (properties
23744 `((upstream-name . "tea")))
23745 (build-system r-build-system)
23746 (propagated-inputs
23747 `(("r-matrix" ,r-matrix)))
23748 (home-page "https://cran.r-project.org/web/packages/tea/")
23749 (synopsis "Threshold estimation approaches")
23750 (description
23751 "This package provides different approaches for selecting the threshold
23752 in generalized Pareto distributions. Most of them are based on minimizing the
23753 AMSE-criterion or at least by reducing the bias of the assumed GPD-model.
23754 Others are heuristically motivated by searching for stable sample paths, i.e.
23755 a nearly constant region of the tail index estimator with respect to k, which
23756 is the number of data in the tail. The third class is motivated by graphical
23757 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
23758 is also implemented here.")
23759 (license license:gpl3)))
23760
23761 (define-public r-awsmethods
23762 (package
23763 (name "r-awsmethods")
23764 (version "1.1-1")
23765 (source
23766 (origin
23767 (method url-fetch)
23768 (uri (cran-uri "awsMethods" version))
23769 (sha256
23770 (base32
23771 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
23772 (properties
23773 `((upstream-name . "awsMethods")))
23774 (build-system r-build-system)
23775 (home-page "http://www.wias-berlin.de/software/imaging/")
23776 (synopsis "Class and methods definitions")
23777 (description
23778 "This package defines the generic method @code{extract} and provides
23779 @code{openMP} support as needed in several packages like
23780 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
23781 (license license:gpl2+)))
23782
23783 (define-public r-aws
23784 (package
23785 (name "r-aws")
23786 (version "2.5-1")
23787 (source
23788 (origin
23789 (method url-fetch)
23790 (uri (cran-uri "aws" version))
23791 (sha256
23792 (base32
23793 "1fhm87iax6bkvd4vszvjbcqw3b2drs11rjxr7zf2w4sgc72svaz8"))))
23794 (properties
23795 `((upstream-name . "aws")))
23796 (build-system r-build-system)
23797 (propagated-inputs
23798 `(("r-awsmethods" ,r-awsmethods)
23799 ("r-gsl" ,r-gsl)))
23800 (native-inputs
23801 `(("gfortran" ,gfortran)))
23802 (home-page "https://cran.r-project.org/web/packages/aws/")
23803 (synopsis "Adaptive weights smoothing")
23804 (description
23805 "This package provides a collection of R-functions implementing adaptive
23806 smoothing procedures in 1D, 2D and 3D. This includes the
23807 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
23808 Confidence Intervals} (ICI), variational approaches, and a non-local means
23809 filter.")
23810 (license license:gpl2+)))
23811
23812 (define-public r-sgloptim
23813 (package
23814 (name "r-sgloptim")
23815 (version "1.3.8")
23816 (source
23817 (origin
23818 (method url-fetch)
23819 (uri (cran-uri "sglOptim" version))
23820 (sha256
23821 (base32
23822 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
23823 (properties
23824 `((upstream-name . "sglOptim")))
23825 (build-system r-build-system)
23826 (propagated-inputs
23827 `(("r-bh" ,r-bh)
23828 ("r-doparallel" ,r-doparallel)
23829 ("r-foreach" ,r-foreach)
23830 ("r-matrix" ,r-matrix)
23831 ("r-rcpp" ,r-rcpp)
23832 ("r-rcpparmadillo" ,r-rcpparmadillo)
23833 ("r-rcppprogress" ,r-rcppprogress)))
23834 (native-inputs
23835 `(("r-knitr" ,r-knitr)))
23836 (home-page "https://github.com/nielsrhansen/sglOptim")
23837 (synopsis "Generic sparse group Lasso solver")
23838 (description
23839 "This package provides a fast generic solver for sparse group lasso
23840 optimization problems. The loss (objective) function must be defined in a C++
23841 module. The optimization problem is solved using a coordinate gradient
23842 descent algorithm. Convergence of the algorithm is established and the
23843 algorithm is applicable to a broad class of loss functions. Use of parallel
23844 computing for cross validation and subsampling is supported through the
23845 @code{foreach} and @code{doParallel} packages.")
23846 (license license:gpl2+)))
23847
23848 (define-public r-grouped
23849 (package
23850 (name "r-grouped")
23851 (version "0.6-0")
23852 (source
23853 (origin
23854 (method url-fetch)
23855 (uri (cran-uri "grouped" version))
23856 (sha256
23857 (base32
23858 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
23859 (properties
23860 `((upstream-name . "grouped")))
23861 (build-system r-build-system)
23862 (propagated-inputs
23863 `(("r-mass" ,r-mass)))
23864 (home-page "https://cran.r-project.org/web/packages/grouped/")
23865 (synopsis "Regression analysis of grouped and coarse data")
23866 (description
23867 "This package provides regression models for grouped and coarse data,
23868 under the coarsened at random assumption.")
23869 (license license:gpl2+)))
23870
23871 (define-public r-stam
23872 (package
23873 (name "r-stam")
23874 (version "0.0-1")
23875 (source
23876 (origin
23877 (method url-fetch)
23878 (uri (cran-uri "stam" version))
23879 (sha256
23880 (base32
23881 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
23882 (properties
23883 `((upstream-name . "stam")))
23884 (build-system r-build-system)
23885 (propagated-inputs
23886 `(("r-np" ,r-np)
23887 ("r-sp" ,r-sp)))
23888 (home-page "https://cran.r-project.org/web/packages/stam")
23889 (synopsis "Spatio-temporal analysis and modelling")
23890 (description
23891 "This package provides various methods to conduct Spatio-Temporal
23892 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
23893 Inferred Spatio-Temporal Modelling.")
23894 (license license:gpl2+)))
23895
23896 (define-public r-dcv
23897 (package
23898 (name "r-dcv")
23899 (version "0.1.1")
23900 (source
23901 (origin
23902 (method url-fetch)
23903 (uri (cran-uri "dcv" version))
23904 (sha256
23905 (base32
23906 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
23907 (properties
23908 `((upstream-name . "dcv")))
23909 (build-system r-build-system)
23910 (propagated-inputs
23911 `(("r-lmtest" ,r-lmtest)))
23912 (home-page "https://cran.r-project.org/web/packages/dcv/")
23913 (synopsis "Conventional cross-validation statistics for climate-growth model")
23914 (description
23915 "This package performs several conventional cross-validation statistical
23916 methods for climate-growth model in the climate reconstruction from tree
23917 rings, including Sign Test statistic, Reduction of Error statistic, Product
23918 Mean Test, Durbin-Watson statistic etc.")
23919 (license license:gpl2)))
23920
23921 (define-public r-rcdd
23922 (package
23923 (name "r-rcdd")
23924 (version "1.2-2")
23925 (source
23926 (origin
23927 (method url-fetch)
23928 (uri (cran-uri "rcdd" version))
23929 (sha256
23930 (base32
23931 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
23932 (properties
23933 `((upstream-name . "rcdd")))
23934 (build-system r-build-system)
23935 (inputs
23936 `(("gmp" ,gmp)))
23937 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
23938 (synopsis "Computational geometry")
23939 (description
23940 "This package converts back and forth between two representations of a
23941 convex polytope: as solution of a set of linear equalities and inequalities
23942 and as convex hull of set of points and rays. Also does linear programming
23943 and redundant generator elimination. All functions can use exact
23944 infinite-precision rational arithmetic.")
23945 (license license:gpl2)))
23946
23947 (define-public r-rxnat
23948 (package
23949 (name "r-rxnat")
23950 (version "1.0.14")
23951 (source
23952 (origin
23953 (method url-fetch)
23954 (uri (cran-uri "Rxnat" version))
23955 (sha256
23956 (base32
23957 "00fl68pa0c2vy4xlny67pn41lzgm7b97wgg3dwm6z35izca62l11"))))
23958 (properties
23959 `((upstream-name . "Rxnat")))
23960 (build-system r-build-system)
23961 (propagated-inputs
23962 `(("r-dplyr" ,r-dplyr)
23963 ("r-httr" ,r-httr)
23964 ("r-rcurl" ,r-rcurl)
23965 ("r-tibble" ,r-tibble)))
23966 (native-inputs
23967 `(("r-knitr" ,r-knitr)))
23968 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
23969 (synopsis "Queries and extracts images from neuroimaging datasets")
23970 (description
23971 "This package allows communication with the Extensible Neuroimaging
23972 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
23973 download images.")
23974 (license license:gpl2)))
23975
23976 (define-public r-rserve
23977 (package
23978 (name "r-rserve")
23979 (version "1.8-6")
23980 (source
23981 (origin
23982 (method url-fetch)
23983 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
23984 version ".tar.gz"))
23985 (sha256
23986 (base32
23987 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
23988 (build-system r-build-system)
23989 (arguments
23990 `(#:phases
23991 (modify-phases %standard-phases
23992 (add-before 'install 'install-server-binary
23993 ;; Makevars tries to install to R's store directory.
23994 (lambda* (#:key outputs #:allow-other-keys)
23995 (let* ((out (assoc-ref outputs "out"))
23996 (bin (string-append out "/bin")))
23997 (substitute* "src/Makevars.in"
23998 (("\\$\\(R_HOME\\)") out))
23999 (mkdir-p bin)))))))
24000 (propagated-inputs
24001 `(("r-checkmate" ,r-checkmate)
24002 ("r-mime" ,r-mime)
24003 ("r-jsonlite" ,r-jsonlite)
24004 ("r-knitr" ,r-knitr)
24005 ("r-r6" ,r-r6)
24006 ("r-rcpp" ,r-rcpp)
24007 ("r-uuid" ,r-uuid)))
24008 (inputs
24009 `(("openssl" ,openssl)
24010 ("zlib" ,zlib)))
24011 (home-page "https://github.com/s-u/Rserve")
24012 (synopsis
24013 "Server providing access to R from many languages and systems")
24014 (description
24015 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
24016 binary requests to be sent to R. Every connection has a separate workspace
24017 and working directory. Client-side implementations are available for popular
24018 languages such as C/C++ and Java, allowing any application to use facilities
24019 of R without the need of linking to R code. Rserve supports remote
24020 connection, user authentication and file transfer. A simple R client is
24021 included in this package as well.")
24022 (license license:gpl2)))
24023
24024 (define-public r-gamm4
24025 (package
24026 (name "r-gamm4")
24027 (version "0.2-6")
24028 (source
24029 (origin
24030 (method url-fetch)
24031 (uri (cran-uri "gamm4" version))
24032 (sha256
24033 (base32
24034 "128c725y9s07c1m9cvd9hgi9hldrymcs5divd8pw7bdjh9jvdiap"))))
24035 (properties `((upstream-name . "gamm4")))
24036 (build-system r-build-system)
24037 (propagated-inputs
24038 `(("r-lme4" ,r-lme4)
24039 ("r-matrix" ,r-matrix)
24040 ("r-mgcv" ,r-mgcv)))
24041 (home-page "https://cran.r-project.org/web/packages/gamm4/")
24042 (synopsis "Generalized additive mixed models using mgcv and lme4")
24043 (description
24044 "Estimate generalized additive mixed models via a version of function
24045 @code{gamm} from the @code{mgcv} package, using the @code{lme4} packagefor
24046 estimation.")
24047 (license license:gpl2+)))
24048
24049 (define-public r-optimx
24050 (package
24051 (name "r-optimx")
24052 (version "2020-4.2")
24053 (source
24054 (origin
24055 (method url-fetch)
24056 (uri (cran-uri "optimx" version))
24057 (sha256
24058 (base32
24059 "00bi2sr2hr7x6cfwlsn7hz2r56lcyv9naa8vmfcgr1r269fc50b3"))))
24060 (properties `((upstream-name . "optimx")))
24061 (build-system r-build-system)
24062 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
24063 (native-inputs `(("r-knitr" ,r-knitr)))
24064 (home-page "https://cran.r-project.org/web/packages/optimx/")
24065 (synopsis "Expanded replacement and extension of the optim function")
24066 (description
24067 "This package provides a replacement and extension of the @code{optim}
24068 function to call to several function minimization codes in R in a single
24069 statement. These methods handle smooth, possibly box constrained functions of
24070 several or many parameters. Note that the function @code{optimr} was prepared
24071 to simplify the incorporation of minimization codes going forward. This
24072 package also implements some utility codes and some extra solvers, including
24073 safeguarded Newton methods. Many methods previously separate are now included
24074 here.")
24075 (license license:gpl2)))
24076
24077 (define-public r-projpred
24078 (package
24079 (name "r-projpred")
24080 (version "2.0.2")
24081 (source
24082 (origin
24083 (method url-fetch)
24084 (uri (cran-uri "projpred" version))
24085 (sha256
24086 (base32
24087 "0nx514mrfh3gv854pr71w5x3zgdnn0kinf5nh7z90q3h7ysry2mg"))))
24088 (properties `((upstream-name . "projpred")))
24089 (build-system r-build-system)
24090 (propagated-inputs
24091 `(("r-dplyr" ,r-dplyr)
24092 ("r-gamm4" ,r-gamm4)
24093 ("r-ggplot2" ,r-ggplot2)
24094 ("r-lme4" ,r-lme4)
24095 ("r-loo" ,r-loo)
24096 ("r-magrittr" ,r-magrittr)
24097 ("r-mass" ,r-mass)
24098 ("r-mgcv" ,r-mgcv)
24099 ("r-optimx" ,r-optimx)
24100 ("r-rcpp" ,r-rcpp)
24101 ("r-rcpparmadillo" ,r-rcpparmadillo)
24102 ("r-rngtools" ,r-rngtools)
24103 ("r-rstantools" ,r-rstantools)
24104 ("r-tidyverse" ,r-tidyverse)))
24105 (native-inputs `(("r-knitr" ,r-knitr)))
24106 (home-page "https://mc-stan.org/projpred/")
24107 (synopsis "Projection predictive feature selection")
24108 (description
24109 "This package performs projection predictive feature selection for
24110 generalized linear models and generalized linear and additive multilevel
24111 models. The package is compatible with the @code{rstanarm} and @code{brms}
24112 packages, but other reference models can also be used. See the package
24113 vignette for more information and examples.")
24114 (license license:gpl3)))
24115
24116 (define-public r-brms
24117 (package
24118 (name "r-brms")
24119 (version "2.14.4")
24120 (source
24121 (origin
24122 (method url-fetch)
24123 (uri (cran-uri "brms" version))
24124 (sha256
24125 (base32
24126 "0mzwihhgmn405l6zq11a180q4k3chggj9qj0j7q838b9vrszg59j"))))
24127 (properties `((upstream-name . "brms")))
24128 (build-system r-build-system)
24129 (propagated-inputs
24130 `(("r-abind" ,r-abind)
24131 ("r-backports" ,r-backports)
24132 ("r-bayesplot" ,r-bayesplot)
24133 ("r-bridgesampling" ,r-bridgesampling)
24134 ("r-coda" ,r-coda)
24135 ("r-future" ,r-future)
24136 ("r-ggplot2" ,r-ggplot2)
24137 ("r-glue" ,r-glue)
24138 ("r-loo" ,r-loo)
24139 ("r-matrix" ,r-matrix)
24140 ("r-matrixstats" ,r-matrixstats)
24141 ("r-mgcv" ,r-mgcv)
24142 ("r-nleqslv" ,r-nleqslv)
24143 ("r-nlme" ,r-nlme)
24144 ("r-projpred" ,r-projpred)
24145 ("r-rcpp" ,r-rcpp)
24146 ("r-rstan" ,r-rstan)
24147 ("r-rstantools" ,r-rstantools)
24148 ("r-shinystan" ,r-shinystan)))
24149 (native-inputs `(("r-knitr" ,r-knitr)))
24150 (home-page
24151 "https://github.com/paul-buerkner/brms")
24152 (synopsis
24153 "Bayesian Regression Models using 'Stan'")
24154 (description
24155 "Fit Bayesian generalized (non-)linear multivariate multilevel models
24156 using 'Stan' for full Bayesian inference. A wide range of distributions and
24157 link functions are supported, allowing users to fit -- among others -- linear,
24158 robust linear, count data, survival, response times, ordinal, zero-inflated,
24159 hurdle, and even self-defined mixture models all in a multilevel context.
24160 Further modeling options include non-linear and smooth terms, auto-correlation
24161 structures, censored data, meta-analytic standard errors, and quite a few
24162 more. In addition, all parameters of the response distribution can be
24163 predicted in order to perform distributional regression. Prior specifications
24164 are flexible and explicitly encourage users to apply prior distributions that
24165 actually reflect their beliefs. Model fit can easily be assessed and compared
24166 with posterior predictive checks and leave-one-out cross-validation.")
24167 (license license:gpl2)))
24168
24169 (define-public r-mstate
24170 (package
24171 (name "r-mstate")
24172 (version "0.3.1")
24173 (source
24174 (origin
24175 (method url-fetch)
24176 (uri (cran-uri "mstate" version))
24177 (sha256
24178 (base32
24179 "11i3p7fph8nbnfis1m7rdrq32qryaajv2wrkxk1x6k17zkh4rq6i"))))
24180 (properties `((upstream-name . "mstate")))
24181 (build-system r-build-system)
24182 (propagated-inputs
24183 `(("r-data-table" ,r-data-table)
24184 ("r-lattice" ,r-lattice)
24185 ("r-magrittr" ,r-magrittr)
24186 ("r-rcolorbrewer" ,r-rcolorbrewer)
24187 ("r-rlang" ,r-rlang)
24188 ("r-survival" ,r-survival)
24189 ("r-viridis" ,r-viridis)))
24190 (native-inputs
24191 `(("r-knitr" ,r-knitr)))
24192 (home-page
24193 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
24194 (synopsis
24195 "Data Preparation, Estimation and Prediction in Multi-State Models")
24196 (description
24197 "Contains functions for data preparation, descriptives, hazard estimation
24198 and prediction with Aalen-Johansen or simulation in competing risks and
24199 multi-state models.")
24200 (license license:gpl2+)))
24201
24202 (define-public r-scatterpie
24203 (package
24204 (name "r-scatterpie")
24205 (version "0.1.5")
24206 (source
24207 (origin
24208 (method url-fetch)
24209 (uri (cran-uri "scatterpie" version))
24210 (sha256
24211 (base32
24212 "0h48l0699lpfagv09f53yismir84945m56qwzk52lc7wxyvkfcp1"))))
24213 (properties `((upstream-name . "scatterpie")))
24214 (build-system r-build-system)
24215 (propagated-inputs
24216 `(("r-ggforce" ,r-ggforce)
24217 ("r-ggplot2" ,r-ggplot2)
24218 ("r-rlang" ,r-rlang)
24219 ("r-rvcheck" ,r-rvcheck)
24220 ("r-tidyr" ,r-tidyr)))
24221 (native-inputs
24222 `(("r-knitr" ,r-knitr)))
24223 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
24224 (synopsis "Scatter pie plot")
24225 (description
24226 "This package creates scatterpie plots, especially useful for plotting
24227 pies on a map.")
24228 (license license:artistic2.0)))
24229
24230 (define-public r-scrypt
24231 (package
24232 (name "r-scrypt")
24233 (version "0.1.3")
24234 (source
24235 (origin
24236 (method url-fetch)
24237 (uri (cran-uri "scrypt" version))
24238 (sha256
24239 (base32
24240 "14iblgbp9v2by8fjbrpsd59iknp5babcz7j3yv1yxxzcwyb6wrrm"))))
24241 (properties `((upstream-name . "scrypt")))
24242 (build-system r-build-system)
24243 (propagated-inputs
24244 `(("r-rcpp" ,r-rcpp)))
24245 (home-page "https://github.com/rstudio/rscrypt")
24246 (synopsis "Key derivation functions for R based on Scrypt")
24247 (description
24248 "This package provides functions for working with the scrypt key
24249 derivation functions. Scrypt is a password-based key derivation function
24250 created by Colin Percival. The algorithm was specifically designed to make it
24251 costly to perform large-scale custom hardware attacks by requiring large
24252 amounts of memory.")
24253 (license license:bsd-2)))
24254
24255 (define-public r-boruta
24256 (package
24257 (name "r-boruta")
24258 (version "7.0.0")
24259 (source
24260 (origin
24261 (method url-fetch)
24262 (uri (cran-uri "Boruta" version))
24263 (sha256
24264 (base32
24265 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
24266 (properties `((upstream-name . "Boruta")))
24267 (build-system r-build-system)
24268 (propagated-inputs `(("r-ranger" ,r-ranger)))
24269 (home-page "https://gitlab.com/mbq/Boruta/")
24270 (synopsis "Wrapper algorithm for all relevant feature selection")
24271 (description
24272 "This package provides an all relevant feature selection wrapper
24273 algorithm. It finds relevant features by comparing original attributes'
24274 importance with importance achievable at random, estimated using their
24275 permuted copies (shadows).")
24276 (license license:gpl2+)))
24277
24278 (define-public r-directlabels
24279 (package
24280 (name "r-directlabels")
24281 (version "2021.1.13")
24282 (source
24283 (origin
24284 (method url-fetch)
24285 (uri (cran-uri "directlabels" version))
24286 (sha256
24287 (base32
24288 "0415kh9k2qzdwi8zb32fh2icl5wf5335kyj11cyfdmfxji39zv2w"))))
24289 (build-system r-build-system)
24290 (propagated-inputs
24291 `(("r-quadprog" ,r-quadprog)))
24292 (native-inputs
24293 `(("r-knitr" ,r-knitr)))
24294 (home-page "http://directlabels.r-forge.r-project.org/")
24295 (synopsis "Direct labels for multicolor plots")
24296 (description
24297 "This package provides an extensible framework for automatically placing
24298 direct labels onto multicolor plots. Label positions are described using
24299 positioning methods that can be re-used across several different plots. There
24300 are heuristics for examining @code{trellis} and @code{ggplot} objects and
24301 inferring an appropriate positioning method.")
24302 (license license:gpl3)))
24303
24304 (define-public r-lsd
24305 (package
24306 (name "r-lsd")
24307 (version "4.1-0")
24308 (source
24309 (origin
24310 (method url-fetch)
24311 (uri (cran-uri "LSD" version))
24312 (sha256
24313 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
24314 (properties `((upstream-name . "LSD")))
24315 (build-system r-build-system)
24316 (home-page "https://cran.r-project.org/web/packages/LSD/")
24317 (synopsis "Lots of superior depictions tool creates colorful plots")
24318 (description
24319 "This package creates lots of colorful plots in a multitude of variations.
24320 Try a demo of the LSD by running @code{demotour()}.")
24321 ;; Either version
24322 (license (list license:gpl2 license:gpl3))))
24323
24324 (define-public r-phylogram
24325 (package
24326 (name "r-phylogram")
24327 (version "2.1.0")
24328 (source
24329 (origin
24330 (method url-fetch)
24331 (uri (cran-uri "phylogram" version))
24332 (sha256
24333 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
24334 (properties `((upstream-name . "phylogram")))
24335 (build-system r-build-system)
24336 (propagated-inputs `(("r-ape" ,r-ape)))
24337 (home-page "https://github.com/ropensci/phylogram/")
24338 (synopsis "Dendrograms for evolutionary analysis")
24339 (description
24340 "The @code{r-phylogram} package is a tool for for developing phylogenetic
24341 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
24342 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
24343 as well as several tools for command-line tree manipulation and import/export
24344 via Newick parenthetic text. This improves accessibility to the comprehensive
24345 range of object-specific analytical and tree-visualization functions found
24346 across a wide array of bioinformatic R packages.")
24347 (license license:gpl3)))
24348
24349 (define-public r-kmer
24350 (package
24351 (name "r-kmer")
24352 (version "1.1.2")
24353 (source
24354 (origin
24355 (method url-fetch)
24356 (uri (cran-uri "kmer" version))
24357 (sha256
24358 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
24359 (properties `((upstream-name . "kmer")))
24360 (build-system r-build-system)
24361 (propagated-inputs
24362 `(("r-openssl" ,r-openssl)
24363 ("r-phylogram" ,r-phylogram)
24364 ("r-rcpp" ,r-rcpp)))
24365 (home-page "https://github.com/shaunpwilkinson/kmer/")
24366 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
24367 (description
24368 "@code{r-kmer} is an R package for rapidly computing distance matrices
24369 and clustering large sequence datasets using fast alignment-free k-mer
24370 counting and recursive k-means partitioning.")
24371 (license license:gpl3)))
24372
24373 (define-public r-hardhat
24374 (package
24375 (name "r-hardhat")
24376 (version "0.1.5")
24377 (source
24378 (origin
24379 (method url-fetch)
24380 (uri (cran-uri "hardhat" version))
24381 (sha256
24382 (base32
24383 "1b7f9i9fy39j9n03g40vd6nzgq9fgq914xg3svf84najlknvjzly"))))
24384 (properties `((upstream-name . "hardhat")))
24385 (build-system r-build-system)
24386 (propagated-inputs
24387 `(("r-glue" ,r-glue)
24388 ("r-rlang" ,r-rlang)
24389 ("r-tibble" ,r-tibble)
24390 ("r-vctrs" ,r-vctrs)))
24391 (native-inputs
24392 `(("r-knitr" ,r-knitr)))
24393 (home-page "https://github.com/tidymodels/hardhat")
24394 (synopsis "Construct modeling packages")
24395 (description
24396 "Building modeling packages is hard. A large amount of effort generally
24397 goes into providing an implementation for a new method that is efficient,
24398 fast, and correct, but often less emphasis is put on the user interface. A
24399 good interface requires specialized knowledge about S3 methods and formulas,
24400 which the average package developer might not have. The goal of
24401 @code{hardhat} is to reduce the burden around building new modeling packages
24402 by providing functionality for preprocessing, predicting, and validating
24403 input.")
24404 (license license:expat)))
24405
24406 (define-public r-lightgbm
24407 (package
24408 (name "r-lightgbm")
24409 (version "3.1.1")
24410 (source
24411 (origin
24412 (method url-fetch)
24413 (uri (cran-uri "lightgbm" version))
24414 (sha256
24415 (base32
24416 "1pwsh6j9ksahh58b15j5ij56bsc6syy3z4k4a5zhy5n7829rz555"))))
24417 (properties `((upstream-name . "lightgbm")))
24418 (build-system r-build-system)
24419 (propagated-inputs
24420 `(("r-data-table" ,r-data-table)
24421 ("r-jsonlite" ,r-jsonlite)
24422 ("r-matrix" ,r-matrix)
24423 ("r-r6" ,r-r6)))
24424 (home-page "https://github.com/Microsoft/LightGBM")
24425 (synopsis "Light gradient boosting machine")
24426 (description
24427 "Tree based algorithms can be improved by introducing boosting
24428 frameworks. LightGBM is one such framework, based on Ke, Guolin et
24429 al. (2017). This package offers an R interface to work with it. It is
24430 designed to be distributed and efficient with the following goals:
24431
24432 @enumerate
24433 @item Faster training speed and higher efficiency;
24434 @item lower memory usage;
24435 @item better accuracy;
24436 @item parallel learning supported; and
24437 @item capable of handling large-scale data.
24438 @end enumerate
24439 ")
24440 (license license:expat)))
24441
24442 (define-public r-shapforxgboost
24443 (package
24444 (name "r-shapforxgboost")
24445 (version "0.1.0")
24446 (source
24447 (origin
24448 (method url-fetch)
24449 (uri (cran-uri "SHAPforxgboost" version))
24450 (sha256
24451 (base32
24452 "0jgyss9bawl7sf4dwa75sn7ld3mvrrr0z2074lbkq3f5qb9gwsly"))))
24453 (properties
24454 `((upstream-name . "SHAPforxgboost")))
24455 (build-system r-build-system)
24456 (propagated-inputs
24457 `(("r-bbmisc" ,r-bbmisc)
24458 ("r-data-table" ,r-data-table)
24459 ("r-ggextra" ,r-ggextra)
24460 ("r-ggforce" ,r-ggforce)
24461 ("r-ggplot2" ,r-ggplot2)
24462 ("r-ggpubr" ,r-ggpubr)
24463 ("r-lightgbm" ,r-lightgbm)
24464 ("r-rcolorbrewer" ,r-rcolorbrewer)
24465 ("r-xgboost" ,r-xgboost)))
24466 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
24467 (synopsis "SHAP Plots for XGBoost")
24468 (description
24469 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
24470 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
24471 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
24472 and force plot. It relies on the @code{XGBoost} package to produce SHAP
24473 values.")
24474 (license license:expat)))
24475
24476 (define-public r-rismed
24477 (package
24478 (name "r-rismed")
24479 (version "2.2")
24480 (source
24481 (origin
24482 (method url-fetch)
24483 (uri (cran-uri "RISmed" version))
24484 (sha256
24485 (base32
24486 "0nwixhngi4r2f73362salivsmsf7l52bm13jqvhdq8mfiigm80vd"))))
24487 (properties `((upstream-name . "RISmed")))
24488 (build-system r-build-system)
24489 (home-page "https://cran.r-project.org/web/packages/RISmed")
24490 (synopsis "Download content from NCBI databases")
24491 (description
24492 "This package provides a set of tools to extract bibliographic
24493 content from the National Center for Biotechnology Information (NCBI)
24494 databases, including PubMed. The name RISmed is a portmanteau of
24495 RIS (for Research Information Systems, a common tag format for
24496 bibliographic data) and PubMed.")
24497 (license license:gpl2+)))
24498
24499 (define-public r-semver
24500 (package
24501 (name "r-semver")
24502 (version "0.2.0")
24503 (source
24504 (origin
24505 (method url-fetch)
24506 (uri (cran-uri "semver" version))
24507 (sha256
24508 (base32
24509 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
24510 (properties `((upstream-name . "semver")))
24511 (build-system r-build-system)
24512 (propagated-inputs
24513 `(("r-assertthat" ,r-assertthat)
24514 ("r-rcpp" ,r-rcpp)))
24515 (native-inputs `(("r-knitr" ,r-knitr)))
24516 (home-page "https://github.com/johndharrison/semver")
24517 (synopsis "Parser for Semantic Versioning 2.0.0")
24518 (description
24519 "This package provides tools and functions for parsing, rendering and
24520 operating on semantic version strings. Semantic versioning is a simple set of
24521 rules and requirements that dictate how version numbers are assigned and
24522 incremented as outlined at @url{http://semver.org}.")
24523 (license license:expat)))
24524
24525 (define-public r-binman
24526 (package
24527 (name "r-binman")
24528 (version "0.1.2")
24529 (source
24530 (origin
24531 (method url-fetch)
24532 (uri (cran-uri "binman" version))
24533 (sha256
24534 (base32
24535 "00l7m98h41r67gf0qxqis3vx63j7wylnk9vlgcyk41szkrz8ikkc"))))
24536 (properties `((upstream-name . "binman")))
24537 (build-system r-build-system)
24538 (propagated-inputs
24539 `(("r-assertthat" ,r-assertthat)
24540 ("r-httr" ,r-httr)
24541 ("r-jsonlite" ,r-jsonlite)
24542 ("r-rappdirs" ,r-rappdirs)
24543 ("r-semver" ,r-semver)
24544 ("r-xml2" ,r-xml2)
24545 ("r-yaml" ,r-yaml)))
24546 (native-inputs `(("r-knitr" ,r-knitr)))
24547 (home-page "https://github.com/ropensci/binman")
24548 (synopsis "Binary download manager")
24549 (description
24550 "This package provides tools and functions for managing the download of
24551 binary files. Binary repositories are defined in the YAML format. Defining
24552 new pre-download, download and post-download templates allow additional
24553 repositories to be added.")
24554 (license license:expat)))
24555
24556 (define-public r-wdman
24557 (package
24558 (name "r-wdman")
24559 (version "0.2.5")
24560 (source
24561 (origin
24562 (method url-fetch)
24563 (uri (cran-uri "wdman" version))
24564 (sha256
24565 (base32
24566 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
24567 (properties `((upstream-name . "wdman")))
24568 (build-system r-build-system)
24569 (propagated-inputs
24570 `(("r-assertthat" ,r-assertthat)
24571 ("r-binman" ,r-binman)
24572 ("r-processx" ,r-processx)
24573 ("r-semver" ,r-semver)
24574 ("r-yaml" ,r-yaml)))
24575 (native-inputs `(("r-knitr" ,r-knitr)))
24576 (home-page "https://docs.ropensci.org/wdman/")
24577 (synopsis "Webdriver/Selenium binary manager")
24578 (description
24579 "There are a number of binary files associated with the
24580 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
24581 @url{https://sites.google.com/a/chromium.org/chromedriver/},
24582 @url{https://github.com/mozilla/geckodriver},
24583 @url{http://phantomjs.org/download.html}, and
24584 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
24585 more information). This package provides functions to download these binaries
24586 and to manage processes involving them.")
24587 (license license:expat)))
24588
24589 (define-public r-rselenium
24590 (package
24591 (name "r-rselenium")
24592 (version "1.7.7")
24593 (source
24594 (origin
24595 (method url-fetch)
24596 (uri (cran-uri "RSelenium" version))
24597 (sha256
24598 (base32
24599 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
24600 (properties `((upstream-name . "RSelenium")))
24601 (build-system r-build-system)
24602 (propagated-inputs
24603 `(("r-binman" ,r-binman)
24604 ("r-catools" ,r-catools)
24605 ("r-httr" ,r-httr)
24606 ("r-openssl" ,r-openssl)
24607 ("r-wdman" ,r-wdman)
24608 ("r-xml" ,r-xml)))
24609 (native-inputs `(("r-knitr" ,r-knitr)))
24610 (home-page "https://docs.ropensci.org/RSelenium/")
24611 (synopsis "R bindings for Selenium WebDriver")
24612 (description
24613 "This package provides a set of R bindings for the Selenium 2.0
24614 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
24615 information) using the @code{JsonWireProtocol} (see
24616 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
24617 information). Selenium 2.0 WebDriver allows driving a web browser natively as
24618 a user would either locally or on a remote machine using the Selenium server
24619 it marks a leap forward in terms of web browser automation. Selenium
24620 automates web browsers (commonly referred to as browsers). Using RSelenium
24621 you can automate browsers locally or remotely.")
24622 (license license:agpl3+)))
24623
24624 (define-public r-conquer
24625 (package
24626 (name "r-conquer")
24627 (version "1.0.2")
24628 (source
24629 (origin
24630 (method url-fetch)
24631 (uri (cran-uri "conquer" version))
24632 (sha256
24633 (base32
24634 "1zvlsrbmrij011mcdi3qngs1al2lhrdiyknxnk0w1zhzrra62bsl"))))
24635 (properties `((upstream-name . "conquer")))
24636 (build-system r-build-system)
24637 (propagated-inputs
24638 `(("r-matrix" ,r-matrix)
24639 ("r-matrixstats" ,r-matrixstats)
24640 ("r-rcpp" ,r-rcpp)
24641 ("r-rcpparmadillo" ,r-rcpparmadillo)))
24642 (home-page "https://github.com/XiaoouPan/conquer")
24643 (synopsis "Convolution-type smoothed quantile regression")
24644 (description
24645 "This package provides fast and accurate convolution-type smoothed
24646 quantile regression, implemented using Barzilai-Borwein gradient descent with
24647 a Huber regression warm start. Confidence intervals for regression
24648 coefficients are constructed using multiplier bootstrap.")
24649 (license license:gpl3)))
24650
24651 (define-public r-fastshap
24652 (package
24653 (name "r-fastshap")
24654 (version "0.0.5")
24655 (source
24656 (origin
24657 (method url-fetch)
24658 (uri (cran-uri "fastshap" version))
24659 (sha256
24660 (base32
24661 "08f25ib5mry6h8lvj0g3clc9kfl5g2wdd8x8bw455wwmbcm6x5vg"))))
24662 (properties `((upstream-name . "fastshap")))
24663 (build-system r-build-system)
24664 (propagated-inputs
24665 `(("r-abind" ,r-abind)
24666 ("r-ggplot2" ,r-ggplot2)
24667 ("r-gridextra" ,r-gridextra)
24668 ("r-matrixstats" ,r-matrixstats)
24669 ("r-plyr" ,r-plyr)
24670 ("r-rcpp" ,r-rcpp)
24671 ("r-rcpparmadillo" ,r-rcpparmadillo)
24672 ("r-tibble" ,r-tibble)))
24673 (home-page "https://github.com/bgreenwell/fastshap")
24674 (synopsis "Fast approximate Shapley values")
24675 (description
24676 "This package computes fast (relative to other implementations)
24677 approximate Shapley values for any supervised learning model. Shapley values
24678 help to explain the predictions from any black box model using ideas from game
24679 theory; see @url{Strumbel and Kononenko (2014),
24680 doi.org/10.1007/s10115-013-0679-x} for details.")
24681 (license license:gpl2+)))
24682
24683 (define-public r-metrics
24684 (package
24685 (name "r-metrics")
24686 (version "0.1.4")
24687 (source
24688 (origin
24689 (method url-fetch)
24690 (uri (cran-uri "Metrics" version))
24691 (sha256
24692 (base32
24693 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
24694 (properties `((upstream-name . "Metrics")))
24695 (build-system r-build-system)
24696 (home-page "https://github.com/mfrasco/Metrics")
24697 (synopsis "Evaluation metrics for machine learning")
24698 (description
24699 "This package provides an implementation of evaluation metrics in R that
24700 are commonly used in supervised machine learning. It implements metrics for
24701 regression, time series, binary classification, classification, and
24702 information retrieval problems. It has zero dependencies and a consistent,
24703 simple interface for all functions.")
24704 (license license:bsd-3)))
24705
24706 (define-public r-iml
24707 (package
24708 (name "r-iml")
24709 (version "0.10.0")
24710 (source
24711 (origin
24712 (method url-fetch)
24713 (uri (cran-uri "iml" version))
24714 (sha256
24715 (base32
24716 "0xm3q42qahq798ilgg050df0mahhbdfd3fx3i7cpx606h38si0x7"))))
24717 (properties `((upstream-name . "iml")))
24718 (build-system r-build-system)
24719 (propagated-inputs
24720 `(("r-checkmate" ,r-checkmate)
24721 ("r-data-table" ,r-data-table)
24722 ("r-formula" ,r-formula)
24723 ("r-future" ,r-future)
24724 ("r-future-apply" ,r-future-apply)
24725 ("r-ggplot2" ,r-ggplot2)
24726 ("r-gridextra" ,r-gridextra)
24727 ("r-metrics" ,r-metrics)
24728 ("r-prediction" ,r-prediction)
24729 ("r-r6" ,r-r6)))
24730 (native-inputs `(("r-knitr" ,r-knitr)))
24731 (home-page "https://github.com/christophM/iml")
24732 (synopsis "Interpretable machine learning")
24733 (description
24734 "This package provides interpretability methods to analyze the behavior
24735 and predictions of any machine learning model. Implemented methods are:
24736
24737 @itemize
24738 @item Feature importance described by Fisher et al. (2018),
24739 @item accumulated local effects plots described by Apley (2018),
24740 @item partial dependence plots described by Friedman (2001),
24741 @item individual conditional expectation ('ice') plots described by Goldstein
24742 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
24743 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
24744 @item the Shapley Value described by Strumbelj et. al (2014)
24745 @url{https://doi.org/10.1007/s10115-013-0679-x},
24746 @item feature interactions described by Friedman et. al
24747 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
24748 @end itemize
24749 ")
24750 (license license:expat)))
24751
24752 (define-public r-goftest
24753 (package
24754 (name "r-goftest")
24755 (version "1.2-2")
24756 (source
24757 (origin
24758 (method url-fetch)
24759 (uri (cran-uri "goftest" version))
24760 (sha256
24761 (base32
24762 "0ivnkqhv5xgiv05dm648nngacymd8x8g0fyppv3bc0mhcqk9k5z4"))))
24763 (properties `((upstream-name . "goftest")))
24764 (build-system r-build-system)
24765 (home-page "https://github.com/baddstats/goftest")
24766 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
24767 (description
24768 "This package provides Cramer-Von Mises and Anderson-Darling tests of
24769 goodness-of-fit for continuous univariate distributions, using efficient
24770 algorithms.")
24771 (license license:gpl2+)))
24772
24773 (define-public r-tensor
24774 (package
24775 (name "r-tensor")
24776 (version "1.5")
24777 (source
24778 (origin
24779 (method url-fetch)
24780 (uri (cran-uri "tensor" version))
24781 (sha256
24782 (base32
24783 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
24784 (properties `((upstream-name . "tensor")))
24785 (build-system r-build-system)
24786 (home-page "https://cran.r-project.org/web/packages/tensor/")
24787 (synopsis "Tensor product of arrays")
24788 (description
24789 "The tensor product of two arrays is notionally an outer product of the
24790 arrays collapsed in specific extents by summing along the appropriate
24791 diagonals. This package allows you to compute the tensor product of arrays.")
24792 (license license:gpl2+)))
24793
24794 (define-public r-spatstat-utils
24795 (package
24796 (name "r-spatstat-utils")
24797 (version "2.0-0")
24798 (source
24799 (origin
24800 (method url-fetch)
24801 (uri (cran-uri "spatstat.utils" version))
24802 (sha256
24803 (base32
24804 "1li0vksxpkvgyx3j2wi40kj5687vwakkfdix6icm6g01a0lb2m5d"))))
24805 (properties
24806 `((upstream-name . "spatstat.utils")))
24807 (build-system r-build-system)
24808 (home-page "http://www.spatstat.org")
24809 (synopsis "Utility functions for spatstat")
24810 (description
24811 "This package contains utility functions for the @code{spatstat} package
24812 which may also be useful for other purposes.")
24813 (license license:gpl2+)))
24814
24815 (define-public r-spatstat-sparse
24816 (package
24817 (name "r-spatstat-sparse")
24818 (version "1.2-1")
24819 (source
24820 (origin
24821 (method url-fetch)
24822 (uri (cran-uri "spatstat.sparse" version))
24823 (sha256
24824 (base32
24825 "1w312q7gxzchigxxzk9akscdsz66j5085lgjryamschjgp4f8yk2"))))
24826 (properties
24827 `((upstream-name . "spatstat.sparse")))
24828 (build-system r-build-system)
24829 (propagated-inputs
24830 `(("r-abind" ,r-abind)
24831 ("r-matrix" ,r-matrix)
24832 ("r-spatstat-utils" ,r-spatstat-utils)
24833 ("r-tensor" ,r-tensor)))
24834 (home-page "http://spatstat.org/")
24835 (synopsis "Sparse three-dimensional arrays and linear algebra utilities")
24836 (description
24837 "This package defines sparse three-dimensional arrays and supports
24838 standard operations on them. The package also includes utility functions for
24839 matrix calculations that are common in statistics, such as quadratic forms.")
24840 (license license:gpl2+)))
24841
24842 (define-public r-spatstat-data
24843 (package
24844 (name "r-spatstat-data")
24845 (version "2.0-0")
24846 (source
24847 (origin
24848 (method url-fetch)
24849 (uri (cran-uri "spatstat.data" version))
24850 (sha256
24851 (base32
24852 "1z1jb1yzb7qhfg55dhzcrdvn5x8hpg9xif0hpnapddbmhxd1hbb7"))))
24853 (properties `((upstream-name . "spatstat.data")))
24854 (build-system r-build-system)
24855 (propagated-inputs
24856 `(("r-matrix" ,r-matrix)
24857 ("r-spatstat-utils" ,r-spatstat-utils)))
24858 (home-page "http://www.spatstat.org")
24859 (synopsis "Datasets for spatstat")
24860 (description
24861 "This package contains all the datasets for the @code{spatstat}
24862 package.")
24863 (license license:gpl2+)))
24864
24865 (define-public r-spatstat-geom
24866 (package
24867 (name "r-spatstat-geom")
24868 (version "1.65-5")
24869 (source
24870 (origin
24871 (method url-fetch)
24872 (uri (cran-uri "spatstat.geom" version))
24873 (sha256
24874 (base32
24875 "0g0m5b3nbzpyblbp77n56k6aiw3fn23jkk72h9fhqlg1ydn2fzpk"))))
24876 (properties `((upstream-name . "spatstat.geom")))
24877 (build-system r-build-system)
24878 (propagated-inputs
24879 `(("r-deldir" ,r-deldir)
24880 ("r-polyclip" ,r-polyclip)
24881 ("r-spatstat-data" ,r-spatstat-data)
24882 ("r-spatstat-sparse" ,r-spatstat-sparse)
24883 ("r-spatstat-utils" ,r-spatstat-utils)))
24884 (home-page "http://spatstat.org/")
24885 (synopsis "Geometrical functionality of the spatstat package")
24886 (description
24887 "This is a subset of the original spatstat package, containing the
24888 user-level code from spatstat which performs geometrical operations, except
24889 for the geometry of linear networks.")
24890 (license license:gpl2+)))
24891
24892 (define-public r-spatstat-core
24893 (package
24894 (name "r-spatstat-core")
24895 (version "1.65-5")
24896 (source
24897 (origin
24898 (method url-fetch)
24899 (uri (cran-uri "spatstat.core" version))
24900 (sha256
24901 (base32
24902 "0wq61sd53hwyk3fzjdc2prrr66n67zbwb5i3ii7kvyhfwx0xikm3"))))
24903 (properties `((upstream-name . "spatstat.core")))
24904 (build-system r-build-system)
24905 (propagated-inputs
24906 `(("r-abind" ,r-abind)
24907 ("r-goftest" ,r-goftest)
24908 ("r-matrix" ,r-matrix)
24909 ("r-mgcv" ,r-mgcv)
24910 ("r-nlme" ,r-nlme)
24911 ("r-rpart" ,r-rpart)
24912 ("r-spatstat-data" ,r-spatstat-data)
24913 ("r-spatstat-geom" ,r-spatstat-geom)
24914 ("r-spatstat-sparse" ,r-spatstat-sparse)
24915 ("r-spatstat-utils" ,r-spatstat-utils)
24916 ("r-tensor" ,r-tensor)))
24917 (home-page "http://spatstat.org/")
24918 (synopsis "Core functionality of the spatstat package")
24919 (description
24920 "This is a subset of the original spatstat package, containing all of the
24921 user-level code from spatstat, except for the code for linear networks.")
24922 (license license:gpl2+)))
24923
24924 (define-public r-spatstat-linnet
24925 (package
24926 (name "r-spatstat-linnet")
24927 (version "1.65-3")
24928 (source
24929 (origin
24930 (method url-fetch)
24931 (uri (cran-uri "spatstat.linnet" version))
24932 (sha256
24933 (base32
24934 "1y088r26h5yv006ydgcb4iwpvnc7ql857gky0hbi7xqqciqr8wdv"))))
24935 (properties
24936 `((upstream-name . "spatstat.linnet")))
24937 (build-system r-build-system)
24938 (propagated-inputs
24939 `(("r-matrix" ,r-matrix)
24940 ("r-spatstat-core" ,r-spatstat-core)
24941 ("r-spatstat-data" ,r-spatstat-data)
24942 ("r-spatstat-geom" ,r-spatstat-geom)
24943 ("r-spatstat-utils" ,r-spatstat-utils)))
24944 (home-page "http://spatstat.org/")
24945 (synopsis "Linear networks functionality of the spatstat package")
24946 (description
24947 "This is a subset of the spatstat package, containing its functionality
24948 for spatial data on a linear network.")
24949 (license license:gpl2+)))
24950
24951 (define-public r-spatstat
24952 (package
24953 (name "r-spatstat")
24954 (version "1.64-1")
24955 (source
24956 (origin
24957 (method url-fetch)
24958 (uri (cran-uri "spatstat" version))
24959 (sha256
24960 (base32
24961 "06jmxfs9kz9qqi3ichfgn8dglwb87kq2nl578p83za5psv8cfgya"))))
24962 (properties `((upstream-name . "spatstat")))
24963 (build-system r-build-system)
24964 (propagated-inputs
24965 `(("r-abind" ,r-abind)
24966 ("r-deldir" ,r-deldir)
24967 ("r-goftest" ,r-goftest)
24968 ("r-matrix" ,r-matrix)
24969 ("r-mgcv" ,r-mgcv)
24970 ("r-nlme" ,r-nlme)
24971 ("r-polyclip" ,r-polyclip)
24972 ("r-rpart" ,r-rpart)
24973 ("r-spatstat-data" ,r-spatstat-data)
24974 ("r-spatstat-utils" ,r-spatstat-utils)
24975 ("r-tensor" ,r-tensor)))
24976 (home-page "http://www.spatstat.org")
24977 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
24978 (description
24979 "This package provides a comprehensive toolbox for analysing Spatial
24980 Point Patterns. It is focused mainly on two-dimensional point patterns,
24981 including multitype/marked points, in any spatial region. It also supports
24982 three-dimensional point patterns, space-time point patterns in any number of
24983 dimensions, point patterns on a linear network, and patterns of other
24984 geometrical objects. It supports spatial covariate data such as pixel images
24985 and contains over 2000 functions for plotting spatial data, exploratory data
24986 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
24987 formal inference.")
24988 (license license:gpl2+)))
24989
24990 (define-public r-gaston
24991 (package
24992 (name "r-gaston")
24993 (version "1.5.7")
24994 (source
24995 (origin
24996 (method url-fetch)
24997 (uri (cran-uri "gaston" version))
24998 (sha256
24999 (base32
25000 "14z94dpln4dvgrv2w7w9ik7h6rpvbf02qhq1hqzx8c2cndzxr21i"))))
25001 (properties `((upstream-name . "gaston")))
25002 (build-system r-build-system)
25003 (inputs `(("zlib" ,zlib)))
25004 (propagated-inputs
25005 `(("r-rcpp" ,r-rcpp)
25006 ("r-rcppeigen" ,r-rcppeigen)
25007 ("r-rcppparallel" ,r-rcppparallel)))
25008 (native-inputs `(("r-knitr" ,r-knitr)))
25009 (home-page "https://cran.r-project.org/web/packages/gaston/")
25010 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
25011 (description
25012 "This is a package for the manipulation of genetic data (SNPs).
25013 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
25014 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
25015 for linear mixed models (AIREML).")
25016 (license license:gpl3)))
25017
25018 (define-public r-cpp11
25019 (package
25020 (name "r-cpp11")
25021 (version "0.2.6")
25022 (source
25023 (origin
25024 (method url-fetch)
25025 (uri (cran-uri "cpp11" version))
25026 (sha256
25027 (base32
25028 "118i8s7978vl9xyhnb47wcbd6rcc6b958mq2w8s3rdsd4pxv62gz"))))
25029 (properties `((upstream-name . "cpp11")))
25030 (build-system r-build-system)
25031 (native-inputs `(("r-knitr" ,r-knitr)))
25032 (home-page "https://github.com/r-lib/cpp11")
25033 (synopsis "C++11 Interface for R's C Interface")
25034 (description
25035 "This package provides a header only, C++11 interface to R's C interface.
25036 Compared to other approaches @code{cpp11} strives to be safe against long
25037 jumps from the C API as well as C++ exceptions, conform to normal R function
25038 semantics and supports interaction with @code{ALTREP} vectors.")
25039 (license license:expat)))
25040
25041 (define-public r-rcppziggurat
25042 (package
25043 (name "r-rcppziggurat")
25044 (version "0.1.6")
25045 (source
25046 (origin
25047 (method url-fetch)
25048 (uri (cran-uri "RcppZiggurat" version))
25049 (sha256
25050 (base32
25051 "0wgd1v2p7zajnbrjf3hfi56p3pk3ld6iwkanbb04bjbnlif2ay4w"))))
25052 (properties `((upstream-name . "RcppZiggurat")))
25053 (build-system r-build-system)
25054 (propagated-inputs
25055 `(("r-rcpp" ,r-rcpp)
25056 ("r-rcppgsl" ,r-rcppgsl)))
25057 (native-inputs `(("r-knitr" ,r-knitr)))
25058 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
25059 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
25060 (description
25061 "The Ziggurat generator for normally distributed random numbers,
25062 originally proposed by Marsaglia and Tsang (2000,
25063 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
25064 times starting with Leong et al (2005,
25065 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
25066 aggregation for comparing different implementations in order to provide a
25067 'faster but good enough' alternative for use with R and C++ code.")
25068 (license license:gpl2+)))
25069
25070 (define-public r-rfast
25071 (package
25072 (name "r-rfast")
25073 (version "2.0.1")
25074 (source
25075 (origin
25076 (method url-fetch)
25077 (uri (cran-uri "Rfast" version))
25078 (sha256
25079 (base32
25080 "1cq3mcg49hsvqhwn6f4dgsx7f8ma4qnwr5n6s7m22qy57rg31958"))))
25081 (properties `((upstream-name . "Rfast")))
25082 (build-system r-build-system)
25083 (propagated-inputs
25084 `(("r-rcpp" ,r-rcpp)
25085 ("r-rcpparmadillo" ,r-rcpparmadillo)
25086 ("r-rcppziggurat" ,r-rcppziggurat)))
25087 (home-page "https://github.com/RfastOfficial/Rfast")
25088 (synopsis "Collection of efficient and fast R functions")
25089 (description
25090 "This package provides a collection of fast (utility) functions for data
25091 analysis. Column- and row- wise means, medians, variances, minimums,
25092 maximums, many t, F and G-square tests, many regressions (normal, logistic,
25093 Poisson), are some of the many fast functions.")
25094 (license license:gpl2+)))
25095
25096 (define-public r-clusterr
25097 (package
25098 (name "r-clusterr")
25099 (version "1.2.2")
25100 (source
25101 (origin
25102 (method url-fetch)
25103 (uri (cran-uri "ClusterR" version))
25104 (sha256
25105 (base32
25106 "1ky172bk15a78hky77vl60j7c81nq2495sxjrv53is25nkac7sjm"))))
25107 (properties `((upstream-name . "ClusterR")))
25108 (build-system r-build-system)
25109 (propagated-inputs
25110 `(("r-ggplot2" ,r-ggplot2)
25111 ("r-gmp" ,r-gmp)
25112 ("r-gtools" ,r-gtools)
25113 ("r-rcpp" ,r-rcpp)
25114 ("r-rcpparmadillo" ,r-rcpparmadillo)))
25115 (native-inputs `(("r-knitr" ,r-knitr)))
25116 (home-page "https://github.com/mlampros/ClusterR")
25117 (synopsis "Clustering")
25118 (description
25119 "This package provides Gaussian mixture models, k-means,
25120 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
25121 option to plot, validate, predict (new data) and estimate the optimal number
25122 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
25123 the computationally intensive parts of the functions. For more information,
25124 see
25125
25126 @enumerate
25127 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
25128 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
25129 @url{https://doi.org/10.18637/jss.v001.i04};
25130 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
25131 Library, @url{https://doi.org/10.1145/1772690.1772862};
25132 @item \"Armadillo: a template-based C++ library
25133 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
25134 Software, @url{https://doi.org/10.21105/joss.00026};
25135 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
25136 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
25137 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
25138 @end enumerate
25139 ")
25140 (license license:gpl3)))
25141
25142 (define-public r-spectrum
25143 (package
25144 (name "r-spectrum")
25145 (version "1.1")
25146 (source
25147 (origin
25148 (method url-fetch)
25149 (uri (cran-uri "Spectrum" version))
25150 (sha256
25151 (base32
25152 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
25153 (properties `((upstream-name . "Spectrum")))
25154 (build-system r-build-system)
25155 (propagated-inputs
25156 `(("r-clusterr" ,r-clusterr)
25157 ("r-diptest" ,r-diptest)
25158 ("r-ggplot2" ,r-ggplot2)
25159 ("r-rfast" ,r-rfast)))
25160 (native-inputs `(("r-knitr" ,r-knitr)))
25161 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
25162 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
25163 (description
25164 "This package provides a self-tuning spectral clustering method for
25165 single or multi-view data. Spectrum uses a new type of adaptive density aware
25166 kernel that strengthens connections in the graph based on common nearest
25167 neighbours. It uses a tensor product graph data integration and diffusion
25168 procedure to integrate different data sources and reduce noise. Spectrum uses
25169 either the eigengap or multimodality gap heuristics to determine the number of
25170 clusters. The method is sufficiently flexible so that a wide range of
25171 Gaussian and non-Gaussian structures can be clustered with automatic selection
25172 of K.")
25173 (license license:agpl3+)))
25174
25175 (define-public r-nabor
25176 (package
25177 (name "r-nabor")
25178 (version "0.5.0")
25179 (source
25180 (origin
25181 (method url-fetch)
25182 (uri (cran-uri "nabor" version))
25183 (sha256
25184 (base32
25185 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
25186 (properties `((upstream-name . "nabor")))
25187 (build-system r-build-system)
25188 (propagated-inputs
25189 `(("r-bh" ,r-bh)
25190 ("r-rcpp" ,r-rcpp)
25191 ("r-rcppeigen" ,r-rcppeigen)))
25192 (home-page "https://cran.r-project.org/web/packages/nabor/")
25193 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
25194 (description
25195 "This package provides an R wrapper for libnabo, an exact or approximate
25196 k nearest neighbour library which is optimised for low dimensional
25197 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
25198 designed as a drop-in replacement for the RANN function @code{nn2}. In
25199 addition, objects which include the k-d tree search structure can be returned
25200 to speed up repeated queries of the same set of target points.")
25201 (license license:bsd-3)))
25202
25203 (define-public r-muhaz
25204 (package
25205 (name "r-muhaz")
25206 (version "1.2.6.1")
25207 (source
25208 (origin
25209 (method url-fetch)
25210 (uri (cran-uri "muhaz" version))
25211 (sha256
25212 (base32
25213 "08qh43zx6h3yby44q2vxphfvmfdmqxpgyp0734yn341sy9n8pkkk"))))
25214 (properties `((upstream-name . "muhaz")))
25215 (build-system r-build-system)
25216 (propagated-inputs
25217 `(("r-survival" ,r-survival)))
25218 (native-inputs
25219 `(("gfortran" ,gfortran)))
25220 (home-page "https://cran.r-project.org/web/packages/muhaz/")
25221 (synopsis "Hazard function estimation in survival analysis")
25222 (description
25223 "This package produces a smooth estimate of the hazard function for
25224 censored data.")
25225 ;; Any version of the GPL.
25226 (license license:gpl3+)))
25227
25228 (define-public r-flexsurv
25229 (package
25230 (name "r-flexsurv")
25231 (version "2.0")
25232 (source
25233 (origin
25234 (method url-fetch)
25235 (uri (cran-uri "flexsurv" version))
25236 (sha256
25237 (base32
25238 "0vshsijqlzsz0xh426vsswpai1v5c990ggyniqqzsjbg3mn8dbl9"))))
25239 (properties `((upstream-name . "flexsurv")))
25240 (build-system r-build-system)
25241 (propagated-inputs
25242 `(("r-assertthat" ,r-assertthat)
25243 ("r-desolve" ,r-desolve)
25244 ("r-dplyr" ,r-dplyr)
25245 ("r-generics" ,r-generics)
25246 ("r-magrittr" ,r-magrittr)
25247 ("r-matrix" ,r-matrix)
25248 ("r-mstate" ,r-mstate)
25249 ("r-muhaz" ,r-muhaz)
25250 ("r-mvtnorm" ,r-mvtnorm)
25251 ("r-numderiv" ,r-numderiv)
25252 ("r-purrr" ,r-purrr)
25253 ("r-quadprog" ,r-quadprog)
25254 ("r-rcpp" ,r-rcpp)
25255 ("r-rlang" ,r-rlang)
25256 ("r-rstpm2" ,r-rstpm2)
25257 ("r-survival" ,r-survival)
25258 ("r-tibble" ,r-tibble)
25259 ("r-tidyr" ,r-tidyr)
25260 ("r-tidyselect" ,r-tidyselect)))
25261 (native-inputs
25262 `(("r-knitr" ,r-knitr)))
25263 (home-page "https://github.com/chjackson/flexsurv-dev")
25264 (synopsis "Flexible parametric survival and multi-state models")
25265 (description
25266 "This package provides flexible parametric models for time-to-event data,
25267 including the Royston-Parmar spline model, generalized gamma and generalized F
25268 distributions. Any user-defined parametric distribution can be fitted, given
25269 at least an R function defining the probability density or hazard. There are
25270 also tools for fitting and predicting from fully parametric multi-state
25271 models.")
25272 (license license:gpl2+)))
25273
25274 (define-public r-transphylo
25275 (package
25276 (name "r-transphylo")
25277 (version "1.4.4")
25278 (source
25279 (origin
25280 (method url-fetch)
25281 (uri (cran-uri "TransPhylo" version))
25282 (sha256
25283 (base32
25284 "1506c97y8dnhd0c38rgvmg70q0l3xmmn07mjglhnw7hi5n5y9mv9"))))
25285 (properties `((upstream-name . "TransPhylo")))
25286 (build-system r-build-system)
25287 (propagated-inputs
25288 `(("r-ape" ,r-ape)
25289 ("r-rcpp" ,r-rcpp)))
25290 (native-inputs
25291 `(("r-knitr" ,r-knitr)))
25292 (home-page "https://cran.r-project.org/web/packages/TransPhylo/")
25293 (synopsis "Inference of transmission tree from a dated phylogeny")
25294 (description
25295 "This is a package to infer transmission trees from a dated phylogeny.
25296 It includes methods to simulate and analyze outbreaks. The methodology is
25297 described in @url{https://doi.org/10.1093/molbev/msu121,Didelot et al. (2014)}
25298 and @url{https://doi.org/10.1093/molbev/msw275,Didelot et al. (2017)}.")
25299 (license license:gpl2+)))
25300
25301 (define-public r-km-ci
25302 (package
25303 (name "r-km-ci")
25304 (version "0.5-2")
25305 (source
25306 (origin
25307 (method url-fetch)
25308 (uri (cran-uri "km.ci" version))
25309 (sha256
25310 (base32
25311 "1l6kw8jppaa1802yc5pbfwwgac56nhwc9p076ivylhms4w7cdf8v"))))
25312 (properties `((upstream-name . "km.ci")))
25313 (build-system r-build-system)
25314 (propagated-inputs
25315 `(("r-survival" ,r-survival)))
25316 (home-page "https://cran.r-project.org/web/packages/km.ci/")
25317 (synopsis "Confidence intervals for the Kaplan-Meier estimator")
25318 (description
25319 "This package computes various @dfn{confidence intervals} (CI) for the
25320 Kaplan-Meier estimator, namely: Petos CI, Rothman CI, CIs based on Greenwoods
25321 variance, Thomas and Grunkemeier CI and the simultaneous confidence bands by
25322 Nair and Hall and Wellner.")
25323 (license license:gpl2+)))
25324
25325 (define-public r-kmsurv
25326 (package
25327 (name "r-kmsurv")
25328 (version "0.1-5")
25329 (source
25330 (origin
25331 (method url-fetch)
25332 (uri (cran-uri "KMsurv" version))
25333 (sha256
25334 (base32
25335 "0hi5vvk584rl70gbrr75w9hc775xmbxnaig0dd6hlpi4071pnqjm"))))
25336 (properties `((upstream-name . "KMsurv")))
25337 (build-system r-build-system)
25338 (home-page "https://cran.r-project.org/web/packages/KMsurv/")
25339 (synopsis "Data sets from Klein and Moeschberger (1997), Survival Analysis")
25340 (description
25341 "This package provides data sets and functions for Klein and Moeschberger
25342 (1997), \"Survival Analysis, Techniques for Censored and Truncated Data\",
25343 Springer.")
25344 (license license:gpl3+)))
25345
25346 (define-public r-survmisc
25347 (package
25348 (name "r-survmisc")
25349 (version "0.5.5")
25350 (source
25351 (origin
25352 (method url-fetch)
25353 (uri (cran-uri "survMisc" version))
25354 (sha256
25355 (base32
25356 "00nvvl8gz4477ab24rd0xvfksm8msv8h021b9ld5c9cizc41n2bm"))))
25357 (properties `((upstream-name . "survMisc")))
25358 (build-system r-build-system)
25359 (propagated-inputs
25360 `(("r-data-table" ,r-data-table)
25361 ("r-ggplot2" ,r-ggplot2)
25362 ("r-gridextra" ,r-gridextra)
25363 ("r-km-ci" ,r-km-ci)
25364 ("r-kmsurv" ,r-kmsurv)
25365 ("r-knitr" ,r-knitr)
25366 ("r-survival" ,r-survival)
25367 ("r-xtable" ,r-xtable)
25368 ("r-zoo" ,r-zoo)))
25369 (native-inputs
25370 `(("r-knitr" ,r-knitr)))
25371 (home-page "https://cran.r-project.org/web/packages/survMisc/")
25372 (synopsis "Miscellaneous functions for survival data")
25373 (description
25374 "This package provides a collection of functions to help in the analysis
25375 of right-censored survival data. These extend the methods available in
25376 the @code{survival} package.")
25377 (license license:gpl2)))
25378
25379 (define-public r-exactranktests
25380 (package
25381 (name "r-exactranktests")
25382 (version "0.8-31")
25383 (source
25384 (origin
25385 (method url-fetch)
25386 (uri (cran-uri "exactRankTests" version))
25387 (sha256
25388 (base32
25389 "1154dkcid3njhamdp87qs9bnx7l8bdqkcjsds9q9f2xmizs9x8gw"))))
25390 (properties
25391 `((upstream-name . "exactRankTests")))
25392 (build-system r-build-system)
25393 (home-page "https://cran.r-project.org/web/packages/exactRankTests/")
25394 (synopsis "Exact distributions for rank and permutation tests")
25395 (description
25396 "This package computes exact conditional p-values and quantiles using an
25397 implementation of the Shift-Algorithm by Streitberg & Roehmel.")
25398 (license license:gpl2+)))
25399
25400 (define-public r-maxstat
25401 (package
25402 (name "r-maxstat")
25403 (version "0.7-25")
25404 (source
25405 (origin
25406 (method url-fetch)
25407 (uri (cran-uri "maxstat" version))
25408 (sha256
25409 (base32
25410 "114z1rwxwvk05ijjhdppzm148n1h192fp0w12ky10zkrhf6kphbg"))))
25411 (properties `((upstream-name . "maxstat")))
25412 (build-system r-build-system)
25413 (propagated-inputs
25414 `(("r-exactranktests" ,r-exactranktests)
25415 ("r-mvtnorm" ,r-mvtnorm)))
25416 (home-page "https://cran.r-project.org/web/packages/maxstat/")
25417 (synopsis "Maximally selected rank statistics")
25418 (description
25419 "This package provides maximally selected rank statistics with several
25420 p-value approximations.")
25421 (license license:gpl2+)))
25422
25423 (define-public r-survminer
25424 (package
25425 (name "r-survminer")
25426 (version "0.4.9")
25427 (source
25428 (origin
25429 (method url-fetch)
25430 (uri (cran-uri "survminer" version))
25431 (sha256
25432 (base32
25433 "0byh0wxdbjfwdrzsnqv4xlmnik6lj0vkkzfxy7lssk8dv5zmj7nz"))))
25434 (properties `((upstream-name . "survminer")))
25435 (build-system r-build-system)
25436 (propagated-inputs
25437 `(("r-broom" ,r-broom)
25438 ("r-dplyr" ,r-dplyr)
25439 ("r-ggplot2" ,r-ggplot2)
25440 ("r-ggpubr" ,r-ggpubr)
25441 ("r-ggtext" ,r-ggtext)
25442 ("r-gridextra" ,r-gridextra)
25443 ("r-magrittr" ,r-magrittr)
25444 ("r-maxstat" ,r-maxstat)
25445 ("r-purrr" ,r-purrr)
25446 ("r-rlang" ,r-rlang)
25447 ("r-scales" ,r-scales)
25448 ("r-survival" ,r-survival)
25449 ("r-survmisc" ,r-survmisc)
25450 ("r-tibble" ,r-tibble)
25451 ("r-tidyr" ,r-tidyr)))
25452 (native-inputs
25453 `(("r-knitr" ,r-knitr)))
25454 (home-page "https://rpkgs.datanovia.com/survminer/index.html")
25455 (synopsis "Drawing survival curves using ggplot2")
25456 (description
25457 "This package contains the function @code{ggsurvplot()} for easily
25458 drawing beautiful and 'ready-to-publish' survival curves with the 'number at
25459 risk' table and 'censoring count plot'. Other functions are also available to
25460 plot adjusted curves for Cox model and to visually examine Cox model
25461 assumptions.")
25462 (license license:gpl2)))
25463
25464 (define-public r-forge
25465 (package
25466 (name "r-forge")
25467 (version "0.2.0")
25468 (source
25469 (origin
25470 (method url-fetch)
25471 (uri (cran-uri "forge" version))
25472 (sha256
25473 (base32
25474 "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
25475 (properties `((upstream-name . "forge")))
25476 (build-system r-build-system)
25477 (propagated-inputs
25478 `(("r-magrittr" ,r-magrittr)
25479 ("r-rlang" ,r-rlang)))
25480 (home-page "https://cran.r-project.org/web/packages/forge/")
25481 (synopsis "Cast values into shape")
25482 (description
25483 "This package provides helper functions with a consistent interface to
25484 coerce and verify the types and shapes of values for input checking.")
25485 (license license:asl2.0)))
25486
25487 (define-public r-config
25488 (package
25489 (name "r-config")
25490 (version "0.3.1")
25491 (source
25492 (origin
25493 (method url-fetch)
25494 (uri (cran-uri "config" version))
25495 (sha256
25496 (base32
25497 "0l2zp7v6qaz72dclcbjrlis633zlwp8rsi5azr7iw127iyz7i26l"))))
25498 (properties `((upstream-name . "config")))
25499 (build-system r-build-system)
25500 (propagated-inputs
25501 `(("r-yaml" ,r-yaml)))
25502 (native-inputs
25503 `(("r-knitr" ,r-knitr)))
25504 (home-page "https://github.com/rstudio/config")
25505 (synopsis "Manage environment specific configuration values")
25506 (description
25507 "This package lets you manage configuration values across multiple
25508 environments (e.g. development, test, production). It reads values using a
25509 function that determines the current environment and returns the appropriate
25510 value.")
25511 (license license:gpl3)))
25512
25513 (define-public r-adaptivesparsity
25514 (package
25515 (name "r-adaptivesparsity")
25516 (version "1.6")
25517 (source (origin
25518 (method url-fetch)
25519 (uri (cran-uri "AdaptiveSparsity" version))
25520 (sha256
25521 (base32
25522 "0imr5m8mll9j6n4icsv6z9rl5kbnwsp9wvzrg7n90nnmcxq2cz91"))))
25523 (properties
25524 `((upstream-name . "AdaptiveSparsity")))
25525 (build-system r-build-system)
25526 (arguments
25527 `(#:phases
25528 (modify-phases %standard-phases
25529 (add-after 'unpack 'link-against-armadillo
25530 (lambda _
25531 (substitute* "src/Makevars"
25532 (("PKG_LIBS=" prefix)
25533 (string-append prefix "-larmadillo")))
25534 #t)))))
25535 (propagated-inputs
25536 `(("r-mass" ,r-mass)
25537 ("r-matrix" ,r-matrix)
25538 ("r-rcpp" ,r-rcpp)
25539 ("r-rcpparmadillo" ,r-rcpparmadillo)))
25540 (inputs
25541 `(("armadillo" ,armadillo)))
25542 (home-page "https://cran.r-project.org/web/packages/AdaptiveSparsity")
25543 (synopsis "Adaptive sparsity models")
25544 (description
25545 "This package implements the Figueiredo machine learning algorithm for
25546 adaptive sparsity and the Wong algorithm for adaptively sparse Gaussian
25547 geometric models.")
25548 (license license:lgpl3+)))
25549
25550 (define-public r-diffusionmap
25551 (package
25552 (name "r-diffusionmap")
25553 (version "1.2.0")
25554 (source
25555 (origin
25556 (method url-fetch)
25557 (uri (cran-uri "diffusionMap" version))
25558 (sha256
25559 (base32
25560 "1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
25561 (properties `((upstream-name . "diffusionMap")))
25562 (build-system r-build-system)
25563 (propagated-inputs
25564 `(("r-igraph" ,r-igraph)
25565 ("r-matrix" ,r-matrix)
25566 ("r-scatterplot3d" ,r-scatterplot3d)))
25567 (home-page "https://www.r-project.org")
25568 (synopsis "Diffusion map")
25569 (description "This package implements the diffusion map method of data
25570 parametrization, including creation and visualization of diffusion maps,
25571 clustering with diffusion K-means and regression using the adaptive regression
25572 model.")
25573 (license license:gpl2)))
25574
25575 (define-public r-igraph
25576 (package
25577 (name "r-igraph")
25578 (version "1.2.6")
25579 (source
25580 (origin
25581 (method url-fetch)
25582 (uri (cran-uri "igraph" version))
25583 (sha256
25584 (base32
25585 "0vf7wrx77cdiav8724cw8gchrn0y9wvywphf5km4pa7xcqhsf3b4"))))
25586 (build-system r-build-system)
25587 (native-inputs
25588 `(("gfortran" ,gfortran)))
25589 (inputs
25590 `(("gmp" ,gmp)
25591 ("glpk" ,glpk)
25592 ("libxml2" ,libxml2)
25593 ("zlib" ,zlib)))
25594 (propagated-inputs
25595 `(("r-magrittr" ,r-magrittr)
25596 ("r-matrix" ,r-matrix)
25597 ("r-pkgconfig" ,r-pkgconfig)))
25598 (home-page "https://igraph.org")
25599 (synopsis "Network analysis and visualization")
25600 (description
25601 "This package provides routines for simple graphs and network analysis.
25602 It can handle large graphs very well and provides functions for generating
25603 random and regular graphs, graph visualization, centrality methods and much
25604 more.")
25605 (license license:gpl2+)))
25606
25607 (define-public r-workflows
25608 (package
25609 (name "r-workflows")
25610 (version "0.2.1")
25611 (source
25612 (origin
25613 (method url-fetch)
25614 (uri (cran-uri "workflows" version))
25615 (sha256
25616 (base32
25617 "1mk0pnmpqlhf143mvj9rwvjrrshirz6s83s5hbfalhnyw7hzkfb9"))))
25618 (properties `((upstream-name . "workflows")))
25619 (build-system r-build-system)
25620 (propagated-inputs
25621 `(("r-cli" ,r-cli)
25622 ("r-ellipsis" ,r-ellipsis)
25623 ("r-generics" ,r-generics)
25624 ("r-glue" ,r-glue)
25625 ("r-hardhat" ,r-hardhat)
25626 ("r-parsnip" ,r-parsnip)
25627 ("r-rlang" ,r-rlang)
25628 ("r-tidyselect" ,r-tidyselect)))
25629 (native-inputs
25630 `(("r-knitr" ,r-knitr)))
25631 (home-page "https://github.com/tidymodels/workflows")
25632 (synopsis "Modeling workflows")
25633 (description
25634 "A workflow is an object that can bundle together your pre-processing,
25635 modeling, and post-processing requests. For example, if you have a
25636 @code{recipe} and @code{parsnip} model, these can be combined into a
25637 workflow. The advantages are:
25638
25639 @enumerate
25640 @item You don’t have to keep track of separate objects in your workspace.
25641 @item The recipe prepping and model fitting can be executed using a single
25642 call to @code{fit()}.
25643 @item If you have custom tuning parameter settings, these can be defined using
25644 a simpler interface when combined with @code{tune}.
25645 @item In the future, workflows will be able to add post-processing operations,
25646 such as modifying the probability cutoff for two-class models.
25647 @end enumerate
25648 ")
25649 (license license:expat)))
25650
25651 (define-public r-gpfit
25652 (package
25653 (name "r-gpfit")
25654 (version "1.0-8")
25655 (source
25656 (origin
25657 (method url-fetch)
25658 (uri (cran-uri "GPfit" version))
25659 (sha256
25660 (base32
25661 "05mpiyi2vxv0wqp422n1mnxa8msc4daq40cwpnpngbcwqhlgqkby"))))
25662 (properties `((upstream-name . "GPfit")))
25663 (build-system r-build-system)
25664 (propagated-inputs
25665 `(("r-lattice" ,r-lattice)
25666 ("r-lhs" ,r-lhs)))
25667 (home-page "https://cran.r-project.org/web/packages/GPfit/")
25668 (synopsis "Gaussian Processes modeling")
25669 (description
25670 "This package provides a computationally stable approach of fitting a
25671 @dfn{Gaussian Process} (GP) model to a deterministic simulator.")
25672 (license license:gpl2)))
25673
25674 (define-public r-yardstick
25675 (package
25676 (name "r-yardstick")
25677 (version "0.0.7")
25678 (source
25679 (origin
25680 (method url-fetch)
25681 (uri (cran-uri "yardstick" version))
25682 (sha256
25683 (base32
25684 "1yrvlhn4gxyn9f20z5yv3xam0j0a8z362jwa32r33r0g0jk5z2fq"))))
25685 (properties `((upstream-name . "yardstick")))
25686 (build-system r-build-system)
25687 (propagated-inputs
25688 `(("r-dplyr" ,r-dplyr)
25689 ("r-generics" ,r-generics)
25690 ("r-proc" ,r-proc)
25691 ("r-rlang" ,r-rlang)
25692 ("r-tidyselect" ,r-tidyselect)))
25693 (native-inputs
25694 `(("r-knitr" ,r-knitr)))
25695 (home-page "https://github.com/tidymodels/yardstick")
25696 (synopsis "Tidy characterizations of model performance")
25697 (description
25698 "This package provides tidy tools for quantifying how well a model fits
25699 to a data set such as confusion matrices, class probability curve summaries,
25700 and regression metrics (e.g., RMSE).")
25701 (license license:gpl2)))
25702
25703 (define-public r-warp
25704 (package
25705 (name "r-warp")
25706 (version "0.2.0")
25707 (source
25708 (origin
25709 (method url-fetch)
25710 (uri (cran-uri "warp" version))
25711 (sha256
25712 (base32
25713 "0s0acddc5h14245hi1faycxp0fyvw6nlgaz2df7da4fpyd2f638f"))))
25714 (properties `((upstream-name . "warp")))
25715 (build-system r-build-system)
25716 (native-inputs `(("r-knitr" ,r-knitr)))
25717 (home-page "https://github.com/DavisVaughan/warp")
25718 (synopsis "Group dates")
25719 (description
25720 "This package provides tooling to group dates by a variety of periods
25721 including: yearly, monthly, by second, by week of the month, and more. The
25722 groups are defined in such a way that they also represent the distance between
25723 dates in terms of the period. This extracts valuable information that can be
25724 used in further calculations that rely on a specific temporal spacing between
25725 observations.")
25726 (license license:expat)))
25727
25728 (define-public r-slider
25729 (package
25730 (name "r-slider")
25731 (version "0.1.5")
25732 (source
25733 (origin
25734 (method url-fetch)
25735 (uri (cran-uri "slider" version))
25736 (sha256
25737 (base32
25738 "1x4jwfxam4czfkb1s5qds5krfw1h2p5a4rh6f5z4yvhsv0d81xck"))))
25739 (properties `((upstream-name . "slider")))
25740 (build-system r-build-system)
25741 (propagated-inputs
25742 `(("r-glue" ,r-glue)
25743 ("r-rlang" ,r-rlang)
25744 ("r-vctrs" ,r-vctrs)
25745 ("r-warp" ,r-warp)))
25746 (native-inputs `(("r-knitr" ,r-knitr)))
25747 (home-page "https://github.com/DavisVaughan/slider")
25748 (synopsis "Sliding window functions")
25749 (description
25750 "This package provides type-stable rolling window functions over any R
25751 data type. Cumulative and expanding windows are also supported. For more
25752 advanced usage, an index can be used as a secondary vector that defines how
25753 sliding windows are to be created.")
25754 (license license:expat)))
25755
25756 (define-public r-rsample
25757 (package
25758 (name "r-rsample")
25759 (version "0.0.9")
25760 (source
25761 (origin
25762 (method url-fetch)
25763 (uri (cran-uri "rsample" version))
25764 (sha256
25765 (base32
25766 "03qwsvylgmj2a2h764mzy0x57pgzmvjvl0ypmbn4lcf912bvrd2c"))))
25767 (properties `((upstream-name . "rsample")))
25768 (build-system r-build-system)
25769 (propagated-inputs
25770 `(("r-dplyr" ,r-dplyr)
25771 ("r-ellipsis" ,r-ellipsis)
25772 ("r-furrr" ,r-furrr)
25773 ("r-generics" ,r-generics)
25774 ("r-purrr" ,r-purrr)
25775 ("r-rlang" ,r-rlang)
25776 ("r-slider" ,r-slider)
25777 ("r-tibble" ,r-tibble)
25778 ("r-tidyr" ,r-tidyr)
25779 ("r-tidyselect" ,r-tidyselect)
25780 ("r-vctrs" ,r-vctrs)))
25781 (native-inputs
25782 `(("r-knitr" ,r-knitr)))
25783 (home-page "https://rsample.tidymodels.org")
25784 (synopsis "General resampling infrastructure")
25785 (description
25786 "This package provides classes and functions to create and summarize
25787 different types of resampling objects (e.g. bootstrap, cross-validation).")
25788 (license license:gpl2)))
25789
25790 (define-public r-dicedesign
25791 (package
25792 (name "r-dicedesign")
25793 (version "1.9")
25794 (source
25795 (origin
25796 (method url-fetch)
25797 (uri (cran-uri "DiceDesign" version))
25798 (sha256
25799 (base32
25800 "1a8ixa65xgyfri03cviic8qi2plbhdyz8m02bwif8w94w0q3ghlk"))))
25801 (properties `((upstream-name . "DiceDesign")))
25802 (build-system r-build-system)
25803 (home-page "http://dice.emse.fr/")
25804 (synopsis "Designs of computer experiments")
25805 (description
25806 "This package provides tools to create some specific @code{Space-Filling
25807 Design} (SFD) and to test their quality.")
25808 (license license:gpl3)))
25809
25810 (define-public r-dials
25811 (package
25812 (name "r-dials")
25813 (version "0.0.9")
25814 (source
25815 (origin
25816 (method url-fetch)
25817 (uri (cran-uri "dials" version))
25818 (sha256
25819 (base32
25820 "0g9wj2py4wz703rh4p7hk8qxqnkm7zyrypv4qz4vaqziazjsmxks"))))
25821 (properties `((upstream-name . "dials")))
25822 (build-system r-build-system)
25823 (propagated-inputs
25824 `(("r-dicedesign" ,r-dicedesign)
25825 ("r-dplyr" ,r-dplyr)
25826 ("r-glue" ,r-glue)
25827 ("r-purrr" ,r-purrr)
25828 ("r-rlang" ,r-rlang)
25829 ("r-scales" ,r-scales)
25830 ("r-tibble" ,r-tibble)
25831 ("r-vctrs" ,r-vctrs)
25832 ("r-withr" ,r-withr)))
25833 (native-inputs `(("r-knitr" ,r-knitr)))
25834 (home-page "https://dials.tidymodels.org/")
25835 (synopsis "Tools for creating tuning parameter values")
25836 (description
25837 "Many models contain tuning parameters (i.e. parameters that cannot be
25838 directly estimated from the data). These tools can be used to define objects
25839 for creating, simulating, or validating values for such parameters.")
25840 (license license:gpl2)))
25841
25842 (define-public r-tune
25843 (package
25844 (name "r-tune")
25845 (version "0.1.3")
25846 (source
25847 (origin
25848 (method url-fetch)
25849 (uri (cran-uri "tune" version))
25850 (sha256
25851 (base32
25852 "05r5jzg96g2z10a2w4w8wq1ysfaxr91acwrvn75pmcy4rmixf293"))))
25853 (properties `((upstream-name . "tune")))
25854 (build-system r-build-system)
25855 (propagated-inputs
25856 `(("r-cli" ,r-cli)
25857 ("r-dials" ,r-dials)
25858 ("r-dplyr" ,r-dplyr)
25859 ("r-foreach" ,r-foreach)
25860 ("r-generics" ,r-generics)
25861 ("r-ggplot2" ,r-ggplot2)
25862 ("r-glue" ,r-glue)
25863 ("r-gpfit" ,r-gpfit)
25864 ("r-parsnip" ,r-parsnip)
25865 ("r-purrr" ,r-purrr)
25866 ("r-recipes" ,r-recipes)
25867 ("r-rlang" ,r-rlang)
25868 ("r-rsample" ,r-rsample)
25869 ("r-tibble" ,r-tibble)
25870 ("r-tidyr" ,r-tidyr)
25871 ("r-vctrs" ,r-vctrs)
25872 ("r-workflows" ,r-workflows)
25873 ("r-yardstick" ,r-yardstick)))
25874 (home-page "https://github.com/tidymodels/tune")
25875 (synopsis "Tidy tuning tools")
25876 (description
25877 "The ability to tune models is important. @code{tune} contains functions
25878 and classes to be used in conjunction with other @code{tidymodels} packages
25879 for finding reasonable values of hyper-parameters in models, pre-processing
25880 methods, and post-processing steps.")
25881 (license license:expat)))
25882
25883 (define-public r-tidyposterior
25884 (package
25885 (name "r-tidyposterior")
25886 (version "0.0.3")
25887 (source
25888 (origin
25889 (method url-fetch)
25890 (uri (cran-uri "tidyposterior" version))
25891 (sha256
25892 (base32
25893 "0wsv800w056ziqbnwal7ncmdy4li8cn5yrdx07w35b7j8kl4mwhg"))))
25894 (properties `((upstream-name . "tidyposterior")))
25895 (build-system r-build-system)
25896 (propagated-inputs
25897 `(("r-dplyr" ,r-dplyr)
25898 ("r-generics" ,r-generics)
25899 ("r-ggplot2" ,r-ggplot2)
25900 ("r-lifecycle" ,r-lifecycle)
25901 ("r-purrr" ,r-purrr)
25902 ("r-rlang" ,r-rlang)
25903 ("r-rsample" ,r-rsample)
25904 ("r-rstanarm" ,r-rstanarm)
25905 ("r-tibble" ,r-tibble)
25906 ("r-tidyr" ,r-tidyr)
25907 ("r-vctrs" ,r-vctrs)))
25908 (native-inputs
25909 `(("r-knitr" ,r-knitr)))
25910 (home-page "https://tidyposterior.tidymodels.org")
25911 (synopsis "Bayesian analysis to compare models using resampling statistics")
25912 (description
25913 "This package can be used to conduct post hoc analyses of resampling
25914 results generated by models. For example, if two models are evaluated with
25915 the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
25916 are 10 paired statistics. These can be used to make comparisons between
25917 models without involving a test set.")
25918 (license license:gpl2)))
25919
25920 (define-public r-tidypredict
25921 (package
25922 (name "r-tidypredict")
25923 (version "0.4.8")
25924 (source
25925 (origin
25926 (method url-fetch)
25927 (uri (cran-uri "tidypredict" version))
25928 (sha256
25929 (base32
25930 "0fff349pkksss8h1k2qza78l81ha6avx63pxziv6dfa8h62qmrdy"))))
25931 (properties `((upstream-name . "tidypredict")))
25932 (build-system r-build-system)
25933 (propagated-inputs
25934 `(("r-dplyr" ,r-dplyr)
25935 ("r-generics" ,r-generics)
25936 ("r-knitr" ,r-knitr)
25937 ("r-purrr" ,r-purrr)
25938 ("r-rlang" ,r-rlang)
25939 ("r-stringr" ,r-stringr)
25940 ("r-tibble" ,r-tibble)
25941 ("r-tidyr" ,r-tidyr)))
25942 (native-inputs
25943 `(("r-knitr" ,r-knitr)))
25944 (home-page "https://tidypredict.tidymodels.org")
25945 (synopsis "Run predictions inside the database")
25946 (description
25947 "This package parses a fitted R model object, and returns a formula in
25948 Tidy Eval code that calculates the predictions. It works with several
25949 database backends because it leverages @code{dplyr} and @code{dbplyr} for the
25950 final SQL translation of the algorithm. It currently supports @code{lm()},
25951 @code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
25952 @code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
25953 (license license:gpl3)))
25954
25955 (define-public r-janeaustenr
25956 (package
25957 (name "r-janeaustenr")
25958 (version "0.1.5")
25959 (source
25960 (origin
25961 (method url-fetch)
25962 (uri (cran-uri "janeaustenr" version))
25963 (sha256
25964 (base32
25965 "1wyn4qc28a3sval8shmyi2d7s4nl3jh96s8pzq871brxcmrncbwr"))))
25966 (properties `((upstream-name . "janeaustenr")))
25967 (build-system r-build-system)
25968 (home-page "https://github.com/juliasilge/janeaustenr")
25969 (synopsis "Jane Austen's complete novels")
25970 (description
25971 "This package provides the full texts for Jane Austen's six completed
25972 novels, ready for text analysis. These novels are \"Sense and Sensibility\",
25973 \"Pride and Prejudice\", \"Mansfield Park\", \"Emma\", \"Northanger Abbey\",
25974 and \"Persuasion\".")
25975 (license license:expat)))
25976
25977 (define-public r-tokenizers
25978 (package
25979 (name "r-tokenizers")
25980 (version "0.2.1")
25981 (source
25982 (origin
25983 (method url-fetch)
25984 (uri (cran-uri "tokenizers" version))
25985 (sha256
25986 (base32
25987 "006xf1vdrmp9skhpss9ldhmk4cwqk512cjp1pxm2gxfybpf7qq98"))))
25988 (properties `((upstream-name . "tokenizers")))
25989 (build-system r-build-system)
25990 (propagated-inputs
25991 `(("r-rcpp" ,r-rcpp)
25992 ("r-snowballc" ,r-snowballc)
25993 ("r-stringi" ,r-stringi)))
25994 (native-inputs
25995 `(("r-knitr" ,r-knitr)))
25996 (home-page "https://lincolnmullen.com/software/tokenizers/")
25997 (synopsis "Fast, consistent tokenization of natural language text")
25998 (description
25999 "This is a package for converting natural language text into tokens.
26000 It includes tokenizers for shingled n-grams, skip n-grams, words, word stems,
26001 sentences, paragraphs, characters, shingled characters, lines, tweets, Penn
26002 Treebank, regular expressions, as well as functions for counting characters,
26003 words, and sentences, and a function for splitting longer texts into separate
26004 documents, each with the same number of words. The tokenizers have a
26005 consistent interface, and the package is built on the @code{stringi} and
26006 @code{Rcpp} packages for fast yet correct tokenization in UTF-8 encoding.")
26007 (license license:expat)))
26008
26009 (define-public r-hunspell
26010 (package
26011 (name "r-hunspell")
26012 (version "3.0.1")
26013 (source
26014 (origin
26015 (method url-fetch)
26016 (uri (cran-uri "hunspell" version))
26017 (sha256
26018 (base32
26019 "0ql6y05d4xxpm468rslb0wxdp1x9l3flxzmb5w6pjg617f8vpv8z"))))
26020 (properties `((upstream-name . "hunspell")))
26021 (build-system r-build-system)
26022 (propagated-inputs
26023 `(("r-digest" ,r-digest)
26024 ("r-rcpp" ,r-rcpp)))
26025 (native-inputs
26026 `(("r-knitr" ,r-knitr)))
26027 (home-page "https://github.com/ropensci/hunspell#readme")
26028 (synopsis "High-performance stemmer, tokenizer, and spell checker")
26029 (description
26030 "This package provides a low-level spell checker and morphological
26031 analyzer based on the famous @code{hunspell} library. The package can analyze
26032 or check individual words as well as parse text, LaTeX, HTML or XML documents.
26033 For a more user-friendly interface use the @code{spelling} package which
26034 builds on this package to automate checking of files, documentation and
26035 vignettes in all common formats.")
26036 ;; The hunspell library itself is available under one of GPL2, LGPL2.1, or
26037 ;; MPL; in addition to these licenses the rest of the R wrapper is also
26038 ;; available under the Expat license.
26039 (license (list license:gpl2
26040 license:lgpl2.1
26041 license:mpl1.1
26042 license:expat))))
26043
26044 (define-public r-tidytext
26045 (package
26046 (name "r-tidytext")
26047 (version "0.3.0")
26048 (source
26049 (origin
26050 (method url-fetch)
26051 (uri (cran-uri "tidytext" version))
26052 (sha256
26053 (base32
26054 "1icbfw4zkbs9sp6vk814mw2zzm0bc0d7af92vhriqxaga0gbwdkx"))))
26055 (properties `((upstream-name . "tidytext")))
26056 (build-system r-build-system)
26057 (propagated-inputs
26058 `(("r-dplyr" ,r-dplyr)
26059 ("r-generics" ,r-generics)
26060 ("r-hunspell" ,r-hunspell)
26061 ("r-janeaustenr" ,r-janeaustenr)
26062 ("r-lifecycle" ,r-lifecycle)
26063 ("r-matrix" ,r-matrix)
26064 ("r-purrr" ,r-purrr)
26065 ("r-rlang" ,r-rlang)
26066 ("r-stringr" ,r-stringr)
26067 ("r-tibble" ,r-tibble)
26068 ("r-tokenizers" ,r-tokenizers)
26069 ("r-vctrs" ,r-vctrs)))
26070 (native-inputs
26071 `(("r-knitr" ,r-knitr)))
26072 (home-page "https://github.com/juliasilge/tidytext")
26073 (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
26074 (description
26075 "This is a package for text mining for word processing and sentiment
26076 analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
26077 (license license:expat)))
26078
26079 (define-public r-parsnip
26080 (package
26081 (name "r-parsnip")
26082 (version "0.1.5")
26083 (source
26084 (origin
26085 (method url-fetch)
26086 (uri (cran-uri "parsnip" version))
26087 (sha256
26088 (base32
26089 "0c12lyfxqsdprqlcmgy421py38z28h88d68pxb1c4fw14v1c2d06"))))
26090 (properties `((upstream-name . "parsnip")))
26091 (build-system r-build-system)
26092 (propagated-inputs
26093 `(("r-dplyr" ,r-dplyr)
26094 ("r-generics" ,r-generics)
26095 ("r-globals" ,r-globals)
26096 ("r-glue" ,r-glue)
26097 ("r-magrittr" ,r-magrittr)
26098 ("r-prettyunits" ,r-prettyunits)
26099 ("r-purrr" ,r-purrr)
26100 ("r-rlang" ,r-rlang)
26101 ("r-tibble" ,r-tibble)
26102 ("r-tidyr" ,r-tidyr)
26103 ("r-vctrs" ,r-vctrs)))
26104 (native-inputs
26105 `(("r-knitr" ,r-knitr)))
26106 (home-page "https://parsnip.tidymodels.org")
26107 (synopsis "Common API to modeling and analysis functions")
26108 (description
26109 "This package provides a common interface to allow users to specify a
26110 model without having to remember the different argument names across different
26111 functions or computational engines (e.g. R, Spark, Stan, etc).")
26112 (license license:gpl2)))
26113
26114 (define-public r-infer
26115 (package
26116 (name "r-infer")
26117 (version "0.5.4")
26118 (source
26119 (origin
26120 (method url-fetch)
26121 (uri (cran-uri "infer" version))
26122 (sha256
26123 (base32
26124 "0wvvgqjhyv7ql98cjzqad61wbmk7xrqd1ybk894jr5cmza13c8w2"))))
26125 (properties `((upstream-name . "infer")))
26126 (build-system r-build-system)
26127 (propagated-inputs
26128 `(("r-dplyr" ,r-dplyr)
26129 ("r-ggplot2" ,r-ggplot2)
26130 ("r-glue" ,r-glue)
26131 ("r-magrittr" ,r-magrittr)
26132 ("r-purrr" ,r-purrr)
26133 ("r-rlang" ,r-rlang)
26134 ("r-tibble" ,r-tibble)))
26135 (native-inputs
26136 `(("r-knitr" ,r-knitr)))
26137 (home-page "https://github.com/tidymodels/infer")
26138 (synopsis "Tidy statistical inference")
26139 (description
26140 "The objective of this package is to perform inference using an
26141 expressive statistical grammar that coheres with the Tidy design framework.")
26142 (license license:cc0)))
26143
26144 (define-public r-modeldata
26145 (package
26146 (name "r-modeldata")
26147 (version "0.1.0")
26148 (source
26149 (origin
26150 (method url-fetch)
26151 (uri (cran-uri "modeldata" version))
26152 (sha256
26153 (base32
26154 "0lbvmicvhw560jn9qk5dywrl6mgj1rf7zh7p86lf97c6bmz0zp2r"))))
26155 (properties `((upstream-name . "modeldata")))
26156 (build-system r-build-system)
26157 (home-page "https://modeldata.tidymodels.org")
26158 (synopsis "Data sets useful for modeling packages")
26159 (description
26160 "This package provides data sets used for demonstrating or testing
26161 model-related packages.")
26162 (license license:expat)))
26163
26164 (define-public r-tidymodels
26165 (package
26166 (name "r-tidymodels")
26167 (version "0.1.2")
26168 (source
26169 (origin
26170 (method url-fetch)
26171 (uri (cran-uri "tidymodels" version))
26172 (sha256
26173 (base32
26174 "09njrl655sh82xrzckgg56a6ndfrjla5fy8675wj4jsj14jpv0fw"))))
26175 (properties `((upstream-name . "tidymodels")))
26176 (build-system r-build-system)
26177 (propagated-inputs
26178 `(("r-broom" ,r-broom)
26179 ("r-cli" ,r-cli)
26180 ("r-dials" ,r-dials)
26181 ("r-dplyr" ,r-dplyr)
26182 ("r-ggplot2" ,r-ggplot2)
26183 ("r-infer" ,r-infer)
26184 ("r-magrittr" ,r-magrittr)
26185 ("r-modeldata" ,r-modeldata)
26186 ("r-parsnip" ,r-parsnip)
26187 ("r-purrr" ,r-purrr)
26188 ("r-recipes" ,r-recipes)
26189 ("r-rlang" ,r-rlang)
26190 ("r-rsample" ,r-rsample)
26191 ("r-rstudioapi" ,r-rstudioapi)
26192 ("r-tibble" ,r-tibble)
26193 ("r-tidyr" ,r-tidyr)
26194 ("r-tune" ,r-tune)
26195 ("r-workflows" ,r-workflows)
26196 ("r-yardstick" ,r-yardstick)))
26197 (native-inputs
26198 `(("r-knitr" ,r-knitr)
26199 ("r-rmarkdown" ,r-rmarkdown)
26200 ("pandoc" ,pandoc)
26201 ("pandoc-citeproc" ,pandoc-citeproc))) ; for vignettes
26202 (home-page "https://github.com/tidymodels/tidymodels")
26203 (synopsis "Tidy collection for modeling and statistical analysis")
26204 (description
26205 "The tidy modeling \"verse\" is a collection of packages for modeling and
26206 statistical analysis that share the underlying design philosophy, grammar, and
26207 data structures of the tidyverse.")
26208 (license license:gpl3)))
26209
26210 (define-public r-mlecens
26211 (package
26212 (name "r-mlecens")
26213 (version "0.1-4")
26214 (source
26215 (origin
26216 (method url-fetch)
26217 (uri (cran-uri "MLEcens" version))
26218 (sha256
26219 (base32
26220 "0zlmrcjraypscgs2v0w4s4hm7qccsmaz4hjsgqpn0058vx622945"))))
26221 (properties `((upstream-name . "MLEcens")))
26222 (build-system r-build-system)
26223 (home-page "http://stat.ethz.ch/~maathuis/")
26224 (synopsis "Computation of the MLE for bivariate (interval) censored data")
26225 (description
26226 "This package contains functions to compute the nonparametric
26227 @dfn{maximum likelihood estimator} (MLE) for the bivariate distribution of
26228 @code{(X,Y)}, when realizations of @code{(X,Y)} cannot be observed directly.
26229 To be more precise, we consider the situation where we observe a set of
26230 rectangles that are known to contain the unobservable realizations of (X,Y).
26231 We compute the MLE based on such a set of rectangles. The methods can also be
26232 used for univariate censored data (see data set @code{cosmesis}), and for
26233 censored data with competing risks (see data set @code{menopause}). The
26234 package also provides functions to visualize the observed data and the MLE.")
26235 (license license:gpl2+)))
26236
26237 (define-public r-metafor
26238 (package
26239 (name "r-metafor")
26240 (version "2.4-0")
26241 (source
26242 (origin
26243 (method url-fetch)
26244 (uri (cran-uri "metafor" version))
26245 (sha256
26246 (base32
26247 "1b599fxk7s0brkchmx698fr5k4g1kzkia2rnlvhg349ffs5nfjmn"))))
26248 (properties `((upstream-name . "metafor")))
26249 (build-system r-build-system)
26250 (propagated-inputs
26251 `(("r-matrix" ,r-matrix)
26252 ("r-nlme" ,r-nlme)))
26253 (home-page "https://cran.r-project.org/web/packages/metafor/")
26254 (synopsis "Meta-analysis package for R")
26255 (description
26256 "This package provides a comprehensive collection of functions for
26257 conducting meta-analyses in R. The package includes functions to calculate
26258 various effect sizes or outcome measures, fit fixed-, random-, and
26259 mixed-effects models to such data, carry out moderator and meta-regression
26260 analyses, and create various types of meta-analytical plots (e.g., forest,
26261 funnel, radial, L'Abbe, Baujat, GOSH plots). For meta-analyses of binomial
26262 and person-time data, the package also provides functions that implement
26263 specialized methods, including the Mantel-Haenszel method, Peto's method, and
26264 a variety of suitable generalized linear (mixed-effects) models (i.e.
26265 mixed-effects logistic and Poisson regression models). Finally, the package
26266 provides functionality for fitting meta-analytic multivariate/multilevel
26267 models that account for non-independent sampling errors and/or true
26268 effects (e.g. due to the inclusion of multiple treatment studies, multiple
26269 endpoints, or other forms of clustering). Network meta-analyses and
26270 meta-analyses accounting for known correlation structures (e.g. due to
26271 phylogenetic relatedness) can also be conducted.")
26272 (license license:gpl2+)))
26273
26274 (define-public r-altmeta
26275 (package
26276 (name "r-altmeta")
26277 (version "3.2")
26278 (source
26279 (origin
26280 (method url-fetch)
26281 (uri (cran-uri "altmeta" version))
26282 (sha256
26283 (base32
26284 "0z252lbsknqp33i0b0xf5r7spr535iq47bv40vgip6nsqhgrl7b0"))))
26285 (properties `((upstream-name . "altmeta")))
26286 (build-system r-build-system)
26287 (propagated-inputs
26288 `(("r-coda" ,r-coda)
26289 ("r-lme4" ,r-lme4)
26290 ("r-matrix" ,r-matrix)
26291 ("r-metafor" ,r-metafor)
26292 ("r-rjags" ,r-rjags)))
26293 (home-page "https://cran.r-project.org/web/packages/altmeta/")
26294 (synopsis "Alternative meta-analysis methods")
26295 (description
26296 "This package provides alternative statistical methods for meta-analysis,
26297 including:
26298
26299 @enumerate
26300 @item bivariate generalized linear mixed models for synthesizing odds ratios,
26301 relative risks, and risk differences
26302 @item heterogeneity tests and measures that are robust to outliers;
26303 @item measures, tests, and visualization tools for publication bias or
26304 small-study effects;
26305 @item meta-analysis of diagnostic tests for synthesizing sensitivities,
26306 specificities, etc.;
26307 @item meta-analysis methods for synthesizing proportions;
26308 @item models for multivariate meta-analysis.
26309 @end enumerate
26310 ")
26311 (license license:gpl2+)))
26312
26313 (define-public r-perm
26314 (package
26315 (name "r-perm")
26316 (version "1.0-0.0")
26317 (source
26318 (origin
26319 (method url-fetch)
26320 (uri (cran-uri "perm" version))
26321 (sha256
26322 (base32
26323 "0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
26324 (properties `((upstream-name . "perm")))
26325 (build-system r-build-system)
26326 (home-page "https://cran.r-project.org/web/packages/perm/")
26327 (synopsis "Exact or asymptotic permutation tests")
26328 (description
26329 "This package provides several methods for performing permutation tests.
26330 It has three main functions, to perform linear permutation tests. These tests
26331 are tests where the test statistic is the sum of the product of a
26332 covariate (usually group indicator) and the scores.")
26333 ;; Any version of the GPL
26334 (license license:gpl2+)))
26335
26336 (define-public r-qtl
26337 (package
26338 (name "r-qtl")
26339 (version "1.47-9")
26340 (source
26341 (origin
26342 (method url-fetch)
26343 (uri (cran-uri "qtl" version))
26344 (sha256
26345 (base32
26346 "0hffirsvw9j82cdx6l7vhqn3a7ab52claqjlinv3lswl1nsfg93b"))))
26347 (build-system r-build-system)
26348 (home-page "https://rqtl.org/")
26349 (synopsis "R package for analyzing QTL experiments in genetics")
26350 (description "R/qtl is an extension library for the R statistics system.
26351 It is used to analyze experimental crosses for identifying genes contributing
26352 to variation in quantitative traits (so-called quantitative trait loci, QTLs).
26353
26354 Using a hidden Markov model, R/qtl estimates genetic maps, to identify
26355 genotyping errors, and to perform single-QTL and two-QTL, two-dimensional
26356 genome scans.")
26357 (license license:gpl3)))
26358
26359 (define-public r-qtl2
26360 (package
26361 (name "r-qtl2")
26362 (version "0.24")
26363 (source (origin
26364 (method url-fetch)
26365 (uri (cran-uri "qtl2" version))
26366 (sha256
26367 (base32 "1558khh0zkwm0rdk87krv9836krvwv5h7ymlz9bsrgcvypyr9186"))))
26368 (build-system r-build-system)
26369 (propagated-inputs
26370 `(("r-data-table" ,r-data-table)
26371 ("r-jsonlite" ,r-jsonlite)
26372 ("r-rcpp" ,r-rcpp)
26373 ("r-rcppeigen" ,r-rcppeigen)
26374 ("r-rsqlite" ,r-rsqlite)
26375 ("r-yaml" ,r-yaml)))
26376 (home-page "https://kbroman.org/qtl2/")
26377 (synopsis "Quantitative Trait Locus Mapping in Experimental Crosses")
26378 (description
26379 "This package provides a set of tools to perform @dfn{Quantitative Trait
26380 Locus} (QTL) analysis in experimental crosses. It is a reimplementation of the
26381 @code{R/qtl} package to better handle high-dimensional data and complex cross
26382 designs. Broman et al. (2018) <doi:10.1534/genetics.118.301595>.")
26383 (license license:gpl3)))
26384
26385 (define-public r-seqminer
26386 (package
26387 (name "r-seqminer")
26388 (version "8.0")
26389 (source
26390 (origin
26391 (method url-fetch)
26392 (uri (cran-uri "seqminer" version))
26393 (sha256
26394 (base32
26395 "00jzj8mwb0zaiwlifd41b26mrq9mzigj18nc29dydi0r42hxg16i"))))
26396 (build-system r-build-system)
26397 (inputs
26398 `(("zlib" ,zlib)))
26399 (home-page "http://seqminer.genomic.codes")
26400 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
26401 (description
26402 "This package provides tools to integrate nucleotide sequencing
26403 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
26404 ;; Any version of the GPL is acceptable
26405 (license (list license:gpl2+ license:gpl3+))))
26406
26407 (define-public r-maldiquant
26408 (package
26409 (name "r-maldiquant")
26410 (version "1.19.3")
26411 (source
26412 (origin
26413 (method url-fetch)
26414 (uri (cran-uri "MALDIquant" version))
26415 (sha256
26416 (base32
26417 "0b7kdz3x4sdq413h1q09l1qhcvdnnwv6fqsqwllks1cd3xy34c57"))))
26418 (properties `((upstream-name . "MALDIquant")))
26419 (build-system r-build-system)
26420 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
26421 (synopsis "Quantitative analysis of mass spectrometry data")
26422 (description
26423 "This package provides a complete analysis pipeline for matrix-assisted
26424 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
26425 two-dimensional mass spectrometry data. In addition to commonly used plotting
26426 and processing methods it includes distinctive features, namely baseline
26427 subtraction methods such as morphological filters (TopHat) or the
26428 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
26429 alignment using warping functions, handling of replicated measurements as well
26430 as allowing spectra with different resolutions.")
26431 (license license:gpl3+)))
26432
26433 (define-public r-scattermore
26434 (package
26435 (name "r-scattermore")
26436 (version "0.7")
26437 (source
26438 (origin
26439 (method url-fetch)
26440 (uri (cran-uri "scattermore" version))
26441 (sha256
26442 (base32
26443 "18nzlprmphkvjg946h10h2qq0wbkmv2526p8di6k2xl4gccq0qpk"))))
26444 (properties `((upstream-name . "scattermore")))
26445 (build-system r-build-system)
26446 (propagated-inputs
26447 `(("r-ggplot2" ,r-ggplot2)
26448 ("r-scales" ,r-scales)))
26449 (home-page "https://github.com/exaexa/scattermore")
26450 (synopsis "Scatterplots with more points")
26451 (description
26452 "This package provides C-based tools for converting large scatterplot
26453 data to rasters. It speeds up plotting of data with millions of points.")
26454 (license license:gpl3+)))
26455
26456 (define-public r-seuratobject
26457 (package
26458 (name "r-seuratobject")
26459 (version "4.0.0")
26460 (source
26461 (origin
26462 (method url-fetch)
26463 (uri (cran-uri "SeuratObject" version))
26464 (sha256
26465 (base32
26466 "03k27z7g76wy7mfja2cpxq183xk0906k9gxb2j6p1zw341gv4gii"))))
26467 (properties `((upstream-name . "SeuratObject")))
26468 (build-system r-build-system)
26469 (propagated-inputs
26470 `(("r-matrix" ,r-matrix)
26471 ("r-rcpp" ,r-rcpp)
26472 ("r-rcppeigen" ,r-rcppeigen)
26473 ("r-rlang" ,r-rlang)
26474 ("r-sctransform" ,r-sctransform)))
26475 (home-page "https://satijalab.org/seurat")
26476 (synopsis "Data structures for single cell data")
26477 (description
26478 "This package defines S4 classes for single-cell genomic data and
26479 associated information, such as dimensionality reduction embeddings,
26480 nearest-neighbor graphs, and spatially-resolved coordinates. It provides data
26481 access methods and R-native hooks to ensure the Seurat object is familiar to
26482 other R users.")
26483 (license license:gpl3)))
26484
26485 (define-public r-seurat
26486 (package
26487 (name "r-seurat")
26488 (version "4.0.0")
26489 (source (origin
26490 (method url-fetch)
26491 (uri (cran-uri "Seurat" version))
26492 (sha256
26493 (base32
26494 "1mp3py00bmzj4541d8ry5sfzkpfzvnl9dpa8n4qhakd13dl30xdn"))))
26495 (properties `((upstream-name . "Seurat")))
26496 (build-system r-build-system)
26497 (propagated-inputs
26498 `(("r-cluster" ,r-cluster)
26499 ("r-cowplot" ,r-cowplot)
26500 ("r-fitdistrplus" ,r-fitdistrplus)
26501 ("r-future" ,r-future)
26502 ("r-future-apply" ,r-future-apply)
26503 ("r-ggplot2" ,r-ggplot2)
26504 ("r-ggrepel" ,r-ggrepel)
26505 ("r-ggridges" ,r-ggridges)
26506 ("r-httr" ,r-httr)
26507 ("r-ica" ,r-ica)
26508 ("r-igraph" ,r-igraph)
26509 ("r-irlba" ,r-irlba)
26510 ("r-jsonlite" ,r-jsonlite)
26511 ("r-kernsmooth" ,r-kernsmooth)
26512 ("r-leiden" ,r-leiden)
26513 ("r-lmtest" ,r-lmtest)
26514 ("r-mass" ,r-mass)
26515 ("r-matrix" ,r-matrix)
26516 ("r-matrixstats" ,r-matrixstats)
26517 ("r-miniui" ,r-miniui)
26518 ("r-patchwork" ,r-patchwork)
26519 ("r-pbapply" ,r-pbapply)
26520 ("r-plotly" ,r-plotly)
26521 ("r-png" ,r-png)
26522 ("r-rann" ,r-rann)
26523 ("r-rcolorbrewer" ,r-rcolorbrewer)
26524 ("r-rcpp" ,r-rcpp)
26525 ("r-rcppannoy" ,r-rcppannoy)
26526 ("r-rcppeigen" ,r-rcppeigen)
26527 ("r-rcppprogress" ,r-rcppprogress)
26528 ("r-reticulate" ,r-reticulate)
26529 ("r-rlang" ,r-rlang)
26530 ("r-rocr" ,r-rocr)
26531 ("r-rtsne" ,r-rtsne)
26532 ("r-scales" ,r-scales)
26533 ("r-scattermore" ,r-scattermore)
26534 ("r-sctransform" ,r-sctransform)
26535 ("r-seuratobject" ,r-seuratobject)
26536 ("r-shiny" ,r-shiny)
26537 ("r-spatstat" ,r-spatstat)
26538 ("r-tibble" ,r-tibble)
26539 ("r-uwot" ,r-uwot)))
26540 (home-page "http://www.satijalab.org/seurat")
26541 (synopsis "Seurat is an R toolkit for single cell genomics")
26542 (description
26543 "This package is an R package designed for QC, analysis, and
26544 exploration of single cell RNA-seq data. It easily enables widely-used
26545 analytical techniques, including the identification of highly variable genes,
26546 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
26547 algorithms; density clustering, hierarchical clustering, k-means, and the
26548 discovery of differentially expressed genes and markers.")
26549 (license license:gpl3)))
26550
26551 (define-public r-phangorn
26552 (package
26553 (name "r-phangorn")
26554 (version "2.5.5")
26555 (source
26556 (origin
26557 (method url-fetch)
26558 (uri (cran-uri "phangorn" version))
26559 (sha256
26560 (base32
26561 "0ihkaykqjmf80d8wrk3saphxvnv58zma6pd13633bd3cwanc33f5"))))
26562 (build-system r-build-system)
26563 (propagated-inputs
26564 `(("r-ape" ,r-ape)
26565 ("r-fastmatch" ,r-fastmatch)
26566 ("r-igraph" ,r-igraph)
26567 ("r-magrittr" ,r-magrittr)
26568 ("r-matrix" ,r-matrix)
26569 ("r-quadprog" ,r-quadprog)
26570 ("r-rcpp" ,r-rcpp)))
26571 (home-page "https://github.com/KlausVigo/phangorn")
26572 (synopsis "Phylogenetic analysis in R")
26573 (description
26574 "Phangorn is a package for phylogenetic analysis in R. It supports
26575 estimation of phylogenetic trees and networks using Maximum Likelihood,
26576 Maximum Parsimony, distance methods and Hadamard conjugation.")
26577 (license license:gpl2+)))
26578
26579 (define-public r-diversitree
26580 (package
26581 (name "r-diversitree")
26582 (version "0.9-15")
26583 (source
26584 (origin
26585 (method url-fetch)
26586 (uri (cran-uri "diversitree" version))
26587 (sha256
26588 (base32
26589 "1sk3sgn5hi04978s5s7gy6pzp28g3v9rglmiamlgs96c9wyyyff7"))))
26590 (build-system r-build-system)
26591 (native-inputs
26592 `(("gfortran" ,gfortran)))
26593 (inputs `(("fftw" ,fftw) ("gsl" ,gsl)))
26594 (propagated-inputs
26595 `(("r-ape" ,r-ape)
26596 ("r-desolve" ,r-desolve)
26597 ("r-rcpp" ,r-rcpp)
26598 ("r-subplex" ,r-subplex)))
26599 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
26600 (synopsis "Comparative 'phylogenetic' analyses of diversification")
26601 (description "This package contains a number of comparative \"phylogenetic\"
26602 methods, mostly focusing on analysing diversification and character evolution.
26603 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
26604 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
26605 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
26606 include Markov models of discrete and continuous trait evolution and constant
26607 rate speciation and extinction.")
26608 (license license:gpl2+)))
26609
26610 (define-public r-absfiltergsea
26611 (package
26612 (name "r-absfiltergsea")
26613 (version "1.5.1")
26614 (source
26615 (origin
26616 (method url-fetch)
26617 (uri (cran-uri "AbsFilterGSEA" version))
26618 (sha256
26619 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
26620 (properties `((upstream-name . "AbsFilterGSEA")))
26621 (build-system r-build-system)
26622 (propagated-inputs
26623 `(("r-biobase" ,r-biobase)
26624 ("r-deseq" ,r-deseq)
26625 ("r-limma" ,r-limma)
26626 ("r-rcpp" ,r-rcpp)
26627 ("r-rcpparmadillo" ,r-rcpparmadillo)))
26628 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
26629 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
26630 (description
26631 "This package provides a function that performs gene-permuting of a gene-set
26632 enrichment analysis (GSEA) calculation with or without the absolute filtering.
26633 Without filtering, users can perform (original) two-tailed or one-tailed
26634 absolute GSEA.")
26635 (license license:gpl2)))
26636
26637 (define-public r-calculus
26638 (package
26639 (name "r-calculus")
26640 (version "0.3.0")
26641 (source
26642 (origin
26643 (method url-fetch)
26644 (uri (cran-uri "calculus" version))
26645 (sha256
26646 (base32
26647 "1wa5ap89cfcp0ancj9ivx5s2y0wqr2vmp9y115g7f6g772jwhscj"))))
26648 (properties `((upstream-name . "calculus")))
26649 (build-system r-build-system)
26650 (propagated-inputs
26651 `(("r-rcpp" ,r-rcpp)))
26652 (native-inputs
26653 `(("r-knitr" ,r-knitr)))
26654 (home-page "https://github.com/eguidotti/calculus")
26655 (synopsis "High dimensional numerical and symbolic calculus")
26656 (description
26657 "Efficient C++ optimized functions for numerical and symbolic calculus.
26658 It includes basic symbolic arithmetic, tensor calculus, Einstein summing
26659 convention, fast computation of the Levi-Civita symbol and generalized
26660 Kronecker delta, Taylor series expansion, multivariate Hermite polynomials,
26661 accurate high-order derivatives, differential operators (Gradient, Jacobian,
26662 Hessian, Divergence, Curl, Laplacian) and numerical integration in arbitrary
26663 orthogonal coordinate systems: cartesian, polar, spherical, cylindrical,
26664 parabolic or user defined by custom scale factors.")
26665 (license license:gpl3)))
26666
26667 (define-public r-decon
26668 (package
26669 (name "r-decon")
26670 (version "1.2-4")
26671 (source
26672 (origin
26673 (method url-fetch)
26674 (uri (cran-uri "decon" version))
26675 (sha256
26676 (base32
26677 "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
26678 (properties `((upstream-name . "decon")))
26679 (build-system r-build-system)
26680 (native-inputs
26681 `(("gfortran" ,gfortran)))
26682 (home-page
26683 "https://cran.r-project.org/web/packages/decon/")
26684 (synopsis "Deconvolution Estimation in Measurement Error Models")
26685 (description
26686 "This package contains a collection of functions to deal with
26687 nonparametric measurement error problems using deconvolution
26688 kernel methods. We focus two measurement error models in the
26689 package: (1) an additive measurement error model, where the
26690 goal is to estimate the density or distribution function from
26691 contaminated data; (2) nonparametric regression model with
26692 errors-in-variables. The R functions allow the measurement errors
26693 to be either homoscedastic or heteroscedastic. To make the
26694 deconvolution estimators computationally more efficient in R,
26695 we adapt the \"Fast Fourier Transform\" (FFT) algorithm for
26696 density estimation with error-free data to the deconvolution
26697 kernel estimation. Several methods for the selection of the
26698 data-driven smoothing parameter are also provided in the package.
26699 See details in: Wang, X.F. and Wang, B. (2011). Deconvolution
26700 estimation in measurement error models: The R package decon.
26701 Journal of Statistical Software, 39(10), 1-24.")
26702 (license license:gpl3+)))
26703
26704 (define-public r-locpol
26705 (package
26706 (name "r-locpol")
26707 (version "0.7-0")
26708 (source
26709 (origin
26710 (method url-fetch)
26711 (uri (cran-uri "locpol" version))
26712 (sha256
26713 (base32
26714 "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
26715 (properties `((upstream-name . "locpol")))
26716 (build-system r-build-system)
26717 (home-page
26718 "https://cran.r-project.org/web/packages/locpol/")
26719 (synopsis "Kernel Local Polynomial Regression")
26720 (description
26721 "Computes local polynomial estimators for the regression and
26722 also density. It comprises several different utilities to handle
26723 kernel estimators.")
26724 (license license:gpl2+)))
26725
26726 (define-public r-lpme
26727 (package
26728 (name "r-lpme")
26729 (version "1.1.1")
26730 (source
26731 (origin
26732 (method url-fetch)
26733 (uri (cran-uri "lpme" version))
26734 (sha256
26735 (base32
26736 "0si90nkgl8bqk8yvd2igdsrngiwqh8891072pfpzipifnd0f5448"))))
26737 (properties `((upstream-name . "lpme")))
26738 (build-system r-build-system)
26739 (propagated-inputs
26740 `(("r-decon" ,r-decon)
26741 ("r-flexmix" ,r-flexmix)
26742 ("r-locpol" ,r-locpol)
26743 ("r-rcpp" ,r-rcpp)
26744 ("r-rcpparmadillo" ,r-rcpparmadillo)))
26745 (home-page
26746 "https://cran.r-project.org/web/packages/lpme/")
26747 (synopsis "Nonparametric Estimation of Measurement Error Models")
26748 (description
26749 "Provide nonparametric methods for mean regression model,
26750 modal regression and conditional density estimation in the
26751 presence/absence of measurement error. Bandwidth selection is
26752 also provided for each method.")
26753 (license license:gpl2+)))
26754
26755 (define-public r-aws-signature
26756 (package
26757 (name "r-aws-signature")
26758 (version "0.6.0")
26759 (source
26760 (origin
26761 (method url-fetch)
26762 (uri (cran-uri "aws.signature" version))
26763 (sha256
26764 (base32
26765 "15llpcnrdq4y6jsn7079yjmgbr5d1wgy2ymsm3jj3gkrd5l4zzpp"))))
26766 (properties `((upstream-name . "aws.signature")))
26767 (build-system r-build-system)
26768 (propagated-inputs
26769 `(("r-base64enc" ,r-base64enc)
26770 ("r-digest" ,r-digest)))
26771 (home-page "https://github.com/cloudyr/aws.signature")
26772 (synopsis "Amazon Web Services Request Signatures")
26773 (description
26774 "This package generates version 2 and 4 request signatures for Amazon Web
26775 Services (AWS) and provides a mechanism for retrieving credentials from
26776 environment variables, AWS credentials files, and EC2 instance metadata. For
26777 use on EC2 instances, the package 'aws.ec2metadata' is suggested.")
26778 (license license:gpl2+)))
26779
26780 (define-public r-aws-s3
26781 (package
26782 (name "r-aws-s3")
26783 (version "0.3.21")
26784 (source
26785 (origin
26786 (method url-fetch)
26787 (uri (cran-uri "aws.s3" version))
26788 (sha256
26789 (base32
26790 "132cczq0ml7lpp2yl6l4p99dn1zihrncnpa6wyad4m9mnr50a8dx"))))
26791 (properties `((upstream-name . "aws.s3")))
26792 (build-system r-build-system)
26793 (propagated-inputs
26794 `(("r-aws-signature" ,r-aws-signature)
26795 ("r-base64enc" ,r-base64enc)
26796 ("r-curl" ,r-curl)
26797 ("r-digest" ,r-digest)
26798 ("r-httr" ,r-httr)
26799 ("r-xml2" ,r-xml2)))
26800 (home-page "https://github.com/cloudyr/aws.s3")
26801 (synopsis "AWS S3 Client Package")
26802 (description
26803 "This package provides a simple client package for the Amazon Web
26804 Services (AWS) Simple Storage Service (S3) REST API.")
26805 (license license:gpl2+)))
26806
26807 (define-public r-lgr
26808 (package
26809 (name "r-lgr")
26810 (version "0.4.2")
26811 (source (origin
26812 (method url-fetch)
26813 (uri (cran-uri "lgr" version))
26814 (sha256
26815 (base32
26816 "0k4kacjk7swm3gmdpha1rg44xb29vzvhvx48jhpb78glj5c9phyr"))))
26817 (build-system r-build-system)
26818 (propagated-inputs
26819 `(("r-r6" ,r-r6)))
26820 (native-inputs
26821 `(("r-knitr" ,r-knitr)))
26822 (home-page "https://s-fleck.github.io/lgr/")
26823 (synopsis "Fully featured logging framework")
26824 (description "This package offers a flexible, feature-rich yet
26825 light-weight logging framework based on @code{R6} classes. It supports
26826 hierarchical loggers, custom log levels, arbitrary data fields in log events,
26827 logging to plaintext, JSON, (rotating) files, memory buffers, and databases, as
26828 well as email and push notifications.")
26829 (license license:expat)))
26830
26831 (define-public r-mlr3measures
26832 (package
26833 (name "r-mlr3measures")
26834 (version "0.3.1")
26835 (source (origin
26836 (method url-fetch)
26837 (uri (cran-uri "mlr3measures" version))
26838 (sha256
26839 (base32
26840 "18jk4kdj9771r16smz7xhmmiilcdg1qlavln5hrpvkx780zh3hj6"))))
26841 (build-system r-build-system)
26842 (propagated-inputs
26843 `(("r-checkmate" ,r-checkmate)
26844 ("r-prroc" ,r-prroc)))
26845 (home-page "https://mlr3measures.mlr-org.com/")
26846 (synopsis "Performance measures for mlr3")
26847 (description "This package implements multiple performance measures for
26848 supervised learning. It includes over 40 measures for regression and
26849 classification. Additionally, meta information about the performance measures
26850 can be queried, e.g. what the best and worst possible performances scores
26851 are.")
26852 (license license:lgpl3)))
26853
26854 (define-public r-mlr3misc
26855 (package
26856 (name "r-mlr3misc")
26857 (version "0.7.0")
26858 (source (origin
26859 (method url-fetch)
26860 (uri (cran-uri "mlr3misc" version))
26861 (sha256
26862 (base32
26863 "19k3l2d6wnqvdng0m7p54rrlvwl5457lcy7bg82m2bbpqxi8qch3"))))
26864 (build-system r-build-system)
26865 (propagated-inputs
26866 `(("r-backports" ,r-backports)
26867 ("r-checkmate" ,r-checkmate)
26868 ("r-data-table" ,r-data-table)
26869 ("r-r6" ,r-r6)))
26870 (home-page "https://mlr3misc.mlr-org.com/")
26871 (synopsis "Helper functions for mlr3")
26872 (description "@code{mlr3misc} provides frequently used helper functions
26873 and assertions used in @code{mlr3} and its companion packages. It comes with
26874 helper functions for functional programming, for printing, to work with
26875 @code{data.table}, as well as some generally useful @code{R6} classes. This
26876 package also supersedes the package @code{BBmisc}.")
26877 (license license:lgpl3)))
26878
26879 (define-public r-paradox
26880 (package
26881 (name "r-paradox")
26882 (version "0.7.1")
26883 (source (origin
26884 (method url-fetch)
26885 (uri (cran-uri "paradox" version))
26886 (sha256
26887 (base32
26888 "1difp0bzsfxcmbm1snahh3i6417k1a2w4mnjx65p20n2yiclmrgs"))))
26889 (build-system r-build-system)
26890 (propagated-inputs
26891 `(("r-backports" ,r-backports)
26892 ("r-checkmate" ,r-checkmate)
26893 ("r-data-table" ,r-data-table)
26894 ("r-mlr3misc" ,r-mlr3misc)
26895 ("r-r6" ,r-r6)))
26896 (home-page "https://paradox.mlr-org.com/")
26897 (synopsis "Define and work with parameter spaces for complex algorithms")
26898 (description "With this package it is possible to define parameter spaces,
26899 constraints and dependencies for arbitrary algorithms, and to program on such
26900 spaces. It also includes statistical designs and random samplers. Objects are
26901 implemented as @code{R6} classes.")
26902 (license license:lgpl3)))
26903
26904 (define-public r-mlr3
26905 (package
26906 (name "r-mlr3")
26907 (version "0.11.0")
26908 (source (origin
26909 (method url-fetch)
26910 (uri (cran-uri "mlr3" version))
26911 (sha256
26912 (base32
26913 "0qh9vdac1als2123wf51bwa7spdqk33iydlawi5n5dpci892iahl"))))
26914 (build-system r-build-system)
26915 (propagated-inputs
26916 `(("r-r6" ,r-r6)
26917 ("r-backports" ,r-backports)
26918 ("r-checkmate" ,r-checkmate)
26919 ("r-data-table" ,r-data-table)
26920 ("r-digest" ,r-digest)
26921 ("r-future-apply" ,r-future-apply)
26922 ("r-lgr" ,r-lgr)
26923 ("r-mlbench" ,r-mlbench)
26924 ("r-mlr3measures" ,r-mlr3measures)
26925 ("r-mlr3misc" ,r-mlr3misc)
26926 ("r-palmerpenguins" ,r-palmerpenguins)
26927 ("r-paradox" ,r-paradox)
26928 ("r-parallelly" ,r-parallelly)
26929 ("r-uuid" ,r-uuid)))
26930 (home-page "https://mlr3.mlr-org.com/")
26931 (synopsis "Machine Learning in R - Next Generation")
26932 (description "@code{mlr3} enables efficient, object-oriented programming
26933 on the building blocks of machine learning. It provides @code{R6} objects for
26934 tasks, learners, resamplings, and measures. The package is geared towards
26935 scalability and larger datasets by supporting parallelization and out-of-memory
26936 data-backends like databases. While @code{mlr3} focuses on the core
26937 computational operations, add-on packages provide additional functionality.")
26938 (license license:lgpl3)))
26939
26940 (define-public r-mlr3learners
26941 (package
26942 (name "r-mlr3learners")
26943 (version "0.4.3")
26944 (source (origin
26945 (method url-fetch)
26946 (uri (cran-uri "mlr3learners" version))
26947 (sha256
26948 (base32
26949 "1wxlpzz3hpkn77n4ag1v868dmp140j1pmrhynsv5xfgk9fg0w7ri"))))
26950 (build-system r-build-system)
26951 (propagated-inputs
26952 `(("r-data-table" ,r-data-table)
26953 ("r-mlr3" ,r-mlr3)
26954 ("r-mlr3misc" ,r-mlr3misc)
26955 ("r-paradox" ,r-paradox)
26956 ("r-r6" ,r-r6)))
26957 (home-page "https://mlr3learners.mlr-org.com/")
26958 (synopsis "Recommended Learners for @code{mlr3}")
26959 (description "@code{mlr3learners} extends @code{mlr3} and @code{mlr3proba}
26960 with interfaces to essential machine learning packages on CRAN. This includes,
26961 but is not limited to: (penalized) linear and logistic regression, linear and
26962 quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
26963 vector machines, and gradient boosting.")
26964 (license license:lgpl3)))
26965
26966 (define-public r-bbotk
26967 (package
26968 (name "r-bbotk")
26969 (version "0.3.0")
26970 (source
26971 (origin
26972 (method url-fetch)
26973 (uri (cran-uri "bbotk" version))
26974 (sha256
26975 (base32
26976 "0kbjbwwq1fdfpl4xzy08hz4qvhjjchvz58icxq0dlbsmdyqwhwv0"))))
26977 (properties `((upstream-name . "bbotk")))
26978 (build-system r-build-system)
26979 (propagated-inputs
26980 `(("r-checkmate" ,r-checkmate)
26981 ("r-data-table" ,r-data-table)
26982 ("r-lgr" ,r-lgr)
26983 ("r-mlr3misc" ,r-mlr3misc)
26984 ("r-paradox" ,r-paradox)
26985 ("r-r6" ,r-r6)))
26986 (native-inputs
26987 `(("r-knitr" ,r-knitr)))
26988 (home-page "https://bbotk.mlr-org.com")
26989 (synopsis "Black-Box Optimization Toolkit")
26990 (description "This package provides a common framework for optimization of
26991 black-box functions for other packages, e.g. @code{mlr3}. It offers various
26992 optimization methods e.g. grid search, random search and generalized simulated
26993 annealing.")
26994 (license license:lgpl3)))
26995
26996 (define-public r-mlr3tuning
26997 (package
26998 (name "r-mlr3tuning")
26999 (version "0.7.0")
27000 (source (origin
27001 (method url-fetch)
27002 (uri (cran-uri "mlr3tuning" version))
27003 (sha256
27004 (base32
27005 "0xpq16qij05nsfwg0qnfziqjvgk5wn0dgl0sb5gg3qsp1cs6vfqj"))))
27006 (build-system r-build-system)
27007 (propagated-inputs
27008 `(("r-bbotk" ,r-bbotk)
27009 ("r-checkmate" ,r-checkmate)
27010 ("r-data-table" ,r-data-table)
27011 ("r-lgr" ,r-lgr)
27012 ("r-mlr3" ,r-mlr3)
27013 ("r-mlr3misc" ,r-mlr3misc)
27014 ("r-paradox" ,r-paradox)
27015 ("r-r6" ,r-r6)))
27016 (home-page "https://mlr3tuning.mlr-org.com/")
27017 (synopsis "Tuning for @code{mlr3}")
27018 (description "@code{mlr3tuning} implements methods for hyperparameter
27019 tuning, e.g. Grid Search, Random Search, or Simulated Annealing. Various
27020 termination criteria can be set and combined. The class @code{AutoTuner} provides a
27021 convenient way to perform nested resampling in combination with @code{mlr3}.")
27022 (license license:lgpl3)))
27023
27024 (define-public r-fontliberation
27025 (package
27026 (name "r-fontliberation")
27027 (version "0.1.0")
27028 (source
27029 (origin
27030 (method url-fetch)
27031 (uri (cran-uri "fontLiberation" version))
27032 (sha256
27033 (base32
27034 "1w1rl0g4ayyp8lwppmz9yzj9cizg7i50g07216jkm1q5w0is9pmc"))))
27035 (properties
27036 `((upstream-name . "fontLiberation")))
27037 (build-system r-build-system)
27038 (home-page "https://cran.r-project.org/package=fontLiberation")
27039 (synopsis "Liberation fonts")
27040 (description
27041 "This package provides a placeholder for the Liberation fontset intended
27042 for the fontquiver package. This fontset covers the 12 combinations of
27043 families (sans, serif, mono) and faces (plain, bold, italic, bold italic)
27044 supported in R graphics devices.")
27045 (license license:silofl1.1)))
27046
27047 (define-public r-fontbitstreamvera
27048 (package
27049 (name "r-fontbitstreamvera")
27050 (version "0.1.1")
27051 (source
27052 (origin
27053 (method url-fetch)
27054 (uri (cran-uri "fontBitstreamVera" version))
27055 (sha256
27056 (base32
27057 "0nipdlmhjv1wr3aidcl97nk6mppdkd65krgwqnhdsnv0jpfv761j"))))
27058 (properties
27059 `((upstream-name . "fontBitstreamVera")))
27060 (build-system r-build-system)
27061 (home-page "https://cran.r-project.org/package=fontBitstreamVera")
27062 (synopsis "Fonts for fontquiver")
27063 (description
27064 "This package is a placeholder for the Bitstream Vera font. It is
27065 intended for the fontquiver package.")
27066 (license
27067 (license:fsdg-compatible
27068 "https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts"
27069 "The Font Software may be sold as part of a larger software package but
27070 no copy of one or more of the Font Software typefaces may be sold by
27071 itself."))))
27072
27073 (define-public r-fontquiver
27074 (package
27075 (name "r-fontquiver")
27076 (version "0.2.1")
27077 (source
27078 (origin
27079 (method url-fetch)
27080 (uri (cran-uri "fontquiver" version))
27081 (sha256
27082 (base32
27083 "0qv3i9hch7cygl9983s3w68wfh5qvym2jkm52pp06p6mq8a1i1wm"))))
27084 (properties `((upstream-name . "fontquiver")))
27085 (build-system r-build-system)
27086 (propagated-inputs
27087 `(("r-fontbitstreamvera" ,r-fontbitstreamvera)
27088 ("r-fontliberation" ,r-fontliberation)))
27089 (home-page "https://cran.r-project.org/package=fontquiver")
27090 (synopsis "Set of installed fonts")
27091 (description
27092 "This package provides a set of fonts. This is useful when you want to
27093 avoid system fonts to make sure your outputs are reproducible.")
27094 (license license:gpl3)))
27095
27096 (define-public r-freetypeharfbuzz
27097 (package
27098 (name "r-freetypeharfbuzz")
27099 (version "0.2.6")
27100 (source
27101 (origin
27102 (method url-fetch)
27103 (uri (cran-uri "freetypeharfbuzz" version))
27104 (sha256
27105 (base32
27106 "0r3icgnq3jk4fm6z92cmhzdmflbk5df8zsmjg0dzpc4y48xafnk7"))))
27107 (properties
27108 `((upstream-name . "freetypeharfbuzz")))
27109 (build-system r-build-system)
27110 (arguments
27111 `(#:phases
27112 (modify-phases %standard-phases
27113 (add-after 'unpack 'prepare-static-libraries
27114 (lambda* (#:key inputs #:allow-other-keys)
27115 (mkdir-p "src/target/include")
27116 (let ((freetype (assoc-ref inputs "static-freetype"))
27117 (harfbuzz (assoc-ref inputs "static-harfbuzz")))
27118 (substitute* "src/Makevars.in"
27119 (("include @MK_FILE@") "") ; do not build static libs
27120 (("^HB_STATIC_LIB =.*")
27121 (string-append "HB_STATIC_LIB = " harfbuzz "/lib/libharfbuzz.a\n"))
27122 (("^FT_STATIC_LIB =.*")
27123 (string-append "FT_STATIC_LIB = " freetype "/lib/libfreetype.a\n")))
27124 (copy-recursively (string-append freetype "/include")
27125 "src/target/include")
27126 (copy-recursively (string-append harfbuzz "/include")
27127 "src/target/include")))))))
27128 (propagated-inputs
27129 `(("r-fontquiver" ,r-fontquiver)))
27130 ;; This may defeat the purpose of this package as our versions of freetype
27131 ;; and harfbuzz obviously differ from the tarballs offered by this
27132 ;; project. On the other hand, Guix arguably does a better job at
27133 ;; "ensur[ing] deterministic computation".
27134 (native-inputs
27135 `(("static-freetype"
27136 ,(package
27137 (inherit (static-package freetype))
27138 (arguments
27139 `(#:configure-flags
27140 (list "--enable-static=yes"
27141 "--with-pic=yes"
27142 "--without-zlib"
27143 "--without-bzip2"
27144 "--without-png"
27145 "--without-harfbuzz")))))
27146 ("static-harfbuzz"
27147 ,(package
27148 (inherit (static-package harfbuzz))
27149 (arguments
27150 `(#:tests? #false ; fail because shared library is disabled
27151 #:configure-flags
27152 (list "--enable-static=yes"
27153 "--enable-shared=no"
27154 "--with-pic=yes"
27155 "--with-freetype=yes"
27156 "--without-icu"
27157 "--without-cairo"
27158 "--without-fontconfig"
27159 "--without-glib")))))))
27160 (inputs
27161 `(("zlib" ,zlib)))
27162 (home-page "https://cran.r-project.org/package=freetypeharfbuzz")
27163 (synopsis "Deterministic computation of text box metrics")
27164 (description
27165 "Unlike other tools that dynamically link to the Cairo stack,
27166 freetypeharfbuzz is statically linked to specific versions of the FreeType and
27167 harfbuzz libraries. This ensures deterministic computation of text box
27168 extents for situations where reproducible results are crucial (for instance
27169 unit tests of graphics).")
27170 (license license:gpl3)))
27171
27172 (define-public r-vdiffr
27173 (package
27174 (name "r-vdiffr")
27175 (version "0.3.3")
27176 (source
27177 (origin
27178 (method url-fetch)
27179 (uri (cran-uri "vdiffr" version))
27180 (sha256
27181 (base32
27182 "0i0xdr8dakbkkgrhp0zvlnv3rxhc8h5naqq416mr5zv9q8i4p8jc"))
27183 (snippet
27184 '(begin
27185 (delete-file "inst/htmlwidgets/lib/jquery.min.js")))))
27186 (properties `((upstream-name . "vdiffr")))
27187 (build-system r-build-system)
27188 (arguments
27189 `(#:phases
27190 (modify-phases %standard-phases
27191 (add-after 'unpack 'process-javascript
27192 (lambda* (#:key inputs #:allow-other-keys)
27193 (with-directory-excursion "inst/htmlwidgets/lib/"
27194 (let ((source (assoc-ref inputs "js-jquery"))
27195 (target "jquery.min.js"))
27196 (format #true "Processing ~a --> ~a~%"
27197 source target)
27198 (invoke "esbuild" source "--minify"
27199 (string-append "--outfile=" target)))))))))
27200 (inputs
27201 `(("freetype" ,freetype)
27202 ("harfbuzz" ,harfbuzz)))
27203 (propagated-inputs
27204 `(("r-bh" ,r-bh)
27205 ("r-devtools" ,r-devtools)
27206 ("r-diffobj" ,r-diffobj)
27207 ("r-fontquiver" ,r-fontquiver)
27208 ("r-freetypeharfbuzz" ,r-freetypeharfbuzz)
27209 ("r-gdtools" ,r-gdtools)
27210 ("r-glue" ,r-glue)
27211 ("r-htmltools" ,r-htmltools)
27212 ("r-htmlwidgets" ,r-htmlwidgets)
27213 ("r-purrr" ,r-purrr)
27214 ("r-r6" ,r-r6)
27215 ("r-rcpp" ,r-rcpp)
27216 ("r-rlang" ,r-rlang)
27217 ("r-shiny" ,r-shiny)
27218 ("r-testthat" ,r-testthat)
27219 ("r-usethis" ,r-usethis)
27220 ("r-xml2" ,r-xml2)))
27221 (native-inputs
27222 `(("esbuild" ,esbuild)
27223 ("js-jquery"
27224 ,(origin
27225 (method url-fetch)
27226 (uri "https://code.jquery.com/jquery-1.12.4.js")
27227 (sha256
27228 (base32
27229 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))))
27230 (home-page "https://github.com/r-lib/vdiffr")
27231 (synopsis "Visual regression testing and graphical diffing")
27232 (description
27233 "This package is an extension to the testthat package that makes it easy
27234 to add graphical unit tests. It provides a Shiny application to manage the
27235 test cases.")
27236 (license license:gpl3)))
27237
27238 (define-public r-highlight
27239 (package
27240 (name "r-highlight")
27241 (version "0.5.0")
27242 (source
27243 (origin
27244 (method url-fetch)
27245 (uri (cran-uri "highlight" version))
27246 (sha256
27247 (base32
27248 "1shar4y07wyixg0ichdrn2xhgwkl3mv2pxkalqzisc69w605b3hf"))))
27249 (properties `((upstream-name . "highlight")))
27250 (build-system r-build-system)
27251 (home-page "https://github.com/hadley/highlight")
27252 (synopsis "Syntax highlighter for R code")
27253 (description
27254 "This package provides a syntax highlighter for R code based on the
27255 results of the R parser. It supports rendering in HTML and LaTeX markup. It
27256 includes a custom Sweave driver performing syntax highlighting of R code
27257 chunks.")
27258 (license license:gpl3+)))
27259
27260 (define-public r-clustree
27261 (package
27262 (name "r-clustree")
27263 (version "0.4.3")
27264 (source
27265 (origin
27266 (method url-fetch)
27267 (uri (cran-uri "clustree" version))
27268 (sha256
27269 (base32
27270 "0lxydy2f83qqd5dhlp2l546jax759l43b29j6g82079yzg1szwsz"))))
27271 (properties `((upstream-name . "clustree")))
27272 (build-system r-build-system)
27273 (propagated-inputs
27274 `(("r-checkmate" ,r-checkmate)
27275 ("r-dplyr" ,r-dplyr)
27276 ("r-ggplot2" ,r-ggplot2)
27277 ("r-ggraph" ,r-ggraph)
27278 ("r-ggrepel" ,r-ggrepel)
27279 ("r-igraph" ,r-igraph)
27280 ("r-rlang" ,r-rlang)
27281 ("r-tidygraph" ,r-tidygraph)
27282 ("r-viridis" ,r-viridis)))
27283 (native-inputs
27284 `(("r-knitr" ,r-knitr)))
27285 (home-page "https://github.com/lazappi/clustree")
27286 (synopsis "Visualize clusterings at different resolutions")
27287 (description
27288 "Deciding what resolution to use can be a difficult question when
27289 approaching a clustering analysis. One way to approach this problem is to
27290 look at how samples move as the number of clusters increases. This package
27291 allows you to produce clustering trees, a visualization for interrogating
27292 clusterings as resolution increases.")
27293 (license license:gpl3)))
27294
27295 (define-public r-textshaping
27296 (package
27297 (name "r-textshaping")
27298 (version "0.3.1")
27299 (source
27300 (origin
27301 (method url-fetch)
27302 (uri (cran-uri "textshaping" version))
27303 (sha256
27304 (base32
27305 "16y3amb9cxwq126q1mxssx7kswzalqf9n2437mi5n7q1nqby6wlq"))))
27306 (properties `((upstream-name . "textshaping")))
27307 (build-system r-build-system)
27308 (inputs
27309 `(("freetype" ,freetype)
27310 ("fribidi" ,fribidi)
27311 ("harfbuzz" ,harfbuzz)
27312 ("zlib" ,zlib)))
27313 (propagated-inputs
27314 `(("r-cpp11" ,r-cpp11)
27315 ("r-systemfonts" ,r-systemfonts)))
27316 (native-inputs
27317 `(("pkg-config" ,pkg-config)
27318 ("r-knitr" ,r-knitr)))
27319 (home-page "https://github.com/r-lib/textshaping")
27320 (synopsis "Bindings to the HarfBuzz and Fribidi libraries for text shaping")
27321 (description
27322 "This package provides access to the text shaping functionality in the
27323 HarfBuzz library and the bidirectional algorithm in the Fribidi library. This
27324 is a low-level utility package mainly for graphic devices that expands upon
27325 the font tool-set provided by the @code{systemfonts} package.")
27326 (license license:expat)))
27327
27328 (define-public r-ragg
27329 (package
27330 (name "r-ragg")
27331 (version "1.1.1")
27332 (source
27333 (origin
27334 (method url-fetch)
27335 (uri (cran-uri "ragg" version))
27336 (sha256
27337 (base32
27338 "0nh1xxrxgdbq9anzkc6k3n519czp9hqyiizakm3m2gl4l4w0vp0q"))))
27339 (properties `((upstream-name . "ragg")))
27340 (build-system r-build-system)
27341 (inputs
27342 `(("freetype" ,freetype)
27343 ("libjpeg" ,libjpeg-turbo)
27344 ("libpng" ,libpng)
27345 ("libtiff" ,libtiff)
27346 ("zlib" ,zlib)))
27347 (propagated-inputs
27348 `(("r-systemfonts" ,r-systemfonts)
27349 ("r-textshaping" ,r-textshaping)))
27350 (native-inputs
27351 `(("pkg-config" ,pkg-config)))
27352 (home-page "https://ragg.r-lib.org")
27353 (synopsis "Graphic devices based on AGG")
27354 (description
27355 "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D
27356 drawing library. The ragg package provides a set of graphic devices based on
27357 AGG to use as alternative to the raster devices provided through the
27358 @code{grDevices} package.")
27359 (license license:expat)))
27360
27361 (define-public r-downlit
27362 (package
27363 (name "r-downlit")
27364 (version "0.2.1")
27365 (source
27366 (origin
27367 (method url-fetch)
27368 (uri (cran-uri "downlit" version))
27369 (sha256
27370 (base32
27371 "0z4fz7c9kyd9v72wl3iqs2wxspi975d6b0rgjr9lvg8a18maa9z6"))))
27372 (properties `((upstream-name . "downlit")))
27373 (build-system r-build-system)
27374 (propagated-inputs
27375 `(("r-brio" ,r-brio)
27376 ("r-digest" ,r-digest)
27377 ("r-evaluate" ,r-evaluate)
27378 ("r-fansi" ,r-fansi)
27379 ("r-rlang" ,r-rlang)
27380 ("r-vctrs" ,r-vctrs)
27381 ("r-yaml" ,r-yaml)))
27382 (home-page "https://downlit.r-lib.org/")
27383 (synopsis "Syntax highlighting and automatic linking")
27384 (description
27385 "This package provides syntax highlighting of R code, specifically
27386 designed for the needs of RMarkdown packages like @code{pkgdown},
27387 @code{hugodown}, and @code{bookdown}. It includes linking of function calls
27388 to their documentation on the web, and automatic translation of ANSI escapes
27389 in output to the equivalent HTML.")
27390 (license license:expat)))
27391
27392 (define-public r-pkgdown
27393 (package
27394 (name "r-pkgdown")
27395 (version "1.6.1")
27396 (source
27397 (origin
27398 (method url-fetch)
27399 (uri (cran-uri "pkgdown" version))
27400 (sha256
27401 (base32
27402 "1k31biyvxkv3xjc1yy3nzb9wfza3vbx97fv17nly5a6vlv7zqbs4"))))
27403 (properties `((upstream-name . "pkgdown")))
27404 (build-system r-build-system)
27405 (inputs `(("pandoc" ,pandoc)))
27406 (propagated-inputs
27407 `(("r-callr" ,r-callr)
27408 ("r-crayon" ,r-crayon)
27409 ("r-desc" ,r-desc)
27410 ("r-digest" ,r-digest)
27411 ("r-downlit" ,r-downlit)
27412 ("r-fs" ,r-fs)
27413 ("r-httr" ,r-httr)
27414 ("r-magrittr" ,r-magrittr)
27415 ("r-memoise" ,r-memoise)
27416 ("r-openssl" ,r-openssl)
27417 ("r-purrr" ,r-purrr)
27418 ("r-ragg" ,r-ragg)
27419 ("r-rematch2" ,r-rematch2)
27420 ("r-rlang" ,r-rlang)
27421 ("r-rmarkdown" ,r-rmarkdown)
27422 ("r-tibble" ,r-tibble)
27423 ("r-whisker" ,r-whisker)
27424 ("r-withr" ,r-withr)
27425 ("r-xml2" ,r-xml2)
27426 ("r-yaml" ,r-yaml)))
27427 (native-inputs
27428 `(("r-knitr" ,r-knitr)))
27429 (home-page "https://pkgdown.r-lib.org")
27430 (synopsis "Make static HTML documentation for an R package")
27431 (description
27432 "The goal of this package is to generate an attractive and useful website
27433 from a source package. @code{pkgdown} converts your documentation, vignettes,
27434 README file, and more to HTML making it easy to share information about your
27435 package online.")
27436 (license license:expat)))
27437
27438 (define-public r-prereg
27439 (package
27440 (name "r-prereg")
27441 (version "0.5.0")
27442 (source
27443 (origin
27444 (method url-fetch)
27445 (uri (cran-uri "prereg" version))
27446 (sha256
27447 (base32
27448 "0bck13iiaxwpqh0rd45mp1s5d8z62ggg0wa7rmyi8a65aywiypsi"))))
27449 (properties `((upstream-name . "prereg")))
27450 (build-system r-build-system)
27451 (propagated-inputs
27452 `(("r-rmarkdown" ,r-rmarkdown)))
27453 (home-page "https://github.com/crsh/prereg")
27454 (synopsis
27455 "R Markdown Templates to preregister Scientific Studies")
27456 (description
27457 "This package provides a collection of templates to author
27458 preregistration documents for scientific studies in PDF format.")
27459 (license license:gpl3)))
27460
27461 (define-public r-ez
27462 (package
27463 (name "r-ez")
27464 (version "4.4-0")
27465 (source
27466 (origin
27467 (method url-fetch)
27468 (uri (cran-uri "ez" version))
27469 (sha256
27470 (base32
27471 "0a58s94x576dfz7wcbivrr2hmdh5x1vy16zwkqp9fmdzqx38pagq"))))
27472 (properties `((upstream-name . "ez")))
27473 (build-system r-build-system)
27474 (propagated-inputs
27475 `(("r-car" ,r-car)
27476 ("r-ggplot2" ,r-ggplot2)
27477 ("r-lme4" ,r-lme4)
27478 ("r-mass" ,r-mass)
27479 ("r-matrix" ,r-matrix)
27480 ("r-mgcv" ,r-mgcv)
27481 ("r-plyr" ,r-plyr)
27482 ("r-reshape2" ,r-reshape2)
27483 ("r-scales" ,r-scales)
27484 ("r-stringr" ,r-stringr)))
27485 (home-page "https://github.com/mike-lawrence/ez")
27486 (synopsis "Easy Analysis and Visualization of Factorial Experiments")
27487 (description
27488 "Facilitates easy analysis of factorial experiments, including purely
27489 within-Ss designs (a.k.a. \"repeated measures\"), purely between-Ss designs,
27490 and mixed within-and-between-Ss designs. The functions in this package aim to
27491 provide simple, intuitive and consistent specification of data analysis and
27492 visualization. Visualization functions also include design visualization for
27493 pre-analysis data auditing, and correlation matrix visualization. Finally,
27494 this package includes functions for non-parametric analysis, including
27495 permutation tests and bootstrap resampling. The bootstrap function obtains
27496 predictions either by cell means or by more advanced/powerful mixed effects
27497 models, yielding predictions and confidence intervals that may be easily
27498 visualized at any level of the experiment's design.")
27499 (license license:gpl2+)))
27500
27501 (define-public r-qdapregex
27502 (package
27503 (name "r-qdapregex")
27504 (version "0.7.2")
27505 (source
27506 (origin
27507 (method url-fetch)
27508 (uri (cran-uri "qdapRegex" version))
27509 (sha256
27510 (base32
27511 "1xa8q1way3gjadrjh3mv3xr4c6b4h16nd2c6lgl969difplpfz9p"))))
27512 (properties `((upstream-name . "qdapRegex")))
27513 (build-system r-build-system)
27514 (propagated-inputs `(("r-stringi" ,r-stringi)))
27515 (home-page
27516 "https://trinker.github.com/qdapRegex/")
27517 (synopsis
27518 "Regular Expression Removal, Extraction, and Replacement Tools")
27519 (description
27520 "This package provides a collection of regular expression tools
27521 associated with the @code{qdap} package that may be useful outside of the
27522 context of discourse analysis. Tools include removal/extraction/replacement of
27523 abbreviations, dates, dollar amounts, email addresses, hash tags, numbers,
27524 percentages, citations, person tags, phone numbers, times, and zip codes.")
27525 (license license:gpl2)))
27526
27527 (define-public r-mgsub
27528 (package
27529 (name "r-mgsub")
27530 (version "1.7.2")
27531 (source
27532 (origin
27533 (method url-fetch)
27534 (uri (cran-uri "mgsub" version))
27535 (sha256
27536 (base32
27537 "02l1b96zv36ia0c97wgcwfhi037mbn3wy9c64hcw0n0w67yj77rr"))))
27538 (properties `((upstream-name . "mgsub")))
27539 (build-system r-build-system)
27540 (native-inputs `(("r-knitr" ,r-knitr)))
27541 (home-page
27542 "https://cran.r-project.org/package=mgsub")
27543 (synopsis
27544 "Safe, Multiple, Simultaneous String Substitution")
27545 (description
27546 "Designed to enable simultaneous substitution in strings in a safe
27547 fashion. Safe means it does not rely on placeholders (which can cause errors
27548 in same length matches).")
27549 (license license:expat)))
27550
27551 (define-public r-textshape
27552 (package
27553 (name "r-textshape")
27554 (version "1.7.1")
27555 (source
27556 (origin
27557 (method url-fetch)
27558 (uri (cran-uri "textshape" version))
27559 (sha256
27560 (base32
27561 "02111kj3kka84mpx7s19bjna9cas8diw5fxz51v5ggz0ldswa5pa"))))
27562 (properties `((upstream-name . "textshape")))
27563 (build-system r-build-system)
27564 (propagated-inputs
27565 `(("r-data-table" ,r-data-table)
27566 ("r-slam" ,r-slam)
27567 ("r-stringi" ,r-stringi)))
27568 (home-page "http://github.com/trinker/textshape")
27569 (synopsis "Tools for Reshaping Text")
27570 (description
27571 "Tools that can be used to reshape and restructure text data.")
27572 (license license:gpl2)))
27573
27574 (define-public r-syuzhet
27575 (package
27576 (name "r-syuzhet")
27577 (version "1.0.6")
27578 (source
27579 (origin
27580 (method url-fetch)
27581 (uri (cran-uri "syuzhet" version))
27582 (sha256
27583 (base32
27584 "16iccqdbw02iw82nah6kwz3gwfghi864j2y698n4b9dyc386ijzv"))))
27585 (properties `((upstream-name . "syuzhet")))
27586 (build-system r-build-system)
27587 (propagated-inputs
27588 `(("r-dplyr" ,r-dplyr)
27589 ("r-dtt" ,r-dtt)
27590 ("r-nlp" ,r-nlp)
27591 ("r-rlang" ,r-rlang)
27592 ("r-textshape" ,r-textshape)
27593 ("r-tidyr" ,r-tidyr)
27594 ("r-zoo" ,r-zoo)))
27595 (native-inputs `(("r-knitr" ,r-knitr)))
27596 (home-page "https://github.com/mjockers/syuzhet")
27597 (synopsis
27598 "Extracts Sentiment and Sentiment-Derived Plot Arcs from Text")
27599 (description
27600 "Extracts sentiment and sentiment-derived plot arcs from text using a
27601 variety of sentiment dictionaries conveniently packaged for consumption by R
27602 users. Implemented dictionaries include @dfn{syuzhet} (default) developed in the
27603 Nebraska Literary Lab, @dfn{afinn} developed by Finn Arup Nielsen, @dfn{bing}
27604 developed by Minqing Hu and Bing Liu, and @dfn{nrc} developed by Mohammad, Saif
27605 M. and Turney, Peter D. Applicable references are available in
27606 @file{README.md} and in the documentation for the @code{get_sentiment}
27607 function. The package also provides a hack for implementing Stanford's coreNLP
27608 sentiment parser. The package provides several methods for plot arc
27609 normalization.")
27610 (license license:gpl3)))
27611
27612 (define-public r-lexicon
27613 (package
27614 (name "r-lexicon")
27615 (version "1.2.1")
27616 (source
27617 (origin
27618 (method url-fetch)
27619 (uri (cran-uri "lexicon" version))
27620 (sha256
27621 (base32
27622 "0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
27623 (properties `((upstream-name . "lexicon")))
27624 (build-system r-build-system)
27625 (propagated-inputs
27626 `(("r-data-table" ,r-data-table)
27627 ("r-syuzhet" ,r-syuzhet)))
27628 (home-page "https://github.com/trinker/lexicon")
27629 (synopsis "Lexicons for Text Analysis")
27630 (description
27631 "This package provides a collection of lexical hash tables, dictionaries,
27632 and word lists.")
27633 (license license:gpl3)))
27634
27635 (define-public r-english
27636 (package
27637 (name "r-english")
27638 (version "1.2-5")
27639 (source
27640 (origin
27641 (method url-fetch)
27642 (uri (cran-uri "english" version))
27643 (sha256
27644 (base32
27645 "0d6rin40wy2y6k75x8d5qvf03rfy139f309wrl8xwbdb1h8fjkd1"))))
27646 (properties `((upstream-name . "english")))
27647 (build-system r-build-system)
27648 (native-inputs `(("r-knitr" ,r-knitr)))
27649 (home-page
27650 "https://cran.r-project.org/package=english")
27651 (synopsis "Translate Integers into English")
27652 (description
27653 "Allow numbers to be presented in an English language version, one, two,
27654 three, ... Ordinals are also available, first, second, third, ... and
27655 indefinite article choice, \"a\" or \"an\".")
27656 (license license:gpl2)))
27657
27658 (define-public r-textclean
27659 (package
27660 (name "r-textclean")
27661 (version "0.9.3")
27662 (source
27663 (origin
27664 (method url-fetch)
27665 (uri (cran-uri "textclean" version))
27666 (sha256
27667 (base32
27668 "0kgjh6c4f14qkjc4fds7q7rpf4nkma3p0igm54fplmm3p853nvrz"))))
27669 (properties `((upstream-name . "textclean")))
27670 (build-system r-build-system)
27671 (propagated-inputs
27672 `(("r-data-table" ,r-data-table)
27673 ("r-english" ,r-english)
27674 ("r-glue" ,r-glue)
27675 ("r-lexicon" ,r-lexicon)
27676 ("r-mgsub" ,r-mgsub)
27677 ("r-qdapregex" ,r-qdapregex)
27678 ("r-stringi" ,r-stringi)
27679 ("r-textshape" ,r-textshape)))
27680 (home-page
27681 "https://github.com/trinker/textclean")
27682 (synopsis "Text Cleaning Tools")
27683 (description
27684 "Tools to clean and process text. Tools are geared at checking for
27685 substrings that are not optimal for analysis and replacing or removing them
27686 (normalizing) with more analysis friendly substrings (see Sproat, Black, Chen,
27687 Kumar, Ostendorf, & Richards (2001) @url{doi:10.1006/csla.2001.0169}) or
27688 extracting them into new variables. For example, emoticons are often used in
27689 text but not always easily handled by analysis algorithms. The
27690 @code{replace_emoticon()} function replaces emoticons with word equivalents.")
27691 (license license:gpl2)))
27692
27693 (define-public r-striprtf
27694 (package
27695 (name "r-striprtf")
27696 (version "0.5.2")
27697 (source
27698 (origin
27699 (method url-fetch)
27700 (uri (cran-uri "striprtf" version))
27701 (sha256
27702 (base32
27703 "1ra6aalalig6drsj26z9s24lmb10zssagqrvgqqi4358zbm8gwcd"))))
27704 (properties `((upstream-name . "striprtf")))
27705 (build-system r-build-system)
27706 (propagated-inputs
27707 `(("r-magrittr" ,r-magrittr)
27708 ("r-rcpp" ,r-rcpp)
27709 ("r-stringr" ,r-stringr)))
27710 (home-page "https://github.com/kota7/striprtf")
27711 (synopsis "Extract Text from RTF File")
27712 (description
27713 "Extracts plain text from @dfn{Rich Text Format} (RTF) file.")
27714 (license license:expat)))
27715
27716 (define-public r-ndjson
27717 (package
27718 (name "r-ndjson")
27719 (version "0.8.0")
27720 (source
27721 (origin
27722 (method url-fetch)
27723 (uri (cran-uri "ndjson" version))
27724 (sha256
27725 (base32
27726 "0lvzbgfi1sg4kya1mvv67z14qk3vz9q57x22qh57xq8ampdkg812"))
27727 (modules '((guix build utils)))
27728 (snippet
27729 '(begin
27730 ;; unvendor gzstream
27731 (for-each delete-file '("src/gzstream.cpp" "src/gzstream.h"))
27732 #t))))
27733 (properties `((upstream-name . "ndjson")))
27734 (build-system r-build-system)
27735 (arguments
27736 '(#:phases
27737 (modify-phases %standard-phases
27738 (add-after 'unpack 'use-system-gzstream
27739 (lambda* (#:key inputs #:allow-other-keys)
27740 (substitute* "src/Makevars"
27741 (("PKG_LIBS = " all)
27742 (string-append all "-lgzstream ")))
27743 #t)))))
27744 (inputs `(("zlib" ,zlib) ("gzstream" ,gzstream)))
27745 (propagated-inputs
27746 `(("r-data-table" ,r-data-table)
27747 ("r-rcpp" ,r-rcpp)
27748 ("r-tibble" ,r-tibble)))
27749 (home-page "https://gitlab.com/hrbrmstr/ndjson")
27750 (synopsis
27751 "Wicked-Fast @dfn{Streaming JSON} (ndjson) Reader")
27752 (description
27753 "@dfn{Streaming JSON} (ndjson) has one JSON record per-line and many
27754 modern ndjson files contain large numbers of records. These constructs may not
27755 be columnar in nature, but it is often useful to read in these files and
27756 \"flatten\" the structure out to enable working with the data in an R
27757 @code{data.frame}-like context. Functions are provided that make it possible
27758 to read in plain ndjson files or compressed (@code{gz}) ndjson files and either
27759 validate the format of the records or create \"flat\" @code{data.table}
27760 structures from them.")
27761 (license license:expat)))
27762
27763 (define-public r-streamr
27764 (package
27765 (name "r-streamr")
27766 (version "0.4.5")
27767 (source
27768 (origin
27769 (method url-fetch)
27770 (uri (cran-uri "streamR" version))
27771 (sha256
27772 (base32
27773 "1clx3b0j2515r1nmnl6ki7qw5n54q3x2jvqv3zrc00kq71mlj7ix"))))
27774 (properties `((upstream-name . "streamR")))
27775 (build-system r-build-system)
27776 (propagated-inputs
27777 `(("r-ndjson" ,r-ndjson)
27778 ("r-rcurl" ,r-rcurl)
27779 ("r-rjson" ,r-rjson)))
27780 (home-page
27781 "https://cran.r-project.org/package=streamR")
27782 (synopsis
27783 "Access to Twitter Streaming API via R")
27784 (description
27785 "This package provides functions to access Twitter's filter, sample, and
27786 user streams, and to parse the output into data frames.")
27787 (license license:gpl2)))
27788
27789 (define-public r-readods
27790 (package
27791 (name "r-readods")
27792 (version "1.7.0")
27793 (source
27794 (origin
27795 (method url-fetch)
27796 (uri (cran-uri "readODS" version))
27797 (sha256
27798 (base32
27799 "1hi217ab7hp15jsbzi5ak57cqf8jn2rv78bnn74q72gn9mrfra7n"))))
27800 (properties `((upstream-name . "readODS")))
27801 (build-system r-build-system)
27802 (propagated-inputs
27803 `(("r-cellranger" ,r-cellranger)
27804 ("r-readr" ,r-readr)
27805 ("r-stringi" ,r-stringi)
27806 ("r-xml2" ,r-xml2)))
27807 (native-inputs `(("r-knitr" ,r-knitr)))
27808 (home-page
27809 "https://cran.r-project.org/package=readODS")
27810 (synopsis "Read and Write ODS Files")
27811 (description
27812 "Import @dfn{OpenDocument Spreadsheet} (ODS) into R as a data frame.
27813 Also support writing data frame into ODS file.")
27814 (license license:gpl3)))
27815
27816 (define-public r-qpdf
27817 (package
27818 (name "r-qpdf")
27819 (version "1.1")
27820 (source
27821 (origin
27822 (method url-fetch)
27823 (uri (cran-uri "qpdf" version))
27824 (sha256
27825 (base32
27826 "03lnfncw8qd1fwfyqh1mjvnsjr3b63wxbah0wp5g7z7gba90dwbi"))
27827 (modules '((guix build utils)))
27828 (snippet
27829 '(begin
27830 ;; unvendor libqpdf
27831 (delete-file-recursively "src/libqpdf")
27832 (delete-file-recursively "src/include/qpdf")
27833 #t))))
27834 (properties `((upstream-name . "qpdf")))
27835 (build-system r-build-system)
27836 (arguments
27837 '(#:phases
27838 (modify-phases %standard-phases
27839 (add-after 'unpack 'configure
27840 (lambda _
27841 (setenv "EXTERNAL_QPDF" "1")
27842 #t)))))
27843 (inputs
27844 `(("zlib" ,zlib)
27845 ("qpdf" ,qpdf)))
27846 (propagated-inputs
27847 `(("r-askpass" ,r-askpass)
27848 ("r-curl" ,r-curl)
27849 ("r-rcpp" ,r-rcpp)))
27850 (native-inputs `(("pkg-config" ,pkg-config)))
27851 (home-page "https://github.com/ropensci/qpdf")
27852 (synopsis
27853 "Split, Combine and Compress PDF Files")
27854 (description
27855 "Content-preserving transformations transformations of PDF files such as
27856 split, combine, and compress. This package interfaces directly to the
27857 @code{qpdf} C++ API and does not require any command line utilities. Note that
27858 @code{qpdf} does not read actual content from PDF files: to extract text and
27859 data you need the @code{pdftools} package.")
27860 (license license:asl2.0)))
27861
27862 (define-public r-pdftools
27863 (package
27864 (name "r-pdftools")
27865 (version "2.3.1")
27866 (source
27867 (origin
27868 (method url-fetch)
27869 (uri (cran-uri "pdftools" version))
27870 (sha256
27871 (base32
27872 "01i5g2mjkshis0zlm7lrvi7kkzl4dn3if1hzwkgzf9n2mi33ndsx"))))
27873 (properties `((upstream-name . "pdftools")))
27874 (build-system r-build-system)
27875 (inputs
27876 `(("zlib" ,zlib)
27877 ("poppler" ,poppler)))
27878 (propagated-inputs
27879 `(("r-qpdf" ,r-qpdf) ("r-rcpp" ,r-rcpp)))
27880 (native-inputs `(("pkg-config" ,pkg-config)))
27881 (home-page
27882 "https://docs.ropensci.org/pdftools/")
27883 (synopsis
27884 "Text Extraction, Rendering and Converting of PDF Documents")
27885 (description
27886 "Utilities based on @code{libpoppler} for extracting text, fonts,
27887 attachments and metadata from a PDF file. Also supports high quality rendering
27888 of PDF documents into PNG, JPEG, TIFF format, or into raw bitmap vectors for
27889 further processing in R.")
27890 (license license:expat)))
27891
27892 (define-public r-antiword
27893 (package
27894 (name "r-antiword")
27895 (version "1.3")
27896 (source
27897 (origin
27898 (method url-fetch)
27899 (uri (cran-uri "antiword" version))
27900 (sha256
27901 (base32
27902 "034znb0g9wwb8gi1r3z75v3sbb4mh83qrc4y8mbfx5lbgh8zhj6j"))
27903 (modules '((guix build utils)))
27904 (snippet
27905 '(begin
27906 ;; unvendor libantiword
27907 (delete-file-recursively "src")
27908 #t))))
27909 (properties `((upstream-name . "antiword")))
27910 (build-system r-build-system)
27911 (arguments
27912 '(#:phases
27913 (modify-phases %standard-phases
27914 (add-after 'unpack 'use-system-antiword
27915 (lambda* (#:key inputs #:allow-other-keys)
27916 (substitute* "R/antiword.R"
27917 (("system.file\\(\"bin\", package = \"antiword\"\\)")
27918 (string-append "\"" (assoc-ref inputs "antiword") "/bin\"")))
27919 #t)))))
27920 (inputs `(("antiword" ,antiword)))
27921 (propagated-inputs `(("r-sys" ,r-sys)))
27922 (home-page
27923 "https://github.com/ropensci/antiword#readme")
27924 (synopsis
27925 "Extract Text from Microsoft Word Documents")
27926 (description
27927 "Wraps the @code{AntiWord} utility to extract text from Microsoft Word
27928 documents. The utility only supports the old @code{doc} format, not the new
27929 xml based @code{docx} format. Use the @code{xml2} package to read the
27930 latter.")
27931 (license license:gpl2)))
27932
27933 (define-public r-readtext
27934 (package
27935 (name "r-readtext")
27936 (version "0.80")
27937 (source
27938 (origin
27939 (method url-fetch)
27940 (uri (cran-uri "readtext" version))
27941 (sha256
27942 (base32
27943 "0q8ajnp99fwvh14ppkm2z3gqwdwmjrvxvsfb4q7ad0dhkqric05y"))))
27944 (properties `((upstream-name . "readtext")))
27945 (build-system r-build-system)
27946 (propagated-inputs
27947 `(("r-antiword" ,r-antiword)
27948 ("r-data-table" ,r-data-table)
27949 ("r-digest" ,r-digest)
27950 ("r-httr" ,r-httr)
27951 ("r-jsonlite" ,r-jsonlite)
27952 ("r-pdftools" ,r-pdftools)
27953 ("r-readods" ,r-readods)
27954 ("r-readxl" ,r-readxl)
27955 ("r-streamr" ,r-streamr)
27956 ("r-stringi" ,r-stringi)
27957 ("r-striprtf" ,r-striprtf)
27958 ("r-tibble" ,r-tibble)
27959 ("r-xml2" ,r-xml2)))
27960 (native-inputs `(("r-knitr" ,r-knitr)))
27961 (home-page
27962 "https://github.com/quanteda/readtext")
27963 (synopsis
27964 "Import and Handling for Plain and Formatted Text Files")
27965 (description
27966 "This package provides functions for importing and handling text files
27967 and formatted text files with additional meta-data, such including @code{.csv},
27968 @code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
27969 @code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
27970 (license license:gpl3)))
27971
27972 (define-public r-packcircles
27973 (package
27974 (name "r-packcircles")
27975 (version "0.3.4")
27976 (source
27977 (origin
27978 (method url-fetch)
27979 (uri (cran-uri "packcircles" version))
27980 (sha256
27981 (base32
27982 "05pv5c4k4njkr0xw6i6ksiy34hcyx2lbiqpv5gxw81yrkm0rxfyk"))))
27983 (properties `((upstream-name . "packcircles")))
27984 (build-system r-build-system)
27985 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
27986 (native-inputs `(("r-knitr" ,r-knitr)))
27987 (home-page
27988 "https://github.com/mbedward/packcircles")
27989 (synopsis "Circle Packing")
27990 (description
27991 "Algorithms to find arrangements of non-overlapping circles.")
27992 (license license:expat)))
27993
27994 ;; Cannot unbundle liblwgeom, because PostGIS does not support building it on
27995 ;; its own.
27996 (define-public r-lwgeom
27997 (package
27998 (name "r-lwgeom")
27999 (version "0.2-5")
28000 (source
28001 (origin
28002 (method url-fetch)
28003 (uri (cran-uri "lwgeom" version))
28004 (sha256
28005 (base32
28006 "0byhjqa2acns8mznl1ngnfygxxxyszvnq66qfg0smhhhdkwr67aa"))))
28007 (properties `((upstream-name . "lwgeom")))
28008 (build-system r-build-system)
28009 (inputs `(("geos" ,geos) ("proj" ,proj) ("sqlite" ,sqlite)))
28010 (propagated-inputs
28011 `(("r-rcpp" ,r-rcpp)
28012 ("r-sf" ,r-sf)
28013 ("r-units" ,r-units)))
28014 (native-inputs `(("pkg-config" ,pkg-config)))
28015 (home-page
28016 "https://github.com/r-spatial/lwgeom/")
28017 (synopsis
28018 "Bindings to Selected 'liblwgeom' Functions for Simple Features")
28019 (description
28020 "Access to selected functions found in
28021 @url{https://github.com/postgis/postgis/tree/master/liblwgeom,liblwgeom}, the
28022 light-weight geometry library used by @url{http://postgis.net/,PostGIS}.")
28023 (license license:gpl2)))
28024
28025 (define-public r-stars
28026 (package
28027 (name "r-stars")
28028 (version "0.5-1")
28029 (source
28030 (origin
28031 (method url-fetch)
28032 (uri (cran-uri "stars" version))
28033 (sha256
28034 (base32
28035 "0ybk899rc0rpf2cv5kwk78fvis5xnr255hfcy5khdxsxdqgl0m9j"))))
28036 (properties `((upstream-name . "stars")))
28037 (build-system r-build-system)
28038 (propagated-inputs
28039 `(("r-abind" ,r-abind)
28040 ("r-classint" ,r-classint)
28041 ("r-lwgeom" ,r-lwgeom)
28042 ("r-rlang" ,r-rlang)
28043 ("r-sf" ,r-sf)
28044 ("r-units" ,r-units)))
28045 (native-inputs `(("r-knitr" ,r-knitr)))
28046 (home-page "https://r-spatial.github.io/stars/")
28047 (synopsis
28048 "Spatiotemporal Arrays, Raster and Vector Data Cubes")
28049 (description
28050 "Reading, manipulating, writing and plotting spatiotemporal arrays
28051 (raster and vector data cubes) in @code{R}, using @code{GDAL} bindings provided
28052 by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.")
28053 (license license:asl2.0)))
28054
28055 (define-public r-tmaptools
28056 (package
28057 (name "r-tmaptools")
28058 (version "3.1-1")
28059 (source
28060 (origin
28061 (method url-fetch)
28062 (uri (cran-uri "tmaptools" version))
28063 (sha256
28064 (base32
28065 "0bal3czrdr93qig8s5cf5szld5vjbbks67rismfhlkmlgw6wp2gx"))))
28066 (properties `((upstream-name . "tmaptools")))
28067 (build-system r-build-system)
28068 (propagated-inputs
28069 `(("r-dichromat" ,r-dichromat)
28070 ("r-lwgeom" ,r-lwgeom)
28071 ("r-magrittr" ,r-magrittr)
28072 ("r-rcolorbrewer" ,r-rcolorbrewer)
28073 ("r-sf" ,r-sf)
28074 ("r-stars" ,r-stars)
28075 ("r-units" ,r-units)
28076 ("r-viridislite" ,r-viridislite)
28077 ("r-xml" ,r-xml)))
28078 (home-page
28079 "https://github.com/mtennekes/tmaptools")
28080 (synopsis "Thematic Map Tools")
28081 (description
28082 "Set of tools for reading and processing spatial data. The aim is to
28083 supply the workflow to create thematic maps. This package also facilitates
28084 @code{tmap}, the package for visualizing thematic maps.")
28085 (license license:gpl3)))
28086
28087 (define-public r-rworldmap
28088 (package
28089 (name "r-rworldmap")
28090 (version "1.3-6")
28091 (source
28092 (origin
28093 (method url-fetch)
28094 (uri (cran-uri "rworldmap" version))
28095 (sha256
28096 (base32
28097 "1q1h0n9qr0m5pdx10swrh9ddsvdj8kv5nqngrf3lnx9rg9iwivjk"))))
28098 (properties `((upstream-name . "rworldmap")))
28099 (build-system r-build-system)
28100 (propagated-inputs
28101 `(("r-fields" ,r-fields)
28102 ("r-maptools" ,r-maptools)
28103 ("r-sp" ,r-sp)))
28104 (home-page
28105 "https://github.com/AndySouth/rworldmap/")
28106 (synopsis "Mapping Global Data")
28107 (description
28108 "Enables mapping of country level and gridded user datasets.")
28109 (license license:gpl2+)))
28110
28111 (define-public r-rtweet
28112 (package
28113 (name "r-rtweet")
28114 (version "0.7.0")
28115 (source
28116 (origin
28117 (method url-fetch)
28118 (uri (cran-uri "rtweet" version))
28119 (sha256
28120 (base32
28121 "05pbvxm2vmf6935b9s6663k3aifnkr3m52wh2jvnplmrwyrfpn9n"))))
28122 (properties `((upstream-name . "rtweet")))
28123 (build-system r-build-system)
28124 (propagated-inputs
28125 `(("r-httpuv" ,r-httpuv)
28126 ("r-httr" ,r-httr)
28127 ("r-jsonlite" ,r-jsonlite)
28128 ("r-magrittr" ,r-magrittr)
28129 ("r-progress" ,r-progress)
28130 ("r-rcpp" ,r-rcpp)
28131 ("r-tibble" ,r-tibble)))
28132 (native-inputs `(("r-knitr" ,r-knitr)))
28133 (home-page
28134 "https://docs.ropensci.org/rtweet/")
28135 (synopsis "Collecting Twitter Data")
28136 (description
28137 "An implementation of calls designed to collect and organize Twitter data
28138 via @url{https://developer.twitter.com/en/docs,Twitter's REST and stream
28139 Application Program Interfaces (API)}.")
28140 (license license:expat)))
28141
28142 (define-public r-intervals
28143 (package
28144 (name "r-intervals")
28145 (version "0.15.2")
28146 (source
28147 (origin
28148 (method url-fetch)
28149 (uri (cran-uri "intervals" version))
28150 (sha256
28151 (base32
28152 "0mvwfwc03ifb30a3dzbmkv9adwqb8ajxhcw24d8xip8px063plhb"))))
28153 (properties `((upstream-name . "intervals")))
28154 (build-system r-build-system)
28155 (home-page "https://github.com/edzer/intervals")
28156 (synopsis
28157 "Tools for Working with Points and Intervals")
28158 (description
28159 "Tools for working with and comparing sets of points and intervals.")
28160 (license license:artistic2.0)))
28161
28162 (define-public r-eyelinker
28163 (package
28164 (name "r-eyelinker")
28165 (version "0.2.0")
28166 (source
28167 (origin
28168 (method url-fetch)
28169 (uri (cran-uri "eyelinker" version))
28170 (sha256
28171 (base32
28172 "14rfcdxad9iazwd46q6bm8gg1ryh6s8kf7arj00hhb7xz3gvk9c2"))))
28173 (properties `((upstream-name . "eyelinker")))
28174 (build-system r-build-system)
28175 (propagated-inputs
28176 `(("r-intervals" ,r-intervals)
28177 ("r-readr" ,r-readr)
28178 ("r-stringi" ,r-stringi)
28179 ("r-stringr" ,r-stringr)
28180 ("r-tibble" ,r-tibble)))
28181 (native-inputs `(("r-knitr" ,r-knitr)))
28182 (home-page
28183 "https://github.com/a-hurst/eyelinker")
28184 (synopsis
28185 "Import ASC Files from EyeLink Eye Trackers")
28186 (description
28187 "Imports plain-text ASC data files from EyeLink eye trackers into
28188 (relatively) tidy data frames for analysis and visualization.")
28189 (license license:gpl3)))
28190
28191 (define-public r-btm
28192 (package
28193 (name "r-btm")
28194 (version "0.3.5")
28195 (source
28196 (origin
28197 (method url-fetch)
28198 (uri (cran-uri "BTM" version))
28199 (sha256
28200 (base32
28201 "1x6bncb7r97z8bdyxnn2frdi9kyawfy6c2041mv9f42zdrfzm6jb"))))
28202 (properties `((upstream-name . "BTM")))
28203 (build-system r-build-system)
28204 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
28205 (home-page "https://github.com/bnosac/BTM")
28206 (synopsis "Biterm Topic Models for Short Text")
28207 (description
28208 "Biterm Topic Models find topics in collections of short texts. It is a
28209 word co-occurrence based topic model that learns topics by modeling word-word
28210 co-occurrences patterns which are called biterms. This in contrast to
28211 traditional topic models like Latent Dirichlet Allocation and Probabilistic
28212 Latent Semantic Analysis which are word-document co-occurrence topic models. A
28213 biterm consists of two words co-occurring in the same short text window. This
28214 context window can for example be a twitter message, a short answer on a
28215 survey, a sentence of a text or a document identifier. The techniques are
28216 explained in detail in the paper 'A Biterm Topic Model For Short Text' by
28217 Xiaohui Yan, Jiafeng Guo, Yanyan Lan, Xueqi Cheng (2013)
28218 @url{https://github.com/xiaohuiyan/xiaohuiyan.github.io/blob/master/paper/\
28219 BTM-WWW13.pdf}.")
28220 (license license:asl2.0)))
28221
28222 (define-public r-textplot
28223 (package
28224 (name "r-textplot")
28225 (version "0.1.4")
28226 (source
28227 (origin
28228 (method url-fetch)
28229 (uri (cran-uri "textplot" version))
28230 (sha256
28231 (base32
28232 "1sgkndy2cxk8c76h8hwajn6f78w5jj2n8vsmaxh9kj931crzn8cy"))))
28233 (properties `((upstream-name . "textplot")))
28234 (build-system r-build-system)
28235 (propagated-inputs
28236 `(("r-data-table" ,r-data-table)
28237 ("r-lattice" ,r-lattice)
28238 ("r-matrix" ,r-matrix)))
28239 (native-inputs `(("r-knitr" ,r-knitr)))
28240 (home-page "https://github.com/bnosac/textplot")
28241 (synopsis "Text Plots")
28242 (description
28243 "Visualise complex relations in texts. This is done by providing
28244 functionalities for displaying text co-occurrence networks, text correlation
28245 networks, dependency relationships as well as text clustering. Feel free to
28246 join the effort of providing interesting text visualisations.")
28247 (license license:gpl2)))