gnu: r-parallelly: Update to 1.24.0.
[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.2.1")
5308 (source
5309 (origin
5310 (method url-fetch)
5311 (uri (cran-uri "utf8" version))
5312 (sha256
5313 (base32
5314 "1yw7vjn3gpkqddc91rbfh4kk0zmn2kp0jycrd3066sissh01jhdk"))))
5315 (build-system r-build-system)
5316 (native-inputs
5317 `(("r-knitr" ,r-knitr)))
5318 (home-page "https://github.com/patperry/r-utf8")
5319 (synopsis "Unicode text processing")
5320 (description
5321 "This package provides tools to process and print UTF-8 encoded
5322 international text (Unicode). Input, validate, normalize, encode, format, and
5323 display.")
5324 (license license:asl2.0)))
5325
5326 (define-public r-zeallot
5327 (package
5328 (name "r-zeallot")
5329 (version "0.1.0")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (uri (cran-uri "zeallot" version))
5334 (sha256
5335 (base32
5336 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
5337 (build-system r-build-system)
5338 (home-page "https://github.com/nteetor/zeallot")
5339 (synopsis "Multiple, unpacking, and destructuring assignment")
5340 (description
5341 "This package provides a @code{%<-%} operator to perform multiple,
5342 unpacking, and destructuring assignment in R. The operator unpacks the
5343 right-hand side of an assignment into multiple values and assigns these values
5344 to variables on the left-hand side of the assignment.")
5345 (license license:expat)))
5346
5347 (define-public r-vctrs
5348 (package
5349 (name "r-vctrs")
5350 (version "0.3.6")
5351 (source
5352 (origin
5353 (method url-fetch)
5354 (uri (cran-uri "vctrs" version))
5355 (sha256
5356 (base32
5357 "09ddxgzyah7lw42hn6n8fynsixf43s10jamsf94d2aidky63czfz"))))
5358 (build-system r-build-system)
5359 (propagated-inputs
5360 `(("r-digest" ,r-digest)
5361 ("r-ellipsis" ,r-ellipsis)
5362 ("r-glue" ,r-glue)
5363 ("r-rlang" ,r-rlang)))
5364 (native-inputs
5365 `(("r-knitr" ,r-knitr)))
5366 (home-page "https://github.com/r-lib/vctrs")
5367 (synopsis "Vector helpers")
5368 (description
5369 "There are three main goals to the @code{vctrs} package:
5370
5371 @enumerate
5372 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
5373 @code{length()} and @code{class()}. These definitions are paired with a
5374 framework for type-coercion and size-recycling.
5375 @item To define type- and size-stability as desirable function properties, use
5376 them to analyse existing base function, and to propose better alternatives.
5377 This work has been particularly motivated by thinking about the ideal
5378 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
5379 @item To provide a new @code{vctr} base class that makes it easy to create new
5380 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
5381 a few new @code{vctrs} generics, making implementation considerably simpler
5382 and more robust.
5383 @end enumerate\n")
5384 (license license:gpl3)))
5385
5386 (define-public r-pillar
5387 (package
5388 (name "r-pillar")
5389 (version "1.5.1")
5390 (source
5391 (origin
5392 (method url-fetch)
5393 (uri (cran-uri "pillar" version))
5394 (sha256
5395 (base32
5396 "0wp68cg95895aybi7yjqy0sidvc68lmfqndinpd63dysci9x3r8c"))))
5397 (build-system r-build-system)
5398 (propagated-inputs
5399 `(("r-cli" ,r-cli)
5400 ("r-crayon" ,r-crayon)
5401 ("r-ellipsis" ,r-ellipsis)
5402 ("r-fansi" ,r-fansi)
5403 ("r-lifecycle" ,r-lifecycle)
5404 ("r-rlang" ,r-rlang)
5405 ("r-utf8" ,r-utf8)
5406 ("r-vctrs" ,r-vctrs)))
5407 (native-inputs
5408 `(("r-knitr" ,r-knitr)))
5409 (home-page "https://github.com/r-lib/pillar")
5410 (synopsis "Coloured formatting for columns")
5411 (description
5412 "This package provides a @code{pillar} generic designed for formatting
5413 columns of data using the full range of colours provided by modern
5414 terminals.")
5415 (license license:gpl3)))
5416
5417 (define-public r-uuid
5418 (package
5419 (name "r-uuid")
5420 (version "0.1-4")
5421 (source
5422 (origin
5423 (method url-fetch)
5424 (uri (cran-uri "uuid" version))
5425 (sha256
5426 (base32
5427 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
5428 (build-system r-build-system)
5429 (home-page "https://www.rforge.net/uuid")
5430 (synopsis "Tools for generating and handling of UUIDs")
5431 (description
5432 "This package provides tools for generating and handling of
5433 @dfn{Universally Unique Identifiers} (UUIDs).")
5434 (license license:expat)))
5435
5436 (define-public r-tinytex
5437 (package
5438 (name "r-tinytex")
5439 (version "0.30")
5440 (source
5441 (origin
5442 (method url-fetch)
5443 (uri (cran-uri "tinytex" version))
5444 (sha256
5445 (base32
5446 "0dk6mpszwh1m65b0wfwjlcvpzywmasf6p31niqiq53wnd92my0gw"))))
5447 (build-system r-build-system)
5448 (propagated-inputs
5449 `(("r-xfun" ,r-xfun)))
5450 (home-page "https://github.com/yihui/tinytex")
5451 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
5452 (description
5453 "This package provides helper functions to install and maintain the LaTeX
5454 distribution named TinyTeX, a lightweight, cross-platform, portable, and
5455 easy-to-maintain version of TeX Live. This package also contains helper
5456 functions to compile LaTeX documents, and install missing LaTeX packages
5457 automatically.")
5458 (license license:expat)))
5459
5460 (define-public r-tinytest
5461 (package
5462 (name "r-tinytest")
5463 (version "1.2.4")
5464 (source
5465 (origin
5466 (method url-fetch)
5467 (uri (cran-uri "tinytest" version))
5468 (sha256
5469 (base32
5470 "1asryjrah3fj39gg0c6yxgpr142j5bg2n990v7q8r0a5pb8gcr45"))))
5471 (properties `((upstream-name . "tinytest")))
5472 (build-system r-build-system)
5473 (home-page "https://github.com/markvanderloo/tinytest")
5474 (synopsis "Lightweight unit testing framework")
5475 (description
5476 "This package provides a lightweight unit testing framework. Main
5477 features:
5478
5479 @enumerate
5480 @item install tests with the package;
5481 @item test results are treated as data that can be stored and manipulated;
5482 @item test files are R scripts interspersed with test commands, that can be
5483 programmed over;
5484 @item fully automated build-install-test sequence for packages;
5485 @item skip tests when not run locally (e.g. on CRAN);
5486 @item flexible and configurable output printing;
5487 @item compare computed output with output stored with the package;
5488 @item run tests in parallel;
5489 @item extensible by other packages;
5490 @item report side effects.
5491 @end enumerate
5492 ")
5493 (license license:gpl3)))
5494
5495 (define-public r-network
5496 (package
5497 (name "r-network")
5498 (version "1.16.1")
5499 (source
5500 (origin
5501 (method url-fetch)
5502 (uri (cran-uri "network" version))
5503 (sha256
5504 (base32
5505 "1cgy7vlbinyndl0zkzvnpcmi240wry6iwfb42sz1mj5c9iwkar7b"))))
5506 (build-system r-build-system)
5507 (propagated-inputs
5508 `(("r-magrittr" ,r-magrittr)
5509 ("r-tibble" ,r-tibble)))
5510 (home-page "https://statnet.org/")
5511 (synopsis "Classes for relational data")
5512 (description
5513 "This package provides tools to create and modify network objects. The
5514 @code{network} class can represent a range of relational data types, and
5515 supports arbitrary vertex/edge/graph attributes.")
5516 (license license:gpl2+)))
5517
5518 (define-public r-stabs
5519 (package
5520 (name "r-stabs")
5521 (version "0.6-4")
5522 (source
5523 (origin
5524 (method url-fetch)
5525 (uri (cran-uri "stabs" version))
5526 (sha256
5527 (base32
5528 "1nf1yg14cgxrs4np1yghpzw1nczaslfv3rvf3918wrlzg0vp6l7q"))))
5529 (build-system r-build-system)
5530 (native-inputs
5531 `(("r-knitr" ,r-knitr)))
5532 (home-page "https://github.com/hofnerb/stabs")
5533 (synopsis "Stability selection with error control")
5534 (description
5535 "This package provides resampling procedures to assess the stability of
5536 selected variables with additional finite sample error control for
5537 high-dimensional variable selection procedures such as Lasso or boosting.
5538 Both, standard stability selection (Meinshausen & Buhlmann, 2010) and
5539 complementary pairs stability selection with improved error bounds
5540 (Shah & Samworth, 2013) are implemented. The package can be combined with
5541 arbitrary user specified variable selection approaches.")
5542 (license license:gpl2)))
5543
5544 (define-public r-rle
5545 (package
5546 (name "r-rle")
5547 (version "0.9.2")
5548 (source
5549 (origin
5550 (method url-fetch)
5551 (uri (cran-uri "rle" version))
5552 (sha256
5553 (base32
5554 "0sagl0jggg40lihzy7pfq4593rfvc3b3f7g6ggi85s7n18qvwg40"))))
5555 (properties `((upstream-name . "rle")))
5556 (build-system r-build-system)
5557 (home-page "https://cran.r-project.org/web/packages/rle/")
5558 (synopsis "Common functions for run-length encoded vectors")
5559 (description
5560 "This package provides common @code{base} and @code{stats} methods for
5561 @code{rle} objects, aiming to make it possible to treat them transparently as
5562 vectors.")
5563 (license license:gpl3)))
5564
5565 (define-public r-statnet-common
5566 (package
5567 (name "r-statnet-common")
5568 (version "4.4.1")
5569 (source
5570 (origin
5571 (method url-fetch)
5572 (uri (cran-uri "statnet.common" version))
5573 (sha256
5574 (base32
5575 "1z89an46xcl1d7dacj4irhk6pkajdz7v85b2347vczwdf622pksf"))))
5576 (properties
5577 `((upstream-name . "statnet.common")))
5578 (build-system r-build-system)
5579 (propagated-inputs
5580 `(("r-coda" ,r-coda)
5581 ("r-rle" ,r-rle)))
5582 (home-page "https://statnet.org")
5583 (synopsis "R scripts and utilities used by the Statnet software")
5584 (description "This package provides non-statistical utilities used by the
5585 software developed by the Statnet Project.")
5586 (license license:gpl3)))
5587
5588 (define-public r-statcheck
5589 (package
5590 (name "r-statcheck")
5591 (version "1.3.0")
5592 (source
5593 (origin
5594 (method url-fetch)
5595 (uri (cran-uri "statcheck" version))
5596 (sha256
5597 (base32
5598 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
5599 (build-system r-build-system)
5600 (propagated-inputs
5601 `(("r-ggplot2" ,r-ggplot2)
5602 ("r-plyr" ,r-plyr)
5603 ("r-rmarkdown" ,r-rmarkdown)))
5604 (home-page "https://cran.r-project.org/web/packages/statcheck/")
5605 (synopsis "Extract statistics from articles and recompute p-values")
5606 (description "This package can automatically extract statistical
5607 null-hypothesis significant testing (NHST) results from articles and recompute
5608 the p-values based on the reported test statistic and degrees of freedom to
5609 detect possible inconsistencies.")
5610 (license license:gpl2)))
5611
5612 (define-public r-sna
5613 (package
5614 (name "r-sna")
5615 (version "2.6")
5616 (source
5617 (origin
5618 (method url-fetch)
5619 (uri (cran-uri "sna" version))
5620 (sha256
5621 (base32
5622 "0ai0v4538d30m4wks5s3lch1yfmx1ml0nnrz7ihs097lv586a09s"))))
5623 (build-system r-build-system)
5624 (propagated-inputs
5625 `(("r-network" ,r-network)
5626 ("r-statnet-common" ,r-statnet-common)))
5627 (home-page "https://statnet.org")
5628 (synopsis "Tools for social network analysis")
5629 (description
5630 "This package provides a range of tools for social network analysis,
5631 including node and graph-level indices, structural distance and covariance
5632 methods, structural equivalence detection, network regression, random graph
5633 generation, and 2D/3D network visualization.")
5634 (license license:gpl2+)))
5635
5636 (define-public r-tfisher
5637 (package
5638 (name "r-tfisher")
5639 (version "0.2.0")
5640 (source
5641 (origin
5642 (method url-fetch)
5643 (uri (cran-uri "TFisher" version))
5644 (sha256
5645 (base32
5646 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
5647 (properties `((upstream-name . "TFisher")))
5648 (build-system r-build-system)
5649 (propagated-inputs
5650 `(("r-matrix" ,r-matrix)
5651 ("r-mvtnorm" ,r-mvtnorm)
5652 ("r-sn" ,r-sn)))
5653 (home-page "https://cran.r-project.org/web/packages/TFisher/")
5654 (synopsis "Optimal thresholding Fisher's p-value combination method")
5655 (description
5656 "This package provides the @dfn{cumulative distribution function} (CDF),
5657 quantile, and statistical power calculator for a collection of thresholding
5658 Fisher's p-value combination methods, including Fisher's p-value combination
5659 method, truncated product method and, in particular, soft-thresholding
5660 Fisher's p-value combination method which is proven to be optimal in some
5661 context of signal detection. The p-value calculator for the omnibus version
5662 of these tests are also included.")
5663 (license license:gpl2)))
5664
5665 (define-public r-ttr
5666 (package
5667 (name "r-ttr")
5668 (version "0.24.2")
5669 (source
5670 (origin
5671 (method url-fetch)
5672 (uri (cran-uri "TTR" version))
5673 (sha256
5674 (base32
5675 "06vicgbhwpsww09hhha5mbcd0cwip6cvkfbhjjhp950rv64bk1r5"))))
5676 (properties `((upstream-name . "TTR")))
5677 (build-system r-build-system)
5678 (propagated-inputs
5679 `(("r-curl" ,r-curl)
5680 ("r-xts" ,r-xts)
5681 ("r-zoo" ,r-zoo)))
5682 (home-page "https://github.com/joshuaulrich/TTR")
5683 (synopsis "Technical trading rules")
5684 (description
5685 "This package provides functions and data to construct technical trading
5686 rules with R.")
5687 (license license:gpl2)))
5688
5689 (define-public r-leaps
5690 (package
5691 (name "r-leaps")
5692 (version "3.1")
5693 (source
5694 (origin
5695 (method url-fetch)
5696 (uri (cran-uri "leaps" version))
5697 (sha256
5698 (base32
5699 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
5700 (build-system r-build-system)
5701 (native-inputs `(("gfortran" ,gfortran)))
5702 (home-page "https://cran.r-project.org/web/packages/leaps/")
5703 (synopsis "Regression subset selection")
5704 (description
5705 "This package provides tools for regression subset selection, including
5706 exhaustive search.")
5707 (license license:gpl2+)))
5708
5709 (define-public r-splus2r
5710 (package
5711 (name "r-splus2r")
5712 (version "1.3-3")
5713 (source
5714 (origin
5715 (method url-fetch)
5716 (uri (cran-uri "splus2R" version))
5717 (sha256
5718 (base32
5719 "035zd22zcpkh74rik9ws6g8al6vjz7jgrqs5si361bzb5n290p3x"))))
5720 (properties `((upstream-name . "splus2R")))
5721 (build-system r-build-system)
5722 (home-page "https://cran.r-project.org/web/packages/splus2R/")
5723 (synopsis "Supplemental S-PLUS functionality in R")
5724 (description
5725 "Currently there are many functions in S-PLUS that are missing in R. To
5726 facilitate the conversion of S-PLUS packages to R packages, this package
5727 provides some missing S-PLUS functionality in R.")
5728 (license license:gpl2)))
5729
5730 (define-public r-ifultools
5731 (package
5732 (name "r-ifultools")
5733 (version "2.0-22")
5734 (source
5735 (origin
5736 (method url-fetch)
5737 (uri (cran-uri "ifultools" version))
5738 (sha256
5739 (base32
5740 "0f95vqc47dgssqngznk0rclr72ndbyxc7gdq2cmbksvq7qpn3gg1"))))
5741 (build-system r-build-system)
5742 (propagated-inputs
5743 `(("r-mass" ,r-mass)
5744 ("r-splus2r" ,r-splus2r)))
5745 (home-page "https://cran.r-project.org/web/packages/ifultools/")
5746 (synopsis "Insightful research tools")
5747 (description "This package provides C code used by the wmtsa, fractal, and
5748 sapa R packages.")
5749 (license license:gpl2)))
5750
5751 (define-public r-sapa
5752 (package
5753 (name "r-sapa")
5754 (version "2.0-2")
5755 (source
5756 (origin
5757 (method url-fetch)
5758 (uri (cran-uri "sapa" version))
5759 (sha256
5760 (base32
5761 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
5762 (build-system r-build-system)
5763 (propagated-inputs
5764 `(("r-ifultools" ,r-ifultools)
5765 ("r-splus2r" ,r-splus2r)))
5766 (home-page "https://cran.r-project.org/web/packages/sapa/")
5767 (synopsis "Spectral analysis for physical applications")
5768 (description "This package provides software for the book Spectral
5769 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
5770 Cambridge University Press, 1993.")
5771 (license license:gpl2)))
5772
5773 (define-public r-aggregation
5774 (package
5775 (name "r-aggregation")
5776 (version "1.0.1")
5777 (source
5778 (origin
5779 (method url-fetch)
5780 (uri (cran-uri "aggregation" version))
5781 (sha256
5782 (base32
5783 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
5784 (build-system r-build-system)
5785 (home-page "https://cran.r-project.org/web/packages/aggregation/")
5786 (synopsis "Methods for p-value aggregation")
5787 (description
5788 "This package contains functionality for performing the following methods
5789 of p-value aggregation: Fisher's method, the Lancaster method (weighted
5790 Fisher's method), and Sidak correction.")
5791 (license license:gpl3)))
5792
5793 (define-public r-quantmod
5794 (package
5795 (name "r-quantmod")
5796 (version "0.4.18")
5797 (source
5798 (origin
5799 (method url-fetch)
5800 (uri (cran-uri "quantmod" version))
5801 (sha256
5802 (base32
5803 "0dbcrncv06iqcbkky95dd7l32xq0hhbnkb0kj8wwzym1jf748h5a"))))
5804 (build-system r-build-system)
5805 (propagated-inputs
5806 `(("r-curl" ,r-curl)
5807 ("r-ttr" ,r-ttr)
5808 ("r-xts" ,r-xts)
5809 ("r-zoo" ,r-zoo)))
5810 (home-page "https://cran.r-project.org/web/packages/quantmod/")
5811 (synopsis "Quantitative financial modelling framework")
5812 (description "This package provides a quantitative financial modelling
5813 framework to allow users to specify, build, trade, and analyse quantitative
5814 financial trading strategies.")
5815 (license license:gpl3)))
5816
5817 (define-public r-tseries
5818 (package
5819 (name "r-tseries")
5820 (version "0.10-48")
5821 (source
5822 (origin
5823 (method url-fetch)
5824 (uri (cran-uri "tseries" version))
5825 (sha256
5826 (base32
5827 "0wa4rcf0igayi1yrwc6wak6d491560p0z89rz32haqlkiiq25gak"))))
5828 (build-system r-build-system)
5829 (propagated-inputs
5830 `(("r-quadprog" ,r-quadprog)
5831 ("r-quantmod" ,r-quantmod)
5832 ("r-zoo" ,r-zoo)))
5833 (native-inputs
5834 `(("gfortran" ,gfortran)))
5835 (home-page "https://cran.r-project.org/web/packages/tseries/")
5836 (synopsis "Time series analysis and computational finance")
5837 (description
5838 "This package provides functions relating to time series analysis and
5839 computational finance.")
5840 (license license:gpl2)))
5841
5842 (define-public r-wmtsa
5843 (package
5844 (name "r-wmtsa")
5845 (version "2.0-3")
5846 (source
5847 (origin
5848 (method url-fetch)
5849 (uri (cran-uri "wmtsa" version))
5850 (sha256
5851 (base32
5852 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
5853 (build-system r-build-system)
5854 (propagated-inputs
5855 `(("r-ifultools" ,r-ifultools)
5856 ("r-mass" ,r-mass)
5857 ("r-splus2r" ,r-splus2r)))
5858 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
5859 (synopsis "Wavelet methods for time series analysis")
5860 (description
5861 "This package provides software to accompany the book \"Wavelet Methods
5862 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
5863 University Press, 2000.")
5864 (license license:gpl2)))
5865
5866 (define-public r-tsa
5867 (package
5868 (name "r-tsa")
5869 (version "1.3")
5870 (source
5871 (origin
5872 (method url-fetch)
5873 (uri (cran-uri "TSA" version))
5874 (sha256
5875 (base32
5876 "1bv5q609lhmrcxnjnvcj497fbjlv89zwa8q918hw4iki5nkvwwdb"))))
5877 (properties `((upstream-name . "TSA")))
5878 (build-system r-build-system)
5879 (propagated-inputs
5880 `(("r-leaps" ,r-leaps)
5881 ("r-locfit" ,r-locfit)
5882 ("r-mgcv" ,r-mgcv)
5883 ("r-tseries" ,r-tseries)))
5884 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
5885 (synopsis "Time series analysis")
5886 (description
5887 "This package contains R functions and datasets detailed in the book
5888 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
5889 Cryer and Kung-Sik Chan.")
5890 (license license:gpl2+)))
5891
5892 (define-public r-extradistr
5893 (package
5894 (name "r-extradistr")
5895 (version "1.9.1")
5896 (source
5897 (origin
5898 (method url-fetch)
5899 (uri (cran-uri "extraDistr" version))
5900 (sha256
5901 (base32
5902 "1gypnbvdzczl0mvznvy8r7hzsvc5gvdvi2mmzj21cqdw9n63944r"))))
5903 (properties `((upstream-name . "extraDistr")))
5904 (build-system r-build-system)
5905 (propagated-inputs
5906 `(("r-rcpp" ,r-rcpp)))
5907 (home-page "https://github.com/twolodzko/extraDistr")
5908 (synopsis "Additional univariate and multivariate distributions")
5909 (description
5910 "This package implements density, distribution functions, quantile
5911 functions and random generation functions for a large number of univariate and
5912 multivariate distributions.")
5913 (license license:gpl2)))
5914
5915 (define-public r-fractal
5916 (package
5917 (name "r-fractal")
5918 (version "2.0-4")
5919 (source
5920 (origin
5921 (method url-fetch)
5922 (uri (cran-uri "fractal" version))
5923 (sha256
5924 (base32
5925 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
5926 (build-system r-build-system)
5927 (propagated-inputs
5928 `(("r-ifultools" ,r-ifultools)
5929 ("r-mass" ,r-mass)
5930 ("r-sapa" ,r-sapa)
5931 ("r-scatterplot3d" ,r-scatterplot3d)
5932 ("r-splus2r" ,r-splus2r)
5933 ("r-wmtsa" ,r-wmtsa)))
5934 (home-page "https://cran.r-project.org/web/packages/fractal/")
5935 (synopsis "Fractal time series modeling and analysis")
5936 (description
5937 "This package provides tools for stochastic fractal and deterministic
5938 chaotic time series analysis.")
5939 (license license:gpl2)))
5940
5941 (define-public r-urca
5942 (package
5943 (name "r-urca")
5944 (version "1.3-0")
5945 (source
5946 (origin
5947 (method url-fetch)
5948 (uri (cran-uri "urca" version))
5949 (sha256
5950 (base32
5951 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
5952 (build-system r-build-system)
5953 (propagated-inputs `(("r-nlme" ,r-nlme)))
5954 (native-inputs `(("gfortran" ,gfortran)))
5955 (home-page "https://cran.r-project.org/web/packages/urca/")
5956 (synopsis "Unit root and cointegration tests for time series data")
5957 (description
5958 "This package provides unit root and cointegration tests encountered in
5959 applied econometric analysis.")
5960 (license license:gpl2+)))
5961
5962 (define-public r-cubature
5963 (package
5964 (name "r-cubature")
5965 (version "2.0.4.1")
5966 (source
5967 (origin
5968 (method url-fetch)
5969 (uri (cran-uri "cubature" version))
5970 (sha256
5971 (base32
5972 "006la36gxdikvmdnq4ny7ik7r30id4z3b3fqsl57dpqwkpsbsgrq"))))
5973 (build-system r-build-system)
5974 (propagated-inputs
5975 `(("r-rcpp" ,r-rcpp)))
5976 (native-inputs
5977 `(("r-knitr" ,r-knitr)))
5978 (home-page "https://github.com/bnaras/cubature")
5979 (synopsis "Adaptive multivariate integration over hypercubes")
5980 (description
5981 "This package is an R wrapper around the cubature C library for adaptive
5982 multivariate integration over hypercubes. This version provides both
5983 @code{hcubature} and @code{pcubature} routines in addition to a vector
5984 interface.")
5985 ;; The included cubature C library is released under GPLv2+, but the
5986 ;; wrapper declares the license to be GPLv3+.
5987 (license (list license:gpl2+ license:gpl3+))))
5988
5989 (define-public r-trend
5990 (package
5991 (name "r-trend")
5992 (version "1.1.4")
5993 (source
5994 (origin
5995 (method url-fetch)
5996 (uri (cran-uri "trend" version))
5997 (sha256
5998 (base32
5999 "1mr5g5gaxiqj6x83ngcbwwh57vhrhcz0x9dh0rmvs9y2ivk29ccs"))))
6000 (build-system r-build-system)
6001 (propagated-inputs
6002 `(("r-extradistr" ,r-extradistr)))
6003 (native-inputs
6004 `(("gfortran" ,gfortran)))
6005 (home-page "https://cran.r-project.org/web/packages/trend/")
6006 (synopsis "Non-parametric trend tests and change-point detection")
6007 (description
6008 "The analysis of environmental data often requires the detection of
6009 trends and change-points. This package includes tests for trend
6010 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
6011 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
6012 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
6013 correlation trend test), change-point detection (Lanzante's test procedures,
6014 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
6015 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
6016 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
6017 sample Robust Rank-Order Distributional Test.")
6018 (license license:gpl3)))
6019
6020 (define-public r-expm
6021 (package
6022 (name "r-expm")
6023 (version "0.999-6")
6024 (source
6025 (origin
6026 (method url-fetch)
6027 (uri (cran-uri "expm" version))
6028 (sha256
6029 (base32
6030 "1p5dapwv8ycxaysgi6imnby04i4kh1c5a2czqa4wygz0s8pr2y9c"))))
6031 (build-system r-build-system)
6032 (propagated-inputs `(("r-matrix" ,r-matrix)))
6033 (native-inputs `(("gfortran" ,gfortran)))
6034 (home-page "https://r-forge.r-project.org/projects/expm/")
6035 (synopsis "Tools for matrix exponentials and related quantities")
6036 (description
6037 "This package provides tools for the computation of the matrix
6038 exponential, logarithm, square root, and related quantities.")
6039 (license license:gpl2+)))
6040
6041 (define-public r-complexplus
6042 (package
6043 (name "r-complexplus")
6044 (version "2.1")
6045 (source
6046 (origin
6047 (method url-fetch)
6048 (uri (cran-uri "complexplus" version))
6049 (sha256
6050 (base32
6051 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
6052 (build-system r-build-system)
6053 (propagated-inputs
6054 `(("r-expm" ,r-expm)
6055 ("r-matrix" ,r-matrix)))
6056 (home-page "https://cran.r-project.org/web/packages/complexplus/")
6057 (synopsis "Functions of complex or real variables")
6058 (description
6059 "This package extends several functions to the complex domain, including
6060 the matrix exponential and logarithm, and the determinant.")
6061 (license license:gpl2)))
6062
6063 (define-public r-phontools
6064 (package
6065 (name "r-phontools")
6066 (version "0.2-2.1")
6067 (source
6068 (origin
6069 (method url-fetch)
6070 (uri (cran-uri "phonTools" version))
6071 (sha256
6072 (base32
6073 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
6074 (properties `((upstream-name . "phonTools")))
6075 (build-system r-build-system)
6076 (home-page "http://www.santiagobarreda.com/rscripts.html")
6077 (synopsis "Tools for phonetic and acoustic analyses")
6078 (description
6079 "This package contains tools for the organization, display, and analysis
6080 of the sorts of data frequently encountered in phonetics research and
6081 experimentation, including the easy creation of IPA vowel plots, and the
6082 creation and manipulation of WAVE audio files.")
6083 (license license:bsd-2)))
6084
6085 (define-public r-np
6086 (package
6087 (name "r-np")
6088 (version "0.60-10")
6089 (source
6090 (origin
6091 (method url-fetch)
6092 (uri (cran-uri "np" version))
6093 (sha256
6094 (base32
6095 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
6096 (build-system r-build-system)
6097 (propagated-inputs
6098 `(("r-boot" ,r-boot)
6099 ("r-cubature" ,r-cubature)
6100 ("r-quadprog" ,r-quadprog)
6101 ("r-quantreg" ,r-quantreg)))
6102 (home-page "https://github.com/JeffreyRacine/R-Package-np")
6103 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
6104 (description "This package provides non-parametric (and semi-parametric)
6105 kernel methods that seamlessly handle a mix of continuous, unordered, and
6106 ordered factor data types.")
6107 ;; Any version of the GPL.
6108 (license license:gpl3+)))
6109
6110 (define-public r-powerplus
6111 (package
6112 (name "r-powerplus")
6113 (version "3.1")
6114 (source
6115 (origin
6116 (method url-fetch)
6117 (uri (cran-uri "powerplus" version))
6118 (sha256
6119 (base32
6120 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
6121 (build-system r-build-system)
6122 (propagated-inputs
6123 `(("r-complexplus" ,r-complexplus)
6124 ("r-expm" ,r-expm)
6125 ("r-mass" ,r-mass)
6126 ("r-matrix" ,r-matrix)
6127 ("r-phontools" ,r-phontools)))
6128 (home-page "https://cran.r-project.org/web/packages/powerplus/")
6129 (synopsis "Exponentiation operations")
6130 (description
6131 "This package provides tools for the computation of matrix and scalar
6132 exponentiation.")
6133 (license license:gpl2)))
6134
6135 (define-public r-egg
6136 (package
6137 (name "r-egg")
6138 (version "0.4.5")
6139 (source
6140 (origin
6141 (method url-fetch)
6142 (uri (cran-uri "egg" version))
6143 (sha256
6144 (base32
6145 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
6146 (properties `((upstream-name . "egg")))
6147 (build-system r-build-system)
6148 (propagated-inputs
6149 `(("r-ggplot2" ,r-ggplot2)
6150 ("r-gridextra" ,r-gridextra)
6151 ("r-gtable" ,r-gtable)))
6152 (home-page "https://cran.r-project.org/web/packages/egg")
6153 (synopsis "Extensions for ggplot2")
6154 (description
6155 "This package provides miscellaneous functions to help customize ggplot2
6156 objects. High-level functions are provided to post-process ggplot2 layouts
6157 and allow alignment between plot panels, as well as setting panel sizes to
6158 fixed values. Other functions include a custom @code{geom}, and helper
6159 functions to enforce symmetric scales or add tags to facetted plots.")
6160 (license license:gpl3)))
6161
6162 (define-public r-heatmaply
6163 (package
6164 (name "r-heatmaply")
6165 (version "1.2.1")
6166 (source
6167 (origin
6168 (method url-fetch)
6169 (uri (cran-uri "heatmaply" version))
6170 (sha256
6171 (base32
6172 "0hspfkninwy62sf8gkdcsvwnvl66bbnjs2dpah9rr95a3rsgdp9d"))))
6173 (build-system r-build-system)
6174 (propagated-inputs
6175 `(("r-assertthat" ,r-assertthat)
6176 ("r-colorspace" ,r-colorspace)
6177 ("r-dendextend" ,r-dendextend)
6178 ("r-egg" ,r-egg)
6179 ("r-ggplot2" ,r-ggplot2)
6180 ("r-htmlwidgets" ,r-htmlwidgets)
6181 ("r-magrittr" ,r-magrittr)
6182 ("r-plotly" ,r-plotly)
6183 ("r-rcolorbrewer" ,r-rcolorbrewer)
6184 ("r-reshape2" ,r-reshape2)
6185 ("r-scales" ,r-scales)
6186 ("r-seriation" ,r-seriation)
6187 ("r-viridis" ,r-viridis)
6188 ("r-webshot" ,r-webshot)))
6189 (native-inputs
6190 `(("r-knitr" ,r-knitr)))
6191 (home-page "https://cran.r-project.org/package=heatmaply")
6192 (synopsis "Interactive cluster heat maps using plotly")
6193 (description
6194 "This package enables you to create interactive cluster heatmaps that can
6195 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
6196 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
6197 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
6198 a popular graphical method for visualizing high-dimensional data, in which a
6199 table of numbers is encoded as a grid of colored cells. The rows and columns
6200 of the matrix are ordered to highlight patterns and are often accompanied by
6201 dendrograms.")
6202 ;; Either version of the license.
6203 (license (list license:gpl2 license:gpl3))))
6204
6205 (define-public r-h5
6206 (package
6207 (name "r-h5")
6208 (version "0.9.9")
6209 (source
6210 (origin
6211 (method url-fetch)
6212 (uri (cran-uri "h5" version))
6213 (sha256
6214 (base32
6215 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
6216 (build-system r-build-system)
6217 (inputs
6218 `(("zlib" ,zlib)
6219 ("hdf5" ,hdf5)))
6220 (native-inputs
6221 `(("which" ,which)))
6222 (propagated-inputs
6223 `(("r-rcpp" ,r-rcpp)))
6224 (home-page "https://github.com/mannau/h5")
6225 (synopsis "Interface to the HDF5 Library")
6226 (description
6227 "This package provides an S4 interface to the HDF5 library supporting
6228 fast storage and retrieval of R-objects like vectors, matrices and arrays to
6229 binary files in a language independent format. The HDF5 format can therefore
6230 be used as an alternative to R's save/load mechanism. Since h5 is able to
6231 access only subsets of stored data it can also handle data sets which do not
6232 fit into memory.")
6233 (license license:bsd-2)))
6234
6235 (define-public r-cgdsr
6236 (package
6237 (name "r-cgdsr")
6238 (version "1.3.0")
6239 (source
6240 (origin
6241 (method url-fetch)
6242 (uri (cran-uri "cgdsr" version))
6243 (sha256
6244 (base32
6245 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
6246 (build-system r-build-system)
6247 (propagated-inputs
6248 `(("r-httr" ,r-httr)
6249 ("r-r-methodss3" ,r-r-methodss3)
6250 ("r-r-oo" ,r-r-oo)))
6251 (home-page "https://github.com/cBioPortal/cgdsr")
6252 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
6253 (description
6254 "This package provides a basic set of R functions for querying the Cancer
6255 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
6256 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
6257 (license license:lgpl3)))
6258
6259 (define-public r-import
6260 (package
6261 (name "r-import")
6262 (version "1.2.0")
6263 (source
6264 (origin
6265 (method url-fetch)
6266 (uri (cran-uri "import" version))
6267 (sha256
6268 (base32
6269 "018s0x224gqnv4cjfh0fwliyfg6ma9vslmwybrlizfsmqcc5wp37"))))
6270 (build-system r-build-system)
6271 (native-inputs
6272 `(("r-knitr" ,r-knitr)))
6273 (home-page "https://github.com/smbache/import")
6274 (synopsis "Import mechanism for R")
6275 (description
6276 "This is an alternative mechanism for importing objects from packages.
6277 The syntax allows for importing multiple objects from a package with a single
6278 command in an expressive way. The import package bridges some of the gap
6279 between using @code{library} (or @code{require}) and direct (single-object)
6280 imports. Furthermore the imported objects are not placed in the current
6281 environment. It is also possible to import objects from stand-alone @code{.R}
6282 files.")
6283 (license license:expat)))
6284
6285 (define-public r-shinyace
6286 (package
6287 (name "r-shinyace")
6288 (version "0.4.1")
6289 (source
6290 (origin
6291 (method url-fetch)
6292 (uri (cran-uri "shinyAce" version))
6293 (sha256
6294 (base32
6295 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
6296 (properties `((upstream-name . "shinyAce")))
6297 (build-system r-build-system)
6298 (propagated-inputs
6299 `(("r-shiny" ,r-shiny)
6300 ("r-jsonlite" ,r-jsonlite)))
6301 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
6302 (synopsis "Ace editor bindings for Shiny")
6303 (description
6304 "This package provides Ace editor bindings to enable a rich text editing
6305 environment within Shiny.")
6306 (license license:expat)))
6307
6308 (define-public r-randomizr
6309 (package
6310 (name "r-randomizr")
6311 (version "0.20.0")
6312 (source
6313 (origin
6314 (method url-fetch)
6315 (uri (cran-uri "randomizr" version))
6316 (sha256
6317 (base32
6318 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
6319 (properties `((upstream-name . "randomizr")))
6320 (build-system r-build-system)
6321 (native-inputs
6322 `(("r-knitr" ,r-knitr)))
6323 (home-page "https://declaredesign.org/r/randomizr/")
6324 (synopsis "Tools for common forms of random assignment and sampling")
6325 (description
6326 "This package provides tools for generating random assignments for common
6327 experimental designs and random samples for common sampling designs.")
6328 (license license:expat)))
6329
6330 (define-public r-base64url
6331 (package
6332 (name "r-base64url")
6333 (version "1.4")
6334 (source
6335 (origin
6336 (method url-fetch)
6337 (uri (cran-uri "base64url" version))
6338 (sha256
6339 (base32
6340 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
6341 (build-system r-build-system)
6342 (propagated-inputs
6343 `(("r-backports" ,r-backports)))
6344 (home-page "https://github.com/mllg/base64url")
6345 (synopsis "Fast and URL-safe base64 encoder and decoder")
6346 (description
6347 "This package provides a URL-safe base64 encoder and decoder. In
6348 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
6349 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
6350 encoder does not fill the string with trailing @code{=}. The resulting
6351 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
6352 and thus are safe to use in URLs or for file names. The package also comes
6353 with a simple base32 encoder/decoder suited for case insensitive file
6354 systems.")
6355 (license license:gpl3)))
6356
6357 (define-public r-radiant-data
6358 (package
6359 (name "r-radiant-data")
6360 (version "1.3.12")
6361 (source
6362 (origin
6363 (method url-fetch)
6364 (uri (cran-uri "radiant.data" version))
6365 (sha256
6366 (base32
6367 "08bqqrfvpgyf613ikihwfnzb23l23f5nfs7zynnxbjxc1zfhbpny"))
6368 (modules '((guix build utils)))
6369 (snippet
6370 '(begin
6371 ;; Delete files that are under CC-NC-SA.
6372 (delete-file-recursively "inst/app/tools/help")
6373 #t))))
6374 (properties `((upstream-name . "radiant.data")))
6375 (build-system r-build-system)
6376 (propagated-inputs
6377 `(("r-base64enc" ,r-base64enc)
6378 ("r-broom" ,r-broom)
6379 ("r-car" ,r-car)
6380 ("r-curl" ,r-curl)
6381 ("r-dplyr" ,r-dplyr)
6382 ("r-dt" ,r-dt)
6383 ("r-glue" ,r-glue)
6384 ("r-ggplot2" ,r-ggplot2)
6385 ("r-import" ,r-import)
6386 ("r-jsonlite" ,r-jsonlite)
6387 ("r-knitr" ,r-knitr)
6388 ("r-lubridate" ,r-lubridate)
6389 ("r-magrittr" ,r-magrittr)
6390 ("r-markdown" ,r-markdown)
6391 ("r-mass" ,r-mass)
6392 ("r-patchwork" ,r-patchwork)
6393 ("r-plotly" ,r-plotly)
6394 ("r-psych" ,r-psych)
6395 ("r-randomizr" ,r-randomizr)
6396 ("r-readr" ,r-readr)
6397 ("r-readxl" ,r-readxl)
6398 ("r-rlang" ,r-rlang)
6399 ("r-rmarkdown" ,r-rmarkdown)
6400 ("r-rstudioapi" ,r-rstudioapi)
6401 ("r-scales" ,r-scales)
6402 ("r-shiny" ,r-shiny)
6403 ("r-shinyfiles" ,r-shinyfiles)
6404 ("r-shinyace" ,r-shinyace)
6405 ("r-stringi" ,r-stringi)
6406 ("r-tibble" ,r-tibble)
6407 ("r-tidyr" ,r-tidyr)
6408 ("r-writexl" ,r-writexl)))
6409 (home-page "https://github.com/radiant-rstats/radiant.data")
6410 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
6411 (description
6412 "The Radiant Data menu includes interfaces for loading, saving, viewing,
6413 visualizing, summarizing, transforming, and combining data. It also contains
6414 functionality to generate reproducible reports of the analyses conducted in
6415 the application.")
6416 (license license:agpl3)))
6417
6418 (define-public r-algdesign
6419 (package
6420 (name "r-algdesign")
6421 (version "1.2.0")
6422 (source
6423 (origin
6424 (method url-fetch)
6425 (uri (cran-uri "AlgDesign" version))
6426 (sha256
6427 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
6428 (properties `((upstream-name . "AlgDesign")))
6429 (build-system r-build-system)
6430 (home-page "https://github.com/jvbraun/AlgDesign")
6431 (synopsis "Algorithmic experimental design")
6432 (description
6433 "This package provides tools to calculate exact and approximate theory
6434 experimental designs for D, A, and I criteria. Very large designs may be
6435 created. Experimental designs may be blocked or blocked designs created from
6436 a candidate list, using several criteria. The blocking can be done when whole
6437 and within plot factors interact.")
6438 (license license:gpl2+)))
6439
6440 (define-public r-signal
6441 (package
6442 (name "r-signal")
6443 (version "0.7-6")
6444 (source
6445 (origin
6446 (method url-fetch)
6447 (uri (cran-uri "signal" version))
6448 (sha256
6449 (base32
6450 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
6451 (build-system r-build-system)
6452 (propagated-inputs `(("r-mass" ,r-mass)))
6453 (native-inputs `(("gfortran" ,gfortran)))
6454 (home-page "https://cran.r-project.org/web/packages/signal/")
6455 (synopsis "Signal processing")
6456 (description
6457 "This package provides a set of signal processing functions originally
6458 written for Matlab and GNU Octave. It includes filter generation utilities,
6459 filtering functions, resampling routines, and visualization of filter models.
6460 It also includes interpolation functions.")
6461 (license license:gpl2)))
6462
6463 (define-public r-gsubfn
6464 (package
6465 (name "r-gsubfn")
6466 (version "0.7")
6467 (source
6468 (origin
6469 (method url-fetch)
6470 (uri (cran-uri "gsubfn" version))
6471 (sha256
6472 (base32
6473 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
6474 (build-system r-build-system)
6475 (propagated-inputs `(("r-proto" ,r-proto)))
6476 (home-page "https://code.google.com/archive/p/gsubfn/")
6477 (synopsis "Utilities for strings and function arguments.")
6478 (description
6479 "This package provides @code{gsubfn} which is like @code{gsub} but can
6480 take a replacement function or certain other objects instead of the
6481 replacement string. Matches and back references are input to the replacement
6482 function and replaced by the function output. @code{gsubfn} can be used to
6483 split strings based on content rather than delimiters and for quasi-perl-style
6484 string interpolation. The package also has facilities for translating
6485 formulas to functions and allowing such formulas in function calls instead of
6486 functions.")
6487 (license license:gpl2+)))
6488
6489 (define-public r-sqldf
6490 (package
6491 (name "r-sqldf")
6492 (version "0.4-11")
6493 (source
6494 (origin
6495 (method url-fetch)
6496 (uri (cran-uri "sqldf" version))
6497 (sha256
6498 (base32
6499 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
6500 (build-system r-build-system)
6501 (propagated-inputs
6502 `(("r-chron" ,r-chron)
6503 ("r-dbi" ,r-dbi)
6504 ("r-gsubfn" ,r-gsubfn)
6505 ("r-proto" ,r-proto)
6506 ("r-rsqlite" ,r-rsqlite)))
6507 (home-page "https://github.com/ggrothendieck/sqldf")
6508 (synopsis "Manipulate R data frames using SQL")
6509 (description
6510 "The @code{sqldf} function is typically passed a single argument which is
6511 an SQL select statement where the table names are ordinary R data frame names.
6512 @code{sqldf} transparently sets up a database, imports the data frames into
6513 that database, performs the SQL statement and returns the result using a
6514 heuristic to determine which class to assign to each column of the returned
6515 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
6516 used to read filtered files into R even if the original files are larger than
6517 R itself can handle.")
6518 (license license:gpl2)))
6519
6520 (define-public r-abind
6521 (package
6522 (name "r-abind")
6523 (version "1.4-5")
6524 (source
6525 (origin
6526 (method url-fetch)
6527 (uri (cran-uri "abind" version))
6528 (sha256
6529 (base32
6530 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
6531 (build-system r-build-system)
6532 (home-page "https://cran.r-project.org/web/packages/abind/")
6533 (synopsis "Combine multidimensional arrays")
6534 (description
6535 "This package provides tools to combine multidimensional arrays into a
6536 single array. This is a generalization of @code{cbind} and @code{rbind}. It
6537 works with vectors, matrices, and higher-dimensional arrays. It also provides
6538 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
6539 extracting and replacing data in arrays.")
6540 (license license:lgpl2.0+)))
6541
6542 (define-public r-prroc
6543 (package
6544 (name "r-prroc")
6545 (version "1.3.1")
6546 (source
6547 (origin
6548 (method url-fetch)
6549 (uri (cran-uri "PRROC" version))
6550 (sha256
6551 (base32
6552 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
6553 (properties `((upstream-name . "PRROC")))
6554 (build-system r-build-system)
6555 (home-page "https://cran.r-project.org/web/packages/PRROC/")
6556 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
6557 (description
6558 "This package computes the areas under the @dfn{precision-recall} (PR)
6559 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
6560 contrast to other implementations, the interpolation between points of the PR
6561 curve is done by a non-linear piecewise function. In addition to the areas
6562 under the curves, the curves themselves can also be computed and plotted by a
6563 specific S3-method.")
6564 (license license:gpl3)))
6565
6566 (define-public r-vim
6567 (package
6568 (name "r-vim")
6569 (version "6.1.0")
6570 (source
6571 (origin
6572 (method url-fetch)
6573 (uri (cran-uri "VIM" version))
6574 (sha256
6575 (base32
6576 "1a8aw0ysaf0al95m2la2zx1p3g5mnwqx0x30br1s1dqqkfnv57hz"))))
6577 (properties `((upstream-name . "VIM")))
6578 (build-system r-build-system)
6579 (propagated-inputs
6580 `(("r-car" ,r-car)
6581 ("r-colorspace" ,r-colorspace)
6582 ("r-data-table" ,r-data-table)
6583 ("r-e1071" ,r-e1071)
6584 ("r-laeken" ,r-laeken)
6585 ("r-magrittr" ,r-magrittr)
6586 ("r-mass" ,r-mass)
6587 ("r-nnet" ,r-nnet)
6588 ("r-ranger" ,r-ranger)
6589 ("r-rcpp" ,r-rcpp)
6590 ("r-robustbase" ,r-robustbase)
6591 ("r-sp" ,r-sp)
6592 ("r-vcd" ,r-vcd)))
6593 (native-inputs
6594 `(("r-knitr" ,r-knitr)))
6595 (home-page "https://github.com/alexkowa/VIM")
6596 (synopsis "Visualization and imputation of missing values")
6597 (description
6598 "This package provides tools for the visualization of missing and/or
6599 imputed values are introduced, which can be used for exploring the data and
6600 the structure of the missing and/or imputed values. Depending on this
6601 structure of the missing values, the corresponding methods may help to
6602 identify the mechanism generating the missing values and explore the
6603 data including missing values. In addition, the quality of imputation can be
6604 visually explored using various univariate, bivariate, multiple and
6605 multivariate plot methods.")
6606 (license license:gpl2+)))
6607
6608 (define-public r-fnn
6609 (package
6610 (name "r-fnn")
6611 (version "1.1.3")
6612 (source
6613 (origin
6614 (method url-fetch)
6615 (uri (cran-uri "FNN" version))
6616 (sha256
6617 (base32
6618 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
6619 (properties `((upstream-name . "FNN")))
6620 (build-system r-build-system)
6621 (home-page "https://cran.r-project.org/web/packages/FNN")
6622 (synopsis "Fast nearest neighbor search algorithms and applications")
6623 (description
6624 "This package provides cover-tree and kd-tree fast k-nearest neighbor
6625 search algorithms. Related applications including KNN classification,
6626 regression and information measures are implemented.")
6627 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
6628 ;; later can be used.
6629 (license license:gpl2+)))
6630
6631 (define-public r-smoother
6632 (package
6633 (name "r-smoother")
6634 (version "1.1")
6635 (source
6636 (origin
6637 (method url-fetch)
6638 (uri (cran-uri "smoother" version))
6639 (sha256
6640 (base32
6641 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
6642 (build-system r-build-system)
6643 (propagated-inputs
6644 `(("r-ttr" ,r-ttr)))
6645 (home-page "https://cran.r-project.org/web/packages/smoother")
6646 (synopsis "Functions relating to the smoothing of numerical data")
6647 (description
6648 "This package provides a collection of methods for smoothing numerical
6649 data, commencing with a port of the Matlab gaussian window smoothing function.
6650 In addition, several functions typically used in smoothing of financial data
6651 are included.")
6652 (license license:gpl2)))
6653
6654 (define-public r-riverplot
6655 (package
6656 (name "r-riverplot")
6657 (version "0.10")
6658 (source
6659 (origin
6660 (method url-fetch)
6661 (uri (cran-uri "riverplot" version))
6662 (sha256
6663 (base32
6664 "04ap1dsa7fx03l73jhv1ql3adaaaz2100qawdplxa9xmrllgcgbj"))))
6665 (build-system r-build-system)
6666 (propagated-inputs
6667 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
6668 (native-inputs
6669 `(("r-knitr" ,r-knitr)))
6670 (home-page "https://logfc.wordpress.com")
6671 (synopsis "Sankey or ribbon plots")
6672 (description
6673 "Sankey plots are a type of diagram that is convenient to illustrate how
6674 flow of information, resources etc. separates and joins, much like observing
6675 how rivers split and merge. For example, they can be used to compare
6676 different clusterings. This package provides an implementation of Sankey
6677 plots for R.")
6678 (license license:gpl2+)))
6679
6680 (define-public r-dyn
6681 (package
6682 (name "r-dyn")
6683 (version "0.2-9.6")
6684 (source
6685 (origin
6686 (method url-fetch)
6687 (uri (cran-uri "dyn" version))
6688 (sha256
6689 (base32
6690 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
6691 (build-system r-build-system)
6692 (propagated-inputs
6693 `(("r-zoo" ,r-zoo)))
6694 (home-page "https://cran.r-project.org/web/packages/dyn")
6695 (synopsis "Time series regression")
6696 (description
6697 "This package provides the dyn class interfaces @code{ts}, @code{irts},
6698 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
6699 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
6700 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
6701 @code{randomForest::randomForest()} and other regression functions, allowing
6702 those functions to be used with time series including specifications that may
6703 contain lags, diffs and missing values.")
6704 ;; Any GPL version.
6705 (license license:gpl2+)))
6706
6707 (define-public r-catdap
6708 (package
6709 (name "r-catdap")
6710 (version "1.3.5")
6711 (source
6712 (origin
6713 (method url-fetch)
6714 (uri (cran-uri "catdap" version))
6715 (sha256
6716 (base32
6717 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
6718 (build-system r-build-system)
6719 (native-inputs
6720 `(("gfortran" ,gfortran)))
6721 (home-page "https://cran.r-project.org/web/packages/catdap/")
6722 (synopsis "Tools for categorical data analysis")
6723 (description
6724 "This package provides functions for analyzing multivariate data.
6725 Dependencies of the distribution of the specified variable (response
6726 variable) to other variables (explanatory variables) are derived and
6727 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
6728 (license license:gpl2+)))
6729
6730 (define-public r-arules
6731 (package
6732 (name "r-arules")
6733 (version "1.6-6")
6734 (source
6735 (origin
6736 (method url-fetch)
6737 (uri (cran-uri "arules" version))
6738 (sha256
6739 (base32
6740 "1pk3jjizn2m5rwi7qkdkbq9f07acgpy0qdzzqmx0agg47cwahlkm"))))
6741 (build-system r-build-system)
6742 (propagated-inputs
6743 `(("r-matrix" ,r-matrix)))
6744 (home-page "https://github.com/mhahsler/arules")
6745 (synopsis "Mining association rules and frequent itemsets")
6746 (description
6747 "This package provides an infrastructure for representing, manipulating
6748 and analyzing transaction data and patterns (frequent itemsets and association rules).
6749 It also provides C implementations of the association mining algorithms Apriori
6750 and Eclat.")
6751 (license license:gpl3)))
6752
6753 (define-public r-parsedate
6754 (package
6755 (name "r-parsedate")
6756 (version "1.2.0")
6757 (source
6758 (origin
6759 (method url-fetch)
6760 (uri (cran-uri "parsedate" version))
6761 (sha256
6762 (base32
6763 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
6764 (build-system r-build-system)
6765 (propagated-inputs
6766 `(("r-rematch2" ,r-rematch2)))
6767 (home-page "https://github.com/gaborcsardi/parsedate")
6768 (synopsis
6769 "Recognize and parse dates in various formats")
6770 (description
6771 "This package provides three functions for dealing with dates:
6772 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
6773 time formats, @code{parse_date} parses dates in unspecified formats,
6774 and @code{format_iso_8601} formats a date in ISO 8601 format.")
6775 (license license:gpl2)))
6776
6777 (define-public r-abc-data
6778 (package
6779 (name "r-abc-data")
6780 (version "1.0")
6781 (source
6782 (origin
6783 (method url-fetch)
6784 (uri (cran-uri "abc.data" version))
6785 (sha256
6786 (base32
6787 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
6788 (properties `((upstream-name . "abc.data")))
6789 (build-system r-build-system)
6790 (home-page "https://cran.r-project.org/web/packages/abc.data/")
6791 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
6792 (description
6793 "This package contains data which are used by functions of the abc
6794 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
6795 algorithms for performing parameter estimation, model selection, and
6796 goodness-of-fit.")
6797 (license license:gpl3+)))
6798
6799 (define-public r-abc
6800 (package
6801 (name "r-abc")
6802 (version "2.1")
6803 (source
6804 (origin
6805 (method url-fetch)
6806 (uri (cran-uri "abc" version))
6807 (sha256
6808 (base32
6809 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
6810 (build-system r-build-system)
6811 (propagated-inputs
6812 `(("r-abc-data" ,r-abc-data)
6813 ("r-locfit" ,r-locfit)
6814 ("r-mass" ,r-mass)
6815 ("r-nnet" ,r-nnet)
6816 ("r-quantreg" ,r-quantreg)))
6817 (home-page "https://cran.r-project.org/web/packages/abc/")
6818 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
6819 (description
6820 "This package implements several @dfn{Approximate Bayesian
6821 Computation} (ABC) algorithms for performing parameter estimation, model
6822 selection, and goodness-of-fit. Cross-validation tools are also available for
6823 measuring the accuracy of ABC estimates, and to calculate the
6824 misclassification probabilities of different models.")
6825 (license license:gpl3+)))
6826
6827 (define-public r-zip
6828 (package
6829 (name "r-zip")
6830 (version "2.1.1")
6831 (source
6832 (origin
6833 (method url-fetch)
6834 (uri (cran-uri "zip" version))
6835 (sha256
6836 (base32
6837 "0b3wmbx5v0i1scylgk4nli2ljg4p12wx7a1sqljklv9969wl3p8i"))))
6838 (build-system r-build-system)
6839 (home-page "https://github.com/gaborcsardi/zip")
6840 (synopsis "Cross-platform Zip compression")
6841 (description
6842 "This package provides a cross-platform Zip compression library for R.
6843 It is a replacement for the @code{zip} function, that does not require any
6844 additional external tools on any platform.")
6845 (license license:cc0)))
6846
6847 (define-public r-openxlsx
6848 (package
6849 (name "r-openxlsx")
6850 (version "4.2.3")
6851 (source
6852 (origin
6853 (method url-fetch)
6854 (uri (cran-uri "openxlsx" version))
6855 (sha256
6856 (base32
6857 "0vz4nlrwgsiifrgza8kfd9i1c0ya6plymrgk59vyy2z54vc8kvyd"))))
6858 (build-system r-build-system)
6859 (propagated-inputs
6860 `(("r-rcpp" ,r-rcpp)
6861 ("r-stringi" ,r-stringi)
6862 ("r-zip" ,r-zip)))
6863 (native-inputs
6864 `(("r-knitr" ,r-knitr)))
6865 (home-page "https://github.com/awalker89/openxlsx")
6866 (synopsis "Read, write and edit XLSX files")
6867 (description
6868 "This package simplifies the creation of Excel @code{.xlsx} files by
6869 providing a high level interface to writing, styling and editing worksheets.
6870 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
6871 and @code{XLConnect} packages with the added benefit of removing the
6872 dependency on Java.")
6873 (license license:gpl3)))
6874
6875 (define-public r-rio
6876 (package
6877 (name "r-rio")
6878 (version "0.5.26")
6879 (source
6880 (origin
6881 (method url-fetch)
6882 (uri (cran-uri "rio" version))
6883 (sha256
6884 (base32
6885 "1k6zxjb2bb0z6rv7zmkbaz85cbvs84mj602ikkwk60alh8kpdw2d"))))
6886 (build-system r-build-system)
6887 (propagated-inputs
6888 `(("r-curl" ,r-curl)
6889 ("r-data-table" ,r-data-table)
6890 ("r-foreign" ,r-foreign)
6891 ("r-haven" ,r-haven)
6892 ("r-openxlsx" ,r-openxlsx)
6893 ("r-readxl" ,r-readxl)
6894 ("r-tibble" ,r-tibble)))
6895 (native-inputs
6896 `(("r-knitr" ,r-knitr)))
6897 (home-page "https://github.com/leeper/rio")
6898 (synopsis "Swiss-army knife for data I/O")
6899 (description
6900 "This package provides streamlined data import and export infrastructure
6901 by making assumptions that the user is probably willing to make: @code{import}
6902 and @code{export} determine the data structure from the file extension,
6903 reasonable defaults are used for data import and export (e.g.,
6904 @code{stringsAsFactors=FALSE}), web-based import is natively
6905 supported (including from SSL/HTTPS), compressed files can be read directly
6906 without explicit decompression, and fast import packages are used where
6907 appropriate. An additional convenience function, @code{convert}, provides a
6908 simple method for converting between file types.")
6909 (license license:gpl2)))
6910
6911 (define-public r-maptools
6912 (package
6913 (name "r-maptools")
6914 (version "1.1-1")
6915 (source
6916 (origin
6917 (method url-fetch)
6918 (uri (cran-uri "maptools" version))
6919 (sha256
6920 (base32
6921 "0pn4gwh2rl6pfh2vbc7ln86kzlg22cfpd02z95j7zpjidz2mva8l"))))
6922 (build-system r-build-system)
6923 (propagated-inputs
6924 `(("r-foreign" ,r-foreign)
6925 ("r-lattice" ,r-lattice)
6926 ("r-sp" ,r-sp)))
6927 (home-page "https://r-forge.r-project.org/projects/maptools/")
6928 (synopsis "Tools for reading and handling spatial objects")
6929 (description
6930 "This package provides a set of tools for manipulating and reading
6931 geographic data, in particular ESRI Shapefiles. It includes binary access to
6932 GSHHG shoreline files. The package also provides interface wrappers for
6933 exchanging spatial objects with other R packages.")
6934 ;; The C source files from shapelib are released under the Expat license.
6935 ;; The R code is released under GPL version 2 or later.
6936 (license (list license:gpl2+
6937 license:expat))))
6938
6939 (define-public r-later
6940 (package
6941 (name "r-later")
6942 (version "1.1.0.1")
6943 (source
6944 (origin
6945 (method url-fetch)
6946 (uri (cran-uri "later" version))
6947 (sha256
6948 (base32
6949 "1k9n2j7zxw9gfclnx8zfqp6w64c5d6apn7g02yhkajkpmszagfki"))))
6950 (build-system r-build-system)
6951 (propagated-inputs
6952 `(("r-bh" ,r-bh)
6953 ("r-rcpp" ,r-rcpp)
6954 ("r-rlang" ,r-rlang)))
6955 (native-inputs
6956 `(("r-knitr" ,r-knitr)))
6957 (home-page "https://github.com/r-lib/later")
6958 (synopsis "Utilities for delaying function execution")
6959 (description
6960 "This package provides tools to execute arbitrary R or C functions some
6961 time after the current time, after the R execution stack has emptied.")
6962 (license license:gpl2+)))
6963
6964 (define-public r-promises
6965 (package
6966 (name "r-promises")
6967 (version "1.2.0.1")
6968 (source
6969 (origin
6970 (method url-fetch)
6971 (uri (cran-uri "promises" version))
6972 (sha256
6973 (base32
6974 "1dy4cbqw17awh4q8m7cy3anaj0n9iynabfzflb1g94cyj0bq4fld"))))
6975 (build-system r-build-system)
6976 (propagated-inputs
6977 `(("r-later" ,r-later)
6978 ("r-magrittr" ,r-magrittr)
6979 ("r-r6" ,r-r6)
6980 ("r-rcpp" ,r-rcpp)
6981 ("r-rlang" ,r-rlang)))
6982 (native-inputs
6983 `(("r-knitr" ,r-knitr)))
6984 (home-page "https://rstudio.github.io/promises")
6985 (synopsis "Abstractions for promise-based asynchronous programming")
6986 (description
6987 "This package provides fundamental abstractions for doing asynchronous
6988 programming in R using promises. Asynchronous programming is useful for
6989 allowing a single R process to orchestrate multiple tasks in the background
6990 while also attending to something else. Semantics are similar to JavaScript
6991 promises, but with a syntax that is idiomatic R.")
6992 (license license:expat)))
6993
6994 (define-public r-dosnow
6995 (package
6996 (name "r-dosnow")
6997 (version "1.0.19")
6998 (source
6999 (origin
7000 (method url-fetch)
7001 (uri (cran-uri "doSNOW" version))
7002 (sha256
7003 (base32
7004 "0f07b38cl7s61vwzkyqkzzsic9g4sw9k6ndbxk3g90l4ca0d1ljc"))))
7005 (properties `((upstream-name . "doSNOW")))
7006 (build-system r-build-system)
7007 (propagated-inputs
7008 `(("r-foreach" ,r-foreach)
7009 ("r-iterators" ,r-iterators)
7010 ("r-snow" ,r-snow)))
7011 (home-page "https://cran.r-project.org/web/packages/doSNOW")
7012 (synopsis "Foreach parallel adaptor for the snow package")
7013 (description
7014 "This package provides a parallel backend for the @code{%dopar%} function
7015 using the @code{snow} package.")
7016 (license license:gpl2)))
7017
7018 (define-public r-fst
7019 (package
7020 (name "r-fst")
7021 (version "0.9.4")
7022 (source
7023 (origin
7024 (method url-fetch)
7025 (uri (cran-uri "fst" version))
7026 (sha256
7027 (base32
7028 "0vwclzxww8mw9nnpyj29bn71mrr8jjg7ka03979h9rbzw6d9bjrr"))))
7029 (properties `((upstream-name . "fst")))
7030 (build-system r-build-system)
7031 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7032 (home-page "http://www.fstpackage.org")
7033 (synopsis "Fast serialization of data frames")
7034 (description
7035 "The fst package for R provides a fast, easy and flexible way to
7036 serialize data frames. With access speeds of multiple GB/s, fst is
7037 specifically designed to unlock the potential of high speed solid state disks.
7038 Data frames stored in the fst format have full random access, both in column
7039 and rows. The fst format allows for random access of stored data and
7040 compression with the LZ4 and ZSTD compressors.")
7041 (license license:agpl3)))
7042
7043 (define-public r-snowfall
7044 (package
7045 (name "r-snowfall")
7046 (version "1.84-6.1")
7047 (source (origin
7048 (method url-fetch)
7049 (uri (cran-uri "snowfall" version))
7050 (sha256
7051 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
7052 (build-system r-build-system)
7053 (propagated-inputs
7054 `(("r-snow" ,r-snow)))
7055 (home-page "https://cran.r-project.org/web/packages/snowfall/")
7056 (synopsis "Easier cluster computing")
7057 (description "This package is a usability wrapper around snow for easier
7058 development of parallel R programs. This package offers e.g. extended error
7059 checks, and additional functions. All functions work in sequential mode, too,
7060 if no cluster is present or wished. The package is also designed as connector
7061 to the cluster management tool @code{sfCluster}, but can also used without
7062 it.")
7063 (license license:gpl2+)))
7064
7065 (define-public r-rgexf
7066 (package
7067 (name "r-rgexf")
7068 (version "0.16.0")
7069 (source
7070 (origin
7071 (method url-fetch)
7072 (uri (cran-uri "rgexf" version))
7073 (sha256
7074 (base32
7075 "1vj5ha1qx0xzflchxf25ycys6clfn9y32m1717afzkvhmkwisrra"))
7076 (snippet
7077 '(begin
7078 ;; Delete minified JavaScript files
7079 (for-each delete-file
7080 '("inst/gexf-js/js/jquery-2.0.2.min.js"
7081 "inst/gexf-js/js/jquery-ui-1.10.3.custom.min.js"
7082 "inst/gexf-js/js/jquery.mousewheel.min.js"))
7083 #true))))
7084 (properties `((upstream-name . "rgexf")))
7085 (build-system r-build-system)
7086 (arguments
7087 `(#:modules ((guix build utils)
7088 (guix build r-build-system)
7089 (srfi srfi-1)
7090 (ice-9 popen))
7091 #:phases
7092 (modify-phases %standard-phases
7093 (add-after 'unpack 'process-javascript
7094 (lambda* (#:key inputs #:allow-other-keys)
7095 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-jquery-ui"))
7096 (with-directory-excursion "inst/gexf-js/js/"
7097 (call-with-values
7098 (lambda ()
7099 (unzip2
7100 `((,(assoc-ref inputs "js-jquery")
7101 "jquery-2.0.2.min.js")
7102 ("/tmp/jquery-ui-1.10.3/ui/jquery-ui.js"
7103 "jquery-ui-1.10.3.custom.min.js")
7104 (,(assoc-ref inputs "js-jquery-mousewheel")
7105 "jquery.mousewheel.min.js"))))
7106 (lambda (sources targets)
7107 (for-each (lambda (source target)
7108 (format #true "Processing ~a --> ~a~%"
7109 source target)
7110 (invoke "esbuild" source "--minify"
7111 (string-append "--outfile=" target)))
7112 sources targets))))
7113 #t)))))
7114 (propagated-inputs
7115 `(("r-igraph" ,r-igraph)
7116 ("r-servr" ,r-servr)
7117 ("r-xml" ,r-xml)))
7118 (native-inputs
7119 `(("r-knitr" ,r-knitr)
7120 ("esbuild" ,esbuild)
7121 ("unzip" ,unzip)
7122 ("js-jquery"
7123 ,(origin
7124 (method url-fetch)
7125 (uri "https://code.jquery.com/jquery-2.0.2.js")
7126 (sha256
7127 (base32
7128 "0v818bxpw48gdk8i95qqqij80r9jcgisi2r4ac6xnxca20h0gvfj"))))
7129 ("js-jquery-ui"
7130 ,(origin
7131 (method url-fetch)
7132 (uri "https://jqueryui.com/resources/download/jquery-ui-1.10.3.zip")
7133 (sha256
7134 (base32
7135 "00xpfy0l69nj2yan4s8k65ldsrlfsjkmyw2dwcg93dc8mv454vxx"))))
7136 ("js-jquery-mousewheel"
7137 ,(origin
7138 (method url-fetch)
7139 (uri "https://raw.githubusercontent.com/jquery/jquery-mousewheel/\
7140 3.0.6/jquery.mousewheel.js")
7141 (sha256
7142 (base32
7143 "19lk5xy2s47bx8hsa7j6bg012f8yw6d770g230bcnm559kf4nc6v"))))))
7144 (home-page "https://gvegayon.github.io/rgexf")
7145 (synopsis "Build, import and export GEXF graph files")
7146 (description
7147 "Create, read and write GEXF (Graph Exchange XML Format) graph
7148 files (used in Gephi and others). It allows the user to easily build/read
7149 graph files including attributes, GEXF visual attributes (such as color, size,
7150 and position), network dynamics (for both edges and nodes) and edge weighting.
7151 Users can build/handle graphs element-by-element or massively through
7152 data-frames, visualize the graph on a web browser through gexf-js (a
7153 JavaScript library) and interact with the igraph package.")
7154 (license license:expat)))
7155
7156 (define-public r-data-tree
7157 (package
7158 (name "r-data-tree")
7159 (version "1.0.0")
7160 (source
7161 (origin
7162 (method url-fetch)
7163 (uri (cran-uri "data.tree" version))
7164 (sha256
7165 (base32
7166 "0pizmx2312zsym4m42b97q2184bg3hibvbdrblcga05xln84qrs0"))))
7167 (properties `((upstream-name . "data.tree")))
7168 (build-system r-build-system)
7169 (propagated-inputs
7170 `(("r-r6" ,r-r6)
7171 ("r-stringi" ,r-stringi)))
7172 (native-inputs
7173 `(("r-knitr" ,r-knitr)))
7174 (home-page "https://github.com/gluc/data.tree")
7175 (synopsis "General purpose hierarchical data structure")
7176 (description
7177 "Create tree structures from hierarchical data, and traverse the tree in
7178 various orders. Aggregate, cumulate, print, plot, convert to and from
7179 data.frame and more. This is useful for decision trees, machine learning,
7180 finance, conversion from and to JSON, and many other applications.")
7181 (license license:gpl2+)))
7182
7183 (define-public r-collapsibletree
7184 (package
7185 (name "r-collapsibletree")
7186 (version "0.1.7")
7187 (source
7188 (origin
7189 (method url-fetch)
7190 (uri (cran-uri "collapsibleTree" version))
7191 (sha256
7192 (base32
7193 "0b65pbp1wnpsrayqi630ds4r98jvcvynnlp6wxdqrnnr9nzw5343"))
7194 (snippet
7195 '(begin
7196 ;; Delete minified JavaScript file
7197 (delete-file "inst/htmlwidgets/lib/d3-4.10.2/d3.min.js")
7198 #true))))
7199 (properties
7200 `((upstream-name . "collapsibleTree")))
7201 (build-system r-build-system)
7202 (arguments
7203 `(#:phases
7204 (modify-phases %standard-phases
7205 (add-after 'unpack 'process-javascript
7206 (lambda* (#:key inputs #:allow-other-keys)
7207 (with-directory-excursion "inst/htmlwidgets/lib/d3-4.10.2/"
7208 (let ((source (assoc-ref inputs "d3.v4.js"))
7209 (target "d3.min.js"))
7210 (format #t "Processing ~a --> ~a~%"
7211 source target)
7212 (invoke "esbuild" source "--minify"
7213 (string-append "--outfile=" target)))))))))
7214 (propagated-inputs
7215 `(("r-data-tree" ,r-data-tree)
7216 ("r-htmlwidgets" ,r-htmlwidgets)))
7217 (native-inputs
7218 `(("esbuild" ,esbuild)
7219 ("d3.v4.js"
7220 ,(origin
7221 (method url-fetch)
7222 (uri "https://d3js.org/d3.v4.js")
7223 (sha256
7224 (base32
7225 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
7226 (home-page "https://github.com/AdeelK93/collapsibleTree")
7227 (synopsis "Interactive collapsible tree diagrams using D3.js")
7228 (description
7229 "This is a package for interactive Reingold-Tilford tree diagrams created
7230 using D3.js, where every node can be expanded and collapsed by clicking on it.
7231 Tooltips and color gradients can be mapped to nodes using a numeric column in
7232 the source data frame.")
7233 (license license:gpl3+)))
7234
7235 (define-public r-rappdirs
7236 (package
7237 (name "r-rappdirs")
7238 (version "0.3.3")
7239 (source
7240 (origin
7241 (method url-fetch)
7242 (uri (cran-uri "rappdirs" version))
7243 (sha256
7244 (base32
7245 "1161i3jgjvzjv4p8qbz9r976fnggkcrw3mlj4yd1h2svnijrz5a9"))))
7246 (build-system r-build-system)
7247 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
7248 (synopsis "Determine where to save data, caches, and logs")
7249 (description
7250 "This package provides an easy way to determine which directories on the
7251 user's computer should be used to save data, caches and logs. It is a port of
7252 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
7253 (license license:expat)))
7254
7255 (define-public r-rastervis
7256 (package
7257 (name "r-rastervis")
7258 (version "0.50")
7259 (source
7260 (origin
7261 (method url-fetch)
7262 (uri (cran-uri "rasterVis" version))
7263 (sha256
7264 (base32
7265 "0m7fjd53apxim0d0rjnyzc28vmfcg4spcrn0zbnk8llillxji1hi"))))
7266 (properties `((upstream-name . "rasterVis")))
7267 (build-system r-build-system)
7268 (propagated-inputs
7269 `(("r-hexbin" ,r-hexbin)
7270 ("r-lattice" ,r-lattice)
7271 ("r-latticeextra" ,r-latticeextra)
7272 ("r-raster" ,r-raster)
7273 ("r-rcolorbrewer" ,r-rcolorbrewer)
7274 ("r-sp" ,r-sp)
7275 ("r-terra" ,r-terra)
7276 ("r-viridislite" ,r-viridislite)
7277 ("r-zoo" ,r-zoo)))
7278 (home-page "https://oscarperpinan.github.io/rastervis/")
7279 (synopsis "Visualization methods for raster data")
7280 (description
7281 "This package provides methods for enhanced visualization and interaction
7282 with raster data. It implements visualization methods for quantitative data
7283 and categorical data, both for univariate and multivariate rasters. It also
7284 provides methods to display spatiotemporal rasters, and vector fields.")
7285 (license license:gpl3)))
7286
7287 (define-public r-rentrez
7288 (package
7289 (name "r-rentrez")
7290 (version "1.2.3")
7291 (source
7292 (origin
7293 (method url-fetch)
7294 (uri (cran-uri "rentrez" version))
7295 (sha256
7296 (base32
7297 "0x1g2f6hvkqqlb39z8m5qxhcvsizddic5i7rpqw0wy77xfbna9gv"))))
7298 (properties `((upstream-name . "rentrez")))
7299 (build-system r-build-system)
7300 (propagated-inputs
7301 `(("r-httr" ,r-httr)
7302 ("r-jsonlite" ,r-jsonlite)
7303 ("r-xml" ,r-xml)))
7304 (native-inputs
7305 `(("r-knitr" ,r-knitr)))
7306 (home-page "https://docs.ropensci.org/rentrez/")
7307 (synopsis "Entrez in R")
7308 (description
7309 "This package provides an R interface to the NCBI's EUtils API,
7310 allowing users to search databases like GenBank PubMed, process the results of
7311 those searches and pull data into their R sessions.")
7312 (license license:expat)))
7313
7314 (define-public r-renv
7315 (package
7316 (name "r-renv")
7317 (version "0.13.0")
7318 (source
7319 (origin
7320 (method url-fetch)
7321 (uri (cran-uri "renv" version))
7322 (sha256
7323 (base32
7324 "16n2dz9jibc03f7q1wrzxss6l5jmaks7m2lnli9dz9anvcmxbdia"))))
7325 (properties `((upstream-name . "renv")))
7326 (build-system r-build-system)
7327 (native-inputs
7328 `(("r-knitr" ,r-knitr)))
7329 (home-page "https://rstudio.github.io/renv")
7330 (synopsis "Project environments")
7331 (description
7332 "This package provides a dependency management toolkit for R. Using
7333 renv, you can create and manage project-local R libraries, save the state of
7334 these libraries to a lockfile, and later restore your library as required.
7335 Together, these tools can help make your projects more isolated, portable, and
7336 reproducible.")
7337 (license license:expat)))
7338
7339 (define-public r-learnr
7340 (package
7341 (name "r-learnr")
7342 (version "0.10.1")
7343 (source
7344 (origin
7345 (method url-fetch)
7346 (uri (cran-uri "learnr" version))
7347 (sha256
7348 (base32
7349 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
7350 (build-system r-build-system)
7351 (propagated-inputs
7352 `(("r-checkmate" ,r-checkmate)
7353 ("r-ellipsis" ,r-ellipsis)
7354 ("r-evaluate" ,r-evaluate)
7355 ("r-htmltools" ,r-htmltools)
7356 ("r-htmlwidgets" ,r-htmlwidgets)
7357 ("r-jsonlite" ,r-jsonlite)
7358 ("r-knitr" ,r-knitr)
7359 ("r-markdown" ,r-markdown)
7360 ("r-rappdirs" ,r-rappdirs)
7361 ("r-renv" ,r-renv)
7362 ("r-rmarkdown" ,r-rmarkdown)
7363 ("r-rprojroot" ,r-rprojroot)
7364 ("r-shiny" ,r-shiny)
7365 ("r-withr" ,r-withr)))
7366 (home-page "https://rstudio.github.io/learnr/")
7367 (synopsis "Interactive tutorials for R")
7368 (description
7369 "This package provides tools to create interactive tutorials using R
7370 Markdown. Use a combination of narrative, figures, videos, exercises, and
7371 quizzes to create self-paced tutorials for learning about R and R packages.")
7372 (license license:asl2.0)))
7373
7374 (define-public r-analytics
7375 (package
7376 (name "r-analytics")
7377 (version "3.0")
7378 (source
7379 (origin
7380 (method url-fetch)
7381 (uri (cran-uri "analytics" version))
7382 (sha256
7383 (base32
7384 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
7385 (build-system r-build-system)
7386 (propagated-inputs
7387 `(("r-car" ,r-car)
7388 ("r-cluster" ,r-cluster)
7389 ("r-fractal" ,r-fractal)
7390 ("r-lmtest" ,r-lmtest)
7391 ("r-mass" ,r-mass)
7392 ("r-np" ,r-np)
7393 ("r-powerplus" ,r-powerplus)
7394 ("r-robust" ,r-robust)
7395 ("r-trend" ,r-trend)
7396 ("r-tsa" ,r-tsa)
7397 ("r-urca" ,r-urca)
7398 ("r-vim" ,r-vim)))
7399 (home-page "https://cran.r-project.org/web/packages/analytics/")
7400 (synopsis "Collection of data analysis tools")
7401 (description
7402 "This package is a collection of data analysis tools. It includes tools
7403 for regression outlier detection in a fitted linear model, stationary
7404 bootstrap using a truncated geometric distribution, a comprehensive test for
7405 weak stationarity, column means by group, weighted biplots, and a heuristic to
7406 obtain a better initial configuration in non-metric MDS.")
7407 (license license:gpl2)))
7408
7409 (define-public r-reticulate
7410 (package
7411 (name "r-reticulate")
7412 (version "1.18")
7413 (source
7414 (origin
7415 (method url-fetch)
7416 (uri (cran-uri "reticulate" version))
7417 (sha256
7418 (base32
7419 "04w5c9jfxakb4rr2qjynxgagb42khsja3y4dwgxywiplb1d8agxk"))))
7420 (build-system r-build-system)
7421 (inputs `(("python" ,python)))
7422 (propagated-inputs
7423 `(("r-rappdirs" ,r-rappdirs)
7424 ("r-jsonlite" ,r-jsonlite)
7425 ("r-matrix" ,r-matrix)
7426 ("r-rcpp" ,r-rcpp)))
7427 (native-inputs
7428 `(("r-knitr" ,r-knitr)))
7429 (home-page "https://github.com/rstudio/reticulate")
7430 (synopsis "R interface to Python")
7431 (description
7432 "This package provides an interface from R to Python modules, classes,
7433 and functions. When calling into Python, R data types are automatically
7434 converted to their equivalent Python types. When values are returned from
7435 Python to R they are converted back to R types.")
7436 (license license:asl2.0)))
7437
7438 (define-public r-bibtex
7439 (package
7440 (name "r-bibtex")
7441 (version "0.4.2.3")
7442 (source
7443 (origin
7444 (method url-fetch)
7445 (uri (cran-uri "bibtex" version))
7446 (sha256
7447 (base32
7448 "0vdwx6808r73pk15263f33bkqbfmb08d8jkmr4d7h4ml414ikbbv"))))
7449 (build-system r-build-system)
7450 (propagated-inputs `(("r-stringr" ,r-stringr)))
7451 (home-page "https://github.com/romainfrancois/bibtex")
7452 (synopsis "Bibtex parser")
7453 (description "This package provides a utility for R to parse a bibtex
7454 file.")
7455 (license license:gpl2+)))
7456
7457 (define-public r-ggseqlogo
7458 (package
7459 (name "r-ggseqlogo")
7460 (version "0.1")
7461 (source
7462 (origin
7463 (method url-fetch)
7464 (uri (cran-uri "ggseqlogo" version))
7465 (sha256
7466 (base32
7467 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
7468 (build-system r-build-system)
7469 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
7470 (home-page "https://github.com/omarwagih/ggseqlogo")
7471 (synopsis "ggplot2 extension for drawing genetic sequence logos")
7472 (description
7473 "The range of functions provided by this package makes it possible to
7474 draw highly versatile genomic sequence logos. Features include, but are not
7475 limited to, modifying colour schemes and fonts used to draw the logo,
7476 generating multiple logo plots, and aiding the visualisation with annotations.
7477 Sequence logos can easily be combined with other ggplot2 plots.")
7478 ;; Unspecified version of the LGPL.
7479 (license license:lgpl3+)))
7480
7481 (define-public r-ggsci
7482 (package
7483 (name "r-ggsci")
7484 (version "2.9")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (cran-uri "ggsci" version))
7489 (sha256
7490 (base32
7491 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
7492 (build-system r-build-system)
7493 (propagated-inputs
7494 `(("r-ggplot2" ,r-ggplot2)
7495 ("r-scales" ,r-scales)))
7496 (home-page "https://nanx.me/ggsci/")
7497 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
7498 (description
7499 "This package provides a collection of ggplot2 color palettes inspired by
7500 plots in scientific journals, data visualization libraries, science fiction
7501 movies, and TV shows.")
7502 (license license:gpl3)))
7503
7504 (define-public r-ggsignif
7505 (package
7506 (name "r-ggsignif")
7507 (version "0.6.1")
7508 (source
7509 (origin
7510 (method url-fetch)
7511 (uri (cran-uri "ggsignif" version))
7512 (sha256
7513 (base32
7514 "0rjy9wqsq67jjm1jz3j7hm599x0rshrrhw2w01iaqb9kf506hvjh"))))
7515 (build-system r-build-system)
7516 (native-inputs
7517 `(("r-knitr" ,r-knitr)))
7518 (propagated-inputs
7519 `(("r-ggplot2" ,r-ggplot2)))
7520 (home-page "https://github.com/const-ae/ggsignif")
7521 (synopsis "Significance brackets for ggplot2")
7522 (description
7523 "Enrich your ggplots with group-wise comparisons. This package provides
7524 an easy way to indicate if two groups are significantly different. Commonly
7525 this is shown by a bracket on top connecting the groups of interest which
7526 itself is annotated with the level of significance. The package provides a
7527 single layer that takes the groups for comparison and the test as arguments
7528 and adds the annotation to the plot.")
7529 (license license:gpl3)))
7530
7531 (define-public r-rstatix
7532 (package
7533 (name "r-rstatix")
7534 (version "0.7.0")
7535 (source
7536 (origin
7537 (method url-fetch)
7538 (uri (cran-uri "rstatix" version))
7539 (sha256
7540 (base32
7541 "0330y8iziffqg8j9j5h9zv4qcdyf8ybhmzxrr9fzq9nc6bf1gbm5"))))
7542 (properties `((upstream-name . "rstatix")))
7543 (build-system r-build-system)
7544 (propagated-inputs
7545 `(("r-broom" ,r-broom)
7546 ("r-car" ,r-car)
7547 ("r-corrplot" ,r-corrplot)
7548 ("r-dplyr" ,r-dplyr)
7549 ("r-generics" ,r-generics)
7550 ("r-magrittr" ,r-magrittr)
7551 ("r-purrr" ,r-purrr)
7552 ("r-rlang" ,r-rlang)
7553 ("r-tibble" ,r-tibble)
7554 ("r-tidyr" ,r-tidyr)
7555 ("r-tidyselect" ,r-tidyselect)))
7556 (home-page "https://rpkgs.datanovia.com/rstatix/")
7557 (synopsis "Pipe-friendly framework for basic statistical tests")
7558 (description
7559 "This package provides a simple and intuitive pipe-friendly framework,
7560 coherent with the @code{tidyverse} design philosophy, for performing basic
7561 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
7562 correlation analyses. The output of each test is automatically transformed
7563 into a tidy data frame to facilitate visualization. Additional functions are
7564 available for reshaping, reordering, manipulating and visualizing correlation
7565 matrix.")
7566 (license license:gpl2)))
7567
7568 (define-public r-ggpubr
7569 (package
7570 (name "r-ggpubr")
7571 (version "0.4.0")
7572 (source
7573 (origin
7574 (method url-fetch)
7575 (uri (cran-uri "ggpubr" version))
7576 (sha256
7577 (base32
7578 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
7579 (build-system r-build-system)
7580 (propagated-inputs
7581 `(("r-cowplot" ,r-cowplot)
7582 ("r-dplyr" ,r-dplyr)
7583 ("r-ggplot2" ,r-ggplot2)
7584 ("r-ggrepel" ,r-ggrepel)
7585 ("r-ggsci" ,r-ggsci)
7586 ("r-ggsignif" ,r-ggsignif)
7587 ("r-glue" ,r-glue)
7588 ("r-gridextra" ,r-gridextra)
7589 ("r-magrittr" ,r-magrittr)
7590 ("r-polynom" ,r-polynom)
7591 ("r-purrr" ,r-purrr)
7592 ("r-rlang" ,r-rlang)
7593 ("r-scales" ,r-scales)
7594 ("r-rstatix" ,r-rstatix)
7595 ("r-tibble" ,r-tibble)
7596 ("r-tidyr" ,r-tidyr)))
7597 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
7598 (synopsis "ggplot2-based publication-ready plots")
7599 (description
7600 "The ggplot2 package is an excellent and flexible package for elegant
7601 data visualization in R. However the default generated plots require some
7602 formatting before we can send them for publication. The ggpubr package
7603 provides some easy-to-use functions for creating and customizing ggplot2-based
7604 publication-ready plots.")
7605 (license license:gpl2)))
7606
7607 (define-public r-ellipse
7608 (package
7609 (name "r-ellipse")
7610 (version "0.4.2")
7611 (source
7612 (origin
7613 (method url-fetch)
7614 (uri (cran-uri "ellipse" version))
7615 (sha256
7616 (base32
7617 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
7618 (build-system r-build-system)
7619 (home-page "https://cran.r-project.org/web/packages/ellipse/")
7620 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
7621 (description
7622 "This package contains various routines for drawing ellipses and
7623 ellipse-like confidence regions, implementing the plots described in Murdoch
7624 and Chow (1996), A graphical display of large correlation matrices, The
7625 American Statistician 50, 178-180. There are also routines implementing the
7626 profile plots described in Bates and Watts (1988), Nonlinear Regression
7627 Analysis and its Applications.")
7628 (license license:gpl2+)))
7629
7630 (define-public r-flashclust
7631 (package
7632 (name "r-flashclust")
7633 (version "1.01-2")
7634 (source
7635 (origin
7636 (method url-fetch)
7637 (uri (cran-uri "flashClust" version))
7638 (sha256
7639 (base32
7640 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
7641 (properties `((upstream-name . "flashClust")))
7642 (build-system r-build-system)
7643 (native-inputs `(("gfortran" ,gfortran)))
7644 (home-page "https://cran.r-project.org/web/packages/flashClust/")
7645 (synopsis "Implementation of optimal hierarchical clustering")
7646 (description
7647 "This package provides a fast implementation of hierarchical
7648 clustering.")
7649 (license license:gpl2+)))
7650
7651 (define-public r-factominer
7652 (package
7653 (name "r-factominer")
7654 (version "2.4")
7655 (source
7656 (origin
7657 (method url-fetch)
7658 (uri (cran-uri "FactoMineR" version))
7659 (sha256
7660 (base32
7661 "0lg8n9fxxk46nchnj4pbpqqf4swxfsq7r9jzr36dmd36kb7avqxr"))))
7662 (properties `((upstream-name . "FactoMineR")))
7663 (build-system r-build-system)
7664 (propagated-inputs
7665 `(("r-car" ,r-car)
7666 ("r-cluster" ,r-cluster)
7667 ("r-dt" ,r-dt)
7668 ("r-ellipse" ,r-ellipse)
7669 ("r-flashclust" ,r-flashclust)
7670 ("r-ggplot2" ,r-ggplot2)
7671 ("r-ggrepel" ,r-ggrepel)
7672 ("r-lattice" ,r-lattice)
7673 ("r-leaps" ,r-leaps)
7674 ("r-mass" ,r-mass)
7675 ("r-scatterplot3d" ,r-scatterplot3d)))
7676 (native-inputs
7677 `(("r-knitr" ,r-knitr)))
7678 (home-page "http://factominer.free.fr")
7679 (synopsis "Multivariate exploratory data analysis and data mining")
7680 (description
7681 "This package provides exploratory data analysis methods to summarize,
7682 visualize and describe datasets. The main principal component methods are
7683 available, those with the largest potential in terms of applications:
7684 principal component analysis (PCA) when variables are quantitative,
7685 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
7686 variables are categorical, Multiple Factor Analysis when variables are
7687 structured in groups, etc. and hierarchical cluster analysis.")
7688 (license license:gpl2+)))
7689
7690 (define-public r-factoextra
7691 (package
7692 (name "r-factoextra")
7693 (version "1.0.7")
7694 (source
7695 (origin
7696 (method url-fetch)
7697 (uri (cran-uri "factoextra" version))
7698 (sha256
7699 (base32
7700 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
7701 (build-system r-build-system)
7702 (propagated-inputs
7703 `(("r-abind" ,r-abind)
7704 ("r-cluster" ,r-cluster)
7705 ("r-dendextend" ,r-dendextend)
7706 ("r-factominer" ,r-factominer)
7707 ("r-ggplot2" ,r-ggplot2)
7708 ("r-ggpubr" ,r-ggpubr)
7709 ("r-ggrepel" ,r-ggrepel)
7710 ("r-reshape2" ,r-reshape2)
7711 ("r-tidyr" ,r-tidyr)))
7712 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
7713 (synopsis "Extract and visualize the results of multivariate data analyses")
7714 (description
7715 "This package provides some easy-to-use functions to extract and
7716 visualize the output of multivariate data analyses, including
7717 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
7718 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
7719 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
7720 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
7721 packages. It contains also functions for simplifying some clustering analysis
7722 steps and provides ggplot2-based elegant data visualization.")
7723 (license license:gpl2)))
7724
7725 (define-public r-fansi
7726 (package
7727 (name "r-fansi")
7728 (version "0.4.2")
7729 (source
7730 (origin
7731 (method url-fetch)
7732 (uri (cran-uri "fansi" version))
7733 (sha256
7734 (base32
7735 "0i7wmaflkjzdbggqv31wnsj3m9imvc6db429vyjk64xrz1ng1vd2"))))
7736 (build-system r-build-system)
7737 (native-inputs
7738 `(("r-knitr" ,r-knitr))) ; for vignettes
7739 (home-page "https://github.com/brodieG/fansi")
7740 (synopsis "ANSI control sequence aware string functions")
7741 (description
7742 "This package provides counterparts to R string manipulation functions
7743 that account for the effects of ANSI text formatting control sequences.")
7744 (license license:gpl2+)))
7745
7746 (define-public r-nbclust
7747 (package
7748 (name "r-nbclust")
7749 (version "3.0")
7750 (source
7751 (origin
7752 (method url-fetch)
7753 (uri (cran-uri "NbClust" version))
7754 (sha256
7755 (base32
7756 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
7757 (properties `((upstream-name . "NbClust")))
7758 (build-system r-build-system)
7759 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
7760 (synopsis "Determine the best number of clusters in a data set")
7761 (description
7762 "NbClust provides 30 indexes for determining the optimal number of
7763 clusters in a data set and offers the best clustering scheme from different
7764 results to the user.")
7765 (license license:gpl2)))
7766
7767 (define-public r-hdf5r
7768 (package
7769 (name "r-hdf5r")
7770 (version "1.3.3")
7771 (source
7772 (origin
7773 (method url-fetch)
7774 (uri (cran-uri "hdf5r" version))
7775 (sha256
7776 (base32
7777 "0i8m4yjxggrs05slq2afvz2ckl1yc9wq7gd1s7dq2gjn46zkry50"))))
7778 (build-system r-build-system)
7779 (inputs
7780 `(("hdf5" ,hdf5)
7781 ("zlib" ,zlib)))
7782 (propagated-inputs
7783 `(("r-bit64" ,r-bit64)
7784 ("r-r6" ,r-r6)))
7785 (native-inputs
7786 `(("r-knitr" ,r-knitr)))
7787 (home-page "https://hhoeflin.github.io/hdf5r")
7788 (synopsis "Interface to the HDF5 binary data format")
7789 (description
7790 "HDF5 is a data model, library and file format for storing and managing
7791 large amounts of data. This package provides a nearly feature complete,
7792 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
7793 functionality is added so that HDF5 objects behave very similar to their
7794 corresponding R counterparts.")
7795 (license license:asl2.0)))
7796
7797 (define-public r-itertools
7798 (package
7799 (name "r-itertools")
7800 (version "0.1-3")
7801 (source
7802 (origin
7803 (method url-fetch)
7804 (uri (cran-uri "itertools" version))
7805 (sha256
7806 (base32
7807 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
7808 (build-system r-build-system)
7809 (propagated-inputs
7810 `(("r-iterators" ,r-iterators)))
7811 (home-page "https://cran.r-project.org/web/packages/itertools/")
7812 (synopsis "Iterator tools")
7813 (description
7814 "This package provides various tools for creating iterators, many
7815 patterned after functions in the Python @code{itertools} module, and others
7816 patterned after functions in the snow package.")
7817 (license license:gpl2)))
7818
7819 (define-public r-polynom
7820 (package
7821 (name "r-polynom")
7822 (version "1.4-0")
7823 (source
7824 (origin
7825 (method url-fetch)
7826 (uri (cran-uri "polynom" version))
7827 (sha256
7828 (base32
7829 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
7830 (build-system r-build-system)
7831 (home-page "https://cran.r-project.org/web/packages/polynom/")
7832 (synopsis "Functions for univariate polynomial manipulations")
7833 (description
7834 "This package provides a collection of functions to implement a class for
7835 univariate polynomial manipulations.")
7836 (license license:gpl2)))
7837
7838 (define-public r-gbrd
7839 (package
7840 (name "r-gbrd")
7841 (version "0.4-11")
7842 (source
7843 (origin
7844 (method url-fetch)
7845 (uri (cran-uri "gbRd" version))
7846 (sha256
7847 (base32
7848 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
7849 (properties `((upstream-name . "gbRd")))
7850 (build-system r-build-system)
7851 (home-page "https://cran.r-project.org/web/packages/gbRd/")
7852 (synopsis "Utilities for processing Rd objects and files")
7853 (description
7854 "This package provides utilities for processing Rd objects and files.
7855 Extract argument descriptions and other parts of the help pages of
7856 functions.")
7857 (license license:gpl2+)))
7858
7859 (define-public r-rjags
7860 (package
7861 (name "r-rjags")
7862 (version "4-10")
7863 (source
7864 (origin
7865 (method url-fetch)
7866 (uri (cran-uri "rjags" version))
7867 (sha256
7868 (base32
7869 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
7870 (build-system r-build-system)
7871 (propagated-inputs
7872 `(("r-coda" ,r-coda)))
7873 (inputs
7874 `(("jags" ,jags)))
7875 (native-inputs
7876 `(("pkg-config" ,pkg-config)))
7877 (home-page "http://mcmc-jags.sourceforge.net")
7878 (synopsis "Bayesian graphical models using MCMC")
7879 (description
7880 "This package provides an R interface to the JAGS MCMC library. JAGS is
7881 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
7882 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
7883 (license license:gpl2)))
7884
7885 (define-public r-rbibutils
7886 (package
7887 (name "r-rbibutils")
7888 (version "2.0")
7889 (source
7890 (origin
7891 (method url-fetch)
7892 (uri (cran-uri "rbibutils" version))
7893 (sha256
7894 (base32
7895 "1vfg2188i4dyhrmvnwpsh2la8qkd4wkryz2fpj4cppi1wfz3ml83"))))
7896 (properties `((upstream-name . "rbibutils")))
7897 (build-system r-build-system)
7898 (home-page "https://geobosh.github.io/rbibutils/")
7899 (synopsis "Convert between bibliography formats")
7900 (description
7901 "This package converts between a number of bibliography formats,
7902 including BibTeX, BibLaTeX and Bibentry. It includes a port of the bibutils
7903 utilities and supports all bibliography formats and character encodings
7904 implemented in bibutils.")
7905 (license license:gpl2)))
7906
7907 (define-public r-rdpack
7908 (package
7909 (name "r-rdpack")
7910 (version "2.1.1")
7911 (source
7912 (origin
7913 (method url-fetch)
7914 (uri (cran-uri "Rdpack" version))
7915 (sha256
7916 (base32
7917 "11psw5yiamq0g7jc6fqn2wis565i60qgda4a5d09qi8fyzd6mnfb"))))
7918 (properties `((upstream-name . "Rdpack")))
7919 (build-system r-build-system)
7920 (propagated-inputs
7921 `(("r-rbibutils" ,r-rbibutils)))
7922 (home-page "https://github.com/GeoBosh/Rdpack")
7923 (synopsis "Update and manipulate Rd documentation objects")
7924 (description
7925 "This package provides functions for manipulation of R documentation
7926 objects, including functions @code{reprompt()} and @code{ereprompt()} for
7927 updating Rd documentation for functions, methods and classes; it also includes
7928 Rd macros for citations and import of references from bibtex files for use in
7929 Rd files and roxygen2 comments, as well as many functions for manipulation of
7930 references and Rd files.")
7931 (license license:gpl2+)))
7932
7933 (define-public r-officer
7934 (package
7935 (name "r-officer")
7936 (version "0.3.17")
7937 (source
7938 (origin
7939 (method url-fetch)
7940 (uri (cran-uri "officer" version))
7941 (sha256
7942 (base32
7943 "1apg0dh1zfhrqcbbmm8318l40gyjbqc2l9sdvwxx7qi8mzc1mqvw"))))
7944 (build-system r-build-system)
7945 (propagated-inputs
7946 `(("r-r6" ,r-r6)
7947 ("r-uuid" ,r-uuid)
7948 ("r-xml2" ,r-xml2)
7949 ("r-zip" ,r-zip)))
7950 (native-inputs
7951 `(("r-knitr" ,r-knitr)))
7952 (home-page "https://davidgohel.github.io/officer")
7953 (synopsis "Manipulation of Word and PowerPoint documents")
7954 (description
7955 "This package provides tools to access and manipulate Word and PowerPoint
7956 documents from R. The package focuses on tabular and graphical reporting from
7957 R; it also provides two functions that let users get document content into
7958 data objects. A set of functions lets add and remove images, tables and
7959 paragraphs of text in new or existing documents. When working with PowerPoint
7960 presentations, slides can be added or removed; shapes inside slides can also
7961 be added or removed. When working with Word documents, a cursor can be used
7962 to help insert or delete content at a specific location in the document.")
7963 (license license:gpl3)))
7964
7965 (define-public r-profilemodel
7966 (package
7967 (name "r-profilemodel")
7968 (version "0.6.1")
7969 (source
7970 (origin
7971 (method url-fetch)
7972 (uri (cran-uri "profileModel" version))
7973 (sha256
7974 (base32
7975 "01m5nb8cmq0aq555pxk2a99182si65hhmn68yn9nal2j3zl2bp4i"))))
7976 (properties `((upstream-name . "profileModel")))
7977 (build-system r-build-system)
7978 (home-page "https://github.com/ikosmidis/profileModel")
7979 (synopsis "Profiling inference functions for various model classes")
7980 (description
7981 "This package provides tools that can be used to calculate, evaluate,
7982 plot and use for inference the profiles of *arbitrary* inference functions for
7983 arbitrary @code{glm}-like fitted models with linear predictors. More information
7984 on the methods that are implemented can be found in Kosmidis (2008)
7985 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
7986 (license license:gpl2+)))
7987
7988 (define-public r-brglm
7989 (package
7990 (name "r-brglm")
7991 (version "0.7.1")
7992 (source
7993 (origin
7994 (method url-fetch)
7995 (uri (cran-uri "brglm" version))
7996 (sha256
7997 (base32
7998 "1v68ma1agwhxar76mfvdfkcnd5h4gmxiz8j491rhdsckg271j7sa"))))
7999 (properties `((upstream-name . "brglm")))
8000 (build-system r-build-system)
8001 (propagated-inputs
8002 `(("r-profilemodel" ,r-profilemodel)))
8003 (home-page "https://github.com/ikosmidis/brglm")
8004 (synopsis "Bias reduction in binomial-response generalized linear models")
8005 (description
8006 "Fit generalized linear models with binomial responses using either an
8007 adjusted-score approach to bias reduction or maximum penalized likelihood
8008 where penalization is by Jeffreys invariant prior. These procedures return
8009 estimates with improved frequentist properties (bias, mean squared error) that
8010 are always finite even in cases where the maximum likelihood estimates are
8011 infinite (data separation). Fitting takes place by fitting generalized linear
8012 models on iteratively updated pseudo-data. The interface is essentially the
8013 same as @code{glm}. More flexibility is provided by the fact that custom
8014 pseudo-data representations can be specified and used for model fitting.
8015 Functions are provided for the construction of confidence intervals for the
8016 reduced-bias estimates.")
8017 (license license:gpl2+)))
8018
8019 (define-public r-entropy
8020 (package
8021 (name "r-entropy")
8022 (version "1.2.1")
8023 (source
8024 (origin
8025 (method url-fetch)
8026 (uri (cran-uri "entropy" version))
8027 (sha256
8028 (base32
8029 "10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"))))
8030 (properties `((upstream-name . "entropy")))
8031 (build-system r-build-system)
8032 (home-page "https://www.strimmerlab.org/software/entropy/")
8033 (synopsis "Estimation of entropy, mutual information and related quantities")
8034 (description
8035 "This package implements various estimators of entropy, such as the
8036 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
8037 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
8038 estimator. It also offers an R interface to the NSB estimator. Furthermore,
8039 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
8040 mutual information, and chi-squared statistic of independence. In addition
8041 there are functions for discretizing continuous random variables.")
8042 (license license:gpl3+)))
8043
8044 (define-public r-abn
8045 (package
8046 (name "r-abn")
8047 (version "2.3-0")
8048 (source
8049 (origin
8050 (method url-fetch)
8051 (uri (cran-uri "abn" version))
8052 (sha256
8053 (base32
8054 "17vdrqm6qp5aijg00ah2imj3pqr6cl5r43hgg8dijbrbhznarci6"))))
8055 (build-system r-build-system)
8056 (inputs
8057 `(("gsl" ,gsl)))
8058 (propagated-inputs
8059 `(("r-lme4" ,r-lme4)
8060 ("r-nnet" ,r-nnet)
8061 ("r-rcpp" ,r-rcpp)
8062 ("r-rcpparmadillo" ,r-rcpparmadillo)
8063 ("r-rjags" ,r-rjags)))
8064 (home-page "https://r-bayesian-networks.org/")
8065 (synopsis "Modelling multivariate data with additive bayesian networks")
8066 (description
8067 "Bayesian network analysis is a form of probabilistic graphical models
8068 which derives from empirical data a directed acyclic graph, DAG, describing
8069 the dependency structure between random variables. An additive Bayesian
8070 network model consists of a form of a DAG where each node comprises a
8071 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
8072 equivalent to Bayesian multivariate regression using graphical modelling, they
8073 generalises the usual multivariable regression, GLM, to multiple dependent
8074 variables. This package provides routines to help determine optimal Bayesian
8075 network models for a given data set, where these models are used to identify
8076 statistical dependencies in messy, complex data.")
8077 (license license:gpl2+)))
8078
8079 (define-public r-acd
8080 (package
8081 (name "r-acd")
8082 (version "1.5.3")
8083 (source
8084 (origin
8085 (method url-fetch)
8086 (uri (cran-uri "ACD" version))
8087 (sha256
8088 (base32
8089 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
8090 (properties `((upstream-name . "ACD")))
8091 (build-system r-build-system)
8092 (home-page "https://cran.r-project.org/web/packages/ACD/")
8093 (synopsis "Categorical data analysis with complete or missing responses")
8094 (description
8095 "This package provides tools for categorical data analysis with complete
8096 or missing responses.")
8097 (license license:gpl2+)))
8098
8099 (define-public r-acdm
8100 (package
8101 (name "r-acdm")
8102 (version "1.0.4")
8103 (source
8104 (origin
8105 (method url-fetch)
8106 (uri (cran-uri "ACDm" version))
8107 (sha256
8108 (base32
8109 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
8110 (properties `((upstream-name . "ACDm")))
8111 (build-system r-build-system)
8112 (propagated-inputs
8113 `(("r-dplyr" ,r-dplyr)
8114 ("r-ggplot2" ,r-ggplot2)
8115 ("r-plyr" ,r-plyr)
8116 ("r-rsolnp" ,r-rsolnp)
8117 ("r-zoo" ,r-zoo)))
8118 (home-page "https://cran.r-project.org/web/packages/ACDm/")
8119 (synopsis "Tools for Autoregressive Conditional Duration Models")
8120 (description
8121 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
8122 and Russell, 1998) models. It creates trade, price or volume durations from
8123 transactions (tic) data, performs diurnal adjustments, fits various ACD models
8124 and tests them.")
8125 (license license:gpl2+)))
8126
8127 (define-public r-overlap
8128 (package
8129 (name "r-overlap")
8130 (version "0.3.3")
8131 (source
8132 (origin
8133 (method url-fetch)
8134 (uri (cran-uri "overlap" version))
8135 (sha256
8136 (base32
8137 "17cnr4qin1qy0df4k491267acna12gpbbps6w3gi8nccqxfrb1pd"))))
8138 (build-system r-build-system)
8139 (home-page "https://cran.r-project.org/web/packages/overlap/")
8140 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
8141 (description
8142 "This package provides functions to fit kernel density functions to data
8143 on temporal activity patterns of animals; estimate coefficients of overlapping
8144 of densities for two species; and calculate bootstrap estimates of confidence
8145 intervals.")
8146 (license license:gpl3+)))
8147
8148 (define-public r-snakecase
8149 (package
8150 (name "r-snakecase")
8151 (version "0.11.0")
8152 (source
8153 (origin
8154 (method url-fetch)
8155 (uri (cran-uri "snakecase" version))
8156 (sha256
8157 (base32
8158 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
8159 (build-system r-build-system)
8160 (propagated-inputs
8161 `(("r-stringi" ,r-stringi)
8162 ("r-stringr" ,r-stringr)))
8163 (home-page "https://github.com/Tazinho/snakecase")
8164 (synopsis "Convert strings into any case")
8165 (description
8166 "This package provides a consistent, flexible and easy to use tool to
8167 parse and convert strings into cases like snake or camel among others.")
8168 (license license:gpl3)))
8169
8170 (define-public r-prediction
8171 (package
8172 (name "r-prediction")
8173 (version "0.3.14")
8174 (source
8175 (origin
8176 (method url-fetch)
8177 (uri (cran-uri "prediction" version))
8178 (sha256
8179 (base32
8180 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
8181 (build-system r-build-system)
8182 (propagated-inputs
8183 `(("r-data-table" ,r-data-table)))
8184 (home-page "https://github.com/leeper/prediction")
8185 (synopsis "Tidy, type-safe prediction methods")
8186 (description
8187 "This package provides the @code{prediction()} function, a type-safe
8188 alternative to @code{predict()} that always returns a data frame. The package
8189 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
8190 from the @code{stats} package, as well as numerous other model classes from
8191 other add-on packages.")
8192 (license license:expat)))
8193
8194 (define-public r-insight
8195 (package
8196 (name "r-insight")
8197 (version "0.13.1")
8198 (source
8199 (origin
8200 (method url-fetch)
8201 (uri (cran-uri "insight" version))
8202 (sha256
8203 (base32
8204 "1la4yxzfl9fnknamnaziil6gvpdzl78z16lfzis9jgzg8r9q0y5l"))))
8205 (build-system r-build-system)
8206 (native-inputs
8207 `(("r-knitr" ,r-knitr)))
8208 (home-page "https://easystats.github.io/insight/")
8209 (synopsis "Easy access to model information for various model objects")
8210 (description
8211 "This package provides a tool to provide an easy, intuitive and
8212 consistent access to information contained in various R models, like model
8213 formulas, model terms, information about random effects, data that was used to
8214 fit the model or data from response variables. The package mainly revolves
8215 around two types of functions: Functions that find (the names of) information,
8216 starting with @code{find_}, and functions that get the underlying data,
8217 starting with @code{get_}. The package has a consistent syntax and works with
8218 many different model objects, where otherwise functions to access these
8219 information are missing.")
8220 (license license:gpl3)))
8221
8222 (define-public r-sjlabelled
8223 (package
8224 (name "r-sjlabelled")
8225 (version "1.1.7")
8226 (source
8227 (origin
8228 (method url-fetch)
8229 (uri (cran-uri "sjlabelled" version))
8230 (sha256
8231 (base32
8232 "0d3fsjd2gxchv8mlx9l5pf8xvkmx4pgvizam83f3qss07bmvpzwg"))))
8233 (build-system r-build-system)
8234 (propagated-inputs
8235 `(("r-insight" ,r-insight)))
8236 (native-inputs
8237 `(("r-knitr" ,r-knitr)))
8238 (home-page "https://github.com/strengejacke/sjlabelled")
8239 (synopsis "Labelled data utility functions")
8240 (description
8241 "This package provides a collection of functions dealing with labelled
8242 data, like reading and writing data between R and other statistical software
8243 packages. This includes easy ways to get, set or change value and variable
8244 label attributes, to convert labelled vectors into factors or numeric (and
8245 vice versa), or to deal with multiple declared missing values.")
8246 (license license:gpl3)))
8247
8248 (define-public r-sjmisc
8249 (package
8250 (name "r-sjmisc")
8251 (version "2.8.6")
8252 (source
8253 (origin
8254 (method url-fetch)
8255 (uri (cran-uri "sjmisc" version))
8256 (sha256
8257 (base32
8258 "1nfrkv5jfnwb85blpv7yk7xac1myzi2c30bqcf7xicniknkjwycr"))))
8259 (build-system r-build-system)
8260 (propagated-inputs
8261 `(("r-dplyr" ,r-dplyr)
8262 ("r-insight" ,r-insight)
8263 ("r-magrittr" ,r-magrittr)
8264 ("r-purrr" ,r-purrr)
8265 ("r-rlang" ,r-rlang)
8266 ("r-sjlabelled" ,r-sjlabelled)
8267 ("r-tidyselect" ,r-tidyselect)))
8268 (native-inputs
8269 `(("r-knitr" ,r-knitr)))
8270 (home-page "https://github.com/strengejacke/sjmisc")
8271 (synopsis "Data and variable transformation functions")
8272 (description
8273 "This package is a collection of miscellaneous utility functions,
8274 supporting data transformation tasks like recoding, dichotomizing or grouping
8275 variables, setting and replacing missing values. The data transformation
8276 functions also support labelled data, and all integrate seamlessly into a
8277 tidyverse workflow.")
8278 (license license:gpl3)))
8279
8280 (define-public r-nortest
8281 (package
8282 (name "r-nortest")
8283 (version "1.0-4")
8284 (source
8285 (origin
8286 (method url-fetch)
8287 (uri (cran-uri "nortest" version))
8288 (sha256
8289 (base32
8290 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
8291 (build-system r-build-system)
8292 (home-page "https://cran.r-project.org/web/packages/nortest/")
8293 (synopsis "Tests for normality")
8294 (description
8295 "This package provides five omnibus tests for testing the composite
8296 hypothesis of normality.")
8297 (license license:gpl2+)))
8298
8299 (define-public r-moonbook
8300 (package
8301 (name "r-moonbook")
8302 (version "0.2.4")
8303 (source
8304 (origin
8305 (method url-fetch)
8306 (uri (cran-uri "moonBook" version))
8307 (sha256
8308 (base32
8309 "0z78pzc8sr2g19xjdd9cmai4iqyifmh79gj8x40ddww6a27dalry"))))
8310 (properties `((upstream-name . "moonBook")))
8311 (build-system r-build-system)
8312 (propagated-inputs
8313 `(("r-magrittr" ,r-magrittr)
8314 ("r-nortest" ,r-nortest)
8315 ("r-sjmisc" ,r-sjmisc)
8316 ("r-stringr" ,r-stringr)
8317 ("r-survival" ,r-survival)
8318 ("r-ztable" ,r-ztable)))
8319 (native-inputs
8320 `(("r-knitr" ,r-knitr)))
8321 (home-page "https://github.com/cardiomoon/moonBook")
8322 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
8323 (description
8324 "This package provides several analysis-related functions for the book
8325 entitled \"R statistics and graph for medical articles\" (written in Korean),
8326 version 1, by Keon-Woong Moon with Korean demographic data with several plot
8327 functions.")
8328 (license license:gpl2)))
8329
8330 (define-public r-flextable
8331 (package
8332 (name "r-flextable")
8333 (version "0.6.4")
8334 (source
8335 (origin
8336 (method url-fetch)
8337 (uri (cran-uri "flextable" version))
8338 (sha256
8339 (base32
8340 "1ykjfnqhn8nd9f3l4jj8hf1bbjjckkna3p7fdsg0a73c05a17yma"))))
8341 (build-system r-build-system)
8342 (propagated-inputs
8343 `(("r-base64enc" ,r-base64enc)
8344 ("r-data-table" ,r-data-table)
8345 ("r-gdtools" ,r-gdtools)
8346 ("r-htmltools" ,r-htmltools)
8347 ("r-knitr" ,r-knitr)
8348 ("r-officer" ,r-officer)
8349 ("r-rlang" ,r-rlang)
8350 ("r-rmarkdown" ,r-rmarkdown)
8351 ("r-uuid" ,r-uuid)
8352 ("r-xml2" ,r-xml2)))
8353 (native-inputs
8354 `(("r-knitr" ,r-knitr)))
8355 (home-page "https://davidgohel.github.io/flextable")
8356 (synopsis "Functions for tabular reporting")
8357 (description
8358 "This package provides tools to create pretty tables for HTML documents
8359 and other formats. Functions are provided to let users create tables, modify
8360 and format their content. It extends the @code{officer} package and can be
8361 used within R markdown documents when rendering to HTML and to Word
8362 documents.")
8363 (license license:gpl3)))
8364
8365 (define-public r-writexl
8366 (package
8367 (name "r-writexl")
8368 (version "1.3.1")
8369 (source
8370 (origin
8371 (method url-fetch)
8372 (uri (cran-uri "writexl" version))
8373 (sha256
8374 (base32
8375 "1njdhvh8605wd2j8glrbxfyc36p2n88prpq080jn44s9lgfmbgsb"))))
8376 (build-system r-build-system)
8377 (inputs `(("zlib" ,zlib)))
8378 (home-page "https://github.com/ropensci/writexl")
8379 (synopsis "Export data frames to xlsx format")
8380 (description
8381 "This package provides a data frame to xlsx exporter based on
8382 libxlsxwriter.")
8383 (license license:bsd-2)))
8384
8385 (define-public r-biasedurn
8386 (package
8387 (name "r-biasedurn")
8388 (version "1.07")
8389 (source
8390 (origin
8391 (method url-fetch)
8392 (uri (cran-uri "BiasedUrn" version))
8393 (sha256
8394 (base32
8395 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
8396 (properties `((upstream-name . "BiasedUrn")))
8397 (build-system r-build-system)
8398 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
8399 (synopsis "Biased Urn model distributions")
8400 (description
8401 "This package provides statistical models of biased sampling in the form
8402 of univariate and multivariate noncentral hypergeometric distributions,
8403 including Wallenius' noncentral hypergeometric distribution and Fisher's
8404 noncentral hypergeometric distribution (also called extended hypergeometric
8405 distribution).")
8406 (license license:gpl3)))
8407
8408 (define-public r-goplot
8409 (package
8410 (name "r-goplot")
8411 (version "1.0.2")
8412 (source
8413 (origin
8414 (method url-fetch)
8415 (uri (cran-uri "GOplot" version))
8416 (sha256
8417 (base32
8418 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
8419 (properties `((upstream-name . "GOplot")))
8420 (build-system r-build-system)
8421 (propagated-inputs
8422 `(("r-ggdendro" ,r-ggdendro)
8423 ("r-ggplot2" ,r-ggplot2)
8424 ("r-gridextra" ,r-gridextra)
8425 ("r-rcolorbrewer" ,r-rcolorbrewer)))
8426 (home-page "https://github.com/wencke/wencke.github.io")
8427 (synopsis "Visualization of functional analysis data")
8428 (description
8429 "This package provides an implementation of multilayered visualizations
8430 for enhanced graphical representation of functional analysis data. It
8431 combines and integrates omics data derived from expression and functional
8432 annotation enrichment analyses. Its plotting functions have been developed
8433 with an hierarchical structure in mind: starting from a general overview to
8434 identify the most enriched categories (modified bar plot, bubble plot) to a
8435 more detailed one displaying different types of relevant information for the
8436 molecules in a given set of categories (circle plot, chord plot, cluster plot,
8437 Venn diagram, heatmap).")
8438 (license license:gpl2)))
8439
8440 (define-public r-getopt
8441 (package
8442 (name "r-getopt")
8443 (version "1.20.3")
8444 (source
8445 (origin
8446 (method url-fetch)
8447 (uri (cran-uri "getopt" version))
8448 (sha256
8449 (base32
8450 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
8451 (build-system r-build-system)
8452 (home-page "https://github.com/trevorld/getopt")
8453 (synopsis "Command-line option processor for R")
8454 (description
8455 "This package is designed to be used with Rscript to write shebang
8456 scripts that accept short and long options. Many users will prefer to
8457 use the packages @code{optparse} or @code{argparse} which add extra
8458 features like automatically generated help options and usage texts,
8459 support for default values, positional argument support, etc.")
8460 (license license:gpl2+)))
8461
8462 (define-public r-findpython
8463 (package
8464 (name "r-findpython")
8465 (version "1.0.7")
8466 (source
8467 (origin
8468 (method url-fetch)
8469 (uri (cran-uri "findpython" version))
8470 (sha256
8471 (base32
8472 "0jf10jpqla90x03kl3k77gnd255zmw9rvr8d724vb17cqawh9yar"))))
8473 (build-system r-build-system)
8474 (home-page "https://github.com/trevorld/findpython")
8475 (synopsis "Functions to find an acceptable Python binary")
8476 (description
8477 "This package was designed to find an acceptable Python binary that
8478 matches version and feature constraints.")
8479 (license license:expat)))
8480
8481 ;; This in not the same as "r-argparser"
8482 (define-public r-argparse
8483 (package
8484 (name "r-argparse")
8485 (version "2.0.3")
8486 (source
8487 (origin
8488 (method url-fetch)
8489 (uri (cran-uri "argparse" version))
8490 (sha256
8491 (base32
8492 "1c2r417m1dxk1jhcggv3g4zax5a59k9rqs9jcs6xy2pa2333jqfj"))))
8493 (build-system r-build-system)
8494 (inputs `(("python" ,python)))
8495 (propagated-inputs
8496 `(("r-findpython" ,r-findpython)
8497 ("r-jsonlite" ,r-jsonlite)
8498 ("r-r6" ,r-r6)))
8499 (native-inputs
8500 `(("r-knitr" ,r-knitr)))
8501 (home-page "https://github.com/trevorld/argparse")
8502 (synopsis "Command line optional and positional argument parser")
8503 (description
8504 "This package provides a command line parser to be used with Rscript to
8505 write shebang scripts that gracefully accept positional and optional arguments
8506 and automatically generate usage notices.")
8507 (license license:gpl2+)))
8508
8509 (define-public r-hash
8510 (package
8511 (name "r-hash")
8512 (version "2.2.6.1")
8513 (source
8514 (origin
8515 (method url-fetch)
8516 (uri (cran-uri "hash" version))
8517 (sha256
8518 (base32
8519 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
8520 (build-system r-build-system)
8521 (home-page "https://cran.r-project.org/web/packages/hash/")
8522 (synopsis "Implementation of hash/associated arrays/dictionaries")
8523 (description
8524 "This package implements a data structure similar to hashes in Perl and
8525 dictionaries in Python but with a purposefully R flavor. For objects of
8526 appreciable size, access using hashes outperforms native named lists and
8527 vectors.")
8528 (license license:gpl2+)))
8529
8530 (define-public r-orddom
8531 (package
8532 (name "r-orddom")
8533 (version "3.1")
8534 (source
8535 (origin
8536 (method url-fetch)
8537 (uri (cran-uri "orddom" version))
8538 (sha256
8539 (base32
8540 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
8541 (build-system r-build-system)
8542 (propagated-inputs `(("r-psych" ,r-psych)))
8543 (home-page "https://cran.r-project.org/web/packages/orddom/")
8544 (synopsis "Ordinal dominance statistics")
8545 (description
8546 "This package provides tools to compute ordinal, statistics and effect
8547 sizes as an alternative to mean comparison: Cliff's delta or success rate
8548 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
8549 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
8550 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
8551 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
8552 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
8553 Group (Non-)Overlap considerations.")
8554 (license license:gpl2)))
8555
8556 (define-public r-deriv
8557 (package
8558 (name "r-deriv")
8559 (version "4.1.3")
8560 (source
8561 (origin
8562 (method url-fetch)
8563 (uri (cran-uri "Deriv" version))
8564 (sha256
8565 (base32
8566 "130g3mv0z9sqs6y23a0a94512iiw05yr6fp378vhdxxbignzbnyv"))))
8567 (properties `((upstream-name . "Deriv")))
8568 (build-system r-build-system)
8569 (home-page "https://cran.r-project.org/web/packages/Deriv")
8570 (synopsis "Symbolic differentiation")
8571 (description
8572 "This package provides an R-based solution for symbolic differentiation.
8573 It admits user-defined functions as well as function substitution in arguments
8574 of functions to be differentiated. Some symbolic simplification is part of
8575 the work.")
8576 (license license:gpl3+)))
8577
8578 (define-public r-doby
8579 (package
8580 (name "r-doby")
8581 (version "4.6.9")
8582 (source
8583 (origin
8584 (method url-fetch)
8585 (uri (cran-uri "doBy" version))
8586 (sha256
8587 (base32
8588 "02f545md5yhbpp3wb3q2c8zabqwgf02555r5c6g7znab5zjbyr00"))))
8589 (properties `((upstream-name . "doBy")))
8590 (build-system r-build-system)
8591 (propagated-inputs
8592 `(("r-broom" ,r-broom)
8593 ("r-deriv" ,r-deriv)
8594 ("r-dplyr" ,r-dplyr)
8595 ("r-ggplot2" ,r-ggplot2)
8596 ("r-magrittr" ,r-magrittr)
8597 ("r-mass" ,r-mass)
8598 ("r-matrix" ,r-matrix)
8599 ("r-pbkrtest" ,r-pbkrtest)
8600 ("r-tibble" ,r-tibble)))
8601 (native-inputs
8602 `(("r-knitr" ,r-knitr)))
8603 (home-page "https://people.math.aau.dk/~sorenh/software/doBy/")
8604 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
8605 (description
8606 "This package contains:
8607
8608 @itemize
8609 @item facilities for working with grouped data: @code{do}
8610 something to data stratified @code{by} some variables.
8611 @item implementations of least-squares means, general linear contrasts, and
8612 @item miscellaneous other utilities.
8613 @end itemize\n")
8614 (license license:gpl2+)))
8615
8616 (define-public r-refgenome
8617 (package
8618 (name "r-refgenome")
8619 (version "1.7.7")
8620 (source
8621 (origin
8622 (method url-fetch)
8623 (uri (cran-uri "refGenome" version))
8624 (sha256
8625 (base32
8626 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
8627 (properties `((upstream-name . "refGenome")))
8628 (build-system r-build-system)
8629 (propagated-inputs
8630 `(("r-dbi" ,r-dbi)
8631 ("r-doby" ,r-doby)
8632 ("r-rsqlite" ,r-rsqlite)))
8633 (home-page "https://cran.r-project.org/web/packages/refGenome/")
8634 (synopsis
8635 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
8636 (description
8637 "This package contains functionality for importing and managing of
8638 downloaded genome annotation data from the Ensembl genome browser (European
8639 Bioinformatics Institute) and from the UCSC genome browser (University of
8640 California, Santa Cruz) and annotation routines for genomic positions and
8641 splice site positions.")
8642 (license license:gpl2)))
8643
8644 (define-public r-basix
8645 (package
8646 (name "r-basix")
8647 (version "1.1")
8648 (source
8649 (origin
8650 (method url-fetch)
8651 (uri (cran-uri "BASIX" version))
8652 (sha256
8653 (base32
8654 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
8655 (properties `((upstream-name . "BASIX")))
8656 (build-system r-build-system)
8657 (home-page "https://cran.r-project.org/web/packages/BASIX/")
8658 (synopsis "Efficient C/C++ toolset for R")
8659 (description
8660 "BASIX provides some efficient C/C++ implementations of native R
8661 procedures to speed up calculations in R.")
8662 (license license:gpl2)))
8663
8664 (define-public r-blockfest
8665 (package
8666 (name "r-blockfest")
8667 (version "2.0")
8668 (source
8669 (origin
8670 (method url-fetch)
8671 (uri (cran-uri "BlockFeST" version))
8672 (sha256
8673 (base32
8674 "1fcl3yc1cf09znqbj787d3fd2kl5rp63la7pxawsgmap7nxwkp65"))))
8675 (properties `((upstream-name . "BlockFeST")))
8676 (build-system r-build-system)
8677 (propagated-inputs `(("r-basix" ,r-basix)))
8678 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
8679 (synopsis "Bayesian calculation of region-specific fixation index")
8680 (description
8681 "This package provides an R implementation of an extension of the
8682 BayeScan software for codominant markers, adding the option to group
8683 individual SNPs into pre-defined blocks. A typical application of this new
8684 approach is the identification of genomic regions, genes, or gene sets
8685 containing one or more SNPs that evolved under directional selection.")
8686 (license license:gpl2)))
8687
8688 (define-public r-proc
8689 (package
8690 (name "r-proc")
8691 (version "1.17.0.1")
8692 (source
8693 (origin
8694 (method url-fetch)
8695 (uri (cran-uri "pROC" version))
8696 (sha256
8697 (base32
8698 "1gd6a47d6bcfd237s3g7r9rws8x2sg7zrvq5k6clpc41zdpp4712"))))
8699 (properties `((upstream-name . "pROC")))
8700 (build-system r-build-system)
8701 (propagated-inputs
8702 `(("r-plyr" ,r-plyr)
8703 ("r-rcpp" ,r-rcpp)))
8704 (home-page "https://web.expasy.org/pROC/")
8705 (synopsis "Display and analyze ROC curves")
8706 (description
8707 "This package provides tools for visualizing, smoothing and comparing
8708 receiver operating characteristic (ROC curves). The area under the
8709 curve (AUC) can be compared with statistical tests based on U-statistics or
8710 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
8711 (license license:gpl3+)))
8712
8713 (define-public r-rootsolve
8714 (package
8715 (name "r-rootsolve")
8716 (version "1.8.2.1")
8717 (source
8718 (origin
8719 (method url-fetch)
8720 (uri (cran-uri "rootSolve" version))
8721 (sha256
8722 (base32
8723 "0c9hhgq1pgqdg80a6n2ssfbj5nyaf97y4iiya7j7l6b34qc53128"))))
8724 (properties `((upstream-name . "rootSolve")))
8725 (build-system r-build-system)
8726 (native-inputs `(("gfortran" ,gfortran)))
8727 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
8728 (synopsis "Tools for the analysis of ordinary differential equations")
8729 (description
8730 "This package provides routines to find the root of nonlinear functions,
8731 and to perform steady-state and equilibrium analysis of @dfn{ordinary
8732 differential equations} (ODE). It includes routines that:
8733
8734 @enumerate
8735 @item generate gradient and jacobian matrices (full and banded),
8736 @item find roots of non-linear equations by the Newton-Raphson method,
8737 @item estimate steady-state conditions of a system of (differential) equations
8738 in full, banded or sparse form, using the Newton-Raphson method, or by
8739 dynamically running,
8740 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
8741 and 3-D partial differential equations, that have been converted to ordinary
8742 differential equations by numerical differencing (using the method-of-lines
8743 approach).
8744 @end enumerate\n")
8745 (license license:gpl2+)))
8746
8747 (define-public r-abcanalysis
8748 (package
8749 (name "r-abcanalysis")
8750 (version "1.2.1")
8751 (source
8752 (origin
8753 (method url-fetch)
8754 (uri (cran-uri "ABCanalysis" version))
8755 (sha256
8756 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
8757 (properties `((upstream-name . "ABCanalysis")))
8758 (build-system r-build-system)
8759 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
8760 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
8761 (synopsis "Computed ABC Analysis")
8762 (description
8763 "Multivariate data sets often differ in several factors or derived statistical
8764 parameters, which have to be selected for a valid interpretation. Basing this
8765 selection on traditional statistical limits leads occasionally to the perception
8766 of losing information from a data set. This package provides tools to calculate
8767 these limits on the basis of the mathematical properties of the distribution of
8768 the analyzed items.")
8769 (license license:gpl3)))
8770
8771 (define-public r-slam
8772 (package
8773 (name "r-slam")
8774 (version "0.1-48")
8775 (source
8776 (origin
8777 (method url-fetch)
8778 (uri (cran-uri "slam" version))
8779 (sha256
8780 (base32 "1ppsvkph4v1dffxgp12a4wnr9arj7pkmh4qv0and3f6nbz9k42qa"))))
8781 (build-system r-build-system)
8782 (home-page "https://cran.r-project.org/web/packages/slam/")
8783 (synopsis "Sparse lightweight arrays and matrices")
8784 (description
8785 "This package contains data structures and algorithms for sparse arrays and matrices,
8786 based on index arrays and simple triplet representations, respectively.")
8787 (license license:gpl2)))
8788
8789 (define-public r-manipulatewidget
8790 (package
8791 (name "r-manipulatewidget")
8792 (version "0.10.1")
8793 (source
8794 (origin
8795 (method url-fetch)
8796 (uri (cran-uri "manipulateWidget" version))
8797 (sha256
8798 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
8799 (properties
8800 `((upstream-name . "manipulateWidget")))
8801 (build-system r-build-system)
8802 (propagated-inputs
8803 `(("r-base64enc" ,r-base64enc)
8804 ("r-codetools" ,r-codetools)
8805 ("r-htmltools" ,r-htmltools)
8806 ("r-htmlwidgets" ,r-htmlwidgets)
8807 ("r-knitr" ,r-knitr)
8808 ("r-miniui" ,r-miniui)
8809 ("r-shiny" ,r-shiny)
8810 ("r-webshot" ,r-webshot)))
8811 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
8812 (synopsis "Add even more interactivity to interactive charts")
8813 (description
8814 "This package lets you create in just a few lines of R code a nice user interface to
8815 modify the data or the graphical parameters of one or multiple interactive
8816 charts. It is useful to quickly explore visually some data or for package
8817 developers to generate user interfaces easy to maintain.")
8818 (license license:gpl2+)))
8819
8820 (define-public r-a3
8821 (package
8822 (name "r-a3")
8823 (version "1.0.0")
8824 (source
8825 (origin
8826 (method url-fetch)
8827 (uri (cran-uri "A3" version))
8828 (sha256
8829 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
8830 (properties `((upstream-name . "A3")))
8831 (build-system r-build-system)
8832 (propagated-inputs
8833 `(("r-pbapply" ,r-pbapply)
8834 ("r-xtable" ,r-xtable)))
8835 (home-page "https://cran.r-project.org/web/packages/A3/")
8836 (synopsis "Error metrics for predictive models")
8837 (description
8838 "This package supplies tools for tabulating and analyzing the results of predictive
8839 models. The methods employed are applicable to virtually any predictive model
8840 and make comparisons between different methodologies straightforward.")
8841 (license license:gpl2+)))
8842
8843 (define-public r-infotheo
8844 (package
8845 (name "r-infotheo")
8846 (version "1.2.0")
8847 (source
8848 (origin
8849 (method url-fetch)
8850 (uri (cran-uri "infotheo" version))
8851 (sha256
8852 (base32
8853 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
8854 (build-system r-build-system)
8855 (home-page "http://homepage.meyerp.com/software")
8856 (synopsis "Information-theoretic measures")
8857 (description
8858 "This package implements various measures of information theory based on
8859 several entropy estimators.")
8860 (license license:gpl3+)))
8861
8862 (define-public r-abcoptim
8863 (package
8864 (name "r-abcoptim")
8865 (version "0.15.0")
8866 (source
8867 (origin
8868 (method url-fetch)
8869 (uri (cran-uri "ABCoptim" version))
8870 (sha256
8871 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
8872 (properties `((upstream-name . "ABCoptim")))
8873 (build-system r-build-system)
8874 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8875 (home-page "https://github.com/gvegayon/ABCoptim/")
8876 (synopsis "Optimization of Artificial Bee Colony algorithm")
8877 (description
8878 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
8879 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
8880 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
8881 algorithms, and uses only common control parameters such as colony size and
8882 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
8883 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
8884 This version is a work-in-progress and is written in R code.")
8885 (license license:expat)))
8886
8887 (define-public r-abcp2
8888 (package
8889 (name "r-abcp2")
8890 (version "1.2")
8891 (source
8892 (origin
8893 (method url-fetch)
8894 (uri (cran-uri "ABCp2" version))
8895 (sha256
8896 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
8897 (properties `((upstream-name . "ABCp2")))
8898 (build-system r-build-system)
8899 (propagated-inputs `(("r-mass" ,r-mass)))
8900 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
8901 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
8902 (description
8903 "This package tests the goodness of fit of a distribution of offspring to the Normal,
8904 Poisson, and Gamma distribution and estimates the proportional paternity of the
8905 second male (P2) based on the best fit distribution.")
8906 (license license:gpl2)))
8907
8908 (define-public r-abcrf
8909 (package
8910 (name "r-abcrf")
8911 (version "1.8.1")
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (cran-uri "abcrf" version))
8916 (sha256
8917 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
8918 (build-system r-build-system)
8919 (propagated-inputs
8920 `(("r-doparallel" ,r-doparallel)
8921 ("r-foreach" ,r-foreach)
8922 ("r-mass" ,r-mass)
8923 ("r-matrixstats" ,r-matrixstats)
8924 ("r-ranger" ,r-ranger)
8925 ("r-rcpp" ,r-rcpp)
8926 ("r-rcpparmadillo" ,r-rcpparmadillo)
8927 ("r-readr" ,r-readr)
8928 ("r-stringr" ,r-stringr)))
8929 (home-page "https://cran.r-project.org/web/packages/abcrf/")
8930 (synopsis "Approximate bayesian computation via random forests")
8931 (description
8932 "This package performs approximate bayesian computation (ABC) model choice and
8933 parameter inference via random forests. This machine learning tool named random
8934 forests (RF) can conduct selection among the highly complex models covered by
8935 ABC algorithms.")
8936 (license license:gpl2+)))
8937
8938 (define-public r-abctools
8939 (package
8940 (name "r-abctools")
8941 (version "1.1.3")
8942 (source
8943 (origin
8944 (method url-fetch)
8945 (uri (cran-uri "abctools" version))
8946 (sha256
8947 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
8948 (build-system r-build-system)
8949 (propagated-inputs
8950 `(("r-abc" ,r-abc)
8951 ("r-abind" ,r-abind)
8952 ("r-hmisc" ,r-hmisc)
8953 ("r-plyr" ,r-plyr)))
8954 (home-page "https://github.com/dennisprangle/abctools/")
8955 (synopsis "Tools for ABC analyses")
8956 (description
8957 "This @code{r-abctools} package provides tools for approximate Bayesian computation
8958 including summary statistic selection and assessing coverage. This includes
8959 recent dimension reduction algorithms to tune the choice of summary statistics,
8960 and coverage methods to tune the choice of threshold.")
8961 (license license:gpl2+)))
8962
8963 (define-public r-ggstance
8964 (package
8965 (name "r-ggstance")
8966 (version "0.3.5")
8967 (source
8968 (origin
8969 (method url-fetch)
8970 (uri (cran-uri "ggstance" version))
8971 (sha256
8972 (base32 "0jz9vvnmcc6a38n8nzr458r65sna23bgn5r8mxdhzdlyqibihr7d"))))
8973 (build-system r-build-system)
8974 (propagated-inputs
8975 `(("r-ggplot2" ,r-ggplot2)
8976 ("r-plyr" ,r-plyr)
8977 ("r-rlang" ,r-rlang)
8978 ("r-withr" ,r-withr)))
8979 (home-page "https://cran.r-project.org/web/packages/ggstance/")
8980 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
8981 (description
8982 "This package is a @code{r-ggplot2} extension that provides flipped components:
8983 @enumerate
8984 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
8985 @item vertical versions of @code{r-ggplot2} positions.
8986 @end enumerate")
8987 (license license:gpl3)))
8988
8989 (define-public r-mosaiccore
8990 (package
8991 (name "r-mosaiccore")
8992 (version "0.9.0")
8993 (source
8994 (origin
8995 (method url-fetch)
8996 (uri (cran-uri "mosaicCore" version))
8997 (sha256
8998 (base32 "1h3ixzna4xy42rdnd89jj0v9q0riy3fnkd33z6l5c0zaidzm58fz"))))
8999 (properties `((upstream-name . "mosaicCore")))
9000 (build-system r-build-system)
9001 (propagated-inputs
9002 `(("r-dplyr" ,r-dplyr)
9003 ("r-mass" ,r-mass)
9004 ("r-rlang" ,r-rlang)
9005 ("r-tidyr" ,r-tidyr)))
9006 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
9007 (synopsis "Common utilities for mosaic family packages")
9008 (description
9009 "Common utilities used in other Mosaic family packages are collected here.")
9010 (license license:gpl2+)))
9011
9012 (define-public r-labelled
9013 (package
9014 (name "r-labelled")
9015 (version "2.8.0")
9016 (source
9017 (origin
9018 (method url-fetch)
9019 (uri (cran-uri "labelled" version))
9020 (sha256
9021 (base32
9022 "0fs8fhmk9j2nv2j87mpkmm0clz34f8kybnzn6pzqpcbwk0i2pcwg"))))
9023 (properties `((upstream-name . "labelled")))
9024 (build-system r-build-system)
9025 (propagated-inputs
9026 `(("r-dplyr" ,r-dplyr)
9027 ("r-haven" ,r-haven)
9028 ("r-lifecycle" ,r-lifecycle)
9029 ("r-rlang" ,r-rlang)
9030 ("r-stringr" ,r-stringr)
9031 ("r-tidyr" ,r-tidyr)
9032 ("r-vctrs" ,r-vctrs)))
9033 (native-inputs
9034 `(("r-knitr" ,r-knitr)))
9035 (home-page "http://larmarange.github.io/labelled/")
9036 (synopsis "Manipulating labelled data")
9037 (description
9038 "This package provides useful functions to deal with the
9039 @code{haven_labelled} and @code{haven_labelled_spss} classes introduced by the
9040 haven package. ")
9041 (license license:gpl3)))
9042
9043 (define-public r-ggformula
9044 (package
9045 (name "r-ggformula")
9046 (version "0.10.1")
9047 (source
9048 (origin
9049 (method url-fetch)
9050 (uri (cran-uri "ggformula" version))
9051 (sha256
9052 (base32 "1ph5jd8svk8hmshi894vmmpq3zwgdmf4yn3gmdlkad68z8jynhsp"))))
9053 (build-system r-build-system)
9054 (propagated-inputs
9055 `(("r-ggforce" ,r-ggforce)
9056 ("r-ggplot2" ,r-ggplot2)
9057 ("r-ggridges" ,r-ggridges)
9058 ("r-ggstance" ,r-ggstance)
9059 ("r-labelled" ,r-labelled)
9060 ("r-magrittr" ,r-magrittr)
9061 ("r-mosaiccore" ,r-mosaiccore)
9062 ("r-rlang" ,r-rlang)
9063 ("r-scales" ,r-scales)
9064 ("r-stringr" ,r-stringr)
9065 ("r-tibble" ,r-tibble)))
9066 (native-inputs
9067 `(("r-knitr" ,r-knitr)))
9068 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
9069 (synopsis "Formula interface for the @code{r-ggplot2}")
9070 (description
9071 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
9072 gf_density(), and so on, bring the formula interface to ggplot(). This captures
9073 and extends the excellent simplicity of the lattice-graphics formula interface,
9074 while providing the intuitive capabilities of @code{r-ggplot2}.")
9075 (license license:expat)))
9076
9077 (define-public r-mosaicdata
9078 (package
9079 (name "r-mosaicdata")
9080 (version "0.20.2")
9081 (source
9082 (origin
9083 (method url-fetch)
9084 (uri (cran-uri "mosaicData" version))
9085 (sha256
9086 (base32 "0h3f5fgzkzjfgf3ml0qa5j52921y6wy6jgggxmhs31bs8fd4srg4"))))
9087 (properties `((upstream-name . "mosaicData")))
9088 (build-system r-build-system)
9089 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
9090 (synopsis "Data sets for project Mosaic")
9091 (description
9092 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
9093 used to teach mathematics, statistics, computation and modeling.")
9094 (license license:gpl2+)))
9095
9096 (define-public r-raster
9097 (package
9098 (name "r-raster")
9099 (version "3.4-5")
9100 (source
9101 (origin
9102 (method url-fetch)
9103 (uri (cran-uri "raster" version))
9104 (sha256
9105 (base32
9106 "19g4chd0nyhnz6hc2j0v9ahjcgz64vvja4y3mrj1pfis1dwhsqn6"))))
9107 (build-system r-build-system)
9108 (propagated-inputs
9109 `(("r-rcpp" ,r-rcpp)
9110 ("r-sp" ,r-sp)))
9111 (home-page "https://www.rspatial.org/")
9112 (synopsis "Geographic data analysis and modeling")
9113 (description
9114 "The package implements basic and high-level functions for reading,
9115 writing, manipulating, analyzing and modeling of gridded spatial data.
9116 Processing of very large files is supported.")
9117 (license license:gpl3+)))
9118
9119 (define-public r-mosaic
9120 (package
9121 (name "r-mosaic")
9122 (version "1.4.0")
9123 (source
9124 (origin
9125 (method url-fetch)
9126 (uri (cran-uri "mosaic" version))
9127 (sha256
9128 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
9129 (build-system r-build-system)
9130 (propagated-inputs
9131 `(("r-broom" ,r-broom)
9132 ("r-dplyr" ,r-dplyr)
9133 ("r-ggdendro" ,r-ggdendro)
9134 ("r-ggformula" ,r-ggformula)
9135 ("r-ggplot2" ,r-ggplot2)
9136 ("r-ggrepel" ,r-ggrepel)
9137 ("r-glue" ,r-glue)
9138 ("r-gridextra" ,r-gridextra)
9139 ("r-lattice" ,r-lattice)
9140 ("r-latticeextra" ,r-latticeextra)
9141 ("r-lazyeval" ,r-lazyeval)
9142 ("r-mass" ,r-mass)
9143 ("r-matrix" ,r-matrix)
9144 ("r-mosaiccore" ,r-mosaiccore)
9145 ("r-mosaicdata" ,r-mosaicdata)
9146 ("r-readr" ,r-readr)
9147 ("r-tidyr" ,r-tidyr)))
9148 (native-inputs
9149 `(("r-knitr" ,r-knitr)))
9150 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
9151 (synopsis "Mathematics, statistics, and computation teaching utilities")
9152 (description
9153 "This package contain data sets and utilities from
9154 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
9155 statistics, computation and modeling. Project MOSAIC is a community of
9156 educators working to tie together aspects of quantitative work that students
9157 in science, technology, engineering and mathematics will need in their
9158 professional lives, but which are usually taught in isolation, if at all.")
9159 (license license:gpl2+)))
9160
9161 (define-public r-abd
9162 (package
9163 (name "r-abd")
9164 (version "0.2-8")
9165 (source
9166 (origin
9167 (method url-fetch)
9168 (uri (cran-uri "abd" version))
9169 (sha256
9170 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
9171 (build-system r-build-system)
9172 (propagated-inputs
9173 `(("r-lattice" ,r-lattice)
9174 ("r-mosaic" ,r-mosaic)
9175 ("r-nlme" ,r-nlme)))
9176 (home-page "https://cran.r-project.org/web/packages/abd/")
9177 (synopsis "Analysis of biological data")
9178 (description
9179 "The @code{r-abd} package contains data sets and sample code for the Analysis of
9180 biological data by Michael Whitlock and Dolph Schluter.")
9181 (license license:gpl2)))
9182
9183 (define-public r-svgui
9184 (package
9185 (name "r-svgui")
9186 (version "1.0.0")
9187 (source
9188 (origin
9189 (method url-fetch)
9190 (uri (cran-uri "svGUI" version))
9191 (sha256
9192 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
9193 (properties `((upstream-name . "svGUI")))
9194 (build-system r-build-system)
9195 (home-page "https://github.com/SciViews/svGUI/")
9196 (synopsis "Functions for managing GUI clients in R")
9197 (description
9198 "The SciViews @code{svGUI} package eases the management of Graphical User
9199 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
9200 centralizes info about GUI elements currently used, and it dispatches GUI
9201 calls to the particular toolkits in use in function of the context.")
9202 (license license:gpl2)))
9203
9204 (define-public r-svdialogs
9205 (package
9206 (name "r-svdialogs")
9207 (version "1.0.0")
9208 (source
9209 (origin
9210 (method url-fetch)
9211 (uri (cran-uri "svDialogs" version))
9212 (sha256
9213 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
9214 (properties `((upstream-name . "svDialogs")))
9215 (build-system r-build-system)
9216 (inputs
9217 `(("yad" ,yad)
9218 ("zenity" ,zenity)))
9219 (propagated-inputs
9220 `(("r-rstudioapi" ,r-rstudioapi)
9221 ("r-svgui" ,r-svgui)))
9222 (home-page "https://github.com/SciViews/svDialogs/")
9223 (synopsis "Portable dialog boxes")
9224 (description
9225 "This package helps to construct standard dialog boxes for your GUI, including
9226 message boxes, input boxes, list, file or directory selection, and others. In
9227 case R cannot display GUI dialog boxes, a simpler command line version of these
9228 interactive elements is also provided as a fallback solution.")
9229 (license license:gpl2)))
9230
9231 (define-public r-abe
9232 (package
9233 (name "r-abe")
9234 (version "3.0.1")
9235 (source
9236 (origin
9237 (method url-fetch)
9238 (uri (cran-uri "abe" version))
9239 (sha256
9240 (base32
9241 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
9242 (build-system r-build-system)
9243 (home-page "https://cran.r-project.org/web/packages/abe/")
9244 (synopsis "Augmented backward elimination")
9245 (description
9246 "This package performs augmented backward elimination and checks the
9247 stability of the obtained model. Augmented backward elimination combines
9248 significance or information based criteria with the change in estimate to
9249 either select the optimal model for prediction purposes or to serve as a tool
9250 to obtain a practically sound, highly interpretable model.")
9251 (license license:gpl2+)))
9252
9253 (define-public r-abf2
9254 (package
9255 (name "r-abf2")
9256 (version "0.7-1")
9257 (source
9258 (origin
9259 (method url-fetch)
9260 (uri (cran-uri "abf2" version))
9261 (sha256
9262 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
9263 (build-system r-build-system)
9264 (home-page "https://cran.r-project.org/web/packages/abf2/")
9265 (synopsis "Load gap-free axon @code{r-abf2} files")
9266 (description
9267 "This package loads electrophysiology data from ABF2 files, as created by
9268 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
9269 mode are currently supported.")
9270 (license license:artistic2.0)))
9271
9272 (define-public r-abhgenotyper
9273 (package
9274 (name "r-abhgenotyper")
9275 (version "1.0.1")
9276 (source
9277 (origin
9278 (method url-fetch)
9279 (uri (cran-uri "ABHgenotypeR" version))
9280 (sha256
9281 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
9282 (properties `((upstream-name . "ABHgenotypeR")))
9283 (build-system r-build-system)
9284 (propagated-inputs
9285 `(("r-ggplot2" ,r-ggplot2)
9286 ("r-reshape2" ,r-reshape2)))
9287 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
9288 (synopsis "Visualize and manipulate ABH genotypes")
9289 (description
9290 "The @code{r-abhgenotyper} package provides simple imputation,
9291 error-correction and plotting capacities for genotype data. The package is
9292 supposed to serve as an intermediate but independent analysis tool between the
9293 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
9294 not found in either TASSEL or @code{r-qtl} in addition to visualization of
9295 genotypes as \"graphical genotypes\".")
9296 (license license:gpl3)))
9297
9298 (define-public r-furrr
9299 (package
9300 (name "r-furrr")
9301 (version "0.2.2")
9302 (source
9303 (origin
9304 (method url-fetch)
9305 (uri (cran-uri "furrr" version))
9306 (sha256
9307 (base32
9308 "0kfd4hw1yn2mfxzjgiz4r6yi2vsp1j0wy5hdhzd6wha7vi9h7hg5"))))
9309 (build-system r-build-system)
9310 (propagated-inputs
9311 `(("r-ellipsis" ,r-ellipsis)
9312 ("r-future" ,r-future)
9313 ("r-globals" ,r-globals)
9314 ("r-lifecycle" ,r-lifecycle)
9315 ("r-purrr" ,r-purrr)
9316 ("r-rlang" ,r-rlang)
9317 ("r-vctrs" ,r-vctrs)))
9318 (home-page "https://github.com/DavisVaughan/furrr")
9319 (synopsis "Apply mapping functions in parallel using futures")
9320 (description
9321 "This package provides implementations of the family of @code{map()}
9322 functions from the @code{purrr} package that can be resolved using any
9323 @code{future}-supported backend, e.g. parallel on the local machine or
9324 distributed on a compute cluster.")
9325 (license license:lgpl2.1+)))
9326
9327 (define-public r-abjutils
9328 (package
9329 (name "r-abjutils")
9330 (version "0.3.1")
9331 (source
9332 (origin
9333 (method url-fetch)
9334 (uri (cran-uri "abjutils" version))
9335 (sha256
9336 (base32 "18mmlkqsrjfclk8islfjdsp8sbw6dpjj5x45kqilxdiss69gg5zd"))))
9337 (build-system r-build-system)
9338 (propagated-inputs
9339 `(("r-dplyr" ,r-dplyr)
9340 ("r-magrittr" ,r-magrittr)
9341 ("r-purrr" ,r-purrr)
9342 ("r-rlang" ,r-rlang)
9343 ("r-rstudioapi" ,r-rstudioapi)
9344 ("r-stringi" ,r-stringi)
9345 ("r-stringr" ,r-stringr)
9346 ("r-tidyr" ,r-tidyr)))
9347 (home-page "https://github.com/abjur/abjutils/")
9348 (synopsis "Collection of tools for jurimetrical analysis")
9349 (description
9350 "This package implements general purpose tools, such as functions for
9351 sampling and basic manipulation of Brazilian lawsuits identification number.
9352 It also implements functions for text cleaning, such as accentuation
9353 removal.")
9354 (license license:expat)))
9355
9356 (define-public r-abnormality
9357 (package
9358 (name "r-abnormality")
9359 (version "0.1.0")
9360 (source
9361 (origin
9362 (method url-fetch)
9363 (uri (cran-uri "abnormality" version))
9364 (sha256
9365 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
9366 (build-system r-build-system)
9367 (propagated-inputs
9368 `(("r-mass" ,r-mass)
9369 ("r-matrix" ,r-matrix)))
9370 (home-page "https://cran.r-project.org/web/packages/abnormality/")
9371 (synopsis "Measure a subject's abnormality with respect to a reference population")
9372 (description
9373 "This package contains functions to implement the methodology and
9374 considerations laid out by Marks et al. in the article \"Measuring abnormality
9375 in high dimensional spaces: applications in biomechanical gait analysis\".
9376 Using high-dimensional datasets to measure a subject's overall level of
9377 abnormality as compared to a reference population is often needed in outcomes
9378 research.")
9379 (license license:expat)))
9380
9381 (define-public r-abodoutlier
9382 (package
9383 (name "r-abodoutlier")
9384 (version "0.1")
9385 (source
9386 (origin
9387 (method url-fetch)
9388 (uri (cran-uri "abodOutlier" version))
9389 (sha256
9390 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
9391 (properties `((upstream-name . "abodOutlier")))
9392 (build-system r-build-system)
9393 (propagated-inputs
9394 `(("r-cluster" ,r-cluster)))
9395 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
9396 (synopsis "Angle-based outlier detection")
9397 (description
9398 "This package performs angle-based outlier detection on a given data
9399 frame. It offers three methods to process data:
9400 @enumerate
9401 @item full but slow implementation using all the data that has cubic
9402 complexity;
9403 @item a fully randomized method;
9404 @item a method using k-nearest neighbours.
9405 @end enumerate
9406 These algorithms are well suited for high dimensional data outlier
9407 detection.")
9408 (license license:expat)))
9409
9410 (define-public r-abps
9411 (package
9412 (name "r-abps")
9413 (version "0.3")
9414 (source
9415 (origin
9416 (method url-fetch)
9417 (uri (cran-uri "ABPS" version))
9418 (sha256
9419 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
9420 (properties `((upstream-name . "ABPS")))
9421 (build-system r-build-system)
9422 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
9423 (home-page "https://cran.r-project.org/web/packages/ABPS/")
9424 (synopsis "Abnormal blood profile score to detect blood doping")
9425 (description
9426 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
9427 The ABPS is a part of the Athlete biological passport program of the World
9428 anti-doping agency, which combines several blood parameters into a single
9429 score in order to detect blood doping. The package also contains functions to
9430 calculate other scores used in anti-doping programs, such as the ratio of
9431 hemoglobin to reticulocytes (OFF-score), as well as example data.")
9432 (license license:gpl2+)))
9433
9434 (define-public r-parmigene
9435 (package
9436 (name "r-parmigene")
9437 (version "1.1.0")
9438 (source
9439 (origin
9440 (method url-fetch)
9441 (uri (cran-uri "parmigene" version))
9442 (sha256
9443 (base32
9444 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
9445 (build-system r-build-system)
9446 (home-page "https://cran.r-project.org/web/packages/parmigene/")
9447 (synopsis "Mutual information estimation for gene network reconstruction")
9448 (description
9449 "This package provides a parallel estimation of the mutual information
9450 based on entropy estimates from k-nearest neighbors distances and algorithms
9451 for the reconstruction of gene regulatory networks.")
9452 (license license:agpl3+)))
9453
9454 (define-public r-pscl
9455 (package
9456 (name "r-pscl")
9457 (version "1.5.5")
9458 (source
9459 (origin
9460 (method url-fetch)
9461 (uri (cran-uri "pscl" version))
9462 (sha256
9463 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
9464 (build-system r-build-system)
9465 (propagated-inputs
9466 `(("r-mass" ,r-mass)))
9467 (home-page "https://github.com/atahk/pscl/")
9468 (synopsis "Political science computational laboratory")
9469 (description
9470 "The @code{pscl} is an R package providing classes and methods for:
9471 @enumerate
9472 @item Bayesian analysis of roll call data (item-response models);
9473 @item elementary Bayesian statistics;
9474 @item maximum likelihood estimation of zero-inflated and hurdle models for count
9475 data;
9476 @item utility functions.
9477 @end enumerate")
9478 (license license:gpl2)))
9479
9480 (define-public r-accelmissing
9481 (package
9482 (name "r-accelmissing")
9483 (version "1.4")
9484 (source
9485 (origin
9486 (method url-fetch)
9487 (uri (cran-uri "accelmissing" version))
9488 (sha256
9489 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
9490 (build-system r-build-system)
9491 (propagated-inputs
9492 `(("r-mice" ,r-mice)
9493 ("r-pscl" ,r-pscl)))
9494 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
9495 (synopsis "Missing value imputation for accelerometer data")
9496 (description
9497 "This package provides a statistical method to impute the missing values in
9498 accelerometer data. The methodology includes both parametric and
9499 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
9500 model. It also provides multiple functions to preprocess the accelerometer data
9501 previous to the missing data imputation. These include detecting the wearing
9502 and the non-wearing time, selecting valid days and subjects, and creating plots.")
9503 (license license:gpl2+)))
9504
9505 (define-public r-mhsmm
9506 (package
9507 (name "r-mhsmm")
9508 (version "0.4.16")
9509 (source
9510 (origin
9511 (method url-fetch)
9512 (uri (cran-uri "mhsmm" version))
9513 (sha256
9514 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
9515 (build-system r-build-system)
9516 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
9517 (home-page "https://github.com/jaredo/mhsmm/")
9518 (synopsis "Inference for hidden Markov and semi-Markov models")
9519 (description
9520 "The @code{r-mhsmm} package implements estimation and prediction methods for
9521 hidden Markov and semi-Markov models for multiple observation sequences. Such
9522 techniques are of interest when observed data is thought to be dependent on some
9523 unobserved (or hidden) state. Also, this package is suitable for equidistant
9524 time series data, with multivariate and/or missing data. Allows user defined
9525 emission distributions.")
9526 (license license:gpl2+)))
9527
9528 (define-public r-nleqslv
9529 (package
9530 (name "r-nleqslv")
9531 (version "3.3.2")
9532 (source
9533 (origin
9534 (method url-fetch)
9535 (uri (cran-uri "nleqslv" version))
9536 (sha256
9537 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
9538 (build-system r-build-system)
9539 (native-inputs `(("gfortran" ,gfortran)))
9540 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
9541 (synopsis "Solve systems of nonlinear equations")
9542 (description
9543 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
9544 Broyden or a Newton method with a choice of global strategies such as line
9545 search and trust region. There are options for using a numerical or user
9546 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
9547 singular or ill-conditioned Jacobian.")
9548 (license license:gpl2+)))
9549
9550 (define-public r-physicalactivity
9551 (package
9552 (name "r-physicalactivity")
9553 (version "0.2-4")
9554 (source
9555 (origin
9556 (method url-fetch)
9557 (uri (cran-uri "PhysicalActivity" version))
9558 (sha256
9559 (base32 "0b27prkv3x6v2afz0y53ccs9scibpc7nj54n0hpd9fgn1wyg4c40"))))
9560 (properties
9561 `((upstream-name . "PhysicalActivity")))
9562 (build-system r-build-system)
9563 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
9564 (synopsis "Procesing accelerometer data for physical activity measurement")
9565 (description
9566 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
9567 for classification of monitor wear and nonwear time intervals in accelerometer
9568 data collected to assess physical activity. The package also contains functions
9569 for making plots of accelerometer data and obtaining the summary of various
9570 information including daily monitor wear time and the mean monitor wear time
9571 during valid days. The revised package version 0.2-1 improved the functions
9572 regarding speed, robustness and add better support for time zones and daylight
9573 saving. In addition, several functions were added:
9574 @enumerate
9575 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
9576 @item the @code{markPAI} can categorize physical activity intensity level based
9577 on user-defined cut-points of accelerometer counts.
9578 @end enumerate
9579 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
9580 @code{queryActigraph} functions.")
9581 (license license:gpl3+)))
9582
9583 (define-public r-acc
9584 (package
9585 (name "r-acc")
9586 (version "1.3.3")
9587 (source
9588 (origin
9589 (method url-fetch)
9590 (uri (cran-uri "acc" version))
9591 (sha256
9592 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
9593 (build-system r-build-system)
9594 (propagated-inputs
9595 `(("r-circlize" ,r-circlize)
9596 ("r-dbi" ,r-dbi)
9597 ("r-ggplot2" ,r-ggplot2)
9598 ("r-iterators" ,r-iterators)
9599 ("r-mhsmm" ,r-mhsmm)
9600 ("r-nleqslv" ,r-nleqslv)
9601 ("r-physicalactivity" ,r-physicalactivity)
9602 ("r-plyr" ,r-plyr)
9603 ("r-r-utils" ,r-r-utils)
9604 ("r-rcpp" ,r-rcpp)
9605 ("r-rcpparmadillo" ,r-rcpparmadillo)
9606 ("r-rsqlite" ,r-rsqlite)
9607 ("r-zoo" ,r-zoo)))
9608 (home-page "https://cran.r-project.org/web/packages/acc/")
9609 (synopsis "Exploring accelerometer data")
9610 (description
9611 "This package processes accelerometer data from uni-axial and tri-axial devices
9612 and generates data summaries. Also, includes functions to plot, analyze, and
9613 simulate accelerometer data.")
9614 (license license:gpl2+)))
9615
9616 (define-public r-rbenchmark
9617 (package
9618 (name "r-rbenchmark")
9619 (version "1.0.0")
9620 (source
9621 (origin
9622 (method url-fetch)
9623 (uri (cran-uri "rbenchmark" version))
9624 (sha256
9625 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
9626 (build-system r-build-system)
9627 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
9628 (synopsis "Benchmarking routine for R")
9629 (description
9630 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
9631 and is intended to facilitate benchmarking of arbitrary R code. The library
9632 consists of just one function, benchmark, which is a simple wrapper around
9633 system.time. Given a specification of the benchmarking process (counts of
9634 replications, evaluation environment) and an arbitrary number of expressions,
9635 benchmark evaluates each of the expressions in the specified environment,
9636 replicating the evaluation as many times as specified, and returning the results
9637 conveniently wrapped into a data frame.")
9638 (license license:gpl2+)))
9639
9640 (define-public r-mitools
9641 (package
9642 (name "r-mitools")
9643 (version "2.4")
9644 (source
9645 (origin
9646 (method url-fetch)
9647 (uri (cran-uri "mitools" version))
9648 (sha256
9649 (base32
9650 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
9651 (build-system r-build-system)
9652 (propagated-inputs `(("r-dbi" ,r-dbi)))
9653 (home-page "https://cran.r-project.org/web/packages/mitools/")
9654 (synopsis "Tools for multiple imputation of missing data")
9655 (description
9656 "This package provides tools to perform analyses and combine results from
9657 multiple-imputation datasets.")
9658 (license license:gpl2)))
9659
9660 (define-public r-mixsqp
9661 (package
9662 (name "r-mixsqp")
9663 (version "0.3-43")
9664 (source (origin
9665 (method url-fetch)
9666 (uri (cran-uri "mixsqp" version))
9667 (sha256
9668 (base32
9669 "1qics04w0swyp216d6g8dmsph8q2kpadpacp66h2qih3521js12q"))))
9670 (properties `((upstream-name . "mixsqp")))
9671 (build-system r-build-system)
9672 (propagated-inputs
9673 `(("r-irlba" ,r-irlba)
9674 ("r-rcpp" ,r-rcpp)
9675 ("r-rcpparmadillo" ,r-rcpparmadillo)))
9676 (native-inputs
9677 `(("r-knitr" ,r-knitr)))
9678 (home-page "https://github.com/stephenslab/mixsqp")
9679 (synopsis
9680 "Sequential quadratic programming for maximum-likelihood estimation")
9681 (description
9682 "This package provides an optimization method based on sequential
9683 quadratic programming for maximum likelihood estimation of the mixture
9684 proportions in a finite mixture model where the component densities are
9685 known. The algorithm is expected to obtain solutions that are at least
9686 as accurate as the state-of-the-art MOSEK interior-point solver, and they
9687 are expected to arrive at solutions more quickly when the number of
9688 samples is large and the number of mixture components is not too large.")
9689 (license license:expat)))
9690
9691 (define-public r-magick
9692 (package
9693 (name "r-magick")
9694 (version "2.7.0")
9695 (source
9696 (origin
9697 (method url-fetch)
9698 (uri (cran-uri "magick" version))
9699 (sha256
9700 (base32
9701 "0m1kij6pp7dmsrhl80h60iyccjqmbbb3zdnqdc9sgy1kj1x3pscp"))))
9702 (build-system r-build-system)
9703 (inputs
9704 `(("imagemagick" ,imagemagick)
9705 ("zlib" ,zlib)))
9706 (propagated-inputs
9707 `(("r-curl" ,r-curl)
9708 ("r-magrittr" ,r-magrittr)
9709 ("r-rcpp" ,r-rcpp)))
9710 (native-inputs
9711 `(("pkg-config" ,pkg-config)
9712 ("r-knitr" ,r-knitr)))
9713 (home-page "https://github.com/ropensci/magick")
9714 (synopsis "Advanced graphics and image-processing in R")
9715 (description
9716 "This package provides bindings to ImageMagick, a comprehensive image
9717 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
9718 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
9719 operations are vectorized via the Magick++ STL meaning they operate either on
9720 a single frame or a series of frames for working with layers, collages, or
9721 animation. In RStudio, images are automatically previewed when printed to the
9722 console, resulting in an interactive editing environment.")
9723 (license license:expat)))
9724
9725 (define-public r-survey
9726 (package
9727 (name "r-survey")
9728 (version "4.0")
9729 (source
9730 (origin
9731 (method url-fetch)
9732 (uri (cran-uri "survey" version))
9733 (sha256
9734 (base32
9735 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
9736 (build-system r-build-system)
9737 (propagated-inputs
9738 `(("r-lattice" ,r-lattice)
9739 ("r-matrix" ,r-matrix)
9740 ("r-minqa" ,r-minqa)
9741 ("r-mitools" ,r-mitools)
9742 ("r-numderiv" ,r-numderiv)
9743 ("r-survival" ,r-survival)))
9744 (home-page "http://r-survey.r-forge.r-project.org/survey/")
9745 (synopsis "Analysis of complex survey samples")
9746 (description
9747 "This package provides tools for the analysis of complex survey samples.
9748 The provided features include: summary statistics, two-sample tests, rank
9749 tests, generalised linear models, cumulative link models, Cox models,
9750 loglinear models, and general maximum pseudolikelihood estimation for
9751 multistage stratified, cluster-sampled, unequally weighted survey samples;
9752 variances by Taylor series linearisation or replicate weights;
9753 post-stratification, calibration, and raking; two-phase subsampling designs;
9754 graphics; PPS sampling without replacement; principal components, and factor
9755 analysis.")
9756 ;; Either version of the GPL.
9757 (license (list license:gpl2 license:gpl3))))
9758
9759 (define-public r-gee
9760 (package
9761 (name "r-gee")
9762 (version "4.13-20")
9763 (source
9764 (origin
9765 (method url-fetch)
9766 (uri (cran-uri "gee" version))
9767 (sha256
9768 (base32
9769 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
9770 (properties `((upstream-name . "gee")))
9771 (build-system r-build-system)
9772 (native-inputs
9773 `(("gfortran" ,gfortran)))
9774 (home-page "https://cran.r-project.org/web/packages/gee/")
9775 (synopsis "Generalized estimation equation solver")
9776 (description
9777 "This package provides a solver for generalized estimation equations.")
9778 (license license:gpl2)))
9779
9780 (define-public r-tab
9781 (package
9782 (name "r-tab")
9783 (version "4.1.1")
9784 (source
9785 (origin
9786 (method url-fetch)
9787 (uri (cran-uri "tab" version))
9788 (sha256
9789 (base32
9790 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
9791 (properties `((upstream-name . "tab")))
9792 (build-system r-build-system)
9793 (propagated-inputs
9794 `(("r-dplyr" ,r-dplyr)
9795 ("r-gee" ,r-gee)
9796 ("r-knitr" ,r-knitr)
9797 ("r-mass" ,r-mass)
9798 ("r-survey" ,r-survey)
9799 ("r-survival" ,r-survival)
9800 ("r-xtable" ,r-xtable)))
9801 (home-page "https://cran.r-project.org/web/packages/tab/")
9802 (synopsis "Create summary tables for statistical reports")
9803 (description
9804 "This package contains functions for creating various types of summary
9805 tables, e.g. comparing characteristics across levels of a categorical variable
9806 and summarizing fitted generalized linear models, generalized estimating
9807 equations, and Cox proportional hazards models. Functions are available to
9808 handle data from simple random samples as well as complex surveys.")
9809 (license license:gpl3+)))
9810
9811 (define-public r-dvmisc
9812 (package
9813 (name "r-dvmisc")
9814 (version "1.1.4")
9815 (source
9816 (origin
9817 (method url-fetch)
9818 (uri (cran-uri "dvmisc" version))
9819 (sha256
9820 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
9821 (build-system r-build-system)
9822 (propagated-inputs
9823 `(("r-cubature" ,r-cubature)
9824 ("r-data-table" ,r-data-table)
9825 ("r-dplyr" ,r-dplyr)
9826 ("r-ggplot2" ,r-ggplot2)
9827 ("r-mass" ,r-mass)
9828 ("r-mvtnorm" ,r-mvtnorm)
9829 ("r-pracma" ,r-pracma)
9830 ("r-rbenchmark" ,r-rbenchmark)
9831 ("r-rcpp" ,r-rcpp)
9832 ("r-survey" ,r-survey)
9833 ("r-tab" ,r-tab)))
9834 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
9835 (synopsis "Faster computation of common statistics and miscellaneous functions")
9836 (description
9837 "This package implements faster versions of base R functions (e.g. mean, standard
9838 deviation, covariance, weighted mean), mostly written in C++, along with
9839 miscellaneous functions for various purposes (e.g. create the histogram with
9840 fitted probability density function or probability mass function curve, create
9841 the body mass index groups, assess the linearity assumption in logistic
9842 regression).")
9843 (license license:gpl2)))
9844
9845 (define-public r-accelerometry
9846 (package
9847 (name "r-accelerometry")
9848 (version "3.1.2")
9849 (source
9850 (origin
9851 (method url-fetch)
9852 (uri (cran-uri "accelerometry" version))
9853 (sha256
9854 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
9855 (build-system r-build-system)
9856 (propagated-inputs
9857 `(("r-dvmisc" ,r-dvmisc)
9858 ("r-rcpp" ,r-rcpp)))
9859 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
9860 (synopsis "Functions for processing accelerometer data")
9861 (description
9862 "This package provides a collection of functions that perform operations on
9863 time-series accelerometer data, such as identify the non-wear time, flag minutes
9864 that are part of an activity bout, and find the maximum 10-minute average count
9865 value. The functions are generally very flexible, allowing for a variety of
9866 algorithms to be implemented.")
9867 (license license:gpl3)))
9868
9869 (define-public r-absim
9870 (package
9871 (name "r-absim")
9872 (version "0.2.6")
9873 (source
9874 (origin
9875 (method url-fetch)
9876 (uri (cran-uri "AbSim" version))
9877 (sha256
9878 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
9879 (properties `((upstream-name . "AbSim")))
9880 (build-system r-build-system)
9881 (propagated-inputs
9882 `(("r-ape" ,r-ape)
9883 ("r-powerlaw" ,r-powerlaw)))
9884 (home-page "https://cran.r-project.org/web/packages/AbSim/")
9885 (synopsis "Time resolved simulations of antibody repertoires")
9886 (description
9887 "This package provides simulation methods for the evolution of antibody repertoires.
9888 The heavy and light chain variable region of both human and C57BL/6 mice can
9889 be simulated in a time-dependent fashion. Both single lineages using one set of
9890 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
9891 with an initial V-D-J recombination event, starting the first phylogenetic tree.
9892 Upon completion, the main loop of the algorithm begins, with each iteration
9893 representing one simulated time step. Various mutation events are possible at
9894 each time step, contributing to a diverse final repertoire.")
9895 (license license:gpl2)))
9896
9897 (define-public r-quic
9898 (package
9899 (name "r-quic")
9900 (version "1.1")
9901 (source
9902 (origin
9903 (method url-fetch)
9904 (uri (cran-uri "QUIC" version))
9905 (sha256
9906 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
9907 (properties `((upstream-name . "QUIC")))
9908 (build-system r-build-system)
9909 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
9910 (synopsis "Regularized sparse inverse covariance matrix estimation")
9911 (description
9912 "This package implements the regularized Gaussian maximum likelihood
9913 estimation of the inverse of a covariance matrix. It uses Newton's method and
9914 coordinate descent to solve the regularized inverse covariance matrix
9915 estimation problem.")
9916 ;; The project home page states that the release is under GPLv3 or later.
9917 ;; The CRAN page only says GPL-3.
9918 (license license:gpl3+)))
9919
9920 (define-public r-abundant
9921 (package
9922 (name "r-abundant")
9923 (version "1.1")
9924 (source
9925 (origin
9926 (method url-fetch)
9927 (uri (cran-uri "abundant" version))
9928 (sha256
9929 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
9930 (build-system r-build-system)
9931 (propagated-inputs
9932 `(("r-quic" ,r-quic)))
9933 (home-page "https://cran.r-project.org/web/packages/abundant/")
9934 (synopsis "Abundant regression and high-dimensional principal fitted components")
9935 (description
9936 "This package provides tools to fit and predict with the high-dimensional
9937 principal fitted components model. This model is described by Cook, Forzani,
9938 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
9939 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
9940 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
9941 (license license:gpl2+)))
9942
9943 (define-public r-ac3net
9944 (package
9945 (name "r-ac3net")
9946 (version "1.2.2")
9947 (source
9948 (origin
9949 (method url-fetch)
9950 (uri (cran-uri "Ac3net" version))
9951 (sha256
9952 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
9953 (properties `((upstream-name . "Ac3net")))
9954 (build-system r-build-system)
9955 (propagated-inputs
9956 `(("r-data-table" ,r-data-table)))
9957 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
9958 (synopsis "Inferring directional conservative causal core gene networks")
9959 (description "This package infers directional Conservative causal core
9960 (gene) networks (C3NET). This is a version of the algorithm C3NET with
9961 directional network.")
9962 (license license:gpl3+)))
9963
9964 (define-public r-aca
9965 (package
9966 (name "r-aca")
9967 (version "1.1")
9968 (source
9969 (origin
9970 (method url-fetch)
9971 (uri (cran-uri "ACA" version))
9972 (sha256
9973 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
9974 (properties `((upstream-name . "ACA")))
9975 (build-system r-build-system)
9976 (home-page "https://cran.r-project.org/web/packages/ACA/")
9977 (synopsis "Abrupt change-point or aberration detection in point series")
9978 (description
9979 "This package offers an interactive function for the detection of breakpoints in
9980 series.")
9981 ;; Any version of the GPL
9982 (license (list license:gpl2+ license:gpl3+))))
9983
9984 (define-public r-acceptancesampling
9985 (package
9986 (name "r-acceptancesampling")
9987 (version "1.0-6")
9988 (source
9989 (origin
9990 (method url-fetch)
9991 (uri (cran-uri "AcceptanceSampling" version))
9992 (sha256
9993 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
9994 (properties
9995 `((upstream-name . "AcceptanceSampling")))
9996 (build-system r-build-system)
9997 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
9998 (synopsis "Creation and evaluation of acceptance sampling plans")
9999 (description
10000 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
10001 acceptance sampling plans. Acceptance sampling is a methodology commonly used
10002 in quality control and improvement. International standards of acceptance
10003 sampling provide sampling plans for specific circumstances. The aim of this
10004 package is to provide an easy-to-use interface to visualize single, double or
10005 multiple sampling plans. In addition, methods have been provided to enable the
10006 user to assess sampling plans against pre-specified levels of performance, as
10007 measured by the probability of acceptance for a given level of quality in the
10008 lot.")
10009 (license license:gpl3+)))
10010
10011 (define-public r-acclma
10012 (package
10013 (name "r-acclma")
10014 (version "1.0")
10015 (source
10016 (origin
10017 (method url-fetch)
10018 (uri (cran-uri "ACCLMA" version))
10019 (sha256
10020 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
10021 (properties `((upstream-name . "ACCLMA")))
10022 (build-system r-build-system)
10023 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
10024 (synopsis "ACC & LMA graph plotting")
10025 (description
10026 "This package contains a function that imports data from a @acronym{CSV,
10027 Comma-Separated Values} file, or uses manually entered data from the format (x,
10028 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
10029 Curve} vs @acronym{LOI, Line of Independence} graph and
10030 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
10031 function is @code{plotLMA} (source file, header) that takes a data set and plots the
10032 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
10033 string) was passed, a manual data entry window is opened. The header parameter
10034 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
10035 a header row or not. The dataset should contain only one independent variable
10036 (x) and one dependent variable (y) and can contain a weight for each
10037 observation.")
10038 (license license:gpl2)))
10039
10040 (define-public r-aspi
10041 (package
10042 (name "r-aspi")
10043 (version "0.2.0")
10044 (source
10045 (origin
10046 (method url-fetch)
10047 (uri (cran-uri "aspi" version))
10048 (sha256
10049 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
10050 (build-system r-build-system)
10051 (home-page
10052 "https://cran.r-project.org/web/packages/aspi/")
10053 (synopsis
10054 "Analysis of symmetry of parasitic infections")
10055 (description
10056 "This package provides tools for the analysis and visualization of bilateral
10057 asymmetry in parasitic infections.")
10058 (license license:gpl3+)))
10059
10060 (define-public r-sandwich
10061 (package
10062 (name "r-sandwich")
10063 (version "3.0-0")
10064 (source
10065 (origin
10066 (method url-fetch)
10067 (uri (cran-uri "sandwich" version))
10068 (sha256
10069 (base32
10070 "0afm6snak7r11dxyl3qirqdjah6d9pdv4afmxwam1nq9bqxyb3w2"))))
10071 (build-system r-build-system)
10072 (propagated-inputs
10073 `(("r-zoo" ,r-zoo)))
10074 (home-page "https://cran.r-project.org/web/packages/sandwich/")
10075 (synopsis "Robust Covariance Matrix Estimators")
10076 (description
10077 "This package provides model-robust standard error estimators for
10078 cross-sectional, time series, clustered, panel, and longitudinal data.")
10079 ;; Either version of the license.
10080 (license (list license:gpl2 license:gpl3))))
10081
10082 (define-public r-th-data
10083 (package
10084 (name "r-th-data")
10085 (version "1.0-10")
10086 (source
10087 (origin
10088 (method url-fetch)
10089 (uri (cran-uri "TH.data" version))
10090 (sha256
10091 (base32
10092 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
10093 (properties `((upstream-name . "TH.data")))
10094 (build-system r-build-system)
10095 (propagated-inputs
10096 `(("r-mass" ,r-mass)
10097 ("r-survival" ,r-survival)))
10098 (home-page "https://cran.r-project.org/web/packages/TH.data/")
10099 (synopsis "Shared data sets")
10100 (description
10101 "This package contains supporting data sets that are used in other
10102 packages maintained by Torsten Hothorn.")
10103 (license license:gpl3)))
10104
10105 (define-public r-multcomp
10106 (package
10107 (name "r-multcomp")
10108 (version "1.4-16")
10109 (source
10110 (origin
10111 (method url-fetch)
10112 (uri (cran-uri "multcomp" version))
10113 (sha256
10114 (base32
10115 "1s8qmljawalisggniy7va5l5cicsgvs0lp20c33vxlvyiy0dbb1s"))))
10116 (build-system r-build-system)
10117 (propagated-inputs
10118 `(("r-codetools" ,r-codetools)
10119 ("r-mvtnorm" ,r-mvtnorm)
10120 ("r-sandwich" ,r-sandwich)
10121 ("r-survival" ,r-survival)
10122 ("r-th-data" ,r-th-data)))
10123 (home-page "https://cran.r-project.org/web/packages/multcomp/")
10124 (synopsis "Simultaneous inference in general parametric models")
10125 (description
10126 "Simultaneous tests and confidence intervals for general linear
10127 hypotheses in parametric models, including linear, generalized linear, linear
10128 mixed effects, and survival models. The package includes demos reproducing
10129 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
10130 Hothorn, Westfall, 2010, CRC Press).")
10131 (license license:gpl2)))
10132
10133 (define-public r-emmeans
10134 (package
10135 (name "r-emmeans")
10136 (version "1.5.4")
10137 (source
10138 (origin
10139 (method url-fetch)
10140 (uri (cran-uri "emmeans" version))
10141 (sha256
10142 (base32
10143 "1rbh3ls23fazrwpsam5llk3kqdzz2zvsms3i4f1cgn34ky3w8361"))))
10144 (build-system r-build-system)
10145 (propagated-inputs
10146 `(("r-estimability" ,r-estimability)
10147 ("r-mvtnorm" ,r-mvtnorm)
10148 ("r-numderiv" ,r-numderiv)
10149 ("r-plyr" ,r-plyr)
10150 ("r-xtable" ,r-xtable)))
10151 (native-inputs
10152 `(("r-knitr" ,r-knitr)))
10153 (home-page "https://github.com/rvlenth/emmeans")
10154 (synopsis "Estimated marginal means, aka least-squares means")
10155 (description
10156 "This package provides tools to obtain @dfn{estimated marginal
10157 means} (EMMs) for many linear, generalized linear, and mixed models. It can
10158 be used to compute contrasts or linear functions of EMMs, trends, and
10159 comparisons of slopes.")
10160 ;; Either version of the license.
10161 (license (list license:gpl2 license:gpl3))))
10162
10163 (define-public r-pwr
10164 (package
10165 (name "r-pwr")
10166 (version "1.3-0")
10167 (source
10168 (origin
10169 (method url-fetch)
10170 (uri (cran-uri "pwr" version))
10171 (sha256
10172 (base32
10173 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
10174 (build-system r-build-system)
10175 (native-inputs
10176 `(("r-knitr" ,r-knitr)))
10177 (home-page "https://github.com/heliosdrm/pwr")
10178 (synopsis "Basic functions for power analysis")
10179 (description
10180 "This package provides power analysis functions along the lines of
10181 Cohen (1988).")
10182 (license license:gpl3+)))
10183
10184 (define-public r-libcoin
10185 (package
10186 (name "r-libcoin")
10187 (version "1.0-8")
10188 (source
10189 (origin
10190 (method url-fetch)
10191 (uri (cran-uri "libcoin" version))
10192 (sha256
10193 (base32 "0izgnr4zdrbz3a05b0s28xfly4izp2zslgh282l9ads4skrmj3hl"))))
10194 (build-system r-build-system)
10195 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
10196 (home-page "https://cran.r-project.org/web/packages/libcoin")
10197 (synopsis "Linear test statistics for permutation inference")
10198 (description
10199 "This package provides basic infrastructure for linear test statistics
10200 and permutation inference in the framework of Strasser and Weber (1999).")
10201 (license license:gpl2)))
10202
10203 (define-public r-coin
10204 (package
10205 (name "r-coin")
10206 (version "1.4-1")
10207 (source
10208 (origin
10209 (method url-fetch)
10210 (uri (cran-uri "coin" version))
10211 (sha256
10212 (base32
10213 "15xvhnbyg34aacn6jfz4bsa1f7wq2ci0hslj8mgymql90k50x1qi"))))
10214 (build-system r-build-system)
10215 (propagated-inputs
10216 `(("r-libcoin" ,r-libcoin)
10217 ("r-matrixstats" ,r-matrixstats)
10218 ("r-modeltools" ,r-modeltools)
10219 ("r-multcomp" ,r-multcomp)
10220 ("r-mvtnorm" ,r-mvtnorm)
10221 ("r-survival" ,r-survival)))
10222 (home-page "http://coin.r-forge.r-project.org")
10223 (synopsis "Conditional inference procedures in a permutation test framework")
10224 (description
10225 "This package provides conditional inference procedures for the general
10226 independence problem including two-sample, K-sample (non-parametric ANOVA),
10227 correlation, censored, ordered and multivariate problems.")
10228 (license license:gpl2)))
10229
10230 (define-public r-bayesplot
10231 (package
10232 (name "r-bayesplot")
10233 (version "1.8.0")
10234 (source
10235 (origin
10236 (method url-fetch)
10237 (uri (cran-uri "bayesplot" version))
10238 (sha256
10239 (base32
10240 "0j69a78l5z0wyxcz607amaa4jc8kwwvcia9wxyir65b8ks9gj1d6"))))
10241 (build-system r-build-system)
10242 (inputs
10243 `(("pandoc" ,pandoc)
10244 ("pandoc-citeproc" ,pandoc-citeproc)))
10245 (native-inputs
10246 `(("r-knitr" ,r-knitr)))
10247 (propagated-inputs
10248 `(("r-dplyr" ,r-dplyr)
10249 ("r-ggplot2" ,r-ggplot2)
10250 ("r-ggridges" ,r-ggridges)
10251 ("r-glue" ,r-glue)
10252 ("r-reshape2" ,r-reshape2)
10253 ("r-rlang" ,r-rlang)
10254 ("r-tibble" ,r-tibble)
10255 ("r-tidyselect" ,r-tidyselect)))
10256 (home-page "https://mc-stan.org/bayesplot")
10257 (synopsis "Plotting for Bayesian models")
10258 (description
10259 "This package provides plotting functions for posterior analysis, model
10260 checking, and MCMC diagnostics. The package is designed not only to provide
10261 convenient functionality for users, but also a common set of functions that
10262 can be easily used by developers working on a variety of R packages for
10263 Bayesian modeling.")
10264 (license license:gpl3+)))
10265
10266 (define-public r-tmb
10267 (package
10268 (name "r-tmb")
10269 (version "1.7.19")
10270 (source
10271 (origin
10272 (method url-fetch)
10273 (uri (cran-uri "TMB" version))
10274 (sha256
10275 (base32
10276 "0vnjh8d5gnjswil8ld3gbbspy4m5l2pzar1mpj62qxn2mwx0cc4s"))))
10277 (properties `((upstream-name . "TMB")))
10278 (build-system r-build-system)
10279 (propagated-inputs
10280 `(("r-matrix" ,r-matrix)
10281 ("r-rcppeigen" ,r-rcppeigen)))
10282 (home-page "http://tmb-project.org")
10283 (synopsis "Template model builder: a general random effect tool")
10284 (description
10285 "With this tool, a user should be able to quickly implement complex
10286 random effect models through simple C++ templates. The package combines
10287 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
10288 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
10289 from R) to obtain an efficient implementation of the applied Laplace
10290 approximation with exact derivatives. Key features are: Automatic sparseness
10291 detection, parallelism through BLAS and parallel user templates.")
10292 (license license:gpl2)))
10293
10294 (define-public r-sjstats
10295 (package
10296 (name "r-sjstats")
10297 (version "0.18.1")
10298 (source
10299 (origin
10300 (method url-fetch)
10301 (uri (cran-uri "sjstats" version))
10302 (sha256
10303 (base32 "1cv80yjnyh6qihxf57zivihhia20gibr5f03x8aspy6382wnwlka"))))
10304 (build-system r-build-system)
10305 (propagated-inputs
10306 `(("r-bayestestr" ,r-bayestestr)
10307 ("r-broom" ,r-broom)
10308 ("r-dplyr" ,r-dplyr)
10309 ("r-effectsize" ,r-effectsize)
10310 ("r-emmeans" ,r-emmeans)
10311 ("r-insight" ,r-insight)
10312 ("r-lme4" ,r-lme4)
10313 ("r-magrittr" ,r-magrittr)
10314 ("r-mass" ,r-mass)
10315 ("r-modelr" ,r-modelr)
10316 ("r-parameters" ,r-parameters)
10317 ("r-performance" ,r-performance)
10318 ("r-purrr" ,r-purrr)
10319 ("r-rlang" ,r-rlang)
10320 ("r-sjlabelled" ,r-sjlabelled)
10321 ("r-sjmisc" ,r-sjmisc)
10322 ("r-tidyr" ,r-tidyr)))
10323 (home-page "https://github.com/strengejacke/sjstats")
10324 (synopsis "Functions for common statistical computations")
10325 (description
10326 "This package provides a collection of convenient functions for common
10327 statistical computations, which are not directly provided by R's @code{base}
10328 or @code{stats} packages. This package aims at providing, first, shortcuts
10329 for statistical measures, which otherwise could only be calculated with
10330 additional effort. Second, these shortcut functions are generic, and can be
10331 applied not only to vectors, but also to other objects as well. The focus of
10332 most functions lies on summary statistics or fit measures for regression
10333 models, including generalized linear models, mixed effects models and Bayesian
10334 models.")
10335 (license license:gpl3)))
10336
10337 (define-public r-glmmtmb
10338 (package
10339 (name "r-glmmtmb")
10340 (version "1.0.2.1")
10341 (source
10342 (origin
10343 (method url-fetch)
10344 (uri (cran-uri "glmmTMB" version))
10345 (sha256
10346 (base32
10347 "1a35hxcxz1cdm3zd5s7fyjaw2qs00hkacgr7h9130amygc1262ab"))))
10348 (properties `((upstream-name . "glmmTMB")))
10349 (build-system r-build-system)
10350 (propagated-inputs
10351 `(("r-lme4" ,r-lme4)
10352 ("r-matrix" ,r-matrix)
10353 ("r-nlme" ,r-nlme)
10354 ("r-rcppeigen" ,r-rcppeigen)
10355 ("r-tmb" ,r-tmb)))
10356 (native-inputs
10357 `(("r-knitr" ,r-knitr))) ; for vignettes
10358 (home-page "https://github.com/glmmTMB")
10359 (synopsis "Generalized linear mixed models")
10360 (description
10361 "Fit linear and generalized linear mixed models with various extensions,
10362 including zero-inflation. The models are fitted using maximum likelihood
10363 estimation via the Template Model Builder. Random effects are assumed to be
10364 Gaussian on the scale of the linear predictor and are integrated out using the
10365 Laplace approximation. Gradients are calculated using automatic
10366 differentiation.")
10367 (license license:agpl3+)))
10368
10369 (define-public r-bayestestr
10370 (package
10371 (name "r-bayestestr")
10372 (version "0.8.2")
10373 (source
10374 (origin
10375 (method url-fetch)
10376 (uri (cran-uri "bayestestR" version))
10377 (sha256
10378 (base32
10379 "06y7vccgln1882yv04may9p6s915py8nnhg82d5ppbpxzcifi7l4"))))
10380 (properties `((upstream-name . "bayestestR")))
10381 (build-system r-build-system)
10382 (propagated-inputs
10383 `(("r-insight" ,r-insight)))
10384 (native-inputs
10385 `(("r-knitr" ,r-knitr)))
10386 (home-page "https://github.com/easystats/bayestestR")
10387 (synopsis "Describe Bayesian models and posterior distributions")
10388 (description
10389 "This package provides utilities to understand and describe posterior
10390 distributions and Bayesian models. It includes point-estimates such as
10391 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
10392 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
10393 ROPE percentage and pd).")
10394 (license license:gpl3)))
10395
10396 (define-public r-performance
10397 (package
10398 (name "r-performance")
10399 (version "0.7.0")
10400 (source
10401 (origin
10402 (method url-fetch)
10403 (uri (cran-uri "performance" version))
10404 (sha256
10405 (base32
10406 "1z45vy8gg77c2imcspwqf94anzi6c40wwbq0h7hg6zy76jsgvbyj"))))
10407 (build-system r-build-system)
10408 (propagated-inputs
10409 `(("r-bayestestr" ,r-bayestestr)
10410 ("r-insight" ,r-insight)))
10411 (home-page "https://easystats.github.io/performance/")
10412 (synopsis "Assessment of regression models performance")
10413 (description
10414 "This package provides utilities for computing measures to assess model
10415 quality, which are not directly provided by R's @code{base} or @code{stats}
10416 packages. These include e.g. measures like r-squared, intraclass correlation
10417 coefficient, root mean squared error or functions to check models for
10418 overdispersion, singularity or zero-inflation and more. Functions apply to a
10419 large variety of regression models, including generalized linear models, mixed
10420 effects models and Bayesian models.")
10421 (license license:gpl3)))
10422
10423 (define-public r-ggeffects
10424 (package
10425 (name "r-ggeffects")
10426 (version "1.0.1")
10427 (source
10428 (origin
10429 (method url-fetch)
10430 (uri (cran-uri "ggeffects" version))
10431 (sha256
10432 (base32
10433 "1c5rvycaqp7zp1j6j17c84v8nlpi0w7bhfxmcha4n37m0snk1kgy"))))
10434 (build-system r-build-system)
10435 (propagated-inputs
10436 `(("r-insight" ,r-insight)
10437 ("r-mass" ,r-mass)
10438 ("r-sjlabelled" ,r-sjlabelled)))
10439 (native-inputs
10440 `(("r-knitr" ,r-knitr)))
10441 (home-page "https://github.com/strengejacke/ggeffects")
10442 (synopsis "Create tidy data frames of marginal effects for ggplot")
10443 (description
10444 "This package provides tools to compute marginal effects from statistical
10445 models and return the result as tidy data frames. These data frames are ready
10446 to use with the @code{ggplot2} package. Marginal effects can be calculated
10447 for many different models. Interaction terms, splines and polynomial terms
10448 are also supported. The two main functions are @code{ggpredict()} and
10449 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
10450 results using @code{ggplot2}.")
10451 (license license:gpl3)))
10452
10453 (define-public r-effectsize
10454 (package
10455 (name "r-effectsize")
10456 (version "0.4.4")
10457 (source
10458 (origin
10459 (method url-fetch)
10460 (uri (cran-uri "effectsize" version))
10461 (sha256
10462 (base32
10463 "0mgkq12ym72ncakkjpkzkjglhksyhj3iw8v4a8fjgpf7prvn191g"))))
10464 (properties `((upstream-name . "effectsize")))
10465 (build-system r-build-system)
10466 (propagated-inputs
10467 `(("r-bayestestr" ,r-bayestestr)
10468 ("r-insight" ,r-insight)
10469 ("r-parameters" ,r-parameters)))
10470 (native-inputs
10471 `(("r-knitr" ,r-knitr)))
10472 (home-page "https://github.com/easystats/effectsize")
10473 (synopsis "Indices of effect size and standardized parameters")
10474 (description
10475 "This package provides utilities to work with indices of effect size and
10476 standardized parameters for a wide variety of models, allowing computation and
10477 conversion of indices such as Cohen's d, r, odds, etc.")
10478 (license license:gpl3)))
10479
10480 (define-public r-sjplot
10481 (package
10482 (name "r-sjplot")
10483 (version "2.8.7")
10484 (source
10485 (origin
10486 (method url-fetch)
10487 (uri (cran-uri "sjPlot" version))
10488 (sha256
10489 (base32 "1g4qabg654kwdm09ihp4h3mg64a1d7a7gsn6w56rwsidqqaxilq0"))))
10490 (properties `((upstream-name . "sjPlot")))
10491 (build-system r-build-system)
10492 (propagated-inputs
10493 `(("r-bayestestr" ,r-bayestestr)
10494 ("r-dplyr" ,r-dplyr)
10495 ("r-effectsize" ,r-effectsize)
10496 ("r-ggeffects" ,r-ggeffects)
10497 ("r-ggplot2" ,r-ggplot2)
10498 ("r-insight" ,r-insight)
10499 ("r-knitr" ,r-knitr)
10500 ("r-mass" ,r-mass)
10501 ("r-parameters" ,r-parameters)
10502 ("r-performance" ,r-performance)
10503 ("r-purrr" ,r-purrr)
10504 ("r-rlang" ,r-rlang)
10505 ("r-scales" ,r-scales)
10506 ("r-sjlabelled" ,r-sjlabelled)
10507 ("r-sjmisc" ,r-sjmisc)
10508 ("r-sjstats" ,r-sjstats)
10509 ("r-tidyr" ,r-tidyr)))
10510 (native-inputs
10511 `(("r-knitr" ,r-knitr)))
10512 (home-page "https://strengejacke.github.io/sjPlot/")
10513 (synopsis "Data visualization for statistics in social science")
10514 (description
10515 "This package represents a collection of plotting and table output
10516 functions for data visualization. Results of various statistical
10517 analyses (that are commonly used in social sciences) can be visualized using
10518 this package, including simple and cross tabulated frequencies, histograms,
10519 box plots, (generalized) linear models, mixed effects models, principal
10520 component analysis and correlation matrices, cluster analyses, scatter plots,
10521 stacked scales, effects plots of regression models (including interaction
10522 terms) and much more. This package supports labelled data.")
10523 (license license:gpl3)))
10524
10525 (define-public r-ini
10526 (package
10527 (name "r-ini")
10528 (version "0.3.1")
10529 (source
10530 (origin
10531 (method url-fetch)
10532 (uri (cran-uri "ini" version))
10533 (sha256
10534 (base32
10535 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
10536 (build-system r-build-system)
10537 (home-page "https://github.com/dvdscripter/ini")
10538 (synopsis "Read and write configuration files")
10539 (description
10540 "This package provides tools to parse simple @code{.ini} configuration
10541 files to an structured list. Users can manipulate this resulting list with
10542 @code{lapply()} functions. This same structured list can be used to write
10543 back to file after modifications.")
10544 (license license:gpl3)))
10545
10546 (define-public r-gitcreds
10547 (package
10548 (name "r-gitcreds")
10549 (version "0.1.1")
10550 (source
10551 (origin
10552 (method url-fetch)
10553 (uri (cran-uri "gitcreds" version))
10554 (sha256
10555 (base32
10556 "1snzn7nxy0rwz0bzjsg6k04c0n811dgn8gn9cmn2v78aj57ayjmi"))))
10557 (properties `((upstream-name . "gitcreds")))
10558 (build-system r-build-system)
10559 (inputs `(("git" ,git-minimal)))
10560 (native-inputs `(("r-knitr" ,r-knitr)))
10561 (home-page "https://github.com/r-lib/gitcreds")
10562 (synopsis "Query git credentials from R")
10563 (description
10564 "Query, set, and delete credentials from the git credential store.
10565 Manage GitHub tokens and other git credentials. This package is to be used by
10566 other packages that need to authenticate to GitHub and/or other git
10567 repositories.")
10568 (license license:expat)))
10569
10570 (define-public r-gh
10571 (package
10572 (name "r-gh")
10573 (version "1.2.0")
10574 (source
10575 (origin
10576 (method url-fetch)
10577 (uri (cran-uri "gh" version))
10578 (sha256
10579 (base32
10580 "1zvy3ylxvni10lhvmbm9h14mg4wlsbdbzbzviwf28jxss8749219"))))
10581 (build-system r-build-system)
10582 (propagated-inputs
10583 `(("r-cli" ,r-cli)
10584 ("r-gitcreds" ,r-gitcreds)
10585 ("r-httr" ,r-httr)
10586 ("r-ini" ,r-ini)
10587 ("r-jsonlite" ,r-jsonlite)))
10588 (native-inputs
10589 `(("r-knitr" ,r-knitr)))
10590 (home-page "https://github.com/r-lib/gh#readme")
10591 (synopsis "Access the GitHub API via R")
10592 (description
10593 "This package provides a minimal R client to access the GitHub API.")
10594 (license license:expat)))
10595
10596 (define-public r-fs
10597 (package
10598 (name "r-fs")
10599 (version "1.5.0")
10600 (source
10601 (origin
10602 (method url-fetch)
10603 (uri (cran-uri "fs" version))
10604 (sha256
10605 (base32
10606 "15rqc3ljmcmgfvadj1j1kq7kvibagxic8sgplhlcdqqxax9idprn"))))
10607 (build-system r-build-system)
10608 (native-inputs
10609 `(("r-knitr" ,r-knitr)))
10610 (home-page "https://fs.r-lib.org")
10611 (synopsis "Cross-platform file system operations based on libuv")
10612 (description
10613 "This package provides a cross-platform interface to file system
10614 operations, built on top of the libuv C library.")
10615 (license license:gpl3)))
10616
10617 (define-public r-clisymbols
10618 (package
10619 (name "r-clisymbols")
10620 (version "1.2.0")
10621 (source
10622 (origin
10623 (method url-fetch)
10624 (uri (cran-uri "clisymbols" version))
10625 (sha256
10626 (base32
10627 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
10628 (build-system r-build-system)
10629 (home-page "https://github.com/gaborcsardi/clisymbols")
10630 (synopsis "Unicode symbols at the R prompt")
10631 (description
10632 "This package provides a small subset of Unicode symbols, that are useful
10633 when building command line applications. They fall back to alternatives on
10634 terminals that do not support Unicode.")
10635 (license license:expat)))
10636
10637 (define-public r-credentials
10638 (package
10639 (name "r-credentials")
10640 (version "1.3.0")
10641 (source
10642 (origin
10643 (method url-fetch)
10644 (uri (cran-uri "credentials" version))
10645 (sha256
10646 (base32
10647 "1w9zj34xdwz9bszsvhv2cbgq96y5sgxbh7ndn31pgfcpzlkfq6f1"))))
10648 (properties `((upstream-name . "credentials")))
10649 (build-system r-build-system)
10650 (arguments
10651 `(#:phases
10652 (modify-phases %standard-phases
10653 (add-after 'unpack 'setenv-HOME
10654 (lambda _
10655 ;; This is necessary because git looks for $HOME/.gitconfig
10656 (setenv "HOME" "/tmp")
10657 #t)))))
10658 (inputs
10659 `(("git" ,git-minimal)))
10660 (propagated-inputs
10661 `(("r-askpass" ,r-askpass)
10662 ("r-curl" ,r-curl)
10663 ("r-jsonlite" ,r-jsonlite)
10664 ("r-openssl" ,r-openssl)
10665 ("r-sys" ,r-sys)))
10666 (native-inputs
10667 `(("r-knitr" ,r-knitr)))
10668 (home-page "https://docs.ropensci.org/credentials/")
10669 (synopsis "Tools for managing SSH and Git credentials")
10670 (description
10671 "This package assists you in setting up and retrieving of HTTPS and SSH
10672 credentials for use with git and other services. For HTTPS remotes the
10673 package interfaces the @command{git-credential} utility which @command{git}
10674 uses to store HTTP usernames and passwords. For SSH remotes this package
10675 provides convenient functions to find or generate appropriate SSH keys. The
10676 package both helps the user to setup a local git installation, and also
10677 provides a back-end for git/ssh client libraries to authenticate with existing
10678 user credentials.")
10679 (license license:expat)))
10680
10681 (define-public r-gert
10682 (package
10683 (name "r-gert")
10684 (version "1.2.0")
10685 (source
10686 (origin
10687 (method url-fetch)
10688 (uri (cran-uri "gert" version))
10689 (sha256
10690 (base32
10691 "0ag2ia6cfb5drf3517lg5nhik1w0nv09a75wdy5jdciws1qra3d6"))))
10692 (properties `((upstream-name . "gert")))
10693 (build-system r-build-system)
10694 (inputs
10695 `(("libgit2" ,libgit2)
10696 ("zlib" ,zlib)))
10697 (propagated-inputs
10698 `(("r-askpass" ,r-askpass)
10699 ("r-credentials" ,r-credentials)
10700 ("r-openssl" ,r-openssl)
10701 ("r-rstudioapi" ,r-rstudioapi)
10702 ("r-sys" ,r-sys)
10703 ("r-zip" ,r-zip)))
10704 (native-inputs
10705 `(("pkg-config" ,pkg-config)
10706 ("r-knitr" ,r-knitr)))
10707 (home-page "https://docs.ropensci.org/gert/")
10708 (synopsis "Simple Git client for R")
10709 (description
10710 "This package provides a simple git client for R based on libgit2 with
10711 support for SSH and HTTPS remotes. All functions in gert use basic R data
10712 types (such as vectors and data-frames) for their arguments and return values.
10713 User credentials are shared with command line git through the
10714 @code{git-credential} store and SSH keys stored on disk or ssh-agent.")
10715 (license license:expat)))
10716
10717 (define-public r-usethis
10718 (package
10719 (name "r-usethis")
10720 (version "2.0.1")
10721 (source
10722 (origin
10723 (method url-fetch)
10724 (uri (cran-uri "usethis" version))
10725 (sha256
10726 (base32
10727 "1j6nzzrm2m6vi1gq0d5kxnnr9d8cy88wpmgigz3inych65x9w9pg"))))
10728 (build-system r-build-system)
10729 (propagated-inputs
10730 `(("r-cli" ,r-cli)
10731 ("r-clipr" ,r-clipr)
10732 ("r-crayon" ,r-crayon)
10733 ("r-curl" ,r-curl)
10734 ("r-desc" ,r-desc)
10735 ("r-fs" ,r-fs)
10736 ("r-gert" ,r-gert)
10737 ("r-gh" ,r-gh)
10738 ("r-glue" ,r-glue)
10739 ("r-jsonlite" ,r-jsonlite)
10740 ("r-lifecycle" ,r-lifecycle)
10741 ("r-purrr" ,r-purrr)
10742 ("r-rappdirs" ,r-rappdirs)
10743 ("r-rlang" ,r-rlang)
10744 ("r-rprojroot" ,r-rprojroot)
10745 ("r-rstudioapi" ,r-rstudioapi)
10746 ("r-whisker" ,r-whisker)
10747 ("r-withr" ,r-withr)
10748 ("r-yaml" ,r-yaml)))
10749 (home-page "https://github.com/r-lib/usethis")
10750 (synopsis "Automate R package and project setup")
10751 (description
10752 "This package helps you to automate R package and project setup tasks
10753 that are otherwise performed manually. This includes setting up unit testing,
10754 test coverage, continuous integration, Git, GitHub integration, licenses,
10755 Rcpp, RStudio projects, and more.")
10756 (license license:gpl3)))
10757
10758 (define-public r-sessioninfo
10759 (package
10760 (name "r-sessioninfo")
10761 (version "1.1.1")
10762 (source
10763 (origin
10764 (method url-fetch)
10765 (uri (cran-uri "sessioninfo" version))
10766 (sha256
10767 (base32
10768 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
10769 (build-system r-build-system)
10770 (propagated-inputs
10771 `(("r-cli" ,r-cli)
10772 ("r-withr" ,r-withr)))
10773 (home-page "https://github.com/r-lib/sessioninfo#readme")
10774 (synopsis "R session information")
10775 (description
10776 "This package provides tools to query and print information about the
10777 current R session. It is similar to @code{utils::sessionInfo()}, but includes
10778 more information about packages, and where they were installed from.")
10779 (license license:gpl2)))
10780
10781 (define-public r-remotes
10782 (package
10783 (name "r-remotes")
10784 (version "2.2.0")
10785 (source
10786 (origin
10787 (method url-fetch)
10788 (uri (cran-uri "remotes" version))
10789 (sha256
10790 (base32
10791 "1f1kdw9j1wald3fs8b3n68x1kljy07j60g3aw1aarx26ikyk9whj"))))
10792 (build-system r-build-system)
10793 (native-inputs
10794 `(("r-knitr" ,r-knitr)))
10795 (home-page "https://github.com/r-lib/remotes#readme")
10796 (synopsis "R package installation from remote repositories")
10797 (description
10798 "Download and install R packages stored in GitHub, BitBucket, or plain
10799 subversion or git repositories. This package is a lightweight replacement of
10800 the @code{install_*} functions in the @code{devtools} package. Indeed most of
10801 the code was copied over from @code{devtools}.")
10802 (license license:gpl2+)))
10803
10804 (define-public r-xopen
10805 (package
10806 (name "r-xopen")
10807 (version "1.0.0")
10808 (source
10809 (origin
10810 (method url-fetch)
10811 (uri (cran-uri "xopen" version))
10812 (sha256
10813 (base32
10814 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
10815 (build-system r-build-system)
10816 (propagated-inputs
10817 `(("r-processx" ,r-processx)))
10818 (home-page "https://github.com/r-lib/xopen#readme")
10819 (synopsis "Open system files, URLs, anything")
10820 (description
10821 "This package provides a cross-platform solution to open files,
10822 directories or URLs with their associated programs.")
10823 (license license:expat)))
10824
10825 (define-public r-rcmdcheck
10826 (package
10827 (name "r-rcmdcheck")
10828 (version "1.3.3")
10829 (source
10830 (origin
10831 (method url-fetch)
10832 (uri (cran-uri "rcmdcheck" version))
10833 (sha256
10834 (base32
10835 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
10836 (build-system r-build-system)
10837 (propagated-inputs
10838 `(("r-callr" ,r-callr)
10839 ("r-cli" ,r-cli)
10840 ("r-crayon" ,r-crayon)
10841 ("r-desc" ,r-desc)
10842 ("r-digest" ,r-digest)
10843 ("r-pkgbuild" ,r-pkgbuild)
10844 ("r-prettyunits" ,r-prettyunits)
10845 ("r-r6" ,r-r6)
10846 ("r-rprojroot" ,r-rprojroot)
10847 ("r-sessioninfo" ,r-sessioninfo)
10848 ("r-withr" ,r-withr)
10849 ("r-xopen" ,r-xopen)))
10850 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
10851 (synopsis "Run R CMD check from R and capture results")
10852 (description
10853 "Run @code{R CMD check} from R programmatically, and capture the results
10854 of the individual checks.")
10855 (license license:expat)))
10856
10857 (define-public r-rapportools
10858 (package
10859 (name "r-rapportools")
10860 (version "1.0")
10861 (source
10862 (origin
10863 (method url-fetch)
10864 (uri (cran-uri "rapportools" version))
10865 (sha256
10866 (base32
10867 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
10868 (build-system r-build-system)
10869 (propagated-inputs
10870 `(("r-pander" ,r-pander)
10871 ("r-plyr" ,r-plyr)
10872 ("r-reshape" ,r-reshape)))
10873 (home-page "https://cran.r-project.org/web/packages/rapportools/")
10874 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
10875 (description
10876 "This package provides helper functions that act as wrappers to more
10877 advanced statistical methods with the advantage of having sane defaults for
10878 quick reporting.")
10879 (license license:agpl3+)))
10880
10881 (define-public r-pander
10882 (package
10883 (name "r-pander")
10884 (version "0.6.3")
10885 (source
10886 (origin
10887 (method url-fetch)
10888 (uri (cran-uri "pander" version))
10889 (sha256
10890 (base32
10891 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
10892 (build-system r-build-system)
10893 (propagated-inputs
10894 `(("r-digest" ,r-digest)
10895 ("r-rcpp" ,r-rcpp)))
10896 (home-page "https://rapporter.github.io/pander")
10897 (synopsis "Render R objects into Pandoc's markdown")
10898 (description
10899 "The main aim of the pander R package is to provide a minimal and easy
10900 tool for rendering R objects into Pandoc's markdown. The package is also
10901 capable of exporting/converting complex Pandoc documents (reports) in various
10902 ways.")
10903 ;; This package is licensed under either the AGPLv3+ or the very rarely
10904 ;; used OSL 3.0.
10905 (license license:agpl3+)))
10906
10907 (define-public r-summarytools
10908 (package
10909 (name "r-summarytools")
10910 (version "0.9.8")
10911 (source
10912 (origin
10913 (method url-fetch)
10914 (uri (cran-uri "summarytools" version))
10915 (sha256
10916 (base32
10917 "0n7rad6bkfn9cb99wbfzbwl5qzch48r0gafhddfcqvyh4fbn2k0j"))))
10918 (build-system r-build-system)
10919 (propagated-inputs
10920 `(("r-base64enc" ,r-base64enc)
10921 ("r-checkmate" ,r-checkmate)
10922 ("r-dplyr" ,r-dplyr)
10923 ("r-htmltools" ,r-htmltools)
10924 ("r-lubridate" ,r-lubridate)
10925 ("r-magick" ,r-magick)
10926 ("r-matrixstats" ,r-matrixstats)
10927 ("r-pander" ,r-pander)
10928 ("r-pryr" ,r-pryr)
10929 ("r-rapportools" ,r-rapportools)
10930 ("r-tibble" ,r-tibble)
10931 ("r-tidyr" ,r-tidyr)))
10932 (native-inputs
10933 `(("r-knitr" ,r-knitr)))
10934 (home-page "https://github.com/dcomtois/summarytools")
10935 (synopsis "Tools to quickly and neatly summarize data")
10936 (description
10937 "This package provides tools for data frame summaries, cross-tabulations,
10938 weight-enabled frequency tables and common univariate statistics in concise
10939 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
10940 good point-of-entry for exploring data, both for experienced and new R
10941 users.")
10942 (license license:gpl2)))
10943
10944 (define-public r-lsei
10945 (package
10946 (name "r-lsei")
10947 (version "1.3-0")
10948 (source
10949 (origin
10950 (method url-fetch)
10951 (uri (cran-uri "lsei" version))
10952 (sha256
10953 (base32
10954 "1dka0rigfw4vj809qma2dkiwjb3nw5635ynnba5cm299cn7hb2b2"))))
10955 (build-system r-build-system)
10956 (native-inputs
10957 `(("gfortran" ,gfortran)))
10958 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
10959 (synopsis "Solve regression problems under equality/inequality constraints")
10960 (description
10961 "It contains functions that solve least squares linear regression
10962 problems under linear equality/inequality constraints. Functions for solving
10963 quadratic programming problems are also available, which transform such
10964 problems into least squares ones first.")
10965 (license license:gpl2+)))
10966
10967 (define-public r-npsurv
10968 (package
10969 (name "r-npsurv")
10970 (version "0.5-0")
10971 (source
10972 (origin
10973 (method url-fetch)
10974 (uri (cran-uri "npsurv" version))
10975 (sha256
10976 (base32
10977 "1ihxhb42cga1hssj2jv4ah0f4hlwsky899ij5261fzh1wxvdp1xw"))))
10978 (build-system r-build-system)
10979 (propagated-inputs
10980 `(("r-lsei" ,r-lsei)))
10981 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
10982 (synopsis "Nonparametric survival analysis")
10983 (description
10984 "This package contains functions for non-parametric survival analysis of
10985 exact and interval-censored observations.")
10986 (license license:gpl2+)))
10987
10988 (define-public r-clusteval
10989 (package
10990 (name "r-clusteval")
10991 (version "0.1")
10992 (source
10993 (origin
10994 (method url-fetch)
10995 (uri (cran-uri "clusteval" version))
10996 (sha256
10997 (base32
10998 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
10999 (build-system r-build-system)
11000 (propagated-inputs
11001 `(("r-mvtnorm" ,r-mvtnorm)
11002 ("r-rcpp" ,r-rcpp)))
11003 (home-page "https://cran.r-project.org/web/packages/clusteval/")
11004 (synopsis "Evaluation of clustering algorithms")
11005 (description
11006 "This R package provides a suite of tools to evaluate clustering
11007 algorithms, clusterings, and individual clusters.")
11008 (license license:expat)))
11009
11010 (define-public r-tweedie
11011 (package
11012 (name "r-tweedie")
11013 (version "2.3.3")
11014 (source
11015 (origin
11016 (method url-fetch)
11017 (uri (cran-uri "tweedie" version))
11018 (sha256
11019 (base32
11020 "1nfhaqblvm62j8gfkyrgba5ai0pb2fsnrxp63637mhys2bawlcm0"))))
11021 (build-system r-build-system)
11022 (native-inputs `(("gfortran" ,gfortran)))
11023 (home-page "https://cran.r-project.org/web/packages/tweedie/")
11024 (synopsis "Evaluation of Tweedie exponential family models")
11025 (description
11026 "Maximum likelihood computations for Tweedie families, including the
11027 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
11028 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
11029 and related methods.")
11030 (license license:gpl2+)))
11031
11032 (define-public r-rcppgsl
11033 (package
11034 (name "r-rcppgsl")
11035 (version "0.3.8")
11036 (source
11037 (origin
11038 (method url-fetch)
11039 (uri (cran-uri "RcppGSL" version))
11040 (sha256
11041 (base32 "17nlayy6gvwb3v6l5aiqm84i75yf4dfi3zclxrgpqwf3j9v09yvz"))))
11042 (properties `((upstream-name . "RcppGSL")))
11043 (build-system r-build-system)
11044 (propagated-inputs
11045 `(("r-rcpp" ,r-rcpp)
11046 ("gsl" ,gsl)))
11047 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
11048 (synopsis "Rcpp integration for GSL vectors and matrices")
11049 (description
11050 "The GNU Scientific Library (or GSL) is a collection of numerical
11051 routines for scientific computing. It is particularly useful for C and C++
11052 programs as it provides a standard C interface to a wide range of mathematical
11053 routines. There are over 1000 functions in total with an extensive test
11054 suite. The RcppGSL package provides an easy-to-use interface between GSL data
11055 structures and R using concepts from Rcpp which is itself a package that eases
11056 the interfaces between R and C++.")
11057 (license license:gpl2+)))
11058
11059 (define-public r-mvabund
11060 (package
11061 (name "r-mvabund")
11062 (version "4.1.9")
11063 (source
11064 (origin
11065 (method url-fetch)
11066 (uri (cran-uri "mvabund" version))
11067 (sha256
11068 (base32
11069 "19kyg0agjk7gxipa5kmklz4cqh97xrdbibmmy1g99r1gp3s9ml30"))))
11070 (build-system r-build-system)
11071 (propagated-inputs
11072 `(("r-mass" ,r-mass)
11073 ("r-rcpp" ,r-rcpp)
11074 ("r-rcppgsl" ,r-rcppgsl)
11075 ("r-statmod" ,r-statmod)
11076 ("r-tweedie" ,r-tweedie)))
11077 (home-page "https://cran.r-project.org/web/packages/mvabund/")
11078 (synopsis "Statistical methods for analysing multivariate abundance data")
11079 (description
11080 "This package provides a set of tools for displaying, modeling and
11081 analysing multivariate abundance data in community ecology.")
11082 (license license:lgpl2.1+)))
11083
11084 (define-public r-afex
11085 (package
11086 (name "r-afex")
11087 (version "0.28-1")
11088 (source
11089 (origin
11090 (method url-fetch)
11091 (uri (cran-uri "afex" version))
11092 (sha256
11093 (base32
11094 "0blwqr5ni3psav1dcdmhfi4jy3b4scm5njimqfpr1d81zadvgc6g"))))
11095 (build-system r-build-system)
11096 (propagated-inputs
11097 `(("r-car" ,r-car)
11098 ("r-lme4" ,r-lme4)
11099 ("r-lmertest" ,r-lmertest)
11100 ("r-pbkrtest" ,r-pbkrtest)
11101 ("r-reshape2" ,r-reshape2)))
11102 (native-inputs
11103 `(("r-knitr" ,r-knitr)))
11104 (home-page "https://afex.singmann.science/")
11105 (synopsis "Analysis of factorial experiments")
11106 (description
11107 "This package provides convenience functions for analyzing factorial
11108 experiments using ANOVA or mixed models.")
11109 (license license:gpl2+)))
11110
11111 (define-public r-lmertest
11112 (package
11113 (name "r-lmertest")
11114 (version "3.1-3")
11115 (source
11116 (origin
11117 (method url-fetch)
11118 (uri (cran-uri "lmerTest" version))
11119 (sha256
11120 (base32
11121 "1zd8gqjkazhxgpnnr484xwsq30p62fq8592nzyc171zjyplpbaim"))))
11122 (properties `((upstream-name . "lmerTest")))
11123 (build-system r-build-system)
11124 (propagated-inputs
11125 `(("r-ggplot2" ,r-ggplot2)
11126 ("r-lme4" ,r-lme4)
11127 ("r-mass" ,r-mass)
11128 ("r-numderiv" ,r-numderiv)))
11129 (home-page "https://github.com/runehaubo/lmerTestR")
11130 (synopsis "Tests in linear mixed effects models")
11131 (description
11132 "This package provides p-values in type I, II or III anova and summary
11133 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
11134 method. A Kenward-Roger method is also available via the @code{pbkrtest}
11135 package. Model selection methods include step, drop1 and anova-like tables
11136 for random effects (ranova). Methods for Least-Square means (LS-means) and
11137 tests of linear contrasts of fixed effects are also available.")
11138 (license license:gpl2+)))
11139
11140 (define-public r-r2glmm
11141 (package
11142 (name "r-r2glmm")
11143 (version "0.1.2")
11144 (source
11145 (origin
11146 (method url-fetch)
11147 (uri (cran-uri "r2glmm" version))
11148 (sha256
11149 (base32
11150 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
11151 (build-system r-build-system)
11152 (propagated-inputs
11153 `(("r-afex" ,r-afex)
11154 ("r-data-table" ,r-data-table)
11155 ("r-dplyr" ,r-dplyr)
11156 ("r-ggplot2" ,r-ggplot2)
11157 ("r-gridextra" ,r-gridextra)
11158 ("r-lmertest" ,r-lmertest)
11159 ("r-mass" ,r-mass)
11160 ("r-matrix" ,r-matrix)
11161 ("r-mgcv" ,r-mgcv)
11162 ("r-pbkrtest" ,r-pbkrtest)))
11163 (home-page "https://github.com/bcjaeger/r2glmm")
11164 (synopsis "Compute R squared for mixed (multilevel) models")
11165 (description
11166 "This package computes model and semi partial R squared with confidence
11167 limits for the linear and generalized linear mixed model (LMM and GLMM). The
11168 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
11169 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
11170 al. (2016)).")
11171 (license license:gpl2)))
11172
11173 (define-public r-weights
11174 (package
11175 (name "r-weights")
11176 (version "1.0.1")
11177 (source
11178 (origin
11179 (method url-fetch)
11180 (uri (cran-uri "weights" version))
11181 (sha256
11182 (base32
11183 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
11184 (build-system r-build-system)
11185 (propagated-inputs
11186 `(("r-gdata" ,r-gdata)
11187 ("r-hmisc" ,r-hmisc)
11188 ("r-mice" ,r-mice)))
11189 (home-page
11190 "https://cran.r-project.org/web/packages/weights/")
11191 (synopsis "Weighting and weighted statistics")
11192 (description "This package Provides a variety of functions for producing
11193 simple weighted statistics, such as weighted Pearson's correlations, partial
11194 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
11195 includes some software for quickly recoding survey data and plotting point
11196 estimates from interaction terms in regressions (and multiply imputed
11197 regressions). NOTE: Weighted partial correlation calculations pulled to
11198 address a bug.")
11199 (license license:gpl2+)))
11200
11201 (define-public r-rcppannoy
11202 (package
11203 (name "r-rcppannoy")
11204 (version "0.0.18")
11205 (source
11206 (origin
11207 (method url-fetch)
11208 (uri (cran-uri "RcppAnnoy" version))
11209 (sha256
11210 (base32
11211 "0n68cf77gz34iq6w6ad87pbqwqam45nxp1gjzns4g6qhf7qdvrz4"))))
11212 (properties `((upstream-name . "RcppAnnoy")))
11213 (build-system r-build-system)
11214 (propagated-inputs
11215 `(("r-rcpp" ,r-rcpp)))
11216 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
11217 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
11218 (description
11219 "Annoy is a small C++ library for Approximate Nearest Neighbors written
11220 for efficient memory usage as well an ability to load from and save to disk.
11221 This package provides an R interface.")
11222 ;; Annoy is released under ASL 2.0, but this wrapper is released under
11223 ;; GPLv2+.
11224 (license (list license:gpl2+ license:asl2.0))))
11225
11226 (define-public r-rcpphnsw
11227 (package
11228 (name "r-rcpphnsw")
11229 (version "0.3.0")
11230 (source
11231 (origin
11232 (method url-fetch)
11233 (uri (cran-uri "RcppHNSW" version))
11234 (sha256
11235 (base32
11236 "01z0plf1i6dyibw4ica8shmijyk1grpqb886hcga72z2cpm4xsx0"))))
11237 (properties `((upstream-name . "RcppHNSW")))
11238 (build-system r-build-system)
11239 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11240 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
11241 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
11242 (description
11243 "Hnswlib is a C++ library for approximate nearest neighbors. This
11244 package provides a minimal R interface by relying on the Rcpp package.")
11245 ;; hnswlib is released under Version 2.0 of the Apache License.
11246 (license (list license:gpl3 license:asl2.0))))
11247
11248 (define-public r-rcppparallel
11249 (package
11250 (name "r-rcppparallel")
11251 (version "5.0.3")
11252 (source
11253 (origin
11254 (method url-fetch)
11255 (uri (cran-uri "RcppParallel" version))
11256 (sha256
11257 (base32
11258 "0ihcirny4al2ydymxhdfacwmybmrgrz5nm0lbf49gk2zy8w124ki"))))
11259 (properties `((upstream-name . "RcppParallel")))
11260 (build-system r-build-system)
11261 (home-page "https://rcppcore.github.io/RcppParallel/")
11262 (synopsis "Parallel programming tools for Rcpp")
11263 (description
11264 "This package provides high level functions for parallel programming with
11265 Rcpp. For example, the @code{parallelFor()} function can be used to convert
11266 the work of a standard serial @code{for} loop into a parallel one and the
11267 @code{parallelReduce()} function can be used for accumulating aggregates or
11268 other values.")
11269 (license license:gpl2)))
11270
11271 (define-public r-ncdf4
11272 (package
11273 (name "r-ncdf4")
11274 (version "1.17")
11275 (source
11276 (origin
11277 (method url-fetch)
11278 (uri (cran-uri "ncdf4" version))
11279 (sha256
11280 (base32
11281 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
11282 (build-system r-build-system)
11283 (inputs
11284 `(("netcdf" ,netcdf)
11285 ("zlib" ,zlib)))
11286 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
11287 (synopsis "R interface to Unidata netCDF format data files")
11288 (description
11289 "This package provides a high-level R interface to data files written
11290 using Unidata's netCDF library (version 4 or earlier), which are binary data
11291 files that are portable across platforms and include metadata information in
11292 addition to the data sets. Using this package, netCDF files can be opened and
11293 data sets read in easily. It is also easy to create new netCDF dimensions,
11294 variables, and files, in either version 3 or 4 format, and manipulate existing
11295 netCDF files.")
11296 (license license:gpl3+)))
11297
11298 (define-public r-biocmanager
11299 (package
11300 (name "r-biocmanager")
11301 (version "1.30.10")
11302 (source
11303 (origin
11304 (method url-fetch)
11305 (uri (cran-uri "BiocManager" version))
11306 (sha256
11307 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
11308 (properties `((upstream-name . "BiocManager")))
11309 (build-system r-build-system)
11310 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
11311 (synopsis "Access the Bioconductor project package repository")
11312 (description
11313 "This package provides a convenient tool to install and update
11314 Bioconductor packages.")
11315 (license license:artistic2.0)))
11316
11317 (define-public r-rgl
11318 (package
11319 (name "r-rgl")
11320 (version "0.105.22")
11321 (source
11322 (origin
11323 (method url-fetch)
11324 (uri (cran-uri "rgl" version))
11325 (sha256
11326 (base32
11327 "1y69phym8pkdh1k808y3rp1030xmhjpc8vig9035v9n1r7v7a1kz"))))
11328 (build-system r-build-system)
11329 (native-inputs
11330 `(("pkg-config" ,pkg-config)
11331 ("r-knitr" ,r-knitr)))
11332 (inputs
11333 `(("freetype" ,freetype)
11334 ("libpng" ,libpng)
11335 ("glu" ,glu)
11336 ("libx11" ,libx11)
11337 ("pandoc" ,pandoc)
11338 ("zlib" ,zlib)))
11339 (propagated-inputs
11340 `(("r-crosstalk" ,r-crosstalk)
11341 ("r-htmltools" ,r-htmltools)
11342 ("r-htmlwidgets" ,r-htmlwidgets)
11343 ("r-jsonlite" ,r-jsonlite)
11344 ("r-knitr" ,r-knitr)
11345 ("r-magrittr" ,r-magrittr)
11346 ("r-manipulatewidget" ,r-manipulatewidget)
11347 ("r-shiny" ,r-shiny)))
11348 (home-page "https://r-forge.r-project.org/projects/rgl/")
11349 (synopsis "3D visualization using OpenGL")
11350 (description
11351 "This package provides medium to high level functions for 3D interactive graphics,
11352 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
11353 as functions for constructing representations of geometric
11354 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
11355 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
11356 image formats, including PNG, Postscript, SVG, PGF.")
11357 ;; Any version of the GPL.
11358 (license (list license:gpl2+ license:gpl3+))))
11359
11360 (define-public r-multicool
11361 (package
11362 (name "r-multicool")
11363 (version "0.1-11")
11364 (source
11365 (origin
11366 (method url-fetch)
11367 (uri (cran-uri "multicool" version))
11368 (sha256
11369 (base32
11370 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
11371 (build-system r-build-system)
11372 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11373 (home-page "https://cran.r-project.org/web/packages/multicool/")
11374 (synopsis "Permutations of multisets in cool-lex order")
11375 (description
11376 "This package provides a set of tools to permute multisets without loops
11377 or hash tables and to generate integer partitions. Cool-lex order is similar
11378 to colexicographical order.")
11379 (license license:gpl2)))
11380
11381 (define-public r-misc3d
11382 (package
11383 (name "r-misc3d")
11384 (version "0.9-0")
11385 (source
11386 (origin
11387 (method url-fetch)
11388 (uri (cran-uri "misc3d" version))
11389 (sha256
11390 (base32
11391 "10jf5r1x588vi54bzaqgi9mgcqlkiga2c3jvmqmk3lavc8fjksd1"))))
11392 (build-system r-build-system)
11393 (home-page "https://cran.r-project.org/web/packages/misc3d/")
11394 (synopsis "Miscellaneous 3D Plots")
11395 (description
11396 "This package provides a collection of miscellaneous 3d plots, including
11397 isosurfaces.")
11398 ;; Any version of the GPL.
11399 (license (list license:gpl2+ license:gpl3+))))
11400
11401 (define-public r-ks
11402 (package
11403 (name "r-ks")
11404 (version "1.12.0")
11405 (source
11406 (origin
11407 (method url-fetch)
11408 (uri (cran-uri "ks" version))
11409 (sha256
11410 (base32 "1sff6rlpq64lqyvwgral9zbcan30wpgmfb26hw9y6wzypd9gxbz6"))))
11411 (build-system r-build-system)
11412 (propagated-inputs
11413 `(("r-fnn" ,r-fnn)
11414 ("r-kernlab" ,r-kernlab)
11415 ("r-kernsmooth" ,r-kernsmooth)
11416 ("r-matrix" ,r-matrix)
11417 ("r-mclust" ,r-mclust)
11418 ("r-mgcv" ,r-mgcv)
11419 ("r-multicool" ,r-multicool)
11420 ("r-mvtnorm" ,r-mvtnorm)
11421 ("r-plot3d" ,r-plot3d)))
11422 (home-page "https://www.mvstat.net/tduong/")
11423 (synopsis "Kernel smoothing")
11424 (description
11425 "This package provides kernel smoothers for univariate and multivariate
11426 data, including density functions, density derivatives, cumulative
11427 distributions, modal clustering, discriminant analysis, and two-sample
11428 hypothesis testing.")
11429 ;; Either version of the GPL.
11430 (license (list license:gpl2 license:gpl3))))
11431
11432 (define-public r-feature
11433 (package
11434 (name "r-feature")
11435 (version "1.2.15")
11436 (source
11437 (origin
11438 (method url-fetch)
11439 (uri (cran-uri "feature" version))
11440 (sha256
11441 (base32
11442 "0yzn1w1sasilcp8v0pcjnxjv9l6lspkskqi412i6h040gqmjjf6y"))))
11443 (build-system r-build-system)
11444 (propagated-inputs
11445 `(("r-ks" ,r-ks)
11446 ("r-plot3d" ,r-plot3d)))
11447 (native-inputs
11448 `(("r-knitr" ,r-knitr)))
11449 (home-page "https://www.mvstat.net/tduong/")
11450 (synopsis "Inferential feature significance for kernel density estimation")
11451 (description
11452 "The feature package contains functions to display and compute kernel
11453 density estimates, significant gradient and significant curvature regions.
11454 Significant gradient and/or curvature regions often correspond to significant
11455 features (e.g. local modes).")
11456 ;; Either version of the GPL.
11457 (license (list license:gpl2 license:gpl3))))
11458
11459 (define-public r-arm
11460 (package
11461 (name "r-arm")
11462 (version "1.11-2")
11463 (source
11464 (origin
11465 (method url-fetch)
11466 (uri (cran-uri "arm" version))
11467 (sha256
11468 (base32
11469 "1grb27vayr2vhyalzfqbhx6p278r7c3l4pzi5nrz3dmnyqrbx1c3"))))
11470 (build-system r-build-system)
11471 (propagated-inputs
11472 `(("r-abind" ,r-abind)
11473 ("r-coda" ,r-coda)
11474 ("r-hmisc" ,r-hmisc)
11475 ("r-lme4" ,r-lme4)
11476 ("r-mass" ,r-mass)
11477 ("r-matrix" ,r-matrix)
11478 ("r-nlme" ,r-nlme)))
11479 (home-page "https://cran.r-project.org/web/packages/arm/")
11480 (synopsis "Data analysis using regression and multilevel/hierarchical models")
11481 (description
11482 "This package provides functions to accompany A. Gelman and J. Hill,
11483 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
11484 University Press, 2007.")
11485 (license license:gpl3+)))
11486
11487 (define-public r-circular
11488 (package
11489 (name "r-circular")
11490 (version "0.4-93")
11491 (source
11492 (origin
11493 (method url-fetch)
11494 (uri (cran-uri "circular" version))
11495 (sha256
11496 (base32
11497 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
11498 (build-system r-build-system)
11499 (propagated-inputs
11500 `(("r-boot" ,r-boot)
11501 ("r-mvtnorm" ,r-mvtnorm)))
11502 (native-inputs
11503 `(("gfortran" ,gfortran)))
11504 (home-page "https://cran.r-project.org/web/packages/circular/")
11505 (synopsis "Circular statistics")
11506 (description
11507 "This package provides tools for circular statistics, from \"Topics in
11508 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
11509 Scientific.")
11510 (license license:gpl2+)))
11511
11512 (define-public r-activity
11513 (package
11514 (name "r-activity")
11515 (version "1.3.1")
11516 (source
11517 (origin
11518 (method url-fetch)
11519 (uri (cran-uri "activity" version))
11520 (sha256
11521 (base32
11522 "1wn2a0hx7wfr2jyj1b772w5fgl6bcqkkw8cybais2s1wyjx8kjr5"))))
11523 (build-system r-build-system)
11524 (propagated-inputs
11525 `(("r-circular" ,r-circular)
11526 ("r-insol" ,r-insol)
11527 ("r-pbapply" ,r-pbapply)))
11528 (home-page "https://cran.r-project.org/web/packages/activity/")
11529 (synopsis "Animal activity statistics")
11530 (description
11531 "This package provides functions to fit kernel density functions to
11532 animal activity time data; plot activity distributions; quantify overall
11533 levels of activity; statistically compare activity metrics through
11534 bootstrapping; and evaluate variation in linear variables with time (or other
11535 circular variables).")
11536 (license license:gpl3)))
11537
11538 (define-public r-ouch
11539 (package
11540 (name "r-ouch")
11541 (version "2.15-1")
11542 (source
11543 (origin
11544 (method url-fetch)
11545 (uri (cran-uri "ouch" version))
11546 (sha256
11547 (base32
11548 "0myddn3b28pswyk42kvwhyvkj30q41f677vpxclxacdfkhgvrj6q"))))
11549 (build-system r-build-system)
11550 (propagated-inputs `(("r-subplex" ,r-subplex)))
11551 (home-page "https://kingaa.github.io/ouch/")
11552 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
11553 (description
11554 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
11555 for evolution along a phylogenetic tree.")
11556 (license license:gpl2+)))
11557
11558 (define-public r-fmsb
11559 (package
11560 (name "r-fmsb")
11561 (version "0.7.0")
11562 (source
11563 (origin
11564 (method url-fetch)
11565 (uri (cran-uri "fmsb" version))
11566 (sha256
11567 (base32
11568 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
11569 (build-system r-build-system)
11570 (home-page "http://minato.sip21c.org/msb/")
11571 (synopsis "Functions for medical statistics book with demographic data")
11572 (description
11573 "This package provides several utility functions for the book entitled
11574 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
11575 Japan, 2007) with Japanese demographic data and some demographic analysis
11576 related functions.")
11577 (license license:gpl2+)))
11578
11579 (define-public r-stabledist
11580 (package
11581 (name "r-stabledist")
11582 (version "0.7-1")
11583 (source
11584 (origin
11585 (method url-fetch)
11586 (uri (cran-uri "stabledist" version))
11587 (sha256
11588 (base32
11589 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
11590 (build-system r-build-system)
11591 (home-page "https://www.rmetrics.org")
11592 (synopsis "Stable distribution functions")
11593 (description
11594 "This package provides density, probability and quantile functions, and
11595 random number generation for (skew) stable distributions, using the
11596 parametrizations of Nolan.")
11597 (license license:gpl2+)))
11598
11599 (define-public r-gsl
11600 (package
11601 (name "r-gsl")
11602 (version "2.1-6")
11603 (source
11604 (origin
11605 (method url-fetch)
11606 (uri (cran-uri "gsl" version))
11607 (sha256
11608 (base32
11609 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
11610 (build-system r-build-system)
11611 (inputs
11612 `(("gsl" ,gsl)))
11613 (home-page "https://cran.r-project.org/web/packages/gsl")
11614 (synopsis "Wrapper for the GNU Scientific Library")
11615 (description
11616 "This package provides an R wrapper for the special functions and quasi
11617 random number generators of the GNU Scientific Library.")
11618 (license license:gpl2+)))
11619
11620 (define-public r-adgoftest
11621 (package
11622 (name "r-adgoftest")
11623 (version "0.3")
11624 (source
11625 (origin
11626 (method url-fetch)
11627 (uri (cran-uri "ADGofTest" version))
11628 (sha256
11629 (base32
11630 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
11631 (properties `((upstream-name . "ADGofTest")))
11632 (build-system r-build-system)
11633 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
11634 (synopsis "Anderson-Darling GoF test")
11635 (description
11636 "This package provides an implementation of the Anderson-Darling GoF test
11637 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
11638 Anderson-Darling Distribution\".")
11639 ;; Any version of the GPL.
11640 (license license:gpl3+)))
11641
11642 (define-public r-sodium
11643 (package
11644 (name "r-sodium")
11645 (version "1.1")
11646 (source
11647 (origin
11648 (method url-fetch)
11649 (uri (cran-uri "sodium" version))
11650 (sha256
11651 (base32
11652 "1zxzi8xvxnhgcd5qrylf08nz1cdq3aslrswjas440qg63ypmbf6w"))))
11653 (properties `((upstream-name . "sodium")))
11654 (build-system r-build-system)
11655 (inputs
11656 `(("libsodium" ,libsodium)))
11657 (native-inputs
11658 `(("pkg-config" ,pkg-config)
11659 ("r-knitr" ,r-knitr)))
11660 (home-page "https://github.com/jeroen/sodium")
11661 (synopsis "R bindings to the libsodium crypto library")
11662 (description
11663 "This package provides bindings to libsodium: a library for encryption,
11664 decryption, signatures, password hashing and more. Sodium uses curve25519, a
11665 Diffie-Hellman function by Daniel Bernstein, which has become very popular
11666 after it was discovered that the NSA had backdoored Dual EC DRBG.")
11667 (license license:expat)))
11668
11669 (define-public r-softimpute
11670 (package
11671 (name "r-softimpute")
11672 (version "1.4")
11673 (source
11674 (origin
11675 (method url-fetch)
11676 (uri (cran-uri "softImpute" version))
11677 (sha256
11678 (base32
11679 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
11680 (properties `((upstream-name . "softImpute")))
11681 (build-system r-build-system)
11682 (propagated-inputs
11683 `(("r-matrix" ,r-matrix)))
11684 (native-inputs
11685 `(("gfortran" ,gfortran)))
11686 (home-page "https://cran.r-project.org/web/packages/softImpute")
11687 (synopsis "Matrix completion via iterative soft-thresholded SVD")
11688 (description
11689 "This package provides iterative methods for matrix completion that use
11690 nuclear-norm regularization. The package includes procedures for centering
11691 and scaling rows, columns or both, and for computing low-rank @dfn{single
11692 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
11693 components).")
11694 (license license:gpl2)))
11695
11696 (define-public r-fftwtools
11697 (package
11698 (name "r-fftwtools")
11699 (version "0.9-11")
11700 (source
11701 (origin
11702 (method url-fetch)
11703 (uri (cran-uri "fftwtools" version))
11704 (sha256
11705 (base32
11706 "0zrchp4l0jdbir2gibjf00x225y9giqk80zvqmr2yyvc12lwkw7i"))))
11707 (build-system r-build-system)
11708 (inputs `(("fftw" ,fftw)))
11709 (native-inputs
11710 `(("pkg-config" ,pkg-config)))
11711 (home-page "https://github.com/krahim/fftwtools")
11712 (synopsis "Wrapper for FFTW3")
11713 (description
11714 "This package provides a wrapper for several FFTW functions. It provides
11715 access to the two-dimensional FFT, the multivariate FFT, and the
11716 one-dimensional real to complex FFT using the FFTW3 library. The package
11717 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
11718 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
11719 The FFT functions have a parameter that allows them to not return the
11720 redundant complex conjugate when the input is real data.")
11721 (license license:gpl2+)))
11722
11723 (define-public r-tiff
11724 (package
11725 (name "r-tiff")
11726 (version "0.1-7")
11727 (source
11728 (origin
11729 (method url-fetch)
11730 (uri (cran-uri "tiff" version))
11731 (sha256
11732 (base32
11733 "101n6x70fr1dhcwx53g3s8q1j4wh93y0388v1s1316f8558rxqxh"))))
11734 (build-system r-build-system)
11735 (inputs
11736 `(("libtiff" ,libtiff)
11737 ("libjpeg" ,libjpeg-turbo)
11738 ("zlib" ,zlib)))
11739 (home-page "https://www.rforge.net/tiff/")
11740 (synopsis "Read and write TIFF images")
11741 (description
11742 "This package provides an easy and simple way to read, write and display
11743 bitmap images stored in the TIFF format. It can read and write both files and
11744 in-memory raw vectors.")
11745 ;; Either of these two license versions.
11746 (license (list license:gpl2 license:gpl3))))
11747
11748 (define-public r-nlp
11749 (package
11750 (name "r-nlp")
11751 (version "0.2-1")
11752 (source
11753 (origin
11754 (method url-fetch)
11755 (uri (cran-uri "NLP" version))
11756 (sha256
11757 (base32
11758 "1dpj04fmld2lnhg072ahgjbhmciqqy9h1lrz0wf32mr7mm9s9sh5"))))
11759 (properties `((upstream-name . "NLP")))
11760 (build-system r-build-system)
11761 (home-page "https://cran.r-project.org/web/packages/NLP/")
11762 (synopsis "Natural language processing infrastructure")
11763 (description
11764 "This package provides basic classes and methods for Natural Language
11765 Processing.")
11766 (license license:gpl3)))
11767
11768 (define-public r-tm
11769 (package
11770 (name "r-tm")
11771 (version "0.7-8")
11772 (source
11773 (origin
11774 (method url-fetch)
11775 (uri (cran-uri "tm" version))
11776 (sha256
11777 (base32
11778 "0mk2lsplynms15nw92vbdgsafg4bw1m0ik31gch1mnsnv61idsxi"))))
11779 (properties `((upstream-name . "tm")))
11780 (build-system r-build-system)
11781 (propagated-inputs
11782 `(("r-bh" ,r-bh)
11783 ("r-nlp" ,r-nlp)
11784 ("r-rcpp" ,r-rcpp)
11785 ("r-slam" ,r-slam)
11786 ("r-xml2" ,r-xml2)))
11787 (home-page "http://tm.r-forge.r-project.org/")
11788 (synopsis "Text mining package")
11789 (description
11790 "This package provides a framework for text mining applications within R.")
11791 (license license:gpl3)))
11792
11793 (define-public r-waveslim
11794 (package
11795 (name "r-waveslim")
11796 (version "1.8.2")
11797 (source
11798 (origin
11799 (method url-fetch)
11800 (uri (cran-uri "waveslim" version))
11801 (sha256
11802 (base32
11803 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
11804 (build-system r-build-system)
11805 (native-inputs
11806 `(("gfortran" ,gfortran)))
11807 (home-page "http://waveslim.blogspot.com")
11808 (synopsis "Basic wavelet routines for signal processing")
11809 (description
11810 "This package provides basic wavelet routines for time series (1D),
11811 image (2D) and array (3D) analysis. The code provided here is based on
11812 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
11813 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
11814 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
11815 pairs (Selesnick 2001, 2002).")
11816 (license license:bsd-3)))
11817
11818 (define-public r-wordcloud
11819 (package
11820 (name "r-wordcloud")
11821 (version "2.6")
11822 (source
11823 (origin
11824 (method url-fetch)
11825 (uri (cran-uri "wordcloud" version))
11826 (sha256
11827 (base32
11828 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
11829 (build-system r-build-system)
11830 (propagated-inputs
11831 `(("r-rcolorbrewer" ,r-rcolorbrewer)
11832 ("r-rcpp" ,r-rcpp)
11833 ;; The "tm" package is only "suggested" according to CRAN, but the
11834 ;; wordcloud package cannot be loaded without it.
11835 ("r-tm" ,r-tm)))
11836 (home-page "https://cran.r-project.org/web/packages/wordcloud")
11837 (synopsis "Word clouds")
11838 (description
11839 "This package provides functionality to create pretty word clouds,
11840 visualize differences and similarity between documents, and avoid
11841 over-plotting in scatter plots with text.")
11842 (license license:lgpl2.1)))
11843
11844 (define-public r-colorramps
11845 (package
11846 (name "r-colorramps")
11847 (version "2.3")
11848 (source
11849 (origin
11850 (method url-fetch)
11851 (uri (cran-uri "colorRamps" version))
11852 (sha256
11853 (base32
11854 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
11855 (properties `((upstream-name . "colorRamps")))
11856 (build-system r-build-system)
11857 (home-page "https://cran.r-project.org/web/packages/colorRamps")
11858 (synopsis "Build color tables")
11859 (description "This package provides features to build gradient color
11860 maps.")
11861 ;; Any version of the GPL
11862 (license license:gpl3+)))
11863
11864 (define-public r-tidytree
11865 (package
11866 (name "r-tidytree")
11867 (version "0.3.3")
11868 (source
11869 (origin
11870 (method url-fetch)
11871 (uri (cran-uri "tidytree" version))
11872 (sha256
11873 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
11874 (build-system r-build-system)
11875 (propagated-inputs
11876 `(("r-ape" ,r-ape)
11877 ("r-dplyr" ,r-dplyr)
11878 ("r-lazyeval" ,r-lazyeval)
11879 ("r-magrittr" ,r-magrittr)
11880 ("r-rlang" ,r-rlang)
11881 ("r-tibble" ,r-tibble)))
11882 (native-inputs
11883 `(("r-knitr" ,r-knitr)))
11884 (home-page "https://github.com/GuangchuangYu/tidytree")
11885 (synopsis "Tidy tool for phylogenetic tree data manipulation")
11886 (description
11887 "Phylogenetic trees generally contain multiple components including nodes,
11888 edges, branches and associated data. This package provides an approach to
11889 convert tree objects to tidy data frames. It also provides tidy interfaces to
11890 manipulate tree data.")
11891 (license license:artistic2.0)))
11892
11893 (define-public r-rvcheck
11894 (package
11895 (name "r-rvcheck")
11896 (version "0.1.8")
11897 (source
11898 (origin
11899 (method url-fetch)
11900 (uri (cran-uri "rvcheck" version))
11901 (sha256
11902 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
11903 (build-system r-build-system)
11904 (propagated-inputs
11905 `(("r-biocmanager" ,r-biocmanager)
11906 ("r-rlang" ,r-rlang)))
11907 (home-page "https://cran.r-project.org/web/packages/rvcheck")
11908 (synopsis "R package version check")
11909 (description
11910 "This package provides tools to check the latest release version of R and
11911 R packages (on CRAN, Bioconductor or Github).")
11912 (license license:artistic2.0)))
11913
11914 (define-public r-docopt
11915 (package
11916 (name "r-docopt")
11917 (version "0.7.1")
11918 (source
11919 (origin
11920 (method url-fetch)
11921 (uri (cran-uri "docopt" version))
11922 (sha256
11923 (base32
11924 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
11925 (build-system r-build-system)
11926 (home-page "https://github.com/docopt/docopt.R")
11927 (synopsis "Command-line interface specification language")
11928 (description
11929 "This package enables you to define a command-line interface by just
11930 giving it a description in the specific format.")
11931 (license license:expat)))
11932
11933 (define-public r-sparsesvd
11934 (package
11935 (name "r-sparsesvd")
11936 (version "0.2")
11937 (source
11938 (origin
11939 (method url-fetch)
11940 (uri (cran-uri "sparsesvd" version))
11941 (sha256
11942 (base32
11943 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
11944 (build-system r-build-system)
11945 (propagated-inputs `(("r-matrix" ,r-matrix)))
11946 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
11947 (synopsis "Sparse truncated singular value decomposition")
11948 (description
11949 "This package provides a Wrapper around the SVDLIBC library
11950 for (truncated) singular value decomposition of a sparse matrix. Currently,
11951 only sparse real matrices in Matrix package format are supported.")
11952 ;; SVDLIBC is released under BSD-2. The R interface is released under
11953 ;; BSD-3.
11954 (license (list license:bsd-3 license:bsd-2))))
11955
11956 (define-public r-speedglm
11957 (package
11958 (name "r-speedglm")
11959 (version "0.3-3")
11960 (source
11961 (origin
11962 (method url-fetch)
11963 (uri (cran-uri "speedglm" version))
11964 (sha256
11965 (base32
11966 "0f37w4lj8dpcg1sfkd7cv6qpdkanmb97mnd8zih2fxzv8bpd0rfh"))))
11967 (build-system r-build-system)
11968 (propagated-inputs
11969 `(("r-mass" ,r-mass)
11970 ("r-matrix" ,r-matrix)))
11971 (home-page "https://cran.r-project.org/web/packages/speedglm")
11972 (synopsis "Fit linear and generalized linear models to large data sets")
11973 (description
11974 "This package provides tools for fitting linear models and generalized
11975 linear models to large data sets by updating algorithms.")
11976 ;; Any version of the GPL
11977 (license license:gpl2+)))
11978
11979 (define-public r-densityclust
11980 (package
11981 (name "r-densityclust")
11982 (version "0.3")
11983 (source
11984 (origin
11985 (method url-fetch)
11986 (uri (cran-uri "densityClust" version))
11987 (sha256
11988 (base32
11989 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
11990 (properties `((upstream-name . "densityClust")))
11991 (build-system r-build-system)
11992 (propagated-inputs
11993 `(("r-fnn" ,r-fnn)
11994 ("r-ggplot2" ,r-ggplot2)
11995 ("r-ggrepel" ,r-ggrepel)
11996 ("r-gridextra" ,r-gridextra)
11997 ("r-rcolorbrewer" ,r-rcolorbrewer)
11998 ("r-rcpp" ,r-rcpp)
11999 ("r-rtsne" ,r-rtsne)))
12000 (home-page "https://cran.r-project.org/web/packages/densityClust")
12001 (synopsis "Clustering by fast search and find of density peaks")
12002 (description
12003 "This package provides an improved implementation (based on k-nearest
12004 neighbors) of the density peak clustering algorithm, originally described by
12005 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
12006 large datasets (> 100,000 samples) very efficiently.")
12007 (license license:gpl2+)))
12008
12009 (define-public r-combinat
12010 (package
12011 (name "r-combinat")
12012 (version "0.0-8")
12013 (source
12014 (origin
12015 (method url-fetch)
12016 (uri (cran-uri "combinat" version))
12017 (sha256
12018 (base32
12019 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
12020 (build-system r-build-system)
12021 (home-page "https://cran.r-project.org/web/packages/combinat")
12022 (synopsis "Combinatorics utilities")
12023 (description "This package provides assorted routines for combinatorics.")
12024 (license license:gpl2)))
12025
12026 (define-public r-qlcmatrix
12027 (package
12028 (name "r-qlcmatrix")
12029 (version "0.9.7")
12030 (source
12031 (origin
12032 (method url-fetch)
12033 (uri (cran-uri "qlcMatrix" version))
12034 (sha256
12035 (base32
12036 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
12037 (properties `((upstream-name . "qlcMatrix")))
12038 (build-system r-build-system)
12039 (propagated-inputs
12040 `(("r-docopt" ,r-docopt)
12041 ("r-matrix" ,r-matrix)
12042 ("r-slam" ,r-slam)
12043 ("r-sparsesvd" ,r-sparsesvd)))
12044 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
12045 (synopsis "Sparse matrix functions for quantitative language comparison")
12046 (description
12047 "This package provides an extension of the functionality of the Matrix
12048 package for using sparse matrices. Some of the functions are very general,
12049 while other are highly specific for the special data format used for
12050 @dfn{quantitative language comparison} (QLC).")
12051 (license license:gpl3)))
12052
12053 (define-public r-ddrtree
12054 (package
12055 (name "r-ddrtree")
12056 (version "0.1.5")
12057 (source
12058 (origin
12059 (method url-fetch)
12060 (uri (cran-uri "DDRTree" version))
12061 (sha256
12062 (base32
12063 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
12064 (properties `((upstream-name . "DDRTree")))
12065 (build-system r-build-system)
12066 (propagated-inputs
12067 `(("r-bh" ,r-bh)
12068 ("r-irlba" ,r-irlba)
12069 ("r-rcpp" ,r-rcpp)
12070 ("r-rcppeigen" ,r-rcppeigen)))
12071 (home-page "https://cran.r-project.org/web/packages/DDRTree")
12072 (synopsis "Learning principal graphs with DDRTree")
12073 (description
12074 "This package provides an implementation of the framework of
12075 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
12076 dimensional space while constructs a principal tree which passes through the
12077 middle of the data simultaneously. DDRTree shows superiority to
12078 alternatives (Wishbone, DPT) for inferring the ordering as well as the
12079 intrinsic structure of single cell genomics data. In general, it could be
12080 used to reconstruct the temporal progression as well as the bifurcation
12081 structure of any data type.")
12082 (license license:asl2.0)))
12083
12084 (define-public r-corpcor
12085 (package
12086 (name "r-corpcor")
12087 (version "1.6.9")
12088 (source
12089 (origin
12090 (method url-fetch)
12091 (uri (cran-uri "corpcor" version))
12092 (sha256
12093 (base32
12094 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
12095 (build-system r-build-system)
12096 (home-page "http://strimmerlab.org/software/corpcor/")
12097 (synopsis "Efficient estimation of covariance and (partial) correlation")
12098 (description
12099 "This package implements a James-Stein-type shrinkage estimator for the
12100 covariance matrix, with separate shrinkage for variances and correlations.
12101 Furthermore, functions are available for fast singular value decomposition,
12102 for computing the pseudoinverse, and for checking the rank and positive
12103 definiteness of a matrix.")
12104 (license license:gpl3+)))
12105
12106 (define-public r-rspectra
12107 (package
12108 (name "r-rspectra")
12109 (version "0.16-0")
12110 (source
12111 (origin
12112 (method url-fetch)
12113 (uri (cran-uri "RSpectra" version))
12114 (sha256
12115 (base32
12116 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
12117 (properties `((upstream-name . "RSpectra")))
12118 (build-system r-build-system)
12119 (propagated-inputs
12120 `(("r-matrix" ,r-matrix)
12121 ("r-rcpp" ,r-rcpp)
12122 ("r-rcppeigen" ,r-rcppeigen)))
12123 (home-page "https://github.com/yixuan/RSpectra")
12124 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
12125 (description
12126 "This package provides an R interface to the Spectra library for
12127 large-scale eigenvalue and SVD problems. It is typically used to compute a
12128 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
12129 which is usually more efficient than @code{eigen()} if k << n.")
12130 ;; MPL 2 or later.
12131 (license license:mpl2.0)))
12132
12133 (define-public r-vbsr
12134 (package
12135 (name "r-vbsr")
12136 (version "0.0.5")
12137 (source
12138 (origin
12139 (method url-fetch)
12140 (uri (cran-uri "vbsr" version))
12141 (sha256
12142 (base32
12143 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
12144 (build-system r-build-system)
12145 (home-page "https://cran.r-project.org/web/packages/vbsr")
12146 (synopsis "Variational Bayes spike regression regularized linear models")
12147 (description
12148 "This package provides an efficient algorithm for solving ultra-sparse
12149 regularized regression models using a variational Bayes algorithm with a spike
12150 prior. The algorithm is solved on a path, with coordinate updates, and is
12151 capable of generating very sparse models. Very general model
12152 diagnostics for controlling type-1 errors are also provided.")
12153 (license license:gpl2)))
12154
12155 (define-public r-flare
12156 (package
12157 (name "r-flare")
12158 (version "1.7.0")
12159 (source
12160 (origin
12161 (method url-fetch)
12162 (uri (cran-uri "flare" version))
12163 (sha256
12164 (base32
12165 "0f992dmgnr6s8g3386i9bjfyf08q8srgw7sjz2yx7snj8znq7251"))))
12166 (build-system r-build-system)
12167 (propagated-inputs
12168 `(("r-igraph" ,r-igraph)
12169 ("r-lattice" ,r-lattice)
12170 ("r-mass" ,r-mass)
12171 ("r-matrix" ,r-matrix)))
12172 (home-page "https://cran.r-project.org/web/packages/flare")
12173 (synopsis "Family of Lasso regression implementations")
12174 (description
12175 "This package provides implementations of a family of Lasso variants
12176 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
12177 high dimensional sparse linear models.")
12178 (license license:gpl2)))
12179
12180 (define-public r-lassopv
12181 (package
12182 (name "r-lassopv")
12183 (version "0.2.0")
12184 (source
12185 (origin
12186 (method url-fetch)
12187 (uri (cran-uri "lassopv" version))
12188 (sha256
12189 (base32
12190 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
12191 (build-system r-build-system)
12192 (propagated-inputs `(("r-lars" ,r-lars)))
12193 (home-page "https://github.com/lingfeiwang/lassopv")
12194 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
12195 (description
12196 "This package enables you to estimate the p-values for predictors x
12197 against target variable y in Lasso regression, using the regularization
12198 strength when each predictor enters the active set of regularization path for
12199 the first time as the statistic.")
12200 (license license:gpl3)))
12201
12202 (define-public r-splitstackshape
12203 (package
12204 (name "r-splitstackshape")
12205 (version "1.4.8")
12206 (source
12207 (origin
12208 (method url-fetch)
12209 (uri (cran-uri "splitstackshape" version))
12210 (sha256
12211 (base32
12212 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
12213 (build-system r-build-system)
12214 (propagated-inputs
12215 `(("r-data-table" ,r-data-table)))
12216 (home-page "https://github.com/mrdwab/splitstackshape")
12217 (synopsis "Stack and reshape datasets after splitting concatenated values")
12218 (description
12219 "Online data collection tools like Google Forms often export
12220 multiple-response questions with data concatenated in cells. The
12221 @code{concat.split} (cSplit) family of functions provided by this package
12222 splits such data into separate cells. This package also includes functions to
12223 stack groups of columns and to reshape wide data, even when the data are
12224 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
12225 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
12226 handle.")
12227 (license license:gpl3)))
12228
12229 (define-public r-tfmpvalue
12230 (package
12231 (name "r-tfmpvalue")
12232 (version "0.0.8")
12233 (source
12234 (origin
12235 (method url-fetch)
12236 (uri (cran-uri "TFMPvalue" version))
12237 (sha256
12238 (base32
12239 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
12240 (properties `((upstream-name . "TFMPvalue")))
12241 (build-system r-build-system)
12242 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12243 (home-page "https://github.com/ge11232002/TFMPvalue")
12244 (synopsis "P-value computation for position weight matrices")
12245 (description
12246 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
12247 identification from sequence/alignments, we are interested in the significance
12248 of certain match scores. TFMPvalue provides the accurate calculation of a
12249 p-value with a score threshold for position weight matrices, or the score with
12250 a given p-value. It is an interface to code originally made available by
12251 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
12252 Touzet and Varre (2007).")
12253 (license license:gpl2)))
12254
12255 (define-public r-rnifti
12256 (package
12257 (name "r-rnifti")
12258 (version "1.3.0")
12259 (source
12260 (origin
12261 (method url-fetch)
12262 (uri (cran-uri "RNifti" version))
12263 (sha256
12264 (base32
12265 "1zr0q79id62csmc30c7gs4hbmavk8n6p50a981sfz51dczhjj5ny"))))
12266 (properties `((upstream-name . "RNifti")))
12267 (build-system r-build-system)
12268 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12269 (home-page "https://github.com/jonclayden/RNifti")
12270 (synopsis "Fast R and C++ access to NIfTI images")
12271 (description
12272 "This package provides very fast read and write access to images stored
12273 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
12274 compiled C and interpreted R code. It also provides a C/C++ API that can be
12275 used by other packages.")
12276 (license license:gpl2)))
12277
12278 (define-public r-shades
12279 (package
12280 (name "r-shades")
12281 (version "1.4.0")
12282 (source
12283 (origin
12284 (method url-fetch)
12285 (uri (cran-uri "shades" version))
12286 (sha256
12287 (base32
12288 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
12289 (build-system r-build-system)
12290 (home-page "https://github.com/jonclayden/shades")
12291 (synopsis "Simple color manipulation")
12292 (description
12293 "This package provides functions for easily manipulating colors,
12294 creating color scales and calculating color distances.")
12295 (license license:bsd-3)))
12296
12297 (define-public r-ore
12298 (package
12299 (name "r-ore")
12300 (version "1.6.3")
12301 (source
12302 (origin
12303 (method url-fetch)
12304 (uri (cran-uri "ore" version))
12305 (sha256
12306 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
12307 (build-system r-build-system)
12308 (home-page "https://github.com/jonclayden/ore")
12309 (synopsis "R interface to the Onigmo regular expression library")
12310 (description
12311 "This package provides an alternative to R's built-in functionality for
12312 handling regular expressions, based on the Onigmo library. It offers
12313 first-class compiled regex objects, partial matching and function-based
12314 substitutions, amongst other features.")
12315 (license license:bsd-3)))
12316
12317 (define-public r-reportr
12318 (package
12319 (name "r-reportr")
12320 (version "1.3.0")
12321 (source
12322 (origin
12323 (method url-fetch)
12324 (uri (cran-uri "reportr" version))
12325 (sha256
12326 (base32
12327 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
12328 (build-system r-build-system)
12329 (propagated-inputs `(("r-ore" ,r-ore)))
12330 (home-page "https://github.com/jonclayden/reportr")
12331 (synopsis "General message and error reporting system")
12332 (description
12333 "This package provides a system for reporting messages, which offers
12334 certain useful features over the standard R system, such as the incorporation
12335 of output consolidation, message filtering, assertions, expression
12336 substitution, automatic generation of stack traces for debugging, and
12337 conditional reporting based on the current \"output level\".")
12338 (license license:gpl2)))
12339
12340 (define-public r-tractor-base
12341 (package
12342 (name "r-tractor-base")
12343 (version "3.3.3.1")
12344 (source
12345 (origin
12346 (method url-fetch)
12347 (uri (cran-uri "tractor.base" version))
12348 (sha256
12349 (base32
12350 "0w5jw7pf77npkgig7667yikpbwv4dfk1dcq63qm88l409ga2f95p"))))
12351 (properties `((upstream-name . "tractor.base")))
12352 (build-system r-build-system)
12353 (propagated-inputs
12354 `(("r-ore" ,r-ore)
12355 ("r-reportr" ,r-reportr)
12356 ("r-rnifti" ,r-rnifti)
12357 ("r-shades" ,r-shades)))
12358 (home-page "https://www.tractor-mri.org.uk")
12359 (synopsis "Read, manipulate and visualize magnetic resonance images")
12360 (description
12361 "This package provides functions for working with magnetic resonance
12362 images. It supports reading and writing of popular file formats (DICOM,
12363 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
12364 visualization; flexible image manipulation; metadata and sparse image
12365 handling.")
12366 (license license:gpl2)))
12367
12368 (define-public r-grimport
12369 (package
12370 (name "r-grimport")
12371 (version "0.9-3")
12372 (source
12373 (origin
12374 (method url-fetch)
12375 (uri (cran-uri "grImport" version))
12376 (sha256
12377 (base32
12378 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
12379 (properties `((upstream-name . "grImport")))
12380 (build-system r-build-system)
12381 (inputs
12382 `(("ghostscript" ,ghostscript)))
12383 (propagated-inputs
12384 `(("r-xml" ,r-xml)))
12385 (home-page "https://cran.r-project.org/web/packages/grImport")
12386 (synopsis "Convert, import, and draw PostScript pictures")
12387 (description
12388 "This package provides functions for converting, importing, and drawing
12389 PostScript pictures in R plots.")
12390 (license license:gpl2+)))
12391
12392 (define-public r-grimport2
12393 (package
12394 (name "r-grimport2")
12395 (version "0.2-0")
12396 (source
12397 (origin
12398 (method url-fetch)
12399 (uri (cran-uri "grImport2" version))
12400 (sha256
12401 (base32
12402 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
12403 (properties `((upstream-name . "grImport2")))
12404 (build-system r-build-system)
12405 (propagated-inputs
12406 `(("r-base64enc" ,r-base64enc)
12407 ("r-jpeg" ,r-jpeg)
12408 ("r-png" ,r-png)
12409 ("r-xml" ,r-xml)))
12410 (home-page "https://cran.r-project.org/web/packages/grImport2/")
12411 (synopsis "Import SVG graphics")
12412 (description
12413 "This package provides functions for importing external vector images and
12414 drawing them as part of R plots. This package is different from the
12415 @code{grImport} package because, where that package imports PostScript format
12416 images, this package imports SVG format images. Furthermore, this package
12417 imports a specific subset of SVG, so external images must be preprocessed
12418 using a package like @code{rsvg} to produce SVG that this package can import.
12419 SVG features that are not supported by R graphics, such as gradient fills, can
12420 be imported and then exported via the @code{gridSVG} package.")
12421 (license license:gpl2+)))
12422
12423 (define-public r-kohonen
12424 (package
12425 (name "r-kohonen")
12426 (version "3.0.10")
12427 (source
12428 (origin
12429 (method url-fetch)
12430 (uri (cran-uri "kohonen" version))
12431 (sha256
12432 (base32
12433 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
12434 (build-system r-build-system)
12435 (propagated-inputs
12436 `(("r-rcpp" ,r-rcpp)))
12437 (home-page "https://cran.r-project.org/web/packages/kohonen")
12438 (synopsis "Supervised and unsupervised self-organising maps")
12439 (description
12440 "This package provides functions to train @dfn{self-organising
12441 maps} (SOMs). Also interrogation of the maps and prediction using trained
12442 maps are supported. The name of the package refers to Teuvo Kohonen, the
12443 inventor of the SOM.")
12444 (license license:gpl2+)))
12445
12446 (define-public r-nnls
12447 (package
12448 (name "r-nnls")
12449 (version "1.4")
12450 (source
12451 (origin
12452 (method url-fetch)
12453 (uri (cran-uri "nnls" version))
12454 (sha256
12455 (base32
12456 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
12457 (build-system r-build-system)
12458 (native-inputs `(("gfortran" ,gfortran)))
12459 (home-page "https://cran.r-project.org/web/packages/nnls")
12460 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
12461 (description
12462 "This package provides an R interface to the Lawson-Hanson implementation
12463 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
12464 the combination of non-negative and non-positive constraints.")
12465 (license license:gpl2+)))
12466
12467 (define-public r-iso
12468 (package
12469 (name "r-iso")
12470 (version "0.0-18.1")
12471 (source
12472 (origin
12473 (method url-fetch)
12474 (uri (cran-uri "Iso" version))
12475 (sha256
12476 (base32
12477 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
12478 (properties `((upstream-name . "Iso")))
12479 (build-system r-build-system)
12480 (native-inputs `(("gfortran" ,gfortran)))
12481 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
12482 (synopsis "Functions to perform isotonic regression")
12483 (description
12484 "This package provides support for linear order and unimodal
12485 order (univariate) isotonic regression and bivariate isotonic regression with
12486 linear order on both variables.")
12487 (license license:gpl2+)))
12488
12489 (define-public r-chemometricswithr
12490 (package
12491 (name "r-chemometricswithr")
12492 (version "0.1.13")
12493 (source
12494 (origin
12495 (method url-fetch)
12496 (uri (cran-uri "ChemometricsWithR" version))
12497 (sha256
12498 (base32
12499 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
12500 (properties
12501 `((upstream-name . "ChemometricsWithR")))
12502 (build-system r-build-system)
12503 (propagated-inputs
12504 `(("r-devtools" ,r-devtools)
12505 ("r-kohonen" ,r-kohonen)
12506 ("r-mass" ,r-mass)
12507 ("r-pls" ,r-pls)))
12508 (home-page "https://github.com/rwehrens/CWR")
12509 (synopsis "Chemometrics with R")
12510 (description
12511 "This package provides functions and scripts used in the book
12512 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
12513 Life Sciences\" by Ron Wehrens, Springer (2011).")
12514 (license license:gpl2+)))
12515
12516 (define-public r-als
12517 (package
12518 (name "r-als")
12519 (version "0.0.6")
12520 (source
12521 (origin
12522 (method url-fetch)
12523 (uri (cran-uri "ALS" version))
12524 (sha256
12525 (base32
12526 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
12527 (properties `((upstream-name . "ALS")))
12528 (build-system r-build-system)
12529 (propagated-inputs
12530 `(("r-iso" ,r-iso)
12531 ("r-nnls" ,r-nnls)))
12532 (home-page "https://cran.r-project.org/web/packages/ALS")
12533 (synopsis "Multivariate curve resolution alternating least squares")
12534 (description
12535 "Alternating least squares is often used to resolve components
12536 contributing to data with a bilinear structure; the basic technique may be
12537 extended to alternating constrained least squares. This package provides an
12538 implementation of @dfn{multivariate curve resolution alternating least
12539 squares} (MCR-ALS).
12540
12541 Commonly applied constraints include unimodality, non-negativity, and
12542 normalization of components. Several data matrices may be decomposed
12543 simultaneously by assuming that one of the two matrices in the bilinear
12544 decomposition is shared between datasets.")
12545 (license license:gpl2+)))
12546
12547 (define-public r-strucchange
12548 (package
12549 (name "r-strucchange")
12550 (version "1.5-2")
12551 (source
12552 (origin
12553 (method url-fetch)
12554 (uri (cran-uri "strucchange" version))
12555 (sha256
12556 (base32
12557 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
12558 (build-system r-build-system)
12559 (propagated-inputs
12560 `(("r-sandwich" ,r-sandwich)
12561 ("r-zoo" ,r-zoo)))
12562 (home-page "https://cran.r-project.org/web/packages/strucchange")
12563 (synopsis "Testing, monitoring, and dating structural changes")
12564 (description
12565 "This package provides tools for testing, monitoring and dating
12566 structural changes in (linear) regression models. It features tests/methods
12567 from the generalized fluctuation test framework as well as from the F
12568 test (Chow test) framework. This includes methods to fit, plot and test
12569 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
12570 statistics, respectively. It is possible to monitor incoming data online
12571 using fluctuation processes. Finally, the breakpoints in regression models
12572 with structural changes can be estimated together with confidence intervals.
12573 Emphasis is always given to methods for visualizing the data.")
12574 ;; Either of these two GPL versions
12575 (license (list license:gpl2 license:gpl3))))
12576
12577 (define-public r-pixmap
12578 (package
12579 (name "r-pixmap")
12580 (version "0.4-12")
12581 (source
12582 (origin
12583 (method url-fetch)
12584 (uri (cran-uri "pixmap" version))
12585 (sha256
12586 (base32
12587 "1v1a1adsgh5jlvvi98j4nhb1h681s97ip76zdrga12rlsjaahfw9"))))
12588 (build-system r-build-system)
12589 (home-page "https://cran.r-project.org/web/packages/pixmap")
12590 (synopsis "Tools for bitmap images")
12591 (description
12592 "This package provides functions for importing, exporting, plotting and
12593 other manipulations of bitmapped images.")
12594 (license license:gpl2)))
12595
12596 (define-public r-rapidjsonr
12597 (package
12598 (name "r-rapidjsonr")
12599 (version "1.2.0")
12600 (source
12601 (origin
12602 (method url-fetch)
12603 (uri (cran-uri "rapidjsonr" version))
12604 (sha256
12605 (base32
12606 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
12607 (build-system r-build-system)
12608 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
12609 (synopsis "JSON parser")
12610 (description
12611 "This package provides JSON parsing capability through the Rapidjson
12612 library.")
12613 (license license:expat)))
12614
12615 (define-public r-ontologyindex
12616 (package
12617 (name "r-ontologyindex")
12618 (version "2.7")
12619 (source
12620 (origin
12621 (method url-fetch)
12622 (uri (cran-uri "ontologyIndex" version))
12623 (sha256
12624 (base32
12625 "0j3h1spqwjhh1wbmwivmqcyi042yy7d565c3kxgn70xrmy693x1k"))))
12626 (properties `((upstream-name . "ontologyIndex")))
12627 (build-system r-build-system)
12628 (native-inputs
12629 `(("r-knitr" ,r-knitr)))
12630 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
12631 (synopsis "Functions for processing ontologies in R")
12632 (description
12633 "This package provides functions for reading ontologies into R as lists
12634 and manipulating sets of ontological terms.")
12635 (license license:gpl2+)))
12636
12637 (define-public r-gargle
12638 (package
12639 (name "r-gargle")
12640 (version "1.0.0")
12641 (source
12642 (origin
12643 (method url-fetch)
12644 (uri (cran-uri "gargle" version))
12645 (sha256
12646 (base32
12647 "0hsqn4hf935wn6vk2pwym7la4sdvy271y4cashp38pg4hkpg9zph"))))
12648 (build-system r-build-system)
12649 (propagated-inputs
12650 `(("r-fs" ,r-fs)
12651 ("r-glue" ,r-glue)
12652 ("r-httr" ,r-httr)
12653 ("r-jsonlite" ,r-jsonlite)
12654 ("r-rlang" ,r-rlang)
12655 ("r-withr" ,r-withr)))
12656 (native-inputs
12657 `(("r-knitr" ,r-knitr)))
12658 (home-page "https://gargle.r-lib.org")
12659 (synopsis "Utilities for working with Google APIs")
12660 (description
12661 "This package provides utilities for working with Google APIs. This
12662 includes functions and classes for handling common credential types and for
12663 preparing, executing, and processing HTTP requests.")
12664 (license license:expat)))
12665
12666 (define-public r-bigrquery
12667 (package
12668 (name "r-bigrquery")
12669 (version "1.3.2")
12670 (source
12671 (origin
12672 (method url-fetch)
12673 (uri (cran-uri "bigrquery" version))
12674 (sha256
12675 (base32
12676 "16whccv7f94vf57dvbbrhdskz3nnbmpa11a14kp7aynckldlfy0v"))))
12677 (build-system r-build-system)
12678 (propagated-inputs
12679 `(("r-assertthat" ,r-assertthat)
12680 ("r-bit64" ,r-bit64)
12681 ("r-curl" ,r-curl)
12682 ("r-dbi" ,r-dbi)
12683 ("r-gargle" ,r-gargle)
12684 ("r-glue" ,r-glue)
12685 ("r-httr" ,r-httr)
12686 ("r-jsonlite" ,r-jsonlite)
12687 ("r-prettyunits" ,r-prettyunits)
12688 ("r-progress" ,r-progress)
12689 ("r-rapidjsonr" ,r-rapidjsonr)
12690 ("r-rcpp" ,r-rcpp)
12691 ("r-rlang" ,r-rlang)
12692 ("r-tibble" ,r-tibble)))
12693 (home-page "https://github.com/rstats-db/bigrquery")
12694 (synopsis "R interface to Google's BigQuery API")
12695 (description
12696 "This package provides an R interface to Google's BigQuery database.")
12697 (license license:gpl3)))
12698
12699 (define-public r-gmp
12700 (package
12701 (name "r-gmp")
12702 (version "0.6-2")
12703 (source
12704 (origin
12705 (method url-fetch)
12706 (uri (cran-uri "gmp" version))
12707 (sha256
12708 (base32
12709 "03kzbflgpy5sgnzxmhshs5qv7jjmfc113ybkhxys4z8y7xdv9z3b"))))
12710 (build-system r-build-system)
12711 (arguments
12712 '(#:phases
12713 (modify-phases %standard-phases
12714 (add-after 'unpack 'set-CC
12715 (lambda _ (setenv "CC" "gcc") #t)))))
12716 (inputs `(("gmp" ,gmp)))
12717 (home-page "https://cran.r-project.org/web/packages/gmp")
12718 (synopsis "Multiple precision arithmetic")
12719 (description
12720 "This package supports multiple precision arithmetic (big integers and
12721 rationals, prime number tests, matrix computation), \"arithmetic without
12722 limitations\" using the GNU Multiple Precision library.")
12723 ;; Any version of the GPL.
12724 (license license:gpl3+)))
12725
12726 (define-public r-rmpfr
12727 (package
12728 (name "r-rmpfr")
12729 (version "0.8-2")
12730 (source
12731 (origin
12732 (method url-fetch)
12733 (uri (cran-uri "Rmpfr" version))
12734 (sha256
12735 (base32
12736 "007pc7fpzl2mcg3qxa2vfjip6m2dr314qjsnybkj3kdj70bszxkl"))))
12737 (properties `((upstream-name . "Rmpfr")))
12738 (build-system r-build-system)
12739 (inputs
12740 `(("mpfr" ,mpfr)
12741 ("gmp" ,gmp)))
12742 (propagated-inputs
12743 `(("r-gmp" ,r-gmp)))
12744 (native-inputs
12745 `(("pkg-config" ,pkg-config)))
12746 (home-page "http://rmpfr.r-forge.r-project.org/")
12747 (synopsis "R bindings to the MPFR library")
12748 (description
12749 "This package supports arithmetic (via S4 classes and methods) for
12750 arbitrary precision floating point numbers, including transcendental
12751 functions. To this end, the package interfaces with the @dfn{Multiple
12752 Precision Floating-Point Reliable} (MPFR) library.")
12753 (license license:gpl2+)))
12754
12755 (define-public r-assertive-base
12756 (package
12757 (name "r-assertive-base")
12758 (version "0.0-9")
12759 (source
12760 (origin
12761 (method url-fetch)
12762 (uri (cran-uri "assertive.base" version))
12763 (sha256
12764 (base32
12765 "07m0ddz092bgbl2fn1yk932h0iajdcqkri632477wl5a1q5r3w2b"))))
12766 (properties
12767 `((upstream-name . "assertive.base")))
12768 (build-system r-build-system)
12769 (home-page "https://bitbucket.org/richierocks/assertive.base")
12770 (synopsis "Core of the assertive package")
12771 (description
12772 "This package provides a minimal set of predicates and assertions used by
12773 the assertive package. This is mainly for use by other package developers who
12774 want to include run-time testing features in their own packages.")
12775 (license license:gpl3+)))
12776
12777 (define-public r-assertive-properties
12778 (package
12779 (name "r-assertive-properties")
12780 (version "0.0-4")
12781 (source
12782 (origin
12783 (method url-fetch)
12784 (uri (cran-uri "assertive.properties" version))
12785 (sha256
12786 (base32
12787 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
12788 (properties
12789 `((upstream-name . "assertive.properties")))
12790 (build-system r-build-system)
12791 (propagated-inputs
12792 `(("r-assertive-base" ,r-assertive-base)))
12793 (home-page "https://bitbucket.org/richierocks/assertive.properties")
12794 (synopsis "Assertions to check properties of variables")
12795 (description
12796 "This package provides a set of predicates and assertions for checking
12797 the properties of variables, such as length, names and attributes. This is
12798 mainly for use by other package developers who want to include run-time
12799 testing features in their own packages.")
12800 (license license:gpl3+)))
12801
12802 (define-public r-assertive-numbers
12803 (package
12804 (name "r-assertive-numbers")
12805 (version "0.0-2")
12806 (source
12807 (origin
12808 (method url-fetch)
12809 (uri (cran-uri "assertive.numbers" version))
12810 (sha256
12811 (base32
12812 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
12813 (properties
12814 `((upstream-name . "assertive.numbers")))
12815 (build-system r-build-system)
12816 (propagated-inputs
12817 `(("r-assertive-base" ,r-assertive-base)))
12818 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
12819 (synopsis "Assertions to check properties of numbers")
12820 (description
12821 "This package provides a set of predicates and assertions for checking
12822 the properties of numbers. This is mainly for use by other package developers
12823 who want to include run-time testing features in their own packages.")
12824 (license license:gpl3+)))
12825
12826 (define-public r-assertive-sets
12827 (package
12828 (name "r-assertive-sets")
12829 (version "0.0-3")
12830 (source
12831 (origin
12832 (method url-fetch)
12833 (uri (cran-uri "assertive.sets" version))
12834 (sha256
12835 (base32
12836 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
12837 (properties
12838 `((upstream-name . "assertive.sets")))
12839 (build-system r-build-system)
12840 (propagated-inputs
12841 `(("r-assertive-base" ,r-assertive-base)))
12842 (home-page "https://bitbucket.org/richierocks/assertive.sets")
12843 (synopsis "Assertions to check properties of sets")
12844 (description
12845 "This package provides a set of predicates and assertions for checking
12846 the properties of sets. This is mainly for use by other package developers
12847 who want to include run-time testing features in their own packages.")
12848 (license license:gpl3+)))
12849
12850 (define-public r-assertive-matrices
12851 (package
12852 (name "r-assertive-matrices")
12853 (version "0.0-2")
12854 (source
12855 (origin
12856 (method url-fetch)
12857 (uri (cran-uri "assertive.matrices" version))
12858 (sha256
12859 (base32
12860 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
12861 (properties
12862 `((upstream-name . "assertive.matrices")))
12863 (build-system r-build-system)
12864 (propagated-inputs
12865 `(("r-assertive-base" ,r-assertive-base)))
12866 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
12867 (synopsis "Assertions to check properties of matrices")
12868 (description
12869 "This package provides a set of predicates and assertions for checking
12870 the properties of matrices. This is mainly for use by other package
12871 developers who want to include run-time testing features in their own
12872 packages.")
12873 (license license:gpl3+)))
12874
12875 (define-public r-assertive-models
12876 (package
12877 (name "r-assertive-models")
12878 (version "0.0-2")
12879 (source
12880 (origin
12881 (method url-fetch)
12882 (uri (cran-uri "assertive.models" version))
12883 (sha256
12884 (base32
12885 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
12886 (properties
12887 `((upstream-name . "assertive.models")))
12888 (build-system r-build-system)
12889 (propagated-inputs
12890 `(("r-assertive-base" ,r-assertive-base)))
12891 (home-page "https://bitbucket.org/richierocks/assertive.models")
12892 (synopsis "Assertions to check properties of models")
12893 (description
12894 "This package provides a set of predicates and assertions for checking
12895 the properties of models. This is mainly for use by other package developers
12896 who want to include run-time testing features in their own packages.")
12897 (license license:gpl3+)))
12898
12899 (define-public r-assertive-reflection
12900 (package
12901 (name "r-assertive-reflection")
12902 (version "0.0-5")
12903 (source
12904 (origin
12905 (method url-fetch)
12906 (uri (cran-uri "assertive.reflection" version))
12907 (sha256
12908 (base32
12909 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
12910 (properties
12911 `((upstream-name . "assertive.reflection")))
12912 (build-system r-build-system)
12913 (propagated-inputs
12914 `(("r-assertive-base" ,r-assertive-base)))
12915 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
12916 (synopsis "Assertions for checking the state of R")
12917 (description
12918 "This package provides a set of predicates and assertions for checking
12919 the state and capabilities of R, the operating system it is running on, and
12920 the IDE being used. This is mainly for use by other package developers who
12921 want to include run-time testing features in their own packages.")
12922 (license license:gpl3+)))
12923
12924 (define-public r-assertive-types
12925 (package
12926 (name "r-assertive-types")
12927 (version "0.0-3")
12928 (source
12929 (origin
12930 (method url-fetch)
12931 (uri (cran-uri "assertive.types" version))
12932 (sha256
12933 (base32
12934 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
12935 (properties
12936 `((upstream-name . "assertive.types")))
12937 (build-system r-build-system)
12938 (propagated-inputs
12939 `(("r-assertive-base" ,r-assertive-base)
12940 ("r-assertive-properties" ,r-assertive-properties)
12941 ("r-codetools" ,r-codetools)))
12942 (home-page "https://bitbucket.org/richierocks/assertive.types")
12943 (synopsis "Assertions to check types of variables")
12944 (description
12945 "This package provides a set of predicates and assertions for checking
12946 the types of variables. This is mainly for use by other package developers
12947 who want to include run-time testing features in their own packages.")
12948 (license license:gpl3+)))
12949
12950 (define-public r-assertive-files
12951 (package
12952 (name "r-assertive-files")
12953 (version "0.0-2")
12954 (source
12955 (origin
12956 (method url-fetch)
12957 (uri (cran-uri "assertive.files" version))
12958 (sha256
12959 (base32
12960 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
12961 (properties
12962 `((upstream-name . "assertive.files")))
12963 (build-system r-build-system)
12964 (propagated-inputs
12965 `(("r-assertive-base" ,r-assertive-base)
12966 ("r-assertive-numbers" ,r-assertive-numbers)))
12967 (home-page "https://bitbucket.org/richierocks/assertive.files")
12968 (synopsis "Assertions to check properties of files")
12969 (description
12970 "This package provides a set of predicates and assertions for checking
12971 the properties of files and connections. This is mainly for use by other
12972 package developers who want to include run-time testing features in their own
12973 packages.")
12974 (license license:gpl3+)))
12975
12976 (define-public r-assertive-code
12977 (package
12978 (name "r-assertive-code")
12979 (version "0.0-3")
12980 (source
12981 (origin
12982 (method url-fetch)
12983 (uri (cran-uri "assertive.code" version))
12984 (sha256
12985 (base32
12986 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
12987 (properties
12988 `((upstream-name . "assertive.code")))
12989 (build-system r-build-system)
12990 (propagated-inputs
12991 `(("r-assertive-base" ,r-assertive-base)
12992 ("r-assertive-properties" ,r-assertive-properties)
12993 ("r-assertive-types" ,r-assertive-types)))
12994 (home-page "https://bitbucket.org/richierocks/assertive.code")
12995 (synopsis "Assertions to check properties of code")
12996 (description
12997 "This package provides a set of predicates and assertions for checking
12998 the properties of code. This is mainly for use by other package developers
12999 who want to include run-time testing features in their own packages.")
13000 (license license:gpl3+)))
13001
13002 (define-public r-assertive-datetimes
13003 (package
13004 (name "r-assertive-datetimes")
13005 (version "0.0-3")
13006 (source
13007 (origin
13008 (method url-fetch)
13009 (uri (cran-uri "assertive.datetimes" version))
13010 (sha256
13011 (base32
13012 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
13013 (properties
13014 `((upstream-name . "assertive.datetimes")))
13015 (build-system r-build-system)
13016 (propagated-inputs
13017 `(("r-assertive-base" ,r-assertive-base)
13018 ("r-assertive-types" ,r-assertive-types)))
13019 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
13020 (synopsis "Assertions to check properties of dates and times")
13021 (description
13022 "This package provides a set of predicates and assertions for checking
13023 the properties of dates and times. This is mainly for use by other package
13024 developers who want to include run-time testing features in their own
13025 packages.")
13026 (license license:gpl3+)))
13027
13028 (define-public r-assertive-strings
13029 (package
13030 (name "r-assertive-strings")
13031 (version "0.0-3")
13032 (source
13033 (origin
13034 (method url-fetch)
13035 (uri (cran-uri "assertive.strings" version))
13036 (sha256
13037 (base32
13038 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
13039 (properties
13040 `((upstream-name . "assertive.strings")))
13041 (build-system r-build-system)
13042 (propagated-inputs
13043 `(("r-assertive-base" ,r-assertive-base)
13044 ("r-assertive-types" ,r-assertive-types)
13045 ("r-stringi" ,r-stringi)))
13046 (home-page "https://bitbucket.org/richierocks/assertive.strings")
13047 (synopsis "Assertions to check properties of strings")
13048 (description
13049 "This package provides a set of predicates and assertions for checking
13050 the properties of strings. This is mainly for use by other package developers
13051 who want to include run-time testing features in their own packages.")
13052 (license license:gpl3+)))
13053
13054 (define-public r-assertive-data-us
13055 (package
13056 (name "r-assertive-data-us")
13057 (version "0.0-2")
13058 (source
13059 (origin
13060 (method url-fetch)
13061 (uri (cran-uri "assertive.data.us" version))
13062 (sha256
13063 (base32
13064 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
13065 (properties
13066 `((upstream-name . "assertive.data.us")))
13067 (build-system r-build-system)
13068 (propagated-inputs
13069 `(("r-assertive-base" ,r-assertive-base)
13070 ("r-assertive-strings" ,r-assertive-strings)))
13071 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
13072 (synopsis "Assertions to check properties of strings")
13073 (description
13074 "This package provides a set of predicates and assertions for checking
13075 the properties of US-specific complex data types. This is mainly for use by
13076 other package developers who want to include run-time testing features in
13077 their own packages.")
13078 (license license:gpl3+)))
13079
13080 (define-public r-assertive-data-uk
13081 (package
13082 (name "r-assertive-data-uk")
13083 (version "0.0-2")
13084 (source
13085 (origin
13086 (method url-fetch)
13087 (uri (cran-uri "assertive.data.uk" version))
13088 (sha256
13089 (base32
13090 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
13091 (properties
13092 `((upstream-name . "assertive.data.uk")))
13093 (build-system r-build-system)
13094 (propagated-inputs
13095 `(("r-assertive-base" ,r-assertive-base)
13096 ("r-assertive-strings" ,r-assertive-strings)))
13097 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
13098 (synopsis "Assertions to check properties of strings")
13099 (description
13100 "This package provides a set of predicates and assertions for checking
13101 the properties of UK-specific complex data types. This is mainly for use by
13102 other package developers who want to include run-time testing features in
13103 their own packages.")
13104 (license license:gpl3+)))
13105
13106 (define-public r-assertive-data
13107 (package
13108 (name "r-assertive-data")
13109 (version "0.0-3")
13110 (source
13111 (origin
13112 (method url-fetch)
13113 (uri (cran-uri "assertive.data" version))
13114 (sha256
13115 (base32
13116 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
13117 (properties
13118 `((upstream-name . "assertive.data")))
13119 (build-system r-build-system)
13120 (propagated-inputs
13121 `(("r-assertive-base" ,r-assertive-base)
13122 ("r-assertive-strings" ,r-assertive-strings)))
13123 (home-page "https://bitbucket.org/richierocks/assertive.data")
13124 (synopsis "Assertions to check properties of data")
13125 (description
13126 "This package provides a set of predicates and assertions for checking
13127 the properties of (country independent) complex data types. This is mainly
13128 for use by other package developers who want to include run-time testing
13129 features in their own packages.")
13130 (license license:gpl3+)))
13131
13132 (define-public r-assertive
13133 (package
13134 (name "r-assertive")
13135 (version "0.3-6")
13136 (source
13137 (origin
13138 (method url-fetch)
13139 (uri (cran-uri "assertive" version))
13140 (sha256
13141 (base32
13142 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
13143 (build-system r-build-system)
13144 (propagated-inputs
13145 `(("r-assertive-base" ,r-assertive-base)
13146 ("r-assertive-code" ,r-assertive-code)
13147 ("r-assertive-data" ,r-assertive-data)
13148 ("r-assertive-data-uk" ,r-assertive-data-uk)
13149 ("r-assertive-data-us" ,r-assertive-data-us)
13150 ("r-assertive-datetimes" ,r-assertive-datetimes)
13151 ("r-assertive-files" ,r-assertive-files)
13152 ("r-assertive-matrices" ,r-assertive-matrices)
13153 ("r-assertive-models" ,r-assertive-models)
13154 ("r-assertive-numbers" ,r-assertive-numbers)
13155 ("r-assertive-properties" ,r-assertive-properties)
13156 ("r-assertive-reflection" ,r-assertive-reflection)
13157 ("r-assertive-sets" ,r-assertive-sets)
13158 ("r-assertive-strings" ,r-assertive-strings)
13159 ("r-assertive-types" ,r-assertive-types)
13160 ("r-knitr" ,r-knitr)))
13161 (native-inputs
13162 `(("r-knitr" ,r-knitr)))
13163 (home-page "https://bitbucket.org/richierocks/assertive")
13164 (synopsis "Readable check functions to ensure code integrity")
13165 (description
13166 "This package provides lots of predicates (@code{is_*} functions) to
13167 check the state of your variables, and assertions (@code{assert_*} functions)
13168 to throw errors if they aren't in the right form.")
13169 (license license:gpl3+)))
13170
13171 (define-public r-dotcall64
13172 (package
13173 (name "r-dotcall64")
13174 (version "1.0-1")
13175 (source
13176 (origin
13177 (method url-fetch)
13178 (uri (cran-uri "dotCall64" version))
13179 (sha256
13180 (base32
13181 "1im5k8jbviwj2i42mq1kmjskh80isa7jr9w8i0fknidrzzy2h2zi"))))
13182 (properties `((upstream-name . "dotCall64")))
13183 (build-system r-build-system)
13184 (native-inputs `(("gfortran" ,gfortran)))
13185 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
13186 (synopsis "Enhanced foreign function interface supporting long vectors")
13187 (description
13188 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
13189 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
13190 supports long vectors, arguments of type 64-bit integer, and provides a
13191 mechanism to avoid unnecessary copies of read-only and write-only arguments.
13192 This makes it a convenient and fast interface to C/C++ and Fortran code.")
13193 (license license:gpl2+)))
13194
13195 (define-public r-spam
13196 (package
13197 (name "r-spam")
13198 (version "2.6-0")
13199 (source
13200 (origin
13201 (method url-fetch)
13202 (uri (cran-uri "spam" version))
13203 (sha256
13204 (base32 "0p5ycvpry955ldrgbbq3syy91wx9425mddpn8r5m9xwlirjxv3v3"))))
13205 (build-system r-build-system)
13206 (propagated-inputs
13207 `(("r-dotcall64" ,r-dotcall64)))
13208 (native-inputs
13209 `(("gfortran" ,gfortran)
13210 ("r-knitr" ,r-knitr)))
13211 (home-page "https://www.math.uzh.ch/pages/spam/")
13212 (synopsis "Sparse matrix algebra")
13213 (description
13214 "This package provides a set of functions for sparse matrix algebra.
13215 Differences with other sparse matrix packages are:
13216
13217 @enumerate
13218 @item it only supports (essentially) one sparse matrix format;
13219 @item it is based on transparent and simple structure(s);
13220 @item it is tailored for MCMC calculations within G(M)RF;
13221 @item and it is fast and scalable (with the extension package @code{spam64}).
13222 @end enumerate\n")
13223 ;; Either of these licenses
13224 (license (list license:bsd-3 license:lgpl2.0))))
13225
13226 (define-public r-fields
13227 (package
13228 (name "r-fields")
13229 (version "11.6")
13230 (source
13231 (origin
13232 (method url-fetch)
13233 (uri (cran-uri "fields" version))
13234 (sha256
13235 (base32 "1nsrgkw9w3mwd3sajyzc06h49gg1s0bkq6xh5b66h1n4jbcx2046"))))
13236 (build-system r-build-system)
13237 (propagated-inputs
13238 `(("r-maps" ,r-maps)
13239 ("r-spam" ,r-spam)))
13240 (native-inputs
13241 `(("gfortran" ,gfortran)))
13242 (home-page "https://www.image.ucar.edu/fields")
13243 (synopsis "Tools for spatial data")
13244 (description
13245 "This is a package for curve, surface and function fitting with an
13246 emphasis on splines, spatial data and spatial statistics. The major methods
13247 include cubic, and thin plate splines, Kriging, and compactly supported
13248 covariance functions for large data sets.")
13249 (license license:gpl2+)))
13250
13251 (define-public r-spatialextremes
13252 (package
13253 (name "r-spatialextremes")
13254 (version "2.0-9")
13255 (source
13256 (origin
13257 (method url-fetch)
13258 (uri (cran-uri "SpatialExtremes" version))
13259 (sha256
13260 (base32
13261 "1mhn1c8n3bmgf0fjyac3wji4790zswzkqliqcv3n8kv9806crb0y"))))
13262 (properties
13263 `((upstream-name . "SpatialExtremes")))
13264 (build-system r-build-system)
13265 (propagated-inputs
13266 `(("r-fields" ,r-fields)
13267 ("r-maps" ,r-maps)))
13268 (home-page "http://spatialextremes.r-forge.r-project.org/")
13269 (synopsis "Modelling spatial extremes")
13270 (description
13271 "This package provides tools for the statistical modelling of spatial
13272 extremes using max-stable processes, copula or Bayesian hierarchical models.
13273 More precisely, this package allows (conditional) simulations from various
13274 parametric max-stable models, analysis of the extremal spatial dependence, the
13275 fitting of such processes using composite likelihoods or least square (simple
13276 max-stable processes only), model checking and selection and prediction.")
13277 (license license:gpl2+)))
13278
13279 (define-public r-drc
13280 (package
13281 (name "r-drc")
13282 (version "3.0-1")
13283 (source
13284 (origin
13285 (method url-fetch)
13286 (uri (cran-uri "drc" version))
13287 (sha256
13288 (base32
13289 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
13290 (build-system r-build-system)
13291 (propagated-inputs
13292 `(("r-car" ,r-car)
13293 ("r-gtools" ,r-gtools)
13294 ("r-mass" ,r-mass)
13295 ("r-multcomp" ,r-multcomp)
13296 ("r-plotrix" ,r-plotrix)
13297 ("r-scales" ,r-scales)))
13298 (home-page "https://cran.r-project.org/web/packages/drc")
13299 (synopsis "Analysis of dose-response curves")
13300 (description
13301 "This package provides a suite of flexible and versatile model fitting
13302 and after-fitting functions for the analysis of dose-response data.")
13303 (license license:gpl2+)))
13304
13305 (define-public r-rmeta
13306 (package
13307 (name "r-rmeta")
13308 (version "3.0")
13309 (source
13310 (origin
13311 (method url-fetch)
13312 (uri (cran-uri "rmeta" version))
13313 (sha256
13314 (base32
13315 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
13316 (build-system r-build-system)
13317 (home-page "https://cran.r-project.org/web/packages/rmeta")
13318 (synopsis "Tools for meta-analysis")
13319 (description
13320 "This package provides functions for simple fixed and random effects
13321 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
13322 draws standard summary plots, funnel plots, and computes summaries and tests
13323 for association and heterogeneity.")
13324 (license license:gpl2)))
13325
13326 (define-public r-bootstrap
13327 (package
13328 (name "r-bootstrap")
13329 (version "2019.6")
13330 (source
13331 (origin
13332 (method url-fetch)
13333 (uri (cran-uri "bootstrap" version))
13334 (sha256
13335 (base32
13336 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
13337 (build-system r-build-system)
13338 (native-inputs `(("gfortran" ,gfortran)))
13339 (home-page "https://cran.r-project.org/web/packages/bootstrap")
13340 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
13341 (description
13342 "This package provides software and data for the book \"An Introduction
13343 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
13344 This package is primarily provided for projects already based on it, and for
13345 support of the book. New projects should preferentially use the recommended
13346 package \"boot\".")
13347 (license license:bsd-3)))
13348
13349 (define-public r-survivalroc
13350 (package
13351 (name "r-survivalroc")
13352 (version "1.0.3")
13353 (source
13354 (origin
13355 (method url-fetch)
13356 (uri (cran-uri "survivalROC" version))
13357 (sha256
13358 (base32
13359 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
13360 (properties `((upstream-name . "survivalROC")))
13361 (build-system r-build-system)
13362 (home-page "https://cran.r-project.org/web/packages/survivalROC")
13363 (synopsis "Time-dependent ROC curve estimation from censored survival data")
13364 (description
13365 "Compute time-dependent ROC curve from censored survival data using
13366 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
13367 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
13368 (license license:gpl2+)))
13369
13370 (define-public r-longitudinal
13371 (package
13372 (name "r-longitudinal")
13373 (version "1.1.12")
13374 (source
13375 (origin
13376 (method url-fetch)
13377 (uri (cran-uri "longitudinal" version))
13378 (sha256
13379 (base32
13380 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
13381 (build-system r-build-system)
13382 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
13383 (home-page "http://strimmerlab.org/software/longitudinal/")
13384 (synopsis "Analysis of multiple time course data")
13385 (description
13386 "This package contains general data structures and functions for
13387 longitudinal data with multiple variables, repeated measurements, and
13388 irregularly spaced time points. It also implements a shrinkage estimator of
13389 dynamical correlation and dynamical covariance.")
13390 (license license:gpl3+)))
13391
13392 (define-public r-genenet
13393 (package
13394 (name "r-genenet")
13395 (version "1.2.15")
13396 (source
13397 (origin
13398 (method url-fetch)
13399 (uri (cran-uri "GeneNet" version))
13400 (sha256
13401 (base32
13402 "11ba6ahsk3x9alvcw8bai2bpg84ki1m8nadrjjdhjg65svhw8njm"))))
13403 (properties `((upstream-name . "GeneNet")))
13404 (build-system r-build-system)
13405 (propagated-inputs
13406 `(("r-corpcor" ,r-corpcor)
13407 ("r-fdrtool" ,r-fdrtool)
13408 ("r-longitudinal" ,r-longitudinal)))
13409 (home-page "http://strimmerlab.org/software/genenet/")
13410 (synopsis "Modeling and inferring gene networks")
13411 (description
13412 "This package analyzes gene expression (time series) data with focus on
13413 the inference of gene networks. In particular, GeneNet implements the methods
13414 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
13415 for learning large-scale gene association networks (including assignment of
13416 putative directions).")
13417 (license license:gpl3+)))
13418
13419 (define-public r-rbamtools
13420 (package
13421 (name "r-rbamtools")
13422 (version "2.16.17")
13423 (source
13424 (origin
13425 (method url-fetch)
13426 (uri (cran-uri "rbamtools" version))
13427 (sha256
13428 (base32
13429 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
13430 (build-system r-build-system)
13431 (inputs `(("zlib" ,zlib)))
13432 (propagated-inputs
13433 `(("r-refgenome" ,r-refgenome)))
13434 (home-page "https://cran.r-project.org/web/packages/rbamtools")
13435 (synopsis "Read and write BAM (binary alignment) files")
13436 (description
13437 "This package provides an R interface to functions of the SAMtools
13438 library.")
13439 (license license:artistic2.0)))
13440
13441 (define-public r-protviz
13442 (package
13443 (name "r-protviz")
13444 (version "0.6.8")
13445 (source
13446 (origin
13447 (method url-fetch)
13448 (uri (cran-uri "protViz" version))
13449 (sha256
13450 (base32
13451 "0rn8fjg7791a4j2k1kk1jwx40xz20bfaavvflmhyzpl398vmmy3a"))))
13452 (properties `((upstream-name . "protViz")))
13453 (build-system r-build-system)
13454 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13455 (home-page "https://github.com/protViz/protViz/")
13456 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
13457 (description
13458 "This package helps with quality checks, visualizations and analysis of
13459 mass spectrometry data, coming from proteomics experiments. The package is
13460 developed, tested and used at the Functional Genomics Center Zurich, where it
13461 is used mainly for prototyping, teaching, and having fun with proteomics data.
13462 But it can also be used to do data analysis for small scale data sets.")
13463 (license license:gpl3)))
13464
13465 (define-public r-cmprsk
13466 (package
13467 (name "r-cmprsk")
13468 (version "2.2-10")
13469 (source
13470 (origin
13471 (method url-fetch)
13472 (uri (cran-uri "cmprsk" version))
13473 (sha256
13474 (base32 "1xnx2zanw548prxsw2zw5cddkkg6kj97jgyzw67achq5mnsvfbg8"))))
13475 (build-system r-build-system)
13476 (propagated-inputs
13477 `(("r-survival" ,r-survival)))
13478 (native-inputs
13479 `(("gfortran" ,gfortran)))
13480 (home-page "https://cran.r-project.org/web/packages/cmprsk")
13481 (synopsis "Subdistribution analysis of competing risks")
13482 (description
13483 "This package provides tool for estimation, testing and regression
13484 modeling of subdistribution functions in competing risks, as described in
13485 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
13486 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
13487 A proportional hazards model for the subdistribution of a competing risk,
13488 JASA, 94:496-509.")
13489 (license license:gpl2+)))
13490
13491 (define-public r-etm
13492 (package
13493 (name "r-etm")
13494 (version "1.1.1")
13495 (source
13496 (origin
13497 (method url-fetch)
13498 (uri (cran-uri "etm" version))
13499 (sha256
13500 (base32
13501 "1hvrplmdpjjpjji663rw0vjbbrzj2nvr04d1nkc8bf46p4ixyxgy"))))
13502 (build-system r-build-system)
13503 (propagated-inputs
13504 `(("r-data-table" ,r-data-table)
13505 ("r-lattice" ,r-lattice)
13506 ("r-rcpp" ,r-rcpp)
13507 ("r-rcpparmadillo" ,r-rcpparmadillo)
13508 ("r-survival" ,r-survival)))
13509 (home-page "https://cran.r-project.org/web/packages/etm")
13510 (synopsis "Empirical transition matrix")
13511 (description
13512 "The @dfn{empirical transition matrix} (etm) package estimates
13513 the matrix of transition probabilities for any time-inhomogeneous multistate
13514 model with finite state space using the Aalen-Johansen estimator.")
13515 (license license:expat)))
13516
13517 (define-public r-epi
13518 (package
13519 (name "r-epi")
13520 (version "2.44")
13521 (source
13522 (origin
13523 (method url-fetch)
13524 (uri (cran-uri "Epi" version))
13525 (sha256
13526 (base32
13527 "1wcxr1f7irgfdwzz4vf67114yhxrhxxxnhy4hfaww0zy91vzxx10"))))
13528 (properties `((upstream-name . "Epi")))
13529 (build-system r-build-system)
13530 (propagated-inputs
13531 `(("r-cmprsk" ,r-cmprsk)
13532 ("r-data-table" ,r-data-table)
13533 ("r-dplyr" ,r-dplyr)
13534 ("r-etm" ,r-etm)
13535 ("r-mass" ,r-mass)
13536 ("r-matrix" ,r-matrix)
13537 ("r-mgcv" ,r-mgcv)
13538 ("r-numderiv" ,r-numderiv)
13539 ("r-plyr" ,r-plyr)
13540 ("r-purrr" ,r-purrr)
13541 ("r-survival" ,r-survival)
13542 ("r-zoo" ,r-zoo)))
13543 (home-page "https://BendixCarstensen.com/Epi/")
13544 (synopsis "Statistical analysis in epidemiology")
13545 (description
13546 "This package provides functions for demographic and epidemiological
13547 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
13548 particular representation, manipulation and simulation of multistate data -
13549 the Lexis suite of functions, which includes interfaces to the @code{mstate},
13550 @code{etm} and @code{cmprsk} packages. It also contains functions for
13551 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
13552 data and some useful functions for tabulation and plotting, as well as a
13553 number of epidemiological data sets.")
13554 (license license:gpl2)))
13555
13556 (define-public r-ppls
13557 (package
13558 (name "r-ppls")
13559 (version "1.6-1.1")
13560 (source
13561 (origin
13562 (method url-fetch)
13563 (uri (cran-uri "ppls" version))
13564 (sha256
13565 (base32
13566 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
13567 (build-system r-build-system)
13568 (propagated-inputs `(("r-mass" ,r-mass)))
13569 (home-page "https://cran.r-project.org/web/packages/ppls")
13570 (synopsis "Penalized partial least squares")
13571 (description
13572 "This package contains linear and nonlinear regression methods based on
13573 partial least squares and penalization techniques. Model parameters are
13574 selected via cross-validation, and confidence intervals ans tests for the
13575 regression coefficients can be conducted via jackknifing.")
13576 (license license:gpl2+)))
13577
13578 (define-public r-huge
13579 (package
13580 (name "r-huge")
13581 (version "1.3.4.1")
13582 (source
13583 (origin
13584 (method url-fetch)
13585 (uri (cran-uri "huge" version))
13586 (sha256
13587 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
13588 (build-system r-build-system)
13589 (propagated-inputs
13590 `(("r-igraph" ,r-igraph)
13591 ("r-mass" ,r-mass)
13592 ("r-matrix" ,r-matrix)
13593 ("r-rcpp" ,r-rcpp)
13594 ("r-rcppeigen" ,r-rcppeigen)))
13595 (home-page "https://cran.r-project.org/web/packages/huge")
13596 (synopsis "High-dimensional undirected graph estimation")
13597 (description
13598 "This package provides a general framework for high-dimensional
13599 undirected graph estimation. It integrates data preprocessing, neighborhood
13600 screening, graph estimation, and model selection techniques into a pipeline.")
13601 (license license:gpl2)))
13602
13603 (define-public r-parcor
13604 (package
13605 (name "r-parcor")
13606 (version "0.2-6")
13607 (source
13608 (origin
13609 (method url-fetch)
13610 (uri (cran-uri "parcor" version))
13611 (sha256
13612 (base32
13613 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
13614 (build-system r-build-system)
13615 (propagated-inputs
13616 `(("r-epi" ,r-epi)
13617 ("r-genenet" ,r-genenet)
13618 ("r-glmnet" ,r-glmnet)
13619 ("r-mass" ,r-mass)
13620 ("r-ppls" ,r-ppls)))
13621 (home-page "https://cran.r-project.org/web/packages/parcor")
13622 (synopsis "Regularized estimation of partial correlation matrices")
13623 (description
13624 "This package estimates the matrix of partial correlations based on
13625 different regularized regression methods: lasso, adaptive lasso, PLS, and
13626 Ridge Regression. In addition, the package provides model selection for
13627 lasso, adaptive lasso and Ridge regression based on cross-validation.")
13628 (license license:gpl2+)))
13629
13630 (define-public r-mcmc
13631 (package
13632 (name "r-mcmc")
13633 (version "0.9-7")
13634 (source
13635 (origin
13636 (method url-fetch)
13637 (uri (cran-uri "mcmc" version))
13638 (sha256
13639 (base32
13640 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
13641 (build-system r-build-system)
13642 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
13643 (synopsis "Markov chain Monte Carlo")
13644 (description
13645 "This package simulates continuous distributions of random vectors using
13646 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
13647 function that evaluates the log unnormalized density. Algorithms are random
13648 walk Metropolis algorithm (function @code{metrop}), simulated
13649 tempering (function @code{temper}), and morphometric random walk
13650 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
13651 by change of variable.")
13652 (license license:expat)))
13653
13654 (define-public r-listenv
13655 (package
13656 (name "r-listenv")
13657 (version "0.8.0")
13658 (source
13659 (origin
13660 (method url-fetch)
13661 (uri (cran-uri "listenv" version))
13662 (sha256
13663 (base32
13664 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
13665 (build-system r-build-system)
13666 (native-inputs
13667 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13668 (home-page "https://github.com/HenrikBengtsson/listenv")
13669 (synopsis "Environments behaving (almost) as lists")
13670 (description
13671 "This package implements list environments. List environments are
13672 environments that have list-like properties. For instance, the elements of a
13673 list environment are ordered and can be accessed and iterated over using index
13674 subsetting.")
13675 (license license:lgpl2.1+)))
13676
13677 (define-public r-globals
13678 (package
13679 (name "r-globals")
13680 (version "0.14.0")
13681 (source
13682 (origin
13683 (method url-fetch)
13684 (uri (cran-uri "globals" version))
13685 (sha256
13686 (base32
13687 "1wrjiiif6rpc268zz79pvpw33si6n6ffgxdnxmmcracwhb5vqg90"))))
13688 (build-system r-build-system)
13689 (propagated-inputs
13690 `(("r-codetools" ,r-codetools)))
13691 (home-page "https://github.com/HenrikBengtsson/globals")
13692 (synopsis "Identify global objects in R expressions")
13693 (description
13694 "This package provides tools to identify global (\"unknown\" or \"free\")
13695 objects in R expressions by code inspection using various strategies, e.g.
13696 conservative or liberal. The objective of this package is to make it as
13697 simple as possible to identify global objects for the purpose of exporting
13698 them in distributed compute environments.")
13699 (license license:lgpl2.1+)))
13700
13701 (define-public r-parallelly
13702 (package
13703 (name "r-parallelly")
13704 (version "1.24.0")
13705 (source
13706 (origin
13707 (method url-fetch)
13708 (uri (cran-uri "parallelly" version))
13709 (sha256
13710 (base32
13711 "1x04pxcyyzmg1rl9mcd7mmxglzmxgy40fmbwpy7vf5y7z15rzrp6"))))
13712 (properties `((upstream-name . "parallelly")))
13713 (build-system r-build-system)
13714 (home-page "https://github.com/HenrikBengtsson/parallelly")
13715 (synopsis "Enhancements of the parallel package")
13716 (description
13717 "This package provides utility functions that enhance the @code{parallel}
13718 package and support the built-in parallel backends of the @code{future}
13719 package. For example, @code{availableCores} gives the number of CPU cores
13720 available to your R process as given by R options and environment variables,
13721 including those set by job schedulers on high-performance compute clusters.
13722 If none is set, it will fall back to @code{parallel::detectCores}. Another
13723 example is @code{makeClusterPSOCK}, which is backward compatible with
13724 @code{parallel::makePSOCKcluster} while doing a better job in setting up
13725 remote cluster workers without the need for configuring the firewall to do
13726 port-forwarding to your local computer.")
13727 (license license:lgpl2.1+)))
13728
13729 (define-public r-future
13730 (package
13731 (name "r-future")
13732 (version "1.21.0")
13733 (source
13734 (origin
13735 (method url-fetch)
13736 (uri (cran-uri "future" version))
13737 (sha256
13738 (base32
13739 "0bfiy17n5rghxw0702k0vgpjkk13268lniifdlx59flf0q16d7lh"))))
13740 (build-system r-build-system)
13741 (propagated-inputs
13742 `(("r-digest" ,r-digest)
13743 ("r-globals" ,r-globals)
13744 ("r-listenv" ,r-listenv)
13745 ("r-parallelly" ,r-parallelly)))
13746 (native-inputs
13747 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13748 (home-page "https://github.com/HenrikBengtsson/future")
13749 (synopsis "Unified parallel and distributed processing in R")
13750 (description
13751 "The purpose of this package is to provide a lightweight and unified
13752 Future API for sequential and parallel processing of R expression via futures.
13753 This package implements sequential, multicore, multisession, and cluster
13754 futures. With these, R expressions can be evaluated on the local machine, in
13755 parallel a set of local machines, or distributed on a mix of local and remote
13756 machines. Extensions to this package implement additional backends for
13757 processing futures via compute cluster schedulers etc. Because of its unified
13758 API, there is no need to modify any code in order to switch from sequential on
13759 the local machine to, say, distributed processing on a remote compute cluster.")
13760 (license license:lgpl2.1+)))
13761
13762 (define-public r-future-apply
13763 (package
13764 (name "r-future-apply")
13765 (version "1.7.0")
13766 (source
13767 (origin
13768 (method url-fetch)
13769 (uri (cran-uri "future.apply" version))
13770 (sha256
13771 (base32
13772 "1ns5cf80vyabvyz9qp6kpvkg4jycinn7x6v7x6692fgjapdnmyig"))))
13773 (properties `((upstream-name . "future.apply")))
13774 (build-system r-build-system)
13775 (propagated-inputs
13776 `(("r-future" ,r-future)
13777 ("r-globals" ,r-globals)))
13778 (native-inputs
13779 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13780 (home-page "https://github.com/HenrikBengtsson/future.apply")
13781 (synopsis "Apply function to elements in parallel using futures")
13782 (description
13783 "This package provides implementations of @code{apply()},
13784 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
13785 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
13786 can be resolved using any future-supported backend, e.g. parallel on the local
13787 machine or distributed on a compute cluster.")
13788 (license license:gpl2+)))
13789
13790 (define-public r-rsvd
13791 (package
13792 (name "r-rsvd")
13793 (version "1.0.3")
13794 (source
13795 (origin
13796 (method url-fetch)
13797 (uri (cran-uri "rsvd" version))
13798 (sha256
13799 (base32
13800 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
13801 (build-system r-build-system)
13802 (propagated-inputs
13803 `(("r-matrix" ,r-matrix)))
13804 (home-page "https://github.com/erichson/rSVD")
13805 (synopsis "Randomized singular value decomposition")
13806 (description
13807 "Low-rank matrix decompositions are fundamental tools and widely used for
13808 data analysis, dimension reduction, and data compression. Classically, highly
13809 accurate deterministic matrix algorithms are used for this task. However, the
13810 emergence of large-scale data has severely challenged our computational
13811 ability to analyze big data. The concept of randomness has been demonstrated
13812 as an effective strategy to quickly produce approximate answers to familiar
13813 problems such as the @dfn{singular value decomposition} (SVD). This package
13814 provides several randomized matrix algorithms such as the randomized singular
13815 value decomposition (@code{rsvd}), randomized principal component
13816 analysis (@code{rpca}), randomized robust principal component
13817 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
13818 and the randomized CUR decomposition (@code{rcur}). In addition several plot
13819 functions are provided.")
13820 (license license:gpl3+)))
13821
13822 (define-public r-sloop
13823 (package
13824 (name "r-sloop")
13825 (version "1.0.1")
13826 (source
13827 (origin
13828 (method url-fetch)
13829 (uri (cran-uri "sloop" version))
13830 (sha256
13831 (base32
13832 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
13833 (build-system r-build-system)
13834 (propagated-inputs
13835 `(("r-codetools" ,r-codetools)
13836 ("r-crayon" ,r-crayon)
13837 ("r-purrr" ,r-purrr)
13838 ("r-rlang" ,r-rlang)
13839 ("r-tibble" ,r-tibble)))
13840 (home-page "https://github.com/r-lib/sloop")
13841 (synopsis "Helpers for object-oriented programming in R")
13842 (description
13843 "This package provides a collection of helper functions designed to
13844 help you to better understand object oriented programming in R, particularly
13845 using @code{S3}.")
13846 (license license:gpl3)))
13847
13848 (define-public r-capushe
13849 (package
13850 (name "r-capushe")
13851 (version "1.1.1")
13852 (source
13853 (origin
13854 (method url-fetch)
13855 (uri (cran-uri "capushe" version))
13856 (sha256
13857 (base32
13858 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
13859 (build-system r-build-system)
13860 (propagated-inputs `(("r-mass" ,r-mass)))
13861 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
13862 (synopsis "Calibrating penalties using slope heuristics")
13863 (description
13864 "This package provides tools for the calibration of penalized criteria
13865 for model selection. The calibration methods available are based on the slope
13866 heuristics.")
13867 (license license:gpl2+)))
13868
13869 (define-public r-dorng
13870 (package
13871 (name "r-dorng")
13872 (version "1.8.2")
13873 (source
13874 (origin
13875 (method url-fetch)
13876 (uri (cran-uri "doRNG" version))
13877 (sha256
13878 (base32
13879 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
13880 (properties `((upstream-name . "doRNG")))
13881 (build-system r-build-system)
13882 (propagated-inputs
13883 `(("r-foreach" ,r-foreach)
13884 ("r-iterators" ,r-iterators)
13885 ("r-rngtools" ,r-rngtools)))
13886 (home-page "https://renozao.github.io/doRNG/")
13887 (synopsis "Generic reproducible parallel backend for foreach loops")
13888 (description
13889 "This package provides functions to perform reproducible parallel
13890 @code{foreach} loops, using independent random streams as generated by
13891 L'Ecuyer's combined multiple-recursive generator. It enables to easily
13892 convert standard @code{%dopar%} loops into fully reproducible loops,
13893 independently of the number of workers, the task scheduling strategy, or the
13894 chosen parallel environment and associated foreach backend.")
13895 (license license:gpl2+)))
13896
13897 (define-public r-blockmodeling
13898 (package
13899 (name "r-blockmodeling")
13900 (version "1.0.0")
13901 (source
13902 (origin
13903 (method url-fetch)
13904 (uri (cran-uri "blockmodeling" version))
13905 (sha256
13906 (base32
13907 "1z4w2kq0id0gb5d0lqcdaw3clplhzywarkpvvx3drivdypzl237i"))))
13908 (build-system r-build-system)
13909 (propagated-inputs
13910 `(("r-matrix" ,r-matrix)))
13911 (native-inputs `(("gfortran" ,gfortran)))
13912 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
13913 (synopsis "Generalized and classical blockmodeling of valued networks")
13914 (description
13915 "This package is primarily meant as an implementation of generalized
13916 blockmodeling for valued networks. In addition, measures of similarity or
13917 dissimilarity based on structural equivalence and regular equivalence (REGE
13918 algorithms) can be computed and partitioned matrices can be plotted.")
13919 (license license:gpl2+)))
13920
13921 (define-public r-upsetr
13922 (package
13923 (name "r-upsetr")
13924 (version "1.4.0")
13925 (source
13926 (origin
13927 (method url-fetch)
13928 (uri (cran-uri "UpSetR" version))
13929 (sha256
13930 (base32
13931 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
13932 (properties `((upstream-name . "UpSetR")))
13933 (build-system r-build-system)
13934 (propagated-inputs
13935 `(("r-ggplot2" ,r-ggplot2)
13936 ("r-gridextra" ,r-gridextra)
13937 ("r-plyr" ,r-plyr)
13938 ("r-scales" ,r-scales)))
13939 (home-page "https://github.com/hms-dbmi/UpSetR")
13940 (synopsis "Visualize intersecting sets")
13941 (description
13942 "This package provides a more scalable alternative to Venn and Euler
13943 diagrams for visualizing intersecting sets. Create visualizations of
13944 intersecting sets using a novel matrix design, along with visualizations of
13945 several common set, element and attribute related tasks.")
13946 (license license:expat)))
13947
13948 ;; This package includes a JavaScript file, which is not minified. When
13949 ;; upgrading please check that there are no new minified JavaScript files.
13950 (define-public r-shinybs
13951 (package
13952 (name "r-shinybs")
13953 (version "0.61")
13954 (source
13955 (origin
13956 (method url-fetch)
13957 (uri (cran-uri "shinyBS" version))
13958 (sha256
13959 (base32
13960 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
13961 (properties `((upstream-name . "shinyBS")))
13962 (build-system r-build-system)
13963 ;; The tests spawn Shiny browser apps. They cannot be run
13964 ;; non-interactively.
13965 (arguments '(#:tests? #f))
13966 (propagated-inputs
13967 `(("r-htmltools" ,r-htmltools)
13968 ("r-shiny" ,r-shiny)))
13969 (home-page "https://ebailey78.github.io/shinyBS/")
13970 (synopsis "Twitter Bootstrap components for Shiny")
13971 (description
13972 "This package adds additional Twitter Bootstrap components to Shiny.")
13973 (license license:gpl3)))
13974
13975 (define-public r-shinyjqui
13976 (package
13977 (name "r-shinyjqui")
13978 (version "0.4.0")
13979 (source
13980 (origin
13981 (method url-fetch)
13982 (uri (cran-uri "shinyjqui" version))
13983 (sha256
13984 (base32
13985 "0ins0pmfis34jr0rimsp1k1aw856r3xjdnsvv8lkwqhvp58nzqah"))
13986 (snippet
13987 '(begin
13988 (delete-file "inst/www/shinyjqui.min.js")))))
13989 (properties `((upstream-name . "shinyjqui")))
13990 (build-system r-build-system)
13991 (arguments
13992 `(#:phases
13993 (modify-phases %standard-phases
13994 (add-after 'unpack 'process-javascript
13995 (lambda* (#:key inputs #:allow-other-keys)
13996 (with-directory-excursion "inst/www/"
13997 (let ((source "shinyjqui.js")
13998 (target "shinyjqui.min.js"))
13999 (format #true "Processing ~a --> ~a~%"
14000 source target)
14001 (invoke "esbuild" source "--minify"
14002 (string-append "--outfile=" target)))))))))
14003 (propagated-inputs
14004 `(("r-htmltools" ,r-htmltools)
14005 ("r-htmlwidgets" ,r-htmlwidgets)
14006 ("r-jsonlite" ,r-jsonlite)
14007 ("r-shiny" ,r-shiny)))
14008 (native-inputs
14009 `(("r-knitr" ,r-knitr)
14010 ("esbuild" ,esbuild)))
14011 (home-page "https://github.com/yang-tang/shinyjqui")
14012 (synopsis "jQuery UI interactions and effects for Shiny")
14013 (description
14014 "This is an extension to Shiny that brings interactions and animation
14015 effects from the jQuery UI library.")
14016 (license license:expat)))
14017
14018 (define-public r-outliers
14019 (package
14020 (name "r-outliers")
14021 (version "0.14")
14022 (source
14023 (origin
14024 (method url-fetch)
14025 (uri (cran-uri "outliers" version))
14026 (sha256
14027 (base32
14028 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
14029 (build-system r-build-system)
14030 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
14031 (synopsis "Tests for outliers")
14032 (description
14033 "This package provides a collection of some tests commonly used for
14034 identifying outliers.")
14035 (license license:gpl2+)))
14036
14037 (define-public r-bayesm
14038 (package
14039 (name "r-bayesm")
14040 (version "3.1-4")
14041 (source
14042 (origin
14043 (method url-fetch)
14044 (uri (cran-uri "bayesm" version))
14045 (sha256
14046 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
14047 (build-system r-build-system)
14048 (propagated-inputs
14049 `(("r-rcpp" ,r-rcpp)
14050 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14051 (home-page "http://www.perossi.org/home/bsm-1")
14052 (synopsis "Bayesian inference for marketing/micro-econometrics")
14053 (description
14054 "This package covers many important models used in marketing and
14055 micro-econometrics applications, including Bayes Regression (univariate or
14056 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
14057 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
14058 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
14059 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
14060 Estimation with normal base, Hierarchical Linear Models with normal prior and
14061 covariates, Hierarchical Linear Models with a mixture of normals prior and
14062 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
14063 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
14064 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
14065 analysis of choice-based conjoint data, Bayesian treatment of linear
14066 instrumental variables models, Analysis of Multivariate Ordinal survey data
14067 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
14068 Coefficient Logit Models.")
14069 (license license:gpl2+)))
14070
14071 (define-public r-tensora
14072 (package
14073 (name "r-tensora")
14074 (version "0.36.2")
14075 (source
14076 (origin
14077 (method url-fetch)
14078 (uri (cran-uri "tensorA" version))
14079 (sha256
14080 (base32
14081 "19wwh654qlja4z1n7afjpzsrrm53p8ddysa2vra5mdnkddb4g2cf"))))
14082 (properties `((upstream-name . "tensorA")))
14083 (build-system r-build-system)
14084 (home-page "http://www.stat.boogaart.de/tensorA")
14085 (synopsis "Advanced tensor arithmetic with named indices")
14086 (description
14087 "This package provides convenience functions for advanced linear algebra
14088 with tensors and computation with datasets of tensors on a higher level
14089 abstraction. It includes Einstein and Riemann summing conventions, dragging,
14090 co- and contravariate indices, and parallel computations on sequences of
14091 tensors.")
14092 (license license:gpl2+)))
14093
14094 (define-public r-rarpack
14095 (package
14096 (name "r-rarpack")
14097 (version "0.11-0")
14098 (source
14099 (origin
14100 (method url-fetch)
14101 (uri (cran-uri "rARPACK" version))
14102 (sha256
14103 (base32
14104 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
14105 (properties `((upstream-name . "rARPACK")))
14106 (build-system r-build-system)
14107 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
14108 (home-page "https://github.com/yixuan/rARPACK")
14109 (synopsis "Solvers for large scale eigenvalue and SVD problems")
14110 (description
14111 "This package was previously an R wrapper of the ARPACK library, and now
14112 a shell of the R package RSpectra, an R interface to the Spectra library for
14113 solving large scale eigenvalue/vector problems. The current version of
14114 rARPACK simply imports and exports the functions provided by RSpectra. New
14115 users of rARPACK are advised to switch to the RSpectra package.")
14116 (license license:bsd-3)))
14117
14118 (define-public r-compositions
14119 (package
14120 (name "r-compositions")
14121 (version "2.0-1")
14122 (source
14123 (origin
14124 (method url-fetch)
14125 (uri (cran-uri "compositions" version))
14126 (sha256
14127 (base32
14128 "03qslsfx11gshls901zlhw47prd55mf16w4mkmd8x1dgiwq938l4"))))
14129 (build-system r-build-system)
14130 (propagated-inputs
14131 `(("r-bayesm" ,r-bayesm)
14132 ("r-mass" ,r-mass)
14133 ("r-robustbase" ,r-robustbase)
14134 ("r-tensora" ,r-tensora)))
14135 (native-inputs
14136 `(("r-knitr" ,r-knitr)))
14137 (home-page "http://www.stat.boogaart.de/compositions")
14138 (synopsis "Compositional data analysis")
14139 (description
14140 "This package provides functions for the consistent analysis of
14141 compositional data (e.g. portions of substances) and positive
14142 numbers (e.g. concentrations).")
14143 (license license:gpl2+)))
14144
14145 (define-public r-cobs
14146 (package
14147 (name "r-cobs")
14148 (version "1.3-4")
14149 (source
14150 (origin
14151 (method url-fetch)
14152 (uri (cran-uri "cobs" version))
14153 (sha256
14154 (base32
14155 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
14156 (build-system r-build-system)
14157 (propagated-inputs
14158 `(("r-quantreg" ,r-quantreg)
14159 ("r-sparsem" ,r-sparsem)))
14160 (home-page "https://cran.r-project.org/web/packages/cobs")
14161 (synopsis "Constrained B-Splines (sparse matrix based)")
14162 (description
14163 "This package provides qualitatively constrained (regression) smoothing
14164 splines via linear programming and sparse matrices.")
14165 (license license:gpl2+)))
14166
14167 (define-public r-drimpute
14168 (package
14169 (name "r-drimpute")
14170 (version "1.0")
14171 (source
14172 (origin
14173 (method url-fetch)
14174 (uri (cran-uri "DrImpute" version))
14175 (sha256
14176 (base32
14177 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
14178 (properties `((upstream-name . "DrImpute")))
14179 (build-system r-build-system)
14180 (propagated-inputs
14181 `(("r-rcpp" ,r-rcpp)
14182 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14183 (home-page "https://github.com/ikwak2/DrImpute")
14184 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
14185 (description
14186 "This is an R package for imputing dropout events. Many statistical
14187 methods in cell type identification, visualization and lineage reconstruction
14188 do not account for dropout events. DrImpute can improve the performance of
14189 such software by imputing dropout events.")
14190 (license license:gpl3)))
14191
14192 (define-public r-gamlss-dist
14193 (package
14194 (name "r-gamlss-dist")
14195 (version "5.3-2")
14196 (source
14197 (origin
14198 (method url-fetch)
14199 (uri (cran-uri "gamlss.dist" version))
14200 (sha256
14201 (base32 "1lyf2rvkplywgyhcni93k52z3b89vv86yrgl38dx3ln3436r5ahc"))))
14202 (properties `((upstream-name . "gamlss.dist")))
14203 (build-system r-build-system)
14204 (propagated-inputs `(("r-mass" ,r-mass)))
14205 (home-page "http://www.gamlss.org/")
14206 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
14207 (description
14208 "This package provides a set of distributions which can be used for
14209 modelling the response variables in Generalized Additive Models for Location
14210 Scale and Shape. The distributions can be continuous, discrete or mixed
14211 distributions. Extra distributions can be created, by transforming, any
14212 continuous distribution defined on the real line, to a distribution defined on
14213 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
14214 transformation, respectively.")
14215 ;; Either version of the GPL.
14216 (license (list license:gpl2 license:gpl3))))
14217
14218 ;; This package includes JavaScript files, which are not minified. When
14219 ;; upgrading please check that there are no new minified JavaScript files.
14220 (define-public r-shinyjs
14221 (package
14222 (name "r-shinyjs")
14223 (version "2.0.0")
14224 (source
14225 (origin
14226 (method url-fetch)
14227 (uri (cran-uri "shinyjs" version))
14228 (sha256
14229 (base32
14230 "1zzq356dvd8ciajy6r5n4ybgx9xk7ydwv25j86xlcsqznkxdkkf2"))))
14231 (build-system r-build-system)
14232 (propagated-inputs
14233 `(("r-digest" ,r-digest)
14234 ("r-htmltools" ,r-htmltools)
14235 ("r-jsonlite" ,r-jsonlite)
14236 ("r-shiny" ,r-shiny)))
14237 (native-inputs
14238 `(("r-knitr" ,r-knitr)))
14239 (home-page "https://deanattali.com/shinyjs")
14240 (synopsis "Improve the user experience of your Shiny apps")
14241 (description
14242 "Perform common useful JavaScript operations in Shiny apps that will
14243 greatly improve your apps without having to know any JavaScript. Examples
14244 include: hiding an element, disabling an input, resetting an input back to its
14245 original value, delaying code execution by a few seconds, and many more useful
14246 functions for both the end user and the developer. Shinyjs can also be used
14247 to easily call your own custom JavaScript functions from R.")
14248 (license license:agpl3+)))
14249
14250 ;; This package includes minified JavaScript files. When upgrading please
14251 ;; check that there are no new minified JavaScript files.
14252 (define-public r-colourpicker
14253 (package
14254 (name "r-colourpicker")
14255 (version "1.1.0")
14256 (source
14257 (origin
14258 (method url-fetch)
14259 (uri (cran-uri "colourpicker" version))
14260 (sha256
14261 (base32
14262 "1qjispj7i12m02js5cm5xlgn5lyff0kc5ybz6lbknz8q5lkbdyrd"))))
14263 (build-system r-build-system)
14264 (arguments
14265 `(#:modules ((guix build utils)
14266 (guix build r-build-system)
14267 (srfi srfi-1)
14268 (ice-9 popen))
14269 #:phases
14270 (modify-phases %standard-phases
14271 (add-after 'unpack 'process-javascript
14272 (lambda* (#:key inputs #:allow-other-keys)
14273 (with-directory-excursion "inst"
14274 (call-with-values
14275 (lambda ()
14276 (unzip2
14277 `((,(assoc-ref inputs "js-salvattore")
14278 "examples/colourInput/www/salvattore.min.js")
14279 (,(assoc-ref inputs "js-jquery")
14280 "htmlwidgets/lib/jquery/jquery.min.js")
14281 ("www/shared/colourpicker/js/colourpicker.js"
14282 "www/shared/colourpicker/js/colourpicker.min.js"))))
14283 (lambda (sources targets)
14284 (for-each (lambda (source target)
14285 (format #t "Processing ~a --> ~a~%"
14286 source target)
14287 (delete-file target)
14288 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14289 (call-with-output-file target
14290 (lambda (port)
14291 (dump-port minified port)))))
14292 sources targets))))
14293 #t)))))
14294 (propagated-inputs
14295 `(("r-ggplot2" ,r-ggplot2)
14296 ("r-htmltools" ,r-htmltools)
14297 ("r-htmlwidgets" ,r-htmlwidgets)
14298 ("r-jsonlite" ,r-jsonlite)
14299 ("r-miniui" ,r-miniui)
14300 ("r-shiny" ,r-shiny)
14301 ("r-shinyjs" ,r-shinyjs)))
14302 (native-inputs
14303 `(("r-knitr" ,r-knitr)
14304 ("uglify-js" ,uglify-js)
14305 ("js-jquery"
14306 ,(origin
14307 (method url-fetch)
14308 (uri "https://code.jquery.com/jquery-3.3.1.js")
14309 (sha256
14310 (base32
14311 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
14312 ("js-salvattore"
14313 ,(origin
14314 (method url-fetch)
14315 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
14316 (sha256
14317 (base32
14318 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
14319 (home-page "https://github.com/daattali/colourpicker")
14320 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
14321 (description
14322 "This package provides a color picker that can be used as an input in
14323 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
14324 custom color palettes, and many more options. A plot color helper tool is
14325 available as an RStudio Addin, which helps you pick colors to use in your
14326 plots. A more generic color picker RStudio Addin is also provided to let you
14327 select colors to use in your R code.")
14328 (license license:expat)))
14329
14330 (define-public r-ggextra
14331 (package
14332 (name "r-ggextra")
14333 (version "0.9")
14334 (source
14335 (origin
14336 (method url-fetch)
14337 (uri (cran-uri "ggExtra" version))
14338 (sha256
14339 (base32
14340 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
14341 (properties `((upstream-name . "ggExtra")))
14342 (build-system r-build-system)
14343 (propagated-inputs
14344 `(("r-colourpicker" ,r-colourpicker)
14345 ("r-ggplot2" ,r-ggplot2)
14346 ("r-gtable" ,r-gtable)
14347 ("r-miniui" ,r-miniui)
14348 ("r-r6" ,r-r6)
14349 ("r-scales" ,r-scales)
14350 ("r-shiny" ,r-shiny)
14351 ("r-shinyjs" ,r-shinyjs)))
14352 (native-inputs
14353 `(("r-knitr" ,r-knitr)))
14354 (home-page "https://github.com/daattali/ggExtra")
14355 (synopsis "Marginal histograms for ggplot2 and other enhancements")
14356 (description
14357 "This package is a collection of functions and layers to enhance ggplot2.
14358 The flagship function is @code{ggMarginal()}, which can be used to add
14359 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
14360 (license license:expat)))
14361
14362 (define-public r-minpack-lm
14363 (package
14364 (name "r-minpack-lm")
14365 (version "1.2-1")
14366 (source
14367 (origin
14368 (method url-fetch)
14369 (uri (cran-uri "minpack.lm" version))
14370 (sha256
14371 (base32
14372 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
14373 (properties `((upstream-name . "minpack.lm")))
14374 (build-system r-build-system)
14375 (native-inputs `(("gfortran" ,gfortran)))
14376 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
14377 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
14378 (description
14379 "The @code{nls.lm} function provides an R interface to @code{lmder} and
14380 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
14381 problems by a modification of the Levenberg-Marquardt algorithm, with support
14382 for lower and upper parameter bounds. The implementation can be used via
14383 @code{nls}-like calls using the @code{nlsLM} function.")
14384 (license license:gpl3)))
14385
14386 (define-public r-moments
14387 (package
14388 (name "r-moments")
14389 (version "0.14")
14390 (source
14391 (origin
14392 (method url-fetch)
14393 (uri (cran-uri "moments" version))
14394 (sha256
14395 (base32
14396 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
14397 (build-system r-build-system)
14398 (home-page "https://cran.r-project.org/web/packages/moments")
14399 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
14400 (description
14401 "This package provides functions to calculate: moments, Pearson's
14402 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
14403 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
14404 (license license:gpl2+)))
14405
14406 (define-public r-msir
14407 (package
14408 (name "r-msir")
14409 (version "1.3.3")
14410 (source
14411 (origin
14412 (method url-fetch)
14413 (uri (cran-uri "msir" version))
14414 (sha256
14415 (base32
14416 "1wm83m3cqd6llxb9p2jwim0wb81v84pgdmgcznygzaaq6kbn3n84"))))
14417 (build-system r-build-system)
14418 (propagated-inputs
14419 `(("r-mclust" ,r-mclust)))
14420 (native-inputs
14421 `(("r-knitr" ,r-knitr)))
14422 (home-page "https://cran.r-project.org/web/packages/msir")
14423 (synopsis "Model-based sliced inverse regression")
14424 (description
14425 "This is an R package for dimension reduction based on finite Gaussian
14426 mixture modeling of inverse regression.")
14427 (license license:gpl2+)))
14428
14429 (define-public r-pbivnorm
14430 (package
14431 (name "r-pbivnorm")
14432 (version "0.6.0")
14433 (source
14434 (origin
14435 (method url-fetch)
14436 (uri (cran-uri "pbivnorm" version))
14437 (sha256
14438 (base32
14439 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
14440 (build-system r-build-system)
14441 (native-inputs `(("gfortran" ,gfortran)))
14442 (home-page "https://github.com/brentonk/pbivnorm")
14443 (synopsis "Vectorized bivariate normal CDF")
14444 (description
14445 "This package provides a vectorized R function for calculating
14446 probabilities from a standard bivariate normal CDF.")
14447 (license license:gpl2+)))
14448
14449 (define-public r-lavaan
14450 (package
14451 (name "r-lavaan")
14452 (version "0.6-7")
14453 (source
14454 (origin
14455 (method url-fetch)
14456 (uri (cran-uri "lavaan" version))
14457 (sha256
14458 (base32
14459 "0ks62wrwghbm1brzmqvr92h5n1295dpc87m1g3xrfx0mkdaqdcdk"))))
14460 (build-system r-build-system)
14461 (propagated-inputs
14462 `(("r-mass" ,r-mass)
14463 ("r-mnormt" ,r-mnormt)
14464 ("r-numderiv" ,r-numderiv)
14465 ("r-pbivnorm" ,r-pbivnorm)))
14466 (home-page "https://lavaan.ugent.be")
14467 (synopsis "Latent variable analysis")
14468 (description
14469 "This package provides tools to fit a variety of latent variable models,
14470 including confirmatory factor analysis, structural equation modeling and
14471 latent growth curve models.")
14472 (license license:gpl2+)))
14473
14474 (define-public r-nonnest2
14475 (package
14476 (name "r-nonnest2")
14477 (version "0.5-5")
14478 (source
14479 (origin
14480 (method url-fetch)
14481 (uri (cran-uri "nonnest2" version))
14482 (sha256
14483 (base32
14484 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
14485 (build-system r-build-system)
14486 (propagated-inputs
14487 `(("r-compquadform" ,r-compquadform)
14488 ("r-lavaan" ,r-lavaan)
14489 ("r-mvtnorm" ,r-mvtnorm)
14490 ("r-sandwich" ,r-sandwich)))
14491 (native-inputs
14492 `(("r-knitr" ,r-knitr)))
14493 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
14494 (synopsis "Tests of non-nested models")
14495 (description
14496 "This package allows for testing of non-nested models. It includes tests
14497 of model distinguishability and of model fit that can be applied to both
14498 nested and non-nested models. The package also includes functionality to
14499 obtain confidence intervals associated with AIC and BIC.")
14500 ;; Either version of the GPL.
14501 (license (list license:gpl2 license:gpl3))))
14502
14503 (define-public r-penalized
14504 (package
14505 (name "r-penalized")
14506 (version "0.9-51")
14507 (source
14508 (origin
14509 (method url-fetch)
14510 (uri (cran-uri "penalized" version))
14511 (sha256
14512 (base32
14513 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
14514 (build-system r-build-system)
14515 (propagated-inputs
14516 `(("r-rcpp" ,r-rcpp)
14517 ("r-rcpparmadillo" ,r-rcpparmadillo)
14518 ("r-survival" ,r-survival)))
14519 (home-page "https://cran.r-project.org/web/packages/penalized/")
14520 (synopsis "Penalized estimation in GLMs and in the Cox model")
14521 (description
14522 "This package provides tools for fitting possibly high dimensional
14523 penalized regression models. The penalty structure can be any combination of
14524 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
14525 constraint on the regression coefficients. The supported regression models
14526 are linear, logistic and Poisson regression and the Cox Proportional Hazards
14527 model. Cross-validation routines allow optimization of the tuning
14528 parameters.")
14529 (license license:gpl2+)))
14530
14531 (define-public r-zim
14532 (package
14533 (name "r-zim")
14534 (version "1.1.0")
14535 (source
14536 (origin
14537 (method url-fetch)
14538 (uri (cran-uri "ZIM" version))
14539 (sha256
14540 (base32
14541 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
14542 (properties `((upstream-name . "ZIM")))
14543 (build-system r-build-system)
14544 (propagated-inputs `(("r-mass" ,r-mass)))
14545 (home-page "https://github.com/biostatstudio/ZIM")
14546 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
14547 (description
14548 "Analyze count time series with excess zeros. Two types of statistical
14549 models are supported: Markov regression and state-space models. They are also
14550 known as observation-driven and parameter-driven models respectively in the
14551 time series literature. The functions used for Markov regression or
14552 observation-driven models can also be used to fit ordinary regression models
14553 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
14554 negative binomial (ZINB) assumption. The package also contains miscellaneous
14555 functions to compute density, distribution, quantile, and generate random
14556 numbers from ZIP and ZINB distributions.")
14557 (license license:gpl3)))
14558
14559 (define-public r-nor1mix
14560 (package
14561 (name "r-nor1mix")
14562 (version "1.3-0")
14563 (source
14564 (origin
14565 (method url-fetch)
14566 (uri (cran-uri "nor1mix" version))
14567 (sha256
14568 (base32
14569 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
14570 (build-system r-build-system)
14571 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
14572 (synopsis "Normal (1-d) mixture models")
14573 (description
14574 "This package provides S3 classes and methods for one-dimensional normal
14575 mixture models, for, e.g., density estimation or clustering algorithms
14576 research and teaching; it provides the widely used Marron-Wand densities. It
14577 also provides tools for efficient random number generation and graphics.")
14578 (license license:gpl2+)))
14579
14580 (define-public r-beanplot
14581 (package
14582 (name "r-beanplot")
14583 (version "1.2")
14584 (source
14585 (origin
14586 (method url-fetch)
14587 (uri (cran-uri "beanplot" version))
14588 (sha256
14589 (base32
14590 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
14591 (build-system r-build-system)
14592 (home-page "https://cran.r-project.org/web/packages/beanplot/")
14593 (synopsis "Visualization via beanplots")
14594 (description
14595 "This package provides beanplots, an alternative to
14596 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
14597 graphs.")
14598 (license license:gpl2)))
14599
14600 (define-public r-pbdzmq
14601 (package
14602 (name "r-pbdzmq")
14603 (version "0.3-5")
14604 (source
14605 (origin
14606 (method url-fetch)
14607 (uri (cran-uri "pbdZMQ" version))
14608 (sha256
14609 (base32
14610 "1v8iv1pzs4j3ics9k9h4xjkv6z1ma2xbqy003xk2lqax6srqi02d"))))
14611 (properties `((upstream-name . "pbdZMQ")))
14612 (build-system r-build-system)
14613 (inputs
14614 `(("zeromq" ,zeromq)
14615 ("zlib" ,zlib)))
14616 (native-inputs
14617 `(("pkg-config" ,pkg-config)))
14618 (home-page "https://pbdr.org/")
14619 (synopsis "R interface to ZeroMQ")
14620 (description
14621 "ZeroMQ is a well-known library for high-performance asynchronous
14622 messaging in scalable, distributed applications. This package provides high
14623 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
14624 interactive client/server programming frameworks. A few wrapper functions
14625 compatible with @code{rzmq} are also provided.")
14626 (license license:gpl3)))
14627
14628 (define-public r-repr
14629 (package
14630 (name "r-repr")
14631 (version "1.1.3")
14632 (source
14633 (origin
14634 (method url-fetch)
14635 (uri (cran-uri "repr" version))
14636 (sha256
14637 (base32
14638 "0qimllv9pn8wsl550bjkp5dkknbmr69j85mrwfbbq75m2ga466sk"))))
14639 (build-system r-build-system)
14640 (propagated-inputs
14641 `(("r-base64enc" ,r-base64enc)
14642 ("r-htmltools" ,r-htmltools)
14643 ("r-jsonlite" ,r-jsonlite)
14644 ("r-pillar" ,r-pillar)))
14645 (home-page "https://cran.r-project.org/web/packages/repr/")
14646 (synopsis "Serializable representations")
14647 (description
14648 "This package provides string and binary representations of objects for
14649 several formats and MIME types.")
14650 (license license:gpl3)))
14651
14652 (define-public r-irdisplay
14653 (package
14654 (name "r-irdisplay")
14655 (version "1.0")
14656 (source
14657 (origin
14658 (method url-fetch)
14659 (uri (cran-uri "IRdisplay" version))
14660 (sha256
14661 (base32
14662 "15jbjrihm1mk899357h9xb08iq3xyagds1xb40fmdpkfcmcfqrw9"))))
14663 (properties `((upstream-name . "IRdisplay")))
14664 (build-system r-build-system)
14665 (propagated-inputs
14666 `(("r-repr" ,r-repr)))
14667 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
14668 (synopsis "Jupyter display machinery")
14669 (description
14670 "This package provides an interface to the rich display capabilities of
14671 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
14672 running IRkernel session.")
14673 (license license:expat)))
14674
14675 (define-public r-irkernel
14676 (package
14677 (name "r-irkernel")
14678 (version "1.1.1")
14679 (source
14680 (origin
14681 (method url-fetch)
14682 (uri (cran-uri "IRkernel" version))
14683 (sha256
14684 (base32
14685 "1y06v3difaiihxfm2abm88nnjzvkla4p346cm1nxmga4iwb2k8gm"))))
14686 (properties `((upstream-name . "IRkernel")))
14687 (build-system r-build-system)
14688 (arguments
14689 `(#:phases
14690 (modify-phases %standard-phases
14691 (add-after 'install 'install-kernelspec
14692 (lambda* (#:key outputs #:allow-other-keys)
14693 (let ((out (assoc-ref outputs "out")))
14694 (setenv "HOME" "/tmp")
14695 (invoke "jupyter" "kernelspec" "install"
14696 "--name" "ir"
14697 "--prefix" out
14698 (string-append out "/site-library/IRkernel/kernelspec"))
14699 ;; Record the absolute file name of the 'R' executable in
14700 ;; 'kernel.json'.
14701 (substitute* (string-append out "/share/jupyter"
14702 "/kernels/ir/kernel.json")
14703 (("\\[\"R\",")
14704 (string-append "[\"" (which "R") "\",")))
14705 #t))))))
14706 (inputs
14707 `(("jupyter" ,jupyter)))
14708 (propagated-inputs
14709 `(("r-crayon" ,r-crayon)
14710 ("r-digest" ,r-digest)
14711 ("r-evaluate" ,r-evaluate)
14712 ("r-irdisplay" ,r-irdisplay)
14713 ("r-jsonlite" ,r-jsonlite)
14714 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
14715 ("r-minimal" ,r-minimal)
14716 ("r-pbdzmq" ,r-pbdzmq)
14717 ("r-repr" ,r-repr)
14718 ("r-uuid" ,r-uuid)))
14719 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
14720 (synopsis "Native R kernel for Jupyter")
14721 (description
14722 "The R kernel for the Jupyter environment executes R code which the
14723 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
14724 network.")
14725 (license license:expat)))
14726
14727 (define-public r-gmodels
14728 (package
14729 (name "r-gmodels")
14730 (version "2.18.1")
14731 (source
14732 (origin
14733 (method url-fetch)
14734 (uri (cran-uri "gmodels" version))
14735 (sha256
14736 (base32
14737 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
14738 (build-system r-build-system)
14739 (propagated-inputs
14740 `(("r-gdata" ,r-gdata)
14741 ("r-mass" ,r-mass)))
14742 (home-page "https://cran.r-project.org/web/packages/gmodels/")
14743 (synopsis "Various R programming tools for model fitting")
14744 (description
14745 "This package provides various R programming tools for model fitting.")
14746 (license license:gpl2)))
14747
14748 (define-public r-apcluster
14749 (package
14750 (name "r-apcluster")
14751 (version "1.4.8")
14752 (source
14753 (origin
14754 (method url-fetch)
14755 (uri (cran-uri "apcluster" version))
14756 (sha256
14757 (base32
14758 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
14759 (build-system r-build-system)
14760 (propagated-inputs
14761 `(("r-matrix" ,r-matrix)
14762 ("r-rcpp" ,r-rcpp)))
14763 (home-page "https://cran.r-project.org/web/packages/apcluster/")
14764 (synopsis "Affinity propagation clustering")
14765 (description
14766 "This package implements affinity propagation clustering introduced by
14767 Frey and Dueck (2007). The package further provides leveraged affinity
14768 propagation and an algorithm for exemplar-based agglomerative clustering that
14769 can also be used to join clusters obtained from affinity propagation. Various
14770 plotting functions are available for analyzing clustering results.")
14771 (license license:gpl2+)))
14772
14773 (define-public r-valr
14774 (package
14775 (name "r-valr")
14776 (version "0.6.2")
14777 (source
14778 (origin
14779 (method url-fetch)
14780 (uri (cran-uri "valr" version))
14781 (sha256
14782 (base32
14783 "1vbp89zfylgih5acvw7lcx3a0dbbd7dhq7yhywr7kq02737qykdx"))))
14784 (build-system r-build-system)
14785 (propagated-inputs
14786 `(("r-broom" ,r-broom)
14787 ("r-dplyr" ,r-dplyr)
14788 ("r-ggplot2" ,r-ggplot2)
14789 ("r-rcpp" ,r-rcpp)
14790 ("r-readr" ,r-readr)
14791 ("r-rlang" ,r-rlang)
14792 ("r-stringr" ,r-stringr)
14793 ("r-tibble" ,r-tibble)))
14794 (native-inputs
14795 `(("r-knitr" ,r-knitr)))
14796 (home-page "https://github.com/rnabioco/valr")
14797 (synopsis "Genome interval arithmetic in R")
14798 (description
14799 "This package enables you to read and manipulate genome intervals and
14800 signals. It provides functionality similar to command-line tool suites within
14801 R, enabling interactive analysis and visualization of genome-scale data.")
14802 (license license:expat)))
14803
14804 (define-public r-rematch2
14805 (package
14806 (name "r-rematch2")
14807 (version "2.1.2")
14808 (source
14809 (origin
14810 (method url-fetch)
14811 (uri (cran-uri "rematch2" version))
14812 (sha256
14813 (base32
14814 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
14815 (build-system r-build-system)
14816 (propagated-inputs
14817 `(("r-tibble" ,r-tibble)))
14818 (home-page "https://github.com/r-lib/rematch2")
14819 (synopsis "Tidy output from regular expression matching")
14820 (description
14821 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
14822 return the match results in tidy data frames.")
14823 (license license:expat)))
14824
14825 (define-public r-picante
14826 (package
14827 (name "r-picante")
14828 (version "1.8.2")
14829 (source
14830 (origin
14831 (method url-fetch)
14832 (uri (cran-uri "picante" version))
14833 (sha256
14834 (base32
14835 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
14836 (build-system r-build-system)
14837 (propagated-inputs
14838 `(("r-ape" ,r-ape)
14839 ("r-nlme" ,r-nlme)
14840 ("r-vegan" ,r-vegan)))
14841 (home-page "https://cran.r-project.org/web/packages/picante/")
14842 (synopsis "Integrating phylogenies and ecology")
14843 (description
14844 "This package provides functions for phylocom integration, community
14845 analyses, null-models, traits and evolution. It implements numerous
14846 ecophylogenetic approaches including measures of community phylogenetic and
14847 trait diversity, phylogenetic signal, estimation of trait values for
14848 unobserved taxa, null models for community and phylogeny randomizations, and
14849 utility functions for data input/output and phylogeny plotting. A full
14850 description of package functionality and methods are provided by Kembel et
14851 al. (2010).")
14852 (license license:gpl2)))
14853
14854 (define-public r-reinforcelearn
14855 (package
14856 (name "r-reinforcelearn")
14857 (version "0.2.1")
14858 (source
14859 (origin
14860 (method url-fetch)
14861 (uri (cran-uri "reinforcelearn" version))
14862 (sha256
14863 (base32
14864 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
14865 (build-system r-build-system)
14866 (propagated-inputs
14867 `(("r-checkmate" ,r-checkmate)
14868 ("r-nnet" ,r-nnet)
14869 ("r-purrr" ,r-purrr)
14870 ("r-r6" ,r-r6)))
14871 (home-page "https://markusdumke.github.io/reinforcelearn")
14872 (synopsis "Reinforcement learning")
14873 (description
14874 "This package implements reinforcement learning environments and
14875 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
14876 can be used with function approximation, eligibility traces (Singh & Sutton,
14877 1996) and experience replay (Mnih et al., 2013).")
14878 (license license:expat)))
14879
14880 (define-public r-lemon
14881 (package
14882 (name "r-lemon")
14883 (version "0.4.5")
14884 (source
14885 (origin
14886 (method url-fetch)
14887 (uri (cran-uri "lemon" version))
14888 (sha256
14889 (base32
14890 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
14891 (build-system r-build-system)
14892 (propagated-inputs
14893 `(("r-ggplot2" ,r-ggplot2)
14894 ("r-gridextra" ,r-gridextra)
14895 ("r-gtable" ,r-gtable)
14896 ("r-knitr" ,r-knitr)
14897 ("r-lattice" ,r-lattice)
14898 ("r-plyr" ,r-plyr)
14899 ("r-rlang" ,r-rlang)
14900 ("r-scales" ,r-scales)))
14901 (native-inputs
14902 `(("r-knitr" ,r-knitr)))
14903 (home-page "https://github.com/stefanedwards/lemon")
14904 (synopsis "Freshen up your ggplot2 plots")
14905 (description
14906 "This package provides functions for working with legends and axis lines
14907 of ggplot2, facets that repeat axis lines on all panels, and some knitr
14908 extensions.")
14909 (license license:gpl3)))
14910
14911 (define-public r-wgaim
14912 (package
14913 (name "r-wgaim")
14914 (version "2.0-1")
14915 (source
14916 (origin
14917 (method url-fetch)
14918 (uri (cran-uri "wgaim" version))
14919 (sha256
14920 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
14921 (build-system r-build-system)
14922 (propagated-inputs
14923 `(("r-ggplot2" ,r-ggplot2)
14924 ("r-qtl" ,r-qtl)))
14925 (home-page "https://cran.r-project.org/web/packages/wgaim")
14926 (synopsis "Whole genome average interval mapping for QTL detection")
14927 (description
14928 "This package integrates sophisticated mixed modelling methods with a
14929 whole genome approach to detecting significant QTL in linkage maps.")
14930 (license license:gpl2+)))
14931
14932 (define-public r-bedr
14933 (package
14934 (name "r-bedr")
14935 (version "1.0.7")
14936 (source
14937 (origin
14938 (method url-fetch)
14939 (uri (cran-uri "bedr" version))
14940 (sha256
14941 (base32
14942 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
14943 (build-system r-build-system)
14944 (propagated-inputs
14945 `(("r-data-table" ,r-data-table)
14946 ("r-r-utils" ,r-r-utils)
14947 ("r-testthat" ,r-testthat)
14948 ("r-venndiagram" ,r-venndiagram)
14949 ("r-yaml" ,r-yaml)
14950 ("bedops" ,bedops)
14951 ("bedtools" ,bedtools)
14952 ("htslib" ,htslib))) ; for tabix
14953 (native-inputs
14954 `(("r-knitr" ,r-knitr))) ; for vignettes
14955 (home-page "https://cran.r-project.org/web/packages/bedr")
14956 (synopsis "Genomic region processing")
14957 (description
14958 "This package is for genomic regions processing using command line tools
14959 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
14960 utilities to perform genome arithmetic e.g indexing, formatting and merging.
14961 The bedr package's API enhances access to these tools as well as offers
14962 additional utilities for genomic regions processing.")
14963 (license license:gpl2)))
14964
14965 (define-public r-sets
14966 (package
14967 (name "r-sets")
14968 (version "1.0-18")
14969 (source
14970 (origin
14971 (method url-fetch)
14972 (uri (cran-uri "sets" version))
14973 (sha256
14974 (base32
14975 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
14976 (properties `((upstream-name . "sets")))
14977 (build-system r-build-system)
14978 (home-page "https://cran.r-project.org/web/packages/sets")
14979 (synopsis "Sets, generalized sets, customizable sets and intervals")
14980 (description
14981 "This package provides data structures and basic operations for ordinary
14982 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
14983 customizable sets, and intervals.")
14984 (license license:gpl2)))
14985
14986 (define-public r-partitions
14987 (package
14988 (name "r-partitions")
14989 (version "1.9-22")
14990 (source
14991 (origin
14992 (method url-fetch)
14993 (uri (cran-uri "partitions" version))
14994 (sha256
14995 (base32
14996 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
14997 (build-system r-build-system)
14998 (propagated-inputs
14999 `(("r-gmp" ,r-gmp)
15000 ("r-polynom" ,r-polynom)
15001 ("r-sets" ,r-sets)))
15002 (home-page "https://cran.r-project.org/web/packages/partitions")
15003 (synopsis "Additive partitions of integers")
15004 (description
15005 "This package provides tools to enumerates the partitions, unequal
15006 partitions, and restricted partitions of an integer; the three corresponding
15007 partition functions are also given.")
15008 ;; Any version of the GPL
15009 (license license:gpl2+)))
15010
15011 (define-public r-brobdingnag
15012 (package
15013 (name "r-brobdingnag")
15014 (version "1.2-6")
15015 (source
15016 (origin
15017 (method url-fetch)
15018 (uri (cran-uri "Brobdingnag" version))
15019 (sha256
15020 (base32
15021 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
15022 (properties `((upstream-name . "Brobdingnag")))
15023 (build-system r-build-system)
15024 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
15025 (synopsis "Very large numbers in R")
15026 (description
15027 "This package handles very large numbers in R. Real numbers are held
15028 using their natural logarithms, plus a logical flag indicating sign. The
15029 package includes a vignette that gives a step-by-step introduction to using S4
15030 methods.")
15031 ;; Any version of the GPL
15032 (license license:gpl2+)))
15033
15034 (define-public r-untb
15035 (package
15036 (name "r-untb")
15037 (version "1.7-4")
15038 (source
15039 (origin
15040 (method url-fetch)
15041 (uri (cran-uri "untb" version))
15042 (sha256
15043 (base32
15044 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
15045 (build-system r-build-system)
15046 (propagated-inputs
15047 `(("r-brobdingnag" ,r-brobdingnag)
15048 ("r-partitions" ,r-partitions)
15049 ("r-polynom" ,r-polynom)))
15050 (home-page "https://github.com/RobinHankin/untb.git")
15051 (synopsis "Ecological drift under the UNTB")
15052 (description
15053 "This package provides numerical simulations, and visualizations, of
15054 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
15055 (license license:gpl2+)))
15056
15057 (define-public r-stepwise
15058 (package
15059 (name "r-stepwise")
15060 (version "0.3")
15061 (source
15062 (origin
15063 (method url-fetch)
15064 (uri (cran-uri "stepwise" version))
15065 (sha256
15066 (base32
15067 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
15068 (build-system r-build-system)
15069 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
15070 (synopsis "Stepwise detection of recombination breakpoints")
15071 (description
15072 "This package provides a stepwise approach to identifying recombination
15073 breakpoints in a genomic sequence alignment.")
15074 (license license:gpl2+)))
15075
15076 (define-public r-snpmaxsel
15077 (package
15078 (name "r-snpmaxsel")
15079 (version "1.0-3")
15080 (source
15081 (origin
15082 (method url-fetch)
15083 (uri (cran-uri "SNPmaxsel" version))
15084 (sha256
15085 (base32
15086 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
15087 (properties `((upstream-name . "SNPmaxsel")))
15088 (build-system r-build-system)
15089 (propagated-inputs
15090 `(("r-combinat" ,r-combinat)
15091 ("r-mvtnorm" ,r-mvtnorm)))
15092 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
15093 (synopsis "Maximally selected statistics for SNP data")
15094 (description
15095 "This package implements asymptotic methods related to maximally selected
15096 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
15097 data.")
15098 (license license:gpl2+)))
15099
15100 (define-public r-acsnminer
15101 (package
15102 (name "r-acsnminer")
15103 (version "0.16.8.25")
15104 (source (origin
15105 (method url-fetch)
15106 (uri (cran-uri "ACSNMineR" version))
15107 (sha256
15108 (base32
15109 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
15110 (properties `((upstream-name . "ACSNMineR")))
15111 (build-system r-build-system)
15112 (propagated-inputs
15113 `(("r-ggplot2" ,r-ggplot2)
15114 ("r-gridextra" ,r-gridextra)))
15115 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
15116 (synopsis "Gene enrichment analysis")
15117 (description
15118 "This package provides tools to compute and represent gene set enrichment
15119 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
15120 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
15121 enrichment can be run with hypergeometric test or Fisher exact test, and can
15122 use multiple corrections. Visualization of data can be done either by
15123 barplots or heatmaps.")
15124 (license license:gpl2+)))
15125
15126 (define-public r-seqinr
15127 (package
15128 (name "r-seqinr")
15129 (version "4.2-5")
15130 (source
15131 (origin
15132 (method url-fetch)
15133 (uri (cran-uri "seqinr" version))
15134 (sha256
15135 (base32
15136 "1z1jipgrn9nrnxlx7bcf8c2chwpa3kfva0zgyb12xbr3kisn166y"))))
15137 (build-system r-build-system)
15138 (propagated-inputs
15139 `(("r-ade4" ,r-ade4)
15140 ("r-segmented" ,r-segmented)))
15141 (inputs
15142 `(("zlib" ,zlib)))
15143 (home-page "http://seqinr.r-forge.r-project.org/")
15144 (synopsis "Biological sequences retrieval and analysis")
15145 (description
15146 "This package provides tools for exploratory data analysis and data
15147 visualization of biological sequence (DNA and protein) data. It also includes
15148 utilities for sequence data management under the ACNUC system.")
15149 (license license:gpl2+)))
15150
15151 (define-public r-units
15152 (package
15153 (name "r-units")
15154 (version "0.7-0")
15155 (source
15156 (origin
15157 (method url-fetch)
15158 (uri (cran-uri "units" version))
15159 (sha256
15160 (base32
15161 "0kwfcrrbcwl7s50n1wp33vswqzmprh91clvakbd1jpznqpg5m3js"))))
15162 (build-system r-build-system)
15163 (inputs
15164 `(("udunits" ,udunits)))
15165 (propagated-inputs
15166 `(("r-rcpp" ,r-rcpp)))
15167 (native-inputs
15168 `(("r-knitr" ,r-knitr)))
15169 (home-page "https://github.com/r-quantities/units/")
15170 (synopsis "Measurement Units for R Vectors")
15171 (description
15172 "This package provides support for measurement units in R vectors,
15173 matrices and arrays: automatic propagation, conversion, derivation and
15174 simplification of units; raising errors in case of unit incompatibility. It
15175 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
15176 classes.")
15177 (license license:gpl2)))
15178
15179 (define-public r-udunits2
15180 (package
15181 (name "r-udunits2")
15182 (version "0.13")
15183 (source
15184 (origin
15185 (method url-fetch)
15186 (uri (cran-uri "udunits2" version))
15187 (sha256
15188 (base32
15189 "0yav7rm2afcx67xqrknybxgz7x63w78zyxa0xifvc0k2gz0d6mfi"))))
15190 (properties `((upstream-name . "udunits2")))
15191 (build-system r-build-system)
15192 (inputs
15193 `(("udunits" ,udunits)))
15194 (home-page "https://cran.r-project.org/package=udunits2")
15195 (synopsis "Udunits-2 bindings for R")
15196 (description
15197 "This package provides simple bindings to Unidata's udunits library.")
15198 (license license:gpl2)))
15199
15200 (define-public r-classint
15201 (package
15202 (name "r-classint")
15203 (version "0.4-3")
15204 (source
15205 (origin
15206 (method url-fetch)
15207 (uri (cran-uri "classInt" version))
15208 (sha256
15209 (base32
15210 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
15211 (properties `((upstream-name . "classInt")))
15212 (build-system r-build-system)
15213 (propagated-inputs
15214 `(("r-class" ,r-class)
15215 ("r-e1071" ,r-e1071)
15216 ("r-kernsmooth" ,r-kernsmooth)))
15217 (native-inputs
15218 `(("gfortran" ,gfortran)
15219 ("r-knitr" ,r-knitr)))
15220 (home-page "https://github.com/r-spatial/classInt/")
15221 (synopsis "Choose univariate class intervals")
15222 (description
15223 "This package provides selected commonly used methods for choosing
15224 univariate class intervals for mapping or other graphics purposes.")
15225 (license license:gpl2+)))
15226
15227 (define-public r-spdata
15228 (package
15229 (name "r-spdata")
15230 (version "0.3.8")
15231 (source
15232 (origin
15233 (method url-fetch)
15234 (uri (cran-uri "spData" version))
15235 (sha256
15236 (base32
15237 "1mlsqy9cbilfc80cbdlbgsngvzdkrd9yjdkxnw2b1gzxnj6jcqbs"))))
15238 (properties `((upstream-name . "spData")))
15239 (build-system r-build-system)
15240 (propagated-inputs
15241 `(("r-raster" ,r-raster)
15242 ("r-sp" ,r-sp)))
15243 (home-page "https://github.com/Nowosad/spData")
15244 (synopsis "Datasets for spatial analysis")
15245 (description
15246 "This a package containing diverse spatial datasets for demonstrating,
15247 benchmarking and teaching spatial data analysis. It includes R data of class
15248 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
15249 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
15250 of the datasets are designed to illustrate specific analysis techniques.
15251 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
15252 illustrate point pattern analysis techniques.")
15253 (license license:cc0)))
15254
15255 (define-public r-learnbayes
15256 (package
15257 (name "r-learnbayes")
15258 (version "2.15.1")
15259 (source
15260 (origin
15261 (method url-fetch)
15262 (uri (cran-uri "LearnBayes" version))
15263 (sha256
15264 (base32
15265 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
15266 (properties `((upstream-name . "LearnBayes")))
15267 (build-system r-build-system)
15268 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
15269 (synopsis "Functions for learning Bayesian inference")
15270 (description
15271 "This package provides a collection of functions helpful in learning the
15272 basic tenets of Bayesian statistical inference. It contains functions for
15273 summarizing basic one and two parameter posterior distributions and predictive
15274 distributions. It contains MCMC algorithms for summarizing posterior
15275 distributions defined by the user. It also contains functions for regression
15276 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
15277 sampling.")
15278 (license license:gpl2+)))
15279
15280 (define-public r-deldir
15281 (package
15282 (name "r-deldir")
15283 (version "0.2-10")
15284 (source
15285 (origin
15286 (method url-fetch)
15287 (uri (cran-uri "deldir" version))
15288 (sha256
15289 (base32
15290 "08ij6zb6id71zk6gzs9z779y49y41c2gpi7p7mljnlw7py92g8k5"))))
15291 (build-system r-build-system)
15292 (native-inputs `(("gfortran" ,gfortran)))
15293 (home-page "https://cran.r-project.org/web/packages/deldir")
15294 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
15295 (description
15296 "This package provides tools for calculating the Delaunay triangulation
15297 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
15298 of a planar point set. It plots triangulations and tessellations in various
15299 ways, clips tessellations to sub-windows, calculates perimeters of
15300 tessellations, and summarizes information about the tiles of the
15301 tessellation.")
15302 (license license:gpl2+)))
15303
15304 (define-public r-sf
15305 (package
15306 (name "r-sf")
15307 (version "0.9-7")
15308 (source
15309 (origin
15310 (method url-fetch)
15311 (uri (cran-uri "sf" version))
15312 (sha256
15313 (base32
15314 "175fmnnw11fjhfgjv9sn9b0jfjcqbybpgwsvv99d5yddigvw5jja"))))
15315 (build-system r-build-system)
15316 (inputs
15317 `(("gdal" ,gdal)
15318 ("geos" ,geos)
15319 ("proj" ,proj)
15320 ("sqlite" ,sqlite)
15321 ("zlib" ,zlib)))
15322 (propagated-inputs
15323 `(("r-classint" ,r-classint)
15324 ("r-dbi" ,r-dbi)
15325 ("r-magrittr" ,r-magrittr)
15326 ("r-rcpp" ,r-rcpp)
15327 ("r-units" ,r-units)))
15328 (native-inputs
15329 `(("pkg-config" ,pkg-config)
15330 ("r-knitr" ,r-knitr)))
15331 (home-page "https://github.com/r-spatial/sf/")
15332 (synopsis "Simple features for R")
15333 (description
15334 "This package provides support for simple features, a standardized way to
15335 encode spatial vector data. It binds to GDAL for reading and writing data, to
15336 GEOS for geometrical operations, and to PROJ for projection conversions and
15337 datum transformations.")
15338 ;; Either of these licenses
15339 (license (list license:gpl2 license:expat))))
15340
15341 (define-public r-spdep
15342 (package
15343 (name "r-spdep")
15344 (version "1.1-5")
15345 (source
15346 (origin
15347 (method url-fetch)
15348 (uri (cran-uri "spdep" version))
15349 (sha256
15350 (base32
15351 "0pbd7wrg5v44p2yxsjp774lpyzap3madir5mn5p3ix7ibk7ldjs7"))))
15352 (build-system r-build-system)
15353 (propagated-inputs
15354 `(("r-boot" ,r-boot)
15355 ("r-coda" ,r-coda)
15356 ("r-deldir" ,r-deldir)
15357 ("r-expm" ,r-expm)
15358 ("r-gmodels" ,r-gmodels)
15359 ("r-learnbayes" ,r-learnbayes)
15360 ("r-mass" ,r-mass)
15361 ("r-matrix" ,r-matrix)
15362 ("r-nlme" ,r-nlme)
15363 ("r-sf" ,r-sf)
15364 ("r-sp" ,r-sp)
15365 ("r-spdata" ,r-spdata)))
15366 (native-inputs
15367 `(("r-knitr" ,r-knitr)))
15368 (home-page "https://github.com/r-spatial/spdep/")
15369 (synopsis "Spatial dependence: weighting schemes, statistics and models")
15370 (description
15371 "This package provides a collection of functions to create spatial
15372 weights matrix objects from polygon contiguities, from point patterns by
15373 distance and tessellations, for summarizing these objects, and for permitting
15374 their use in spatial data analysis, including regional aggregation by minimum
15375 spanning tree.")
15376 (license license:gpl2+)))
15377
15378 (define-public r-adegenet
15379 (package
15380 (name "r-adegenet")
15381 (version "2.1.3")
15382 (source
15383 (origin
15384 (method url-fetch)
15385 (uri (cran-uri "adegenet" version))
15386 (sha256
15387 (base32
15388 "1ipnawi0qfd4rfwj37igvh36x1a9d8x4n7xynn1jcr12rd713407"))))
15389 (build-system r-build-system)
15390 (propagated-inputs
15391 `(("r-ade4" ,r-ade4)
15392 ("r-ape" ,r-ape)
15393 ("r-boot" ,r-boot)
15394 ("r-dplyr" ,r-dplyr)
15395 ("r-ggplot2" ,r-ggplot2)
15396 ("r-igraph" ,r-igraph)
15397 ("r-mass" ,r-mass)
15398 ("r-reshape2" ,r-reshape2)
15399 ("r-seqinr" ,r-seqinr)
15400 ("r-shiny" ,r-shiny)
15401 ("r-spdep" ,r-spdep)
15402 ("r-vegan" ,r-vegan)))
15403 (home-page "https://github.com/thibautjombart/adegenet")
15404 (synopsis "Exploratory analysis of genetic and genomic data")
15405 (description
15406 "This package provides a toolset for the exploration of genetic and
15407 genomic data. Adegenet provides formal (S4) classes for storing and handling
15408 various genetic data, including genetic markers with varying ploidy and
15409 hierarchical population structure (@code{genind} class), alleles counts by
15410 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
15411 also implements original multivariate methods (DAPC, sPCA), graphics,
15412 statistical tests, simulation tools, distance and similarity measures, and
15413 several spatial methods. A range of both empirical and simulated datasets is
15414 also provided to illustrate various methods.")
15415 (license license:gpl2+)))
15416
15417 (define-public r-pegas
15418 (package
15419 (name "r-pegas")
15420 (version "0.14")
15421 (source
15422 (origin
15423 (method url-fetch)
15424 (uri (cran-uri "pegas" version))
15425 (sha256
15426 (base32 "0lr06gajzdanj8ax91kgpxsj863m367v2s1z5gnxps3999n0xybx"))))
15427 (build-system r-build-system)
15428 (propagated-inputs
15429 `(("r-adegenet" ,r-adegenet)
15430 ("r-ape" ,r-ape)))
15431 (home-page "http://ape-package.ird.fr/pegas.html")
15432 (synopsis "Population and evolutionary genetics analysis system")
15433 (description
15434 "This package provides functions for reading, writing, plotting,
15435 analysing, and manipulating allelic and haplotypic data, including from VCF
15436 files, and for the analysis of population nucleotide sequences and
15437 micro-satellites including coalescent analyses, linkage disequilibrium,
15438 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
15439 minimum spanning tree and network, and median-joining networks.")
15440 (license license:gpl2+)))
15441
15442 (define-public r-rmetasim
15443 (package
15444 (name "r-rmetasim")
15445 (version "3.1.14")
15446 (source
15447 (origin
15448 (method url-fetch)
15449 (uri (cran-uri "rmetasim" version))
15450 (sha256
15451 (base32
15452 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
15453 (build-system r-build-system)
15454 (propagated-inputs
15455 `(("r-ade4" ,r-ade4)
15456 ("r-adegenet" ,r-adegenet)
15457 ("r-gtools" ,r-gtools)
15458 ("r-pegas" ,r-pegas)))
15459 (home-page "https://cran.r-project.org/web/packages/rmetasim")
15460 (synopsis "Individual-based population genetic simulation environment")
15461 (description
15462 "This package provides an interface between R and the metasim simulation
15463 engine. The simulation environment is documented in: Strand, A.(2002),
15464 Metasim 1.0: an individual-based environment for simulating population
15465 genetics of complex population dynamics.")
15466 ;; Any GPL version
15467 (license license:gpl2+)))
15468
15469 (define-public r-genetics
15470 (package
15471 (name "r-genetics")
15472 (version "1.3.8.1.3")
15473 (source
15474 (origin
15475 (method url-fetch)
15476 (uri (cran-uri "genetics" version))
15477 (sha256
15478 (base32
15479 "0lljxvz7nc6y2z303icphar2niir0i407w5cyhy2pwspd9gwkwpy"))))
15480 (build-system r-build-system)
15481 (propagated-inputs
15482 `(("r-combinat" ,r-combinat)
15483 ("r-gdata" ,r-gdata)
15484 ("r-gtools" ,r-gtools)
15485 ("r-mass" ,r-mass)
15486 ("r-mvtnorm" ,r-mvtnorm)))
15487 (home-page "https://cran.r-project.org/web/packages/genetics/")
15488 (synopsis "Population genetics")
15489 (description
15490 "This package provides classes and methods for handling genetic data.
15491 It includes classes to represent genotypes and haplotypes at single markers up
15492 to multiple markers on multiple chromosomes. Function include allele
15493 frequencies, flagging homo/heterozygotes, flagging carriers of certain
15494 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
15495 and testing for linkage disequilibrium, ...")
15496 ;; Any GPL version.
15497 (license license:gpl2+)))
15498
15499 (define-public r-snp-plotter
15500 (package
15501 (name "r-snp-plotter")
15502 (version "0.5.1")
15503 (source
15504 (origin
15505 (method url-fetch)
15506 (uri (cran-uri "snp.plotter" version))
15507 (sha256
15508 (base32
15509 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
15510 (properties `((upstream-name . "snp.plotter")))
15511 (build-system r-build-system)
15512 (propagated-inputs `(("r-genetics" ,r-genetics)))
15513 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
15514 (synopsis "Plot p-values using single SNP and/or haplotype data")
15515 (description
15516 "This package helps you create plots of p-values using single SNP and/or
15517 haplotype data. Main features of the package include options to display a
15518 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
15519 datasets simultaneously. Plots can be created using global and/or individual
15520 haplotype p-values along with single SNP p-values. Images are created as
15521 either PDF/EPS files.")
15522 (license license:gpl2+)))
15523
15524 (define-public r-polspline
15525 (package
15526 (name "r-polspline")
15527 (version "1.1.19")
15528 (source
15529 (origin
15530 (method url-fetch)
15531 (uri (cran-uri "polspline" version))
15532 (sha256
15533 (base32 "0rhzf735hmbqfn2xbgcln4sqx7m9far72g5gq9mghgkw016kqglm"))))
15534 (build-system r-build-system)
15535 (native-inputs `(("gfortran" ,gfortran)))
15536 (home-page "https://cran.r-project.org/web/packages/polspline/")
15537 (synopsis "Polynomial spline routines")
15538 (description
15539 "This package provides routines for the polynomial spline fitting
15540 routines hazard regression, hazard estimation with flexible tails, logspline,
15541 lspec, polyclass, and polymars.")
15542 (license license:gpl2+)))
15543
15544 (define-public r-rms
15545 (package
15546 (name "r-rms")
15547 (version "6.1-1")
15548 (source
15549 (origin
15550 (method url-fetch)
15551 (uri (cran-uri "rms" version))
15552 (sha256
15553 (base32 "1zgfd60lzbakcv7x0i5k3lkw3s0xx5bzssjgangna5lq2j17cdli"))))
15554 (build-system r-build-system)
15555 (propagated-inputs
15556 `(("r-cluster" ,r-cluster)
15557 ("r-digest" ,r-digest)
15558 ("r-ggplot2" ,r-ggplot2)
15559 ("r-hmisc" ,r-hmisc)
15560 ("r-htmltable" ,r-htmltable)
15561 ("r-htmltools" ,r-htmltools)
15562 ("r-lattice" ,r-lattice)
15563 ("r-mass" ,r-mass)
15564 ("r-multcomp" ,r-multcomp)
15565 ("r-nlme" ,r-nlme)
15566 ("r-polspline" ,r-polspline)
15567 ("r-quantreg" ,r-quantreg)
15568 ("r-rpart" ,r-rpart)
15569 ("r-sparsem" ,r-sparsem)
15570 ("r-survival" ,r-survival)))
15571 (native-inputs `(("gfortran" ,gfortran)))
15572 (home-page "http://biostat.mc.vanderbilt.edu/rms")
15573 (synopsis "Regression modeling strategies")
15574 (description
15575 "This is a package for regression modeling, testing, estimation,
15576 validation, graphics, prediction, and typesetting by storing enhanced model
15577 design attributes in the fit. The rms package is a collection of functions
15578 that assist with and streamline modeling. It also contains functions for
15579 binary and ordinal logistic regression models, ordinal models for continuous Y
15580 with a variety of distribution families, and the Buckley-James multiple
15581 regression model for right-censored responses, and implements penalized
15582 maximum likelihood estimation for logistic and ordinary linear models. The
15583 package works with almost any regression model, but it was especially written
15584 to work with binary or ordinal regression models, Cox regression, accelerated
15585 failure time models, ordinary linear models, the Buckley-James model,
15586 generalized least squares for serially or spatially correlated observations,
15587 generalized linear models, and quantile regression.")
15588 (license license:gpl2+)))
15589
15590 (define-public r-arsenal
15591 (package
15592 (name "r-arsenal")
15593 (version "3.6.2")
15594 (source
15595 (origin
15596 (method url-fetch)
15597 (uri (cran-uri "arsenal" version))
15598 (sha256
15599 (base32
15600 "0spm0s23xs5bm88slkz6a65mbs663qhnravwxp7rkdkr378vb5fn"))))
15601 (properties `((upstream-name . "arsenal")))
15602 (build-system r-build-system)
15603 (propagated-inputs `(("r-knitr" ,r-knitr)))
15604 (native-inputs `(("r-knitr" ,r-knitr)))
15605 (home-page "https://github.com/mayoverse/arsenal")
15606 (synopsis "Functions for large-scale statistical summaries")
15607 (description
15608 "This package provides an arsenal of R functions for large-scale
15609 statistical summaries, which are streamlined to work within the latest
15610 reporting tools in R and RStudio and which use formulas and versatile
15611 summary statistics for summary tables and models. The primary functions
15612 include
15613
15614 @enumerate
15615 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
15616 levels of one or more categorical variables;
15617 @item @code{paired}, a Table-1-like summary of multiple variable types paired
15618 across two time points;
15619 @item @code{modelsum}, which performs simple model fits on one or more
15620 endpoints for many variables (univariate or adjusted for covariates);
15621 @item @code{freqlist}, a powerful frequency table across many categorical
15622 variables;
15623 @item @code{comparedf}, a function for comparing @code{data.frames}; and
15624 @item @code{write2}, a function to output tables to a document.
15625 @end enumerate
15626 ")
15627 (license license:gpl2+)))
15628
15629 (define-public r-haplo-stats
15630 (package
15631 (name "r-haplo-stats")
15632 (version "1.8.6")
15633 (source
15634 (origin
15635 (method url-fetch)
15636 (uri (cran-uri "haplo.stats" version))
15637 (sha256
15638 (base32
15639 "1imz4gs0n57vixwwbirrihpgvn2pyj5da4rgjcjk14n2xkk0nay7"))))
15640 (properties `((upstream-name . "haplo.stats")))
15641 (build-system r-build-system)
15642 (propagated-inputs
15643 `(("r-arsenal" ,r-arsenal)
15644 ("r-rms" ,r-rms)))
15645 (native-inputs
15646 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
15647 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
15648 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
15649 (description
15650 "This package provides routines for the analysis of indirectly measured
15651 haplotypes. The statistical methods assume that all subjects are unrelated
15652 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
15653 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
15654 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
15655 examples in the vignette.")
15656 (license license:gpl2+)))
15657
15658 (define-public r-bqtl
15659 (package
15660 (name "r-bqtl")
15661 (version "1.0-32")
15662 (source
15663 (origin
15664 (method url-fetch)
15665 (uri (cran-uri "bqtl" version))
15666 (sha256
15667 (base32
15668 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
15669 (build-system r-build-system)
15670 (native-inputs `(("gfortran" ,gfortran)))
15671 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
15672 (synopsis "Bayesian QTL mapping toolkit")
15673 (description
15674 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
15675 lines. It includes maximum likelihood and Bayesian tools.")
15676 (license license:gpl2+)))
15677
15678 (define-public r-ibdreg
15679 (package
15680 (name "r-ibdreg")
15681 (version "0.3.1")
15682 (source
15683 (origin
15684 (method url-fetch)
15685 (uri (cran-uri "ibdreg" version))
15686 (sha256
15687 (base32
15688 "0kgx9iavgm6d6njhki7bm82d6lw2c7kcch2pryd339js2hm0l5gq"))))
15689 (build-system r-build-system)
15690 (home-page "https://www.mayo.edu/research/labs/\
15691 statistical-genetics-genetic-epidemiology/software")
15692 (synopsis "Regression methods for IBD linkage with covariates")
15693 (description
15694 "This package provides a method to test genetic linkage with covariates
15695 by regression methods with response IBD sharing for relative pairs. Account
15696 for correlations of IBD statistics and covariates for relative pairs within
15697 the same pedigree.")
15698 (license license:gpl2+)))
15699
15700 (define-public r-dlmap
15701 (package
15702 (name "r-dlmap")
15703 (version "1.13")
15704 (source
15705 (origin
15706 (method url-fetch)
15707 (uri (cran-uri "dlmap" version))
15708 (sha256
15709 (base32
15710 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
15711 (build-system r-build-system)
15712 (propagated-inputs
15713 `(("r-ibdreg" ,r-ibdreg)
15714 ("r-mgcv" ,r-mgcv)
15715 ("r-nlme" ,r-nlme)
15716 ("r-qtl" ,r-qtl)
15717 ("r-wgaim" ,r-wgaim)))
15718 (home-page "https://cran.r-project.org/web/packages/dlmap/")
15719 (synopsis "Detection localization mapping for QTL")
15720 (description
15721 "This is package for QTL mapping in a mixed model framework with separate
15722 detection and localization stages. The first stage detects the number of QTL
15723 on each chromosome based on the genetic variation due to grouped markers on
15724 the chromosome; the second stage uses this information to determine the most
15725 likely QTL positions. The mixed model can accommodate general fixed and
15726 random effects, including spatial effects in field trials and pedigree
15727 effects. It is applicable to backcrosses, doubled haploids, recombinant
15728 inbred lines, F2 intercrosses, and association mapping populations.")
15729 (license license:gpl2)))
15730
15731 (define-public r-hwde
15732 (package
15733 (name "r-hwde")
15734 (version "0.67")
15735 (source
15736 (origin
15737 (method url-fetch)
15738 (uri (cran-uri "hwde" version))
15739 (sha256
15740 (base32
15741 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
15742 (build-system r-build-system)
15743 (home-page "https://cran.r-project.org/web/packages/hwde/")
15744 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
15745 (description
15746 "This package fits models for genotypic disequilibria, as described in
15747 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
15748 terms are available that account for first order interactions between loci.
15749 It also implements, for a single locus in a single population, a conditional
15750 exact test for Hardy-Weinberg equilibrium.")
15751 (license license:gpl2+)))
15752
15753 (define-public r-tdthap
15754 (package
15755 (name "r-tdthap")
15756 (version "1.1-11")
15757 (source
15758 (origin
15759 (method url-fetch)
15760 (uri (cran-uri "tdthap" version))
15761 (sha256
15762 (base32
15763 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
15764 (build-system r-build-system)
15765 (home-page "https://cran.r-project.org/web/packages/tdthap/")
15766 (synopsis "TDT tests for extended haplotypes")
15767 (description
15768 "Functions and examples are provided for transmission/disequilibrium
15769 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
15770 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
15771 (license license:artistic2.0)))
15772
15773 (define-public r-sparql
15774 (package
15775 (name "r-sparql")
15776 (version "1.16")
15777 (source (origin
15778 (method url-fetch)
15779 (uri (cran-uri "SPARQL" version))
15780 (sha256
15781 (base32
15782 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
15783 (properties `((upstream-name . "SPARQL")))
15784 (build-system r-build-system)
15785 (propagated-inputs
15786 `(("r-rcurl" ,r-rcurl)
15787 ("r-xml" ,r-xml)))
15788 (home-page "https://cran.r-project.org/web/packages/SPARQL")
15789 (synopsis "SPARQL client for R")
15790 (description "This package provides an interface to use SPARQL to pose
15791 SELECT or UPDATE queries to an end-point.")
15792 ;; The only license indication is found in the DESCRIPTION file,
15793 ;; which states GPL-3. So we cannot assume GPLv3+.
15794 (license license:gpl3)))
15795
15796 (define-public r-bookdown
15797 (package
15798 (name "r-bookdown")
15799 (version "0.21")
15800 (source (origin
15801 (method url-fetch)
15802 (uri (cran-uri "bookdown" version))
15803 (sha256
15804 (base32
15805 "0xms1srx9l2mn8xaxnpic0s21y8k56bhwpj45wy7b0yscmxgmh27"))))
15806 (build-system r-build-system)
15807 (propagated-inputs
15808 `(("r-htmltools" ,r-htmltools)
15809 ("r-knitr" ,r-knitr)
15810 ("r-rmarkdown" ,r-rmarkdown)
15811 ("r-tinytex" ,r-tinytex)
15812 ("r-xfun" ,r-xfun)
15813 ("r-yaml" ,r-yaml)
15814 ("pandoc" ,pandoc)))
15815 (home-page "https://github.com/rstudio/bookdown")
15816 (synopsis "Authoring books and technical documents with R markdown")
15817 (description "This package provides output formats and utilities for
15818 authoring books and technical documents with R Markdown.")
15819 (license license:gpl3)))
15820
15821 (define-public r-optparse
15822 (package
15823 (name "r-optparse")
15824 (version "1.6.6")
15825 (source
15826 (origin
15827 (method url-fetch)
15828 (uri (cran-uri "optparse" version))
15829 (sha256
15830 (base32
15831 "1l301dy3gc8pn7j00awcjh41wmc1ks9kswak255kbsa6f54rsxsi"))))
15832 (build-system r-build-system)
15833 (propagated-inputs
15834 `(("r-getopt" ,r-getopt)))
15835 (native-inputs
15836 `(("r-knitr" ,r-knitr)))
15837 (home-page "https://github.com/trevorld/optparse")
15838 (synopsis "Command line option parser")
15839 (description
15840 "This package provides a command line parser inspired by Python's
15841 @code{optparse} library to be used with Rscript to write shebang scripts
15842 that accept short and long options.")
15843 (license license:gpl2+)))
15844
15845 (define-public r-kernlab
15846 (package
15847 (name "r-kernlab")
15848 (version "0.9-29")
15849 (source
15850 (origin
15851 (method url-fetch)
15852 (uri (cran-uri "kernlab" version))
15853 (sha256
15854 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
15855 (build-system r-build-system)
15856 (home-page "https://cran.r-project.org/web/packages/kernlab")
15857 (synopsis "Kernel-based machine learning tools")
15858 (description
15859 "This package provides kernel-based machine learning methods for
15860 classification, regression, clustering, novelty detection, quantile regression
15861 and dimensionality reduction. Among other methods @code{kernlab} includes
15862 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
15863 and a QP solver.")
15864 (license license:gpl2)))
15865
15866 (define-public r-hierfstat
15867 (package
15868 (name "r-hierfstat")
15869 (version "0.5-7")
15870 (source
15871 (origin
15872 (method url-fetch)
15873 (uri (cran-uri "hierfstat" version))
15874 (sha256
15875 (base32
15876 "0dp8k1z5a8gqnax99y1hwfvxilzf4n2i751zr0z6ihrzirsvb3m3"))))
15877 (build-system r-build-system)
15878 (propagated-inputs
15879 `(("r-ade4" ,r-ade4)
15880 ("r-adegenet" ,r-adegenet)
15881 ("r-gaston" ,r-gaston)
15882 ("r-gtools" ,r-gtools)))
15883 (native-inputs
15884 `(("r-knitr" ,r-knitr)))
15885 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
15886 (synopsis "Estimation and tests of hierarchical F-statistics")
15887 (description
15888 "This package allows the estimation of hierarchical F-statistics from
15889 haploid or diploid genetic data with any numbers of levels in the hierarchy,
15890 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
15891 are also given to test via randomisations the significance of each F and
15892 variance components, using the likelihood-ratio statistics G.")
15893 (license license:gpl2+)))
15894
15895 (define-public r-hapassoc
15896 (package
15897 (name "r-hapassoc")
15898 (version "1.2-8")
15899 (source
15900 (origin
15901 (method url-fetch)
15902 (uri (cran-uri "hapassoc" version))
15903 (sha256
15904 (base32
15905 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
15906 (build-system r-build-system)
15907 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
15908 (synopsis "Inference of trait associations with SNP haplotypes")
15909 (description
15910 "Hapassoc performs likelihood inference of trait associations with
15911 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
15912 functions are developed primarily for data collected in cohort or
15913 cross-sectional studies. They can accommodate uncertain haplotype phase and
15914 handle missing genotypes at some SNPs.")
15915 (license license:gpl2)))
15916
15917 (define-public r-sampling
15918 (package
15919 (name "r-sampling")
15920 (version "2.9")
15921 (source
15922 (origin
15923 (method url-fetch)
15924 (uri (cran-uri "sampling" version))
15925 (sha256
15926 (base32
15927 "11xis4vzn2ga8ml9xrgfgqzccvwbnabq35aidzdvpnvciybsanvz"))))
15928 (build-system r-build-system)
15929 (propagated-inputs
15930 `(("r-lpsolve" ,r-lpsolve)
15931 ("r-mass" ,r-mass)))
15932 (home-page "https://cran.r-project.org/web/packages/sampling/")
15933 (synopsis "Survey sampling")
15934 (description
15935 "This package provides functions for drawing and calibrating samples.")
15936 (license license:gpl2+)))
15937
15938 (define-public r-r2html
15939 (package
15940 (name "r-r2html")
15941 (version "2.3.2")
15942 (source
15943 (origin
15944 (method url-fetch)
15945 (uri (cran-uri "R2HTML" version))
15946 (sha256
15947 (base32
15948 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
15949 (properties `((upstream-name . "R2HTML")))
15950 (build-system r-build-system)
15951 (home-page "https://github.com/nalimilan/R2HTML")
15952 (synopsis "HTML export for R objects")
15953 (description
15954 "This package includes HTML functions and methods to write in an HTML
15955 file. Thus, making HTML reports is easy. It includes a function that allows
15956 redirection on the fly, which appears to be very useful for teaching purposes,
15957 as the student can keep a copy of the produced output to keep all that they
15958 did during the course. The package comes with a vignette describing how to
15959 write HTML reports for statistical analysis. Finally, a driver for Sweave
15960 parses HTML flat files containing R code and to automatically write
15961 the corresponding outputs (tables and graphs).")
15962 (license license:gpl2+)))
15963
15964 (define-public r-rjava
15965 (package
15966 (name "r-rjava")
15967 (version "0.9-13")
15968 (source
15969 (origin
15970 (method url-fetch)
15971 (uri (cran-uri "rJava" version))
15972 (sha256
15973 (base32
15974 "1x3mihyqzr61j52rwaqciw43mkjzmhib4s6qf57v6xj40ksqh5jv"))))
15975 (properties `((upstream-name . "rJava")))
15976 (build-system r-build-system)
15977 (arguments
15978 `(#:modules ((guix build utils)
15979 (guix build r-build-system)
15980 (ice-9 match))
15981 #:phases
15982 (modify-phases %standard-phases
15983 (add-after 'unpack 'set-JAVA_HOME
15984 (lambda* (#:key inputs #:allow-other-keys)
15985 (let ((jdk (assoc-ref inputs "jdk")))
15986 (setenv "JAVA_HOME" jdk)
15987 (setenv "JAVA" (which "java"))
15988 (setenv "JAR" (which "jar"))
15989 (setenv "JAVAC" (which "javac"))
15990 (setenv "JAVAH" (which "javah"))
15991 (setenv "JAVA_CPPFLAGS"
15992 (string-append "-I" jdk "/include "
15993 "-I" jdk "/include/linux"))
15994 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
15995 ((lib) (setenv "JAVA_LIBS" lib))
15996 (_ (error "Could not find libjvm.so"))))
15997 #t)))))
15998 (inputs
15999 `(("icu4c" ,icu4c)
16000 ("jdk" ,icedtea-8 "jdk")
16001 ("pcre" ,pcre)
16002 ("zlib" ,zlib)))
16003 (home-page "https://www.rforge.net/rJava/")
16004 (synopsis "Low-Level R to Java interface")
16005 (description
16006 "This package provides a low-level interface to the Java VM very much
16007 like .C/.Call and friends. It allows the creation of objects, calling methods
16008 and accessing fields.")
16009 (license license:gpl2)))
16010
16011 (define-public r-svmisc
16012 (package
16013 (name "r-svmisc")
16014 (version "1.1.0")
16015 (source
16016 (origin
16017 (method url-fetch)
16018 (uri (cran-uri "svMisc" version))
16019 (sha256
16020 (base32
16021 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
16022 (properties `((upstream-name . "svMisc")))
16023 (build-system r-build-system)
16024 (home-page "https://github.com/SciViews/svMisc")
16025 (synopsis "Miscellaneous functions for SciViews")
16026 (description
16027 "This package provides miscellaneous functions for SciViews or general
16028 use, including tools to manage a temporary environment attached to the search
16029 path for temporary variables you do not want to @code{save()} or
16030 @code{load()}; test the current platform; showing progress bars, etc.")
16031 (license license:gpl2)))
16032
16033 (define-public r-xyz
16034 (package
16035 (name "r-xyz")
16036 (version "0.2")
16037 (source
16038 (origin
16039 (method url-fetch)
16040 (uri (cran-uri "xyz" version))
16041 (sha256
16042 (base32
16043 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
16044 (build-system r-build-system)
16045 (propagated-inputs
16046 `(("r-rcpp" ,r-rcpp)))
16047 (home-page "https://cran.r-project.org/web/packages/xyz/")
16048 (synopsis "Algorithm for fast interaction search in high-dimensional data")
16049 (description
16050 "High dimensional interaction search by brute force requires a quadratic
16051 computational cost in the number of variables. The xyz algorithm provably
16052 finds strong interactions in almost linear time. For details of the algorithm
16053 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
16054 interaction search in high-dimensional data.")
16055 ;; Any version of the GPL.
16056 (license license:gpl2+)))
16057
16058 (define-public r-rttf2pt1
16059 (package
16060 (name "r-rttf2pt1")
16061 (version "1.3.8")
16062 (source
16063 (origin
16064 (method url-fetch)
16065 (uri (cran-uri "Rttf2pt1" version))
16066 (sha256
16067 (base32
16068 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
16069 (properties `((upstream-name . "Rttf2pt1")))
16070 (build-system r-build-system)
16071 (home-page "https://github.com/wch/Rttf2pt1")
16072 (synopsis "Font conversion utility")
16073 (description
16074 "This package contains the program @code{ttf2pt1}, for use with the
16075 @code{extrafont} package.")
16076 ;; Most of the files are covered under the Expat license. Some files are
16077 ;; covered under BSD-3. Deviations for individual files are recorded in
16078 ;; the LICENSE file.
16079 (license (list license:bsd-3 license:expat
16080 (license:non-copyleft "file://LICENSE")))))
16081
16082 (define-public r-extrafontdb
16083 (package
16084 (name "r-extrafontdb")
16085 (version "1.0")
16086 (source
16087 (origin
16088 (method url-fetch)
16089 (uri (cran-uri "extrafontdb" version))
16090 (sha256
16091 (base32
16092 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
16093 (build-system r-build-system)
16094 (home-page "https://github.com/wch/extrafontdb")
16095 (synopsis "Database for the extrafont package")
16096 (description
16097 "This package holds the database for the @code{extrafont} package.")
16098 (license license:gpl2)))
16099
16100 (define-public r-extrafont
16101 (package
16102 (name "r-extrafont")
16103 (version "0.17")
16104 (source
16105 (origin
16106 (method url-fetch)
16107 (uri (cran-uri "extrafont" version))
16108 (sha256
16109 (base32
16110 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
16111 (build-system r-build-system)
16112 (propagated-inputs
16113 `(("r-extrafontdb" ,r-extrafontdb)
16114 ("r-rttf2pt1" ,r-rttf2pt1)))
16115 (home-page "https://github.com/wch/extrafont")
16116 (synopsis "Tools for using fonts in R")
16117 (description
16118 "The extrafont package makes it easier to use fonts other than the basic
16119 PostScript fonts that R uses. Fonts that are imported into extrafont can be
16120 used with PDF or PostScript output files. There are two hurdles for using
16121 fonts in PDF (or Postscript) output files:
16122
16123 @enumerate
16124 @item Making R aware of the font and the dimensions of the characters.
16125 @item Embedding the fonts in the PDF file so that the PDF can be displayed
16126 properly on a device that doesn't have the font. This is usually needed if
16127 you want to print the PDF file or share it with others.
16128 @end enumerate
16129
16130 The extrafont package makes both of these things easier.")
16131 (license license:gpl2)))
16132
16133 (define-public r-xkcd
16134 (package
16135 (name "r-xkcd")
16136 (version "0.0.6")
16137 (source
16138 (origin
16139 (method url-fetch)
16140 (uri (cran-uri "xkcd" version))
16141 (sha256
16142 (base32
16143 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
16144 (build-system r-build-system)
16145 (propagated-inputs
16146 `(("r-extrafont" ,r-extrafont)
16147 ("r-ggplot2" ,r-ggplot2)
16148 ("r-hmisc" ,r-hmisc)))
16149 (home-page "https://cran.r-project.org/web/packages/xkcd/")
16150 (synopsis "Plot ggplot2 graphics in the XKCD style")
16151 (description
16152 "This package provides the means to plot ggplot2 graphs in the style of
16153 the XKCD web comic.")
16154 (license license:gpl3)))
16155
16156 (define-public r-msigdbr
16157 (package
16158 (name "r-msigdbr")
16159 (version "7.2.1")
16160 (source
16161 (origin
16162 (method url-fetch)
16163 (uri (cran-uri "msigdbr" version))
16164 (sha256
16165 (base32
16166 "1rc2p9vw57pn4prmfgay4w18qd53ggq7wxfsi9kp7w25ciip1dq1"))))
16167 (build-system r-build-system)
16168 (propagated-inputs
16169 `(("r-dplyr" ,r-dplyr)
16170 ("r-magrittr" ,r-magrittr)
16171 ("r-rlang" ,r-rlang)
16172 ("r-tibble" ,r-tibble)
16173 ("r-tidyselect" ,r-tidyselect)))
16174 (native-inputs
16175 `(("r-knitr" ,r-knitr)))
16176 (home-page "https://github.com/igordot/msigdbr")
16177 (synopsis "MSigDB gene sets for multiple organisms")
16178 (description
16179 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
16180 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
16181 software in a standard R data frame with key-value pairs. Included are the
16182 original human gene symbols and Entrez IDs as well as the equivalents for
16183 various frequently studied model organisms such as mouse, rat, pig, fly, and
16184 yeast.")
16185 ;; The package is covered under the Expat license, but the upstream MSigDB
16186 ;; files are made available under the Creative Commons Attribution 4.0
16187 ;; International license.
16188 (license (list license:expat license:cc-by4.0))))
16189
16190 (define-public r-gridgraphics
16191 (package
16192 (name "r-gridgraphics")
16193 (version "0.5-1")
16194 (source
16195 (origin
16196 (method url-fetch)
16197 (uri (cran-uri "gridGraphics" version))
16198 (sha256
16199 (base32
16200 "12yswy02j3h5wir7m5jnkhpjmb0sa4snn61vjd68i49qwsa6w219"))))
16201 (properties `((upstream-name . "gridGraphics")))
16202 (build-system r-build-system)
16203 (home-page "https://github.com/pmur002/gridgraphics")
16204 (synopsis "Redraw base graphics using @code{grid} graphics")
16205 (description
16206 "This package provides functions to convert a page of plots drawn with
16207 the @code{graphics} package into identical output drawn with the @code{grid}
16208 package. The result looks like the original @code{graphics}-based plot, but
16209 consists of @code{grid} grobs and viewports that can then be manipulated with
16210 @code{grid} functions (e.g., edit grobs and revisit viewports).")
16211 (license license:gpl2+)))
16212
16213 (define-public r-farver
16214 (package
16215 (name "r-farver")
16216 (version "2.1.0")
16217 (source
16218 (origin
16219 (method url-fetch)
16220 (uri (cran-uri "farver" version))
16221 (sha256
16222 (base32
16223 "1x6ffwxqbrwlylnk995jz2a6nz2y9z59jaq0ncpni7q40w367j75"))))
16224 (build-system r-build-system)
16225 (home-page "https://github.com/thomasp85/farver")
16226 (synopsis "Vectorized color conversion and comparison")
16227 (description
16228 "The encoding of color can be handled in many different ways, using
16229 different color spaces. As different color spaces have different uses,
16230 efficient conversion between these representations are important. This
16231 package provides a set of functions that gives access to very fast color space
16232 conversion and comparisons implemented in C++, and offers 100-fold speed
16233 improvements over the @code{convertColor} function in the @code{grDevices}
16234 package.")
16235 (license license:expat)))
16236
16237 (define-public r-ggplotify
16238 (package
16239 (name "r-ggplotify")
16240 (version "0.0.5")
16241 (source
16242 (origin
16243 (method url-fetch)
16244 (uri (cran-uri "ggplotify" version))
16245 (sha256
16246 (base32
16247 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
16248 (build-system r-build-system)
16249 (propagated-inputs
16250 `(("r-ggplot2" ,r-ggplot2)
16251 ("r-gridgraphics" ,r-gridgraphics)
16252 ("r-rvcheck" ,r-rvcheck)))
16253 (native-inputs
16254 `(("r-knitr" ,r-knitr)))
16255 (home-page "https://github.com/GuangchuangYu/ggplotify")
16256 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
16257 (description
16258 "This package provides tools to convert plot function calls (using
16259 expression or formula) to @code{grob} or @code{ggplot} objects that are
16260 compatible with the @code{grid} and @code{ggplot2} environment. With this
16261 package, we are able to e.g. use @code{cowplot} to align plots produced by
16262 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
16263 converting them to @code{ggplot} objects.")
16264 (license license:artistic2.0)))
16265
16266 (define-public r-triebeard
16267 (package
16268 (name "r-triebeard")
16269 (version "0.3.0")
16270 (source
16271 (origin
16272 (method url-fetch)
16273 (uri (cran-uri "triebeard" version))
16274 (sha256
16275 (base32
16276 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
16277 (build-system r-build-system)
16278 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16279 (home-page "https://github.com/Ironholds/triebeard/")
16280 (synopsis "Radix trees in Rcpp")
16281 (description
16282 "Radix trees, or tries, are key-value data structures optimized for
16283 efficient lookups, similar in purpose to hash tables. This package provides
16284 an implementation of radix trees for use in R programming and in developing
16285 packages with Rcpp.")
16286 (license license:expat)))
16287
16288 (define-public r-tweenr
16289 (package
16290 (name "r-tweenr")
16291 (version "1.0.1")
16292 (source
16293 (origin
16294 (method url-fetch)
16295 (uri (cran-uri "tweenr" version))
16296 (sha256
16297 (base32
16298 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
16299 (build-system r-build-system)
16300 (propagated-inputs
16301 `(("r-farver" ,r-farver)
16302 ("r-magrittr" ,r-magrittr)
16303 ("r-rcpp" ,r-rcpp)
16304 ("r-rlang" ,r-rlang)))
16305 (home-page "https://github.com/thomasp85/tweenr")
16306 (synopsis "Interpolate data for smooth animations")
16307 (description
16308 "In order to create smooth animation between states of data, tweening is
16309 necessary. This package provides a range of functions for creating tweened
16310 data that can be used as basis for animation. Furthermore it adds a number of
16311 vectorized interpolaters for common R data types such as numeric, date and
16312 color.")
16313 (license license:expat)))
16314
16315 (define-public r-polyclip
16316 (package
16317 (name "r-polyclip")
16318 (version "1.10-0")
16319 (source
16320 (origin
16321 (method url-fetch)
16322 (uri (cran-uri "polyclip" version))
16323 (sha256
16324 (base32
16325 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
16326 (build-system r-build-system)
16327 (native-inputs `(("pkg-config" ,pkg-config)))
16328 (home-page "http://www.angusj.com/delphi/clipper.php")
16329 (synopsis "Polygon clipping")
16330 (description
16331 "This package provides an R port of the library Clipper. It performs
16332 polygon clipping operations (intersection, union, set minus, set difference)
16333 for polygonal regions of arbitrary complexity, including holes. It computes
16334 offset polygons (spatial buffer zones, morphological dilations, Minkowski
16335 dilations) for polygonal regions and polygonal lines. It computes the
16336 Minkowski Sum of general polygons. There is a function for removing
16337 self-intersections from polygon data.")
16338 (license license:boost1.0)))
16339
16340 (define-public r-urltools
16341 (package
16342 (name "r-urltools")
16343 (version "1.7.3")
16344 (source
16345 (origin
16346 (method url-fetch)
16347 (uri (cran-uri "urltools" version))
16348 (sha256
16349 (base32
16350 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
16351 (build-system r-build-system)
16352 (propagated-inputs
16353 `(("r-rcpp" ,r-rcpp)
16354 ("r-triebeard" ,r-triebeard)))
16355 (home-page "https://github.com/Ironholds/urltools/")
16356 (synopsis "Vectorized tools for URL handling and parsing")
16357 (description
16358 "This package provides a toolkit for all URL-handling needs, including
16359 encoding and decoding, parsing, parameter extraction and modification. All
16360 functions are designed to be both fast and entirely vectorized. It is
16361 intended to be useful for people dealing with web-related datasets, such as
16362 server-side logs, although may be useful for other situations involving large
16363 sets of URLs.")
16364 (license license:expat)))
16365
16366 (define-public r-ggforce
16367 (package
16368 (name "r-ggforce")
16369 (version "0.3.3")
16370 (source
16371 (origin
16372 (method url-fetch)
16373 (uri (cran-uri "ggforce" version))
16374 (sha256
16375 (base32
16376 "0bwzjbjl678xvc2ihm80dwn9pidwafqjdab3k299csys16s3na1a"))))
16377 (build-system r-build-system)
16378 (propagated-inputs
16379 `(("r-ggplot2" ,r-ggplot2)
16380 ("r-gtable" ,r-gtable)
16381 ("r-mass" ,r-mass)
16382 ("r-polyclip" ,r-polyclip)
16383 ("r-rcpp" ,r-rcpp)
16384 ("r-rcppeigen" ,r-rcppeigen)
16385 ("r-rlang" ,r-rlang)
16386 ("r-scales" ,r-scales)
16387 ("r-tidyselect" ,r-tidyselect)
16388 ("r-tweenr" ,r-tweenr)
16389 ("r-withr" ,r-withr)))
16390 (home-page "https://ggforce.data-imaginist.com")
16391 (synopsis "Accelerating ggplot2")
16392 (description
16393 "The aim of the ggplot2 package is to aid in visual data investigations.
16394 This focus has led to a lack of facilities for composing specialized plots.
16395 Thi package aims to be a collection of mainly new statistics and geometries
16396 that fills this gap.")
16397 (license license:expat)))
16398
16399 (define-public r-europepmc
16400 (package
16401 (name "r-europepmc")
16402 (version "0.4")
16403 (source
16404 (origin
16405 (method url-fetch)
16406 (uri (cran-uri "europepmc" version))
16407 (sha256
16408 (base32
16409 "174nnyc2mbgqxb5kgqabn1vf71c2mps7ig2bclq4is0f7nb64pym"))))
16410 (build-system r-build-system)
16411 (propagated-inputs
16412 `(("r-dplyr" ,r-dplyr)
16413 ("r-httr" ,r-httr)
16414 ("r-jsonlite" ,r-jsonlite)
16415 ("r-plyr" ,r-plyr)
16416 ("r-progress" ,r-progress)
16417 ("r-purrr" ,r-purrr)
16418 ("r-rlang" ,r-rlang)
16419 ("r-tibble" ,r-tibble)
16420 ("r-tidyr" ,r-tidyr)
16421 ("r-urltools" ,r-urltools)
16422 ("r-xml2" ,r-xml2)))
16423 (native-inputs
16424 `(("r-knitr" ,r-knitr)))
16425 (home-page "https://github.com/ropensci/europepmc/")
16426 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
16427 (description
16428 "This package provides an R Client for the
16429 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
16430 Service}. It gives access to both metadata on life science literature and
16431 open access full texts. Europe PMC indexes all PubMed content and other
16432 literature sources including Agricola, a bibliographic database of citations
16433 to the agricultural literature, or Biological Patents. In addition to
16434 bibliographic metadata, the client allows users to fetch citations and
16435 reference lists. Links between life-science literature and other EBI
16436 databases, including ENA, PDB or ChEMBL are also accessible.")
16437 (license license:gpl3)))
16438
16439 (define-public r-ggraph
16440 (package
16441 (name "r-ggraph")
16442 (version "2.0.5")
16443 (source
16444 (origin
16445 (method url-fetch)
16446 (uri (cran-uri "ggraph" version))
16447 (sha256
16448 (base32
16449 "0m4n8iw2b9jk8hcy5blg5w59zsqcpsbv27wbw598dvljpafx8sp3"))))
16450 (build-system r-build-system)
16451 (propagated-inputs
16452 `(("r-digest" ,r-digest)
16453 ("r-dplyr" ,r-dplyr)
16454 ("r-ggforce" ,r-ggforce)
16455 ("r-ggplot2" ,r-ggplot2)
16456 ("r-ggrepel" ,r-ggrepel)
16457 ("r-graphlayouts" ,r-graphlayouts)
16458 ("r-gtable" ,r-gtable)
16459 ("r-igraph" ,r-igraph)
16460 ("r-mass" ,r-mass)
16461 ("r-rcpp" ,r-rcpp)
16462 ("r-rlang" ,r-rlang)
16463 ("r-scales" ,r-scales)
16464 ("r-tidygraph" ,r-tidygraph)
16465 ("r-viridis" ,r-viridis)
16466 ("r-withr" ,r-withr)))
16467 (native-inputs
16468 `(("r-knitr" ,r-knitr)))
16469 (home-page "https://cran.r-project.org/web/packages/ggraph/")
16470 (synopsis "Implementation of grammar of graphics for graphs and networks")
16471 (description
16472 "The grammar of graphics as implemented in ggplot2 is a poor fit for
16473 graph and network visualizations due to its reliance on tabular data input.
16474 The ggraph package is an extension of the ggplot2 API tailored to graph
16475 visualizations and provides the same flexible approach to building up plots
16476 layer by layer.")
16477 (license license:gpl3)))
16478
16479 (define-public r-gkmsvm
16480 (package
16481 (name "r-gkmsvm")
16482 (version "0.81.0")
16483 (source
16484 (origin
16485 (method url-fetch)
16486 (uri (cran-uri "gkmSVM" version))
16487 (sha256
16488 (base32
16489 "119g5rhc7ffyviz04r04aj5z1g6abnj3ddd01g7db505sdr6lapj"))))
16490 (properties `((upstream-name . "gkmSVM")))
16491 (build-system r-build-system)
16492 (propagated-inputs
16493 `(("r-kernlab" ,r-kernlab)
16494 ("r-rcpp" ,r-rcpp)
16495 ("r-rocr" ,r-rocr)
16496 ("r-seqinr" ,r-seqinr)))
16497 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
16498 (synopsis "Gapped-kmer support vector machine")
16499 (description
16500 "This R package provides tools for training gapped-kmer SVM classifiers
16501 for DNA and protein sequences. This package supports several sequence
16502 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
16503 (license license:gpl2+)))
16504
16505 (define-public r-varselrf
16506 (package
16507 (name "r-varselrf")
16508 (version "0.7-8")
16509 (source
16510 (origin
16511 (method url-fetch)
16512 (uri (cran-uri "varSelRF" version))
16513 (sha256
16514 (base32
16515 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
16516 (properties `((upstream-name . "varSelRF")))
16517 (build-system r-build-system)
16518 (propagated-inputs
16519 `(("r-randomforest" ,r-randomforest)))
16520 (home-page "https://www.ligarto.org/rdiaz/software/software")
16521 (synopsis "Variable selection using random forests")
16522 (description
16523 "This package provides tools for the variable selection from random
16524 forests using both backwards variable elimination (for the selection of small
16525 sets of non-redundant variables) and selection based on the importance
16526 spectrum (somewhat similar to scree plots; for the selection of large,
16527 potentially highly-correlated variables). The main applications are in
16528 high-dimensional data (e.g., microarray data, and other genomics and
16529 proteomics applications).")
16530 (license license:gpl2+)))
16531
16532 (define-public r-pamr
16533 (package
16534 (name "r-pamr")
16535 (version "1.56.1")
16536 (source
16537 (origin
16538 (method url-fetch)
16539 (uri (cran-uri "pamr" version))
16540 (sha256
16541 (base32
16542 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
16543 (build-system r-build-system)
16544 (propagated-inputs
16545 `(("r-cluster" ,r-cluster)
16546 ("r-survival" ,r-survival)))
16547 (native-inputs `(("gfortran" ,gfortran)))
16548 (home-page "https://cran.r-project.org/web/packages/pamr/")
16549 (synopsis "Prediction Analysis for Microarrays")
16550 (description
16551 "This package provides some functions for sample classification in
16552 microarrays.")
16553 (license license:gpl2)))
16554
16555 (define-public r-rda
16556 (package
16557 (name "r-rda")
16558 (version "1.0.2-2.1")
16559 (source
16560 (origin
16561 (method url-fetch)
16562 (uri (cran-uri "rda" version))
16563 (sha256
16564 (base32
16565 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
16566 (build-system r-build-system)
16567 (home-page "https://cran.r-project.org/web/packages/rda/")
16568 (synopsis "Shrunken centroids regularized discriminant analysis")
16569 (description
16570 "This package provides tools for shrunken centroids regularized
16571 discriminant analysis for the purpose of classifying high dimensional data.")
16572 (license license:gpl2+)))
16573
16574 (define-public r-ggvis
16575 (package
16576 (name "r-ggvis")
16577 (version "0.4.7")
16578 (source
16579 (origin
16580 (method url-fetch)
16581 (uri (cran-uri "ggvis" version))
16582 (sha256
16583 (base32
16584 "1qv512pd4x5vmx15y9nvqmabbbw14h75fmi1sjbcg5yl25z0cswy"))))
16585 (build-system r-build-system)
16586 (propagated-inputs
16587 `(("r-assertthat" ,r-assertthat)
16588 ("r-dplyr" ,r-dplyr)
16589 ("r-htmltools" ,r-htmltools)
16590 ("r-jsonlite" ,r-jsonlite)
16591 ("r-magrittr" ,r-magrittr)
16592 ("r-rlang" ,r-rlang)
16593 ("r-shiny" ,r-shiny)))
16594 (home-page "https://ggvis.rstudio.com/")
16595 (synopsis "Interactive grammar of graphics")
16596 (description
16597 "This package is a data visualization package for R providing an
16598 implementation of an interactive grammar of graphics, taking the best parts of
16599 ggplot2, combining them with the reactive framework of Shiny and drawing web
16600 graphics using Vega.")
16601 (license license:gpl2)))
16602
16603 (define-public r-gbm
16604 (package
16605 (name "r-gbm")
16606 (version "2.1.8")
16607 (source
16608 (origin
16609 (method url-fetch)
16610 (uri (cran-uri "gbm" version))
16611 (sha256
16612 (base32
16613 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
16614 (build-system r-build-system)
16615 (propagated-inputs
16616 `(("r-lattice" ,r-lattice)
16617 ("r-survival" ,r-survival)))
16618 (native-inputs
16619 `(("r-knitr" ,r-knitr)))
16620 (home-page "https://github.com/gbm-developers/gbm")
16621 (synopsis "Generalized boosted regression models")
16622 (description
16623 "This package is an implementation of extensions to Freund and Schapire's
16624 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
16625 regression methods for least squares, absolute loss, t-distribution loss,
16626 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
16627 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
16628 and Learning to Rank measures (LambdaMart).")
16629 (license license:gpl2+)))
16630
16631 (define-public r-threejs
16632 (package
16633 (name "r-threejs")
16634 (version "0.3.3")
16635 (source
16636 (origin
16637 (method url-fetch)
16638 (uri (cran-uri "threejs" version))
16639 (sha256
16640 (base32
16641 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
16642 (build-system r-build-system)
16643 (arguments
16644 `(#:modules ((guix build utils)
16645 (guix build r-build-system)
16646 (srfi srfi-1)
16647 (ice-9 popen))
16648 #:phases
16649 (modify-phases %standard-phases
16650 (add-after 'unpack 'process-javascript
16651 (lambda* (#:key inputs #:allow-other-keys)
16652 (with-directory-excursion "inst"
16653 (call-with-values
16654 (lambda ()
16655 (unzip2
16656 `((,(assoc-ref inputs "js-jquery")
16657 "htmlwidgets/lib/jquery/jquery.min.js")
16658 (,(assoc-ref inputs "js-threejs-111")
16659 "htmlwidgets/lib/threejs-111/three.min.js"))))
16660 (lambda (sources targets)
16661 (for-each (lambda (source target)
16662 (format #t "Processing ~a --> ~a~%"
16663 source target)
16664 (delete-file target)
16665 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16666 (call-with-output-file target
16667 (lambda (port)
16668 (dump-port minified port)))))
16669 sources targets))))
16670 #t)))))
16671 (propagated-inputs
16672 `(("r-base64enc" ,r-base64enc)
16673 ("r-crosstalk" ,r-crosstalk)
16674 ("r-htmlwidgets" ,r-htmlwidgets)
16675 ("r-igraph" ,r-igraph)))
16676 (native-inputs
16677 `(("uglify-js" ,uglify-js)
16678 ("js-jquery"
16679 ,(origin
16680 (method url-fetch)
16681 (uri "https://code.jquery.com/jquery-1.12.4.js")
16682 (sha256
16683 (base32
16684 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
16685 ("js-threejs-111"
16686 ,(origin
16687 (method url-fetch)
16688 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
16689 (sha256
16690 (base32
16691 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
16692 (home-page "https://bwlewis.github.io/rthreejs")
16693 (synopsis "Interactive 3D scatter plots, networks and globes")
16694 (description
16695 "Create interactive 3D scatter plots, network plots, and globes in R
16696 using the three.js visualization library.")
16697 (license license:expat)))
16698
16699 (define-public r-mlbench
16700 (package
16701 (name "r-mlbench")
16702 (version "2.1-3")
16703 (source
16704 (origin
16705 (method url-fetch)
16706 (uri (cran-uri "mlbench" version))
16707 (sha256
16708 (base32
16709 "157iqsld0wj8g8cbs7nh6p2x6kasmkhs3078hsmqac946gk2pydi"))))
16710 (build-system r-build-system)
16711 (home-page "https://cran.r-project.org/web/packages/mlbench/")
16712 (synopsis "Machine learning benchmark problems")
16713 (description
16714 "This package provides a collection of artificial and real-world machine
16715 learning benchmark problems, including, e.g., several data sets from the UCI
16716 repository.")
16717 (license license:gpl2)))
16718
16719 (define-public r-mpm
16720 (package
16721 (name "r-mpm")
16722 (version "1.0-22")
16723 (source
16724 (origin
16725 (method url-fetch)
16726 (uri (cran-uri "mpm" version))
16727 (sha256
16728 (base32
16729 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
16730 (build-system r-build-system)
16731 (propagated-inputs
16732 `(("r-kernsmooth" ,r-kernsmooth)
16733 ("r-mass" ,r-mass)))
16734 (home-page "http://mpm.r-forge.r-project.org")
16735 (synopsis "Multivariate projection methods")
16736 (description
16737 "This is a package for exploratory graphical analysis of multivariate
16738 data, specifically gene expression data with different projection methods:
16739 principal component analysis, correspondence analysis, spectral map
16740 analysis.")
16741 (license license:gpl2+)))
16742
16743 (define-public r-png
16744 (package
16745 (name "r-png")
16746 (version "0.1-7")
16747 (source (origin
16748 (method url-fetch)
16749 (uri (cran-uri "png" version))
16750 (sha256
16751 (base32
16752 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
16753 (build-system r-build-system)
16754 (inputs
16755 `(("libpng" ,libpng)
16756 ("zlib" ,zlib)))
16757 (home-page "https://www.rforge.net/png/")
16758 (synopsis "Read and write PNG images")
16759 (description
16760 "This package provides an easy and simple way to read, write and display
16761 bitmap images stored in the PNG format. It can read and write both files and
16762 in-memory raw vectors.")
16763 ;; Any of these GPL versions.
16764 (license (list license:gpl2 license:gpl3))))
16765
16766 (define-public r-ggcorrplot
16767 (package
16768 (name "r-ggcorrplot")
16769 (version "0.1.3")
16770 (source
16771 (origin
16772 (method url-fetch)
16773 (uri (cran-uri "ggcorrplot" version))
16774 (sha256
16775 (base32
16776 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
16777 (build-system r-build-system)
16778 (propagated-inputs
16779 `(("r-ggplot2" ,r-ggplot2)
16780 ("r-reshape2" ,r-reshape2)))
16781 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
16782 (synopsis "Visualization of a correlation matrix using ggplot2")
16783 (description
16784 "The ggcorrplot package can be used to visualize easily a correlation
16785 matrix using ggplot2. It provides a solution for reordering the correlation
16786 matrix and displays the significance level on the plot. It also includes a
16787 function for computing a matrix of correlation p-values.")
16788 (license license:gpl2)))
16789
16790 (define-public r-gridtext
16791 (package
16792 (name "r-gridtext")
16793 (version "0.1.4")
16794 (source
16795 (origin
16796 (method url-fetch)
16797 (uri (cran-uri "gridtext" version))
16798 (sha256
16799 (base32
16800 "131kw7nkfwksviwfifd2kk7lyvhxzzzv1nnj8rahkr3dik3akk61"))))
16801 (properties `((upstream-name . "gridtext")))
16802 (build-system r-build-system)
16803 (propagated-inputs
16804 `(("r-jpeg" ,r-jpeg)
16805 ("r-markdown" ,r-markdown)
16806 ("r-png" ,r-png)
16807 ("r-rcpp" ,r-rcpp)
16808 ("r-rcurl" ,r-rcurl)
16809 ("r-rlang" ,r-rlang)
16810 ("r-stringr" ,r-stringr)
16811 ("r-xml2" ,r-xml2)))
16812 (home-page "https://wilkelab.org/gridtext/")
16813 (synopsis "Improved text rendering support for Grid graphics")
16814 (description
16815 "This package provides support for rendering of formatted text using Grid
16816 graphics. Text can be formatted via a minimal subset of Markdown, HTML, and
16817 inline CSS directives, and it can be rendered both with and without word
16818 wrap.")
16819 (license license:expat)))
16820
16821 (define-public r-ggtext
16822 (package
16823 (name "r-ggtext")
16824 (version "0.1.1")
16825 (source
16826 (origin
16827 (method url-fetch)
16828 (uri (cran-uri "ggtext" version))
16829 (sha256
16830 (base32
16831 "0n19dlcys8v7myfyckr6dnq0kx79k3sbh8nwx1jsx8pgzfbi8a2b"))))
16832 (properties `((upstream-name . "ggtext")))
16833 (build-system r-build-system)
16834 (propagated-inputs
16835 `(("r-ggplot2" ,r-ggplot2)
16836 ("r-gridtext" ,r-gridtext)
16837 ("r-rlang" ,r-rlang)
16838 ("r-scales" ,r-scales)))
16839 (native-inputs `(("r-knitr" ,r-knitr)))
16840 (home-page "https://wilkelab.org/ggtext/")
16841 (synopsis "Improved text rendering support for ggplot2")
16842 (description
16843 "This package provides a ggplot2 extension that enables the rendering of
16844 complex formatted plot labels (titles, subtitles, facet labels, axis labels,
16845 etc.). Text boxes with automatic word wrap are also supported.")
16846 (license license:gpl2)))
16847
16848 ;; This package includes minified JavaScript files. When upgrading please
16849 ;; check that there are no new minified JavaScript files.
16850 (define-public r-flexdashboard
16851 (package
16852 (name "r-flexdashboard")
16853 (version "0.5.2")
16854 (source
16855 (origin
16856 (method url-fetch)
16857 (uri (cran-uri "flexdashboard" version))
16858 (sha256
16859 (base32
16860 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
16861 (modules '((guix build utils)))
16862 (snippet
16863 '(begin
16864 ;; Delete bundled minified JavaScript files
16865 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
16866 (delete-file "inst/www/sly/sly.min.js")
16867 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
16868 (delete-file "inst/www/prism/prism.js")
16869 #t))))
16870 (build-system r-build-system)
16871 (arguments
16872 `(#:modules ((guix build utils)
16873 (guix build r-build-system)
16874 (srfi srfi-1)
16875 (srfi srfi-26)
16876 (ice-9 popen)
16877 (ice-9 textual-ports))
16878 #:phases
16879 (modify-phases %standard-phases
16880 (add-after 'unpack 'process-javascript
16881 (lambda* (#:key inputs #:allow-other-keys)
16882 (with-directory-excursion "inst"
16883 ;; Concatenate all components of prism.js
16884 (let ((contents (string-join
16885 (map (lambda (name)
16886 (call-with-input-file
16887 (assoc-ref inputs name)
16888 get-string-all))
16889 (list "js-prism"
16890 "js-prism-r"
16891 "js-prism-line-numbers"))
16892 "\n")))
16893 (call-with-output-file "prism-src.js"
16894 (cut display contents <>)))
16895 (call-with-values
16896 (lambda ()
16897 (unzip2
16898 `(("www/stickytableheaders/jquery.stickytableheaders.js"
16899 "www/stickytableheaders/jquery.stickytableheaders.min.js")
16900 ("www/sly/sly.js"
16901 "www/sly/sly.min.js")
16902 ("prism-src.js"
16903 "www/prism/prism.js")
16904 (,(assoc-ref inputs "js-raphael")
16905 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
16906 (,(assoc-ref inputs "js-featherlight")
16907 "www/featherlight/featherlight.min.js"))))
16908 (lambda (sources targets)
16909 (for-each (lambda (source target)
16910 (format #t "Processing ~a --> ~a~%"
16911 source target)
16912 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16913 (call-with-output-file target
16914 (lambda (port)
16915 (dump-port minified port)))))
16916 sources targets))))
16917 #t)))))
16918 (propagated-inputs
16919 `(("r-htmltools" ,r-htmltools)
16920 ("r-htmlwidgets" ,r-htmlwidgets)
16921 ("r-jsonlite" ,r-jsonlite)
16922 ("r-knitr" ,r-knitr)
16923 ("r-rmarkdown" ,r-rmarkdown)
16924 ("r-shiny" ,r-shiny)))
16925 (native-inputs
16926 `(("uglify-js" ,uglify-js)
16927 ("js-raphael"
16928 ,(origin
16929 (method url-fetch)
16930 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
16931 (sha256
16932 (base32
16933 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
16934 ("js-prism"
16935 ,(origin
16936 (method url-fetch)
16937 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
16938 (sha256
16939 (base32
16940 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
16941 ("js-prism-r"
16942 ,(origin
16943 (method url-fetch)
16944 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
16945 (sha256
16946 (base32
16947 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
16948 ("js-prism-line-numbers"
16949 ,(origin
16950 (method url-fetch)
16951 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
16952 (sha256
16953 (base32
16954 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
16955 ("js-featherlight"
16956 ,(origin
16957 (method url-fetch)
16958 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
16959 (sha256
16960 (base32
16961 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
16962 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
16963 (synopsis "R Markdown format for flexible dashboards")
16964 (description
16965 "This package provides an R Markdown format for converting an R Markdown
16966 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
16967 of its components to the containing web page.")
16968 (license license:expat)))
16969
16970 (define-public r-preseqr
16971 (package
16972 (name "r-preseqr")
16973 (version "4.0.0")
16974 (source
16975 (origin
16976 (method url-fetch)
16977 (uri (cran-uri "preseqR" version))
16978 (sha256
16979 (base32
16980 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
16981 (properties `((upstream-name . "preseqR")))
16982 (build-system r-build-system)
16983 (propagated-inputs
16984 `(("r-polynom" ,r-polynom)))
16985 (home-page "https://cran.r-project.org/web/packages/preseqR/")
16986 (synopsis "Predicting species accumulation curves")
16987 (description
16988 "This package can be used to predict the r-species accumulation
16989 curve (r-SAC), which is the number of species represented at least r times as
16990 a function of the sampling effort. When r = 1, the curve is known as the
16991 species accumulation curve, or the library complexity curve in high-throughput
16992 genomic sequencing. The package includes both parametric and nonparametric
16993 methods, as described by Deng C, et al. (2018).")
16994 (license license:gpl3)))
16995
16996 (define-public r-mapplots
16997 (package
16998 (name "r-mapplots")
16999 (version "1.5.1")
17000 (source
17001 (origin
17002 (method url-fetch)
17003 (uri (cran-uri "mapplots" version))
17004 (sha256
17005 (base32
17006 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
17007 (build-system r-build-system)
17008 (home-page "https://cran.r-project.org/web/packages/mapplots/")
17009 (synopsis "Data visualization on maps")
17010 (description
17011 "This package helps you create simple maps; add sub-plots like pie plots
17012 to a map or any other plot; format, plot and export gridded data. The package
17013 was developed for displaying fisheries data but most functions can be used for
17014 more generic data visualisation.")
17015 (license license:gpl2+)))
17016
17017 (define-public r-pmcmr
17018 (package
17019 (name "r-pmcmr")
17020 (version "4.3")
17021 (source
17022 (origin
17023 (method url-fetch)
17024 (uri (cran-uri "PMCMR" version))
17025 (sha256
17026 (base32
17027 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
17028 (properties `((upstream-name . "PMCMR")))
17029 (build-system r-build-system)
17030 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
17031 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
17032 (description
17033 "This is a deprecated package for calculating pairwise multiple
17034 comparisons of mean rank sums. This package is superseded by the novel
17035 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
17036 compatibility of dependent packages for some time.")
17037 (license license:gpl3+)))
17038
17039 (define-public r-downloader
17040 (package
17041 (name "r-downloader")
17042 (version "0.4")
17043 (source
17044 (origin
17045 (method url-fetch)
17046 (uri (cran-uri "downloader" version))
17047 (sha256
17048 (base32
17049 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
17050 (build-system r-build-system)
17051 (propagated-inputs
17052 `(("r-digest" ,r-digest)))
17053 (home-page "https://github.com/wch/downloader")
17054 (synopsis "Download files over HTTP and HTTPS")
17055 (description
17056 "This package provides a wrapper for the @code{download.file} function,
17057 making it possible to download files over HTTPS across platforms. The
17058 @code{RCurl} package provides this functionality (and much more) but has
17059 external dependencies. This package has is implemented purely in R.")
17060 (license license:gpl2)))
17061
17062 (define-public r-rex
17063 (package
17064 (name "r-rex")
17065 (version "1.2.0")
17066 (source
17067 (origin
17068 (method url-fetch)
17069 (uri (cran-uri "rex" version))
17070 (sha256
17071 (base32
17072 "0m7bq8db3m5dhf01rw7xc7xy1ciq3m7dfgsl80p8cy4h8vqr3d06"))))
17073 (build-system r-build-system)
17074 (propagated-inputs
17075 `(("r-lazyeval" ,r-lazyeval)))
17076 (native-inputs
17077 `(("r-knitr" ,r-knitr)))
17078 (home-page "https://github.com/kevinushey/rex")
17079 (synopsis "Friendly regular expressions")
17080 (description
17081 "This package provides a friendly interface for the construction of
17082 regular expressions. Regular expressions are a very powerful feature, however
17083 they are often difficult to interpret. Rex allows you to build complex
17084 regular expressions from human readable expressions")
17085 (license license:expat)))
17086
17087 (define-public r-xmlparsedata
17088 (package
17089 (name "r-xmlparsedata")
17090 (version "1.0.5")
17091 (source
17092 (origin
17093 (method url-fetch)
17094 (uri (cran-uri "xmlparsedata" version))
17095 (sha256
17096 (base32
17097 "1c6bnz3ng1qw7sfip8wq3a4dn36a4d6rbja0sadn0a4pbsmk8q3n"))))
17098 (properties `((upstream-name . "xmlparsedata")))
17099 (build-system r-build-system)
17100 (home-page "https://github.com/r-lib/xmlparsedata#readme")
17101 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
17102 (description
17103 "This package provides tools to convert the output of
17104 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
17105 @code{XPath}, and is easier to manipulate in general.")
17106 (license license:expat)))
17107
17108 (define-public r-cyclocomp
17109 (package
17110 (name "r-cyclocomp")
17111 (version "1.1.0")
17112 (source
17113 (origin
17114 (method url-fetch)
17115 (uri (cran-uri "cyclocomp" version))
17116 (sha256
17117 (base32
17118 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
17119 (properties `((upstream-name . "cyclocomp")))
17120 (build-system r-build-system)
17121 (propagated-inputs
17122 `(("r-callr" ,r-callr)
17123 ("r-crayon" ,r-crayon)
17124 ("r-desc" ,r-desc)
17125 ("r-remotes" ,r-remotes)
17126 ("r-withr" ,r-withr)))
17127 (home-page "https://github.com/MangoTheCat/cyclocomp")
17128 (synopsis "Cyclomatic complexity of R code")
17129 (description
17130 "Cyclomatic complexity is a software metric, used to indicate the
17131 complexity of a program. It is a quantitative measure of the number of
17132 linearly independent paths through a program's source code. This package
17133 provides tools to compute this metric.")
17134 (license license:expat)))
17135
17136 (define-public r-lintr
17137 (package
17138 (name "r-lintr")
17139 (version "2.0.1")
17140 (source
17141 (origin
17142 (method url-fetch)
17143 (uri (cran-uri "lintr" version))
17144 (sha256
17145 (base32
17146 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
17147 (properties `((upstream-name . "lintr")))
17148 (build-system r-build-system)
17149 (propagated-inputs
17150 `(("r-codetools" ,r-codetools)
17151 ("r-crayon" ,r-crayon)
17152 ("r-cyclocomp" ,r-cyclocomp)
17153 ("r-digest" ,r-digest)
17154 ("r-httr" ,r-httr)
17155 ("r-jsonlite" ,r-jsonlite)
17156 ("r-knitr" ,r-knitr)
17157 ("r-rex" ,r-rex)
17158 ("r-rstudioapi" ,r-rstudioapi)
17159 ("r-testthat" ,r-testthat)
17160 ("r-xml2" ,r-xml2)
17161 ("r-xmlparsedata" ,r-xmlparsedata)))
17162 (home-page "https://github.com/jimhester/lintr")
17163 (synopsis "Linter for R code")
17164 (description "This package checks adherence to a given style, syntax
17165 errors and possible semantic issues. It supports on the fly checking of R
17166 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
17167 (license license:expat)))
17168
17169 (define-public r-sctransform
17170 (package
17171 (name "r-sctransform")
17172 (version "0.3.2")
17173 (source
17174 (origin
17175 (method url-fetch)
17176 (uri (cran-uri "sctransform" version))
17177 (sha256
17178 (base32
17179 "1p3m6i28nlxh6r609syn88cwlbdpl3dw44dy3gsijk2ibq20mfsx"))))
17180 (build-system r-build-system)
17181 (propagated-inputs
17182 `(("r-future" ,r-future)
17183 ("r-future-apply" ,r-future-apply)
17184 ("r-ggplot2" ,r-ggplot2)
17185 ("r-gridextra" ,r-gridextra)
17186 ("r-mass" ,r-mass)
17187 ("r-matrix" ,r-matrix)
17188 ("r-matrixstats" ,r-matrixstats)
17189 ("r-rcpp" ,r-rcpp)
17190 ("r-rcpparmadillo" ,r-rcpparmadillo)
17191 ("r-reshape2" ,r-reshape2)))
17192 (home-page "https://github.com/ChristophH/sctransform")
17193 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
17194 (description
17195 "This package provides a normalization method for single-cell UMI count
17196 data using a variance stabilizing transformation. The transformation is based
17197 on a negative binomial regression model with regularized parameters. As part
17198 of the same regression framework, this package also provides functions for
17199 batch correction, and data correction.")
17200 (license license:gpl3)))
17201
17202 (define-public r-styler
17203 (package
17204 (name "r-styler")
17205 (version "1.3.2")
17206 (source
17207 (origin
17208 (method url-fetch)
17209 (uri (cran-uri "styler" version))
17210 (sha256
17211 (base32
17212 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
17213 (build-system r-build-system)
17214 (propagated-inputs
17215 `(("r-backports" ,r-backports)
17216 ("r-cli" ,r-cli)
17217 ("r-magrittr" ,r-magrittr)
17218 ("r-purrr" ,r-purrr)
17219 ("r-r-cache" ,r-r-cache)
17220 ("r-rematch2" ,r-rematch2)
17221 ("r-rlang" ,r-rlang)
17222 ("r-rprojroot" ,r-rprojroot)
17223 ("r-tibble" ,r-tibble)
17224 ("r-withr" ,r-withr)
17225 ("r-xfun" ,r-xfun)))
17226 (home-page "https://github.com/r-lib/styler")
17227 (synopsis "Non-invasive pretty printing of R code")
17228 (description
17229 "This is a package for pretty-printing R code without changing the user's
17230 formatting intent.")
17231 (license license:gpl3)))
17232
17233 (define-public r-scrime
17234 (package
17235 (name "r-scrime")
17236 (version "1.3.5")
17237 (source
17238 (origin
17239 (method url-fetch)
17240 (uri (cran-uri "scrime" version))
17241 (sha256
17242 (base32
17243 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
17244 (build-system r-build-system)
17245 (home-page "https://cran.r-project.org/web/packages/scrime/")
17246 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
17247 (description
17248 "This package provides tools for the analysis of high-dimensional data
17249 developed/implemented at the group \"Statistical Complexity Reduction In
17250 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
17251 the functions can also be applied to other types of categorical data.")
17252 (license license:gpl2)))
17253
17254 (define-public r-pbmcapply
17255 (package
17256 (name "r-pbmcapply")
17257 (version "1.5.0")
17258 (source
17259 (origin
17260 (method url-fetch)
17261 (uri (cran-uri "pbmcapply" version))
17262 (sha256
17263 (base32
17264 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
17265 (build-system r-build-system)
17266 (home-page "https://github.com/kvnkuang/pbmcapply")
17267 (synopsis "Track the progress of apply procedures with a progress bar")
17268 (description
17269 "This light-weight package helps you track and visualize the progress of
17270 parallel versions of vectorized R functions of the @code{mc*apply} family.")
17271 (license license:expat)))
17272
17273 (define-public r-blme
17274 (package
17275 (name "r-blme")
17276 (version "1.0-5")
17277 (source
17278 (origin
17279 (method url-fetch)
17280 (uri (cran-uri "blme" version))
17281 (sha256
17282 (base32
17283 "0413j7gwr5yj14jamkizj55q7xii1a0kgazzj0ilqn2ascclz6k7"))))
17284 (build-system r-build-system)
17285 (propagated-inputs `(("r-lme4" ,r-lme4)))
17286 (home-page "https://github.com/vdorie/blme")
17287 (synopsis "Bayesian linear mixed-effects models")
17288 (description
17289 "This package provides tools for maximum a posteriori estimation for
17290 linear and generalized linear mixed-effects models in a Bayesian setting. It
17291 extends the lme4 package.")
17292 (license license:gpl2+)))
17293
17294 (define-public r-batchtools
17295 (package
17296 (name "r-batchtools")
17297 (version "0.9.15")
17298 (source
17299 (origin
17300 (method url-fetch)
17301 (uri (cran-uri "batchtools" version))
17302 (sha256
17303 (base32
17304 "0d2xy77hkzhcnyz8zxcv98i80fx6ripjw4rvyx4ww1d0vjjgqf52"))))
17305 (build-system r-build-system)
17306 (propagated-inputs
17307 `(("r-backports" ,r-backports)
17308 ("r-base64url" ,r-base64url)
17309 ("r-brew" ,r-brew)
17310 ("r-checkmate" ,r-checkmate)
17311 ("r-data-table" ,r-data-table)
17312 ("r-digest" ,r-digest)
17313 ("r-fs" ,r-fs)
17314 ("r-progress" ,r-progress)
17315 ("r-r6" ,r-r6)
17316 ("r-rappdirs" ,r-rappdirs)
17317 ("r-stringi" ,r-stringi)
17318 ("r-withr" ,r-withr)))
17319 (native-inputs
17320 `(("r-knitr" ,r-knitr)))
17321 (home-page "https://github.com/mllg/batchtools")
17322 (synopsis "Tools for computation on batch systems")
17323 (description
17324 "As a successor of the packages BatchJobs and BatchExperiments, this
17325 package provides a parallel implementation of the Map function for high
17326 performance computing systems managed by various schedulers. A multicore and
17327 socket mode allow the parallelization on a local machines, and multiple
17328 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
17329 the package provides an abstraction mechanism to define large-scale computer
17330 experiments in a well-organized and reproducible way.")
17331 (license license:lgpl3)))
17332
17333 (define-public r-clue
17334 (package
17335 (name "r-clue")
17336 (version "0.3-58")
17337 (source
17338 (origin
17339 (method url-fetch)
17340 (uri (cran-uri "clue" version))
17341 (sha256
17342 (base32
17343 "1rwwxlnpl1k0n4k96vxc9zajw9kb4syqwzj76fvaf0qim8p6ddia"))))
17344 (build-system r-build-system)
17345 (propagated-inputs `(("r-cluster" ,r-cluster)))
17346 (home-page "https://cran.r-project.org/web/packages/clue/")
17347 (synopsis "Tools for analyzing cluster ensembles")
17348 (description "Cluster ensembles are collections of individual solutions to
17349 a given clustering problem which are useful or necessary to consider in a wide
17350 range of applications. This R package provides an extensible computational
17351 environment for creating and analyzing cluster ensembles, with basic data
17352 structures for representing partitions and hierarchies, and facilities for
17353 computing on them, including methods for measuring proximity and obtaining
17354 consensus and secondary clusterings.")
17355 (license license:gpl2)))
17356
17357 (define-public r-sitmo
17358 (package
17359 (name "r-sitmo")
17360 (version "2.0.1")
17361 (source
17362 (origin
17363 (method url-fetch)
17364 (uri (cran-uri "sitmo" version))
17365 (sha256
17366 (base32
17367 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
17368 (build-system r-build-system)
17369 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17370 (home-page "https://github.com/coatless/sitmo/")
17371 (synopsis "Parallel pseudo random number generator header files")
17372 (description
17373 "This package provides two high quality and fast PPRNGs that may be used
17374 in an OpenMP parallel environment. In addition, there is a generator for one
17375 dimensional low-discrepancy sequence.")
17376 (license license:expat)))
17377
17378 (define-public r-dqrng
17379 (package
17380 (name "r-dqrng")
17381 (version "0.2.1")
17382 (source
17383 (origin
17384 (method url-fetch)
17385 (uri (cran-uri "dqrng" version))
17386 (sha256
17387 (base32
17388 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
17389 (build-system r-build-system)
17390 (propagated-inputs
17391 `(("r-bh" ,r-bh)
17392 ("r-rcpp" ,r-rcpp)
17393 ("r-sitmo" ,r-sitmo)))
17394 (home-page "https://www.daqana.org/dqrng")
17395 (synopsis "Fast pseudo random number generators")
17396 (description
17397 "Several fast random number generators are provided as C++ header-only
17398 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
17399 Additionally, fast functions for generating random numbers according to a
17400 uniform, normal and exponential distribution are included. The latter two use
17401 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
17402 functions are exported to R and as a C++ interface and are enabled for use
17403 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
17404 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
17405 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
17406 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
17407 ;; whole is distributed under the terms of the AGPL 3.
17408 (license license:agpl3)))
17409
17410 (define-public r-ingredients
17411 (package
17412 (name "r-ingredients")
17413 (version "2.0.1")
17414 (source
17415 (origin
17416 (method url-fetch)
17417 (uri (cran-uri "ingredients" version))
17418 (sha256
17419 (base32
17420 "0w46h1f28y5ypqm3ypsvk7yk9v7k8p21f1pzjl3ima8r1ivmhv12"))))
17421 (properties `((upstream-name . "ingredients")))
17422 (build-system r-build-system)
17423 (propagated-inputs
17424 `(("r-ggplot2" ,r-ggplot2)
17425 ("r-gridextra" ,r-gridextra)
17426 ("r-scales" ,r-scales)))
17427 (native-inputs `(("r-knitr" ,r-knitr)))
17428 (home-page "https://ModelOriented.github.io/ingredients/")
17429 (synopsis "Effects and importances of model ingredients")
17430 (description
17431 "This is a collection of tools for assessment of feature importance and
17432 feature effects. Key functions are:
17433
17434 @itemize
17435 @item @code{feature_importance()} for assessment of global level feature
17436 importance,
17437 @item @code{ceteris_paribus()} for calculation of the what-if plots,
17438 @item @code{partial_dependence()} for partial dependence plots,
17439 @item @code{conditional_dependence()} for conditional dependence plots,
17440 @item @code{accumulated_dependence()} for accumulated local effects plots,
17441 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
17442 aggregation of ceteris paribus profiles,
17443 @item generic @code{print()} and @code{plot()} for better usability of
17444 selected explainers,
17445 @item generic @code{plotD3()} for interactive, D3 based explanations, and
17446 @item generic @code{describe()} for explanations in natural language.
17447 @end itemize\n")
17448 (license license:gpl3)))
17449
17450 (define-public r-ibreakdown
17451 (package
17452 (name "r-ibreakdown")
17453 (version "1.3.1")
17454 (source
17455 (origin
17456 (method url-fetch)
17457 (uri (cran-uri "iBreakDown" version))
17458 (sha256
17459 (base32
17460 "1bfl5bh0x6z5a0cmdmx68sap9zdxa3kwdnyk57csxapc362yz108"))))
17461 (properties `((upstream-name . "iBreakDown")))
17462 (build-system r-build-system)
17463 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
17464 (native-inputs `(("r-knitr" ,r-knitr)))
17465 (home-page "https://ModelOriented.github.io/iBreakDown/")
17466 (synopsis "Model agnostic instance level variable attributions")
17467 (description
17468 "This package provides a model agnostic tool for decomposition of
17469 predictions from black boxes. It supports additive attributions and
17470 attributions with interactions. The Break Down Table shows contributions of
17471 every variable to a final prediction. The Break Down Plot presents variable
17472 contributions in a concise graphical way. This package works for
17473 classification and regression models.")
17474 (license license:gpl3)))
17475
17476 (define-public r-dae
17477 (package
17478 (name "r-dae")
17479 (version "3.1-32")
17480 (source
17481 (origin
17482 (method url-fetch)
17483 (uri (cran-uri "dae" version))
17484 (sha256
17485 (base32
17486 "126w1lb9pz8mb2ajl2vz5dj798nbifp0dypnzfgcwixif5g5bpqi"))))
17487 (build-system r-build-system)
17488 (propagated-inputs
17489 `(("r-ggplot2" ,r-ggplot2)
17490 ("r-plyr" ,r-plyr)))
17491 (native-inputs
17492 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
17493 (home-page "http://chris.brien.name")
17494 (synopsis "Functions useful in the design and ANOVA of experiments")
17495 (description
17496 "This package provides functions useful in the design and ANOVA of
17497 experiments. The content falls into the following groupings:
17498
17499 @enumerate
17500 @item data,
17501 @item factor manipulation functions,
17502 @item design functions,
17503 @item ANOVA functions,
17504 @item matrix functions,
17505 @item projector and canonical efficiency functions, and
17506 @item miscellaneous functions.
17507 @end enumerate
17508
17509 There is a vignette called @code{DesignNotes} describing how to use the design
17510 functions for randomizing and assessing designs. The ANOVA functions
17511 facilitate the extraction of information when the @code{Error} function has
17512 been used in the call to @code{aov}.")
17513 (license license:gpl2)))
17514
17515 (define-public r-dalex
17516 (package
17517 (name "r-dalex")
17518 (version "2.1.1")
17519 (source
17520 (origin
17521 (method url-fetch)
17522 (uri (cran-uri "DALEX" version))
17523 (sha256
17524 (base32
17525 "1dnqsml94s648w8swsrq8spddnd4mj5pl3q6xxr917w6a1jxgyfz"))))
17526 (properties `((upstream-name . "DALEX")))
17527 (build-system r-build-system)
17528 (propagated-inputs
17529 `(("r-ggplot2" ,r-ggplot2)
17530 ("r-ibreakdown" ,r-ibreakdown)
17531 ("r-ingredients" ,r-ingredients)))
17532 (home-page "https://pbiecek.github.io/DALEX/")
17533 (synopsis "Descriptive machine learning explanations")
17534 (description
17535 "Machine Learning models are widely used and have various applications in
17536 classification or regression. Models created with boosting, bagging, stacking
17537 or similar techniques are often used due to their high performance, but such
17538 black-box models usually lack interpretability. The DALEX package contains
17539 various explainers that help to understand the link between input variables
17540 and model output.")
17541 ;; Any version of the GPL
17542 (license license:gpl3+)))
17543
17544 (define-public r-enrichr
17545 (package
17546 (name "r-enrichr")
17547 (version "3.0")
17548 (source
17549 (origin
17550 (method url-fetch)
17551 (uri (cran-uri "enrichR" version))
17552 (sha256
17553 (base32
17554 "0i3kfq4fkmx47n61zj5f87iv8ci6gbgy90a7s8dy9zbndzvbgya3"))))
17555 (properties `((upstream-name . "enrichR")))
17556 (build-system r-build-system)
17557 (propagated-inputs
17558 `(("r-ggplot2" ,r-ggplot2)
17559 ("r-httr" ,r-httr)
17560 ("r-rjson" ,r-rjson)))
17561 (native-inputs
17562 `(("r-knitr" ,r-knitr)))
17563 (home-page "https://cran.r-project.org/web/packages/enrichR/")
17564 (synopsis "R Interface to Enrichr database for analyzing gene sets")
17565 (description
17566 "This package provides an R interface to all Enrichr databases, a
17567 web-based tool for analyzing gene sets and returns any enrichment of common
17568 annotated biological functions.")
17569 (license license:gpl2+)))
17570
17571 (define-public r-plot3d
17572 (package
17573 (name "r-plot3d")
17574 (version "1.3")
17575 (source
17576 (origin
17577 (method url-fetch)
17578 (uri (cran-uri "plot3D" version))
17579 (sha256
17580 (base32
17581 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
17582 (properties `((upstream-name . "plot3D")))
17583 (build-system r-build-system)
17584 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
17585 (home-page "https://cran.r-project.org/web/packages/plot3D")
17586 (synopsis "Plot multi-dimensional data")
17587 (description
17588 "This package provides functions for viewing 2D and 3D data, including
17589 perspective plots, slice plots, surface plots, scatter plots, etc. It
17590 includes data sets from oceanography.")
17591 (license license:gpl3+)))
17592
17593 (define-public r-ggfortify
17594 (package
17595 (name "r-ggfortify")
17596 (version "0.4.11")
17597 (source
17598 (origin
17599 (method url-fetch)
17600 (uri (cran-uri "ggfortify" version))
17601 (sha256
17602 (base32
17603 "1wfm7l9bz6msh7rflgfv9dgbxh1ikz2ay0v7sgk9nkc24y6lhbpk"))))
17604 (build-system r-build-system)
17605 (propagated-inputs
17606 `(("r-dplyr" ,r-dplyr)
17607 ("r-ggplot2" ,r-ggplot2)
17608 ("r-gridextra" ,r-gridextra)
17609 ("r-scales" ,r-scales)
17610 ("r-stringr" ,r-stringr)
17611 ("r-tibble" ,r-tibble)
17612 ("r-tidyr" ,r-tidyr)))
17613 (native-inputs
17614 `(("r-knitr" ,r-knitr)))
17615 (home-page "https://github.com/sinhrks/ggfortify")
17616 (synopsis "Data visualization tools for statistical analysis results")
17617 (description
17618 "This package provides unified plotting tools for statistics commonly
17619 used, such as GLM, time series, PCA families, clustering and survival
17620 analysis. The package offers a single plotting interface for these analysis
17621 results and plots in a unified style using the @code{ggplot2} package.")
17622 (license license:gpl2)))
17623
17624 (define-public r-refmanager
17625 (package
17626 (name "r-refmanager")
17627 (version "1.3.0")
17628 (source
17629 (origin
17630 (method url-fetch)
17631 (uri (cran-uri "RefManageR" version))
17632 (sha256
17633 (base32
17634 "1spzdp5ni52dybcaxqnhwdphh27wjyrsfy4hsxsplpg9rqwfqfps"))))
17635 (properties `((upstream-name . "RefManageR")))
17636 (build-system r-build-system)
17637 (propagated-inputs
17638 `(("r-httr" ,r-httr)
17639 ("r-jsonlite" ,r-jsonlite)
17640 ("r-lubridate" ,r-lubridate)
17641 ("r-plyr" ,r-plyr)
17642 ("r-stringr" ,r-stringr)
17643 ("r-xml2" ,r-xml2)))
17644 (native-inputs
17645 `(("r-knitr" ,r-knitr)))
17646 (home-page "https://github.com/ropensci/RefManageR/")
17647 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
17648 (description
17649 "This package provides tools for importing and working with bibliographic
17650 references. It greatly enhances the @code{bibentry} class by providing a
17651 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
17652 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
17653 by various formats for name lists (author by last names, translator by full
17654 names, etc.). Entries can be updated, combined, sorted, printed in a number
17655 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
17656 into R and converted to @code{BibEntry} objects.")
17657 ;; Any of these licenses may be picked.
17658 (license (list license:gpl2 license:gpl3 license:bsd-3))))
17659
17660 (define-public r-citr
17661 (package
17662 (name "r-citr")
17663 (version "0.3.2")
17664 (source
17665 (origin
17666 (method url-fetch)
17667 (uri (cran-uri "citr" version))
17668 (sha256
17669 (base32
17670 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
17671 (build-system r-build-system)
17672 (propagated-inputs
17673 `(("r-assertthat" ,r-assertthat)
17674 ("r-curl" ,r-curl)
17675 ("r-httr" ,r-httr)
17676 ("r-miniui" ,r-miniui)
17677 ("r-refmanager" ,r-refmanager)
17678 ("r-rstudioapi" ,r-rstudioapi)
17679 ("r-shiny" ,r-shiny)
17680 ("r-shinyjs" ,r-shinyjs)
17681 ("r-yaml" ,r-yaml)))
17682 (home-page "https://github.com/crsh/citr")
17683 (synopsis "RStudio add-in to insert Markdown citations")
17684 (description
17685 "This package provides functions and an RStudio add-in that search a
17686 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
17687 the current document.")
17688 (license license:expat)))
17689
17690 (define-public r-xgboost
17691 (package
17692 (name "r-xgboost")
17693 (version "1.3.2.1")
17694 (source
17695 (origin
17696 (method url-fetch)
17697 (uri (cran-uri "xgboost" version))
17698 (sha256
17699 (base32
17700 "117q8xqm82589517fi8xicd8724v9c0wnq3qpl84h6nm3aw65x1g"))))
17701 (build-system r-build-system)
17702 (propagated-inputs
17703 `(("r-data-table" ,r-data-table)
17704 ("r-magrittr" ,r-magrittr)
17705 ("r-matrix" ,r-matrix)))
17706 (native-inputs
17707 `(("r-knitr" ,r-knitr)))
17708 (home-page "https://github.com/dmlc/xgboost")
17709 (synopsis "Extreme gradient boosting")
17710 (description
17711 "This package provides an R interface to Extreme Gradient Boosting, which
17712 is an efficient implementation of the gradient boosting framework from Chen
17713 and Guestrin (2016). The package includes efficient linear model solver and
17714 tree learning algorithms. The package can automatically do parallel
17715 computation on a single machine. It supports various objective functions,
17716 including regression, classification and ranking. The package is made to be
17717 extensible, so that users are also allowed to define their own objectives
17718 easily.")
17719 (license license:asl2.0)))
17720
17721 (define-public r-umap
17722 (package
17723 (name "r-umap")
17724 (version "0.2.7.0")
17725 (source
17726 (origin
17727 (method url-fetch)
17728 (uri (cran-uri "umap" version))
17729 (sha256
17730 (base32
17731 "191vpy84s0bar06y9z1qx43x2kc4qp7lmrcmd0cvz2pnzq722jab"))))
17732 (build-system r-build-system)
17733 (propagated-inputs
17734 `(("r-openssl" ,r-openssl)
17735 ("r-rcpp" ,r-rcpp)
17736 ("r-reticulate" ,r-reticulate)
17737 ("r-rspectra" ,r-rspectra)))
17738 (native-inputs
17739 `(("r-knitr" ,r-knitr)))
17740 (home-page "https://github.com/tkonopka/umap")
17741 (synopsis "Uniform manifold approximation and projection")
17742 (description
17743 "Uniform manifold approximation and projection is a technique for
17744 dimension reduction. This package provides an interface to the UMAP algorithm
17745 in R, including a translation of the original algorithm into R.")
17746 (license license:expat)))
17747
17748 (define-public r-uwot
17749 (package
17750 (name "r-uwot")
17751 (version "0.1.10")
17752 (source
17753 (origin
17754 (method url-fetch)
17755 (uri (cran-uri "uwot" version))
17756 (sha256
17757 (base32
17758 "08vxh085wnrxgwy35ksb4cr7ccjvd98pyr2zlgarqryfgc1bdqbf"))))
17759 (build-system r-build-system)
17760 (propagated-inputs
17761 `(("r-dqrng" ,r-dqrng)
17762 ("r-fnn" ,r-fnn)
17763 ("r-irlba" ,r-irlba)
17764 ("r-matrix" ,r-matrix)
17765 ("r-rcpp" ,r-rcpp)
17766 ("r-rcppannoy" ,r-rcppannoy)
17767 ("r-rcppprogress" ,r-rcppprogress)
17768 ("r-rspectra" ,r-rspectra)))
17769 (home-page "https://github.com/jlmelville/uwot")
17770 (synopsis "Uniform manifold approximation and projection")
17771 (description
17772 "This package provides an implementation of the Uniform Manifold
17773 Approximation and Projection dimensionality reduction by McInnes et
17774 al. (2018). It also provides means to transform new data and to carry out
17775 supervised dimensionality reduction. An implementation of the related
17776 LargeVis method of Tang et al. (2016) is also provided.")
17777 (license license:gpl3)))
17778
17779 (define-public r-kableextra
17780 (package
17781 (name "r-kableextra")
17782 (version "1.3.4")
17783 (source
17784 (origin
17785 (method url-fetch)
17786 (uri (cran-uri "kableExtra" version))
17787 (sha256
17788 (base32
17789 "1c5vzy95cbz36jwyssr927qicrayifinv861rvnmg4nghb1gl7q9"))))
17790 (properties `((upstream-name . "kableExtra")))
17791 (build-system r-build-system)
17792 (propagated-inputs
17793 `(("r-digest" ,r-digest)
17794 ("r-glue" ,r-glue)
17795 ("r-htmltools" ,r-htmltools)
17796 ("r-knitr" ,r-knitr)
17797 ("r-magrittr" ,r-magrittr)
17798 ("r-rmarkdown" ,r-rmarkdown)
17799 ("r-rstudioapi" ,r-rstudioapi)
17800 ("r-rvest" ,r-rvest)
17801 ("r-scales" ,r-scales)
17802 ("r-stringr" ,r-stringr)
17803 ("r-svglite" ,r-svglite)
17804 ("r-viridislite" ,r-viridislite)
17805 ("r-webshot" ,r-webshot)
17806 ("r-xml2" ,r-xml2)))
17807 (native-inputs
17808 `(("r-knitr" ,r-knitr)))
17809 (home-page "https://haozhu233.github.io/kableExtra/")
17810 (synopsis "Construct complex tables with pipe syntax")
17811 (description
17812 "Build complex HTML or LaTeX tables using @code{kable()} from
17813 @code{knitr} and the piping syntax from @code{magrittr}. The function
17814 @code{kable()} is a light weight table generator coming from @code{knitr}.
17815 This package simplifies the way to manipulate the HTML or LaTeX codes
17816 generated by @code{kable()} and allows users to construct complex tables and
17817 customize styles using a readable syntax.")
17818 (license license:expat)))
17819
17820 (define-public r-glasso
17821 (package
17822 (name "r-glasso")
17823 (version "1.11")
17824 (source
17825 (origin
17826 (method url-fetch)
17827 (uri (cran-uri "glasso" version))
17828 (sha256
17829 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
17830 (build-system r-build-system)
17831 (native-inputs `(("gfortran" ,gfortran)))
17832 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
17833 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
17834 (description
17835 "This is a package for estimation of a sparse inverse covariance matrix
17836 using a lasso (L1) penalty. Facilities are provided for estimates along a
17837 path of values for the regularization parameter.")
17838 (license license:gpl2)))
17839
17840 (define-public r-rhpcblasctl
17841 (package
17842 (name "r-rhpcblasctl")
17843 (version "0.20-137")
17844 (source
17845 (origin
17846 (method url-fetch)
17847 (uri (cran-uri "RhpcBLASctl" version))
17848 (sha256
17849 (base32
17850 "0vv144sgjhf7fazk633i16fc06g9k43syyxj1g34pi9gsgdcn0nv"))))
17851 (properties `((upstream-name . "RhpcBLASctl")))
17852 (build-system r-build-system)
17853 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
17854 (synopsis "Control the number of threads on BLAS")
17855 (description
17856 "This package allows you to control the number of threads the BLAS
17857 library uses. It is also possible to control the number of threads in
17858 OpenMP.")
17859 (license license:agpl3+)))
17860
17861 (define-public r-lda
17862 (package
17863 (name "r-lda")
17864 (version "1.4.2")
17865 (source
17866 (origin
17867 (method url-fetch)
17868 (uri (cran-uri "lda" version))
17869 (sha256
17870 (base32
17871 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
17872 (build-system r-build-system)
17873 (home-page "https://cran.r-project.org/web/packages/lda/")
17874 (synopsis "Collapsed Gibbs sampling methods for topic models")
17875 (description
17876 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
17877 related models. This includes (but is not limited to) sLDA, corrLDA, and the
17878 mixed-membership stochastic blockmodel. Inference for all of these models is
17879 implemented via a fast collapsed Gibbs sampler written in C. Utility
17880 functions for reading/writing data typically used in topic models, as well as
17881 tools for examining posterior distributions are also included.")
17882 ;; Any version of the LGPL
17883 (license license:lgpl3+)))
17884
17885 (define-public r-rann-l1
17886 (package
17887 (name "r-rann-l1")
17888 (version "2.5.2")
17889 (source
17890 (origin
17891 (method url-fetch)
17892 (uri (cran-uri "RANN.L1" version))
17893 (sha256
17894 (base32
17895 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
17896 (properties `((upstream-name . "RANN.L1")))
17897 (build-system r-build-system)
17898 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
17899 (synopsis "Fast nearest neighbour search using L1 metric")
17900 (description
17901 "This package provides tools to find the k nearest neighbours for every
17902 point in a given dataset in O(N log N) time using Arya and Mount's ANN
17903 library. There is support for approximate as well as exact searches, fixed
17904 radius searches and @code{bd} as well as @code{kd} trees. The distance is
17905 computed using the L1 (Manhattan, taxicab) metric.")
17906 (license license:gpl3+)))
17907
17908 (define-public r-leiden
17909 (package
17910 (name "r-leiden")
17911 (version "0.3.7")
17912 (source
17913 (origin
17914 (method url-fetch)
17915 (uri (cran-uri "leiden" version))
17916 (sha256
17917 (base32
17918 "14iqn5iqcya6bqbjvjivpd7q9gwc323sj29y7ssrbhb3sz9982bp"))))
17919 (properties `((upstream-name . "leiden")))
17920 (build-system r-build-system)
17921 (propagated-inputs
17922 `(("r-igraph" ,r-igraph)
17923 ("r-matrix" ,r-matrix)
17924 ("r-reticulate" ,r-reticulate)))
17925 (native-inputs
17926 `(("r-knitr" ,r-knitr)))
17927 (home-page "https://github.com/TomKellyGenetics/leiden")
17928 (synopsis "R implementation of Leiden clustering algorithm")
17929 (description
17930 "This package implements the Python @code{leidenalg} module to be called
17931 in R. It enables clustering using the Leiden algorithm for partitioning a
17932 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
17933 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
17934 (license license:gpl3)))
17935
17936 (define-public r-patchwork
17937 (package
17938 (name "r-patchwork")
17939 (version "1.1.1")
17940 (source
17941 (origin
17942 (method url-fetch)
17943 (uri (cran-uri "patchwork" version))
17944 (sha256
17945 (base32
17946 "10glgkf58lcykcwda1hj6xdps02m3i247qynk6s2jmwljagps3fg"))))
17947 (build-system r-build-system)
17948 (propagated-inputs
17949 `(("r-ggplot2" ,r-ggplot2)
17950 ("r-gtable" ,r-gtable)))
17951 (native-inputs
17952 `(("r-knitr" ,r-knitr)))
17953 (home-page "https://github.com/thomasp85/patchwork")
17954 (synopsis "Compose ggplot2 plots")
17955 (description
17956 "The @code{ggplot2} package provides a strong API for sequentially
17957 building up a plot, but does not concern itself with composition of multiple
17958 plots. Patchwork is a package that expands the API to allow for arbitrarily
17959 complex composition of plots by providing mathematical operators for combining
17960 multiple plots.")
17961 (license license:expat)))
17962
17963 (define-public r-liger
17964 (package
17965 (name "r-liger")
17966 (version "0.4.2")
17967 (source
17968 (origin
17969 (method git-fetch)
17970 (uri (git-reference
17971 (url "https://github.com/MacoskoLab/liger")
17972 (commit (string-append "v" version))))
17973 (file-name (git-file-name name version))
17974 (sha256
17975 (base32
17976 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
17977 (modules '((guix build utils)))
17978 (snippet
17979 '(begin
17980 (delete-file "inst/java/ModularityOptimizer.jar")
17981 #t))))
17982 (build-system r-build-system)
17983 (arguments
17984 `(#:phases
17985 (modify-phases %standard-phases
17986 (add-after 'unpack 'build-java-part
17987 (lambda* (#:key inputs #:allow-other-keys)
17988 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
17989 (for-each (lambda (file) (invoke "javac" file))
17990 (find-files "." "\\.java$"))
17991 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
17992 (find-files "." "\\.class$"))
17993 #t)))))
17994 (propagated-inputs
17995 `(("r-cowplot" ,r-cowplot)
17996 ("r-dosnow" ,r-dosnow)
17997 ("r-dplyr" ,r-dplyr)
17998 ("r-fnn" ,r-fnn)
17999 ("r-foreach" ,r-foreach)
18000 ("r-ggplot2" ,r-ggplot2)
18001 ("r-ggrepel" ,r-ggrepel)
18002 ("r-hmisc" ,r-hmisc)
18003 ("r-ica" ,r-ica)
18004 ("r-irlba" ,r-irlba)
18005 ("r-matrix" ,r-matrix)
18006 ("r-mclust" ,r-mclust)
18007 ("r-patchwork" ,r-patchwork)
18008 ("r-plyr" ,r-plyr)
18009 ("r-rann-l1" ,r-rann-l1)
18010 ("r-rcpp" ,r-rcpp)
18011 ("r-rcpparmadillo" ,r-rcpparmadillo)
18012 ("r-riverplot" ,r-riverplot)
18013 ("r-rtsne" ,r-rtsne)
18014 ("r-snow" ,r-snow)))
18015 (native-inputs
18016 `(("jdk" ,icedtea "jdk")
18017 ;; See https://github.com/MacoskoLab/liger/issues/96
18018 ;; The optimizer is released under the Expat license.
18019 ("optimizer-src"
18020 ,(origin
18021 (method url-fetch)
18022 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
18023 (sha256
18024 (base32
18025 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
18026 ("unzip" ,unzip)
18027 ("r-knitr" ,r-knitr))) ; for vignettes
18028 (home-page "https://github.com/MacoskoLab/liger")
18029 (synopsis "Integrate and analyze multiple single-cell datasets")
18030 (description
18031 "LIGER is a package for integrating and analyzing multiple single-cell
18032 datasets, developed and maintained by the Macosko lab. It relies on
18033 integrative non-negative matrix factorization to identify shared and
18034 dataset-specific factors.")
18035 (license license:gpl3)))
18036
18037 (define-public r-harmony
18038 (package
18039 (name "r-harmony")
18040 (version "0.1")
18041 (source
18042 (origin
18043 (method git-fetch)
18044 (uri (git-reference
18045 (url "https://github.com/immunogenomics/harmony")
18046 (commit version)))
18047 (file-name (git-file-name name version))
18048 (sha256
18049 (base32
18050 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
18051 (modules '((guix build utils)))
18052 (snippet
18053 '(begin
18054 (for-each delete-file '("config.status" "configure"))
18055 #t))))
18056 (build-system r-build-system)
18057 (propagated-inputs
18058 `(("r-cowplot" ,r-cowplot)
18059 ("r-dplyr" ,r-dplyr)
18060 ("r-ggplot2" ,r-ggplot2)
18061 ("r-irlba" ,r-irlba)
18062 ("r-matrix" ,r-matrix)
18063 ("r-rcpp" ,r-rcpp)
18064 ("r-rcpparmadillo" ,r-rcpparmadillo)
18065 ("r-rcppprogress" ,r-rcppprogress)
18066 ("r-rlang" ,r-rlang)
18067 ("r-tibble" ,r-tibble)
18068 ("r-tidyr" ,r-tidyr)))
18069 (native-inputs
18070 `(("autoconf" ,autoconf)))
18071 (home-page "https://github.com/immunogenomics/harmony")
18072 (synopsis "Integration of single cell sequencing data")
18073 (description
18074 "This package provides an implementation of the Harmony algorithm for
18075 single cell integration, described in Korsunsky et al
18076 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
18077 function and interfaces to external frameworks.")
18078 (license license:gpl3)))
18079
18080 (define-public r-covr
18081 (package
18082 (name "r-covr")
18083 (version "3.5.1")
18084 (source
18085 (origin
18086 (method url-fetch)
18087 (uri (cran-uri "covr" version))
18088 (sha256
18089 (base32 "0v5cv3cw2kpdr6wxmkbd3wclavr17zipypdcb10hhmpa4cvgqk55"))))
18090 (properties `((upstream-name . "covr")))
18091 (build-system r-build-system)
18092 (propagated-inputs
18093 `(("r-crayon" ,r-crayon)
18094 ("r-digest" ,r-digest)
18095 ("r-httr" ,r-httr)
18096 ("r-jsonlite" ,r-jsonlite)
18097 ("r-rex" ,r-rex)
18098 ("r-withr" ,r-withr)
18099 ("r-yaml" ,r-yaml)))
18100 (native-inputs
18101 `(("r-knitr" ,r-knitr))) ; for vignettes
18102 (home-page "https://github.com/r-lib/covr")
18103 (synopsis "Test coverage for R packages")
18104 (description
18105 "Thisp package enables you to track and report code coverage for your
18106 package and (optionally) upload the results to a coverage service. Code
18107 coverage is a measure of the amount of code being exercised by a set of tests.
18108 It is an indirect measure of test quality and completeness. This package is
18109 compatible with any testing methodology or framework and tracks coverage of
18110 both R code and compiled C/C++/FORTRAN code.")
18111 (license license:gpl3)))
18112
18113 (define-public r-systemfonts
18114 (package
18115 (name "r-systemfonts")
18116 (version "1.0.1")
18117 (source
18118 (origin
18119 (method url-fetch)
18120 (uri (cran-uri "systemfonts" version))
18121 (sha256
18122 (base32
18123 "15x7qx8iigkybgz6b6s66i3mh75vgynzpd50nw05wflfwzcv87a0"))))
18124 (properties `((upstream-name . "systemfonts")))
18125 (build-system r-build-system)
18126 (propagated-inputs
18127 `(("r-cpp11" ,r-cpp11)))
18128 (inputs
18129 `(("fontconfig" ,fontconfig)
18130 ("zlib" ,zlib)))
18131 (native-inputs
18132 `(("pkg-config" ,pkg-config)
18133 ("r-knitr" ,r-knitr)))
18134 (home-page "https://github.com/r-lib/systemfonts")
18135 (synopsis "System native font finding")
18136 (description
18137 "This package provides system native access to the font catalogue. As
18138 font handling varies between systems it is difficult to correctly locate
18139 installed fonts across different operating systems. The 'systemfonts' package
18140 provides bindings to the native libraries for finding font files that can then
18141 be used further by e.g. graphic devices.")
18142 (license license:expat)))
18143
18144 (define-public r-graphlayouts
18145 (package
18146 (name "r-graphlayouts")
18147 (version "0.7.1")
18148 (source
18149 (origin
18150 (method url-fetch)
18151 (uri (cran-uri "graphlayouts" version))
18152 (sha256
18153 (base32
18154 "05v7ss18bflhqa4ipsca8iw2ln8ddbaiyrizx2a5cwq81g5qq3rq"))))
18155 (properties `((upstream-name . "graphlayouts")))
18156 (build-system r-build-system)
18157 (propagated-inputs
18158 `(("r-igraph" ,r-igraph)
18159 ("r-rcpp" ,r-rcpp)
18160 ("r-rcpparmadillo" ,r-rcpparmadillo)))
18161 (home-page "https://github.com/schochastics/graphlayouts")
18162 (synopsis "Additional layout algorithms for network visualizations")
18163 (description
18164 "This package provides several layout algorithms to visualize networks
18165 which are not part of the igraph library. Most are based on the concept of
18166 stress majorization by Gansner et al. (2004)
18167 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
18168 emphasize hidden group structures in networks or focus on specific nodes.")
18169 (license license:expat)))
18170
18171 (define-public r-terra
18172 (package
18173 (name "r-terra")
18174 (version "1.1-4")
18175 (source
18176 (origin
18177 (method url-fetch)
18178 (uri (cran-uri "terra" version))
18179 (sha256
18180 (base32
18181 "1vsh55sq56shc8s2vmkl27yvrdbrbn3l6jrigqf2hmvppkb2jsbg"))))
18182 (properties `((upstream-name . "terra")))
18183 (build-system r-build-system)
18184 (inputs
18185 `(("gdal" ,gdal)
18186 ("geos" ,geos)
18187 ("proj" ,proj)
18188 ("sqlite" ,sqlite) ; needed for proj
18189 ("zlib" ,zlib)))
18190 (propagated-inputs
18191 `(("r-raster" ,r-raster)
18192 ("r-rcpp" ,r-rcpp)))
18193 (native-inputs
18194 `(("pkg-config" ,pkg-config)))
18195 (home-page "https://rspatial.org/terra")
18196 (synopsis "Spatial data analysis")
18197 (description
18198 "This package provides methods for spatial data analysis, especially
18199 raster data. The included methods allow for low-level data manipulation as
18200 well as high-level global, local, zonal, and focal computation. The predict
18201 and interpolate methods facilitate the use of regression type (interpolation,
18202 machine learning) models for spatial prediction. Processing of very large
18203 files is supported.")
18204 (license license:gpl3+)))
18205
18206 (define-public r-tidygraph
18207 (package
18208 (name "r-tidygraph")
18209 (version "1.2.0")
18210 (source
18211 (origin
18212 (method url-fetch)
18213 (uri (cran-uri "tidygraph" version))
18214 (sha256
18215 (base32
18216 "17qjns33zcj82jcsl7bn7i4zxcm7ric50zyf7agi0i01zi16qz85"))))
18217 (properties `((upstream-name . "tidygraph")))
18218 (build-system r-build-system)
18219 (propagated-inputs
18220 `(("r-dplyr" ,r-dplyr)
18221 ("r-igraph" ,r-igraph)
18222 ("r-magrittr" ,r-magrittr)
18223 ("r-pillar" ,r-pillar)
18224 ("r-r6" ,r-r6)
18225 ("r-rcpp" ,r-rcpp)
18226 ("r-rlang" ,r-rlang)
18227 ("r-tibble" ,r-tibble)
18228 ("r-tidyr" ,r-tidyr)))
18229 (home-page "https://github.com/thomasp85/tidygraph")
18230 (synopsis "Tidy API for graph manipulation")
18231 (description
18232 "This package provides a graph implementation that can be thought of as
18233 two tidy data frames describing node and edge data respectively. It provides
18234 an approach to manipulate these two virtual data frames using the API defined
18235 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
18236 common graph algorithms.")
18237 (license license:expat)))
18238
18239 (define-public r-soupx
18240 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
18241 (revision "1"))
18242 (package
18243 (name "r-soupx")
18244 (version (git-version "0.3.1" revision commit))
18245 (source
18246 (origin
18247 (method git-fetch)
18248 (uri (git-reference
18249 (url "https://github.com/constantAmateur/SoupX")
18250 (commit commit)))
18251 (file-name (git-file-name name version))
18252 (sha256
18253 (base32
18254 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
18255 (properties `((upstream-name . "SoupX")))
18256 (build-system r-build-system)
18257 (propagated-inputs
18258 `(("r-ggplot2" ,r-ggplot2)
18259 ("r-matrix" ,r-matrix)
18260 ("r-seurat" ,r-seurat)))
18261 (home-page "https://github.com/constantAmateur/SoupX")
18262 (synopsis "Single cell mRNA Soup eXterminator")
18263 (description
18264 "This package provides a package for quantifying, profiling and
18265 removing cell free mRNA contamination (the \"soup\") from droplet based single
18266 cell RNA-seq experiments.")
18267 (license license:gpl2))))
18268
18269 (define-public r-assertr
18270 (package
18271 (name "r-assertr")
18272 (version "2.8")
18273 (source
18274 (origin
18275 (method url-fetch)
18276 (uri (cran-uri "assertr" version))
18277 (sha256
18278 (base32
18279 "00764vv86r3bn4r85in4w637harffyw605fgq0dj6mrbrwcfb650"))))
18280 (build-system r-build-system)
18281 (propagated-inputs
18282 `(("r-dplyr" ,r-dplyr)
18283 ("r-mass" ,r-mass)
18284 ("r-rlang" ,r-rlang)))
18285 (native-inputs
18286 `(("r-knitr" ,r-knitr))) ; needed for vignette
18287 (home-page "https://github.com/ropensci/assertr")
18288 (synopsis "Assertive programming for R analysis pipelines")
18289 (description
18290 "This package provides functionality to assert conditions that have to be
18291 met so that errors in data used in analysis pipelines can fail quickly. It is
18292 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
18293 in pipelines.")
18294 (license license:expat)))
18295
18296 (define-public r-parameters
18297 (package
18298 (name "r-parameters")
18299 (version "0.12.0")
18300 (source
18301 (origin
18302 (method url-fetch)
18303 (uri (cran-uri "parameters" version))
18304 (sha256
18305 (base32
18306 "0dfqn4l4qmlpwmdva2ahyhlngkzdm0sgiirbdrf3mbbw52bhlmpm"))))
18307 (properties `((upstream-name . "parameters")))
18308 (build-system r-build-system)
18309 (propagated-inputs
18310 `(("r-bayestestr" ,r-bayestestr)
18311 ("r-insight" ,r-insight)))
18312 (native-inputs
18313 `(("r-knitr" ,r-knitr)))
18314 (home-page "https://cran.r-project.org/web/packages/parameters")
18315 (synopsis "Processing of model parameters")
18316 (description
18317 "This package provides utilities for processing the parameters of various
18318 statistical models. Beyond computing p values, CIs, and other indices for a
18319 wide variety of models, this package implements features like standardization
18320 or bootstrapping of parameters and models, feature reduction (feature
18321 extraction and variable selection) as well as conversion between indices of
18322 effect size.")
18323 (license license:gpl3)))
18324
18325 (define-public r-rgdal
18326 (package
18327 (name "r-rgdal")
18328 (version "1.5-23")
18329 (source
18330 (origin
18331 (method url-fetch)
18332 (uri (cran-uri "rgdal" version))
18333 (sha256
18334 (base32 "0vnb7kw762y349pda4aq1hx0smafylmn3635l963qykfji5p99cw"))))
18335 (properties `((upstream-name . "rgdal")))
18336 (build-system r-build-system)
18337 (inputs
18338 `(("gdal" ,gdal)
18339 ("proj" ,proj)
18340 ("zlib" ,zlib)))
18341 (propagated-inputs
18342 `(("r-sp" ,r-sp)))
18343 (native-inputs
18344 `(("pkg-config" ,pkg-config)
18345 ("r-knitr" ,r-knitr)))
18346 (home-page "http://rgdal.r-forge.r-project.org")
18347 (synopsis "Bindings for the Geospatial Data Abstraction Library")
18348 (description
18349 "This package provides bindings to the Geospatial Data Abstraction
18350 Library (GDAL) and access to projection/transformation operations from the
18351 PROJ.4 library.")
18352 (license license:gpl2+)))
18353
18354 (define-public r-insol
18355 (package
18356 (name "r-insol")
18357 (version "1.2.2")
18358 (source
18359 (origin
18360 (method url-fetch)
18361 (uri (cran-uri "insol" version))
18362 (sha256
18363 (base32
18364 "166kgxgzbh55y2qqya6c2si22x0v7asi70im054g6xxwc5187kh3"))))
18365 (properties `((upstream-name . "insol")))
18366 (build-system r-build-system)
18367 (propagated-inputs
18368 `(("r-raster" ,r-raster)))
18369 (native-inputs
18370 `(("gfortran" ,gfortran)))
18371 (home-page "https://meteoexploration.com/R/insol/index.html")
18372 (synopsis "Tools for calculating solar radiation")
18373 (description
18374 "This package provides functions to compute insolation on tilted
18375 surfaces, computes atmospheric transmittance and related parameters such as:
18376 Earth radius vector, declination, sunset and sunrise, daylength, equation of
18377 time, vector in the direction of the sun, vector normal to surface, and some
18378 atmospheric physics.")
18379 (license license:gpl2+)))
18380
18381 (define-public r-lifecycle
18382 (package
18383 (name "r-lifecycle")
18384 (version "1.0.0")
18385 (source
18386 (origin
18387 (method url-fetch)
18388 (uri (cran-uri "lifecycle" version))
18389 (sha256
18390 (base32
18391 "13hgxk93q9387s8dnqpm8dfx610y0pr76khqksj4kbgj2fr4lcq3"))))
18392 (properties `((upstream-name . "lifecycle")))
18393 (build-system r-build-system)
18394 (propagated-inputs
18395 `(("r-glue" ,r-glue)
18396 ("r-rlang" ,r-rlang)))
18397 (native-inputs
18398 `(("r-knitr" ,r-knitr))) ; for vignettes
18399 (home-page "https://github.com/r-lib/lifecycle")
18400 (synopsis "Manage the life cycle of your package functions")
18401 (description
18402 "Manage the life cycle of your exported functions with shared
18403 conventions, documentation badges, and non-invasive deprecation warnings. The
18404 lifecycle package defines four development stages (experimental, maturing,
18405 stable, and questioning) and three deprecation stages (soft-deprecated,
18406 deprecated, and defunct). It makes it easy to insert badges corresponding to
18407 these stages in your documentation. Usage of deprecated functions are
18408 signalled with increasing levels of non-invasive verbosity.")
18409 (license license:gpl3)))
18410
18411 (define-public r-assertable
18412 (package
18413 (name "r-assertable")
18414 (version "0.2.8")
18415 (source
18416 (origin
18417 (method url-fetch)
18418 (uri (cran-uri "assertable" version))
18419 (sha256
18420 (base32
18421 "1cciil1nzxd8gbj49w99jiv077lbpb59vx7bmb4p218aj2h5hqq4"))))
18422 (build-system r-build-system)
18423 (propagated-inputs
18424 `(("r-data-table" ,r-data-table)))
18425 (native-inputs
18426 `(("r-knitr" ,r-knitr)))
18427 (home-page "https://cran.r-project.org/web/packages/assertable/")
18428 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
18429 (description "This package provides simple, flexible assertions on
18430 data.frame or data.table objects with verbose output for vetting. While other
18431 assertion packages apply towards more general use-cases, @code{assertable} is
18432 tailored towards tabular data. It includes functions to check variable names
18433 and values, whether the dataset contains all combinations of a given set of
18434 unique identifiers, and whether it is a certain length. In addition,
18435 @code{assertable} includes utility functions to check the existence of target
18436 files and to efficiently import multiple tabular data files into one
18437 data.table.")
18438 (license license:gpl3)))
18439
18440 (define-public r-quadprog
18441 (package
18442 (name "r-quadprog")
18443 (version "1.5-8")
18444 (source
18445 (origin
18446 (method url-fetch)
18447 (uri (cran-uri "quadprog" version))
18448 (sha256
18449 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
18450 (build-system r-build-system)
18451 (native-inputs
18452 `(("gfortran" ,gfortran)))
18453 (home-page "https://cran.r-project.org/web/packages/quadprog")
18454 (synopsis "Functions to solve quadratic programming problems")
18455 (description
18456 "This package contains routines and documentation for solving quadratic
18457 programming problems.")
18458 (license license:gpl3+)))
18459
18460 (define-public r-desolve
18461 (package
18462 (name "r-desolve")
18463 (version "1.28")
18464 (source
18465 (origin
18466 (method url-fetch)
18467 (uri (cran-uri "deSolve" version))
18468 (sha256
18469 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
18470 (properties `((upstream-name . "deSolve")))
18471 (build-system r-build-system)
18472 (native-inputs
18473 `(("gfortran" ,gfortran)))
18474 (home-page "https://desolve.r-forge.r-project.org/")
18475 (synopsis "Solvers for initial value problems of differential equations")
18476 (description "This package provides functions that solve initial value
18477 problems of a system of first-order @dfn{ordinary differential
18478 equations} (ODE), of @dfn{partial differential equations} (PDE), of
18479 @dfn{differential algebraic equations} (DAE), and of delay differential
18480 equations. The functions provide an interface to the FORTRAN functions
18481 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
18482 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
18483 C-implementation of solvers of the Runge-Kutta family with fixed or variable
18484 time steps. The package contains routines designed for solving ODEs resulting
18485 from 1-D, 2-D and 3-D partial differential equations that have been converted
18486 to ODEs by numerical differencing.")
18487 (license license:gpl2+)))
18488
18489 (define-public r-pracma
18490 (package
18491 (name "r-pracma")
18492 (version "2.3.3")
18493 (source (origin
18494 (method url-fetch)
18495 (uri (cran-uri "pracma" version))
18496 (sha256
18497 (base32 "0g5r5ir5k43ba0ngnsanp108k479l2dnsjd5w6idk1d34ivqs7yg"))))
18498 (build-system r-build-system)
18499 (home-page "https://cran.r-project.org/web/packages/pracma/")
18500 (synopsis "Practical numerical math functions")
18501 (description "This package provides functions for numerical analysis and
18502 linear algebra, numerical optimization, differential equations, plus some
18503 special functions. It uses Matlab function names where appropriate to simplify
18504 porting.")
18505 (license license:gpl3+)))
18506
18507 (define-public r-subplex
18508 (package
18509 (name "r-subplex")
18510 (version "1.6")
18511 (source
18512 (origin
18513 (method url-fetch)
18514 (uri (cran-uri "subplex" version))
18515 (sha256
18516 (base32
18517 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
18518 (build-system r-build-system)
18519 (native-inputs
18520 `(("gfortran" ,gfortran)))
18521 (home-page "https://cran.r-project.org/web/packages/subplex")
18522 (synopsis "Unconstrained optimization using the subplex algorithm")
18523 (description
18524 "This package implements the Subplex optimization algorithm.
18525 It solves unconstrained optimization problems using a simplex method on
18526 subspaces. The method is well suited for optimizing objective functions that
18527 are noisy or are discontinuous at the solution.")
18528 (license license:gpl3+)))
18529
18530 (define-public r-txtplot
18531 (package
18532 (name "r-txtplot")
18533 (version "1.0-4")
18534 (source
18535 (origin
18536 (method url-fetch)
18537 (uri (cran-uri "txtplot" version))
18538 (sha256
18539 (base32
18540 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
18541 (build-system r-build-system)
18542 (home-page "https://cran.r-project.org/web/packages/txtplot/")
18543 (synopsis "Text-based plotting")
18544 (description "This package provides functions to produce rudimentary ASCII
18545 graphics directly in the terminal window. This package provides a basic
18546 plotting function (and equivalents of curve, density, acf and barplot) as well
18547 as a boxplot function.")
18548 (license license:lgpl3+)))
18549
18550 (define-public r-bio3d
18551 (package
18552 (name "r-bio3d")
18553 (version "2.4-1")
18554 (source
18555 (origin
18556 (method url-fetch)
18557 (uri (cran-uri "bio3d" version))
18558 (sha256
18559 (base32
18560 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
18561 (properties `((upstream-name . "bio3d")))
18562 (build-system r-build-system)
18563 (inputs `(("zlib" ,zlib)))
18564 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
18565 (home-page "http://thegrantlab.org/bio3d/")
18566 (synopsis "Biological structure analysis")
18567 (description
18568 "This package provides utilities to process, organize and explore protein
18569 structure, sequence and dynamics data. Features include the ability to read
18570 and write structure, sequence and dynamic trajectory data, perform sequence
18571 and structure database searches, data summaries, atom selection, alignment,
18572 superposition, rigid core identification, clustering, torsion analysis,
18573 distance matrix analysis, structure and sequence conservation analysis, normal
18574 mode analysis, principal component analysis of heterogeneous structure data,
18575 and correlation network analysis from normal mode and molecular dynamics data.
18576 In addition, various utility functions are provided to enable the statistical
18577 and graphical power of the R environment to work with biological sequence and
18578 structural data.")
18579 (license license:gpl2+)))
18580
18581 (define-public r-bios2cor
18582 (package
18583 (name "r-bios2cor")
18584 (version "2.2")
18585 (source
18586 (origin
18587 (method url-fetch)
18588 (uri (cran-uri "Bios2cor" version))
18589 (sha256
18590 (base32
18591 "1wkj9vr33m9jilidil9jpw5rzr3pf7gkimxdvch22ks4bgkx7l1w"))))
18592 (properties `((upstream-name . "Bios2cor")))
18593 (build-system r-build-system)
18594 (propagated-inputs
18595 `(("r-bigmemory" ,r-bigmemory)
18596 ("r-bio3d" ,r-bio3d)
18597 ("r-circular" ,r-circular)
18598 ("r-igraph" ,r-igraph)))
18599 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
18600 (synopsis "From biological sequences and simulations to correlation analysis")
18601 (description
18602 "This package provides utilities for computation and analysis of
18603 correlation/covariation in multiple sequence alignments and in side chain
18604 motions during molecular dynamics simulations. Features include the
18605 computation of correlation/covariation scores using a variety of scoring
18606 functions between either sequence positions in alignments or side chain
18607 dihedral angles in molecular dynamics simulations and utilities to analyze the
18608 correlation/covariation matrix through a variety of tools including network
18609 representation and principal components analysis. In addition, several
18610 utility functions are based on the R graphical environment to provide friendly
18611 tools for help in data interpretation.")
18612 (license license:gpl2+)))
18613
18614 ;; This package includes minified JavaScript files. When upgrading please
18615 ;; check that there are no new minified JavaScript files.
18616 (define-public r-networkd3
18617 (package
18618 (name "r-networkd3")
18619 (version "0.4")
18620 (source
18621 (origin
18622 (method url-fetch)
18623 (uri (cran-uri "networkD3" version))
18624 (sha256
18625 (base32
18626 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
18627 (snippet
18628 '(begin
18629 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
18630 #t))))
18631 (properties `((upstream-name . "networkD3")))
18632 (build-system r-build-system)
18633 (arguments
18634 `(#:modules ((guix build utils)
18635 (guix build r-build-system)
18636 (srfi srfi-1)
18637 (ice-9 popen))
18638 #:phases
18639 (modify-phases %standard-phases
18640 (add-after 'unpack 'process-javascript
18641 (lambda* (#:key inputs #:allow-other-keys)
18642 (with-directory-excursion "inst/htmlwidgets/lib/"
18643 (call-with-values
18644 (lambda ()
18645 (unzip2
18646 `((,(assoc-ref inputs "d3.v4.js")
18647 "d3-4.5.0/d3.min.js"))))
18648 (lambda (sources targets)
18649 (for-each (lambda (source target)
18650 (format #t "Processing ~a --> ~a~%"
18651 source target)
18652 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
18653 (call-with-output-file target
18654 (lambda (port)
18655 (dump-port minified port)))))
18656 sources targets))))
18657 #t)))))
18658 (native-inputs
18659 `(("uglify-js" ,uglify-js)
18660 ;; NOTE: Make sure that this version of d3 is still valid when
18661 ;; upgrading the package.
18662 ("d3.v4.js"
18663 ,(origin
18664 (method url-fetch)
18665 (uri "https://d3js.org/d3.v4.js")
18666 (sha256
18667 (base32
18668 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
18669 (propagated-inputs
18670 `(("r-htmlwidgets" ,r-htmlwidgets)
18671 ("r-igraph" ,r-igraph)
18672 ("r-magrittr" ,r-magrittr)))
18673 (home-page "https://cran.r-project.org/package=networkD3")
18674 (synopsis "D3 JavaScript network graphs from R")
18675 (description
18676 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
18677 graphs from R.")
18678 (license license:gpl3+)))
18679
18680 (define-public r-aasea
18681 (package
18682 (name "r-aasea")
18683 (version "1.1.0")
18684 (source
18685 (origin
18686 (method url-fetch)
18687 (uri (cran-uri "aaSEA" version))
18688 (sha256
18689 (base32
18690 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
18691 (properties `((upstream-name . "aaSEA")))
18692 (build-system r-build-system)
18693 (propagated-inputs
18694 `(("r-bios2cor" ,r-bios2cor)
18695 ("r-dt" ,r-dt)
18696 ("r-hmisc" ,r-hmisc)
18697 ("r-magrittr" ,r-magrittr)
18698 ("r-networkd3" ,r-networkd3)
18699 ("r-plotly" ,r-plotly)
18700 ("r-seqinr" ,r-seqinr)
18701 ("r-shiny" ,r-shiny)
18702 ("r-shinydashboard" ,r-shinydashboard)))
18703 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
18704 (synopsis "Amino acid substitution effect analyzer")
18705 (description
18706 "Given a protein multiple sequence alignment, it is a daunting task to
18707 assess the effects of substitutions along sequence length. The aaSEA package
18708 is intended to help researchers to rapidly analyze property changes caused by
18709 single, multiple and correlated amino acid substitutions in proteins.")
18710 (license license:gpl3)))
18711
18712 (define-public r-abacus
18713 (package
18714 (name "r-abacus")
18715 (version "1.0.0")
18716 (source
18717 (origin
18718 (method url-fetch)
18719 (uri (cran-uri "ABACUS" version))
18720 (sha256
18721 (base32
18722 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
18723 (properties `((upstream-name . "ABACUS")))
18724 (build-system r-build-system)
18725 (propagated-inputs
18726 `(("r-ggplot2" ,r-ggplot2)
18727 ("r-shiny" ,r-shiny)))
18728 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
18729 (synopsis "Apps-based activities for communicating and understanding statistics")
18730 (description
18731 "This package provides a set of Shiny apps for effective communication
18732 and understanding in statistics. The current version includes properties of
18733 normal distribution, properties of sampling distribution, one-sample z and t
18734 tests, two samples independent (unpaired) t test and analysis of variance.")
18735 (license license:gpl3)))
18736
18737 (define-public r-abc-rap
18738 (package
18739 (name "r-abc-rap")
18740 (version "0.9.0")
18741 (source
18742 (origin
18743 (method url-fetch)
18744 (uri (cran-uri "ABC.RAP" version))
18745 (sha256
18746 (base32
18747 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
18748 (properties `((upstream-name . "ABC.RAP")))
18749 (build-system r-build-system)
18750 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
18751 (synopsis "Array-based CpG region analysis pipeline")
18752 (description
18753 "This package aims to identify candidate genes that are differentially
18754 methylated between cases and controls. It applies Student's t-test and delta
18755 beta analysis to identify candidate genes containing multiple CpG sites.")
18756 (license license:gpl3)))
18757
18758 (define-public r-abcadm
18759 (package
18760 (name "r-abcadm")
18761 (version "1.0")
18762 (source
18763 (origin
18764 (method url-fetch)
18765 (uri (cran-uri "abcADM" version))
18766 (sha256
18767 (base32
18768 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
18769 (properties `((upstream-name . "abcADM")))
18770 (build-system r-build-system)
18771 (propagated-inputs
18772 `(("r-bh" ,r-bh)
18773 ("r-rcpp" ,r-rcpp)))
18774 (home-page "https://cran.r-project.org/web/packages/abcADM/")
18775 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
18776 (description
18777 "This package provides tools to estimate parameters of accumulated
18778 damage (load duration) models based on failure time data under a Bayesian
18779 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
18780 long-term reliability under stochastic load profiles.")
18781 (license license:gpl3)))
18782
18783 (define-public r-rglpk
18784 (package
18785 (name "r-rglpk")
18786 (version "0.6-4")
18787 (source
18788 (origin
18789 (method url-fetch)
18790 (uri (cran-uri "Rglpk" version))
18791 (sha256
18792 (base32
18793 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
18794 (properties `((upstream-name . "Rglpk")))
18795 (build-system r-build-system)
18796 (propagated-inputs
18797 `(("r-slam" ,r-slam)))
18798 (inputs
18799 `(("glpk" ,glpk)))
18800 (home-page "https://r-forge.r-project.org/projects/rglp/")
18801 (synopsis "R interface to the GNU Linear Programming Kit")
18802 (description
18803 "This package provides an R interface to the GNU Linear Programming Kit,
18804 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
18805 integer linear programming} (MILP) and other related problems.")
18806 ;; Either license
18807 (license (list license:gpl2 license:gpl3))))
18808
18809 (define-public r-abcdefba
18810 (package
18811 (name "r-abcdefba")
18812 (version "0.4")
18813 (source
18814 (origin
18815 (method url-fetch)
18816 (uri (cran-uri "abcdeFBA" version))
18817 (sha256
18818 (base32
18819 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
18820 (properties `((upstream-name . "abcdeFBA")))
18821 (build-system r-build-system)
18822 (propagated-inputs
18823 `(("r-corrplot" ,r-corrplot)
18824 ("r-lattice" ,r-lattice)
18825 ("r-rgl" ,r-rgl)
18826 ("r-rglpk" ,r-rglpk)))
18827 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
18828 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
18829 (description
18830 "This package provides functions for Constraint Based Simulation using
18831 Flux Balance Analysis and informative analysis of the data generated during
18832 simulation.")
18833 (license license:gpl2)))
18834
18835 (define-public r-abcrlda
18836 (package
18837 (name "r-abcrlda")
18838 (version "1.0.3")
18839 (source
18840 (origin
18841 (method url-fetch)
18842 (uri (cran-uri "abcrlda" version))
18843 (sha256
18844 (base32
18845 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
18846 (properties `((upstream-name . "abcrlda")))
18847 (build-system r-build-system)
18848 (home-page "https://ieeexplore.ieee.org/document/8720003/")
18849 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
18850 (description
18851 "This package offers methods to perform @dfn{asymptotically
18852 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
18853 cost-sensitive binary classification. The bias-correction is an estimate of
18854 the bias term added to regularized discriminant analysis that minimizes the
18855 overall risk.")
18856 (license license:gpl3)))
18857
18858 (define-public r-abemus
18859 (package
18860 (name "r-abemus")
18861 (version "1.0.1")
18862 (source
18863 (origin
18864 (method url-fetch)
18865 (uri (cran-uri "abemus" version))
18866 (sha256
18867 (base32
18868 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
18869 (properties `((upstream-name . "abemus")))
18870 (build-system r-build-system)
18871 (propagated-inputs
18872 `(("r-data-table" ,r-data-table)))
18873 (home-page "https://cran.r-project.org/web/packages/abemus/")
18874 (synopsis "Adaptive base error model in ultra-deep sequencing data")
18875 (description
18876 "This package provides an implementation of @dfn{Adaptive Base Error
18877 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
18878 platform-specific genetic knowledge and empirical signal to readily detect and
18879 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
18880 cell free DNA} (cfDNA).")
18881 (license license:gpl3)))
18882
18883 ;; This package includes minified JavaScript files. When upgrading please
18884 ;; check that there are no new minified JavaScript files.
18885 (define-public r-rintrojs
18886 (package
18887 (name "r-rintrojs")
18888 (version "0.2.2")
18889 (source
18890 (origin
18891 (method url-fetch)
18892 (uri (cran-uri "rintrojs" version))
18893 (sha256
18894 (base32
18895 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
18896 (properties `((upstream-name . "rintrojs")))
18897 (build-system r-build-system)
18898 (arguments
18899 `(#:modules ((guix build utils)
18900 (guix build r-build-system)
18901 (srfi srfi-1)
18902 (ice-9 popen))
18903 #:phases
18904 (modify-phases %standard-phases
18905 (add-after 'unpack 'process-javascript
18906 (lambda* (#:key inputs #:allow-other-keys)
18907 (with-directory-excursion "inst/javascript/introjs/"
18908 (call-with-values
18909 (lambda ()
18910 (unzip2
18911 `((,(assoc-ref inputs "intro.js")
18912 "intro.min.js"))))
18913 (lambda (sources targets)
18914 (for-each (lambda (source target)
18915 (format #t "Processing ~a --> ~a~%"
18916 source target)
18917 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
18918 (call-with-output-file target
18919 (lambda (port)
18920 (dump-port minified port)))))
18921 sources targets))))
18922 #t)))))
18923 (native-inputs
18924 `(("uglify-js" ,uglify-js)
18925 ("intro.js"
18926 ,(origin
18927 (method url-fetch)
18928 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
18929 (sha256
18930 (base32
18931 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
18932 (propagated-inputs
18933 `(("r-jsonlite" ,r-jsonlite)
18934 ("r-shiny" ,r-shiny)))
18935 (home-page "https://github.com/carlganz/rintrojs")
18936 (synopsis "Wrapper for the Intro.js library")
18937 (description
18938 "This package provides a wrapper for the @url{http://www.introjs.com,
18939 Intro.js} library. This package makes it easy to include step-by-step
18940 introductions, and clickable hints in a Shiny application. It supports both
18941 static introductions in the UI, and programmatic introductions from the
18942 server-side.")
18943 (license license:agpl3+)))
18944
18945 (define-public r-sysfonts
18946 (package
18947 (name "r-sysfonts")
18948 (version "0.8.3")
18949 (source
18950 (origin
18951 (method url-fetch)
18952 (uri (cran-uri "sysfonts" version))
18953 (sha256
18954 (base32
18955 "00kbazxw6zd1kakfshffdj928krca53bw9k78k0zar40mbqxiwd5"))))
18956 (properties `((upstream-name . "sysfonts")))
18957 (build-system r-build-system)
18958 (inputs
18959 `(("freetype" ,freetype)
18960 ("libpng" ,libpng)
18961 ("zlib" ,zlib)))
18962 (native-inputs
18963 `(("pkg-config" ,pkg-config)))
18964 (home-page "https://github.com/yixuan/sysfonts")
18965 (synopsis "Loading fonts into R")
18966 (description
18967 "This is a package to simplify loading of system fonts and Google Fonts
18968 into R, in order to support other packages.")
18969 (license license:gpl2)))
18970
18971 (define-public r-showtextdb
18972 (package
18973 (name "r-showtextdb")
18974 (version "3.0")
18975 (source
18976 (origin
18977 (method url-fetch)
18978 (uri (cran-uri "showtextdb" version))
18979 (sha256
18980 (base32
18981 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
18982 (properties `((upstream-name . "showtextdb")))
18983 (build-system r-build-system)
18984 (propagated-inputs
18985 `(("r-sysfonts" ,r-sysfonts)))
18986 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
18987 (synopsis "Font files for the 'showtext' package")
18988 (description
18989 "This package provides font files that can be used by the @code{showtext}
18990 package.")
18991 (license license:asl2.0)))
18992
18993 (define-public r-showtext
18994 (package
18995 (name "r-showtext")
18996 (version "0.9-2")
18997 (source
18998 (origin
18999 (method url-fetch)
19000 (uri (cran-uri "showtext" version))
19001 (sha256
19002 (base32
19003 "0y5mw6ffk92r7b22irrfhdmj4hxfl0d1wjxj14hznbapc4qm6f0z"))))
19004 (properties `((upstream-name . "showtext")))
19005 (build-system r-build-system)
19006 (inputs
19007 `(("freetype" ,freetype)
19008 ("libpng" ,libpng)
19009 ("zlib" ,zlib)))
19010 (propagated-inputs
19011 `(("r-showtextdb" ,r-showtextdb)
19012 ("r-sysfonts" ,r-sysfonts)))
19013 (native-inputs
19014 `(("pkg-config" ,pkg-config)
19015 ("r-knitr" ,r-knitr)))
19016 (home-page "https://github.com/yixuan/showtext")
19017 (synopsis "Using fonts more easily in R graphs")
19018 (description
19019 "This package aims to make it easy to use various types of
19020 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
19021 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
19022 will be converted into polygons or raster images, hence after the plot has
19023 been created, it no longer relies on the font files. No external software
19024 such as Ghostscript is needed to use this package.")
19025 (license license:asl2.0)))
19026
19027 (define-public r-emojifont
19028 (package
19029 (name "r-emojifont")
19030 (version "0.5.3")
19031 (source
19032 (origin
19033 (method url-fetch)
19034 (uri (cran-uri "emojifont" version))
19035 (sha256
19036 (base32
19037 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
19038 (properties `((upstream-name . "emojifont")))
19039 (build-system r-build-system)
19040 (propagated-inputs
19041 `(("r-ggplot2" ,r-ggplot2)
19042 ("r-proto" ,r-proto)
19043 ("r-showtext" ,r-showtext)
19044 ("r-sysfonts" ,r-sysfonts)))
19045 (home-page "https://guangchuangyu.github.io/emojifont")
19046 (synopsis "Emoji and Font Awesome in R graphics")
19047 (description
19048 "This package enables the use of emoji and the Font Awesome glyphs in
19049 both base and ggplot2 graphics.")
19050 (license license:artistic2.0)))
19051
19052 (define-public r-abstractr
19053 (package
19054 (name "r-abstractr")
19055 (version "0.1.0")
19056 (source
19057 (origin
19058 (method url-fetch)
19059 (uri (cran-uri "abstractr" version))
19060 (sha256
19061 (base32
19062 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
19063 (properties `((upstream-name . "abstractr")))
19064 (build-system r-build-system)
19065 (propagated-inputs
19066 `(("r-colourpicker" ,r-colourpicker)
19067 ("r-emojifont" ,r-emojifont)
19068 ("r-ggplot2" ,r-ggplot2)
19069 ("r-gridextra" ,r-gridextra)
19070 ("r-rintrojs" ,r-rintrojs)
19071 ("r-shiny" ,r-shiny)
19072 ("r-shinythemes" ,r-shinythemes)))
19073 (home-page "https://matt-kumar.shinyapps.io/portfolio")
19074 (synopsis "R-Shiny application for creating visual abstracts")
19075 (description
19076 "This package provides an R Shiny application to create visual abstracts
19077 for original research. A variety of user defined options and formatting are
19078 included.")
19079 (license license:gpl3)))
19080
19081 (define-public r-qgam
19082 (package
19083 (name "r-qgam")
19084 (version "1.3.2")
19085 (source
19086 (origin
19087 (method url-fetch)
19088 (uri (cran-uri "qgam" version))
19089 (sha256
19090 (base32
19091 "0lks2cj0p7irp1i01756v1l7i26d7alax1fbkc20qd6wpz840fi7"))))
19092 (properties `((upstream-name . "qgam")))
19093 (build-system r-build-system)
19094 (propagated-inputs
19095 `(("r-doparallel" ,r-doparallel)
19096 ("r-mgcv" ,r-mgcv)
19097 ("r-plyr" ,r-plyr)
19098 ("r-shiny" ,r-shiny)))
19099 (native-inputs `(("r-knitr" ,r-knitr)))
19100 (home-page "https://cran.r-project.org/web/packages/qgam/")
19101 (synopsis "Smooth additive quantile regression models")
19102 (description
19103 "This package provides smooth additive quantile regression models, fitted
19104 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
19105 the smoothing parameters are estimated automatically by marginal loss
19106 minimization, while the regression coefficients are estimated using either
19107 PIRLS or Newton algorithm. The learning rate is determined so that the
19108 Bayesian credible intervals of the estimated effects have approximately the
19109 correct coverage. The main function is @code{qgam()} which is similar to
19110 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
19111 regression models.")
19112 (license license:gpl2+)))
19113
19114 (define-public r-abtest
19115 (package
19116 (name "r-abtest")
19117 (version "0.2.2")
19118 (source
19119 (origin
19120 (method url-fetch)
19121 (uri (cran-uri "abtest" version))
19122 (sha256
19123 (base32
19124 "1ak0m4jd1grriwg4pn3aqf1468qma6rjn5kqjh8izx7zl29jd07v"))))
19125 (properties `((upstream-name . "abtest")))
19126 (build-system r-build-system)
19127 (propagated-inputs
19128 `(("r-matrix" ,r-matrix)
19129 ("r-mvtnorm" ,r-mvtnorm)
19130 ("r-plotrix" ,r-plotrix)
19131 ("r-qgam" ,r-qgam)
19132 ("r-rcolorbrewer" ,r-rcolorbrewer)
19133 ("r-rcpp" ,r-rcpp)
19134 ("r-sn" ,r-sn)
19135 ("r-truncnorm" ,r-truncnorm)))
19136 (home-page "https://cran.r-project.org/web/packages/abtest/")
19137 (synopsis "Bayesian A/B testing")
19138 (description
19139 "This package provides functions for Bayesian A/B testing including prior
19140 elicitation options based on Kass and Vaidyanathan (1992)
19141 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
19142 (license license:gpl2+)))
19143
19144 (define-public r-accept
19145 (package
19146 (name "r-accept")
19147 (version "0.7.1")
19148 (source
19149 (origin
19150 (method url-fetch)
19151 (uri (cran-uri "accept" version))
19152 (sha256
19153 (base32
19154 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
19155 (properties `((upstream-name . "accept")))
19156 (build-system r-build-system)
19157 (propagated-inputs
19158 `(("r-dplyr" ,r-dplyr)
19159 ("r-extrafont" ,r-extrafont)
19160 ("r-mass" ,r-mass)
19161 ("r-plotly" ,r-plotly)
19162 ("r-stringr" ,r-stringr)
19163 ("r-viridis" ,r-viridis)))
19164 (home-page "https://cran.r-project.org/web/packages/accept/")
19165 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
19166 (description
19167 "This package allows clinicians to predict the rate and severity of
19168 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
19169 Disease} (COPD) patients, based on the clinical prediction model published in
19170 Adibi et al. (2019) @url{doi:10.1101/651901}.")
19171 (license license:gpl3)))
19172
19173 (define-public r-smpracticals
19174 (package
19175 (name "r-smpracticals")
19176 (version "1.4-3")
19177 (source
19178 (origin
19179 (method url-fetch)
19180 (uri (cran-uri "SMPracticals" version))
19181 (sha256
19182 (base32
19183 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
19184 (properties `((upstream-name . "SMPracticals")))
19185 (build-system r-build-system)
19186 (propagated-inputs
19187 `(("r-ellipse" ,r-ellipse)
19188 ("r-mass" ,r-mass)
19189 ("r-nlme" ,r-nlme)
19190 ("r-survival" ,r-survival)))
19191 (home-page "http://statwww.epfl.ch/davison/SM/")
19192 (synopsis "Practicals for use with Davison (2003) Statistical Models")
19193 (description
19194 "This package contains the datasets and a few functions for use with the
19195 practicals outlined in Appendix A of the book Statistical Models (Davison,
19196 2003, Cambridge University Press). The practicals themselves can be found at
19197 @url{http://statwww.epfl.ch/davison/SM/}.")
19198 (license license:gpl2+)))
19199
19200 (define-public r-fgui
19201 (package
19202 (name "r-fgui")
19203 (version "1.0-8")
19204 (source
19205 (origin
19206 (method url-fetch)
19207 (uri (cran-uri "fgui" version))
19208 (sha256
19209 (base32
19210 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
19211 (properties `((upstream-name . "fgui")))
19212 (build-system r-build-system)
19213 (home-page
19214 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
19215 (synopsis "Create GUI for R functions")
19216 (description
19217 "Rapidly create a GUI for a function you created by automatically
19218 creating widgets for arguments of the function. This package automatically
19219 parses help routines for context-sensitive help to these arguments. The
19220 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
19221 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
19222 incorporated into the interface for greater customization for the more
19223 experienced.")
19224 ;; Any version of the GPL.
19225 (license (list license:gpl2+ license:gpl3+))))
19226
19227 (define-public r-tcltk2
19228 (package
19229 (name "r-tcltk2")
19230 (version "1.2-11")
19231 (source
19232 (origin
19233 (method url-fetch)
19234 (uri (cran-uri "tcltk2" version))
19235 (sha256
19236 (base32
19237 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
19238 (properties `((upstream-name . "tcltk2")))
19239 (build-system r-build-system)
19240 (inputs
19241 `(("tcl" ,tcl)
19242 ("tk" ,tk)))
19243 (home-page "https://www.sciviews.org/SciViews-R")
19244 (synopsis "Tcl/Tk additions")
19245 (description
19246 "This package provides a series of additional Tcl commands and Tk widgets
19247 with style and various functions to supplement the tcltk package")
19248 (license license:lgpl3)))
19249
19250 (define-public r-accrual
19251 (package
19252 (name "r-accrual")
19253 (version "1.3")
19254 (source
19255 (origin
19256 (method url-fetch)
19257 (uri (cran-uri "accrual" version))
19258 (sha256
19259 (base32
19260 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
19261 (properties `((upstream-name . "accrual")))
19262 (build-system r-build-system)
19263 (propagated-inputs
19264 `(("r-fgui" ,r-fgui)
19265 ("r-smpracticals" ,r-smpracticals)
19266 ("r-tcltk2" ,r-tcltk2)))
19267 (home-page "https://cran.r-project.org/web/packages/accrual/")
19268 (synopsis "Bayesian accrual prediction")
19269 (description
19270 "Subject recruitment for medical research is challenging. Slow patient
19271 accrual leads to delay in research. Accrual monitoring during the process of
19272 recruitment is critical. Researchers need reliable tools to manage the
19273 accrual rate. This package provides an implementation of a Bayesian method
19274 that integrates researcher's experience on previous trials and data from the
19275 current study, providing reliable prediction on accrual rate for clinical
19276 studies. It provides functions for Bayesian accrual prediction which can be
19277 easily used by statisticians and clinical researchers.")
19278 (license license:gpl2)))
19279
19280 (define-public r-accrued
19281 (package
19282 (name "r-accrued")
19283 (version "1.4.1")
19284 (source
19285 (origin
19286 (method url-fetch)
19287 (uri (cran-uri "accrued" version))
19288 (sha256
19289 (base32
19290 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
19291 (properties `((upstream-name . "accrued")))
19292 (build-system r-build-system)
19293 (home-page "https://cran.r-project.org/web/packages/accrued/")
19294 (synopsis "Data quality visualization tools for partially accruing data")
19295 (description
19296 "This is a package for visualizing data quality of partially accruing
19297 data.")
19298 (license license:gpl3)))
19299
19300 (define-public r-mda
19301 (package
19302 (name "r-mda")
19303 (version "0.5-2")
19304 (source
19305 (origin
19306 (method url-fetch)
19307 (uri (cran-uri "mda" version))
19308 (sha256
19309 (base32
19310 "1hq0zhhz9klmp4zcr1w8hyn7s1h9kfg57d2l2mfm7psx459j0krl"))))
19311 (properties `((upstream-name . "mda")))
19312 (build-system r-build-system)
19313 (propagated-inputs `(("r-class" ,r-class)))
19314 (native-inputs `(("gfortran" ,gfortran)))
19315 (home-page "https://cran.r-project.org/web/packages/mda/")
19316 (synopsis "Mixture and flexible discriminant analysis")
19317 (description
19318 "This is a package for mixture and flexible discriminant analysis,
19319 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
19320 (license license:gpl2)))
19321
19322 (define-public r-elasticnet
19323 (package
19324 (name "r-elasticnet")
19325 (version "1.3")
19326 (source
19327 (origin
19328 (method url-fetch)
19329 (uri (cran-uri "elasticnet" version))
19330 (sha256
19331 (base32
19332 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
19333 (properties `((upstream-name . "elasticnet")))
19334 (build-system r-build-system)
19335 (propagated-inputs
19336 `(("r-lars" ,r-lars)))
19337 (home-page "http://users.stat.umn.edu/~zouxx019/")
19338 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
19339 (description
19340 "This package provides functions for fitting the entire solution path of
19341 the Elastic-Net and also provides functions for estimating sparse Principal
19342 Components. The Lasso solution paths can be computed by the same function.")
19343 (license license:gpl2+)))
19344
19345 (define-public r-sparselda
19346 (package
19347 (name "r-sparselda")
19348 (version "0.1-9")
19349 (source
19350 (origin
19351 (method url-fetch)
19352 (uri (cran-uri "sparseLDA" version))
19353 (sha256
19354 (base32
19355 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
19356 (properties `((upstream-name . "sparseLDA")))
19357 (build-system r-build-system)
19358 (propagated-inputs
19359 `(("r-elasticnet" ,r-elasticnet)
19360 ("r-mass" ,r-mass)
19361 ("r-mda" ,r-mda)))
19362 (home-page "https://www.imm.dtu.dk/~lkhc/")
19363 (synopsis "Sparse discriminant analysis")
19364 (description
19365 "This package performs sparse linear discriminant analysis for Gaussians
19366 and mixture of Gaussian models.")
19367 (license license:gpl2+)))
19368
19369 (define-public r-accsda
19370 (package
19371 (name "r-accsda")
19372 (version "1.0.0")
19373 (source
19374 (origin
19375 (method url-fetch)
19376 (uri (cran-uri "accSDA" version))
19377 (sha256
19378 (base32
19379 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
19380 (properties `((upstream-name . "accSDA")))
19381 (build-system r-build-system)
19382 (propagated-inputs
19383 `(("r-ggplot2" ,r-ggplot2)
19384 ("r-ggthemes" ,r-ggthemes)
19385 ("r-gridextra" ,r-gridextra)
19386 ("r-mass" ,r-mass)
19387 ("r-rarpack" ,r-rarpack)
19388 ("r-sparselda" ,r-sparselda)))
19389 (home-page "https://github.com/gumeo/accSDA/wiki")
19390 (synopsis "Accelerated sparse discriminant analysis")
19391 (description
19392 "This package provides an implementation of sparse linear discriminant
19393 analysis, which is a supervised classification method for multiple classes.
19394 Various novel optimization approaches to this problem are implemented
19395 including @dfn{alternating direction method of multipliers} (ADMM),
19396 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
19397 Functions for performing cross validation are also supplied along with basic
19398 prediction and plotting functions. @dfn{Sparse zero variance
19399 discriminant} (SZVD) analysis is also included in the package.")
19400 (license license:gpl2+)))
19401
19402 (define-public r-ace2fastq
19403 (package
19404 (name "r-ace2fastq")
19405 (version "0.6.0")
19406 (source
19407 (origin
19408 (method url-fetch)
19409 (uri (cran-uri "ace2fastq" version))
19410 (sha256
19411 (base32
19412 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
19413 (properties `((upstream-name . "ace2fastq")))
19414 (build-system r-build-system)
19415 (propagated-inputs
19416 `(("r-stringr" ,r-stringr)))
19417 (home-page "https://github.com/c5sire/ace2fastq")
19418 (synopsis "ACE file to FASTQ converter")
19419 (description
19420 "The ACE file format is used in genomics to store contigs from sequencing
19421 machines. This tools converts it into FASTQ format. Both formats contain the
19422 sequence characters and their corresponding quality information. Unlike the
19423 FASTQ file, the ACE file stores the quality values numerically. The
19424 conversion algorithm uses the standard Sanger formula. The package
19425 facilitates insertion into pipelines, and content inspection.")
19426 (license license:gpl3)))
19427
19428 (define-public r-rngwell
19429 (package
19430 (name "r-rngwell")
19431 (version "0.10-6")
19432 (source
19433 (origin
19434 (method url-fetch)
19435 (uri (cran-uri "rngWELL" version))
19436 (sha256
19437 (base32
19438 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
19439 (properties `((upstream-name . "rngWELL")))
19440 (build-system r-build-system)
19441 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
19442 (synopsis "Toolbox for WELL random number generators")
19443 (description
19444 "This is a dedicated package to WELL pseudo random generators, which were
19445 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
19446 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
19447 (license license:bsd-3)))
19448
19449 (define-public r-randtoolbox
19450 (package
19451 (name "r-randtoolbox")
19452 (version "1.30.1")
19453 (source
19454 (origin
19455 (method url-fetch)
19456 (uri (cran-uri "randtoolbox" version))
19457 (sha256
19458 (base32
19459 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
19460 (properties `((upstream-name . "randtoolbox")))
19461 (build-system r-build-system)
19462 (propagated-inputs
19463 `(("r-rngwell" ,r-rngwell)))
19464 (native-inputs
19465 `(("gfortran" ,gfortran)))
19466 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
19467 (synopsis "Toolbox for pseudo and quasi random number generation")
19468 (description
19469 "This package provides
19470
19471 @enumerate
19472 @item pseudo random generators, such as general linear
19473 congruential generators, multiple recursive generators and generalized
19474 feedback shift register (SF-Mersenne Twister algorithm and WELL
19475 generators)
19476
19477 @item quasi random generators, such as the Torus algorithm, the Sobol
19478 sequence, the Halton sequence (including the Van der Corput sequence), and
19479
19480 @item some generator tests: the gap test, the serial test, the poker test.
19481 @end enumerate
19482
19483 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
19484 (license license:bsd-3)))
19485
19486 (define-public r-lhs
19487 (package
19488 (name "r-lhs")
19489 (version "1.1.1")
19490 (source
19491 (origin
19492 (method url-fetch)
19493 (uri (cran-uri "lhs" version))
19494 (sha256
19495 (base32
19496 "1p4h03qlijs2a59wfd4rlvdlb9i87pw2zm8xsjd6yzz8vlm9yglh"))))
19497 (properties `((upstream-name . "lhs")))
19498 (build-system r-build-system)
19499 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19500 (native-inputs
19501 `(("r-knitr" ,r-knitr)))
19502 (home-page "https://github.com/bertcarnell/lhs")
19503 (synopsis "Latin Hypercube Samples")
19504 (description
19505 "This package provides a number of methods for creating and augmenting
19506 Latin Hypercube Samples.")
19507 (license license:gpl3)))
19508
19509 (define-public r-acebayes
19510 (package
19511 (name "r-acebayes")
19512 (version "1.10")
19513 (source
19514 (origin
19515 (method url-fetch)
19516 (uri (cran-uri "acebayes" version))
19517 (sha256
19518 (base32
19519 "11bffz430gdfdaxjx3simig66vhynmx6l1ylac4q2shcmj52nx73"))))
19520 (properties `((upstream-name . "acebayes")))
19521 (build-system r-build-system)
19522 (propagated-inputs
19523 `(("r-compare" ,r-compare)
19524 ("r-lhs" ,r-lhs)
19525 ("r-randtoolbox" ,r-randtoolbox)
19526 ("r-rcpp" ,r-rcpp)
19527 ("r-rcpparmadillo" ,r-rcpparmadillo)))
19528 (home-page "https://cran.r-project.org/web/packages/acebayes/")
19529 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
19530 (description
19531 "Finding an optimal Bayesian experimental design involves maximizing an
19532 objective function given by the expectation of some appropriately chosen
19533 utility function with respect to the joint distribution of unknown
19534 quantities (including responses). This objective function is usually not
19535 available in closed form and the design space can be continuous and of high
19536 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
19537 to maximise an approximation to the expectation of the utility function.")
19538 (license license:gpl2)))
19539
19540 (define-public r-acet
19541 (package
19542 (name "r-acet")
19543 (version "1.8.1")
19544 (source
19545 (origin
19546 (method url-fetch)
19547 (uri (cran-uri "ACEt" version))
19548 (sha256
19549 (base32
19550 "0b5lfpnppyk0237phr2aybhx29nhm8ngwk2qa1y4lshrvsw97wg4"))))
19551 (properties `((upstream-name . "ACEt")))
19552 (build-system r-build-system)
19553 (propagated-inputs
19554 `(("r-bh" ,r-bh)
19555 ("r-mass" ,r-mass)
19556 ("r-rcpp" ,r-rcpp)
19557 ("r-rcpparmadillo" ,r-rcpparmadillo)))
19558 (home-page "https://cran.r-project.org/web/packages/ACEt/")
19559 (synopsis "Estimating dynamic heritability and twin model comparison")
19560 (description
19561 "This package supports twin models that are able to estimate the dynamic
19562 behaviour of the variance components in the classical twin models with respect
19563 to age using B-splines and P-splines.")
19564 (license license:gpl2+)))
19565
19566 (define-public r-acfmperiod
19567 (package
19568 (name "r-acfmperiod")
19569 (version "1.0.0")
19570 (source
19571 (origin
19572 (method url-fetch)
19573 (uri (cran-uri "acfMPeriod" version))
19574 (sha256
19575 (base32
19576 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
19577 (properties `((upstream-name . "acfMPeriod")))
19578 (build-system r-build-system)
19579 (propagated-inputs
19580 `(("r-mass" ,r-mass)))
19581 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
19582 (synopsis "Estimation of the ACF from the M-periodogram")
19583 (description
19584 "This package support non-robust and robust computations of the sample
19585 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
19586 univariate and multivariate processes. The methodology consists in reversing
19587 the diagonalization procedure involving the periodogram or the
19588 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
19589 ACOVF or the ACF as discussed in Fuller (1995)
19590 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
19591 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
19592 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
19593 (license license:gpl2+)))
19594
19595 (define-public r-gamlss-data
19596 (package
19597 (name "r-gamlss-data")
19598 (version "5.1-4")
19599 (source
19600 (origin
19601 (method url-fetch)
19602 (uri (cran-uri "gamlss.data" version))
19603 (sha256
19604 (base32
19605 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
19606 (properties `((upstream-name . "gamlss.data")))
19607 (build-system r-build-system)
19608 (home-page "http://www.gamlss.org/")
19609 (synopsis "GAMLSS data")
19610 (description
19611 "This package provides data used as examples to demonstrate GAMLSS
19612 models.")
19613 ;; Either version of the license
19614 (license (list license:gpl2 license:gpl3))))
19615
19616 (define-public r-gamlss
19617 (package
19618 (name "r-gamlss")
19619 (version "5.3-1")
19620 (source
19621 (origin
19622 (method url-fetch)
19623 (uri (cran-uri "gamlss" version))
19624 (sha256
19625 (base32
19626 "1ngf6g4zixwm6ni5r0fs0f6132xd2f2a6mlski9hlqnvvwb46iwr"))))
19627 (properties `((upstream-name . "gamlss")))
19628 (build-system r-build-system)
19629 (propagated-inputs
19630 `(("r-gamlss-data" ,r-gamlss-data)
19631 ("r-gamlss-dist" ,r-gamlss-dist)
19632 ("r-mass" ,r-mass)
19633 ("r-nlme" ,r-nlme)
19634 ("r-survival" ,r-survival)))
19635 (home-page "http://www.gamlss.org/")
19636 (synopsis "Generalized additive models for location scale and shape")
19637 (description
19638 "This package provides functions for fitting the generalized additive
19639 models for location scale and shape introduced by Rigby and
19640 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
19641 use a distributional regression approach where all the parameters of the
19642 conditional distribution of the response variable are modelled using
19643 explanatory variables.")
19644 ;; Either version of the license
19645 (license (list license:gpl2 license:gpl3))))
19646
19647 (define-public r-acid
19648 (package
19649 (name "r-acid")
19650 (version "1.1")
19651 (source
19652 (origin
19653 (method url-fetch)
19654 (uri (cran-uri "acid" version))
19655 (sha256
19656 (base32
19657 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
19658 (properties `((upstream-name . "acid")))
19659 (build-system r-build-system)
19660 (propagated-inputs
19661 `(("r-gamlss" ,r-gamlss)
19662 ("r-gamlss-dist" ,r-gamlss-dist)
19663 ("r-hmisc" ,r-hmisc)))
19664 (home-page "https://cran.r-project.org/web/packages/acid/")
19665 (synopsis "Analysing conditional income distributions")
19666 (description
19667 "This package provides functions for the analysis of income distributions
19668 for subgroups of the population as defined by a set of variables like age,
19669 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
19670 distribution as well as functions for moments, inequality measures, entropy
19671 measures and polarisation measures of income distributions. This package thus
19672 aides the analysis of income inequality by offering tools for the exploratory
19673 analysis of income distributions at the disaggregated level.")
19674 (license license:gpl3)))
19675
19676 (define-public r-acm4r
19677 (package
19678 (name "r-acm4r")
19679 (version "1.0")
19680 (source
19681 (origin
19682 (method url-fetch)
19683 (uri (cran-uri "acm4r" version))
19684 (sha256
19685 (base32
19686 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
19687 (properties `((upstream-name . "acm4r")))
19688 (build-system r-build-system)
19689 (propagated-inputs `(("r-mass" ,r-mass)))
19690 (home-page "https://cran.r-project.org/web/packages/acm4r/")
19691 (synopsis "Align-and-count method comparisons of RFLP data")
19692 (description
19693 "This is a package to compare sequence fragment lengths or molecular
19694 weights from pairs of lanes. The number of matching bands in the
19695 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
19696 the align-and-count method.")
19697 ;; Any version of the GPL
19698 (license (list license:gpl2+ license:gpl3+))))
19699
19700 (define-public r-filelock
19701 (package
19702 (name "r-filelock")
19703 (version "1.0.2")
19704 (source
19705 (origin
19706 (method url-fetch)
19707 (uri (cran-uri "filelock" version))
19708 (sha256
19709 (base32
19710 "00ql5fw1hidpfnm0szaavf43ahmsnvdbi8i5lr1nrcc90yaiaadc"))))
19711 (properties `((upstream-name . "filelock")))
19712 (build-system r-build-system)
19713 (home-page "https://github.com/r-lib/filelock")
19714 (synopsis "Portable file locking")
19715 (description
19716 "This library lets you place an exclusive or shared lock on a file using
19717 the appropriate system call provided by the underlying operating system.")
19718 (license license:expat)))
19719
19720 (define-public r-filematrix
19721 (package
19722 (name "r-filematrix")
19723 (version "1.3")
19724 (source
19725 (origin
19726 (method url-fetch)
19727 (uri (cran-uri "filematrix" version))
19728 (sha256
19729 (base32
19730 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
19731 (properties `((upstream-name . "filematrix")))
19732 (build-system r-build-system)
19733 ;; These inputs are needed for vignettes
19734 (native-inputs
19735 `(("r-knitr" ,r-knitr)
19736 ("r-rmarkdown" ,r-rmarkdown)
19737 ("pandoc-citeproc" ,pandoc-citeproc)))
19738 (home-page "https://github.com/andreyshabalin/filematrix")
19739 (synopsis "File-backed matrix class with convenient read and write access")
19740 (description
19741 "This package provides an interface for working with large matrices
19742 stored in files, not in computer memory. It supports multiple non-character
19743 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
19744 byte real values). Access to parts of the matrix is done by indexing, exactly
19745 as with usual R matrices. It supports very large matrices; the package has
19746 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
19747 columns, ad allows for quick addition of extra columns to a filematrix.")
19748 (license license:lgpl3)))
19749
19750 (define-public r-acmeeqtl
19751 (package
19752 (name "r-acmeeqtl")
19753 (version "1.6")
19754 (source
19755 (origin
19756 (method url-fetch)
19757 (uri (cran-uri "ACMEeqtl" version))
19758 (sha256
19759 (base32
19760 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
19761 (properties `((upstream-name . "ACMEeqtl")))
19762 (build-system r-build-system)
19763 (propagated-inputs
19764 `(("r-filematrix" ,r-filematrix)))
19765 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
19766 (synopsis "Estimation of interpretable eQTL effect sizes")
19767 (description
19768 "This package provides a non-linear model, termed ACME, that reflects a
19769 parsimonious biological model for allelic contributions of cis-acting eQTLs.
19770 With non-linear least-squares algorithm the maximum likelihood parameters can
19771 be estimated. The ACME model provides interpretable effect size estimates and
19772 p-values with well controlled Type-I error.")
19773 (license license:lgpl3)))
19774
19775 (define-public r-acmer
19776 (package
19777 (name "r-acmer")
19778 (version "1.1.0")
19779 (source
19780 (origin
19781 (method url-fetch)
19782 (uri (cran-uri "acmeR" version))
19783 (sha256
19784 (base32
19785 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
19786 (properties `((upstream-name . "acmeR")))
19787 (build-system r-build-system)
19788 (propagated-inputs `(("r-foreign" ,r-foreign)))
19789 (home-page "https://cran.r-project.org/web/packages/acmeR/")
19790 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
19791 (description
19792 "This package provides an implementation of the ACME estimator, described
19793 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
19794 Mortality at Wind Turbines. Unlike most other models, this estimator supports
19795 decreasing-hazard Weibull model for persistence; decreasing search proficiency
19796 as carcasses age; variable bleed-through at successive searches; and interval
19797 mortality estimates. The package provides, based on search data, functions
19798 for estimating the mortality inflation factor in Frequentist and Bayesian
19799 settings.")
19800 (license license:expat)))
19801
19802 (define-public r-r-huge
19803 (package
19804 (name "r-r-huge")
19805 (version "0.9.0")
19806 (source
19807 (origin
19808 (method url-fetch)
19809 (uri (cran-uri "R.huge" version))
19810 (sha256
19811 (base32
19812 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
19813 (properties `((upstream-name . "R.huge")))
19814 (build-system r-build-system)
19815 (propagated-inputs
19816 `(("r-r-methodss3" ,r-r-methodss3)
19817 ("r-r-oo" ,r-r-oo)
19818 ("r-r-utils" ,r-r-utils)))
19819 (home-page "https://github.com/HenrikBengtsson/R.huge")
19820 (synopsis "Methods for accessing huge amounts of data")
19821 (description
19822 "This is a deprecated package for accessing huge amounts of data.
19823 Cross-platform alternatives are the following packages: bigmemory (CRAN),
19824 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
19825 the @code{aroma.affymetrix} package.")
19826 (license license:lgpl2.1+)))
19827
19828 (define-public r-r-filesets
19829 (package
19830 (name "r-r-filesets")
19831 (version "2.14.0")
19832 (source
19833 (origin
19834 (method url-fetch)
19835 (uri (cran-uri "R.filesets" version))
19836 (sha256
19837 (base32
19838 "08xv8b3c81nf54viyr3w912al18483k5gfnjpg7bxbdfk70dfzbh"))))
19839 (properties `((upstream-name . "R.filesets")))
19840 (build-system r-build-system)
19841 (propagated-inputs
19842 `(("r-digest" ,r-digest)
19843 ("r-r-cache" ,r-r-cache)
19844 ("r-r-methodss3" ,r-r-methodss3)
19845 ("r-r-oo" ,r-r-oo)
19846 ("r-r-utils" ,r-r-utils)))
19847 (home-page "https://github.com/HenrikBengtsson/R.filesets")
19848 (synopsis "Easy handling of and access to files")
19849 (description
19850 "This package provides classes and methods to locate, setup, subset,
19851 navigate and iterate file sets, i.e. sets of files located in one or more
19852 directories on the file system. The API is designed such that these classes
19853 can be extended via inheritance to provide a richer API for special file
19854 formats. Moreover, a specific name format is defined such that filenames and
19855 directories can be considered to have full names which consists of a name
19856 followed by comma-separated tags. This adds additional flexibility to
19857 identify file sets and individual files.")
19858 (license license:lgpl2.1+)))
19859
19860 (define-public r-r-devices
19861 (package
19862 (name "r-r-devices")
19863 (version "2.17.0")
19864 (source
19865 (origin
19866 (method url-fetch)
19867 (uri (cran-uri "R.devices" version))
19868 (sha256
19869 (base32
19870 "1djz6vm1b7sjvx1q319dl47gbnz9kvipaxcz9i0spyp094lv3m62"))))
19871 (properties `((upstream-name . "R.devices")))
19872 (build-system r-build-system)
19873 (propagated-inputs
19874 `(("r-base64enc" ,r-base64enc)
19875 ("r-r-methodss3" ,r-r-methodss3)
19876 ("r-r-oo" ,r-r-oo)
19877 ("r-r-utils" ,r-r-utils)))
19878 (home-page "https://github.com/HenrikBengtsson/R.devices")
19879 (synopsis "Unified handling of graphics devices")
19880 (description
19881 "This package provides functions for creating plots and image files in a
19882 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
19883 Default device options as well as scales and aspect ratios are controlled in a
19884 uniform way across all device types. Switching output format requires minimal
19885 changes in code. This package is ideal for large-scale batch processing,
19886 because it will never leave open graphics devices or incomplete image files
19887 behind, even on errors or user interrupts.")
19888 (license license:lgpl2.1+)))
19889
19890 (define-public r-acnr
19891 (package
19892 (name "r-acnr")
19893 (version "1.0.0")
19894 (source
19895 (origin
19896 (method url-fetch)
19897 (uri (cran-uri "acnr" version))
19898 (sha256
19899 (base32
19900 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
19901 (properties `((upstream-name . "acnr")))
19902 (build-system r-build-system)
19903 (home-page "https://github.com/mpierrejean/acnr")
19904 (synopsis "Annotated copy-number regions")
19905 (description
19906 "This package provides SNP array data from different types of copy-number
19907 regions. These regions were identified manually by the authors of the package
19908 and may be used to generate realistic data sets with known truth.")
19909 (license license:lgpl2.1+)))
19910
19911 (define-public r-acopula
19912 (package
19913 (name "r-acopula")
19914 (version "0.9.3")
19915 (source
19916 (origin
19917 (method url-fetch)
19918 (uri (cran-uri "acopula" version))
19919 (sha256
19920 (base32
19921 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
19922 (properties `((upstream-name . "acopula")))
19923 (build-system r-build-system)
19924 (home-page "https://cran.r-project.org/web/packages/acopula/")
19925 (synopsis "Modelling dependence with multivariate Archimax copulas")
19926 (description
19927 "Archimax copulas are a mixture of Archimedean and EV copulas. This
19928 package provides definitions of several parametric families of generator and
19929 dependence function, computes CDF and PDF, estimates parameters, tests for
19930 goodness of fit, generates random sample and checks copula properties for
19931 custom constructs. In the 2-dimensional case explicit formulas for density
19932 are used, contrary to higher dimensions when all derivatives are linearly
19933 approximated. Several non-archimax families (normal, FGM, Plackett) are
19934 provided as well.")
19935 (license license:gpl2)))
19936
19937 (define-public r-tuner
19938 (package
19939 (name "r-tuner")
19940 (version "1.3.3")
19941 (source
19942 (origin
19943 (method url-fetch)
19944 (uri (cran-uri "tuneR" version))
19945 (sha256
19946 (base32
19947 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
19948 (properties `((upstream-name . "tuneR")))
19949 (build-system r-build-system)
19950 (propagated-inputs `(("r-signal" ,r-signal)))
19951 (home-page "https://cran.r-project.org/web/packages/tuneR/")
19952 (synopsis "Analysis of music and speech")
19953 (description
19954 "This is a package for the analysis of music and speech. Analyze music
19955 and speech, extract features like MFCCs, handle wave files and their
19956 representation in various ways, read MP3, read MIDI, perform steps of a
19957 transcription, ...")
19958 ;; Either of these versions.
19959 (license (list license:gpl2 license:gpl3))))
19960
19961 (define-public r-seewave
19962 (package
19963 (name "r-seewave")
19964 (version "2.1.6")
19965 (source
19966 (origin
19967 (method url-fetch)
19968 (uri (cran-uri "seewave" version))
19969 (sha256
19970 (base32
19971 "123h3q0gps0vy9sikr7gjphnv9m3l4h4mykiydjllmrpaw1s1844"))))
19972 (properties `((upstream-name . "seewave")))
19973 (build-system r-build-system)
19974 (inputs
19975 `(("libsndfile" ,libsndfile)))
19976 (propagated-inputs
19977 `(("r-tuner" ,r-tuner)))
19978 (home-page "http://rug.mnhn.fr/seewave")
19979 (synopsis "Sound analysis and synthesis")
19980 (description
19981 "This package provides functions for analysing, manipulating, displaying,
19982 editing and synthesizing time waves (particularly sound). This package
19983 processes time analysis (oscillograms and envelopes), spectral content,
19984 resonance quality factor, entropy, cross correlation and autocorrelation,
19985 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
19986 and 3D spectrograms and many other analyses.")
19987 (license license:gpl2+)))
19988
19989 (define-public r-acousticndlcoder
19990 (package
19991 (name "r-acousticndlcoder")
19992 (version "1.0.2")
19993 (source
19994 (origin
19995 (method url-fetch)
19996 (uri (cran-uri "AcousticNDLCodeR" version))
19997 (sha256
19998 (base32
19999 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
20000 (properties
20001 `((upstream-name . "AcousticNDLCodeR")))
20002 (build-system r-build-system)
20003 (propagated-inputs
20004 `(("r-seewave" ,r-seewave)
20005 ("r-tuner" ,r-tuner)
20006 ("r-zoo" ,r-zoo)))
20007 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
20008 (synopsis "Coding sound files for use with NDL")
20009 (description
20010 "Make acoustic cues to use with the R package @code{ndl}.
20011 The package implements functions used in the PLoS ONE paper \"Words from
20012 spontaneous conversational speech can be recognized with human-like accuracy
20013 by an error-driven learning algorithm that discriminates between meanings
20014 straight from smart acoustic features, bypassing the phoneme as recognition
20015 unit.\" @url{doi:10.1371/journal.pone.0174623}")
20016 (license license:gpl2+)))
20017
20018 (define-public r-acp
20019 (package
20020 (name "r-acp")
20021 (version "2.1")
20022 (source
20023 (origin
20024 (method url-fetch)
20025 (uri (cran-uri "acp" version))
20026 (sha256
20027 (base32
20028 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
20029 (properties `((upstream-name . "acp")))
20030 (build-system r-build-system)
20031 (propagated-inputs
20032 `(("r-quantmod" ,r-quantmod)
20033 ("r-tseries" ,r-tseries)))
20034 (home-page "https://cran.r-project.org/web/packages/acp/")
20035 (synopsis "Autoregressive conditional Poisson")
20036 (description
20037 "This package supports the analysis of count data exhibiting
20038 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
20039 model (ACP(p,q)) proposed by Heinen (2003).")
20040 (license license:gpl2)))
20041
20042 (define-public r-ada
20043 (package
20044 (name "r-ada")
20045 (version "2.0-5")
20046 (source
20047 (origin
20048 (method url-fetch)
20049 (uri (cran-uri "ada" version))
20050 (sha256
20051 (base32
20052 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
20053 (properties `((upstream-name . "ada")))
20054 (build-system r-build-system)
20055 (propagated-inputs `(("r-rpart" ,r-rpart)))
20056 (home-page "https://cran.r-project.org/web/packages/ada/")
20057 (synopsis "Stochastic boosting")
20058 (description
20059 "This package provides a straightforward, well-documented, and broad
20060 boosting routine for classification, ideally suited for small to
20061 moderate-sized data sets. It performs discrete, real, and gentle boost under
20062 both exponential and logistic loss on a given data set.")
20063 ;; Any version of the GPL.
20064 (license (list license:gpl2+ license:gpl3+))))
20065
20066 (define-public r-genalg
20067 (package
20068 (name "r-genalg")
20069 (version "0.2.0")
20070 (source
20071 (origin
20072 (method url-fetch)
20073 (uri (cran-uri "genalg" version))
20074 (sha256
20075 (base32
20076 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
20077 (properties `((upstream-name . "genalg")))
20078 (build-system r-build-system)
20079 (home-page "https://github.com/egonw/genalg")
20080 (synopsis "R based genetic algorithm")
20081 (description
20082 "This package provides an R based genetic algorithm for binary and
20083 floating point chromosomes.")
20084 (license license:gpl2)))
20085
20086 (define-public r-kernelfactory
20087 (package
20088 (name "r-kernelfactory")
20089 (version "0.3.0")
20090 (source
20091 (origin
20092 (method url-fetch)
20093 (uri (cran-uri "kernelFactory" version))
20094 (sha256
20095 (base32
20096 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
20097 (properties `((upstream-name . "kernelFactory")))
20098 (build-system r-build-system)
20099 (propagated-inputs
20100 `(("r-auc" ,r-auc)
20101 ("r-genalg" ,r-genalg)
20102 ("r-kernlab" ,r-kernlab)
20103 ("r-randomforest" ,r-randomforest)))
20104 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
20105 (synopsis "Ensemble of kernel machines")
20106 (description
20107 "Kernel factory is an ensemble method where each base classifier (random
20108 forest) is fit on the kernel matrix of a subset of the training data.")
20109 (license license:gpl2+)))
20110
20111 (define-public r-dummies
20112 (package
20113 (name "r-dummies")
20114 (version "1.5.6")
20115 (source
20116 (origin
20117 (method url-fetch)
20118 (uri (cran-uri "dummies" version))
20119 (sha256
20120 (base32
20121 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
20122 (properties `((upstream-name . "dummies")))
20123 (build-system r-build-system)
20124 (home-page "https://decisionpatterns.com")
20125 (synopsis "Create dummy/indicator variables flexibly and efficiently")
20126 (description
20127 "This package lets you expand factors, characters and other eligible
20128 classes into dummy/indicator variables.")
20129 (license license:gpl2+)))
20130
20131 (define-public r-acrm
20132 (package
20133 (name "r-acrm")
20134 (version "0.1.1")
20135 (source
20136 (origin
20137 (method url-fetch)
20138 (uri (cran-uri "aCRM" version))
20139 (sha256
20140 (base32
20141 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
20142 (properties `((upstream-name . "aCRM")))
20143 (build-system r-build-system)
20144 (propagated-inputs
20145 `(("r-ada" ,r-ada)
20146 ("r-dummies" ,r-dummies)
20147 ("r-kernelfactory" ,r-kernelfactory)
20148 ("r-randomforest" ,r-randomforest)))
20149 (home-page "https://cran.r-project.org/web/packages/aCRM/")
20150 (synopsis "Convenience functions for analytical customer relationship management")
20151 (description
20152 "This package provides convenience functions for data preparation and
20153 modeling often used in @dfn{analytical customer relationship
20154 management} (aCRM).")
20155 (license license:gpl2+)))
20156
20157 (define-public r-treeclust
20158 (package
20159 (name "r-treeclust")
20160 (version "1.1-7")
20161 (source
20162 (origin
20163 (method url-fetch)
20164 (uri (cran-uri "treeClust" version))
20165 (sha256
20166 (base32
20167 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
20168 (properties `((upstream-name . "treeClust")))
20169 (build-system r-build-system)
20170 (propagated-inputs
20171 `(("r-cluster" ,r-cluster)
20172 ("r-rpart" ,r-rpart)))
20173 (home-page "https://cran.r-project.org/web/packages/treeClust/")
20174 (synopsis "Cluster distances through trees")
20175 (description
20176 "This package provides tools to create a measure of inter-point
20177 dissimilarity useful for clustering mixed data, and, optionally, perform the
20178 clustering.")
20179 (license license:gpl2+)))
20180
20181 (define-public r-acrosstic
20182 (package
20183 (name "r-acrosstic")
20184 (version "1.0-3")
20185 (source
20186 (origin
20187 (method url-fetch)
20188 (uri (cran-uri "AcrossTic" version))
20189 (sha256
20190 (base32
20191 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
20192 (properties `((upstream-name . "AcrossTic")))
20193 (build-system r-build-system)
20194 (propagated-inputs
20195 `(("r-lpsolve" ,r-lpsolve)
20196 ("r-treeclust" ,r-treeclust)))
20197 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
20198 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
20199 (description
20200 "This is a package for constructing minimum-cost regular spanning
20201 subgraph as part of a non-parametric two-sample test for equality of
20202 distribution.")
20203 (license license:gpl2+)))
20204
20205 (define-public r-acrt
20206 (package
20207 (name "r-acrt")
20208 (version "1.0.1")
20209 (source
20210 (origin
20211 (method url-fetch)
20212 (uri (cran-uri "acrt" version))
20213 (sha256
20214 (base32
20215 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
20216 (properties `((upstream-name . "acrt")))
20217 (build-system r-build-system)
20218 (propagated-inputs
20219 `(("r-rcpp" ,r-rcpp)
20220 ("r-rcppeigen" ,r-rcppeigen)
20221 ("r-sandwich" ,r-sandwich)))
20222 (home-page "https://cran.r-project.org/web/packages/acrt/")
20223 (synopsis "Autocorrelation robust testing")
20224 (description
20225 "This package provides functions for testing affine hypotheses on the
20226 regression coefficient vector in regression models with autocorrelated
20227 errors.")
20228 (license license:gpl2)))
20229
20230 (define-public r-acs
20231 (package
20232 (name "r-acs")
20233 (version "2.1.4")
20234 (source
20235 (origin
20236 (method url-fetch)
20237 (uri (cran-uri "acs" version))
20238 (sha256
20239 (base32
20240 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
20241 (properties `((upstream-name . "acs")))
20242 (build-system r-build-system)
20243 (propagated-inputs
20244 `(("r-httr" ,r-httr)
20245 ("r-plyr" ,r-plyr)
20246 ("r-rcpp" ,r-rcpp)
20247 ("r-stringr" ,r-stringr)
20248 ("r-xml" ,r-xml)))
20249 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
20250 (synopsis "Work with data from the US Census")
20251 (description
20252 "This package provides a general toolkit for downloading, managing,
20253 analyzing, and presenting data from the
20254 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
20255 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
20256 American Community Survey (ACS). Confidence intervals provided with ACS data
20257 are converted to standard errors to be bundled with estimates in complex
20258 @code{acs} objects. The package provides new methods to conduct standard
20259 operations on @code{acs} objects and present/plot data in statistically
20260 appropriate ways.")
20261 (license license:gpl3)))
20262
20263 (define-public r-acss-data
20264 (package
20265 (name "r-acss-data")
20266 (version "1.0")
20267 (source
20268 (origin
20269 (method url-fetch)
20270 (uri (cran-uri "acss.data" version))
20271 (sha256
20272 (base32
20273 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
20274 (properties `((upstream-name . "acss.data")))
20275 (build-system r-build-system)
20276 (home-page "http://complexitycalculator.com/methodology.html")
20277 (synopsis "Data for algorithmic complexity of short strings")
20278 (description
20279 "This is a data only package providing the algorithmic complexity of
20280 short strings, computed using the coding theorem method. For a given set of
20281 symbols in a string, all possible or a large number of random samples of
20282 Turing machines with a given number of states (e.g., 5) and number of symbols
20283 corresponding to the number of symbols in the strings were simulated until
20284 they reached a halting state or failed to end. This package contains data on
20285 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
20286 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
20287 distribution of the halting states.")
20288 (license license:gpl2+)))
20289
20290 (define-public r-acss
20291 (package
20292 (name "r-acss")
20293 (version "0.2-5")
20294 (source
20295 (origin
20296 (method url-fetch)
20297 (uri (cran-uri "acss" version))
20298 (sha256
20299 (base32
20300 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
20301 (properties `((upstream-name . "acss")))
20302 (build-system r-build-system)
20303 (propagated-inputs
20304 `(("r-acss-data" ,r-acss-data)
20305 ("r-zoo" ,r-zoo)))
20306 (home-page "http://complexitycalculator.com/methodology.html")
20307 (synopsis "Algorithmic complexity for short strings")
20308 (description
20309 "The main purpose of this package is to provide the algorithmic
20310 complexity for short strings, an approximation of the Kolmogorov Complexity of
20311 a short string using the coding theorem method. While the database containing
20312 the complexity is provided in the data only package @code{acss.data}, this
20313 package provides functions accessing the data such as @code{prob_random}
20314 returning the posterior probability that a given string was produced by a
20315 random process. In addition, two traditional (but problematic) measures of
20316 complexity are also provided: entropy and change complexity.")
20317 (license license:gpl2+)))
20318
20319 (define-public r-acswr
20320 (package
20321 (name "r-acswr")
20322 (version "1.0")
20323 (source
20324 (origin
20325 (method url-fetch)
20326 (uri (cran-uri "ACSWR" version))
20327 (sha256
20328 (base32
20329 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
20330 (properties `((upstream-name . "ACSWR")))
20331 (build-system r-build-system)
20332 (propagated-inputs
20333 `(("r-mass" ,r-mass)))
20334 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
20335 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
20336 (description
20337 "This is a companion package for the book \"A Course in Statistics with
20338 R\" (ISBN 978-1-119-15272-9.)")
20339 (license license:gpl2)))
20340
20341 (define-public r-alabama
20342 (package
20343 (name "r-alabama")
20344 (version "2015.3-1")
20345 (source
20346 (origin
20347 (method url-fetch)
20348 (uri (cran-uri "alabama" version))
20349 (sha256
20350 (base32
20351 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
20352 (properties `((upstream-name . "alabama")))
20353 (build-system r-build-system)
20354 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
20355 (home-page "https://cran.r-project.org/web/packages/alabama/")
20356 (synopsis "Constrained nonlinear optimization")
20357 (description
20358 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
20359 Algorithm; it is used for optimizing smooth nonlinear objective functions with
20360 constraints. Linear or nonlinear equality and inequality constraints are
20361 allowed.")
20362 (license license:gpl2+)))
20363
20364 (define-public r-gdina
20365 (package
20366 (name "r-gdina")
20367 (version "2.8.0")
20368 (source
20369 (origin
20370 (method url-fetch)
20371 (uri (cran-uri "GDINA" version))
20372 (sha256
20373 (base32
20374 "0chxnhp37xfd78gafkgwqrmc0jf3pvpdyrkc438kl0l53fb7dld7"))))
20375 (properties `((upstream-name . "GDINA")))
20376 (build-system r-build-system)
20377 (propagated-inputs
20378 `(("r-alabama" ,r-alabama)
20379 ("r-ggplot2" ,r-ggplot2)
20380 ("r-mass" ,r-mass)
20381 ("r-nloptr" ,r-nloptr)
20382 ("r-numderiv" ,r-numderiv)
20383 ("r-rcpp" ,r-rcpp)
20384 ("r-rcpparmadillo" ,r-rcpparmadillo)
20385 ("r-rsolnp" ,r-rsolnp)
20386 ("r-shiny" ,r-shiny)
20387 ("r-shinydashboard" ,r-shinydashboard)))
20388 (native-inputs
20389 `(("r-knitr" ,r-knitr)))
20390 (home-page "https://github.com/Wenchao-Ma/GDINA")
20391 (synopsis "Generalized DINA model framework")
20392 (description
20393 "This package provides a set of psychometric tools for cognitive
20394 diagnosis modeling based on the generalized deterministic inputs, noisy and
20395 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
20396 and its extensions, including the sequential G-DINA model by Ma and de la
20397 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
20398 polytomous G-DINA model by Chen and de la Torre
20399 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
20400 distribution can be independent, saturated, higher-order, loglinear smoothed
20401 or structured. Q-matrix validation, item and model fit statistics, model
20402 comparison at test and item level and differential item functioning can also
20403 be conducted. A graphical user interface is also provided.")
20404 (license license:gpl3)))
20405
20406 (define-public r-actcd
20407 (package
20408 (name "r-actcd")
20409 (version "1.2-0")
20410 (source
20411 (origin
20412 (method url-fetch)
20413 (uri (cran-uri "ACTCD" version))
20414 (sha256
20415 (base32
20416 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
20417 (properties `((upstream-name . "ACTCD")))
20418 (build-system r-build-system)
20419 (propagated-inputs
20420 `(("r-gdina" ,r-gdina)
20421 ("r-r-methodss3" ,r-r-methodss3)))
20422 (native-inputs
20423 `(("gfortran" ,gfortran)))
20424 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
20425 (synopsis "Asymptotic classification theory for cognitive diagnosis")
20426 (description
20427 "This is a package supporting cluster analysis for cognitive diagnosis
20428 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
20429 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
20430 sum-scores, cluster analysis techniques can be used to classify examinees into
20431 latent classes based on their attribute patterns. In addition to the
20432 algorithms used to classify data, three labeling approaches are proposed to
20433 label clusters so that examinees' attribute profiles can be obtained.")
20434 (license license:gpl2+)))
20435
20436 (define-public r-ineq
20437 (package
20438 (name "r-ineq")
20439 (version "0.2-13")
20440 (source
20441 (origin
20442 (method url-fetch)
20443 (uri (cran-uri "ineq" version))
20444 (sha256
20445 (base32
20446 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
20447 (properties `((upstream-name . "ineq")))
20448 (build-system r-build-system)
20449 (home-page "https://cran.r-project.org/web/packages/ineq/")
20450 (synopsis "Measuring inequality, concentration, and poverty")
20451 (description
20452 "This package provides tools for measuring inequality, concentration, and
20453 poverty measures. It provides both empirical and theoretical Lorenz curves.")
20454 ;; Either of these two versions.
20455 (license (list license:gpl2 license:gpl3))))
20456
20457 (define-public r-actfrag
20458 (package
20459 (name "r-actfrag")
20460 (version "0.1.1")
20461 (source
20462 (origin
20463 (method url-fetch)
20464 (uri (cran-uri "ActFrag" version))
20465 (sha256
20466 (base32
20467 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
20468 (properties `((upstream-name . "ActFrag")))
20469 (build-system r-build-system)
20470 (propagated-inputs
20471 `(("r-accelerometry" ,r-accelerometry)
20472 ("r-dplyr" ,r-dplyr)
20473 ("r-ineq" ,r-ineq)
20474 ("r-survival" ,r-survival)
20475 ("r-tidyr" ,r-tidyr)))
20476 (home-page "https://github.com/junruidi/ActFrag")
20477 (synopsis "Activity fragmentation metrics extraction")
20478 (description
20479 "This package provides functions to extract commonly used fragmentation
20480 metrics to quantify time accumulation strategies based on minute level
20481 actigraphy-measured activity counts data.")
20482 (license license:gpl3)))
20483
20484 (define-public r-ash
20485 (package
20486 (name "r-ash")
20487 (version "1.0-15")
20488 (source
20489 (origin
20490 (method url-fetch)
20491 (uri (cran-uri "ash" version))
20492 (sha256
20493 (base32
20494 "1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb"))))
20495 (properties `((upstream-name . "ash")))
20496 (build-system r-build-system)
20497 (native-inputs `(("gfortran" ,gfortran)))
20498 (home-page "https://cran.r-project.org/web/packages/ash/")
20499 (synopsis "David Scott's ASH routines")
20500 (description
20501 "This package provides David Scott's ASH routines ported from S-PLUS to
20502 R.")
20503 (license license:gpl2+)))
20504
20505 (define-public r-hdrcde
20506 (package
20507 (name "r-hdrcde")
20508 (version "3.4")
20509 (source
20510 (origin
20511 (method url-fetch)
20512 (uri (cran-uri "hdrcde" version))
20513 (sha256
20514 (base32
20515 "16qlk44cjvn2s0vzaf915df65ksdx20dbxhy7fpdqins46hccha3"))))
20516 (properties `((upstream-name . "hdrcde")))
20517 (build-system r-build-system)
20518 (propagated-inputs
20519 `(("r-ash" ,r-ash)
20520 ("r-ggplot2" ,r-ggplot2)
20521 ("r-kernsmooth" ,r-kernsmooth)
20522 ("r-ks" ,r-ks)
20523 ("r-locfit" ,r-locfit)
20524 ("r-rcolorbrewer" ,r-rcolorbrewer)))
20525 (native-inputs `(("gfortran" ,gfortran)))
20526 (home-page "http://pkg.robjhyndman.com/hdrcde")
20527 (synopsis "Highest density regions and conditional density estimation")
20528 (description
20529 "This is a package for the computation of highest density regions in one
20530 and two dimensions, kernel estimation of univariate density functions
20531 conditional on one covariate, and multimodal regression.")
20532 (license license:gpl3)))
20533
20534 (define-public r-rainbow
20535 (package
20536 (name "r-rainbow")
20537 (version "3.6")
20538 (source
20539 (origin
20540 (method url-fetch)
20541 (uri (cran-uri "rainbow" version))
20542 (sha256
20543 (base32
20544 "11vfcck17d2xjc049ci5i8l1nqv345anmd110gdz7654i1pj9lb3"))))
20545 (properties `((upstream-name . "rainbow")))
20546 (build-system r-build-system)
20547 (propagated-inputs
20548 `(("r-cluster" ,r-cluster)
20549 ("r-colorspace" ,r-colorspace)
20550 ("r-hdrcde" ,r-hdrcde)
20551 ("r-ks" ,r-ks)
20552 ("r-mass" ,r-mass)
20553 ("r-pcapp" ,r-pcapp)))
20554 (home-page "https://cran.r-project.org/web/packages/rainbow/")
20555 (synopsis "Bagplots, boxplots and rainbow plots for functional data")
20556 (description
20557 "This is a package for visualizing functional data and identifying
20558 functional outliers with bagplots, boxplots and rainbow plots.")
20559 (license license:gpl3)))
20560
20561 (define-public r-fds
20562 (package
20563 (name "r-fds")
20564 (version "1.8")
20565 (source
20566 (origin
20567 (method url-fetch)
20568 (uri (cran-uri "fds" version))
20569 (sha256
20570 (base32
20571 "1284vncixrzrz9x6b52gslrbrbia07sd0xac7nwdqhp5f5v5wfi0"))))
20572 (properties `((upstream-name . "fds")))
20573 (build-system r-build-system)
20574 (propagated-inputs
20575 `(("r-rainbow" ,r-rainbow)
20576 ("r-rcurl" ,r-rcurl)))
20577 (home-page "https://cran.r-project.org/web/packages/fds/")
20578 (synopsis "Functional data sets")
20579 (description "This package contains a list of functional time series,
20580 sliced functional time series, and functional data sets. Functional time
20581 series is a special type of functional data observed over time. Sliced
20582 functional time series is a special type of functional time series with a time
20583 variable observed over time.")
20584 (license license:gpl2+)))
20585
20586 (define-public r-fda
20587 (package
20588 (name "r-fda")
20589 (version "5.1.9")
20590 (source
20591 (origin
20592 (method url-fetch)
20593 (uri (cran-uri "fda" version))
20594 (sha256
20595 (base32
20596 "0yjrjsv55bcwqn2yxjgj3hn17wfvjvgngfw9xv3w802i52yz9gf8"))))
20597 (properties `((upstream-name . "fda")))
20598 (build-system r-build-system)
20599 (propagated-inputs
20600 `(("r-fds" ,r-fds)
20601 ("r-matrix" ,r-matrix)))
20602 (home-page "https://www.functionaldata.org")
20603 (synopsis "Functional data analysis")
20604 (description
20605 "These functions were developed to support functional data analysis as
20606 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
20607 Analysis. The package includes data sets and script files working many
20608 examples.")
20609 (license license:gpl2+)))
20610
20611 (define-public r-actigraphy
20612 (package
20613 (name "r-actigraphy")
20614 (version "1.4.0")
20615 (source
20616 (origin
20617 (method url-fetch)
20618 (uri (cran-uri "Actigraphy" version))
20619 (sha256
20620 (base32
20621 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
20622 (properties `((upstream-name . "Actigraphy")))
20623 (build-system r-build-system)
20624 (propagated-inputs
20625 `(("r-fda" ,r-fda)))
20626 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
20627 (synopsis "Actigraphy data analysis")
20628 (description
20629 "This package provides tools for functional linear modeling and analysis
20630 of actigraphy data.")
20631 (license license:asl2.0)))
20632
20633 (define-public r-activedriver
20634 (package
20635 (name "r-activedriver")
20636 (version "1.0.0")
20637 (source
20638 (origin
20639 (method url-fetch)
20640 (uri (cran-uri "ActiveDriver" version))
20641 (sha256
20642 (base32
20643 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
20644 (properties `((upstream-name . "ActiveDriver")))
20645 (build-system r-build-system)
20646 (propagated-inputs
20647 `(("r-mass" ,r-mass)))
20648 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
20649 (synopsis "Tools for finding cancer driver proteins")
20650 (description
20651 "This package provides a mutation analysis tool that discovers cancer
20652 driver genes with frequent mutations in protein signalling sites such as
20653 post-translational modifications (phosphorylation, ubiquitination, etc). The
20654 Poisson generalized linear regression model identifies genes where cancer
20655 mutations in signalling sites are more frequent than expected from the
20656 sequence of the entire gene. Integration of mutations with signalling
20657 information helps find new driver genes and propose candidate mechanisms to
20658 known drivers.")
20659 (license license:gpl2+)))
20660
20661 (define-public r-activitycounts
20662 (package
20663 (name "r-activitycounts")
20664 (version "0.1.2")
20665 (source
20666 (origin
20667 (method url-fetch)
20668 (uri (cran-uri "activityCounts" version))
20669 (sha256
20670 (base32
20671 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
20672 (properties
20673 `((upstream-name . "activityCounts")))
20674 (build-system r-build-system)
20675 (propagated-inputs
20676 `(("r-lubridate" ,r-lubridate)
20677 ("r-magrittr" ,r-magrittr)
20678 ("r-seewave" ,r-seewave)
20679 ("r-signal" ,r-signal)
20680 ("r-tibble" ,r-tibble)))
20681 (home-page "https://github.com/walkabillylab/activityCounts")
20682 (synopsis "Generate ActiLife counts")
20683 (description
20684 "ActiLife generates activity counts from data collected by Actigraph
20685 accelerometers. Actigraph is one of the most common research-grade
20686 accelerometers. There is considerable research validating and developing
20687 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
20688 counts are proprietary and difficult to implement if researchers use different
20689 accelerometer brands. The code creates ActiLife counts from raw acceleration
20690 data for different accelerometer brands.")
20691 (license license:gpl3)))
20692
20693 (define-public r-activityindex
20694 (package
20695 (name "r-activityindex")
20696 (version "0.3.7")
20697 (source
20698 (origin
20699 (method url-fetch)
20700 (uri (cran-uri "ActivityIndex" version))
20701 (sha256
20702 (base32
20703 "1zj2b6x31a1kxl80rarmkrlm7ack4154mrkbqs3fpi48zpmjbgd5"))))
20704 (properties `((upstream-name . "ActivityIndex")))
20705 (build-system r-build-system)
20706 (propagated-inputs
20707 `(("r-data-table" ,r-data-table)
20708 ("r-matrixstats" ,r-matrixstats)
20709 ("r-r-utils" ,r-r-utils)))
20710 (native-inputs
20711 `(("r-knitr" ,r-knitr)))
20712 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
20713 (synopsis "Activity Index calculation using raw accelerometry data")
20714 (description
20715 "This is a package to read raw accelerometry from GT3X+ accelerometry
20716 data and plain table data to calculate the Activity Index from Bai et
20717 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
20718 (license license:gpl3)))
20719
20720 (define-public r-activpal
20721 (package
20722 (name "r-activpal")
20723 (version "0.1.3")
20724 (source
20725 (origin
20726 (method url-fetch)
20727 (uri (cran-uri "activPAL" version))
20728 (sha256
20729 (base32
20730 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
20731 (properties `((upstream-name . "activPAL")))
20732 (build-system r-build-system)
20733 (propagated-inputs
20734 `(("r-devtools" ,r-devtools)
20735 ("r-dplyr" ,r-dplyr)
20736 ("r-ggplot2" ,r-ggplot2)
20737 ("r-lubridate" ,r-lubridate)
20738 ("r-magrittr" ,r-magrittr)
20739 ("r-tidyr" ,r-tidyr)))
20740 (home-page "https://cran.r-project.org/web/packages/activPAL")
20741 (synopsis "Processing and chart generation from activPAL events files")
20742 (description
20743 "This package contains functions to generate pre-defined summary
20744 statistics from activPAL events files. The package also contains functions to
20745 produce informative graphics that visualize physical activity behaviour and
20746 trends. This includes generating graphs that align physical activity
20747 behaviour with additional time based observations described by other data
20748 sets, such as sleep diaries and continuous glucose monitoring data.")
20749 (license license:gpl3)))
20750
20751 (define-public r-activpalprocessing
20752 (package
20753 (name "r-activpalprocessing")
20754 (version "1.0.2")
20755 (source
20756 (origin
20757 (method url-fetch)
20758 (uri (cran-uri "activpalProcessing" version))
20759 (sha256
20760 (base32
20761 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
20762 (properties
20763 `((upstream-name . "activpalProcessing")))
20764 (build-system r-build-system)
20765 (propagated-inputs
20766 `(("r-chron" ,r-chron)))
20767 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
20768 (synopsis "Process activPAL events files")
20769 (description
20770 "This package performs estimation of physical activity and sedentary
20771 behavior variables from activPAL events files.")
20772 ;; Either version of the GPL.
20773 (license (list license:gpl2 license:gpl3))))
20774
20775 (define-public r-actogrammr
20776 (package
20777 (name "r-actogrammr")
20778 (version "0.2.3")
20779 (source
20780 (origin
20781 (method url-fetch)
20782 (uri (cran-uri "actogrammr" version))
20783 (sha256
20784 (base32
20785 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
20786 (properties `((upstream-name . "actogrammr")))
20787 (build-system r-build-system)
20788 (propagated-inputs
20789 `(("r-dplyr" ,r-dplyr)
20790 ("r-ggplot2" ,r-ggplot2)
20791 ("r-lubridate" ,r-lubridate)
20792 ("r-readr" ,r-readr)
20793 ("r-tidyr" ,r-tidyr)))
20794 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
20795 (synopsis "Read in activity data and plot actograms")
20796 (description
20797 "Read in activity measurements from standard file formats used by
20798 circadian rhythm researchers, currently only ClockLab format, and process and
20799 plot the data. The central type of plot is the actogram, as first described
20800 in \"Activity and distribution of certain wild mice in relation to biotic
20801 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
20802 (license license:gpl3)))
20803
20804 (define-public r-expint
20805 (package
20806 (name "r-expint")
20807 (version "0.1-6")
20808 (source
20809 (origin
20810 (method url-fetch)
20811 (uri (cran-uri "expint" version))
20812 (sha256
20813 (base32
20814 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
20815 (properties `((upstream-name . "expint")))
20816 (build-system r-build-system)
20817 (home-page "https://gitlab.com/vigou3/expint")
20818 (synopsis "Exponential integral and incomplete Gamma function")
20819 (description
20820 "This package provides the exponential integrals @code{E_1(x)},
20821 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
20822 function @code{G(a, x)} defined for negative values of its first argument.
20823 The package also gives easy access to the underlying C routines through an
20824 API; see the package vignette for details.")
20825 (license license:gpl2+)))
20826
20827 (define-public r-actuar
20828 (package
20829 (name "r-actuar")
20830 (version "3.1-1")
20831 (source
20832 (origin
20833 (method url-fetch)
20834 (uri (cran-uri "actuar" version))
20835 (sha256
20836 (base32
20837 "0sxn1mskh7x164f1vbrqnadgxnq7y2p3a9mlmqc0sp6cqkw9lhp9"))))
20838 (properties `((upstream-name . "actuar")))
20839 (build-system r-build-system)
20840 (propagated-inputs `(("r-expint" ,r-expint)))
20841 (home-page "https://gitlab.com/vigou3/actuar")
20842 (synopsis "Actuarial functions and heavy tailed distributions")
20843 (description
20844 "This package provides functions and data sets for actuarial science:
20845 modeling of loss distributions; risk theory and ruin theory; simulation of
20846 compound models, discrete mixtures and compound hierarchical models;
20847 credibility theory. It boasts support for many additional probability
20848 distributions to model insurance loss amounts and loss frequency: 19
20849 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
20850 distribution; zero-truncated and zero-modified extensions of the standard
20851 discrete distributions. It also supports phase-type distributions commonly
20852 used to compute ruin probabilities.")
20853 (license license:gpl2+)))
20854
20855 (define-public r-bmp
20856 (package
20857 (name "r-bmp")
20858 (version "0.3")
20859 (source
20860 (origin
20861 (method url-fetch)
20862 (uri (cran-uri "bmp" version))
20863 (sha256
20864 (base32
20865 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
20866 (properties `((upstream-name . "bmp")))
20867 (build-system r-build-system)
20868 (home-page "https://cran.r-project.org/web/packages/bmp/")
20869 (synopsis "Read Bitmap (BMP) images")
20870 (description
20871 "This package provides pure R tools to read BMP format images. It is
20872 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
20873 (license license:gpl2+)))
20874
20875 (define-public r-readbitmap
20876 (package
20877 (name "r-readbitmap")
20878 (version "0.1.5")
20879 (source
20880 (origin
20881 (method url-fetch)
20882 (uri (cran-uri "readbitmap" version))
20883 (sha256
20884 (base32
20885 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
20886 (properties `((upstream-name . "readbitmap")))
20887 (build-system r-build-system)
20888 (inputs
20889 `(("libjpeg" ,libjpeg-turbo)
20890 ("libpng" ,libpng)))
20891 (propagated-inputs
20892 `(("r-bmp" ,r-bmp)
20893 ("r-jpeg" ,r-jpeg)
20894 ("r-png" ,r-png)
20895 ("r-tiff" ,r-tiff)))
20896 (home-page "https://github.com/jefferis/readbitmap")
20897 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
20898 (description
20899 "This package provides tools to identify and read BMP, JPEG, PNG, and
20900 TIFF format bitmap images. Identification defaults to the use of the magic
20901 number embedded in the file rather than the file extension.")
20902 (license license:gpl2+)))
20903
20904 (define-public r-imager
20905 (package
20906 (name "r-imager")
20907 (version "0.42.7")
20908 (source
20909 (origin
20910 (method url-fetch)
20911 (uri (cran-uri "imager" version))
20912 (sha256
20913 (base32
20914 "1dq0rblnrmnk689bcdmml179gk9lff8x92s2npkjllgjq5q2vfpd"))))
20915 (properties `((upstream-name . "imager")))
20916 (build-system r-build-system)
20917 (inputs
20918 `(("fftw" ,fftw)
20919 ("libtiff" ,libtiff)
20920 ("libx11" ,libx11)
20921 ("zlib" ,zlib)))
20922 (propagated-inputs
20923 `(("r-downloader" ,r-downloader)
20924 ("r-igraph" ,r-igraph)
20925 ("r-jpeg" ,r-jpeg)
20926 ("r-magrittr" ,r-magrittr)
20927 ("r-png" ,r-png)
20928 ("r-purrr" ,r-purrr)
20929 ("r-rcpp" ,r-rcpp)
20930 ("r-readbitmap" ,r-readbitmap)
20931 ("r-stringr" ,r-stringr)))
20932 (native-inputs
20933 `(("pkg-config" ,pkg-config)
20934 ("r-knitr" ,r-knitr)))
20935 (home-page "https://dahtah.github.io/imager/")
20936 (synopsis "Image processing library")
20937 (description
20938 "This is a package for fast image processing for images in up to 4
20939 dimensions (two spatial dimensions, one time/depth dimension, one color
20940 dimension). It provides most traditional image processing tools (filtering,
20941 morphology, transformations, etc.) as well as various functions for easily
20942 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
20943 simple, modern C++ library for image processing.")
20944 (license license:lgpl3)))
20945
20946 (define-public r-acuityview
20947 (package
20948 (name "r-acuityview")
20949 (version "0.1")
20950 (source
20951 (origin
20952 (method url-fetch)
20953 (uri (cran-uri "AcuityView" version))
20954 (sha256
20955 (base32
20956 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
20957 (properties `((upstream-name . "AcuityView")))
20958 (build-system r-build-system)
20959 (propagated-inputs
20960 `(("r-fftwtools" ,r-fftwtools)
20961 ("r-imager" ,r-imager)
20962 ("r-plotrix" ,r-plotrix)))
20963 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
20964 (synopsis "Display scenes as seen by an animal with less acute vision")
20965 (description
20966 "This package provides a simple method for representing a visual scene as
20967 it may be seen by an animal with less acute vision.")
20968 (license license:gpl2+)))
20969
20970 (define-public r-caret
20971 (package
20972 (name "r-caret")
20973 (version "6.0-86")
20974 (source
20975 (origin
20976 (method url-fetch)
20977 (uri (cran-uri "caret" version))
20978 (sha256
20979 (base32
20980 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
20981 (build-system r-build-system)
20982 (propagated-inputs
20983 `(("r-foreach" ,r-foreach)
20984 ("r-ggplot2" ,r-ggplot2)
20985 ("r-lattice" ,r-lattice)
20986 ("r-modelmetrics" ,r-modelmetrics)
20987 ("r-nlme" ,r-nlme)
20988 ("r-plyr" ,r-plyr)
20989 ("r-proc" ,r-proc)
20990 ("r-recipes" ,r-recipes)
20991 ("r-reshape2" ,r-reshape2)
20992 ("r-withr" ,r-withr)))
20993 (native-inputs
20994 `(("r-knitr" ,r-knitr)))
20995 (home-page "https://github.com/topepo/caret")
20996 (synopsis "Classification and regression training")
20997 (description
20998 "This package provides miscellaneous functions for training and plotting
20999 classification and regression models.")
21000 (license license:gpl2+)))
21001
21002 (define-public r-adabag
21003 (package
21004 (name "r-adabag")
21005 (version "4.2")
21006 (source
21007 (origin
21008 (method url-fetch)
21009 (uri (cran-uri "adabag" version))
21010 (sha256
21011 (base32
21012 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
21013 (properties `((upstream-name . "adabag")))
21014 (build-system r-build-system)
21015 (propagated-inputs
21016 `(("r-caret" ,r-caret)
21017 ("r-doparallel" ,r-doparallel)
21018 ("r-foreach" ,r-foreach)
21019 ("r-rpart" ,r-rpart)))
21020 (home-page "https://cran.r-project.org/web/packages/adabag/")
21021 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
21022 (description
21023 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
21024 Breiman's Bagging algorithm using classification trees as individual
21025 classifiers. Once these classifiers have been trained, they can be used to
21026 predict on new data. Also, cross validation estimation of the error can be
21027 done.")
21028 (license license:gpl2+)))
21029
21030 (define-public r-adagio
21031 (package
21032 (name "r-adagio")
21033 (version "0.7.1")
21034 (source
21035 (origin
21036 (method url-fetch)
21037 (uri (cran-uri "adagio" version))
21038 (sha256
21039 (base32
21040 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
21041 (properties `((upstream-name . "adagio")))
21042 (build-system r-build-system)
21043 (native-inputs `(("gfortran" ,gfortran)))
21044 (home-page "https://cran.r-project.org/web/packages/adagio/")
21045 (synopsis "Discrete and global optimization routines")
21046 (description
21047 "This package provides methods and algorithms for discrete optimization,
21048 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
21049 Hooke-Jeeves minimization, and some (evolutionary) global optimization
21050 functions.")
21051 (license license:gpl3+)))
21052
21053 (define-public r-univoutl
21054 (package
21055 (name "r-univoutl")
21056 (version "0.2")
21057 (source
21058 (origin
21059 (method url-fetch)
21060 (uri (cran-uri "univOutl" version))
21061 (sha256
21062 (base32
21063 "0rlc3w7cx2hfxacpjs9kmjzv5p8v9wxnlpxi3rh276wiy5zdr91v"))))
21064 (properties `((upstream-name . "univOutl")))
21065 (build-system r-build-system)
21066 (propagated-inputs
21067 `(("r-hmisc" ,r-hmisc)
21068 ("r-robustbase" ,r-robustbase)))
21069 (home-page "https://github.com/marcellodo/univOutl")
21070 (synopsis "Detection of univariate outliers")
21071 (description
21072 "This package provides well-known outlier detection techniques in the
21073 univariate case. Methods to deal with skewed distribution are included too.
21074 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
21075 historical data is implemented as well. When available, survey weights can be
21076 used in outliers detection.")
21077 (license license:gpl2+)))
21078
21079 (define-public r-tolerance
21080 (package
21081 (name "r-tolerance")
21082 (version "2.0.0")
21083 (source
21084 (origin
21085 (method url-fetch)
21086 (uri (cran-uri "tolerance" version))
21087 (sha256
21088 (base32
21089 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
21090 (properties `((upstream-name . "tolerance")))
21091 (build-system r-build-system)
21092 (propagated-inputs
21093 `(("r-mass" ,r-mass)
21094 ("r-rgl" ,r-rgl)))
21095 (home-page "https://cran.r-project.org/web/packages/tolerance/")
21096 (synopsis "Statistical tolerance intervals and regions")
21097 (description
21098 "This package provides functions for estimating tolerance
21099 limits (intervals) for various univariate distributions (binomial, Cauchy,
21100 discrete Pareto, exponential, two-parameter exponential, extreme value,
21101 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
21102 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
21103 Bayesian normal tolerance limits, multivariate normal tolerance regions,
21104 nonparametric tolerance intervals, tolerance bands for regression
21105 settings (linear regression, nonlinear regression, nonparametric regression,
21106 and multivariate regression), and analysis of variance tolerance intervals.
21107 Visualizations are also available for most of these settings.")
21108 (license license:gpl2+)))
21109
21110 (define-public r-additivitytests
21111 (package
21112 (name "r-additivitytests")
21113 (version "1.1-4")
21114 (source
21115 (origin
21116 (method url-fetch)
21117 (uri (cran-uri "additivityTests" version))
21118 (sha256
21119 (base32
21120 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
21121 (properties
21122 `((upstream-name . "additivityTests")))
21123 (build-system r-build-system)
21124 (home-page "https://github.com/simecek/additivityTests")
21125 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
21126 (description
21127 "This package provides an implementation of the Tukey, Mandel,
21128 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
21129 (license license:gpl3)))
21130
21131 (define-public r-flexclust
21132 (package
21133 (name "r-flexclust")
21134 (version "1.4-0")
21135 (source
21136 (origin
21137 (method url-fetch)
21138 (uri (cran-uri "flexclust" version))
21139 (sha256
21140 (base32
21141 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
21142 (properties `((upstream-name . "flexclust")))
21143 (build-system r-build-system)
21144 (propagated-inputs
21145 `(("r-class" ,r-class)
21146 ("r-lattice" ,r-lattice)
21147 ("r-modeltools" ,r-modeltools)))
21148 (home-page "https://cran.r-project.org/web/packages/flexclust/")
21149 (synopsis "Flexible cluster algorithms")
21150 (description
21151 "The main function @code{kcca} implements a general framework for
21152 k-centroids cluster analysis supporting arbitrary distance measures and
21153 centroid computation. Further cluster methods include hard competitive
21154 learning, neural gas, and QT clustering. There are numerous visualization
21155 methods for cluster results (neighborhood graphs, convex cluster hulls,
21156 barcharts of centroids, ...), and bootstrap methods for the analysis of
21157 cluster stability.")
21158 (license license:gpl2)))
21159
21160 (define-public r-biclust
21161 (package
21162 (name "r-biclust")
21163 (version "2.0.2")
21164 (source
21165 (origin
21166 (method url-fetch)
21167 (uri (cran-uri "biclust" version))
21168 (sha256
21169 (base32
21170 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
21171 (properties `((upstream-name . "biclust")))
21172 (build-system r-build-system)
21173 (propagated-inputs
21174 `(("r-additivitytests" ,r-additivitytests)
21175 ("r-colorspace" ,r-colorspace)
21176 ("r-flexclust" ,r-flexclust)
21177 ("r-ggplot2" ,r-ggplot2)
21178 ("r-lattice" ,r-lattice)
21179 ("r-mass" ,r-mass)
21180 ("r-tidyr" ,r-tidyr)))
21181 (home-page "https://cran.r-project.org/web/packages/biclust/")
21182 (synopsis "BiCluster algorithms")
21183 (description
21184 "The main function @code{biclust()} provides several algorithms to find
21185 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
21186 In addition, the package provides methods for data
21187 preprocessing (normalization and discretization), visualization, and
21188 validation of bicluster solutions.")
21189 (license license:gpl3)))
21190
21191 (define-public r-icge
21192 (package
21193 (name "r-icge")
21194 (version "0.3")
21195 (source
21196 (origin
21197 (method url-fetch)
21198 (uri (cran-uri "ICGE" version))
21199 (sha256
21200 (base32
21201 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
21202 (properties `((upstream-name . "ICGE")))
21203 (build-system r-build-system)
21204 (propagated-inputs
21205 `(("r-cluster" ,r-cluster)
21206 ("r-mass" ,r-mass)))
21207 (home-page "https://cran.r-project.org/web/packages/ICGE/")
21208 (synopsis "Cluster estimation and identification of atypical units")
21209 (description
21210 "ICGE is a package that helps to estimate the number of real clusters in
21211 data as well as to identify atypical units. The underlying methods are based
21212 on distances rather than on unit x variables.")
21213 (license license:gpl2+)))
21214
21215 (define-public r-depth
21216 (package
21217 (name "r-depth")
21218 (version "2.1-1.1")
21219 (source
21220 (origin
21221 (method url-fetch)
21222 (uri (cran-uri "depth" version))
21223 (sha256
21224 (base32
21225 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
21226 (properties `((upstream-name . "depth")))
21227 (build-system r-build-system)
21228 (propagated-inputs
21229 `(("r-abind" ,r-abind)
21230 ("r-circular" ,r-circular)
21231 ("r-rgl" ,r-rgl)))
21232 (native-inputs
21233 `(("gfortran" ,gfortran)))
21234 (home-page "https://cran.r-project.org/web/packages/depth/")
21235 (synopsis "Nonparametric depth functions for multivariate analysis")
21236 (description
21237 "This package provides tools for depth functions methodology applied to
21238 multivariate analysis. Besides allowing calculation of depth values and
21239 depth-based location estimators, the package includes functions or drawing
21240 contour plots and perspective plots of depth functions. Euclidean and
21241 spherical depths are supported.")
21242 (license license:gpl2)))
21243
21244 (define-public r-archetypes
21245 (package
21246 (name "r-archetypes")
21247 (version "2.2-0.1")
21248 (source
21249 (origin
21250 (method url-fetch)
21251 (uri (cran-uri "archetypes" version))
21252 (sha256
21253 (base32
21254 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
21255 (properties `((upstream-name . "archetypes")))
21256 (build-system r-build-system)
21257 (propagated-inputs
21258 `(("r-modeltools" ,r-modeltools)
21259 ("r-nnls" ,r-nnls)))
21260 (home-page "https://cran.r-project.org/web/packages/archetypes")
21261 (synopsis "Archetypal analysis")
21262 (description
21263 "The main function @code{archetypes} implements a framework for
21264 archetypal analysis supporting arbitrary problem solving mechanisms for the
21265 different conceptual parts of the algorithm.")
21266 (license license:gpl2+)))
21267
21268 (define-public r-shapes
21269 (package
21270 (name "r-shapes")
21271 (version "1.2.5")
21272 (source
21273 (origin
21274 (method url-fetch)
21275 (uri (cran-uri "shapes" version))
21276 (sha256
21277 (base32
21278 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
21279 (properties `((upstream-name . "shapes")))
21280 (build-system r-build-system)
21281 (propagated-inputs
21282 `(("r-mass" ,r-mass)
21283 ("r-minpack-lm" ,r-minpack-lm)
21284 ("r-rgl" ,r-rgl)
21285 ("r-scatterplot3d" ,r-scatterplot3d)))
21286 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
21287 (synopsis "Statistical shape analysis")
21288 (description
21289 "This package provides routines for the statistical analysis of landmark
21290 shapes, including Procrustes analysis, graphical displays, principal
21291 components analysis, permutation and bootstrap tests, thin-plate spline
21292 transformation grids and comparing covariance matrices. See Dryden, I.L. and
21293 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
21294 Edition), John Wiley and Sons.")
21295 (license license:gpl2)))
21296
21297 (define-public r-anthropometry
21298 (package
21299 (name "r-anthropometry")
21300 (version "1.14")
21301 (source
21302 (origin
21303 (method url-fetch)
21304 (uri (cran-uri "Anthropometry" version))
21305 (sha256
21306 (base32
21307 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
21308 (properties `((upstream-name . "Anthropometry")))
21309 (build-system r-build-system)
21310 (propagated-inputs
21311 `(("r-archetypes" ,r-archetypes)
21312 ("r-biclust" ,r-biclust)
21313 ("r-cluster" ,r-cluster)
21314 ("r-depth" ,r-depth)
21315 ("r-fnn" ,r-fnn)
21316 ("r-icge" ,r-icge)
21317 ("r-nnls" ,r-nnls)
21318 ("r-rgl" ,r-rgl)
21319 ("r-shapes" ,r-shapes)))
21320 (native-inputs
21321 `(("r-knitr" ,r-knitr)))
21322 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
21323 (synopsis "Statistical methods for anthropometric data")
21324 (description
21325 "This package provides statistical methods especially developed to
21326 analyze anthropometric data. These methods are aimed at providing effective
21327 solutions to some commons problems related to Ergonomics and Anthropometry.
21328 They are based on clustering, the statistical concept of data depth,
21329 statistical shape analysis and archetypal analysis.")
21330 (license license:gpl2+)))
21331
21332 (define-public r-adamethods
21333 (package
21334 (name "r-adamethods")
21335 (version "1.2.1")
21336 (source
21337 (origin
21338 (method url-fetch)
21339 (uri (cran-uri "adamethods" version))
21340 (sha256
21341 (base32
21342 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
21343 (properties `((upstream-name . "adamethods")))
21344 (build-system r-build-system)
21345 (propagated-inputs
21346 `(("r-anthropometry" ,r-anthropometry)
21347 ("r-archetypes" ,r-archetypes)
21348 ("r-fnn" ,r-fnn)
21349 ("r-foreach" ,r-foreach)
21350 ("r-nnls" ,r-nnls)
21351 ("r-tolerance" ,r-tolerance)
21352 ("r-univoutl" ,r-univoutl)))
21353 (home-page "https://cran.r-project.org/web/packages/adamethods/")
21354 (synopsis "Archetypoid algorithms and anomaly detection")
21355 (description
21356 "This package is a collection of several algorithms to obtain
21357 archetypoids with small and large databases and with both classical
21358 multivariate data and functional data (univariate and multivariate). Some of
21359 these algorithms also detect anomalies (outliers).")
21360 (license license:gpl2+)))
21361
21362 (define-public r-idpmisc
21363 (package
21364 (name "r-idpmisc")
21365 (version "1.1.20")
21366 (source
21367 (origin
21368 (method url-fetch)
21369 (uri (cran-uri "IDPmisc" version))
21370 (sha256
21371 (base32
21372 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
21373 (properties `((upstream-name . "IDPmisc")))
21374 (build-system r-build-system)
21375 (propagated-inputs
21376 `(("r-lattice" ,r-lattice)))
21377 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
21378 (synopsis "Functions for data analyses and visualization")
21379 (description
21380 "This package provides different high-level graphics functions for
21381 displaying large datasets, displaying circular data in a very flexible way,
21382 finding local maxima, brewing color ramps, drawing nice arrows, zooming
21383 2D-plots, creating figures with differently colored margin and plot region.
21384 In addition, the package contains auxiliary functions for data manipulation
21385 like omitting observations with irregular values or selecting data by logical
21386 vectors, which include NAs. Other functions are especially useful in
21387 spectroscopy and analyses of environmental data: robust baseline fitting,
21388 finding peaks in spectra, converting humidity measures.")
21389 (license license:gpl3+)))
21390
21391 (define-public r-qqman
21392 (package
21393 (name "r-qqman")
21394 (version "0.1.4")
21395 (source
21396 (origin
21397 (method url-fetch)
21398 (uri (cran-uri "qqman" version))
21399 (sha256
21400 (base32
21401 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
21402 (properties `((upstream-name . "qqman")))
21403 (build-system r-build-system)
21404 (propagated-inputs
21405 `(("r-calibrate" ,r-calibrate)))
21406 (home-page "https://cran.r-project.org/web/packages/qqman/")
21407 (synopsis "Q-Q and Manhattan plots for GWAS data")
21408 (description
21409 "This package allows you to create Q-Q and Manhattan plots for GWAS data
21410 from PLINK results.")
21411 (license license:gpl3)))
21412
21413 (define-public r-ggplot-multistats
21414 (package
21415 (name "r-ggplot-multistats")
21416 (version "1.0.0")
21417 (source
21418 (origin
21419 (method url-fetch)
21420 (uri (cran-uri "ggplot.multistats" version))
21421 (sha256
21422 (base32
21423 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
21424 (properties
21425 `((upstream-name . "ggplot.multistats")))
21426 (build-system r-build-system)
21427 (propagated-inputs
21428 `(("r-ggplot2" ,r-ggplot2)
21429 ("r-hexbin" ,r-hexbin)
21430 ("r-rlang" ,r-rlang)
21431 ("r-scales" ,r-scales)))
21432 (home-page "https://github.com/flying-sheep/ggplot.multistats")
21433 (synopsis "Multiple summary statistics for binned stats/geometries")
21434 (description
21435 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
21436 which functions similar to its singular form, but allows the use of multiple
21437 statistics per bin. Those statistics can be mapped to multiple bin
21438 aesthetics.")
21439 (license license:gpl3)))
21440
21441 (define-public r-knn-covertree
21442 (package
21443 (name "r-knn-covertree")
21444 (version "1.0")
21445 (source
21446 (origin
21447 (method url-fetch)
21448 (uri (cran-uri "knn.covertree" version))
21449 (sha256
21450 (base32
21451 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
21452 (properties `((upstream-name . "knn.covertree")))
21453 (build-system r-build-system)
21454 (propagated-inputs
21455 `(("r-matrix" ,r-matrix)
21456 ("r-rcpp" ,r-rcpp)
21457 ("r-rcppeigen" ,r-rcppeigen)))
21458 (home-page "https://github.com/flying-sheep/knn.covertree")
21459 (synopsis "Accurate kNN Implementation with multiple distance measures")
21460 (description
21461 "Similarly to the FNN package, this package allows calculation of the k
21462 nearest neighbors (kNN) of a data matrix. The implementation is based on
21463 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
21464 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
21465 (license license:agpl3+)))
21466
21467 (define-public r-poibin
21468 (package
21469 (name "r-poibin")
21470 (version "1.5")
21471 (source
21472 (origin
21473 (method url-fetch)
21474 (uri (cran-uri "poibin" version))
21475 (sha256
21476 (base32
21477 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
21478 (properties `((upstream-name . "poibin")))
21479 (build-system r-build-system)
21480 (home-page "https://cran.r-project.org/web/packages/poibin/")
21481 (synopsis "Poisson binomial distribution")
21482 (description
21483 "This package provides an implementation of both the exact and
21484 approximation methods for computing the @dfn{cumulative distribution
21485 function} (CDF) of the Poisson binomial distribution. It also provides the
21486 @dfn{probability mass function} (PMF), quantile function, and random number
21487 generation for the Poisson binomial distribution.")
21488 (license license:gpl2)))
21489
21490 (define-public r-diagram
21491 (package
21492 (name "r-diagram")
21493 (version "1.6.5")
21494 (source
21495 (origin
21496 (method url-fetch)
21497 (uri (cran-uri "diagram" version))
21498 (sha256
21499 (base32
21500 "1r3lyl0h7mk9cfg8smr3jydfkjdawaphnxibkxfjqa7029vkxh79"))))
21501 (properties `((upstream-name . "diagram")))
21502 (build-system r-build-system)
21503 (propagated-inputs
21504 `(("r-shape" ,r-shape)))
21505 (home-page "https://cran.r-project.org/web/packages/diagram/")
21506 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
21507 (description
21508 "This package provides tools to visualize simple graphs (networks) based
21509 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
21510 electrical networks, etc. It also includes supporting material for the book
21511 \"A practical guide to ecological modelling - using R as a simulation
21512 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
21513 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
21514 Francesca Mazzia (2012).")
21515 (license license:gpl2+)))
21516
21517 (define-public r-lim
21518 (package
21519 (name "r-lim")
21520 (version "1.4.6")
21521 (source
21522 (origin
21523 (method url-fetch)
21524 (uri (cran-uri "LIM" version))
21525 (sha256
21526 (base32
21527 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
21528 (properties `((upstream-name . "LIM")))
21529 (build-system r-build-system)
21530 (propagated-inputs
21531 `(("r-diagram" ,r-diagram)
21532 ("r-limsolve" ,r-limsolve)))
21533 (home-page "https://cran.r-project.org/web/packages/LIM/")
21534 (synopsis "Linear inverse model examples and solution methods")
21535 (description
21536 "This package provides functions that read and solve linear inverse
21537 problems (food web problems, linear programming problems).")
21538 (license license:gpl2+)))
21539
21540 (define-public r-shinycssloaders
21541 (package
21542 (name "r-shinycssloaders")
21543 (version "1.0.0")
21544 (source
21545 (origin
21546 (method url-fetch)
21547 (uri (cran-uri "shinycssloaders" version))
21548 (sha256
21549 (base32
21550 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
21551 (properties
21552 `((upstream-name . "shinycssloaders")))
21553 (build-system r-build-system)
21554 (propagated-inputs
21555 `(("r-digest" ,r-digest)
21556 ("r-glue" ,r-glue)
21557 ("r-shiny" ,r-shiny)))
21558 (home-page "https://github.com/andrewsali/shinycssloaders")
21559 (synopsis "Add CSS loading animations to Shiny outputs")
21560 (description
21561 "This package provides tools to create a lightweight Shiny wrapper for
21562 the css-loaders created by Luke Hass
21563 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
21564 automatically show a loader when the output is (re)calculating.")
21565 (license license:gpl3)))
21566
21567 (define-public r-rsvg
21568 (package
21569 (name "r-rsvg")
21570 (version "2.1")
21571 (source
21572 (origin
21573 (method url-fetch)
21574 (uri (cran-uri "rsvg" version))
21575 (sha256
21576 (base32
21577 "0bxnwa9sbzx6jlxrzh3ymjq81vkxil2qx7kk7wp13a0cql7dhxcn"))))
21578 (properties `((upstream-name . "rsvg")))
21579 (build-system r-build-system)
21580 (inputs
21581 `(("librsvg" ,librsvg)
21582 ("zlib" ,zlib)))
21583 (native-inputs
21584 `(("pkg-config" ,pkg-config)
21585 ("r-knitr" ,r-knitr)))
21586 (home-page "https://github.com/jeroen/rsvg#readme")
21587 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
21588 (description
21589 "This package allows you to render vector-based SVG images into
21590 high-quality custom-size bitmap arrays using the librsvg2 library. The
21591 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
21592 addition, the package can convert images directly to various formats such as
21593 PDF or PostScript.")
21594 (license license:expat)))
21595
21596 (define-public r-influencer
21597 (package
21598 (name "r-influencer")
21599 (version "0.1.0")
21600 (source
21601 (origin
21602 (method url-fetch)
21603 (uri (cran-uri "influenceR" version))
21604 (sha256
21605 (base32
21606 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
21607 (properties `((upstream-name . "influenceR")))
21608 (build-system r-build-system)
21609 (propagated-inputs
21610 `(("r-igraph" ,r-igraph)
21611 ("r-matrix" ,r-matrix)))
21612 (home-page "https://github.com/rcc-uchicago/influenceR")
21613 (synopsis "Tools to quantify structural importance of nodes in a network")
21614 (description
21615 "This package provides functionality to compute various node centrality
21616 measures on networks. Included are functions to compute betweenness
21617 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
21618 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
21619 algorithm to identify key players, and Valente's bridging metric. The
21620 betweenness, Key Players, and bridging implementations are parallelized with
21621 OpenMP.")
21622 (license license:gpl2)))
21623
21624 (define-public r-emplik
21625 (package
21626 (name "r-emplik")
21627 (version "1.1-1")
21628 (source
21629 (origin
21630 (method url-fetch)
21631 (uri (cran-uri "emplik" version))
21632 (sha256
21633 (base32
21634 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
21635 (properties `((upstream-name . "emplik")))
21636 (build-system r-build-system)
21637 (propagated-inputs
21638 `(("r-quantreg" ,r-quantreg)))
21639 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
21640 (synopsis "Empirical likelihood ratio for censored/truncated data")
21641 (description
21642 "This package provides empirical likelihood ratio tests for
21643 means/quantiles/hazards from possibly censored and/or truncated data. It also
21644 does regression.")
21645 (license license:gpl2+)))
21646
21647 (define-public r-imputeyn
21648 (package
21649 (name "r-imputeyn")
21650 (version "1.3")
21651 (source
21652 (origin
21653 (method url-fetch)
21654 (uri (cran-uri "imputeYn" version))
21655 (sha256
21656 (base32
21657 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
21658 (properties `((upstream-name . "imputeYn")))
21659 (build-system r-build-system)
21660 (propagated-inputs
21661 `(("r-boot" ,r-boot)
21662 ("r-emplik" ,r-emplik)
21663 ("r-mvtnorm" ,r-mvtnorm)
21664 ("r-quadprog" ,r-quadprog)
21665 ("r-survival" ,r-survival)))
21666 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
21667 (synopsis "Impute last largest censored observation under weighted least squares")
21668 (description
21669 "This package allows for the imputation of the last largest censored
21670 observantions. This method brings less bias and more efficient estimates for
21671 AFT models.")
21672 (license license:gpl2)))
21673
21674 (define-public r-adapenetclass
21675 (package
21676 (name "r-adapenetclass")
21677 (version "1.2")
21678 (source
21679 (origin
21680 (method url-fetch)
21681 (uri (cran-uri "AdapEnetClass" version))
21682 (sha256
21683 (base32
21684 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
21685 (properties `((upstream-name . "AdapEnetClass")))
21686 (build-system r-build-system)
21687 (propagated-inputs
21688 `(("r-glmnet" ,r-glmnet)
21689 ("r-imputeyn" ,r-imputeyn)
21690 ("r-lars" ,r-lars)
21691 ("r-quadprog" ,r-quadprog)))
21692 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
21693 (synopsis "Class of adaptive elastic net methods for censored data")
21694 (description
21695 "This package provides methods for variable selection for AFT models.")
21696 (license license:gpl2)))
21697
21698 (define-public r-flock
21699 (package
21700 (name "r-flock")
21701 (version "0.7")
21702 (source
21703 (origin
21704 (method url-fetch)
21705 (uri (cran-uri "flock" version))
21706 (sha256
21707 (base32
21708 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
21709 (properties `((upstream-name . "flock")))
21710 (build-system r-build-system)
21711 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
21712 (home-page "https://cran.r-project.org/web/packages/flock/")
21713 (synopsis "Process synchronization using file locks")
21714 (description
21715 "This package implements synchronization between R processes (spawned by
21716 using the @code{parallel} package for instance) using file locks. It supports
21717 both exclusive and shared locking.")
21718 (license license:asl2.0)))
21719
21720 (define-public r-archivist
21721 (package
21722 (name "r-archivist")
21723 (version "2.3.5")
21724 (source
21725 (origin
21726 (method url-fetch)
21727 (uri (cran-uri "archivist" version))
21728 (sha256
21729 (base32
21730 "0sk16bcafgswrvwh39ysbgm6jvsg20yil4pdsg3wsp81nnsrb43k"))))
21731 (properties `((upstream-name . "archivist")))
21732 (build-system r-build-system)
21733 (propagated-inputs
21734 `(("r-dbi" ,r-dbi)
21735 ("r-digest" ,r-digest)
21736 ("r-flock" ,r-flock)
21737 ("r-httr" ,r-httr)
21738 ("r-lubridate" ,r-lubridate)
21739 ("r-magrittr" ,r-magrittr)
21740 ("r-rcurl" ,r-rcurl)
21741 ("r-rsqlite" ,r-rsqlite)))
21742 (native-inputs
21743 `(("r-knitr" ,r-knitr)))
21744 (home-page "https://pbiecek.github.io/archivist/")
21745 (synopsis "Tools for storing, restoring and searching for R objects")
21746 (description
21747 "Data exploration and modelling is a process in which a lot of data
21748 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
21749 statistical models, different versions of data sets and different versions of
21750 results. Archivist helps to store and manage artifacts created in R. It
21751 allows you to store selected artifacts as binary files together with their
21752 metadata and relations. Archivist allows sharing artifacts with others. It
21753 can look for already created artifacts by using its class, name, date of the
21754 creation or other properties. It also makes it easy to restore such
21755 artifacts.")
21756 (license license:gpl2)))
21757
21758 (define-public r-versions
21759 (package
21760 (name "r-versions")
21761 (version "0.3")
21762 (source
21763 (origin
21764 (method url-fetch)
21765 (uri (cran-uri "versions" version))
21766 (sha256
21767 (base32
21768 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
21769 (properties `((upstream-name . "versions")))
21770 (build-system r-build-system)
21771 (home-page "https://cran.r-project.org/web/packages/versions/")
21772 (synopsis "Query and install specific versions of CRAN packages")
21773 (description
21774 "This package allows you to install specified versions of R packages
21775 hosted on CRAN and provides functions to list available versions and the
21776 versions of currently installed packages.")
21777 (license license:bsd-3)))
21778
21779 (define-public r-adapr
21780 (package
21781 (name "r-adapr")
21782 (version "2.0.0")
21783 (source
21784 (origin
21785 (method url-fetch)
21786 (uri (cran-uri "adapr" version))
21787 (sha256
21788 (base32
21789 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
21790 (properties `((upstream-name . "adapr")))
21791 (build-system r-build-system)
21792 (propagated-inputs
21793 `(("r-archivist" ,r-archivist)
21794 ("r-devtools" ,r-devtools)
21795 ("r-digest" ,r-digest)
21796 ("r-doparallel" ,r-doparallel)
21797 ("r-gdata" ,r-gdata)
21798 ("r-ggplot2" ,r-ggplot2)
21799 ("r-git2r" ,r-git2r)
21800 ("r-igraph" ,r-igraph)
21801 ("r-knitr" ,r-knitr)
21802 ("r-plotly" ,r-plotly)
21803 ("r-plyr" ,r-plyr)
21804 ("r-rmarkdown" ,r-rmarkdown)
21805 ("r-shiny" ,r-shiny)
21806 ("r-shinydashboard" ,r-shinydashboard)
21807 ("r-versions" ,r-versions)))
21808 (home-page "https://cran.r-project.org/web/packages/adapr/")
21809 (synopsis "Implementation of an accountable data analysis process")
21810 (description
21811 "This package tracks reading and writing within R scripts that are
21812 organized into a directed acyclic graph. It contains an interactive Shiny
21813 application @code{adaprApp()}. It uses Git and file hashes to track version
21814 histories of inputs and outputs.")
21815 (license license:lgpl2.0)))
21816
21817 (define-public r-adapsamp
21818 (package
21819 (name "r-adapsamp")
21820 (version "1.1.1")
21821 (source
21822 (origin
21823 (method url-fetch)
21824 (uri (cran-uri "AdapSamp" version))
21825 (sha256
21826 (base32
21827 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
21828 (properties `((upstream-name . "AdapSamp")))
21829 (build-system r-build-system)
21830 (propagated-inputs `(("r-pracma" ,r-pracma)))
21831 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
21832 (synopsis "Adaptive sampling algorithms")
21833 (description
21834 "For distributions whose probability density functions are log-concave,
21835 the adaptive rejection sampling algorithm can be used to build envelope
21836 functions for sampling. For others, the modified adaptive rejection sampling
21837 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
21838 adaptive slice sampling algorithm can be used. This R package mainly includes
21839 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
21840 @code{rASS()}. These functions can realize sampling based on the algorithms
21841 above.")
21842 (license license:gpl2)))
21843
21844 (define-public r-adaptalint
21845 (package
21846 (name "r-adaptalint")
21847 (version "0.2.4")
21848 (source
21849 (origin
21850 (method url-fetch)
21851 (uri (cran-uri "adaptalint" version))
21852 (sha256
21853 (base32
21854 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
21855 (properties `((upstream-name . "adaptalint")))
21856 (build-system r-build-system)
21857 (propagated-inputs
21858 `(("r-dplyr" ,r-dplyr)
21859 ("r-lintr" ,r-lintr)
21860 ("r-purrr" ,r-purrr)))
21861 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
21862 (synopsis "Check R code style")
21863 (description
21864 "This package provides tools to infer the code style (which style rules
21865 are followed and which ones are not) from one package and use it to check
21866 another. This makes it easier to find and correct the most important problems
21867 first.")
21868 (license license:gpl3)))
21869
21870 (define-public r-fracdiff
21871 (package
21872 (name "r-fracdiff")
21873 (version "1.5-1")
21874 (source
21875 (origin
21876 (method url-fetch)
21877 (uri (cran-uri "fracdiff" version))
21878 (sha256
21879 (base32
21880 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
21881 (properties `((upstream-name . "fracdiff")))
21882 (build-system r-build-system)
21883 (home-page "https://github.com/mmaechler/fracdiff")
21884 (synopsis
21885 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
21886 (description
21887 "This package provides tools for the maximum likelihood estimation of the
21888 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
21889 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
21890 (license license:gpl2+)))
21891
21892 (define-public r-forecast
21893 (package
21894 (name "r-forecast")
21895 (version "8.13")
21896 (source
21897 (origin
21898 (method url-fetch)
21899 (uri (cran-uri "forecast" version))
21900 (sha256
21901 (base32
21902 "0vrql5d4v28890np2m6ws1nr1fcl6frs1bz74vfkihkixcmkl3j9"))))
21903 (properties `((upstream-name . "forecast")))
21904 (build-system r-build-system)
21905 (propagated-inputs
21906 `(("r-colorspace" ,r-colorspace)
21907 ("r-fracdiff" ,r-fracdiff)
21908 ("r-ggplot2" ,r-ggplot2)
21909 ("r-lmtest" ,r-lmtest)
21910 ("r-magrittr" ,r-magrittr)
21911 ("r-nnet" ,r-nnet)
21912 ("r-rcpp" ,r-rcpp)
21913 ("r-rcpparmadillo" ,r-rcpparmadillo)
21914 ("r-timedate" ,r-timedate)
21915 ("r-tseries" ,r-tseries)
21916 ("r-urca" ,r-urca)
21917 ("r-zoo" ,r-zoo)))
21918 (native-inputs
21919 `(("r-knitr" ,r-knitr))) ; needed for vignettes
21920 (home-page "https://pkg.robjhyndman.com/forecast/")
21921 (synopsis "Forecasting functions for time series and linear models")
21922 (description
21923 "This package provides methods and tools for displaying and analysing
21924 univariate time series forecasts including exponential smoothing via state
21925 space models and automatic ARIMA modelling.")
21926 (license license:gpl3)))
21927
21928 (define-public r-xmisc
21929 (package
21930 (name "r-xmisc")
21931 (version "0.2.1")
21932 (source
21933 (origin
21934 (method url-fetch)
21935 (uri (cran-uri "Xmisc" version))
21936 (sha256
21937 (base32
21938 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
21939 (properties `((upstream-name . "Xmisc")))
21940 (build-system r-build-system)
21941 (home-page "https://cran.r-project.org/package=Xmisc")
21942 (synopsis
21943 "Xiaobei's miscellaneous classes and functions")
21944 (description
21945 "This package provides Xiaobei's miscellaneous classes and functions,
21946 which are useful when developing R packages for @dfn{object oriented
21947 programming} (OOP) using R Reference Class.")
21948 (license license:gpl2+)))
21949
21950 (define-public r-proxyc
21951 (package
21952 (name "r-proxyc")
21953 (version "0.1.5")
21954 (source
21955 (origin
21956 (method url-fetch)
21957 (uri (cran-uri "proxyC" version))
21958 (sha256
21959 (base32
21960 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
21961 (properties `((upstream-name . "proxyC")))
21962 (build-system r-build-system)
21963 (propagated-inputs
21964 `(("r-matrix" ,r-matrix)
21965 ("r-rcpp" ,r-rcpp)
21966 ("r-rcpparmadillo" ,r-rcpparmadillo)
21967 ("r-rcppparallel" ,r-rcppparallel)))
21968 (home-page "https://cran.r-project.org/package=proxyC")
21969 (synopsis "Compute proximity in large sparse matrices")
21970 (description
21971 "This package provides efficient tools to compute the proximity between
21972 rows or columns of large matrices. Functions are optimised for large sparse
21973 matrices using the Armadillo and Intel TBB libraries. Among several built-in
21974 similarity/distance measures, computation of correlation, cosine similarity
21975 and Euclidean distance is particularly fast.")
21976 (license license:gpl3)))
21977
21978 (define-public r-isocodes
21979 (package
21980 (name "r-isocodes")
21981 (version "2021.02.24")
21982 (source
21983 (origin
21984 (method url-fetch)
21985 (uri (cran-uri "ISOcodes" version))
21986 (sha256
21987 (base32
21988 "19irnn2yi1bzhf03g666la84kj8040f5913kfrmd16dfnjy6j9qm"))))
21989 (properties `((upstream-name . "ISOcodes")))
21990 (build-system r-build-system)
21991 (home-page "https://cran.r-project.org/package=ISOcodes")
21992 (synopsis "Selected ISO codes")
21993 (description
21994 "This package provides ISO language, territory, currency, script and
21995 character codes. It provides ISO 639 language codes, ISO 3166 territory
21996 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
21997 character codes as well as the UN M.49 area codes.")
21998 (license license:gpl2)))
21999
22000 (define-public r-stopwords
22001 (package
22002 (name "r-stopwords")
22003 (version "2.2")
22004 (source
22005 (origin
22006 (method url-fetch)
22007 (uri (cran-uri "stopwords" version))
22008 (sha256
22009 (base32
22010 "1f862y30c4r0phamlp7shzkpxg0vh3i410xy0336w310hv3wqsxn"))))
22011 (properties `((upstream-name . "stopwords")))
22012 (build-system r-build-system)
22013 (propagated-inputs
22014 `(("r-isocodes" ,r-isocodes)))
22015 (home-page "https://github.com/quanteda/stopwords")
22016 (synopsis "Multilingual stopword lists")
22017 (description
22018 "This package provides multiple sources of stopwords, for use in text
22019 analysis and natural language processing.")
22020 (license license:expat)))
22021
22022 (define-public r-spacyr
22023 (package
22024 (name "r-spacyr")
22025 (version "1.2.1")
22026 (source
22027 (origin
22028 (method url-fetch)
22029 (uri (cran-uri "spacyr" version))
22030 (sha256
22031 (base32
22032 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
22033 (properties `((upstream-name . "spacyr")))
22034 (build-system r-build-system)
22035 (propagated-inputs
22036 `(("r-data-table" ,r-data-table)
22037 ("r-reticulate" ,r-reticulate)))
22038 (home-page "https://spacyr.quanteda.io")
22039 (synopsis "R wrapper for the spaCy NLP library")
22040 (description
22041 "This package provides an R wrapper to the Python @dfn{natural language
22042 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
22043 (license license:gpl3)))
22044
22045 (define-public r-snowballc
22046 (package
22047 (name "r-snowballc")
22048 (version "0.7.0")
22049 (source
22050 (origin
22051 (method url-fetch)
22052 (uri (cran-uri "SnowballC" version))
22053 (sha256
22054 (base32
22055 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
22056 (properties `((upstream-name . "SnowballC")))
22057 (build-system r-build-system)
22058 (home-page "https://r-forge.r-project.org/projects/r-temis/")
22059 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
22060 (description
22061 "This package provides an R interface to the C @code{libstemmer} library
22062 that implements Porter's word stemming algorithm for collapsing words to a
22063 common root to aid comparison of vocabulary. Currently supported languages
22064 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
22065 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
22066 (license license:bsd-3)))
22067
22068 (define-public r-quanteda
22069 (package
22070 (name "r-quanteda")
22071 (version "2.1.2")
22072 (source
22073 (origin
22074 (method url-fetch)
22075 (uri (cran-uri "quanteda" version))
22076 (sha256
22077 (base32
22078 "13rjwgmg5v1dbryrs9ifyy76s5ib6wrbrm2y5af44vhf1h6p9cvy"))))
22079 (properties `((upstream-name . "quanteda")))
22080 (build-system r-build-system)
22081 (propagated-inputs
22082 `(("r-data-table" ,r-data-table)
22083 ("r-digest" ,r-digest)
22084 ("r-extrafont" ,r-extrafont)
22085 ("r-fastmatch" ,r-fastmatch)
22086 ("r-ggplot2" ,r-ggplot2)
22087 ("r-ggrepel" ,r-ggrepel)
22088 ("r-jsonlite" ,r-jsonlite)
22089 ("r-magrittr" ,r-magrittr)
22090 ("r-matrix" ,r-matrix)
22091 ("r-network" ,r-network)
22092 ("r-proxyc" ,r-proxyc)
22093 ("r-rcpp" ,r-rcpp)
22094 ("r-rcpparmadillo" ,r-rcpparmadillo)
22095 ("r-rcppparallel" ,r-rcppparallel)
22096 ("r-sna" ,r-sna)
22097 ("r-snowballc" ,r-snowballc)
22098 ("r-stopwords" ,r-stopwords)
22099 ("r-stringi" ,r-stringi)
22100 ("r-xml2" ,r-xml2)
22101 ("r-yaml" ,r-yaml)))
22102 (native-inputs
22103 `(("r-knitr" ,r-knitr)))
22104 (home-page "https://quanteda.io")
22105 (synopsis "Quantitative analysis of textual data")
22106 (description
22107 "This package provides a fast, flexible, and comprehensive framework for
22108 quantitative text analysis in R. It provides functionality for corpus
22109 management, creating and manipulating tokens and ngrams, exploring keywords in
22110 context, forming and manipulating sparse matrices of documents by features and
22111 feature co-occurrences, analyzing keywords, computing feature similarities and
22112 distances, applying content dictionaries, applying supervised and unsupervised
22113 machine learning, visually representing text and text analyses, and more.")
22114 (license license:gpl3)))
22115
22116 (define-public r-topicmodels
22117 (package
22118 (name "r-topicmodels")
22119 (version "0.2-12")
22120 (source
22121 (origin
22122 (method url-fetch)
22123 (uri (cran-uri "topicmodels" version))
22124 (sha256
22125 (base32
22126 "1d6iizmn042b59q2y6qc82z19wq3xm0zvgkf8iqf8fdzh51kmn5g"))))
22127 (properties `((upstream-name . "topicmodels")))
22128 (build-system r-build-system)
22129 (inputs
22130 `(("gsl" ,gsl)))
22131 (propagated-inputs
22132 `(("r-modeltools" ,r-modeltools)
22133 ("r-slam" ,r-slam)
22134 ("r-tm" ,r-tm)))
22135 (home-page "https://cran.r-project.org/package=topicmodels")
22136 (synopsis "Topic models")
22137 (description
22138 "This package provides an interface to the C code for @dfn{Latent
22139 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
22140 David M. Blei and co-authors and the C++ code for fitting LDA models using
22141 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
22142 (license license:gpl2)))
22143
22144 (define-public r-stm
22145 (package
22146 (name "r-stm")
22147 (version "1.3.6")
22148 (source
22149 (origin
22150 (method url-fetch)
22151 (uri (cran-uri "stm" version))
22152 (sha256
22153 (base32
22154 "0qwq4nin2n9fjd06852r8k7arvcgh46kcfb3lm21swgx6j8bgrhb"))))
22155 (properties `((upstream-name . "stm")))
22156 (build-system r-build-system)
22157 (propagated-inputs
22158 `(("r-data-table" ,r-data-table)
22159 ("r-glmnet" ,r-glmnet)
22160 ("r-lda" ,r-lda)
22161 ("r-matrix" ,r-matrix)
22162 ("r-matrixstats" ,r-matrixstats)
22163 ("r-quadprog" ,r-quadprog)
22164 ("r-quanteda" ,r-quanteda)
22165 ("r-rcpp" ,r-rcpp)
22166 ("r-rcpparmadillo" ,r-rcpparmadillo)
22167 ("r-slam" ,r-slam)
22168 ("r-stringr" ,r-stringr)))
22169 (home-page "http://www.structuraltopicmodel.com/")
22170 (synopsis "Estimation of the Structural Topic Model")
22171 (description
22172 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
22173 topic models with document-level covariates. The package also includes tools
22174 for model selection, visualization, and estimation of topic-covariate
22175 regressions.")
22176 (license license:expat)))
22177
22178 (define-public r-polycor
22179 (package
22180 (name "r-polycor")
22181 (version "0.7-10")
22182 (source
22183 (origin
22184 (method url-fetch)
22185 (uri (cran-uri "polycor" version))
22186 (sha256
22187 (base32
22188 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
22189 (properties `((upstream-name . "polycor")))
22190 (build-system r-build-system)
22191 (propagated-inputs
22192 `(("r-matrix" ,r-matrix)
22193 ("r-mvtnorm" ,r-mvtnorm)))
22194 (home-page "https://r-forge.r-project.org/projects/polycor/")
22195 (synopsis "Polychoric and polyserial correlations")
22196 (description
22197 "This package provides tools to compute polychoric and polyserial
22198 correlations by quick \"two-step\" methods or ML, optionally with standard
22199 errors; tetrachoric and biserial correlations are special cases.")
22200 (license license:gpl2+)))
22201
22202 (define-public r-msm
22203 (package
22204 (name "r-msm")
22205 (version "1.6.8")
22206 (source
22207 (origin
22208 (method url-fetch)
22209 (uri (cran-uri "msm" version))
22210 (sha256
22211 (base32
22212 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
22213 (properties `((upstream-name . "msm")))
22214 (build-system r-build-system)
22215 (propagated-inputs
22216 `(("r-expm" ,r-expm)
22217 ("r-mvtnorm" ,r-mvtnorm)
22218 ("r-survival" ,r-survival)))
22219 (home-page "https://github.com/chjackson/msm")
22220 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
22221 (description
22222 "This package provides functions for fitting continuous-time Markov and
22223 hidden Markov multi-state models to longitudinal data. It was designed for
22224 processes observed at arbitrary times in continuous time (panel data) but some
22225 other observation schemes are supported. Both Markov transition rates and the
22226 hidden Markov output process can be modelled in terms of covariates, which may
22227 be constant or piecewise-constant in time.")
22228 (license license:gpl2+)))
22229
22230 (define-public r-ltm
22231 (package
22232 (name "r-ltm")
22233 (version "1.1-1")
22234 (source
22235 (origin
22236 (method url-fetch)
22237 (uri (cran-uri "ltm" version))
22238 (sha256
22239 (base32
22240 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
22241 (properties `((upstream-name . "ltm")))
22242 (build-system r-build-system)
22243 (propagated-inputs
22244 `(("r-mass" ,r-mass)
22245 ("r-msm" ,r-msm)
22246 ("r-polycor" ,r-polycor)))
22247 (home-page "https://github.com/drizopoulos/ltm")
22248 (synopsis "Latent trait models under IRT")
22249 (description
22250 "This is a package supporting the analysis of multivariate dichotomous
22251 and polytomous data using latent trait models under the Item Response Theory
22252 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
22253 Three-Parameter, the Graded Response, and the Generalized Partial Credit
22254 Models.")
22255 (license license:gpl2+)))
22256
22257 (define-public r-mi
22258 (package
22259 (name "r-mi")
22260 (version "1.0")
22261 (source
22262 (origin
22263 (method url-fetch)
22264 (uri (cran-uri "mi" version))
22265 (sha256
22266 (base32
22267 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
22268 (properties `((upstream-name . "mi")))
22269 (build-system r-build-system)
22270 (propagated-inputs
22271 `(("r-arm" ,r-arm)
22272 ("r-matrix" ,r-matrix)))
22273 (home-page "http://www.stat.columbia.edu/~gelman/")
22274 (synopsis "Missing data imputation and model checking")
22275 (description
22276 "This package provides functions for data manipulation, imputing missing
22277 values in an approximate Bayesian framework, diagnostics of the models used to
22278 generate the imputations, confidence-building mechanisms to validate some of
22279 the assumptions of the imputation algorithm, and functions to analyze multiply
22280 imputed data sets with the appropriate degree of sampling uncertainty.")
22281 (license license:gpl2+)))
22282
22283 (define-public r-matrixcalc
22284 (package
22285 (name "r-matrixcalc")
22286 (version "1.0-3")
22287 (source
22288 (origin
22289 (method url-fetch)
22290 (uri (cran-uri "matrixcalc" version))
22291 (sha256
22292 (base32
22293 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
22294 (properties `((upstream-name . "matrixcalc")))
22295 (build-system r-build-system)
22296 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
22297 (synopsis "Collection of functions for matrix calculations")
22298 (description
22299 "This package provides a collection of functions to support matrix
22300 calculations for probability, econometric and numerical analysis. There are
22301 additional functions that are comparable to APL functions which are useful for
22302 actuarial models such as pension mathematics.")
22303 (license license:gpl2+)))
22304
22305 (define-public r-sem
22306 (package
22307 (name "r-sem")
22308 (version "3.1-11")
22309 (source
22310 (origin
22311 (method url-fetch)
22312 (uri (cran-uri "sem" version))
22313 (sha256
22314 (base32
22315 "03j3ig6fy34pi6nwfq9w8f5m555lilw5skr1vn6ay4yvjmvavc9k"))))
22316 (properties `((upstream-name . "sem")))
22317 (build-system r-build-system)
22318 (propagated-inputs
22319 `(("r-boot" ,r-boot)
22320 ("r-mass" ,r-mass)
22321 ("r-matrixcalc" ,r-matrixcalc)
22322 ("r-mi" ,r-mi)))
22323 (home-page "https://cran.r-project.org/package=sem")
22324 (synopsis "Structural equation models")
22325 (description
22326 "This package provides functions for fitting general linear structural
22327 equation models (with observed and latent variables) using the RAM approach,
22328 and for fitting structural equations in observed-variable models by two-stage
22329 least squares.")
22330 (license license:gpl2+)))
22331
22332 (define-public r-semtools
22333 (package
22334 (name "r-semtools")
22335 (version "0.5-4")
22336 (source
22337 (origin
22338 (method url-fetch)
22339 (uri (cran-uri "semTools" version))
22340 (sha256
22341 (base32
22342 "15kban4ds2mssxqslm126b89p8biya14c9m68sqk61vzvx5dm2vq"))))
22343 (properties `((upstream-name . "semTools")))
22344 (build-system r-build-system)
22345 (propagated-inputs
22346 `(("r-lavaan" ,r-lavaan)))
22347 (home-page "https://github.com/simsem/semTools/wiki")
22348 (synopsis "Useful tools for structural equation modeling")
22349 (description
22350 "This package provides useful tools for structural equation modeling.")
22351 (license license:gpl2+)))
22352
22353 (define-public r-regsem
22354 (package
22355 (name "r-regsem")
22356 (version "1.6.2")
22357 (source
22358 (origin
22359 (method url-fetch)
22360 (uri (cran-uri "regsem" version))
22361 (sha256
22362 (base32
22363 "14nrzyrkrijdrr4jwkri5zra2wh36w68wy6xs600l2z1633h2lmn"))))
22364 (properties `((upstream-name . "regsem")))
22365 (build-system r-build-system)
22366 (propagated-inputs
22367 `(("r-lavaan" ,r-lavaan)
22368 ("r-rcpp" ,r-rcpp)
22369 ("r-rcpparmadillo" ,r-rcpparmadillo)
22370 ("r-rsolnp" ,r-rsolnp)))
22371 (native-inputs
22372 `(("r-knitr" ,r-knitr)))
22373 (home-page "https://cran.r-project.org/package=regsem")
22374 (synopsis "Regularized structural equation modeling")
22375 (description
22376 "This package uses both ridge and lasso penalties (and extensions) to
22377 penalize specific parameters in structural equation models. The package
22378 offers additional cost functions, cross validation, and other extensions
22379 beyond traditional structural equation models. It also contains a function to
22380 perform @dfn{exploratory mediation} (XMed).")
22381 (license license:gpl2+)))
22382
22383 (define-public r-stanheaders
22384 (package
22385 (name "r-stanheaders")
22386 (version "2.21.0-7")
22387 (source
22388 (origin
22389 (method url-fetch)
22390 (uri (cran-uri "StanHeaders" version))
22391 (sha256
22392 (base32
22393 "0srkyawyiykn3p5lw1z3zf18s4ax4iasv1ci3l1px40f9w36wm17"))))
22394 (properties `((upstream-name . "StanHeaders")))
22395 (build-system r-build-system)
22396 (inputs `(("pandoc" ,pandoc)))
22397 (propagated-inputs
22398 `(("r-rcppeigen" ,r-rcppeigen)
22399 ("r-rcppparallel" ,r-rcppparallel)))
22400 (native-inputs
22401 `(("gfortran" ,gfortran)
22402 ("r-knitr" ,r-knitr))) ; for vignettes
22403 (home-page "https://mc-stan.org/")
22404 (synopsis "C++ header files for Stan")
22405 (description
22406 "The C++ header files of the Stan project are provided by this package.
22407 There is a shared object containing part of the @code{CVODES} library, but it
22408 is not accessible from R. @code{r-stanheaders} is only useful for developers
22409 who want to utilize the @code{LinkingTo} directive of their package's
22410 DESCRIPTION file to build on the Stan library without incurring unnecessary
22411 dependencies.
22412
22413 The Stan project develops a probabilistic programming language that implements
22414 full or approximate Bayesian statistical inference via Markov Chain Monte
22415 Carlo or variational methods and implements (optionally penalized) maximum
22416 likelihood estimation via optimization. The Stan library includes an advanced
22417 automatic differentiation scheme, templated statistical and linear algebra
22418 functions that can handle the automatically differentiable scalar types (and
22419 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
22420 package provides user-facing R functions to parse, compile, test, estimate,
22421 and analyze Stan models.")
22422 (license license:bsd-3)))
22423
22424 (define-public r-rpf
22425 (package
22426 (name "r-rpf")
22427 (version "1.0.5")
22428 (source
22429 (origin
22430 (method url-fetch)
22431 (uri (cran-uri "rpf" version))
22432 (sha256
22433 (base32
22434 "0kz7i7g3l16irz6bxgnkxdmmd931m1fk6rl72dvs21ir5brr010l"))))
22435 (properties `((upstream-name . "rpf")))
22436 (build-system r-build-system)
22437 (propagated-inputs
22438 `(("r-lifecycle" ,r-lifecycle)
22439 ("r-mvtnorm" ,r-mvtnorm)
22440 ("r-rcpp" ,r-rcpp)
22441 ("r-rcppeigen" ,r-rcppeigen)))
22442 (native-inputs
22443 `(("r-knitr" ,r-knitr)))
22444 (home-page "https://github.com/jpritikin/rpf")
22445 (synopsis "Response probability functions")
22446 (description
22447 "The purpose of this package is to factor out logic and math common to
22448 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
22449 core support code suitable for more specialized IRT packages to build upon.
22450 Complete access to optimized C functions is made available with
22451 @code{R_RegisterCCallable()}.")
22452 (license license:gpl3+)))
22453
22454 (define-public r-openmx
22455 (package
22456 (name "r-openmx")
22457 (version "2.19.1")
22458 (source
22459 (origin
22460 (method url-fetch)
22461 (uri (cran-uri "OpenMx" version))
22462 (sha256
22463 (base32
22464 "0fbndmwb3krypsavgm3blqkhh8blmi3p186yxmvgv3a9m6r154rj"))))
22465 (properties `((upstream-name . "OpenMx")))
22466 (build-system r-build-system)
22467 (propagated-inputs
22468 `(("r-bh" ,r-bh)
22469 ("r-digest" ,r-digest)
22470 ("r-lifecycle" ,r-lifecycle)
22471 ("r-mass" ,r-mass)
22472 ("r-matrix" ,r-matrix)
22473 ("r-rcpp" ,r-rcpp)
22474 ("r-rcppeigen" ,r-rcppeigen)
22475 ("r-rpf" ,r-rpf)
22476 ("r-stanheaders" ,r-stanheaders)))
22477 (native-inputs `(("gfortran" ,gfortran)))
22478 (home-page "http://openmx.ssri.psu.edu")
22479 (synopsis "Extended structural equation modelling")
22480 (description
22481 "This package allows for the estimation of a wide variety of advanced
22482 multivariate statistical models. It consists of a library of functions and
22483 optimizers that allow you to quickly and flexibly define an SEM model and
22484 estimate parameters given observed data.")
22485 (license license:asl2.0)))
22486
22487 (define-public r-kutils
22488 (package
22489 (name "r-kutils")
22490 (version "1.70")
22491 (source
22492 (origin
22493 (method url-fetch)
22494 (uri (cran-uri "kutils" version))
22495 (sha256
22496 (base32
22497 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
22498 (properties `((upstream-name . "kutils")))
22499 (build-system r-build-system)
22500 (propagated-inputs
22501 `(("r-foreign" ,r-foreign)
22502 ("r-openxlsx" ,r-openxlsx)
22503 ("r-plyr" ,r-plyr)
22504 ("r-runit" ,r-runit)
22505 ("r-xtable" ,r-xtable)))
22506 (home-page "https://cran.r-project.org/package=kutils")
22507 (synopsis "Project management tools")
22508 (description
22509 "This package provides tools for data importation, recoding, and
22510 inspection. There are functions to create new project folders, R code
22511 templates, create uniquely named output directories, and to quickly obtain a
22512 visual summary for each variable in a data frame. The main feature here is
22513 the systematic implementation of the \"variable key\" framework for data
22514 importation and recoding.")
22515 (license license:gpl2)))
22516
22517 (define-public r-rockchalk
22518 (package
22519 (name "r-rockchalk")
22520 (version "1.8.144")
22521 (source
22522 (origin
22523 (method url-fetch)
22524 (uri (cran-uri "rockchalk" version))
22525 (sha256
22526 (base32
22527 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
22528 (properties `((upstream-name . "rockchalk")))
22529 (build-system r-build-system)
22530 (propagated-inputs
22531 `(("r-cardata" ,r-cardata)
22532 ("r-kutils" ,r-kutils)
22533 ("r-lme4" ,r-lme4)
22534 ("r-mass" ,r-mass)))
22535 (home-page "https://cran.r-project.org/package=rockchalk")
22536 (synopsis "Regression estimation and presentation")
22537 (description
22538 "This package provides a collection of functions for interpretation and
22539 presentation of regression analysis. These functions are used to produce the
22540 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
22541 includes regression diagnostics, regression tables, and plots of interactions
22542 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
22543 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
22544 fairly comprehensive overview.")
22545 (license license:gpl3+)))
22546
22547 (define-public r-lisreltor
22548 (package
22549 (name "r-lisreltor")
22550 (version "0.1.4")
22551 (source
22552 (origin
22553 (method url-fetch)
22554 (uri (cran-uri "lisrelToR" version))
22555 (sha256
22556 (base32
22557 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
22558 (properties `((upstream-name . "lisrelToR")))
22559 (build-system r-build-system)
22560 (home-page "https://cran.r-project.org/package=lisrelToR")
22561 (synopsis "Import output from LISREL into R")
22562 (description
22563 "This is an unofficial package aimed at automating the import of LISREL
22564 output in R.")
22565 (license license:gpl2)))
22566
22567 (define-public r-bdgraph
22568 (package
22569 (name "r-bdgraph")
22570 (version "2.63")
22571 (source
22572 (origin
22573 (method url-fetch)
22574 (uri (cran-uri "BDgraph" version))
22575 (sha256
22576 (base32
22577 "05q6dbvdnxmh7myvw60zqcqx16f80i8d6qa4y7xnfkx02l9lwiyc"))))
22578 (properties `((upstream-name . "BDgraph")))
22579 (build-system r-build-system)
22580 (propagated-inputs
22581 `(("r-igraph" ,r-igraph)))
22582 (home-page "https://www.uva.nl/profile/a.mohammadi")
22583 (synopsis "Bayesian structure learning in graphical models")
22584 (description
22585 "This package provides statistical tools for Bayesian structure learning
22586 in undirected graphical models for continuous, discrete, and mixed data. It
22587 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
22588 on a continuous-time birth-death process.")
22589 (license license:gpl2+)))
22590
22591 (define-public r-d3network
22592 (package
22593 (name "r-d3network")
22594 (version "0.5.2.1")
22595 (source
22596 (origin
22597 (method url-fetch)
22598 (uri (cran-uri "d3Network" version))
22599 (sha256
22600 (base32
22601 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
22602 (properties `((upstream-name . "d3Network")))
22603 (build-system r-build-system)
22604 (propagated-inputs
22605 `(("r-plyr" ,r-plyr)
22606 ("r-rjson" ,r-rjson)
22607 ("r-whisker" ,r-whisker)))
22608 (home-page "http://christophergandrud.github.io/d3Network/")
22609 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
22610 (description
22611 "This package is intended to make it easy to create D3 JavaScript
22612 network, tree, dendrogram, and Sankey graphs from R using data frames.")
22613 (license license:gpl3+)))
22614
22615 (define-public r-qgraph
22616 (package
22617 (name "r-qgraph")
22618 (version "1.6.9")
22619 (source
22620 (origin
22621 (method url-fetch)
22622 (uri (cran-uri "qgraph" version))
22623 (sha256
22624 (base32
22625 "153bqfmsrghkg7598nfr57r3cxv6dn6ir084njl2sqq5np0sj9di"))))
22626 (properties `((upstream-name . "qgraph")))
22627 (build-system r-build-system)
22628 (propagated-inputs
22629 `(("r-abind" ,r-abind)
22630 ("r-colorspace" ,r-colorspace)
22631 ("r-corpcor" ,r-corpcor)
22632 ("r-dplyr" ,r-dplyr)
22633 ("r-fdrtool" ,r-fdrtool)
22634 ("r-ggplot2" ,r-ggplot2)
22635 ("r-glasso" ,r-glasso)
22636 ("r-gtools" ,r-gtools)
22637 ("r-hmisc" ,r-hmisc)
22638 ("r-igraph" ,r-igraph)
22639 ("r-jpeg" ,r-jpeg)
22640 ("r-lavaan" ,r-lavaan)
22641 ("r-matrix" ,r-matrix)
22642 ("r-pbapply" ,r-pbapply)
22643 ("r-plyr" ,r-plyr)
22644 ("r-png" ,r-png)
22645 ("r-psych" ,r-psych)
22646 ("r-rcpp" ,r-rcpp)
22647 ("r-reshape2" ,r-reshape2)))
22648 (home-page "http://sachaepskamp.com/qgraph/")
22649 (synopsis "Weighted network visualization and analysis")
22650 (description
22651 "This package implements tools for weighted network visualization and
22652 analysis, as well as Gaussian graphical model computation. It contains graph
22653 plotting methods, and tools for psychometric data visualization and graphical
22654 model estimation. See Epskamp et al. (2012)
22655 @url{doi:10.18637/jss.v048.i04}.")
22656 (license license:gpl2)))
22657
22658 (define-public r-semplot
22659 (package
22660 (name "r-semplot")
22661 (version "1.1.2")
22662 (source
22663 (origin
22664 (method url-fetch)
22665 (uri (cran-uri "semPlot" version))
22666 (sha256
22667 (base32
22668 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
22669 (properties `((upstream-name . "semPlot")))
22670 (build-system r-build-system)
22671 (propagated-inputs
22672 `(("r-colorspace" ,r-colorspace)
22673 ("r-corpcor" ,r-corpcor)
22674 ("r-igraph" ,r-igraph)
22675 ("r-lavaan" ,r-lavaan)
22676 ("r-lisreltor" ,r-lisreltor)
22677 ("r-openmx" ,r-openmx)
22678 ("r-plyr" ,r-plyr)
22679 ("r-qgraph" ,r-qgraph)
22680 ("r-regsem" ,r-regsem)
22681 ("r-rockchalk" ,r-rockchalk)
22682 ("r-sem" ,r-sem)
22683 ("r-xml" ,r-xml)))
22684 (home-page "https://github.com/SachaEpskamp/semPlot")
22685 (synopsis "Unified visualizations of structural equation models")
22686 (description
22687 "Structural equation modeling (SEM) has a long history of representing
22688 models graphically as path diagrams. The semPlot package for R fills the gap
22689 between advanced, but time-consuming, graphical software and the limited
22690 graphics produced automatically by SEM software. In addition, semPlot offers
22691 more functionality than drawing path diagrams: it can act as a common ground
22692 for importing SEM results into R. Any result usable as input to semPlot can
22693 also be represented in any of the three popular SEM frame-works, as well as
22694 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
22695 (license license:gpl2)))
22696
22697 (define-public r-cdm
22698 (package
22699 (name "r-cdm")
22700 (version "7.5-15")
22701 (source
22702 (origin
22703 (method url-fetch)
22704 (uri (cran-uri "CDM" version))
22705 (sha256
22706 (base32
22707 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
22708 (properties `((upstream-name . "CDM")))
22709 (build-system r-build-system)
22710 (propagated-inputs
22711 `(("r-mvtnorm" ,r-mvtnorm)
22712 ("r-polycor" ,r-polycor)
22713 ("r-rcpp" ,r-rcpp)
22714 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22715 (home-page
22716 "https://github.com/alexanderrobitzsch/CDM")
22717 (synopsis "Cognitive diagnosis modeling")
22718 (description
22719 "This package provides functions for cognitive diagnosis modeling and
22720 multidimensional item response modeling for dichotomous and polytomous item
22721 responses. It enables the estimation of the DINA and DINO model, the multiple
22722 group (polytomous) GDINA model, the multiple choice DINA model, the general
22723 diagnostic model (GDM), the structured latent class model (SLCA), and
22724 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
22725 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
22726 estimation and the package structure. For tutorials on how to use the CDM
22727 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
22728 well as Ravand and Robitzsch (2015).")
22729 (license license:gpl2+)))
22730
22731 (define-public r-tam
22732 (package
22733 (name "r-tam")
22734 (version "3.5-19")
22735 (source
22736 (origin
22737 (method url-fetch)
22738 (uri (cran-uri "TAM" version))
22739 (sha256
22740 (base32
22741 "1x1pdy0hrk4c3x5l4gcslpvyb0sv2zgly4n3a7y8j6yrzajx0sg7"))))
22742 (properties `((upstream-name . "TAM")))
22743 (build-system r-build-system)
22744 (propagated-inputs
22745 `(("r-cdm" ,r-cdm)
22746 ("r-rcpp" ,r-rcpp)
22747 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22748 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
22749 (synopsis "Test analysis modules")
22750 (description
22751 "This package includes tools for marginal maximum likelihood estimation
22752 and joint maximum likelihood estimation for unidimensional and
22753 multidimensional item response models. The package functionality covers the
22754 Rasch model, 2PL model, 3PL model, generalized partial credit model,
22755 multi-faceted Rasch model, nominal item response model, structured latent
22756 class model, mixture distribution IRT models, and located latent class models.
22757 Latent regression models and plausible value imputation are also supported.")
22758 (license license:gpl2+)))
22759
22760 (define-public r-erm
22761 (package
22762 (name "r-erm")
22763 (version "1.0-2")
22764 (source
22765 (origin
22766 (method url-fetch)
22767 (uri (cran-uri "eRm" version))
22768 (sha256
22769 (base32
22770 "0smym010kswc5vx90qr3x1vl16xj1x1i54rvrj006dc4agc1vmlk"))))
22771 (properties `((upstream-name . "eRm")))
22772 (build-system r-build-system)
22773 (propagated-inputs
22774 `(("r-colorspace" ,r-colorspace)
22775 ("r-lattice" ,r-lattice)
22776 ("r-mass" ,r-mass)
22777 ("r-matrix" ,r-matrix)
22778 ("r-psych" ,r-psych)))
22779 (native-inputs `(("gfortran" ,gfortran)))
22780 (home-page "https://cran.r-project.org/package=eRm")
22781 (synopsis "Extended Rasch modeling")
22782 (description
22783 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
22784 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
22785 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
22786 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
22787 data matrix. Additional features are the ML estimation of the person
22788 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
22789 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
22790 infit and outfit measures, ICC and other plots, automated stepwise item
22791 elimination, and a simulation module for various binary data matrices.")
22792 (license license:gpl3)))
22793
22794 (define-public r-irtoys
22795 (package
22796 (name "r-irtoys")
22797 (version "0.2.1")
22798 (source
22799 (origin
22800 (method url-fetch)
22801 (uri (cran-uri "irtoys" version))
22802 (sha256
22803 (base32
22804 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
22805 (properties `((upstream-name . "irtoys")))
22806 (build-system r-build-system)
22807 (propagated-inputs
22808 `(("r-ltm" ,r-ltm)
22809 ("r-sm" ,r-sm)))
22810 (home-page "https://cran.r-project.org/package=irtoys")
22811 (synopsis "Collection of functions related to Item Response Theory (IRT)")
22812 (description
22813 "This package provides a collection of functions useful in learning and
22814 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
22815 programs. It provides basic CTT analysis, a simple common interface to the
22816 estimation of item parameters in IRT models for binary responses with three
22817 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
22818 EAP, WLE, plausible values), item and person fit statistics, scaling
22819 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
22820 array of parametric and non-parametric (kernel) plots. It estimates and plots
22821 Haberman's interaction model when all items are dichotomously scored.")
22822 (license license:gpl2+)))
22823
22824 (define-public r-iheatmapr
22825 (package
22826 (name "r-iheatmapr")
22827 (version "0.5.1")
22828 (source
22829 (origin
22830 (method url-fetch)
22831 (uri (cran-uri "iheatmapr" version))
22832 (sha256
22833 (base32
22834 "1pwkwh7ljlpr6zyz6j8knpz3iw60xzkw8amc98x4pc2mw148jvzx"))))
22835 (properties `((upstream-name . "iheatmapr")))
22836 (build-system r-build-system)
22837 (propagated-inputs
22838 `(("r-fastcluster" ,r-fastcluster)
22839 ("r-ggdendro" ,r-ggdendro)
22840 ("r-htmlwidgets" ,r-htmlwidgets)
22841 ("r-jsonlite" ,r-jsonlite)
22842 ("r-knitr" ,r-knitr)
22843 ("r-magrittr" ,r-magrittr)
22844 ("r-rcolorbrewer" ,r-rcolorbrewer)
22845 ("r-scales" ,r-scales)))
22846 (native-inputs
22847 `(("r-knitr" ,r-knitr)))
22848 (home-page "https://docs.ropensci.org/iheatmapr")
22849 (synopsis "Interactive, Complex Heatmaps")
22850 (description
22851 "iheatmapr is an R package for building complex, interactive heatmaps
22852 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
22853 subplots along the rows or columns of the main heatmap add more information
22854 about each row or column. For example, a one column additional heatmap may
22855 indicate what group a particular row or column belongs to. Complex heatmaps
22856 may also include multiple side by side heatmaps which show different types of
22857 data for the same conditions. Interactivity can improve complex heatmaps by
22858 providing tooltips with information about each cell and enabling zooming into
22859 interesting features. iheatmapr uses the plotly library for interactivity.")
22860 (license license:expat)))
22861
22862 (define-public r-packrat
22863 (package
22864 (name "r-packrat")
22865 (version "0.5.0")
22866 (source
22867 (origin
22868 (method url-fetch)
22869 (uri (cran-uri "packrat" version))
22870 (sha256
22871 (base32
22872 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
22873 (properties `((upstream-name . "packrat")))
22874 (build-system r-build-system)
22875 (home-page "https://github.com/rstudio/packrat/")
22876 (synopsis "Dependency management R projects")
22877 (description
22878 "This package provides a dependency manager for R projects that allows
22879 you to manage the R packages your project depends on in an isolated, portable,
22880 and reproducible way.")
22881 (license license:gpl2)))
22882
22883 (define-public r-rsconnect
22884 (package
22885 (name "r-rsconnect")
22886 (version "0.8.16")
22887 (source
22888 (origin
22889 (method url-fetch)
22890 (uri (cran-uri "rsconnect" version))
22891 (sha256
22892 (base32
22893 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
22894 (properties `((upstream-name . "rsconnect")))
22895 (build-system r-build-system)
22896 (propagated-inputs
22897 `(("r-curl" ,r-curl)
22898 ("r-digest" ,r-digest)
22899 ("r-jsonlite" ,r-jsonlite)
22900 ("r-openssl" ,r-openssl)
22901 ("r-packrat" ,r-packrat)
22902 ("r-rstudioapi" ,r-rstudioapi)
22903 ("r-yaml" ,r-yaml)))
22904 (home-page "https://github.com/rstudio/rsconnect")
22905 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
22906 (description
22907 "This package provides a programmatic deployment interface for RPubs,
22908 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
22909 documents, Shiny applications, Plumber APIs, plots, and static web content.")
22910 (license license:gpl2)))
22911
22912 ;; This package includes minified JavaScript files. When upgrading please
22913 ;; check that there are no new minified JavaScript files.
22914 (define-public r-dygraphs
22915 (package
22916 (name "r-dygraphs")
22917 (version "1.1.1.6")
22918 (source
22919 (origin
22920 (method url-fetch)
22921 (uri (cran-uri "dygraphs" version))
22922 (sha256
22923 (base32
22924 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
22925 (properties `((upstream-name . "dygraphs")))
22926 (build-system r-build-system)
22927 (arguments
22928 `(#:modules ((guix build utils)
22929 (guix build r-build-system)
22930 (srfi srfi-1)
22931 (ice-9 popen))
22932 #:phases
22933 (modify-phases %standard-phases
22934 (add-after 'unpack 'process-javascript
22935 (lambda* (#:key inputs #:allow-other-keys)
22936 (with-directory-excursion "inst/htmlwidgets/lib/"
22937 (call-with-values
22938 (lambda ()
22939 (unzip2
22940 `(("dygraphs/dygraph-combined-dev.js"
22941 "dygraph-combined.js")
22942 (,(assoc-ref inputs "js-jquery")
22943 "jquery/jquery.min.js")
22944 (,(assoc-ref inputs "js-fquarter")
22945 "fquarter/moment-fquarter.min.js"))))
22946 (lambda (sources targets)
22947 (for-each (lambda (source target)
22948 (format #t "Processing ~a --> ~a~%"
22949 source target)
22950 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
22951 (call-with-output-file target
22952 (lambda (port)
22953 (dump-port minified port)))))
22954 sources targets))))
22955 #t)))))
22956 (native-inputs
22957 `(("uglify-js" ,uglify-js)
22958 ;; They actually use version 1.11.1, but this more recent version
22959 ;; should be just fine.
22960 ("js-jquery"
22961 ,(origin
22962 (method url-fetch)
22963 (uri "https://code.jquery.com/jquery-1.12.4.js")
22964 (sha256
22965 (base32
22966 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
22967 ("js-fquarter"
22968 ,(origin
22969 (method url-fetch)
22970 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
22971 "moment-fquarter/1.0.1/moment-fquarter.js"))
22972 (sha256
22973 (base32
22974 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
22975 (propagated-inputs
22976 `(("r-htmltools" ,r-htmltools)
22977 ("r-htmlwidgets" ,r-htmlwidgets)
22978 ("r-magrittr" ,r-magrittr)
22979 ("r-xts" ,r-xts)
22980 ("r-zoo" ,r-zoo)))
22981 (home-page "https://github.com/rstudio/dygraphs")
22982 (synopsis "Interface to Dygraphs interactive time series charting library")
22983 (description
22984 "This package provides an R interface to the dygraphs JavaScript charting
22985 library (a copy of which is included in the package). It provides rich
22986 facilities for charting time-series data in R, including highly configurable
22987 series- and axis-display and interactive features like zoom/pan and
22988 series/point highlighting.")
22989 (license license:expat)))
22990
22991 (define-public r-shinystan
22992 (package
22993 (name "r-shinystan")
22994 (version "2.5.0")
22995 (source
22996 (origin
22997 (method url-fetch)
22998 (uri (cran-uri "shinystan" version))
22999 (sha256
23000 (base32
23001 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
23002 (properties `((upstream-name . "shinystan")))
23003 (build-system r-build-system)
23004 (propagated-inputs
23005 `(("r-bayesplot" ,r-bayesplot)
23006 ("r-colourpicker" ,r-colourpicker)
23007 ("r-dt" ,r-dt)
23008 ("r-dygraphs" ,r-dygraphs)
23009 ("r-ggplot2" ,r-ggplot2)
23010 ("r-gridextra" ,r-gridextra)
23011 ("r-gtools" ,r-gtools)
23012 ("r-markdown" ,r-markdown)
23013 ("r-reshape2" ,r-reshape2)
23014 ("r-rsconnect" ,r-rsconnect)
23015 ("r-rstan" ,r-rstan)
23016 ("r-shiny" ,r-shiny)
23017 ("r-shinyjs" ,r-shinyjs)
23018 ("r-shinythemes" ,r-shinythemes)
23019 ("r-threejs" ,r-threejs)
23020 ("r-xtable" ,r-xtable)
23021 ("r-xts" ,r-xts)))
23022 (home-page "https://mc-stan.org/")
23023 (synopsis "Interactive visual and numerical analysis for Bayesian models")
23024 (description
23025 "This package provides a graphical user interface for interactive
23026 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
23027 for analyzing a posterior sample. The interface is powered by the Shiny web
23028 application framework and works with the output of MCMC programs written in
23029 any programming language (and has extended functionality for Stan models fit
23030 using the @code{rstan} and @code{rstanarm} packages).")
23031 (license license:gpl3+)))
23032
23033 (define-public r-rstantools
23034 (package
23035 (name "r-rstantools")
23036 (version "2.1.1")
23037 (source
23038 (origin
23039 (method url-fetch)
23040 (uri (cran-uri "rstantools" version))
23041 (sha256
23042 (base32
23043 "0b9x8rzj3dr4m7yjx476nn42z22xd1xnw85m9frfwxy5ivg1any9"))))
23044 (properties `((upstream-name . "rstantools")))
23045 (build-system r-build-system)
23046 (inputs `(("pandoc" ,pandoc)))
23047 (propagated-inputs
23048 `(("r-desc" ,r-desc)
23049 ("r-rcpp" ,r-rcpp)
23050 ("r-rcppparallel" ,r-rcppparallel)))
23051 (native-inputs
23052 `(("r-knitr" ,r-knitr)))
23053 (home-page "https://mc-stan.org/rstantools/")
23054 (synopsis "Tools for developing R packages interfacing with Stan")
23055 (description
23056 "This package provides various tools for developers of R packages
23057 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
23058 up the required package structure, S3 generics and default methods to unify
23059 function naming across Stan-based R packages, and vignettes with
23060 recommendations for developers.")
23061 (license license:gpl3+)))
23062
23063 (define-public r-loo
23064 (package
23065 (name "r-loo")
23066 (version "2.4.1")
23067 (source
23068 (origin
23069 (method url-fetch)
23070 (uri (cran-uri "loo" version))
23071 (sha256
23072 (base32 "0l2v8zpashqbnck3qx5lp1gqjcfphzky8mxyw5gfk9wk99mzn8dw"))))
23073 (properties `((upstream-name . "loo")))
23074 (build-system r-build-system)
23075 (inputs
23076 `(("pandoc" ,pandoc)
23077 ("pandoc-citeproc" ,pandoc-citeproc)))
23078 (propagated-inputs
23079 `(("r-checkmate" ,r-checkmate)
23080 ("r-matrixstats" ,r-matrixstats)))
23081 (native-inputs
23082 `(("r-knitr" ,r-knitr)))
23083 (home-page "https://mc-stan.org/loo/")
23084 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
23085 (description
23086 "This package provides an implementation of efficient approximate
23087 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
23088 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
23089 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
23090 procedure for regularizing importance weights. As a byproduct of the
23091 calculations, we also obtain approximate standard errors for estimated
23092 predictive errors and for the comparison of predictive errors between models.
23093 The package also provides methods for using stacking and other model weighting
23094 techniques to average Bayesian predictive distributions.")
23095 (license license:gpl3+)))
23096
23097 (define-public r-rstan
23098 (package
23099 (name "r-rstan")
23100 (version "2.21.2")
23101 (source
23102 (origin
23103 (method url-fetch)
23104 (uri (cran-uri "rstan" version))
23105 (sha256
23106 (base32
23107 "0jh58qfrksd2j9w2zy4bajryivgp36m3xdb9mjrjqbk1ib9h83p3"))))
23108 (properties `((upstream-name . "rstan")))
23109 (build-system r-build-system)
23110 (arguments
23111 `(#:phases
23112 (modify-phases %standard-phases
23113 (add-before 'install 'set-timezone
23114 ;; This package is picky about timezones.
23115 (lambda* (#:key inputs #:allow-other-keys)
23116 (setenv "TZ" "UTC+1")
23117 (setenv "TZDIR"
23118 (string-append (assoc-ref inputs "tzdata")
23119 "/share/zoneinfo"))
23120 #t)))))
23121 (native-inputs
23122 `(("tzdata" ,tzdata-for-tests)
23123 ("pandoc" ,pandoc)
23124 ("r-knitr" ,r-knitr)))
23125 (propagated-inputs
23126 `(("r-bh" ,r-bh)
23127 ("r-ggplot2" ,r-ggplot2)
23128 ("r-gridextra" ,r-gridextra)
23129 ("r-inline" ,r-inline)
23130 ("r-loo" ,r-loo)
23131 ("r-pkgbuild" ,r-pkgbuild)
23132 ("r-rcpp" ,r-rcpp)
23133 ("r-rcppeigen" ,r-rcppeigen)
23134 ("r-rcppparallel" ,r-rcppparallel)
23135 ("r-stanheaders" ,r-stanheaders)
23136 ("r-v8" ,r-v8)
23137 ("r-withr" ,r-withr)))
23138 (home-page "https://discourse.mc-stan.org/")
23139 (synopsis "R interface to Stan")
23140 (description
23141 "User-facing R functions are provided to parse, compile, test, estimate,
23142 and analyze Stan models by accessing the header-only Stan library provided by
23143 the StanHeaders package. The Stan project develops a probabilistic
23144 programming language that implements full Bayesian statistical inference via
23145 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
23146 approximation, and (optionally penalized) maximum likelihood estimation via
23147 optimization. In all three cases, automatic differentiation is used to
23148 quickly and accurately evaluate gradients without burdening the user with the
23149 need to derive the partial derivatives.")
23150 (license license:gpl3+)))
23151
23152 (define-public r-rstanarm
23153 (package
23154 (name "r-rstanarm")
23155 (version "2.21.1")
23156 (source
23157 (origin
23158 (method url-fetch)
23159 (uri (cran-uri "rstanarm" version))
23160 (sha256
23161 (base32
23162 "04ggzak3f7jaxza3dxyrmxp5b48qcgyspy22ykbhr03g4hzp7jk8"))))
23163 (properties `((upstream-name . "rstanarm")))
23164 (build-system r-build-system)
23165 (inputs
23166 `(("pandoc" ,pandoc)
23167 ("pandoc-citeproc" ,pandoc-citeproc)))
23168 (propagated-inputs
23169 `(("r-bayesplot" ,r-bayesplot)
23170 ("r-bh" ,r-bh)
23171 ("r-ggplot2" ,r-ggplot2)
23172 ("r-lme4" ,r-lme4)
23173 ("r-loo" ,r-loo)
23174 ("r-matrix" ,r-matrix)
23175 ("r-nlme" ,r-nlme)
23176 ("r-rcpp" ,r-rcpp)
23177 ("r-rcppeigen" ,r-rcppeigen)
23178 ("r-rcppparallel" ,r-rcppparallel)
23179 ("r-rstan" ,r-rstan)
23180 ("r-rstantools" ,r-rstantools)
23181 ("r-shinystan" ,r-shinystan)
23182 ("r-stanheaders" ,r-stanheaders)
23183 ("r-survival" ,r-survival)))
23184 (native-inputs
23185 `(("r-knitr" ,r-knitr)))
23186 (home-page "https://mc-stan.org/rstanarm/")
23187 (synopsis "Bayesian applied regression modeling via Stan")
23188 (description
23189 "This package estimates previously compiled regression models using the
23190 @code{rstan} package, which provides the R interface to the Stan C++ library
23191 for Bayesian estimation. Users specify models via the customary R syntax with
23192 a formula and @code{data.frame} plus some additional arguments for priors.")
23193 (license license:gpl3+)))
23194
23195 (define-public r-kendall
23196 (package
23197 (name "r-kendall")
23198 (version "2.2")
23199 (source
23200 (origin
23201 (method url-fetch)
23202 (uri (cran-uri "Kendall" version))
23203 (sha256
23204 (base32
23205 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
23206 (properties `((upstream-name . "Kendall")))
23207 (build-system r-build-system)
23208 (propagated-inputs
23209 `(("r-boot" ,r-boot)))
23210 (native-inputs
23211 `(("gfortran" ,gfortran)))
23212 (home-page "https://cran.r-project.org/web/packages/Kendall/")
23213 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
23214 (description
23215 "This package computes the Kendall rank correlation and Mann-Kendall
23216 trend test.")
23217 (license license:gpl2+)))
23218
23219 (define-public r-keyring
23220 (package
23221 (name "r-keyring")
23222 (version "1.1.0")
23223 (source
23224 (origin
23225 (method url-fetch)
23226 (uri (cran-uri "keyring" version))
23227 (sha256
23228 (base32
23229 "1hpfd4hbx43i39l995rg86kfxi7wlyla1gv8mwcdr4xx7z122zzq"))))
23230 (properties `((upstream-name . "keyring")))
23231 (build-system r-build-system)
23232 (propagated-inputs
23233 `(("r-assertthat" ,r-assertthat)
23234 ("r-filelock" ,r-filelock)
23235 ("r-getpass" ,r-getpass)
23236 ("r-openssl" ,r-openssl)
23237 ("r-r6" ,r-r6)
23238 ("r-rappdirs" ,r-rappdirs)
23239 ("r-sodium" ,r-sodium)
23240 ("r-yaml" ,r-yaml)))
23241 (native-inputs `(("pkg-config" ,pkg-config)))
23242 (home-page "https://github.com/r-lib/keyring")
23243 (synopsis "Access the system credential store from R")
23244 (description
23245 "This package provides a platform-independent API to access the operating
23246 system's credential store. It currently supports Keychain on macOS,
23247 Credential Store on Windows, the Secret Service API on GNU/Linux, and a
23248 simple, platform independent store implemented with environment variables.
23249 Additional storage back-ends can be added easily.")
23250 (license license:expat)))
23251
23252 (define-public r-zyp
23253 (package
23254 (name "r-zyp")
23255 (version "0.10-1.1")
23256 (source
23257 (origin
23258 (method url-fetch)
23259 (uri (cran-uri "zyp" version))
23260 (sha256
23261 (base32
23262 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
23263 (properties `((upstream-name . "zyp")))
23264 (build-system r-build-system)
23265 (propagated-inputs
23266 `(("r-kendall" ,r-kendall)))
23267 (home-page "https://cran.r-project.org/web/packages/zyp/")
23268 (synopsis "Zhang + Yue-Pilon Trends Package")
23269 (description
23270 "This package contains an efficient implementation of Sen's slope
23271 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
23272 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
23273 climate data.")
23274 (license license:lgpl2.1)))
23275
23276 (define-public r-rlinsolve
23277 (package
23278 (name "r-rlinsolve")
23279 (version "0.3.1")
23280 (source
23281 (origin
23282 (method url-fetch)
23283 (uri (cran-uri "Rlinsolve" version))
23284 (sha256
23285 (base32
23286 "1x02xxbkchcwwfa2123n9yqfzinfi0zba8zxhp977czzwysy75cc"))))
23287 (properties `((upstream-name . "Rlinsolve")))
23288 (build-system r-build-system)
23289 (propagated-inputs
23290 `(("r-matrix" ,r-matrix)
23291 ("r-rcpp" ,r-rcpp)
23292 ("r-rcpparmadillo" ,r-rcpparmadillo)
23293 ("r-rdpack" ,r-rdpack)))
23294 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
23295 (synopsis "Iterative solvers for (sparse) linear system of equations")
23296 (description
23297 "Solving a system of linear equations is one of the most fundamental
23298 computational problems for many fields of mathematical studies, such as
23299 regression problems from statistics or numerical partial differential
23300 equations. This package provides basic stationary iterative solvers such as
23301 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
23302 Nonstationary, also known as Krylov subspace methods are also provided.
23303 Sparse matrix computation is also supported in that solving large and sparse
23304 linear systems can be manageable using the @code{Matrix} package along with
23305 @code{RcppArmadillo}.")
23306 (license license:gpl3+)))
23307
23308 (define-public r-zvcv
23309 (package
23310 (name "r-zvcv")
23311 (version "2.1.0")
23312 (source
23313 (origin
23314 (method url-fetch)
23315 (uri (cran-uri "ZVCV" version))
23316 (sha256
23317 (base32
23318 "0np6h6x74kz1x13wmbkkm1wq43d8bnn2khzjc80prqdi6n0m9v8r"))))
23319 (properties `((upstream-name . "ZVCV")))
23320 (build-system r-build-system)
23321 (propagated-inputs
23322 `(("r-abind" ,r-abind)
23323 ("r-bh" ,r-bh)
23324 ("r-dplyr" ,r-dplyr)
23325 ("r-glmnet" ,r-glmnet)
23326 ("r-magrittr" ,r-magrittr)
23327 ("r-mvtnorm" ,r-mvtnorm)
23328 ("r-rcpp" ,r-rcpp)
23329 ("r-rcpparmadillo" ,r-rcpparmadillo)
23330 ("r-rlinsolve" ,r-rlinsolve)))
23331 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
23332 (synopsis "Zero-Variance Control Variates")
23333 (description
23334 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
23335 to reduce the variance of Monte Carlo estimators of expectations using the
23336 derivatives of the log target. Once the derivatives are available, the only
23337 additional computational effort is in solving a linear regression problem.
23338 This method has been extended to higher dimensions using regularisation. This
23339 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
23340 samples, derivatives and function evaluations are available. Additional
23341 functions for applying ZV-CV to two estimators for the normalising constant of
23342 the posterior distribution in Bayesian statistics are also supplied.")
23343 (license license:gpl2+)))
23344
23345 (define-public r-ztype
23346 (package
23347 (name "r-ztype")
23348 (version "0.1.0")
23349 (source
23350 (origin
23351 (method url-fetch)
23352 (uri (cran-uri "ztype" version))
23353 (sha256
23354 (base32
23355 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
23356 (properties `((upstream-name . "ztype")))
23357 (build-system r-build-system)
23358 (propagated-inputs
23359 `(("r-assertthat" ,r-assertthat)
23360 ("r-dplyr" ,r-dplyr)
23361 ("r-ggplot2" ,r-ggplot2)
23362 ("r-lubridate" ,r-lubridate)
23363 ("r-magrittr" ,r-magrittr)
23364 ("r-rvest" ,r-rvest)
23365 ("r-stringr" ,r-stringr)))
23366 (home-page "https://cran.r-project.org/web/packages/ztype/")
23367 (synopsis "Run a Ztype game loaded with R functions")
23368 (description
23369 "How fast can you type R functions on your keyboard? Find out by running
23370 a @code{zty.pe} game: export R functions as instructions to type to destroy
23371 opponents' vessels.")
23372 (license license:gpl3)))
23373
23374 (define-public r-zseq
23375 (package
23376 (name "r-zseq")
23377 (version "0.2.0")
23378 (source
23379 (origin
23380 (method url-fetch)
23381 (uri (cran-uri "Zseq" version))
23382 (sha256
23383 (base32
23384 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
23385 (properties `((upstream-name . "Zseq")))
23386 (build-system r-build-system)
23387 (propagated-inputs
23388 `(("r-gmp" ,r-gmp)))
23389 (home-page "https://cran.r-project.org/web/packages/Zseq/")
23390 (synopsis "Integer sequence generator")
23391 (description
23392 "This package generates well-known integer sequences. The @code{gmp}
23393 package is adopted for computing with arbitrarily large numbers. Every
23394 function has a hyperlink to its corresponding item in the @dfn{On-Line
23395 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
23396 (license license:gpl3+)))
23397
23398 (define-public r-isoband
23399 (package
23400 (name "r-isoband")
23401 (version "0.2.4")
23402 (source
23403 (origin
23404 (method url-fetch)
23405 (uri (cran-uri "isoband" version))
23406 (sha256
23407 (base32
23408 "0z1qpxcl8b6fi691fbdr3vrb19mn4pas1iff62zl1bafzbdvpmcn"))))
23409 (properties `((upstream-name . "isoband")))
23410 (build-system r-build-system)
23411 (native-inputs
23412 `(("r-knitr" ,r-knitr)))
23413 (home-page "https://github.com/wilkelab/isoband")
23414 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
23415 (description
23416 "This package provides a fast C++ implementation to generate contour
23417 lines (isolines) and contour polygons (isobands) from regularly spaced grids
23418 containing elevation data.")
23419 (license license:expat)))
23420
23421 (define-public r-ppcor
23422 (package
23423 (name "r-ppcor")
23424 (version "1.1")
23425 (source
23426 (origin
23427 (method url-fetch)
23428 (uri (cran-uri "ppcor" version))
23429 (sha256
23430 (base32
23431 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
23432 (properties `((upstream-name . "ppcor")))
23433 (build-system r-build-system)
23434 (propagated-inputs
23435 `(("r-mass" ,r-mass)))
23436 (home-page "https://cran.r-project.org/web/packages/ppcor/")
23437 (synopsis "Partial and semi-partial correlation")
23438 (description
23439 "This package provides users not only with a function to readily
23440 calculate the higher-order partial and semi-partial correlations but also with
23441 statistics and p-values of the correlation coefficients.")
23442 (license license:gpl2)))
23443
23444 (define-public r-hrbrthemes
23445 (package
23446 (name "r-hrbrthemes")
23447 (version "0.8.0")
23448 (source
23449 (origin
23450 (method url-fetch)
23451 (uri (cran-uri "hrbrthemes" version))
23452 (sha256
23453 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
23454 (properties `((upstream-name . "hrbrthemes")))
23455 (build-system r-build-system)
23456 (propagated-inputs
23457 `(("r-extrafont" ,r-extrafont)
23458 ("r-gdtools" ,r-gdtools)
23459 ("r-ggplot2" ,r-ggplot2)
23460 ("r-htmltools" ,r-htmltools)
23461 ("r-knitr" ,r-knitr)
23462 ("r-magrittr" ,r-magrittr)
23463 ("r-rmarkdown" ,r-rmarkdown)
23464 ("r-scales" ,r-scales)))
23465 (native-inputs
23466 `(("r-knitr" ,r-knitr)))
23467 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
23468 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
23469 (description
23470 "This package provides a compilation of extra @code{ggplot2} themes,
23471 scales and utilities, including a spell check function for plot label fields
23472 and an overall emphasis on typography.")
23473 (license license:expat)))
23474
23475 (define-public r-crochet
23476 (package
23477 (name "r-crochet")
23478 (version "2.3.0")
23479 (source
23480 (origin
23481 (method url-fetch)
23482 (uri (cran-uri "crochet" version))
23483 (sha256
23484 (base32
23485 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
23486 (build-system r-build-system)
23487 (native-inputs
23488 `(("r-knitr" ,r-knitr)))
23489 (home-page "https://github.com/agrueneberg/crochet")
23490 (synopsis "Implementation Helper for Matrix-Like Types")
23491 (description
23492 "Functions to help implement the extraction / subsetting / indexing
23493 function @code{[} and replacement function @code{[<-} of custom matrix-like
23494 types (based on S3, S4, etc.), modeled as closely to the base matrix class
23495 as possible (with tests to prove it).")
23496 (license license:expat)))
23497
23498 (define-public r-boa
23499 (package
23500 (name "r-boa")
23501 (version "1.1.8-2")
23502 (source
23503 (origin
23504 (method url-fetch)
23505 (uri (cran-uri "boa" version))
23506 (sha256
23507 (base32
23508 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
23509 (properties `((upstream-name . "boa")))
23510 (build-system r-build-system)
23511 (home-page "https://www.jstatsoft.org/v21/i11")
23512 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
23513 (description
23514 "This package provides a menu-driven program and library of functions for
23515 carrying out convergence diagnostics and statistical and graphical analysis of
23516 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
23517 (license license:gpl2+)))
23518
23519 (define-public r-httpcode
23520 (package
23521 (name "r-httpcode")
23522 (version "0.3.0")
23523 (source (origin
23524 (method url-fetch)
23525 (uri (cran-uri "httpcode" version))
23526 (sha256
23527 (base32
23528 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
23529 (build-system r-build-system)
23530 (home-page "https://github.com/sckott/httpcode")
23531 (synopsis "HTTP status code helper")
23532 (description "@code{httpcode} provides functionality for finding and
23533 explaining the meaning of @code{HTTP} status codes. Functions are included for
23534 searching for codes by full or partial number, by message, and to get
23535 appropriate dog and cat images for many status codes.")
23536 (license license:expat)))
23537
23538 (define-public r-latex2exp
23539 (package
23540 (name "r-latex2exp")
23541 (version "0.4.0")
23542 (source (origin
23543 (method url-fetch)
23544 (uri (cran-uri "latex2exp" version))
23545 (sha256
23546 (base32
23547 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
23548 (build-system r-build-system)
23549 (propagated-inputs
23550 `(("r-stringr" ,r-stringr)
23551 ("r-magrittr" ,r-magrittr)))
23552 (home-page "https://github.com/stefano-meschiari/latex2exp/")
23553 (synopsis "Use LaTeX expressions in plots")
23554 (description "@code{latex2exp} parses and converts LaTeX math formulas to
23555 R's plotmath expressions, used to enter mathematical formulas and symbols to be
23556 rendered as text, axis labels, etc. throughout R's plotting system.")
23557 (license license:expat)))
23558
23559 (define-public r-oai
23560 (package
23561 (name "r-oai")
23562 (version "0.3.0")
23563 (source (origin
23564 (method url-fetch)
23565 (uri (cran-uri "oai" version))
23566 (sha256
23567 (base32
23568 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
23569 (build-system r-build-system)
23570 (propagated-inputs
23571 `(("r-xml2" ,r-xml2)
23572 ("r-httr" ,r-httr)
23573 ("r-plyr" ,r-plyr)
23574 ("r-stringr" ,r-stringr)
23575 ("r-tibble" ,r-tibble)))
23576 (home-page "https://github.com/ropensci/oai/")
23577 (synopsis "General purpose OAI-PMH services client")
23578 (description "@code{oai} provides a general purpose client to work with
23579 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
23580 service. Functions are provided to work with the OAI-PMH verbs:
23581 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
23582 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
23583 (license license:expat)))
23584
23585 (define-public r-argon2
23586 (package
23587 (name "r-argon2")
23588 (version "0.2-0")
23589 (source
23590 (origin
23591 (method url-fetch)
23592 (uri (cran-uri "argon2" version))
23593 (sha256
23594 (base32
23595 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
23596 (properties `((upstream-name . "argon2")))
23597 (build-system r-build-system)
23598 (home-page "https://github.com/wrathematics/argon2")
23599 (synopsis "Secure password hashing based on the argon2 algorithm")
23600 (description
23601 "This package provides utilities for secure password hashing via the
23602 argon2 algorithm.")
23603 (license license:bsd-2)))
23604
23605 (define-public r-getpass
23606 (package
23607 (name "r-getpass")
23608 (version "0.2-2")
23609 (source
23610 (origin
23611 (method url-fetch)
23612 (uri (cran-uri "getPass" version))
23613 (sha256
23614 (base32
23615 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
23616 (properties `((upstream-name . "getPass")))
23617 (build-system r-build-system)
23618 (propagated-inputs
23619 `(("r-rstudioapi" ,r-rstudioapi)))
23620 (home-page "https://github.com/wrathematics/getPass")
23621 (synopsis "Masked user input")
23622 (description
23623 "This package provides a micro-package for reading \"passwords\", i.e.
23624 reading user input with masking, so that the input is not displayed as it is
23625 typed. Currently, RStudio, the command line (every OS), and any platform
23626 where tcltk is present are supported.")
23627 (license license:bsd-2)))
23628
23629 (define-public r-remoter
23630 (package
23631 (name "r-remoter")
23632 (version "0.4-0")
23633 (source
23634 (origin
23635 (method url-fetch)
23636 (uri (cran-uri "remoter" version))
23637 (sha256
23638 (base32
23639 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
23640 (properties `((upstream-name . "remoter")))
23641 (build-system r-build-system)
23642 (propagated-inputs
23643 `(("r-argon2" ,r-argon2)
23644 ("r-getpass" ,r-getpass)
23645 ("r-pbdzmq" ,r-pbdzmq)
23646 ("r-png" ,r-png)))
23647 (home-page "https://github.com/RBigData/remoter")
23648 (synopsis "Control a remote R session from a local one")
23649 (description
23650 "This package provides a set of utilities for client/server computing
23651 with R, controlling a remote R session (the server) from a local one (the
23652 client).")
23653 (license license:bsd-2)))
23654
23655 (define-public r-asd
23656 (package
23657 (name "r-asd")
23658 (version "2.2")
23659 (source
23660 (origin
23661 (method url-fetch)
23662 (uri (cran-uri "asd" version))
23663 (sha256
23664 (base32
23665 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
23666 (properties `((upstream-name . "asd")))
23667 (build-system r-build-system)
23668 (propagated-inputs
23669 `(("r-mvtnorm" ,r-mvtnorm)))
23670 (home-page "https://cran.r-project.org/web/packages/asd")
23671 (synopsis "Simulations for Adaptive Seamless Designs")
23672 (description
23673 "This package provdes means to run simulations for adaptive seamless
23674 designs with and without early outcomes for treatment selection and
23675 subpopulation type designs.")
23676 (license license:gpl3)))
23677
23678 (define-public r-nbconvertr
23679 (package
23680 (name "r-nbconvertr")
23681 (version "1.3.2")
23682 (source
23683 (origin
23684 (method url-fetch)
23685 (uri (cran-uri "nbconvertR" version))
23686 (sha256
23687 (base32
23688 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
23689 (properties `((upstream-name . "nbconvertR")))
23690 (build-system r-build-system)
23691 (inputs
23692 `(("jupyter" ,python-nbconvert)
23693 ("pandoc" ,pandoc)))
23694 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
23695 (synopsis "Vignette engine wrapping Jupyter notebooks")
23696 (description
23697 "This package calls the Jupyter script @code{nbconvert} to create
23698 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
23699 containing rich text, code, and its output. Code cells can be edited and
23700 evaluated interactively.")
23701 (license license:gpl3)))
23702
23703 (define-public r-bridgesampling
23704 (package
23705 (name "r-bridgesampling")
23706 (version "1.0-0")
23707 (source
23708 (origin
23709 (method url-fetch)
23710 (uri (cran-uri "bridgesampling" version))
23711 (sha256
23712 (base32
23713 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
23714 (properties
23715 `((upstream-name . "bridgesampling")))
23716 (build-system r-build-system)
23717 (propagated-inputs
23718 `(("r-brobdingnag" ,r-brobdingnag)
23719 ("r-coda" ,r-coda)
23720 ("r-matrix" ,r-matrix)
23721 ("r-mvtnorm" ,r-mvtnorm)
23722 ("r-scales" ,r-scales)
23723 ("r-stringr" ,r-stringr)))
23724 (native-inputs
23725 `(("r-knitr" ,r-knitr)))
23726 (home-page "https://github.com/quentingronau/bridgesampling")
23727 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
23728 (description
23729 "This package provides functions for estimating marginal likelihoods,
23730 Bayes factors, posterior model probabilities, and normalizing constants in
23731 general, via different versions of bridge sampling.")
23732 (license license:gpl2+)))
23733
23734 (define-public r-tea
23735 (package
23736 (name "r-tea")
23737 (version "1.1")
23738 (source
23739 (origin
23740 (method url-fetch)
23741 (uri (cran-uri "tea" version))
23742 (sha256
23743 (base32
23744 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
23745 (properties
23746 `((upstream-name . "tea")))
23747 (build-system r-build-system)
23748 (propagated-inputs
23749 `(("r-matrix" ,r-matrix)))
23750 (home-page "https://cran.r-project.org/web/packages/tea/")
23751 (synopsis "Threshold estimation approaches")
23752 (description
23753 "This package provides different approaches for selecting the threshold
23754 in generalized Pareto distributions. Most of them are based on minimizing the
23755 AMSE-criterion or at least by reducing the bias of the assumed GPD-model.
23756 Others are heuristically motivated by searching for stable sample paths, i.e.
23757 a nearly constant region of the tail index estimator with respect to k, which
23758 is the number of data in the tail. The third class is motivated by graphical
23759 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
23760 is also implemented here.")
23761 (license license:gpl3)))
23762
23763 (define-public r-awsmethods
23764 (package
23765 (name "r-awsmethods")
23766 (version "1.1-1")
23767 (source
23768 (origin
23769 (method url-fetch)
23770 (uri (cran-uri "awsMethods" version))
23771 (sha256
23772 (base32
23773 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
23774 (properties
23775 `((upstream-name . "awsMethods")))
23776 (build-system r-build-system)
23777 (home-page "http://www.wias-berlin.de/software/imaging/")
23778 (synopsis "Class and methods definitions")
23779 (description
23780 "This package defines the generic method @code{extract} and provides
23781 @code{openMP} support as needed in several packages like
23782 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
23783 (license license:gpl2+)))
23784
23785 (define-public r-aws
23786 (package
23787 (name "r-aws")
23788 (version "2.5-1")
23789 (source
23790 (origin
23791 (method url-fetch)
23792 (uri (cran-uri "aws" version))
23793 (sha256
23794 (base32
23795 "1fhm87iax6bkvd4vszvjbcqw3b2drs11rjxr7zf2w4sgc72svaz8"))))
23796 (properties
23797 `((upstream-name . "aws")))
23798 (build-system r-build-system)
23799 (propagated-inputs
23800 `(("r-awsmethods" ,r-awsmethods)
23801 ("r-gsl" ,r-gsl)))
23802 (native-inputs
23803 `(("gfortran" ,gfortran)))
23804 (home-page "https://cran.r-project.org/web/packages/aws/")
23805 (synopsis "Adaptive weights smoothing")
23806 (description
23807 "This package provides a collection of R-functions implementing adaptive
23808 smoothing procedures in 1D, 2D and 3D. This includes the
23809 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
23810 Confidence Intervals} (ICI), variational approaches, and a non-local means
23811 filter.")
23812 (license license:gpl2+)))
23813
23814 (define-public r-sgloptim
23815 (package
23816 (name "r-sgloptim")
23817 (version "1.3.8")
23818 (source
23819 (origin
23820 (method url-fetch)
23821 (uri (cran-uri "sglOptim" version))
23822 (sha256
23823 (base32
23824 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
23825 (properties
23826 `((upstream-name . "sglOptim")))
23827 (build-system r-build-system)
23828 (propagated-inputs
23829 `(("r-bh" ,r-bh)
23830 ("r-doparallel" ,r-doparallel)
23831 ("r-foreach" ,r-foreach)
23832 ("r-matrix" ,r-matrix)
23833 ("r-rcpp" ,r-rcpp)
23834 ("r-rcpparmadillo" ,r-rcpparmadillo)
23835 ("r-rcppprogress" ,r-rcppprogress)))
23836 (native-inputs
23837 `(("r-knitr" ,r-knitr)))
23838 (home-page "https://github.com/nielsrhansen/sglOptim")
23839 (synopsis "Generic sparse group Lasso solver")
23840 (description
23841 "This package provides a fast generic solver for sparse group lasso
23842 optimization problems. The loss (objective) function must be defined in a C++
23843 module. The optimization problem is solved using a coordinate gradient
23844 descent algorithm. Convergence of the algorithm is established and the
23845 algorithm is applicable to a broad class of loss functions. Use of parallel
23846 computing for cross validation and subsampling is supported through the
23847 @code{foreach} and @code{doParallel} packages.")
23848 (license license:gpl2+)))
23849
23850 (define-public r-grouped
23851 (package
23852 (name "r-grouped")
23853 (version "0.6-0")
23854 (source
23855 (origin
23856 (method url-fetch)
23857 (uri (cran-uri "grouped" version))
23858 (sha256
23859 (base32
23860 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
23861 (properties
23862 `((upstream-name . "grouped")))
23863 (build-system r-build-system)
23864 (propagated-inputs
23865 `(("r-mass" ,r-mass)))
23866 (home-page "https://cran.r-project.org/web/packages/grouped/")
23867 (synopsis "Regression analysis of grouped and coarse data")
23868 (description
23869 "This package provides regression models for grouped and coarse data,
23870 under the coarsened at random assumption.")
23871 (license license:gpl2+)))
23872
23873 (define-public r-stam
23874 (package
23875 (name "r-stam")
23876 (version "0.0-1")
23877 (source
23878 (origin
23879 (method url-fetch)
23880 (uri (cran-uri "stam" version))
23881 (sha256
23882 (base32
23883 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
23884 (properties
23885 `((upstream-name . "stam")))
23886 (build-system r-build-system)
23887 (propagated-inputs
23888 `(("r-np" ,r-np)
23889 ("r-sp" ,r-sp)))
23890 (home-page "https://cran.r-project.org/web/packages/stam")
23891 (synopsis "Spatio-temporal analysis and modelling")
23892 (description
23893 "This package provides various methods to conduct Spatio-Temporal
23894 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
23895 Inferred Spatio-Temporal Modelling.")
23896 (license license:gpl2+)))
23897
23898 (define-public r-dcv
23899 (package
23900 (name "r-dcv")
23901 (version "0.1.1")
23902 (source
23903 (origin
23904 (method url-fetch)
23905 (uri (cran-uri "dcv" version))
23906 (sha256
23907 (base32
23908 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
23909 (properties
23910 `((upstream-name . "dcv")))
23911 (build-system r-build-system)
23912 (propagated-inputs
23913 `(("r-lmtest" ,r-lmtest)))
23914 (home-page "https://cran.r-project.org/web/packages/dcv/")
23915 (synopsis "Conventional cross-validation statistics for climate-growth model")
23916 (description
23917 "This package performs several conventional cross-validation statistical
23918 methods for climate-growth model in the climate reconstruction from tree
23919 rings, including Sign Test statistic, Reduction of Error statistic, Product
23920 Mean Test, Durbin-Watson statistic etc.")
23921 (license license:gpl2)))
23922
23923 (define-public r-rcdd
23924 (package
23925 (name "r-rcdd")
23926 (version "1.2-2")
23927 (source
23928 (origin
23929 (method url-fetch)
23930 (uri (cran-uri "rcdd" version))
23931 (sha256
23932 (base32
23933 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
23934 (properties
23935 `((upstream-name . "rcdd")))
23936 (build-system r-build-system)
23937 (inputs
23938 `(("gmp" ,gmp)))
23939 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
23940 (synopsis "Computational geometry")
23941 (description
23942 "This package converts back and forth between two representations of a
23943 convex polytope: as solution of a set of linear equalities and inequalities
23944 and as convex hull of set of points and rays. Also does linear programming
23945 and redundant generator elimination. All functions can use exact
23946 infinite-precision rational arithmetic.")
23947 (license license:gpl2)))
23948
23949 (define-public r-rxnat
23950 (package
23951 (name "r-rxnat")
23952 (version "1.0.14")
23953 (source
23954 (origin
23955 (method url-fetch)
23956 (uri (cran-uri "Rxnat" version))
23957 (sha256
23958 (base32
23959 "00fl68pa0c2vy4xlny67pn41lzgm7b97wgg3dwm6z35izca62l11"))))
23960 (properties
23961 `((upstream-name . "Rxnat")))
23962 (build-system r-build-system)
23963 (propagated-inputs
23964 `(("r-dplyr" ,r-dplyr)
23965 ("r-httr" ,r-httr)
23966 ("r-rcurl" ,r-rcurl)
23967 ("r-tibble" ,r-tibble)))
23968 (native-inputs
23969 `(("r-knitr" ,r-knitr)))
23970 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
23971 (synopsis "Queries and extracts images from neuroimaging datasets")
23972 (description
23973 "This package allows communication with the Extensible Neuroimaging
23974 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
23975 download images.")
23976 (license license:gpl2)))
23977
23978 (define-public r-rserve
23979 (package
23980 (name "r-rserve")
23981 (version "1.8-6")
23982 (source
23983 (origin
23984 (method url-fetch)
23985 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
23986 version ".tar.gz"))
23987 (sha256
23988 (base32
23989 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
23990 (build-system r-build-system)
23991 (arguments
23992 `(#:phases
23993 (modify-phases %standard-phases
23994 (add-before 'install 'install-server-binary
23995 ;; Makevars tries to install to R's store directory.
23996 (lambda* (#:key outputs #:allow-other-keys)
23997 (let* ((out (assoc-ref outputs "out"))
23998 (bin (string-append out "/bin")))
23999 (substitute* "src/Makevars.in"
24000 (("\\$\\(R_HOME\\)") out))
24001 (mkdir-p bin)))))))
24002 (propagated-inputs
24003 `(("r-checkmate" ,r-checkmate)
24004 ("r-mime" ,r-mime)
24005 ("r-jsonlite" ,r-jsonlite)
24006 ("r-knitr" ,r-knitr)
24007 ("r-r6" ,r-r6)
24008 ("r-rcpp" ,r-rcpp)
24009 ("r-uuid" ,r-uuid)))
24010 (inputs
24011 `(("openssl" ,openssl)
24012 ("zlib" ,zlib)))
24013 (home-page "https://github.com/s-u/Rserve")
24014 (synopsis
24015 "Server providing access to R from many languages and systems")
24016 (description
24017 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
24018 binary requests to be sent to R. Every connection has a separate workspace
24019 and working directory. Client-side implementations are available for popular
24020 languages such as C/C++ and Java, allowing any application to use facilities
24021 of R without the need of linking to R code. Rserve supports remote
24022 connection, user authentication and file transfer. A simple R client is
24023 included in this package as well.")
24024 (license license:gpl2)))
24025
24026 (define-public r-gamm4
24027 (package
24028 (name "r-gamm4")
24029 (version "0.2-6")
24030 (source
24031 (origin
24032 (method url-fetch)
24033 (uri (cran-uri "gamm4" version))
24034 (sha256
24035 (base32
24036 "128c725y9s07c1m9cvd9hgi9hldrymcs5divd8pw7bdjh9jvdiap"))))
24037 (properties `((upstream-name . "gamm4")))
24038 (build-system r-build-system)
24039 (propagated-inputs
24040 `(("r-lme4" ,r-lme4)
24041 ("r-matrix" ,r-matrix)
24042 ("r-mgcv" ,r-mgcv)))
24043 (home-page "https://cran.r-project.org/web/packages/gamm4/")
24044 (synopsis "Generalized additive mixed models using mgcv and lme4")
24045 (description
24046 "Estimate generalized additive mixed models via a version of function
24047 @code{gamm} from the @code{mgcv} package, using the @code{lme4} packagefor
24048 estimation.")
24049 (license license:gpl2+)))
24050
24051 (define-public r-optimx
24052 (package
24053 (name "r-optimx")
24054 (version "2020-4.2")
24055 (source
24056 (origin
24057 (method url-fetch)
24058 (uri (cran-uri "optimx" version))
24059 (sha256
24060 (base32
24061 "00bi2sr2hr7x6cfwlsn7hz2r56lcyv9naa8vmfcgr1r269fc50b3"))))
24062 (properties `((upstream-name . "optimx")))
24063 (build-system r-build-system)
24064 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
24065 (native-inputs `(("r-knitr" ,r-knitr)))
24066 (home-page "https://cran.r-project.org/web/packages/optimx/")
24067 (synopsis "Expanded replacement and extension of the optim function")
24068 (description
24069 "This package provides a replacement and extension of the @code{optim}
24070 function to call to several function minimization codes in R in a single
24071 statement. These methods handle smooth, possibly box constrained functions of
24072 several or many parameters. Note that the function @code{optimr} was prepared
24073 to simplify the incorporation of minimization codes going forward. This
24074 package also implements some utility codes and some extra solvers, including
24075 safeguarded Newton methods. Many methods previously separate are now included
24076 here.")
24077 (license license:gpl2)))
24078
24079 (define-public r-projpred
24080 (package
24081 (name "r-projpred")
24082 (version "2.0.2")
24083 (source
24084 (origin
24085 (method url-fetch)
24086 (uri (cran-uri "projpred" version))
24087 (sha256
24088 (base32
24089 "0nx514mrfh3gv854pr71w5x3zgdnn0kinf5nh7z90q3h7ysry2mg"))))
24090 (properties `((upstream-name . "projpred")))
24091 (build-system r-build-system)
24092 (propagated-inputs
24093 `(("r-dplyr" ,r-dplyr)
24094 ("r-gamm4" ,r-gamm4)
24095 ("r-ggplot2" ,r-ggplot2)
24096 ("r-lme4" ,r-lme4)
24097 ("r-loo" ,r-loo)
24098 ("r-magrittr" ,r-magrittr)
24099 ("r-mass" ,r-mass)
24100 ("r-mgcv" ,r-mgcv)
24101 ("r-optimx" ,r-optimx)
24102 ("r-rcpp" ,r-rcpp)
24103 ("r-rcpparmadillo" ,r-rcpparmadillo)
24104 ("r-rngtools" ,r-rngtools)
24105 ("r-rstantools" ,r-rstantools)
24106 ("r-tidyverse" ,r-tidyverse)))
24107 (native-inputs `(("r-knitr" ,r-knitr)))
24108 (home-page "https://mc-stan.org/projpred/")
24109 (synopsis "Projection predictive feature selection")
24110 (description
24111 "This package performs projection predictive feature selection for
24112 generalized linear models and generalized linear and additive multilevel
24113 models. The package is compatible with the @code{rstanarm} and @code{brms}
24114 packages, but other reference models can also be used. See the package
24115 vignette for more information and examples.")
24116 (license license:gpl3)))
24117
24118 (define-public r-brms
24119 (package
24120 (name "r-brms")
24121 (version "2.14.4")
24122 (source
24123 (origin
24124 (method url-fetch)
24125 (uri (cran-uri "brms" version))
24126 (sha256
24127 (base32
24128 "0mzwihhgmn405l6zq11a180q4k3chggj9qj0j7q838b9vrszg59j"))))
24129 (properties `((upstream-name . "brms")))
24130 (build-system r-build-system)
24131 (propagated-inputs
24132 `(("r-abind" ,r-abind)
24133 ("r-backports" ,r-backports)
24134 ("r-bayesplot" ,r-bayesplot)
24135 ("r-bridgesampling" ,r-bridgesampling)
24136 ("r-coda" ,r-coda)
24137 ("r-future" ,r-future)
24138 ("r-ggplot2" ,r-ggplot2)
24139 ("r-glue" ,r-glue)
24140 ("r-loo" ,r-loo)
24141 ("r-matrix" ,r-matrix)
24142 ("r-matrixstats" ,r-matrixstats)
24143 ("r-mgcv" ,r-mgcv)
24144 ("r-nleqslv" ,r-nleqslv)
24145 ("r-nlme" ,r-nlme)
24146 ("r-projpred" ,r-projpred)
24147 ("r-rcpp" ,r-rcpp)
24148 ("r-rstan" ,r-rstan)
24149 ("r-rstantools" ,r-rstantools)
24150 ("r-shinystan" ,r-shinystan)))
24151 (native-inputs `(("r-knitr" ,r-knitr)))
24152 (home-page
24153 "https://github.com/paul-buerkner/brms")
24154 (synopsis
24155 "Bayesian Regression Models using 'Stan'")
24156 (description
24157 "Fit Bayesian generalized (non-)linear multivariate multilevel models
24158 using 'Stan' for full Bayesian inference. A wide range of distributions and
24159 link functions are supported, allowing users to fit -- among others -- linear,
24160 robust linear, count data, survival, response times, ordinal, zero-inflated,
24161 hurdle, and even self-defined mixture models all in a multilevel context.
24162 Further modeling options include non-linear and smooth terms, auto-correlation
24163 structures, censored data, meta-analytic standard errors, and quite a few
24164 more. In addition, all parameters of the response distribution can be
24165 predicted in order to perform distributional regression. Prior specifications
24166 are flexible and explicitly encourage users to apply prior distributions that
24167 actually reflect their beliefs. Model fit can easily be assessed and compared
24168 with posterior predictive checks and leave-one-out cross-validation.")
24169 (license license:gpl2)))
24170
24171 (define-public r-mstate
24172 (package
24173 (name "r-mstate")
24174 (version "0.3.1")
24175 (source
24176 (origin
24177 (method url-fetch)
24178 (uri (cran-uri "mstate" version))
24179 (sha256
24180 (base32
24181 "11i3p7fph8nbnfis1m7rdrq32qryaajv2wrkxk1x6k17zkh4rq6i"))))
24182 (properties `((upstream-name . "mstate")))
24183 (build-system r-build-system)
24184 (propagated-inputs
24185 `(("r-data-table" ,r-data-table)
24186 ("r-lattice" ,r-lattice)
24187 ("r-magrittr" ,r-magrittr)
24188 ("r-rcolorbrewer" ,r-rcolorbrewer)
24189 ("r-rlang" ,r-rlang)
24190 ("r-survival" ,r-survival)
24191 ("r-viridis" ,r-viridis)))
24192 (native-inputs
24193 `(("r-knitr" ,r-knitr)))
24194 (home-page
24195 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
24196 (synopsis
24197 "Data Preparation, Estimation and Prediction in Multi-State Models")
24198 (description
24199 "Contains functions for data preparation, descriptives, hazard estimation
24200 and prediction with Aalen-Johansen or simulation in competing risks and
24201 multi-state models.")
24202 (license license:gpl2+)))
24203
24204 (define-public r-scatterpie
24205 (package
24206 (name "r-scatterpie")
24207 (version "0.1.5")
24208 (source
24209 (origin
24210 (method url-fetch)
24211 (uri (cran-uri "scatterpie" version))
24212 (sha256
24213 (base32
24214 "0h48l0699lpfagv09f53yismir84945m56qwzk52lc7wxyvkfcp1"))))
24215 (properties `((upstream-name . "scatterpie")))
24216 (build-system r-build-system)
24217 (propagated-inputs
24218 `(("r-ggforce" ,r-ggforce)
24219 ("r-ggplot2" ,r-ggplot2)
24220 ("r-rlang" ,r-rlang)
24221 ("r-rvcheck" ,r-rvcheck)
24222 ("r-tidyr" ,r-tidyr)))
24223 (native-inputs
24224 `(("r-knitr" ,r-knitr)))
24225 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
24226 (synopsis "Scatter pie plot")
24227 (description
24228 "This package creates scatterpie plots, especially useful for plotting
24229 pies on a map.")
24230 (license license:artistic2.0)))
24231
24232 (define-public r-scrypt
24233 (package
24234 (name "r-scrypt")
24235 (version "0.1.3")
24236 (source
24237 (origin
24238 (method url-fetch)
24239 (uri (cran-uri "scrypt" version))
24240 (sha256
24241 (base32
24242 "14iblgbp9v2by8fjbrpsd59iknp5babcz7j3yv1yxxzcwyb6wrrm"))))
24243 (properties `((upstream-name . "scrypt")))
24244 (build-system r-build-system)
24245 (propagated-inputs
24246 `(("r-rcpp" ,r-rcpp)))
24247 (home-page "https://github.com/rstudio/rscrypt")
24248 (synopsis "Key derivation functions for R based on Scrypt")
24249 (description
24250 "This package provides functions for working with the scrypt key
24251 derivation functions. Scrypt is a password-based key derivation function
24252 created by Colin Percival. The algorithm was specifically designed to make it
24253 costly to perform large-scale custom hardware attacks by requiring large
24254 amounts of memory.")
24255 (license license:bsd-2)))
24256
24257 (define-public r-boruta
24258 (package
24259 (name "r-boruta")
24260 (version "7.0.0")
24261 (source
24262 (origin
24263 (method url-fetch)
24264 (uri (cran-uri "Boruta" version))
24265 (sha256
24266 (base32
24267 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
24268 (properties `((upstream-name . "Boruta")))
24269 (build-system r-build-system)
24270 (propagated-inputs `(("r-ranger" ,r-ranger)))
24271 (home-page "https://gitlab.com/mbq/Boruta/")
24272 (synopsis "Wrapper algorithm for all relevant feature selection")
24273 (description
24274 "This package provides an all relevant feature selection wrapper
24275 algorithm. It finds relevant features by comparing original attributes'
24276 importance with importance achievable at random, estimated using their
24277 permuted copies (shadows).")
24278 (license license:gpl2+)))
24279
24280 (define-public r-directlabels
24281 (package
24282 (name "r-directlabels")
24283 (version "2021.1.13")
24284 (source
24285 (origin
24286 (method url-fetch)
24287 (uri (cran-uri "directlabels" version))
24288 (sha256
24289 (base32
24290 "0415kh9k2qzdwi8zb32fh2icl5wf5335kyj11cyfdmfxji39zv2w"))))
24291 (build-system r-build-system)
24292 (propagated-inputs
24293 `(("r-quadprog" ,r-quadprog)))
24294 (native-inputs
24295 `(("r-knitr" ,r-knitr)))
24296 (home-page "http://directlabels.r-forge.r-project.org/")
24297 (synopsis "Direct labels for multicolor plots")
24298 (description
24299 "This package provides an extensible framework for automatically placing
24300 direct labels onto multicolor plots. Label positions are described using
24301 positioning methods that can be re-used across several different plots. There
24302 are heuristics for examining @code{trellis} and @code{ggplot} objects and
24303 inferring an appropriate positioning method.")
24304 (license license:gpl3)))
24305
24306 (define-public r-lsd
24307 (package
24308 (name "r-lsd")
24309 (version "4.1-0")
24310 (source
24311 (origin
24312 (method url-fetch)
24313 (uri (cran-uri "LSD" version))
24314 (sha256
24315 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
24316 (properties `((upstream-name . "LSD")))
24317 (build-system r-build-system)
24318 (home-page "https://cran.r-project.org/web/packages/LSD/")
24319 (synopsis "Lots of superior depictions tool creates colorful plots")
24320 (description
24321 "This package creates lots of colorful plots in a multitude of variations.
24322 Try a demo of the LSD by running @code{demotour()}.")
24323 ;; Either version
24324 (license (list license:gpl2 license:gpl3))))
24325
24326 (define-public r-phylogram
24327 (package
24328 (name "r-phylogram")
24329 (version "2.1.0")
24330 (source
24331 (origin
24332 (method url-fetch)
24333 (uri (cran-uri "phylogram" version))
24334 (sha256
24335 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
24336 (properties `((upstream-name . "phylogram")))
24337 (build-system r-build-system)
24338 (propagated-inputs `(("r-ape" ,r-ape)))
24339 (home-page "https://github.com/ropensci/phylogram/")
24340 (synopsis "Dendrograms for evolutionary analysis")
24341 (description
24342 "The @code{r-phylogram} package is a tool for for developing phylogenetic
24343 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
24344 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
24345 as well as several tools for command-line tree manipulation and import/export
24346 via Newick parenthetic text. This improves accessibility to the comprehensive
24347 range of object-specific analytical and tree-visualization functions found
24348 across a wide array of bioinformatic R packages.")
24349 (license license:gpl3)))
24350
24351 (define-public r-kmer
24352 (package
24353 (name "r-kmer")
24354 (version "1.1.2")
24355 (source
24356 (origin
24357 (method url-fetch)
24358 (uri (cran-uri "kmer" version))
24359 (sha256
24360 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
24361 (properties `((upstream-name . "kmer")))
24362 (build-system r-build-system)
24363 (propagated-inputs
24364 `(("r-openssl" ,r-openssl)
24365 ("r-phylogram" ,r-phylogram)
24366 ("r-rcpp" ,r-rcpp)))
24367 (home-page "https://github.com/shaunpwilkinson/kmer/")
24368 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
24369 (description
24370 "@code{r-kmer} is an R package for rapidly computing distance matrices
24371 and clustering large sequence datasets using fast alignment-free k-mer
24372 counting and recursive k-means partitioning.")
24373 (license license:gpl3)))
24374
24375 (define-public r-hardhat
24376 (package
24377 (name "r-hardhat")
24378 (version "0.1.5")
24379 (source
24380 (origin
24381 (method url-fetch)
24382 (uri (cran-uri "hardhat" version))
24383 (sha256
24384 (base32
24385 "1b7f9i9fy39j9n03g40vd6nzgq9fgq914xg3svf84najlknvjzly"))))
24386 (properties `((upstream-name . "hardhat")))
24387 (build-system r-build-system)
24388 (propagated-inputs
24389 `(("r-glue" ,r-glue)
24390 ("r-rlang" ,r-rlang)
24391 ("r-tibble" ,r-tibble)
24392 ("r-vctrs" ,r-vctrs)))
24393 (native-inputs
24394 `(("r-knitr" ,r-knitr)))
24395 (home-page "https://github.com/tidymodels/hardhat")
24396 (synopsis "Construct modeling packages")
24397 (description
24398 "Building modeling packages is hard. A large amount of effort generally
24399 goes into providing an implementation for a new method that is efficient,
24400 fast, and correct, but often less emphasis is put on the user interface. A
24401 good interface requires specialized knowledge about S3 methods and formulas,
24402 which the average package developer might not have. The goal of
24403 @code{hardhat} is to reduce the burden around building new modeling packages
24404 by providing functionality for preprocessing, predicting, and validating
24405 input.")
24406 (license license:expat)))
24407
24408 (define-public r-lightgbm
24409 (package
24410 (name "r-lightgbm")
24411 (version "3.1.1")
24412 (source
24413 (origin
24414 (method url-fetch)
24415 (uri (cran-uri "lightgbm" version))
24416 (sha256
24417 (base32
24418 "1pwsh6j9ksahh58b15j5ij56bsc6syy3z4k4a5zhy5n7829rz555"))))
24419 (properties `((upstream-name . "lightgbm")))
24420 (build-system r-build-system)
24421 (propagated-inputs
24422 `(("r-data-table" ,r-data-table)
24423 ("r-jsonlite" ,r-jsonlite)
24424 ("r-matrix" ,r-matrix)
24425 ("r-r6" ,r-r6)))
24426 (home-page "https://github.com/Microsoft/LightGBM")
24427 (synopsis "Light gradient boosting machine")
24428 (description
24429 "Tree based algorithms can be improved by introducing boosting
24430 frameworks. LightGBM is one such framework, based on Ke, Guolin et
24431 al. (2017). This package offers an R interface to work with it. It is
24432 designed to be distributed and efficient with the following goals:
24433
24434 @enumerate
24435 @item Faster training speed and higher efficiency;
24436 @item lower memory usage;
24437 @item better accuracy;
24438 @item parallel learning supported; and
24439 @item capable of handling large-scale data.
24440 @end enumerate
24441 ")
24442 (license license:expat)))
24443
24444 (define-public r-shapforxgboost
24445 (package
24446 (name "r-shapforxgboost")
24447 (version "0.1.0")
24448 (source
24449 (origin
24450 (method url-fetch)
24451 (uri (cran-uri "SHAPforxgboost" version))
24452 (sha256
24453 (base32
24454 "0jgyss9bawl7sf4dwa75sn7ld3mvrrr0z2074lbkq3f5qb9gwsly"))))
24455 (properties
24456 `((upstream-name . "SHAPforxgboost")))
24457 (build-system r-build-system)
24458 (propagated-inputs
24459 `(("r-bbmisc" ,r-bbmisc)
24460 ("r-data-table" ,r-data-table)
24461 ("r-ggextra" ,r-ggextra)
24462 ("r-ggforce" ,r-ggforce)
24463 ("r-ggplot2" ,r-ggplot2)
24464 ("r-ggpubr" ,r-ggpubr)
24465 ("r-lightgbm" ,r-lightgbm)
24466 ("r-rcolorbrewer" ,r-rcolorbrewer)
24467 ("r-xgboost" ,r-xgboost)))
24468 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
24469 (synopsis "SHAP Plots for XGBoost")
24470 (description
24471 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
24472 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
24473 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
24474 and force plot. It relies on the @code{XGBoost} package to produce SHAP
24475 values.")
24476 (license license:expat)))
24477
24478 (define-public r-rismed
24479 (package
24480 (name "r-rismed")
24481 (version "2.2")
24482 (source
24483 (origin
24484 (method url-fetch)
24485 (uri (cran-uri "RISmed" version))
24486 (sha256
24487 (base32
24488 "0nwixhngi4r2f73362salivsmsf7l52bm13jqvhdq8mfiigm80vd"))))
24489 (properties `((upstream-name . "RISmed")))
24490 (build-system r-build-system)
24491 (home-page "https://cran.r-project.org/web/packages/RISmed")
24492 (synopsis "Download content from NCBI databases")
24493 (description
24494 "This package provides a set of tools to extract bibliographic
24495 content from the National Center for Biotechnology Information (NCBI)
24496 databases, including PubMed. The name RISmed is a portmanteau of
24497 RIS (for Research Information Systems, a common tag format for
24498 bibliographic data) and PubMed.")
24499 (license license:gpl2+)))
24500
24501 (define-public r-semver
24502 (package
24503 (name "r-semver")
24504 (version "0.2.0")
24505 (source
24506 (origin
24507 (method url-fetch)
24508 (uri (cran-uri "semver" version))
24509 (sha256
24510 (base32
24511 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
24512 (properties `((upstream-name . "semver")))
24513 (build-system r-build-system)
24514 (propagated-inputs
24515 `(("r-assertthat" ,r-assertthat)
24516 ("r-rcpp" ,r-rcpp)))
24517 (native-inputs `(("r-knitr" ,r-knitr)))
24518 (home-page "https://github.com/johndharrison/semver")
24519 (synopsis "Parser for Semantic Versioning 2.0.0")
24520 (description
24521 "This package provides tools and functions for parsing, rendering and
24522 operating on semantic version strings. Semantic versioning is a simple set of
24523 rules and requirements that dictate how version numbers are assigned and
24524 incremented as outlined at @url{http://semver.org}.")
24525 (license license:expat)))
24526
24527 (define-public r-binman
24528 (package
24529 (name "r-binman")
24530 (version "0.1.2")
24531 (source
24532 (origin
24533 (method url-fetch)
24534 (uri (cran-uri "binman" version))
24535 (sha256
24536 (base32
24537 "00l7m98h41r67gf0qxqis3vx63j7wylnk9vlgcyk41szkrz8ikkc"))))
24538 (properties `((upstream-name . "binman")))
24539 (build-system r-build-system)
24540 (propagated-inputs
24541 `(("r-assertthat" ,r-assertthat)
24542 ("r-httr" ,r-httr)
24543 ("r-jsonlite" ,r-jsonlite)
24544 ("r-rappdirs" ,r-rappdirs)
24545 ("r-semver" ,r-semver)
24546 ("r-xml2" ,r-xml2)
24547 ("r-yaml" ,r-yaml)))
24548 (native-inputs `(("r-knitr" ,r-knitr)))
24549 (home-page "https://github.com/ropensci/binman")
24550 (synopsis "Binary download manager")
24551 (description
24552 "This package provides tools and functions for managing the download of
24553 binary files. Binary repositories are defined in the YAML format. Defining
24554 new pre-download, download and post-download templates allow additional
24555 repositories to be added.")
24556 (license license:expat)))
24557
24558 (define-public r-wdman
24559 (package
24560 (name "r-wdman")
24561 (version "0.2.5")
24562 (source
24563 (origin
24564 (method url-fetch)
24565 (uri (cran-uri "wdman" version))
24566 (sha256
24567 (base32
24568 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
24569 (properties `((upstream-name . "wdman")))
24570 (build-system r-build-system)
24571 (propagated-inputs
24572 `(("r-assertthat" ,r-assertthat)
24573 ("r-binman" ,r-binman)
24574 ("r-processx" ,r-processx)
24575 ("r-semver" ,r-semver)
24576 ("r-yaml" ,r-yaml)))
24577 (native-inputs `(("r-knitr" ,r-knitr)))
24578 (home-page "https://docs.ropensci.org/wdman/")
24579 (synopsis "Webdriver/Selenium binary manager")
24580 (description
24581 "There are a number of binary files associated with the
24582 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
24583 @url{https://sites.google.com/a/chromium.org/chromedriver/},
24584 @url{https://github.com/mozilla/geckodriver},
24585 @url{http://phantomjs.org/download.html}, and
24586 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
24587 more information). This package provides functions to download these binaries
24588 and to manage processes involving them.")
24589 (license license:expat)))
24590
24591 (define-public r-rselenium
24592 (package
24593 (name "r-rselenium")
24594 (version "1.7.7")
24595 (source
24596 (origin
24597 (method url-fetch)
24598 (uri (cran-uri "RSelenium" version))
24599 (sha256
24600 (base32
24601 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
24602 (properties `((upstream-name . "RSelenium")))
24603 (build-system r-build-system)
24604 (propagated-inputs
24605 `(("r-binman" ,r-binman)
24606 ("r-catools" ,r-catools)
24607 ("r-httr" ,r-httr)
24608 ("r-openssl" ,r-openssl)
24609 ("r-wdman" ,r-wdman)
24610 ("r-xml" ,r-xml)))
24611 (native-inputs `(("r-knitr" ,r-knitr)))
24612 (home-page "https://docs.ropensci.org/RSelenium/")
24613 (synopsis "R bindings for Selenium WebDriver")
24614 (description
24615 "This package provides a set of R bindings for the Selenium 2.0
24616 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
24617 information) using the @code{JsonWireProtocol} (see
24618 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
24619 information). Selenium 2.0 WebDriver allows driving a web browser natively as
24620 a user would either locally or on a remote machine using the Selenium server
24621 it marks a leap forward in terms of web browser automation. Selenium
24622 automates web browsers (commonly referred to as browsers). Using RSelenium
24623 you can automate browsers locally or remotely.")
24624 (license license:agpl3+)))
24625
24626 (define-public r-conquer
24627 (package
24628 (name "r-conquer")
24629 (version "1.0.2")
24630 (source
24631 (origin
24632 (method url-fetch)
24633 (uri (cran-uri "conquer" version))
24634 (sha256
24635 (base32
24636 "1zvlsrbmrij011mcdi3qngs1al2lhrdiyknxnk0w1zhzrra62bsl"))))
24637 (properties `((upstream-name . "conquer")))
24638 (build-system r-build-system)
24639 (propagated-inputs
24640 `(("r-matrix" ,r-matrix)
24641 ("r-matrixstats" ,r-matrixstats)
24642 ("r-rcpp" ,r-rcpp)
24643 ("r-rcpparmadillo" ,r-rcpparmadillo)))
24644 (home-page "https://github.com/XiaoouPan/conquer")
24645 (synopsis "Convolution-type smoothed quantile regression")
24646 (description
24647 "This package provides fast and accurate convolution-type smoothed
24648 quantile regression, implemented using Barzilai-Borwein gradient descent with
24649 a Huber regression warm start. Confidence intervals for regression
24650 coefficients are constructed using multiplier bootstrap.")
24651 (license license:gpl3)))
24652
24653 (define-public r-fastshap
24654 (package
24655 (name "r-fastshap")
24656 (version "0.0.5")
24657 (source
24658 (origin
24659 (method url-fetch)
24660 (uri (cran-uri "fastshap" version))
24661 (sha256
24662 (base32
24663 "08f25ib5mry6h8lvj0g3clc9kfl5g2wdd8x8bw455wwmbcm6x5vg"))))
24664 (properties `((upstream-name . "fastshap")))
24665 (build-system r-build-system)
24666 (propagated-inputs
24667 `(("r-abind" ,r-abind)
24668 ("r-ggplot2" ,r-ggplot2)
24669 ("r-gridextra" ,r-gridextra)
24670 ("r-matrixstats" ,r-matrixstats)
24671 ("r-plyr" ,r-plyr)
24672 ("r-rcpp" ,r-rcpp)
24673 ("r-rcpparmadillo" ,r-rcpparmadillo)
24674 ("r-tibble" ,r-tibble)))
24675 (home-page "https://github.com/bgreenwell/fastshap")
24676 (synopsis "Fast approximate Shapley values")
24677 (description
24678 "This package computes fast (relative to other implementations)
24679 approximate Shapley values for any supervised learning model. Shapley values
24680 help to explain the predictions from any black box model using ideas from game
24681 theory; see @url{Strumbel and Kononenko (2014),
24682 doi.org/10.1007/s10115-013-0679-x} for details.")
24683 (license license:gpl2+)))
24684
24685 (define-public r-metrics
24686 (package
24687 (name "r-metrics")
24688 (version "0.1.4")
24689 (source
24690 (origin
24691 (method url-fetch)
24692 (uri (cran-uri "Metrics" version))
24693 (sha256
24694 (base32
24695 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
24696 (properties `((upstream-name . "Metrics")))
24697 (build-system r-build-system)
24698 (home-page "https://github.com/mfrasco/Metrics")
24699 (synopsis "Evaluation metrics for machine learning")
24700 (description
24701 "This package provides an implementation of evaluation metrics in R that
24702 are commonly used in supervised machine learning. It implements metrics for
24703 regression, time series, binary classification, classification, and
24704 information retrieval problems. It has zero dependencies and a consistent,
24705 simple interface for all functions.")
24706 (license license:bsd-3)))
24707
24708 (define-public r-iml
24709 (package
24710 (name "r-iml")
24711 (version "0.10.0")
24712 (source
24713 (origin
24714 (method url-fetch)
24715 (uri (cran-uri "iml" version))
24716 (sha256
24717 (base32
24718 "0xm3q42qahq798ilgg050df0mahhbdfd3fx3i7cpx606h38si0x7"))))
24719 (properties `((upstream-name . "iml")))
24720 (build-system r-build-system)
24721 (propagated-inputs
24722 `(("r-checkmate" ,r-checkmate)
24723 ("r-data-table" ,r-data-table)
24724 ("r-formula" ,r-formula)
24725 ("r-future" ,r-future)
24726 ("r-future-apply" ,r-future-apply)
24727 ("r-ggplot2" ,r-ggplot2)
24728 ("r-gridextra" ,r-gridextra)
24729 ("r-metrics" ,r-metrics)
24730 ("r-prediction" ,r-prediction)
24731 ("r-r6" ,r-r6)))
24732 (native-inputs `(("r-knitr" ,r-knitr)))
24733 (home-page "https://github.com/christophM/iml")
24734 (synopsis "Interpretable machine learning")
24735 (description
24736 "This package provides interpretability methods to analyze the behavior
24737 and predictions of any machine learning model. Implemented methods are:
24738
24739 @itemize
24740 @item Feature importance described by Fisher et al. (2018),
24741 @item accumulated local effects plots described by Apley (2018),
24742 @item partial dependence plots described by Friedman (2001),
24743 @item individual conditional expectation ('ice') plots described by Goldstein
24744 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
24745 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
24746 @item the Shapley Value described by Strumbelj et. al (2014)
24747 @url{https://doi.org/10.1007/s10115-013-0679-x},
24748 @item feature interactions described by Friedman et. al
24749 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
24750 @end itemize
24751 ")
24752 (license license:expat)))
24753
24754 (define-public r-goftest
24755 (package
24756 (name "r-goftest")
24757 (version "1.2-2")
24758 (source
24759 (origin
24760 (method url-fetch)
24761 (uri (cran-uri "goftest" version))
24762 (sha256
24763 (base32
24764 "0ivnkqhv5xgiv05dm648nngacymd8x8g0fyppv3bc0mhcqk9k5z4"))))
24765 (properties `((upstream-name . "goftest")))
24766 (build-system r-build-system)
24767 (home-page "https://github.com/baddstats/goftest")
24768 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
24769 (description
24770 "This package provides Cramer-Von Mises and Anderson-Darling tests of
24771 goodness-of-fit for continuous univariate distributions, using efficient
24772 algorithms.")
24773 (license license:gpl2+)))
24774
24775 (define-public r-tensor
24776 (package
24777 (name "r-tensor")
24778 (version "1.5")
24779 (source
24780 (origin
24781 (method url-fetch)
24782 (uri (cran-uri "tensor" version))
24783 (sha256
24784 (base32
24785 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
24786 (properties `((upstream-name . "tensor")))
24787 (build-system r-build-system)
24788 (home-page "https://cran.r-project.org/web/packages/tensor/")
24789 (synopsis "Tensor product of arrays")
24790 (description
24791 "The tensor product of two arrays is notionally an outer product of the
24792 arrays collapsed in specific extents by summing along the appropriate
24793 diagonals. This package allows you to compute the tensor product of arrays.")
24794 (license license:gpl2+)))
24795
24796 (define-public r-spatstat-utils
24797 (package
24798 (name "r-spatstat-utils")
24799 (version "2.0-0")
24800 (source
24801 (origin
24802 (method url-fetch)
24803 (uri (cran-uri "spatstat.utils" version))
24804 (sha256
24805 (base32
24806 "1li0vksxpkvgyx3j2wi40kj5687vwakkfdix6icm6g01a0lb2m5d"))))
24807 (properties
24808 `((upstream-name . "spatstat.utils")))
24809 (build-system r-build-system)
24810 (home-page "http://www.spatstat.org")
24811 (synopsis "Utility functions for spatstat")
24812 (description
24813 "This package contains utility functions for the @code{spatstat} package
24814 which may also be useful for other purposes.")
24815 (license license:gpl2+)))
24816
24817 (define-public r-spatstat-sparse
24818 (package
24819 (name "r-spatstat-sparse")
24820 (version "1.2-1")
24821 (source
24822 (origin
24823 (method url-fetch)
24824 (uri (cran-uri "spatstat.sparse" version))
24825 (sha256
24826 (base32
24827 "1w312q7gxzchigxxzk9akscdsz66j5085lgjryamschjgp4f8yk2"))))
24828 (properties
24829 `((upstream-name . "spatstat.sparse")))
24830 (build-system r-build-system)
24831 (propagated-inputs
24832 `(("r-abind" ,r-abind)
24833 ("r-matrix" ,r-matrix)
24834 ("r-spatstat-utils" ,r-spatstat-utils)
24835 ("r-tensor" ,r-tensor)))
24836 (home-page "http://spatstat.org/")
24837 (synopsis "Sparse three-dimensional arrays and linear algebra utilities")
24838 (description
24839 "This package defines sparse three-dimensional arrays and supports
24840 standard operations on them. The package also includes utility functions for
24841 matrix calculations that are common in statistics, such as quadratic forms.")
24842 (license license:gpl2+)))
24843
24844 (define-public r-spatstat-data
24845 (package
24846 (name "r-spatstat-data")
24847 (version "2.0-0")
24848 (source
24849 (origin
24850 (method url-fetch)
24851 (uri (cran-uri "spatstat.data" version))
24852 (sha256
24853 (base32
24854 "1z1jb1yzb7qhfg55dhzcrdvn5x8hpg9xif0hpnapddbmhxd1hbb7"))))
24855 (properties `((upstream-name . "spatstat.data")))
24856 (build-system r-build-system)
24857 (propagated-inputs
24858 `(("r-matrix" ,r-matrix)
24859 ("r-spatstat-utils" ,r-spatstat-utils)))
24860 (home-page "http://www.spatstat.org")
24861 (synopsis "Datasets for spatstat")
24862 (description
24863 "This package contains all the datasets for the @code{spatstat}
24864 package.")
24865 (license license:gpl2+)))
24866
24867 (define-public r-spatstat-geom
24868 (package
24869 (name "r-spatstat-geom")
24870 (version "1.65-5")
24871 (source
24872 (origin
24873 (method url-fetch)
24874 (uri (cran-uri "spatstat.geom" version))
24875 (sha256
24876 (base32
24877 "0g0m5b3nbzpyblbp77n56k6aiw3fn23jkk72h9fhqlg1ydn2fzpk"))))
24878 (properties `((upstream-name . "spatstat.geom")))
24879 (build-system r-build-system)
24880 (propagated-inputs
24881 `(("r-deldir" ,r-deldir)
24882 ("r-polyclip" ,r-polyclip)
24883 ("r-spatstat-data" ,r-spatstat-data)
24884 ("r-spatstat-sparse" ,r-spatstat-sparse)
24885 ("r-spatstat-utils" ,r-spatstat-utils)))
24886 (home-page "http://spatstat.org/")
24887 (synopsis "Geometrical functionality of the spatstat package")
24888 (description
24889 "This is a subset of the original spatstat package, containing the
24890 user-level code from spatstat which performs geometrical operations, except
24891 for the geometry of linear networks.")
24892 (license license:gpl2+)))
24893
24894 (define-public r-spatstat-core
24895 (package
24896 (name "r-spatstat-core")
24897 (version "1.65-5")
24898 (source
24899 (origin
24900 (method url-fetch)
24901 (uri (cran-uri "spatstat.core" version))
24902 (sha256
24903 (base32
24904 "0wq61sd53hwyk3fzjdc2prrr66n67zbwb5i3ii7kvyhfwx0xikm3"))))
24905 (properties `((upstream-name . "spatstat.core")))
24906 (build-system r-build-system)
24907 (propagated-inputs
24908 `(("r-abind" ,r-abind)
24909 ("r-goftest" ,r-goftest)
24910 ("r-matrix" ,r-matrix)
24911 ("r-mgcv" ,r-mgcv)
24912 ("r-nlme" ,r-nlme)
24913 ("r-rpart" ,r-rpart)
24914 ("r-spatstat-data" ,r-spatstat-data)
24915 ("r-spatstat-geom" ,r-spatstat-geom)
24916 ("r-spatstat-sparse" ,r-spatstat-sparse)
24917 ("r-spatstat-utils" ,r-spatstat-utils)
24918 ("r-tensor" ,r-tensor)))
24919 (home-page "http://spatstat.org/")
24920 (synopsis "Core functionality of the spatstat package")
24921 (description
24922 "This is a subset of the original spatstat package, containing all of the
24923 user-level code from spatstat, except for the code for linear networks.")
24924 (license license:gpl2+)))
24925
24926 (define-public r-spatstat-linnet
24927 (package
24928 (name "r-spatstat-linnet")
24929 (version "1.65-3")
24930 (source
24931 (origin
24932 (method url-fetch)
24933 (uri (cran-uri "spatstat.linnet" version))
24934 (sha256
24935 (base32
24936 "1y088r26h5yv006ydgcb4iwpvnc7ql857gky0hbi7xqqciqr8wdv"))))
24937 (properties
24938 `((upstream-name . "spatstat.linnet")))
24939 (build-system r-build-system)
24940 (propagated-inputs
24941 `(("r-matrix" ,r-matrix)
24942 ("r-spatstat-core" ,r-spatstat-core)
24943 ("r-spatstat-data" ,r-spatstat-data)
24944 ("r-spatstat-geom" ,r-spatstat-geom)
24945 ("r-spatstat-utils" ,r-spatstat-utils)))
24946 (home-page "http://spatstat.org/")
24947 (synopsis "Linear networks functionality of the spatstat package")
24948 (description
24949 "This is a subset of the spatstat package, containing its functionality
24950 for spatial data on a linear network.")
24951 (license license:gpl2+)))
24952
24953 (define-public r-spatstat
24954 (package
24955 (name "r-spatstat")
24956 (version "1.64-1")
24957 (source
24958 (origin
24959 (method url-fetch)
24960 (uri (cran-uri "spatstat" version))
24961 (sha256
24962 (base32
24963 "06jmxfs9kz9qqi3ichfgn8dglwb87kq2nl578p83za5psv8cfgya"))))
24964 (properties `((upstream-name . "spatstat")))
24965 (build-system r-build-system)
24966 (propagated-inputs
24967 `(("r-abind" ,r-abind)
24968 ("r-deldir" ,r-deldir)
24969 ("r-goftest" ,r-goftest)
24970 ("r-matrix" ,r-matrix)
24971 ("r-mgcv" ,r-mgcv)
24972 ("r-nlme" ,r-nlme)
24973 ("r-polyclip" ,r-polyclip)
24974 ("r-rpart" ,r-rpart)
24975 ("r-spatstat-data" ,r-spatstat-data)
24976 ("r-spatstat-utils" ,r-spatstat-utils)
24977 ("r-tensor" ,r-tensor)))
24978 (home-page "http://www.spatstat.org")
24979 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
24980 (description
24981 "This package provides a comprehensive toolbox for analysing Spatial
24982 Point Patterns. It is focused mainly on two-dimensional point patterns,
24983 including multitype/marked points, in any spatial region. It also supports
24984 three-dimensional point patterns, space-time point patterns in any number of
24985 dimensions, point patterns on a linear network, and patterns of other
24986 geometrical objects. It supports spatial covariate data such as pixel images
24987 and contains over 2000 functions for plotting spatial data, exploratory data
24988 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
24989 formal inference.")
24990 (license license:gpl2+)))
24991
24992 (define-public r-gaston
24993 (package
24994 (name "r-gaston")
24995 (version "1.5.7")
24996 (source
24997 (origin
24998 (method url-fetch)
24999 (uri (cran-uri "gaston" version))
25000 (sha256
25001 (base32
25002 "14z94dpln4dvgrv2w7w9ik7h6rpvbf02qhq1hqzx8c2cndzxr21i"))))
25003 (properties `((upstream-name . "gaston")))
25004 (build-system r-build-system)
25005 (inputs `(("zlib" ,zlib)))
25006 (propagated-inputs
25007 `(("r-rcpp" ,r-rcpp)
25008 ("r-rcppeigen" ,r-rcppeigen)
25009 ("r-rcppparallel" ,r-rcppparallel)))
25010 (native-inputs `(("r-knitr" ,r-knitr)))
25011 (home-page "https://cran.r-project.org/web/packages/gaston/")
25012 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
25013 (description
25014 "This is a package for the manipulation of genetic data (SNPs).
25015 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
25016 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
25017 for linear mixed models (AIREML).")
25018 (license license:gpl3)))
25019
25020 (define-public r-cpp11
25021 (package
25022 (name "r-cpp11")
25023 (version "0.2.6")
25024 (source
25025 (origin
25026 (method url-fetch)
25027 (uri (cran-uri "cpp11" version))
25028 (sha256
25029 (base32
25030 "118i8s7978vl9xyhnb47wcbd6rcc6b958mq2w8s3rdsd4pxv62gz"))))
25031 (properties `((upstream-name . "cpp11")))
25032 (build-system r-build-system)
25033 (native-inputs `(("r-knitr" ,r-knitr)))
25034 (home-page "https://github.com/r-lib/cpp11")
25035 (synopsis "C++11 Interface for R's C Interface")
25036 (description
25037 "This package provides a header only, C++11 interface to R's C interface.
25038 Compared to other approaches @code{cpp11} strives to be safe against long
25039 jumps from the C API as well as C++ exceptions, conform to normal R function
25040 semantics and supports interaction with @code{ALTREP} vectors.")
25041 (license license:expat)))
25042
25043 (define-public r-rcppziggurat
25044 (package
25045 (name "r-rcppziggurat")
25046 (version "0.1.6")
25047 (source
25048 (origin
25049 (method url-fetch)
25050 (uri (cran-uri "RcppZiggurat" version))
25051 (sha256
25052 (base32
25053 "0wgd1v2p7zajnbrjf3hfi56p3pk3ld6iwkanbb04bjbnlif2ay4w"))))
25054 (properties `((upstream-name . "RcppZiggurat")))
25055 (build-system r-build-system)
25056 (propagated-inputs
25057 `(("r-rcpp" ,r-rcpp)
25058 ("r-rcppgsl" ,r-rcppgsl)))
25059 (native-inputs `(("r-knitr" ,r-knitr)))
25060 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
25061 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
25062 (description
25063 "The Ziggurat generator for normally distributed random numbers,
25064 originally proposed by Marsaglia and Tsang (2000,
25065 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
25066 times starting with Leong et al (2005,
25067 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
25068 aggregation for comparing different implementations in order to provide a
25069 'faster but good enough' alternative for use with R and C++ code.")
25070 (license license:gpl2+)))
25071
25072 (define-public r-rfast
25073 (package
25074 (name "r-rfast")
25075 (version "2.0.1")
25076 (source
25077 (origin
25078 (method url-fetch)
25079 (uri (cran-uri "Rfast" version))
25080 (sha256
25081 (base32
25082 "1cq3mcg49hsvqhwn6f4dgsx7f8ma4qnwr5n6s7m22qy57rg31958"))))
25083 (properties `((upstream-name . "Rfast")))
25084 (build-system r-build-system)
25085 (propagated-inputs
25086 `(("r-rcpp" ,r-rcpp)
25087 ("r-rcpparmadillo" ,r-rcpparmadillo)
25088 ("r-rcppziggurat" ,r-rcppziggurat)))
25089 (home-page "https://github.com/RfastOfficial/Rfast")
25090 (synopsis "Collection of efficient and fast R functions")
25091 (description
25092 "This package provides a collection of fast (utility) functions for data
25093 analysis. Column- and row- wise means, medians, variances, minimums,
25094 maximums, many t, F and G-square tests, many regressions (normal, logistic,
25095 Poisson), are some of the many fast functions.")
25096 (license license:gpl2+)))
25097
25098 (define-public r-clusterr
25099 (package
25100 (name "r-clusterr")
25101 (version "1.2.2")
25102 (source
25103 (origin
25104 (method url-fetch)
25105 (uri (cran-uri "ClusterR" version))
25106 (sha256
25107 (base32
25108 "1ky172bk15a78hky77vl60j7c81nq2495sxjrv53is25nkac7sjm"))))
25109 (properties `((upstream-name . "ClusterR")))
25110 (build-system r-build-system)
25111 (propagated-inputs
25112 `(("r-ggplot2" ,r-ggplot2)
25113 ("r-gmp" ,r-gmp)
25114 ("r-gtools" ,r-gtools)
25115 ("r-rcpp" ,r-rcpp)
25116 ("r-rcpparmadillo" ,r-rcpparmadillo)))
25117 (native-inputs `(("r-knitr" ,r-knitr)))
25118 (home-page "https://github.com/mlampros/ClusterR")
25119 (synopsis "Clustering")
25120 (description
25121 "This package provides Gaussian mixture models, k-means,
25122 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
25123 option to plot, validate, predict (new data) and estimate the optimal number
25124 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
25125 the computationally intensive parts of the functions. For more information,
25126 see
25127
25128 @enumerate
25129 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
25130 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
25131 @url{https://doi.org/10.18637/jss.v001.i04};
25132 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
25133 Library, @url{https://doi.org/10.1145/1772690.1772862};
25134 @item \"Armadillo: a template-based C++ library
25135 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
25136 Software, @url{https://doi.org/10.21105/joss.00026};
25137 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
25138 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
25139 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
25140 @end enumerate
25141 ")
25142 (license license:gpl3)))
25143
25144 (define-public r-spectrum
25145 (package
25146 (name "r-spectrum")
25147 (version "1.1")
25148 (source
25149 (origin
25150 (method url-fetch)
25151 (uri (cran-uri "Spectrum" version))
25152 (sha256
25153 (base32
25154 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
25155 (properties `((upstream-name . "Spectrum")))
25156 (build-system r-build-system)
25157 (propagated-inputs
25158 `(("r-clusterr" ,r-clusterr)
25159 ("r-diptest" ,r-diptest)
25160 ("r-ggplot2" ,r-ggplot2)
25161 ("r-rfast" ,r-rfast)))
25162 (native-inputs `(("r-knitr" ,r-knitr)))
25163 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
25164 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
25165 (description
25166 "This package provides a self-tuning spectral clustering method for
25167 single or multi-view data. Spectrum uses a new type of adaptive density aware
25168 kernel that strengthens connections in the graph based on common nearest
25169 neighbours. It uses a tensor product graph data integration and diffusion
25170 procedure to integrate different data sources and reduce noise. Spectrum uses
25171 either the eigengap or multimodality gap heuristics to determine the number of
25172 clusters. The method is sufficiently flexible so that a wide range of
25173 Gaussian and non-Gaussian structures can be clustered with automatic selection
25174 of K.")
25175 (license license:agpl3+)))
25176
25177 (define-public r-nabor
25178 (package
25179 (name "r-nabor")
25180 (version "0.5.0")
25181 (source
25182 (origin
25183 (method url-fetch)
25184 (uri (cran-uri "nabor" version))
25185 (sha256
25186 (base32
25187 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
25188 (properties `((upstream-name . "nabor")))
25189 (build-system r-build-system)
25190 (propagated-inputs
25191 `(("r-bh" ,r-bh)
25192 ("r-rcpp" ,r-rcpp)
25193 ("r-rcppeigen" ,r-rcppeigen)))
25194 (home-page "https://cran.r-project.org/web/packages/nabor/")
25195 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
25196 (description
25197 "This package provides an R wrapper for libnabo, an exact or approximate
25198 k nearest neighbour library which is optimised for low dimensional
25199 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
25200 designed as a drop-in replacement for the RANN function @code{nn2}. In
25201 addition, objects which include the k-d tree search structure can be returned
25202 to speed up repeated queries of the same set of target points.")
25203 (license license:bsd-3)))
25204
25205 (define-public r-muhaz
25206 (package
25207 (name "r-muhaz")
25208 (version "1.2.6.1")
25209 (source
25210 (origin
25211 (method url-fetch)
25212 (uri (cran-uri "muhaz" version))
25213 (sha256
25214 (base32
25215 "08qh43zx6h3yby44q2vxphfvmfdmqxpgyp0734yn341sy9n8pkkk"))))
25216 (properties `((upstream-name . "muhaz")))
25217 (build-system r-build-system)
25218 (propagated-inputs
25219 `(("r-survival" ,r-survival)))
25220 (native-inputs
25221 `(("gfortran" ,gfortran)))
25222 (home-page "https://cran.r-project.org/web/packages/muhaz/")
25223 (synopsis "Hazard function estimation in survival analysis")
25224 (description
25225 "This package produces a smooth estimate of the hazard function for
25226 censored data.")
25227 ;; Any version of the GPL.
25228 (license license:gpl3+)))
25229
25230 (define-public r-flexsurv
25231 (package
25232 (name "r-flexsurv")
25233 (version "2.0")
25234 (source
25235 (origin
25236 (method url-fetch)
25237 (uri (cran-uri "flexsurv" version))
25238 (sha256
25239 (base32
25240 "0vshsijqlzsz0xh426vsswpai1v5c990ggyniqqzsjbg3mn8dbl9"))))
25241 (properties `((upstream-name . "flexsurv")))
25242 (build-system r-build-system)
25243 (propagated-inputs
25244 `(("r-assertthat" ,r-assertthat)
25245 ("r-desolve" ,r-desolve)
25246 ("r-dplyr" ,r-dplyr)
25247 ("r-generics" ,r-generics)
25248 ("r-magrittr" ,r-magrittr)
25249 ("r-matrix" ,r-matrix)
25250 ("r-mstate" ,r-mstate)
25251 ("r-muhaz" ,r-muhaz)
25252 ("r-mvtnorm" ,r-mvtnorm)
25253 ("r-numderiv" ,r-numderiv)
25254 ("r-purrr" ,r-purrr)
25255 ("r-quadprog" ,r-quadprog)
25256 ("r-rcpp" ,r-rcpp)
25257 ("r-rlang" ,r-rlang)
25258 ("r-rstpm2" ,r-rstpm2)
25259 ("r-survival" ,r-survival)
25260 ("r-tibble" ,r-tibble)
25261 ("r-tidyr" ,r-tidyr)
25262 ("r-tidyselect" ,r-tidyselect)))
25263 (native-inputs
25264 `(("r-knitr" ,r-knitr)))
25265 (home-page "https://github.com/chjackson/flexsurv-dev")
25266 (synopsis "Flexible parametric survival and multi-state models")
25267 (description
25268 "This package provides flexible parametric models for time-to-event data,
25269 including the Royston-Parmar spline model, generalized gamma and generalized F
25270 distributions. Any user-defined parametric distribution can be fitted, given
25271 at least an R function defining the probability density or hazard. There are
25272 also tools for fitting and predicting from fully parametric multi-state
25273 models.")
25274 (license license:gpl2+)))
25275
25276 (define-public r-transphylo
25277 (package
25278 (name "r-transphylo")
25279 (version "1.4.4")
25280 (source
25281 (origin
25282 (method url-fetch)
25283 (uri (cran-uri "TransPhylo" version))
25284 (sha256
25285 (base32
25286 "1506c97y8dnhd0c38rgvmg70q0l3xmmn07mjglhnw7hi5n5y9mv9"))))
25287 (properties `((upstream-name . "TransPhylo")))
25288 (build-system r-build-system)
25289 (propagated-inputs
25290 `(("r-ape" ,r-ape)
25291 ("r-rcpp" ,r-rcpp)))
25292 (native-inputs
25293 `(("r-knitr" ,r-knitr)))
25294 (home-page "https://cran.r-project.org/web/packages/TransPhylo/")
25295 (synopsis "Inference of transmission tree from a dated phylogeny")
25296 (description
25297 "This is a package to infer transmission trees from a dated phylogeny.
25298 It includes methods to simulate and analyze outbreaks. The methodology is
25299 described in @url{https://doi.org/10.1093/molbev/msu121,Didelot et al. (2014)}
25300 and @url{https://doi.org/10.1093/molbev/msw275,Didelot et al. (2017)}.")
25301 (license license:gpl2+)))
25302
25303 (define-public r-km-ci
25304 (package
25305 (name "r-km-ci")
25306 (version "0.5-2")
25307 (source
25308 (origin
25309 (method url-fetch)
25310 (uri (cran-uri "km.ci" version))
25311 (sha256
25312 (base32
25313 "1l6kw8jppaa1802yc5pbfwwgac56nhwc9p076ivylhms4w7cdf8v"))))
25314 (properties `((upstream-name . "km.ci")))
25315 (build-system r-build-system)
25316 (propagated-inputs
25317 `(("r-survival" ,r-survival)))
25318 (home-page "https://cran.r-project.org/web/packages/km.ci/")
25319 (synopsis "Confidence intervals for the Kaplan-Meier estimator")
25320 (description
25321 "This package computes various @dfn{confidence intervals} (CI) for the
25322 Kaplan-Meier estimator, namely: Petos CI, Rothman CI, CIs based on Greenwoods
25323 variance, Thomas and Grunkemeier CI and the simultaneous confidence bands by
25324 Nair and Hall and Wellner.")
25325 (license license:gpl2+)))
25326
25327 (define-public r-kmsurv
25328 (package
25329 (name "r-kmsurv")
25330 (version "0.1-5")
25331 (source
25332 (origin
25333 (method url-fetch)
25334 (uri (cran-uri "KMsurv" version))
25335 (sha256
25336 (base32
25337 "0hi5vvk584rl70gbrr75w9hc775xmbxnaig0dd6hlpi4071pnqjm"))))
25338 (properties `((upstream-name . "KMsurv")))
25339 (build-system r-build-system)
25340 (home-page "https://cran.r-project.org/web/packages/KMsurv/")
25341 (synopsis "Data sets from Klein and Moeschberger (1997), Survival Analysis")
25342 (description
25343 "This package provides data sets and functions for Klein and Moeschberger
25344 (1997), \"Survival Analysis, Techniques for Censored and Truncated Data\",
25345 Springer.")
25346 (license license:gpl3+)))
25347
25348 (define-public r-survmisc
25349 (package
25350 (name "r-survmisc")
25351 (version "0.5.5")
25352 (source
25353 (origin
25354 (method url-fetch)
25355 (uri (cran-uri "survMisc" version))
25356 (sha256
25357 (base32
25358 "00nvvl8gz4477ab24rd0xvfksm8msv8h021b9ld5c9cizc41n2bm"))))
25359 (properties `((upstream-name . "survMisc")))
25360 (build-system r-build-system)
25361 (propagated-inputs
25362 `(("r-data-table" ,r-data-table)
25363 ("r-ggplot2" ,r-ggplot2)
25364 ("r-gridextra" ,r-gridextra)
25365 ("r-km-ci" ,r-km-ci)
25366 ("r-kmsurv" ,r-kmsurv)
25367 ("r-knitr" ,r-knitr)
25368 ("r-survival" ,r-survival)
25369 ("r-xtable" ,r-xtable)
25370 ("r-zoo" ,r-zoo)))
25371 (native-inputs
25372 `(("r-knitr" ,r-knitr)))
25373 (home-page "https://cran.r-project.org/web/packages/survMisc/")
25374 (synopsis "Miscellaneous functions for survival data")
25375 (description
25376 "This package provides a collection of functions to help in the analysis
25377 of right-censored survival data. These extend the methods available in
25378 the @code{survival} package.")
25379 (license license:gpl2)))
25380
25381 (define-public r-exactranktests
25382 (package
25383 (name "r-exactranktests")
25384 (version "0.8-31")
25385 (source
25386 (origin
25387 (method url-fetch)
25388 (uri (cran-uri "exactRankTests" version))
25389 (sha256
25390 (base32
25391 "1154dkcid3njhamdp87qs9bnx7l8bdqkcjsds9q9f2xmizs9x8gw"))))
25392 (properties
25393 `((upstream-name . "exactRankTests")))
25394 (build-system r-build-system)
25395 (home-page "https://cran.r-project.org/web/packages/exactRankTests/")
25396 (synopsis "Exact distributions for rank and permutation tests")
25397 (description
25398 "This package computes exact conditional p-values and quantiles using an
25399 implementation of the Shift-Algorithm by Streitberg & Roehmel.")
25400 (license license:gpl2+)))
25401
25402 (define-public r-maxstat
25403 (package
25404 (name "r-maxstat")
25405 (version "0.7-25")
25406 (source
25407 (origin
25408 (method url-fetch)
25409 (uri (cran-uri "maxstat" version))
25410 (sha256
25411 (base32
25412 "114z1rwxwvk05ijjhdppzm148n1h192fp0w12ky10zkrhf6kphbg"))))
25413 (properties `((upstream-name . "maxstat")))
25414 (build-system r-build-system)
25415 (propagated-inputs
25416 `(("r-exactranktests" ,r-exactranktests)
25417 ("r-mvtnorm" ,r-mvtnorm)))
25418 (home-page "https://cran.r-project.org/web/packages/maxstat/")
25419 (synopsis "Maximally selected rank statistics")
25420 (description
25421 "This package provides maximally selected rank statistics with several
25422 p-value approximations.")
25423 (license license:gpl2+)))
25424
25425 (define-public r-survminer
25426 (package
25427 (name "r-survminer")
25428 (version "0.4.9")
25429 (source
25430 (origin
25431 (method url-fetch)
25432 (uri (cran-uri "survminer" version))
25433 (sha256
25434 (base32
25435 "0byh0wxdbjfwdrzsnqv4xlmnik6lj0vkkzfxy7lssk8dv5zmj7nz"))))
25436 (properties `((upstream-name . "survminer")))
25437 (build-system r-build-system)
25438 (propagated-inputs
25439 `(("r-broom" ,r-broom)
25440 ("r-dplyr" ,r-dplyr)
25441 ("r-ggplot2" ,r-ggplot2)
25442 ("r-ggpubr" ,r-ggpubr)
25443 ("r-ggtext" ,r-ggtext)
25444 ("r-gridextra" ,r-gridextra)
25445 ("r-magrittr" ,r-magrittr)
25446 ("r-maxstat" ,r-maxstat)
25447 ("r-purrr" ,r-purrr)
25448 ("r-rlang" ,r-rlang)
25449 ("r-scales" ,r-scales)
25450 ("r-survival" ,r-survival)
25451 ("r-survmisc" ,r-survmisc)
25452 ("r-tibble" ,r-tibble)
25453 ("r-tidyr" ,r-tidyr)))
25454 (native-inputs
25455 `(("r-knitr" ,r-knitr)))
25456 (home-page "https://rpkgs.datanovia.com/survminer/index.html")
25457 (synopsis "Drawing survival curves using ggplot2")
25458 (description
25459 "This package contains the function @code{ggsurvplot()} for easily
25460 drawing beautiful and 'ready-to-publish' survival curves with the 'number at
25461 risk' table and 'censoring count plot'. Other functions are also available to
25462 plot adjusted curves for Cox model and to visually examine Cox model
25463 assumptions.")
25464 (license license:gpl2)))
25465
25466 (define-public r-forge
25467 (package
25468 (name "r-forge")
25469 (version "0.2.0")
25470 (source
25471 (origin
25472 (method url-fetch)
25473 (uri (cran-uri "forge" version))
25474 (sha256
25475 (base32
25476 "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
25477 (properties `((upstream-name . "forge")))
25478 (build-system r-build-system)
25479 (propagated-inputs
25480 `(("r-magrittr" ,r-magrittr)
25481 ("r-rlang" ,r-rlang)))
25482 (home-page "https://cran.r-project.org/web/packages/forge/")
25483 (synopsis "Cast values into shape")
25484 (description
25485 "This package provides helper functions with a consistent interface to
25486 coerce and verify the types and shapes of values for input checking.")
25487 (license license:asl2.0)))
25488
25489 (define-public r-config
25490 (package
25491 (name "r-config")
25492 (version "0.3.1")
25493 (source
25494 (origin
25495 (method url-fetch)
25496 (uri (cran-uri "config" version))
25497 (sha256
25498 (base32
25499 "0l2zp7v6qaz72dclcbjrlis633zlwp8rsi5azr7iw127iyz7i26l"))))
25500 (properties `((upstream-name . "config")))
25501 (build-system r-build-system)
25502 (propagated-inputs
25503 `(("r-yaml" ,r-yaml)))
25504 (native-inputs
25505 `(("r-knitr" ,r-knitr)))
25506 (home-page "https://github.com/rstudio/config")
25507 (synopsis "Manage environment specific configuration values")
25508 (description
25509 "This package lets you manage configuration values across multiple
25510 environments (e.g. development, test, production). It reads values using a
25511 function that determines the current environment and returns the appropriate
25512 value.")
25513 (license license:gpl3)))
25514
25515 (define-public r-adaptivesparsity
25516 (package
25517 (name "r-adaptivesparsity")
25518 (version "1.6")
25519 (source (origin
25520 (method url-fetch)
25521 (uri (cran-uri "AdaptiveSparsity" version))
25522 (sha256
25523 (base32
25524 "0imr5m8mll9j6n4icsv6z9rl5kbnwsp9wvzrg7n90nnmcxq2cz91"))))
25525 (properties
25526 `((upstream-name . "AdaptiveSparsity")))
25527 (build-system r-build-system)
25528 (arguments
25529 `(#:phases
25530 (modify-phases %standard-phases
25531 (add-after 'unpack 'link-against-armadillo
25532 (lambda _
25533 (substitute* "src/Makevars"
25534 (("PKG_LIBS=" prefix)
25535 (string-append prefix "-larmadillo")))
25536 #t)))))
25537 (propagated-inputs
25538 `(("r-mass" ,r-mass)
25539 ("r-matrix" ,r-matrix)
25540 ("r-rcpp" ,r-rcpp)
25541 ("r-rcpparmadillo" ,r-rcpparmadillo)))
25542 (inputs
25543 `(("armadillo" ,armadillo)))
25544 (home-page "https://cran.r-project.org/web/packages/AdaptiveSparsity")
25545 (synopsis "Adaptive sparsity models")
25546 (description
25547 "This package implements the Figueiredo machine learning algorithm for
25548 adaptive sparsity and the Wong algorithm for adaptively sparse Gaussian
25549 geometric models.")
25550 (license license:lgpl3+)))
25551
25552 (define-public r-diffusionmap
25553 (package
25554 (name "r-diffusionmap")
25555 (version "1.2.0")
25556 (source
25557 (origin
25558 (method url-fetch)
25559 (uri (cran-uri "diffusionMap" version))
25560 (sha256
25561 (base32
25562 "1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
25563 (properties `((upstream-name . "diffusionMap")))
25564 (build-system r-build-system)
25565 (propagated-inputs
25566 `(("r-igraph" ,r-igraph)
25567 ("r-matrix" ,r-matrix)
25568 ("r-scatterplot3d" ,r-scatterplot3d)))
25569 (home-page "https://www.r-project.org")
25570 (synopsis "Diffusion map")
25571 (description "This package implements the diffusion map method of data
25572 parametrization, including creation and visualization of diffusion maps,
25573 clustering with diffusion K-means and regression using the adaptive regression
25574 model.")
25575 (license license:gpl2)))
25576
25577 (define-public r-igraph
25578 (package
25579 (name "r-igraph")
25580 (version "1.2.6")
25581 (source
25582 (origin
25583 (method url-fetch)
25584 (uri (cran-uri "igraph" version))
25585 (sha256
25586 (base32
25587 "0vf7wrx77cdiav8724cw8gchrn0y9wvywphf5km4pa7xcqhsf3b4"))))
25588 (build-system r-build-system)
25589 (native-inputs
25590 `(("gfortran" ,gfortran)))
25591 (inputs
25592 `(("gmp" ,gmp)
25593 ("glpk" ,glpk)
25594 ("libxml2" ,libxml2)
25595 ("zlib" ,zlib)))
25596 (propagated-inputs
25597 `(("r-magrittr" ,r-magrittr)
25598 ("r-matrix" ,r-matrix)
25599 ("r-pkgconfig" ,r-pkgconfig)))
25600 (home-page "https://igraph.org")
25601 (synopsis "Network analysis and visualization")
25602 (description
25603 "This package provides routines for simple graphs and network analysis.
25604 It can handle large graphs very well and provides functions for generating
25605 random and regular graphs, graph visualization, centrality methods and much
25606 more.")
25607 (license license:gpl2+)))
25608
25609 (define-public r-workflows
25610 (package
25611 (name "r-workflows")
25612 (version "0.2.1")
25613 (source
25614 (origin
25615 (method url-fetch)
25616 (uri (cran-uri "workflows" version))
25617 (sha256
25618 (base32
25619 "1mk0pnmpqlhf143mvj9rwvjrrshirz6s83s5hbfalhnyw7hzkfb9"))))
25620 (properties `((upstream-name . "workflows")))
25621 (build-system r-build-system)
25622 (propagated-inputs
25623 `(("r-cli" ,r-cli)
25624 ("r-ellipsis" ,r-ellipsis)
25625 ("r-generics" ,r-generics)
25626 ("r-glue" ,r-glue)
25627 ("r-hardhat" ,r-hardhat)
25628 ("r-parsnip" ,r-parsnip)
25629 ("r-rlang" ,r-rlang)
25630 ("r-tidyselect" ,r-tidyselect)))
25631 (native-inputs
25632 `(("r-knitr" ,r-knitr)))
25633 (home-page "https://github.com/tidymodels/workflows")
25634 (synopsis "Modeling workflows")
25635 (description
25636 "A workflow is an object that can bundle together your pre-processing,
25637 modeling, and post-processing requests. For example, if you have a
25638 @code{recipe} and @code{parsnip} model, these can be combined into a
25639 workflow. The advantages are:
25640
25641 @enumerate
25642 @item You don’t have to keep track of separate objects in your workspace.
25643 @item The recipe prepping and model fitting can be executed using a single
25644 call to @code{fit()}.
25645 @item If you have custom tuning parameter settings, these can be defined using
25646 a simpler interface when combined with @code{tune}.
25647 @item In the future, workflows will be able to add post-processing operations,
25648 such as modifying the probability cutoff for two-class models.
25649 @end enumerate
25650 ")
25651 (license license:expat)))
25652
25653 (define-public r-gpfit
25654 (package
25655 (name "r-gpfit")
25656 (version "1.0-8")
25657 (source
25658 (origin
25659 (method url-fetch)
25660 (uri (cran-uri "GPfit" version))
25661 (sha256
25662 (base32
25663 "05mpiyi2vxv0wqp422n1mnxa8msc4daq40cwpnpngbcwqhlgqkby"))))
25664 (properties `((upstream-name . "GPfit")))
25665 (build-system r-build-system)
25666 (propagated-inputs
25667 `(("r-lattice" ,r-lattice)
25668 ("r-lhs" ,r-lhs)))
25669 (home-page "https://cran.r-project.org/web/packages/GPfit/")
25670 (synopsis "Gaussian Processes modeling")
25671 (description
25672 "This package provides a computationally stable approach of fitting a
25673 @dfn{Gaussian Process} (GP) model to a deterministic simulator.")
25674 (license license:gpl2)))
25675
25676 (define-public r-yardstick
25677 (package
25678 (name "r-yardstick")
25679 (version "0.0.7")
25680 (source
25681 (origin
25682 (method url-fetch)
25683 (uri (cran-uri "yardstick" version))
25684 (sha256
25685 (base32
25686 "1yrvlhn4gxyn9f20z5yv3xam0j0a8z362jwa32r33r0g0jk5z2fq"))))
25687 (properties `((upstream-name . "yardstick")))
25688 (build-system r-build-system)
25689 (propagated-inputs
25690 `(("r-dplyr" ,r-dplyr)
25691 ("r-generics" ,r-generics)
25692 ("r-proc" ,r-proc)
25693 ("r-rlang" ,r-rlang)
25694 ("r-tidyselect" ,r-tidyselect)))
25695 (native-inputs
25696 `(("r-knitr" ,r-knitr)))
25697 (home-page "https://github.com/tidymodels/yardstick")
25698 (synopsis "Tidy characterizations of model performance")
25699 (description
25700 "This package provides tidy tools for quantifying how well a model fits
25701 to a data set such as confusion matrices, class probability curve summaries,
25702 and regression metrics (e.g., RMSE).")
25703 (license license:gpl2)))
25704
25705 (define-public r-warp
25706 (package
25707 (name "r-warp")
25708 (version "0.2.0")
25709 (source
25710 (origin
25711 (method url-fetch)
25712 (uri (cran-uri "warp" version))
25713 (sha256
25714 (base32
25715 "0s0acddc5h14245hi1faycxp0fyvw6nlgaz2df7da4fpyd2f638f"))))
25716 (properties `((upstream-name . "warp")))
25717 (build-system r-build-system)
25718 (native-inputs `(("r-knitr" ,r-knitr)))
25719 (home-page "https://github.com/DavisVaughan/warp")
25720 (synopsis "Group dates")
25721 (description
25722 "This package provides tooling to group dates by a variety of periods
25723 including: yearly, monthly, by second, by week of the month, and more. The
25724 groups are defined in such a way that they also represent the distance between
25725 dates in terms of the period. This extracts valuable information that can be
25726 used in further calculations that rely on a specific temporal spacing between
25727 observations.")
25728 (license license:expat)))
25729
25730 (define-public r-slider
25731 (package
25732 (name "r-slider")
25733 (version "0.1.5")
25734 (source
25735 (origin
25736 (method url-fetch)
25737 (uri (cran-uri "slider" version))
25738 (sha256
25739 (base32
25740 "1x4jwfxam4czfkb1s5qds5krfw1h2p5a4rh6f5z4yvhsv0d81xck"))))
25741 (properties `((upstream-name . "slider")))
25742 (build-system r-build-system)
25743 (propagated-inputs
25744 `(("r-glue" ,r-glue)
25745 ("r-rlang" ,r-rlang)
25746 ("r-vctrs" ,r-vctrs)
25747 ("r-warp" ,r-warp)))
25748 (native-inputs `(("r-knitr" ,r-knitr)))
25749 (home-page "https://github.com/DavisVaughan/slider")
25750 (synopsis "Sliding window functions")
25751 (description
25752 "This package provides type-stable rolling window functions over any R
25753 data type. Cumulative and expanding windows are also supported. For more
25754 advanced usage, an index can be used as a secondary vector that defines how
25755 sliding windows are to be created.")
25756 (license license:expat)))
25757
25758 (define-public r-rsample
25759 (package
25760 (name "r-rsample")
25761 (version "0.0.9")
25762 (source
25763 (origin
25764 (method url-fetch)
25765 (uri (cran-uri "rsample" version))
25766 (sha256
25767 (base32
25768 "03qwsvylgmj2a2h764mzy0x57pgzmvjvl0ypmbn4lcf912bvrd2c"))))
25769 (properties `((upstream-name . "rsample")))
25770 (build-system r-build-system)
25771 (propagated-inputs
25772 `(("r-dplyr" ,r-dplyr)
25773 ("r-ellipsis" ,r-ellipsis)
25774 ("r-furrr" ,r-furrr)
25775 ("r-generics" ,r-generics)
25776 ("r-purrr" ,r-purrr)
25777 ("r-rlang" ,r-rlang)
25778 ("r-slider" ,r-slider)
25779 ("r-tibble" ,r-tibble)
25780 ("r-tidyr" ,r-tidyr)
25781 ("r-tidyselect" ,r-tidyselect)
25782 ("r-vctrs" ,r-vctrs)))
25783 (native-inputs
25784 `(("r-knitr" ,r-knitr)))
25785 (home-page "https://rsample.tidymodels.org")
25786 (synopsis "General resampling infrastructure")
25787 (description
25788 "This package provides classes and functions to create and summarize
25789 different types of resampling objects (e.g. bootstrap, cross-validation).")
25790 (license license:gpl2)))
25791
25792 (define-public r-dicedesign
25793 (package
25794 (name "r-dicedesign")
25795 (version "1.9")
25796 (source
25797 (origin
25798 (method url-fetch)
25799 (uri (cran-uri "DiceDesign" version))
25800 (sha256
25801 (base32
25802 "1a8ixa65xgyfri03cviic8qi2plbhdyz8m02bwif8w94w0q3ghlk"))))
25803 (properties `((upstream-name . "DiceDesign")))
25804 (build-system r-build-system)
25805 (home-page "http://dice.emse.fr/")
25806 (synopsis "Designs of computer experiments")
25807 (description
25808 "This package provides tools to create some specific @code{Space-Filling
25809 Design} (SFD) and to test their quality.")
25810 (license license:gpl3)))
25811
25812 (define-public r-dials
25813 (package
25814 (name "r-dials")
25815 (version "0.0.9")
25816 (source
25817 (origin
25818 (method url-fetch)
25819 (uri (cran-uri "dials" version))
25820 (sha256
25821 (base32
25822 "0g9wj2py4wz703rh4p7hk8qxqnkm7zyrypv4qz4vaqziazjsmxks"))))
25823 (properties `((upstream-name . "dials")))
25824 (build-system r-build-system)
25825 (propagated-inputs
25826 `(("r-dicedesign" ,r-dicedesign)
25827 ("r-dplyr" ,r-dplyr)
25828 ("r-glue" ,r-glue)
25829 ("r-purrr" ,r-purrr)
25830 ("r-rlang" ,r-rlang)
25831 ("r-scales" ,r-scales)
25832 ("r-tibble" ,r-tibble)
25833 ("r-vctrs" ,r-vctrs)
25834 ("r-withr" ,r-withr)))
25835 (native-inputs `(("r-knitr" ,r-knitr)))
25836 (home-page "https://dials.tidymodels.org/")
25837 (synopsis "Tools for creating tuning parameter values")
25838 (description
25839 "Many models contain tuning parameters (i.e. parameters that cannot be
25840 directly estimated from the data). These tools can be used to define objects
25841 for creating, simulating, or validating values for such parameters.")
25842 (license license:gpl2)))
25843
25844 (define-public r-tune
25845 (package
25846 (name "r-tune")
25847 (version "0.1.3")
25848 (source
25849 (origin
25850 (method url-fetch)
25851 (uri (cran-uri "tune" version))
25852 (sha256
25853 (base32
25854 "05r5jzg96g2z10a2w4w8wq1ysfaxr91acwrvn75pmcy4rmixf293"))))
25855 (properties `((upstream-name . "tune")))
25856 (build-system r-build-system)
25857 (propagated-inputs
25858 `(("r-cli" ,r-cli)
25859 ("r-dials" ,r-dials)
25860 ("r-dplyr" ,r-dplyr)
25861 ("r-foreach" ,r-foreach)
25862 ("r-generics" ,r-generics)
25863 ("r-ggplot2" ,r-ggplot2)
25864 ("r-glue" ,r-glue)
25865 ("r-gpfit" ,r-gpfit)
25866 ("r-parsnip" ,r-parsnip)
25867 ("r-purrr" ,r-purrr)
25868 ("r-recipes" ,r-recipes)
25869 ("r-rlang" ,r-rlang)
25870 ("r-rsample" ,r-rsample)
25871 ("r-tibble" ,r-tibble)
25872 ("r-tidyr" ,r-tidyr)
25873 ("r-vctrs" ,r-vctrs)
25874 ("r-workflows" ,r-workflows)
25875 ("r-yardstick" ,r-yardstick)))
25876 (home-page "https://github.com/tidymodels/tune")
25877 (synopsis "Tidy tuning tools")
25878 (description
25879 "The ability to tune models is important. @code{tune} contains functions
25880 and classes to be used in conjunction with other @code{tidymodels} packages
25881 for finding reasonable values of hyper-parameters in models, pre-processing
25882 methods, and post-processing steps.")
25883 (license license:expat)))
25884
25885 (define-public r-tidyposterior
25886 (package
25887 (name "r-tidyposterior")
25888 (version "0.0.3")
25889 (source
25890 (origin
25891 (method url-fetch)
25892 (uri (cran-uri "tidyposterior" version))
25893 (sha256
25894 (base32
25895 "0wsv800w056ziqbnwal7ncmdy4li8cn5yrdx07w35b7j8kl4mwhg"))))
25896 (properties `((upstream-name . "tidyposterior")))
25897 (build-system r-build-system)
25898 (propagated-inputs
25899 `(("r-dplyr" ,r-dplyr)
25900 ("r-generics" ,r-generics)
25901 ("r-ggplot2" ,r-ggplot2)
25902 ("r-lifecycle" ,r-lifecycle)
25903 ("r-purrr" ,r-purrr)
25904 ("r-rlang" ,r-rlang)
25905 ("r-rsample" ,r-rsample)
25906 ("r-rstanarm" ,r-rstanarm)
25907 ("r-tibble" ,r-tibble)
25908 ("r-tidyr" ,r-tidyr)
25909 ("r-vctrs" ,r-vctrs)))
25910 (native-inputs
25911 `(("r-knitr" ,r-knitr)))
25912 (home-page "https://tidyposterior.tidymodels.org")
25913 (synopsis "Bayesian analysis to compare models using resampling statistics")
25914 (description
25915 "This package can be used to conduct post hoc analyses of resampling
25916 results generated by models. For example, if two models are evaluated with
25917 the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
25918 are 10 paired statistics. These can be used to make comparisons between
25919 models without involving a test set.")
25920 (license license:gpl2)))
25921
25922 (define-public r-tidypredict
25923 (package
25924 (name "r-tidypredict")
25925 (version "0.4.8")
25926 (source
25927 (origin
25928 (method url-fetch)
25929 (uri (cran-uri "tidypredict" version))
25930 (sha256
25931 (base32
25932 "0fff349pkksss8h1k2qza78l81ha6avx63pxziv6dfa8h62qmrdy"))))
25933 (properties `((upstream-name . "tidypredict")))
25934 (build-system r-build-system)
25935 (propagated-inputs
25936 `(("r-dplyr" ,r-dplyr)
25937 ("r-generics" ,r-generics)
25938 ("r-knitr" ,r-knitr)
25939 ("r-purrr" ,r-purrr)
25940 ("r-rlang" ,r-rlang)
25941 ("r-stringr" ,r-stringr)
25942 ("r-tibble" ,r-tibble)
25943 ("r-tidyr" ,r-tidyr)))
25944 (native-inputs
25945 `(("r-knitr" ,r-knitr)))
25946 (home-page "https://tidypredict.tidymodels.org")
25947 (synopsis "Run predictions inside the database")
25948 (description
25949 "This package parses a fitted R model object, and returns a formula in
25950 Tidy Eval code that calculates the predictions. It works with several
25951 database backends because it leverages @code{dplyr} and @code{dbplyr} for the
25952 final SQL translation of the algorithm. It currently supports @code{lm()},
25953 @code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
25954 @code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
25955 (license license:gpl3)))
25956
25957 (define-public r-janeaustenr
25958 (package
25959 (name "r-janeaustenr")
25960 (version "0.1.5")
25961 (source
25962 (origin
25963 (method url-fetch)
25964 (uri (cran-uri "janeaustenr" version))
25965 (sha256
25966 (base32
25967 "1wyn4qc28a3sval8shmyi2d7s4nl3jh96s8pzq871brxcmrncbwr"))))
25968 (properties `((upstream-name . "janeaustenr")))
25969 (build-system r-build-system)
25970 (home-page "https://github.com/juliasilge/janeaustenr")
25971 (synopsis "Jane Austen's complete novels")
25972 (description
25973 "This package provides the full texts for Jane Austen's six completed
25974 novels, ready for text analysis. These novels are \"Sense and Sensibility\",
25975 \"Pride and Prejudice\", \"Mansfield Park\", \"Emma\", \"Northanger Abbey\",
25976 and \"Persuasion\".")
25977 (license license:expat)))
25978
25979 (define-public r-tokenizers
25980 (package
25981 (name "r-tokenizers")
25982 (version "0.2.1")
25983 (source
25984 (origin
25985 (method url-fetch)
25986 (uri (cran-uri "tokenizers" version))
25987 (sha256
25988 (base32
25989 "006xf1vdrmp9skhpss9ldhmk4cwqk512cjp1pxm2gxfybpf7qq98"))))
25990 (properties `((upstream-name . "tokenizers")))
25991 (build-system r-build-system)
25992 (propagated-inputs
25993 `(("r-rcpp" ,r-rcpp)
25994 ("r-snowballc" ,r-snowballc)
25995 ("r-stringi" ,r-stringi)))
25996 (native-inputs
25997 `(("r-knitr" ,r-knitr)))
25998 (home-page "https://lincolnmullen.com/software/tokenizers/")
25999 (synopsis "Fast, consistent tokenization of natural language text")
26000 (description
26001 "This is a package for converting natural language text into tokens.
26002 It includes tokenizers for shingled n-grams, skip n-grams, words, word stems,
26003 sentences, paragraphs, characters, shingled characters, lines, tweets, Penn
26004 Treebank, regular expressions, as well as functions for counting characters,
26005 words, and sentences, and a function for splitting longer texts into separate
26006 documents, each with the same number of words. The tokenizers have a
26007 consistent interface, and the package is built on the @code{stringi} and
26008 @code{Rcpp} packages for fast yet correct tokenization in UTF-8 encoding.")
26009 (license license:expat)))
26010
26011 (define-public r-hunspell
26012 (package
26013 (name "r-hunspell")
26014 (version "3.0.1")
26015 (source
26016 (origin
26017 (method url-fetch)
26018 (uri (cran-uri "hunspell" version))
26019 (sha256
26020 (base32
26021 "0ql6y05d4xxpm468rslb0wxdp1x9l3flxzmb5w6pjg617f8vpv8z"))))
26022 (properties `((upstream-name . "hunspell")))
26023 (build-system r-build-system)
26024 (propagated-inputs
26025 `(("r-digest" ,r-digest)
26026 ("r-rcpp" ,r-rcpp)))
26027 (native-inputs
26028 `(("r-knitr" ,r-knitr)))
26029 (home-page "https://github.com/ropensci/hunspell#readme")
26030 (synopsis "High-performance stemmer, tokenizer, and spell checker")
26031 (description
26032 "This package provides a low-level spell checker and morphological
26033 analyzer based on the famous @code{hunspell} library. The package can analyze
26034 or check individual words as well as parse text, LaTeX, HTML or XML documents.
26035 For a more user-friendly interface use the @code{spelling} package which
26036 builds on this package to automate checking of files, documentation and
26037 vignettes in all common formats.")
26038 ;; The hunspell library itself is available under one of GPL2, LGPL2.1, or
26039 ;; MPL; in addition to these licenses the rest of the R wrapper is also
26040 ;; available under the Expat license.
26041 (license (list license:gpl2
26042 license:lgpl2.1
26043 license:mpl1.1
26044 license:expat))))
26045
26046 (define-public r-tidytext
26047 (package
26048 (name "r-tidytext")
26049 (version "0.3.0")
26050 (source
26051 (origin
26052 (method url-fetch)
26053 (uri (cran-uri "tidytext" version))
26054 (sha256
26055 (base32
26056 "1icbfw4zkbs9sp6vk814mw2zzm0bc0d7af92vhriqxaga0gbwdkx"))))
26057 (properties `((upstream-name . "tidytext")))
26058 (build-system r-build-system)
26059 (propagated-inputs
26060 `(("r-dplyr" ,r-dplyr)
26061 ("r-generics" ,r-generics)
26062 ("r-hunspell" ,r-hunspell)
26063 ("r-janeaustenr" ,r-janeaustenr)
26064 ("r-lifecycle" ,r-lifecycle)
26065 ("r-matrix" ,r-matrix)
26066 ("r-purrr" ,r-purrr)
26067 ("r-rlang" ,r-rlang)
26068 ("r-stringr" ,r-stringr)
26069 ("r-tibble" ,r-tibble)
26070 ("r-tokenizers" ,r-tokenizers)
26071 ("r-vctrs" ,r-vctrs)))
26072 (native-inputs
26073 `(("r-knitr" ,r-knitr)))
26074 (home-page "https://github.com/juliasilge/tidytext")
26075 (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
26076 (description
26077 "This is a package for text mining for word processing and sentiment
26078 analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
26079 (license license:expat)))
26080
26081 (define-public r-parsnip
26082 (package
26083 (name "r-parsnip")
26084 (version "0.1.5")
26085 (source
26086 (origin
26087 (method url-fetch)
26088 (uri (cran-uri "parsnip" version))
26089 (sha256
26090 (base32
26091 "0c12lyfxqsdprqlcmgy421py38z28h88d68pxb1c4fw14v1c2d06"))))
26092 (properties `((upstream-name . "parsnip")))
26093 (build-system r-build-system)
26094 (propagated-inputs
26095 `(("r-dplyr" ,r-dplyr)
26096 ("r-generics" ,r-generics)
26097 ("r-globals" ,r-globals)
26098 ("r-glue" ,r-glue)
26099 ("r-magrittr" ,r-magrittr)
26100 ("r-prettyunits" ,r-prettyunits)
26101 ("r-purrr" ,r-purrr)
26102 ("r-rlang" ,r-rlang)
26103 ("r-tibble" ,r-tibble)
26104 ("r-tidyr" ,r-tidyr)
26105 ("r-vctrs" ,r-vctrs)))
26106 (native-inputs
26107 `(("r-knitr" ,r-knitr)))
26108 (home-page "https://parsnip.tidymodels.org")
26109 (synopsis "Common API to modeling and analysis functions")
26110 (description
26111 "This package provides a common interface to allow users to specify a
26112 model without having to remember the different argument names across different
26113 functions or computational engines (e.g. R, Spark, Stan, etc).")
26114 (license license:gpl2)))
26115
26116 (define-public r-infer
26117 (package
26118 (name "r-infer")
26119 (version "0.5.4")
26120 (source
26121 (origin
26122 (method url-fetch)
26123 (uri (cran-uri "infer" version))
26124 (sha256
26125 (base32
26126 "0wvvgqjhyv7ql98cjzqad61wbmk7xrqd1ybk894jr5cmza13c8w2"))))
26127 (properties `((upstream-name . "infer")))
26128 (build-system r-build-system)
26129 (propagated-inputs
26130 `(("r-dplyr" ,r-dplyr)
26131 ("r-ggplot2" ,r-ggplot2)
26132 ("r-glue" ,r-glue)
26133 ("r-magrittr" ,r-magrittr)
26134 ("r-purrr" ,r-purrr)
26135 ("r-rlang" ,r-rlang)
26136 ("r-tibble" ,r-tibble)))
26137 (native-inputs
26138 `(("r-knitr" ,r-knitr)))
26139 (home-page "https://github.com/tidymodels/infer")
26140 (synopsis "Tidy statistical inference")
26141 (description
26142 "The objective of this package is to perform inference using an
26143 expressive statistical grammar that coheres with the Tidy design framework.")
26144 (license license:cc0)))
26145
26146 (define-public r-modeldata
26147 (package
26148 (name "r-modeldata")
26149 (version "0.1.0")
26150 (source
26151 (origin
26152 (method url-fetch)
26153 (uri (cran-uri "modeldata" version))
26154 (sha256
26155 (base32
26156 "0lbvmicvhw560jn9qk5dywrl6mgj1rf7zh7p86lf97c6bmz0zp2r"))))
26157 (properties `((upstream-name . "modeldata")))
26158 (build-system r-build-system)
26159 (home-page "https://modeldata.tidymodels.org")
26160 (synopsis "Data sets useful for modeling packages")
26161 (description
26162 "This package provides data sets used for demonstrating or testing
26163 model-related packages.")
26164 (license license:expat)))
26165
26166 (define-public r-tidymodels
26167 (package
26168 (name "r-tidymodels")
26169 (version "0.1.2")
26170 (source
26171 (origin
26172 (method url-fetch)
26173 (uri (cran-uri "tidymodels" version))
26174 (sha256
26175 (base32
26176 "09njrl655sh82xrzckgg56a6ndfrjla5fy8675wj4jsj14jpv0fw"))))
26177 (properties `((upstream-name . "tidymodels")))
26178 (build-system r-build-system)
26179 (propagated-inputs
26180 `(("r-broom" ,r-broom)
26181 ("r-cli" ,r-cli)
26182 ("r-dials" ,r-dials)
26183 ("r-dplyr" ,r-dplyr)
26184 ("r-ggplot2" ,r-ggplot2)
26185 ("r-infer" ,r-infer)
26186 ("r-magrittr" ,r-magrittr)
26187 ("r-modeldata" ,r-modeldata)
26188 ("r-parsnip" ,r-parsnip)
26189 ("r-purrr" ,r-purrr)
26190 ("r-recipes" ,r-recipes)
26191 ("r-rlang" ,r-rlang)
26192 ("r-rsample" ,r-rsample)
26193 ("r-rstudioapi" ,r-rstudioapi)
26194 ("r-tibble" ,r-tibble)
26195 ("r-tidyr" ,r-tidyr)
26196 ("r-tune" ,r-tune)
26197 ("r-workflows" ,r-workflows)
26198 ("r-yardstick" ,r-yardstick)))
26199 (native-inputs
26200 `(("r-knitr" ,r-knitr)
26201 ("r-rmarkdown" ,r-rmarkdown)
26202 ("pandoc" ,pandoc)
26203 ("pandoc-citeproc" ,pandoc-citeproc))) ; for vignettes
26204 (home-page "https://github.com/tidymodels/tidymodels")
26205 (synopsis "Tidy collection for modeling and statistical analysis")
26206 (description
26207 "The tidy modeling \"verse\" is a collection of packages for modeling and
26208 statistical analysis that share the underlying design philosophy, grammar, and
26209 data structures of the tidyverse.")
26210 (license license:gpl3)))
26211
26212 (define-public r-mlecens
26213 (package
26214 (name "r-mlecens")
26215 (version "0.1-4")
26216 (source
26217 (origin
26218 (method url-fetch)
26219 (uri (cran-uri "MLEcens" version))
26220 (sha256
26221 (base32
26222 "0zlmrcjraypscgs2v0w4s4hm7qccsmaz4hjsgqpn0058vx622945"))))
26223 (properties `((upstream-name . "MLEcens")))
26224 (build-system r-build-system)
26225 (home-page "http://stat.ethz.ch/~maathuis/")
26226 (synopsis "Computation of the MLE for bivariate (interval) censored data")
26227 (description
26228 "This package contains functions to compute the nonparametric
26229 @dfn{maximum likelihood estimator} (MLE) for the bivariate distribution of
26230 @code{(X,Y)}, when realizations of @code{(X,Y)} cannot be observed directly.
26231 To be more precise, we consider the situation where we observe a set of
26232 rectangles that are known to contain the unobservable realizations of (X,Y).
26233 We compute the MLE based on such a set of rectangles. The methods can also be
26234 used for univariate censored data (see data set @code{cosmesis}), and for
26235 censored data with competing risks (see data set @code{menopause}). The
26236 package also provides functions to visualize the observed data and the MLE.")
26237 (license license:gpl2+)))
26238
26239 (define-public r-metafor
26240 (package
26241 (name "r-metafor")
26242 (version "2.4-0")
26243 (source
26244 (origin
26245 (method url-fetch)
26246 (uri (cran-uri "metafor" version))
26247 (sha256
26248 (base32
26249 "1b599fxk7s0brkchmx698fr5k4g1kzkia2rnlvhg349ffs5nfjmn"))))
26250 (properties `((upstream-name . "metafor")))
26251 (build-system r-build-system)
26252 (propagated-inputs
26253 `(("r-matrix" ,r-matrix)
26254 ("r-nlme" ,r-nlme)))
26255 (home-page "https://cran.r-project.org/web/packages/metafor/")
26256 (synopsis "Meta-analysis package for R")
26257 (description
26258 "This package provides a comprehensive collection of functions for
26259 conducting meta-analyses in R. The package includes functions to calculate
26260 various effect sizes or outcome measures, fit fixed-, random-, and
26261 mixed-effects models to such data, carry out moderator and meta-regression
26262 analyses, and create various types of meta-analytical plots (e.g., forest,
26263 funnel, radial, L'Abbe, Baujat, GOSH plots). For meta-analyses of binomial
26264 and person-time data, the package also provides functions that implement
26265 specialized methods, including the Mantel-Haenszel method, Peto's method, and
26266 a variety of suitable generalized linear (mixed-effects) models (i.e.
26267 mixed-effects logistic and Poisson regression models). Finally, the package
26268 provides functionality for fitting meta-analytic multivariate/multilevel
26269 models that account for non-independent sampling errors and/or true
26270 effects (e.g. due to the inclusion of multiple treatment studies, multiple
26271 endpoints, or other forms of clustering). Network meta-analyses and
26272 meta-analyses accounting for known correlation structures (e.g. due to
26273 phylogenetic relatedness) can also be conducted.")
26274 (license license:gpl2+)))
26275
26276 (define-public r-altmeta
26277 (package
26278 (name "r-altmeta")
26279 (version "3.2")
26280 (source
26281 (origin
26282 (method url-fetch)
26283 (uri (cran-uri "altmeta" version))
26284 (sha256
26285 (base32
26286 "0z252lbsknqp33i0b0xf5r7spr535iq47bv40vgip6nsqhgrl7b0"))))
26287 (properties `((upstream-name . "altmeta")))
26288 (build-system r-build-system)
26289 (propagated-inputs
26290 `(("r-coda" ,r-coda)
26291 ("r-lme4" ,r-lme4)
26292 ("r-matrix" ,r-matrix)
26293 ("r-metafor" ,r-metafor)
26294 ("r-rjags" ,r-rjags)))
26295 (home-page "https://cran.r-project.org/web/packages/altmeta/")
26296 (synopsis "Alternative meta-analysis methods")
26297 (description
26298 "This package provides alternative statistical methods for meta-analysis,
26299 including:
26300
26301 @enumerate
26302 @item bivariate generalized linear mixed models for synthesizing odds ratios,
26303 relative risks, and risk differences
26304 @item heterogeneity tests and measures that are robust to outliers;
26305 @item measures, tests, and visualization tools for publication bias or
26306 small-study effects;
26307 @item meta-analysis of diagnostic tests for synthesizing sensitivities,
26308 specificities, etc.;
26309 @item meta-analysis methods for synthesizing proportions;
26310 @item models for multivariate meta-analysis.
26311 @end enumerate
26312 ")
26313 (license license:gpl2+)))
26314
26315 (define-public r-perm
26316 (package
26317 (name "r-perm")
26318 (version "1.0-0.0")
26319 (source
26320 (origin
26321 (method url-fetch)
26322 (uri (cran-uri "perm" version))
26323 (sha256
26324 (base32
26325 "0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
26326 (properties `((upstream-name . "perm")))
26327 (build-system r-build-system)
26328 (home-page "https://cran.r-project.org/web/packages/perm/")
26329 (synopsis "Exact or asymptotic permutation tests")
26330 (description
26331 "This package provides several methods for performing permutation tests.
26332 It has three main functions, to perform linear permutation tests. These tests
26333 are tests where the test statistic is the sum of the product of a
26334 covariate (usually group indicator) and the scores.")
26335 ;; Any version of the GPL
26336 (license license:gpl2+)))
26337
26338 (define-public r-qtl
26339 (package
26340 (name "r-qtl")
26341 (version "1.47-9")
26342 (source
26343 (origin
26344 (method url-fetch)
26345 (uri (cran-uri "qtl" version))
26346 (sha256
26347 (base32
26348 "0hffirsvw9j82cdx6l7vhqn3a7ab52claqjlinv3lswl1nsfg93b"))))
26349 (build-system r-build-system)
26350 (home-page "https://rqtl.org/")
26351 (synopsis "R package for analyzing QTL experiments in genetics")
26352 (description "R/qtl is an extension library for the R statistics system.
26353 It is used to analyze experimental crosses for identifying genes contributing
26354 to variation in quantitative traits (so-called quantitative trait loci, QTLs).
26355
26356 Using a hidden Markov model, R/qtl estimates genetic maps, to identify
26357 genotyping errors, and to perform single-QTL and two-QTL, two-dimensional
26358 genome scans.")
26359 (license license:gpl3)))
26360
26361 (define-public r-qtl2
26362 (package
26363 (name "r-qtl2")
26364 (version "0.24")
26365 (source (origin
26366 (method url-fetch)
26367 (uri (cran-uri "qtl2" version))
26368 (sha256
26369 (base32 "1558khh0zkwm0rdk87krv9836krvwv5h7ymlz9bsrgcvypyr9186"))))
26370 (build-system r-build-system)
26371 (propagated-inputs
26372 `(("r-data-table" ,r-data-table)
26373 ("r-jsonlite" ,r-jsonlite)
26374 ("r-rcpp" ,r-rcpp)
26375 ("r-rcppeigen" ,r-rcppeigen)
26376 ("r-rsqlite" ,r-rsqlite)
26377 ("r-yaml" ,r-yaml)))
26378 (home-page "https://kbroman.org/qtl2/")
26379 (synopsis "Quantitative Trait Locus Mapping in Experimental Crosses")
26380 (description
26381 "This package provides a set of tools to perform @dfn{Quantitative Trait
26382 Locus} (QTL) analysis in experimental crosses. It is a reimplementation of the
26383 @code{R/qtl} package to better handle high-dimensional data and complex cross
26384 designs. Broman et al. (2018) <doi:10.1534/genetics.118.301595>.")
26385 (license license:gpl3)))
26386
26387 (define-public r-seqminer
26388 (package
26389 (name "r-seqminer")
26390 (version "8.0")
26391 (source
26392 (origin
26393 (method url-fetch)
26394 (uri (cran-uri "seqminer" version))
26395 (sha256
26396 (base32
26397 "00jzj8mwb0zaiwlifd41b26mrq9mzigj18nc29dydi0r42hxg16i"))))
26398 (build-system r-build-system)
26399 (inputs
26400 `(("zlib" ,zlib)))
26401 (home-page "http://seqminer.genomic.codes")
26402 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
26403 (description
26404 "This package provides tools to integrate nucleotide sequencing
26405 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
26406 ;; Any version of the GPL is acceptable
26407 (license (list license:gpl2+ license:gpl3+))))
26408
26409 (define-public r-maldiquant
26410 (package
26411 (name "r-maldiquant")
26412 (version "1.19.3")
26413 (source
26414 (origin
26415 (method url-fetch)
26416 (uri (cran-uri "MALDIquant" version))
26417 (sha256
26418 (base32
26419 "0b7kdz3x4sdq413h1q09l1qhcvdnnwv6fqsqwllks1cd3xy34c57"))))
26420 (properties `((upstream-name . "MALDIquant")))
26421 (build-system r-build-system)
26422 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
26423 (synopsis "Quantitative analysis of mass spectrometry data")
26424 (description
26425 "This package provides a complete analysis pipeline for matrix-assisted
26426 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
26427 two-dimensional mass spectrometry data. In addition to commonly used plotting
26428 and processing methods it includes distinctive features, namely baseline
26429 subtraction methods such as morphological filters (TopHat) or the
26430 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
26431 alignment using warping functions, handling of replicated measurements as well
26432 as allowing spectra with different resolutions.")
26433 (license license:gpl3+)))
26434
26435 (define-public r-scattermore
26436 (package
26437 (name "r-scattermore")
26438 (version "0.7")
26439 (source
26440 (origin
26441 (method url-fetch)
26442 (uri (cran-uri "scattermore" version))
26443 (sha256
26444 (base32
26445 "18nzlprmphkvjg946h10h2qq0wbkmv2526p8di6k2xl4gccq0qpk"))))
26446 (properties `((upstream-name . "scattermore")))
26447 (build-system r-build-system)
26448 (propagated-inputs
26449 `(("r-ggplot2" ,r-ggplot2)
26450 ("r-scales" ,r-scales)))
26451 (home-page "https://github.com/exaexa/scattermore")
26452 (synopsis "Scatterplots with more points")
26453 (description
26454 "This package provides C-based tools for converting large scatterplot
26455 data to rasters. It speeds up plotting of data with millions of points.")
26456 (license license:gpl3+)))
26457
26458 (define-public r-seuratobject
26459 (package
26460 (name "r-seuratobject")
26461 (version "4.0.0")
26462 (source
26463 (origin
26464 (method url-fetch)
26465 (uri (cran-uri "SeuratObject" version))
26466 (sha256
26467 (base32
26468 "03k27z7g76wy7mfja2cpxq183xk0906k9gxb2j6p1zw341gv4gii"))))
26469 (properties `((upstream-name . "SeuratObject")))
26470 (build-system r-build-system)
26471 (propagated-inputs
26472 `(("r-matrix" ,r-matrix)
26473 ("r-rcpp" ,r-rcpp)
26474 ("r-rcppeigen" ,r-rcppeigen)
26475 ("r-rlang" ,r-rlang)
26476 ("r-sctransform" ,r-sctransform)))
26477 (home-page "https://satijalab.org/seurat")
26478 (synopsis "Data structures for single cell data")
26479 (description
26480 "This package defines S4 classes for single-cell genomic data and
26481 associated information, such as dimensionality reduction embeddings,
26482 nearest-neighbor graphs, and spatially-resolved coordinates. It provides data
26483 access methods and R-native hooks to ensure the Seurat object is familiar to
26484 other R users.")
26485 (license license:gpl3)))
26486
26487 (define-public r-seurat
26488 (package
26489 (name "r-seurat")
26490 (version "4.0.0")
26491 (source (origin
26492 (method url-fetch)
26493 (uri (cran-uri "Seurat" version))
26494 (sha256
26495 (base32
26496 "1mp3py00bmzj4541d8ry5sfzkpfzvnl9dpa8n4qhakd13dl30xdn"))))
26497 (properties `((upstream-name . "Seurat")))
26498 (build-system r-build-system)
26499 (propagated-inputs
26500 `(("r-cluster" ,r-cluster)
26501 ("r-cowplot" ,r-cowplot)
26502 ("r-fitdistrplus" ,r-fitdistrplus)
26503 ("r-future" ,r-future)
26504 ("r-future-apply" ,r-future-apply)
26505 ("r-ggplot2" ,r-ggplot2)
26506 ("r-ggrepel" ,r-ggrepel)
26507 ("r-ggridges" ,r-ggridges)
26508 ("r-httr" ,r-httr)
26509 ("r-ica" ,r-ica)
26510 ("r-igraph" ,r-igraph)
26511 ("r-irlba" ,r-irlba)
26512 ("r-jsonlite" ,r-jsonlite)
26513 ("r-kernsmooth" ,r-kernsmooth)
26514 ("r-leiden" ,r-leiden)
26515 ("r-lmtest" ,r-lmtest)
26516 ("r-mass" ,r-mass)
26517 ("r-matrix" ,r-matrix)
26518 ("r-matrixstats" ,r-matrixstats)
26519 ("r-miniui" ,r-miniui)
26520 ("r-patchwork" ,r-patchwork)
26521 ("r-pbapply" ,r-pbapply)
26522 ("r-plotly" ,r-plotly)
26523 ("r-png" ,r-png)
26524 ("r-rann" ,r-rann)
26525 ("r-rcolorbrewer" ,r-rcolorbrewer)
26526 ("r-rcpp" ,r-rcpp)
26527 ("r-rcppannoy" ,r-rcppannoy)
26528 ("r-rcppeigen" ,r-rcppeigen)
26529 ("r-rcppprogress" ,r-rcppprogress)
26530 ("r-reticulate" ,r-reticulate)
26531 ("r-rlang" ,r-rlang)
26532 ("r-rocr" ,r-rocr)
26533 ("r-rtsne" ,r-rtsne)
26534 ("r-scales" ,r-scales)
26535 ("r-scattermore" ,r-scattermore)
26536 ("r-sctransform" ,r-sctransform)
26537 ("r-seuratobject" ,r-seuratobject)
26538 ("r-shiny" ,r-shiny)
26539 ("r-spatstat" ,r-spatstat)
26540 ("r-tibble" ,r-tibble)
26541 ("r-uwot" ,r-uwot)))
26542 (home-page "http://www.satijalab.org/seurat")
26543 (synopsis "Seurat is an R toolkit for single cell genomics")
26544 (description
26545 "This package is an R package designed for QC, analysis, and
26546 exploration of single cell RNA-seq data. It easily enables widely-used
26547 analytical techniques, including the identification of highly variable genes,
26548 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
26549 algorithms; density clustering, hierarchical clustering, k-means, and the
26550 discovery of differentially expressed genes and markers.")
26551 (license license:gpl3)))
26552
26553 (define-public r-phangorn
26554 (package
26555 (name "r-phangorn")
26556 (version "2.5.5")
26557 (source
26558 (origin
26559 (method url-fetch)
26560 (uri (cran-uri "phangorn" version))
26561 (sha256
26562 (base32
26563 "0ihkaykqjmf80d8wrk3saphxvnv58zma6pd13633bd3cwanc33f5"))))
26564 (build-system r-build-system)
26565 (propagated-inputs
26566 `(("r-ape" ,r-ape)
26567 ("r-fastmatch" ,r-fastmatch)
26568 ("r-igraph" ,r-igraph)
26569 ("r-magrittr" ,r-magrittr)
26570 ("r-matrix" ,r-matrix)
26571 ("r-quadprog" ,r-quadprog)
26572 ("r-rcpp" ,r-rcpp)))
26573 (home-page "https://github.com/KlausVigo/phangorn")
26574 (synopsis "Phylogenetic analysis in R")
26575 (description
26576 "Phangorn is a package for phylogenetic analysis in R. It supports
26577 estimation of phylogenetic trees and networks using Maximum Likelihood,
26578 Maximum Parsimony, distance methods and Hadamard conjugation.")
26579 (license license:gpl2+)))
26580
26581 (define-public r-diversitree
26582 (package
26583 (name "r-diversitree")
26584 (version "0.9-15")
26585 (source
26586 (origin
26587 (method url-fetch)
26588 (uri (cran-uri "diversitree" version))
26589 (sha256
26590 (base32
26591 "1sk3sgn5hi04978s5s7gy6pzp28g3v9rglmiamlgs96c9wyyyff7"))))
26592 (build-system r-build-system)
26593 (native-inputs
26594 `(("gfortran" ,gfortran)))
26595 (inputs `(("fftw" ,fftw) ("gsl" ,gsl)))
26596 (propagated-inputs
26597 `(("r-ape" ,r-ape)
26598 ("r-desolve" ,r-desolve)
26599 ("r-rcpp" ,r-rcpp)
26600 ("r-subplex" ,r-subplex)))
26601 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
26602 (synopsis "Comparative 'phylogenetic' analyses of diversification")
26603 (description "This package contains a number of comparative \"phylogenetic\"
26604 methods, mostly focusing on analysing diversification and character evolution.
26605 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
26606 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
26607 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
26608 include Markov models of discrete and continuous trait evolution and constant
26609 rate speciation and extinction.")
26610 (license license:gpl2+)))
26611
26612 (define-public r-absfiltergsea
26613 (package
26614 (name "r-absfiltergsea")
26615 (version "1.5.1")
26616 (source
26617 (origin
26618 (method url-fetch)
26619 (uri (cran-uri "AbsFilterGSEA" version))
26620 (sha256
26621 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
26622 (properties `((upstream-name . "AbsFilterGSEA")))
26623 (build-system r-build-system)
26624 (propagated-inputs
26625 `(("r-biobase" ,r-biobase)
26626 ("r-deseq" ,r-deseq)
26627 ("r-limma" ,r-limma)
26628 ("r-rcpp" ,r-rcpp)
26629 ("r-rcpparmadillo" ,r-rcpparmadillo)))
26630 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
26631 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
26632 (description
26633 "This package provides a function that performs gene-permuting of a gene-set
26634 enrichment analysis (GSEA) calculation with or without the absolute filtering.
26635 Without filtering, users can perform (original) two-tailed or one-tailed
26636 absolute GSEA.")
26637 (license license:gpl2)))
26638
26639 (define-public r-calculus
26640 (package
26641 (name "r-calculus")
26642 (version "0.3.0")
26643 (source
26644 (origin
26645 (method url-fetch)
26646 (uri (cran-uri "calculus" version))
26647 (sha256
26648 (base32
26649 "1wa5ap89cfcp0ancj9ivx5s2y0wqr2vmp9y115g7f6g772jwhscj"))))
26650 (properties `((upstream-name . "calculus")))
26651 (build-system r-build-system)
26652 (propagated-inputs
26653 `(("r-rcpp" ,r-rcpp)))
26654 (native-inputs
26655 `(("r-knitr" ,r-knitr)))
26656 (home-page "https://github.com/eguidotti/calculus")
26657 (synopsis "High dimensional numerical and symbolic calculus")
26658 (description
26659 "Efficient C++ optimized functions for numerical and symbolic calculus.
26660 It includes basic symbolic arithmetic, tensor calculus, Einstein summing
26661 convention, fast computation of the Levi-Civita symbol and generalized
26662 Kronecker delta, Taylor series expansion, multivariate Hermite polynomials,
26663 accurate high-order derivatives, differential operators (Gradient, Jacobian,
26664 Hessian, Divergence, Curl, Laplacian) and numerical integration in arbitrary
26665 orthogonal coordinate systems: cartesian, polar, spherical, cylindrical,
26666 parabolic or user defined by custom scale factors.")
26667 (license license:gpl3)))
26668
26669 (define-public r-decon
26670 (package
26671 (name "r-decon")
26672 (version "1.2-4")
26673 (source
26674 (origin
26675 (method url-fetch)
26676 (uri (cran-uri "decon" version))
26677 (sha256
26678 (base32
26679 "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
26680 (properties `((upstream-name . "decon")))
26681 (build-system r-build-system)
26682 (native-inputs
26683 `(("gfortran" ,gfortran)))
26684 (home-page
26685 "https://cran.r-project.org/web/packages/decon/")
26686 (synopsis "Deconvolution Estimation in Measurement Error Models")
26687 (description
26688 "This package contains a collection of functions to deal with
26689 nonparametric measurement error problems using deconvolution
26690 kernel methods. We focus two measurement error models in the
26691 package: (1) an additive measurement error model, where the
26692 goal is to estimate the density or distribution function from
26693 contaminated data; (2) nonparametric regression model with
26694 errors-in-variables. The R functions allow the measurement errors
26695 to be either homoscedastic or heteroscedastic. To make the
26696 deconvolution estimators computationally more efficient in R,
26697 we adapt the \"Fast Fourier Transform\" (FFT) algorithm for
26698 density estimation with error-free data to the deconvolution
26699 kernel estimation. Several methods for the selection of the
26700 data-driven smoothing parameter are also provided in the package.
26701 See details in: Wang, X.F. and Wang, B. (2011). Deconvolution
26702 estimation in measurement error models: The R package decon.
26703 Journal of Statistical Software, 39(10), 1-24.")
26704 (license license:gpl3+)))
26705
26706 (define-public r-locpol
26707 (package
26708 (name "r-locpol")
26709 (version "0.7-0")
26710 (source
26711 (origin
26712 (method url-fetch)
26713 (uri (cran-uri "locpol" version))
26714 (sha256
26715 (base32
26716 "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
26717 (properties `((upstream-name . "locpol")))
26718 (build-system r-build-system)
26719 (home-page
26720 "https://cran.r-project.org/web/packages/locpol/")
26721 (synopsis "Kernel Local Polynomial Regression")
26722 (description
26723 "Computes local polynomial estimators for the regression and
26724 also density. It comprises several different utilities to handle
26725 kernel estimators.")
26726 (license license:gpl2+)))
26727
26728 (define-public r-lpme
26729 (package
26730 (name "r-lpme")
26731 (version "1.1.1")
26732 (source
26733 (origin
26734 (method url-fetch)
26735 (uri (cran-uri "lpme" version))
26736 (sha256
26737 (base32
26738 "0si90nkgl8bqk8yvd2igdsrngiwqh8891072pfpzipifnd0f5448"))))
26739 (properties `((upstream-name . "lpme")))
26740 (build-system r-build-system)
26741 (propagated-inputs
26742 `(("r-decon" ,r-decon)
26743 ("r-flexmix" ,r-flexmix)
26744 ("r-locpol" ,r-locpol)
26745 ("r-rcpp" ,r-rcpp)
26746 ("r-rcpparmadillo" ,r-rcpparmadillo)))
26747 (home-page
26748 "https://cran.r-project.org/web/packages/lpme/")
26749 (synopsis "Nonparametric Estimation of Measurement Error Models")
26750 (description
26751 "Provide nonparametric methods for mean regression model,
26752 modal regression and conditional density estimation in the
26753 presence/absence of measurement error. Bandwidth selection is
26754 also provided for each method.")
26755 (license license:gpl2+)))
26756
26757 (define-public r-aws-signature
26758 (package
26759 (name "r-aws-signature")
26760 (version "0.6.0")
26761 (source
26762 (origin
26763 (method url-fetch)
26764 (uri (cran-uri "aws.signature" version))
26765 (sha256
26766 (base32
26767 "15llpcnrdq4y6jsn7079yjmgbr5d1wgy2ymsm3jj3gkrd5l4zzpp"))))
26768 (properties `((upstream-name . "aws.signature")))
26769 (build-system r-build-system)
26770 (propagated-inputs
26771 `(("r-base64enc" ,r-base64enc)
26772 ("r-digest" ,r-digest)))
26773 (home-page "https://github.com/cloudyr/aws.signature")
26774 (synopsis "Amazon Web Services Request Signatures")
26775 (description
26776 "This package generates version 2 and 4 request signatures for Amazon Web
26777 Services (AWS) and provides a mechanism for retrieving credentials from
26778 environment variables, AWS credentials files, and EC2 instance metadata. For
26779 use on EC2 instances, the package 'aws.ec2metadata' is suggested.")
26780 (license license:gpl2+)))
26781
26782 (define-public r-aws-s3
26783 (package
26784 (name "r-aws-s3")
26785 (version "0.3.21")
26786 (source
26787 (origin
26788 (method url-fetch)
26789 (uri (cran-uri "aws.s3" version))
26790 (sha256
26791 (base32
26792 "132cczq0ml7lpp2yl6l4p99dn1zihrncnpa6wyad4m9mnr50a8dx"))))
26793 (properties `((upstream-name . "aws.s3")))
26794 (build-system r-build-system)
26795 (propagated-inputs
26796 `(("r-aws-signature" ,r-aws-signature)
26797 ("r-base64enc" ,r-base64enc)
26798 ("r-curl" ,r-curl)
26799 ("r-digest" ,r-digest)
26800 ("r-httr" ,r-httr)
26801 ("r-xml2" ,r-xml2)))
26802 (home-page "https://github.com/cloudyr/aws.s3")
26803 (synopsis "AWS S3 Client Package")
26804 (description
26805 "This package provides a simple client package for the Amazon Web
26806 Services (AWS) Simple Storage Service (S3) REST API.")
26807 (license license:gpl2+)))
26808
26809 (define-public r-lgr
26810 (package
26811 (name "r-lgr")
26812 (version "0.4.2")
26813 (source (origin
26814 (method url-fetch)
26815 (uri (cran-uri "lgr" version))
26816 (sha256
26817 (base32
26818 "0k4kacjk7swm3gmdpha1rg44xb29vzvhvx48jhpb78glj5c9phyr"))))
26819 (build-system r-build-system)
26820 (propagated-inputs
26821 `(("r-r6" ,r-r6)))
26822 (native-inputs
26823 `(("r-knitr" ,r-knitr)))
26824 (home-page "https://s-fleck.github.io/lgr/")
26825 (synopsis "Fully featured logging framework")
26826 (description "This package offers a flexible, feature-rich yet
26827 light-weight logging framework based on @code{R6} classes. It supports
26828 hierarchical loggers, custom log levels, arbitrary data fields in log events,
26829 logging to plaintext, JSON, (rotating) files, memory buffers, and databases, as
26830 well as email and push notifications.")
26831 (license license:expat)))
26832
26833 (define-public r-mlr3measures
26834 (package
26835 (name "r-mlr3measures")
26836 (version "0.3.1")
26837 (source (origin
26838 (method url-fetch)
26839 (uri (cran-uri "mlr3measures" version))
26840 (sha256
26841 (base32
26842 "18jk4kdj9771r16smz7xhmmiilcdg1qlavln5hrpvkx780zh3hj6"))))
26843 (build-system r-build-system)
26844 (propagated-inputs
26845 `(("r-checkmate" ,r-checkmate)
26846 ("r-prroc" ,r-prroc)))
26847 (home-page "https://mlr3measures.mlr-org.com/")
26848 (synopsis "Performance measures for mlr3")
26849 (description "This package implements multiple performance measures for
26850 supervised learning. It includes over 40 measures for regression and
26851 classification. Additionally, meta information about the performance measures
26852 can be queried, e.g. what the best and worst possible performances scores
26853 are.")
26854 (license license:lgpl3)))
26855
26856 (define-public r-mlr3misc
26857 (package
26858 (name "r-mlr3misc")
26859 (version "0.7.0")
26860 (source (origin
26861 (method url-fetch)
26862 (uri (cran-uri "mlr3misc" version))
26863 (sha256
26864 (base32
26865 "19k3l2d6wnqvdng0m7p54rrlvwl5457lcy7bg82m2bbpqxi8qch3"))))
26866 (build-system r-build-system)
26867 (propagated-inputs
26868 `(("r-backports" ,r-backports)
26869 ("r-checkmate" ,r-checkmate)
26870 ("r-data-table" ,r-data-table)
26871 ("r-r6" ,r-r6)))
26872 (home-page "https://mlr3misc.mlr-org.com/")
26873 (synopsis "Helper functions for mlr3")
26874 (description "@code{mlr3misc} provides frequently used helper functions
26875 and assertions used in @code{mlr3} and its companion packages. It comes with
26876 helper functions for functional programming, for printing, to work with
26877 @code{data.table}, as well as some generally useful @code{R6} classes. This
26878 package also supersedes the package @code{BBmisc}.")
26879 (license license:lgpl3)))
26880
26881 (define-public r-paradox
26882 (package
26883 (name "r-paradox")
26884 (version "0.7.1")
26885 (source (origin
26886 (method url-fetch)
26887 (uri (cran-uri "paradox" version))
26888 (sha256
26889 (base32
26890 "1difp0bzsfxcmbm1snahh3i6417k1a2w4mnjx65p20n2yiclmrgs"))))
26891 (build-system r-build-system)
26892 (propagated-inputs
26893 `(("r-backports" ,r-backports)
26894 ("r-checkmate" ,r-checkmate)
26895 ("r-data-table" ,r-data-table)
26896 ("r-mlr3misc" ,r-mlr3misc)
26897 ("r-r6" ,r-r6)))
26898 (home-page "https://paradox.mlr-org.com/")
26899 (synopsis "Define and work with parameter spaces for complex algorithms")
26900 (description "With this package it is possible to define parameter spaces,
26901 constraints and dependencies for arbitrary algorithms, and to program on such
26902 spaces. It also includes statistical designs and random samplers. Objects are
26903 implemented as @code{R6} classes.")
26904 (license license:lgpl3)))
26905
26906 (define-public r-mlr3
26907 (package
26908 (name "r-mlr3")
26909 (version "0.11.0")
26910 (source (origin
26911 (method url-fetch)
26912 (uri (cran-uri "mlr3" version))
26913 (sha256
26914 (base32
26915 "0qh9vdac1als2123wf51bwa7spdqk33iydlawi5n5dpci892iahl"))))
26916 (build-system r-build-system)
26917 (propagated-inputs
26918 `(("r-r6" ,r-r6)
26919 ("r-backports" ,r-backports)
26920 ("r-checkmate" ,r-checkmate)
26921 ("r-data-table" ,r-data-table)
26922 ("r-digest" ,r-digest)
26923 ("r-future-apply" ,r-future-apply)
26924 ("r-lgr" ,r-lgr)
26925 ("r-mlbench" ,r-mlbench)
26926 ("r-mlr3measures" ,r-mlr3measures)
26927 ("r-mlr3misc" ,r-mlr3misc)
26928 ("r-palmerpenguins" ,r-palmerpenguins)
26929 ("r-paradox" ,r-paradox)
26930 ("r-parallelly" ,r-parallelly)
26931 ("r-uuid" ,r-uuid)))
26932 (home-page "https://mlr3.mlr-org.com/")
26933 (synopsis "Machine Learning in R - Next Generation")
26934 (description "@code{mlr3} enables efficient, object-oriented programming
26935 on the building blocks of machine learning. It provides @code{R6} objects for
26936 tasks, learners, resamplings, and measures. The package is geared towards
26937 scalability and larger datasets by supporting parallelization and out-of-memory
26938 data-backends like databases. While @code{mlr3} focuses on the core
26939 computational operations, add-on packages provide additional functionality.")
26940 (license license:lgpl3)))
26941
26942 (define-public r-mlr3learners
26943 (package
26944 (name "r-mlr3learners")
26945 (version "0.4.3")
26946 (source (origin
26947 (method url-fetch)
26948 (uri (cran-uri "mlr3learners" version))
26949 (sha256
26950 (base32
26951 "1wxlpzz3hpkn77n4ag1v868dmp140j1pmrhynsv5xfgk9fg0w7ri"))))
26952 (build-system r-build-system)
26953 (propagated-inputs
26954 `(("r-data-table" ,r-data-table)
26955 ("r-mlr3" ,r-mlr3)
26956 ("r-mlr3misc" ,r-mlr3misc)
26957 ("r-paradox" ,r-paradox)
26958 ("r-r6" ,r-r6)))
26959 (home-page "https://mlr3learners.mlr-org.com/")
26960 (synopsis "Recommended Learners for @code{mlr3}")
26961 (description "@code{mlr3learners} extends @code{mlr3} and @code{mlr3proba}
26962 with interfaces to essential machine learning packages on CRAN. This includes,
26963 but is not limited to: (penalized) linear and logistic regression, linear and
26964 quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
26965 vector machines, and gradient boosting.")
26966 (license license:lgpl3)))
26967
26968 (define-public r-bbotk
26969 (package
26970 (name "r-bbotk")
26971 (version "0.3.0")
26972 (source
26973 (origin
26974 (method url-fetch)
26975 (uri (cran-uri "bbotk" version))
26976 (sha256
26977 (base32
26978 "0kbjbwwq1fdfpl4xzy08hz4qvhjjchvz58icxq0dlbsmdyqwhwv0"))))
26979 (properties `((upstream-name . "bbotk")))
26980 (build-system r-build-system)
26981 (propagated-inputs
26982 `(("r-checkmate" ,r-checkmate)
26983 ("r-data-table" ,r-data-table)
26984 ("r-lgr" ,r-lgr)
26985 ("r-mlr3misc" ,r-mlr3misc)
26986 ("r-paradox" ,r-paradox)
26987 ("r-r6" ,r-r6)))
26988 (native-inputs
26989 `(("r-knitr" ,r-knitr)))
26990 (home-page "https://bbotk.mlr-org.com")
26991 (synopsis "Black-Box Optimization Toolkit")
26992 (description "This package provides a common framework for optimization of
26993 black-box functions for other packages, e.g. @code{mlr3}. It offers various
26994 optimization methods e.g. grid search, random search and generalized simulated
26995 annealing.")
26996 (license license:lgpl3)))
26997
26998 (define-public r-mlr3tuning
26999 (package
27000 (name "r-mlr3tuning")
27001 (version "0.7.0")
27002 (source (origin
27003 (method url-fetch)
27004 (uri (cran-uri "mlr3tuning" version))
27005 (sha256
27006 (base32
27007 "0xpq16qij05nsfwg0qnfziqjvgk5wn0dgl0sb5gg3qsp1cs6vfqj"))))
27008 (build-system r-build-system)
27009 (propagated-inputs
27010 `(("r-bbotk" ,r-bbotk)
27011 ("r-checkmate" ,r-checkmate)
27012 ("r-data-table" ,r-data-table)
27013 ("r-lgr" ,r-lgr)
27014 ("r-mlr3" ,r-mlr3)
27015 ("r-mlr3misc" ,r-mlr3misc)
27016 ("r-paradox" ,r-paradox)
27017 ("r-r6" ,r-r6)))
27018 (home-page "https://mlr3tuning.mlr-org.com/")
27019 (synopsis "Tuning for @code{mlr3}")
27020 (description "@code{mlr3tuning} implements methods for hyperparameter
27021 tuning, e.g. Grid Search, Random Search, or Simulated Annealing. Various
27022 termination criteria can be set and combined. The class @code{AutoTuner} provides a
27023 convenient way to perform nested resampling in combination with @code{mlr3}.")
27024 (license license:lgpl3)))
27025
27026 (define-public r-fontliberation
27027 (package
27028 (name "r-fontliberation")
27029 (version "0.1.0")
27030 (source
27031 (origin
27032 (method url-fetch)
27033 (uri (cran-uri "fontLiberation" version))
27034 (sha256
27035 (base32
27036 "1w1rl0g4ayyp8lwppmz9yzj9cizg7i50g07216jkm1q5w0is9pmc"))))
27037 (properties
27038 `((upstream-name . "fontLiberation")))
27039 (build-system r-build-system)
27040 (home-page "https://cran.r-project.org/package=fontLiberation")
27041 (synopsis "Liberation fonts")
27042 (description
27043 "This package provides a placeholder for the Liberation fontset intended
27044 for the fontquiver package. This fontset covers the 12 combinations of
27045 families (sans, serif, mono) and faces (plain, bold, italic, bold italic)
27046 supported in R graphics devices.")
27047 (license license:silofl1.1)))
27048
27049 (define-public r-fontbitstreamvera
27050 (package
27051 (name "r-fontbitstreamvera")
27052 (version "0.1.1")
27053 (source
27054 (origin
27055 (method url-fetch)
27056 (uri (cran-uri "fontBitstreamVera" version))
27057 (sha256
27058 (base32
27059 "0nipdlmhjv1wr3aidcl97nk6mppdkd65krgwqnhdsnv0jpfv761j"))))
27060 (properties
27061 `((upstream-name . "fontBitstreamVera")))
27062 (build-system r-build-system)
27063 (home-page "https://cran.r-project.org/package=fontBitstreamVera")
27064 (synopsis "Fonts for fontquiver")
27065 (description
27066 "This package is a placeholder for the Bitstream Vera font. It is
27067 intended for the fontquiver package.")
27068 (license
27069 (license:fsdg-compatible
27070 "https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts"
27071 "The Font Software may be sold as part of a larger software package but
27072 no copy of one or more of the Font Software typefaces may be sold by
27073 itself."))))
27074
27075 (define-public r-fontquiver
27076 (package
27077 (name "r-fontquiver")
27078 (version "0.2.1")
27079 (source
27080 (origin
27081 (method url-fetch)
27082 (uri (cran-uri "fontquiver" version))
27083 (sha256
27084 (base32
27085 "0qv3i9hch7cygl9983s3w68wfh5qvym2jkm52pp06p6mq8a1i1wm"))))
27086 (properties `((upstream-name . "fontquiver")))
27087 (build-system r-build-system)
27088 (propagated-inputs
27089 `(("r-fontbitstreamvera" ,r-fontbitstreamvera)
27090 ("r-fontliberation" ,r-fontliberation)))
27091 (home-page "https://cran.r-project.org/package=fontquiver")
27092 (synopsis "Set of installed fonts")
27093 (description
27094 "This package provides a set of fonts. This is useful when you want to
27095 avoid system fonts to make sure your outputs are reproducible.")
27096 (license license:gpl3)))
27097
27098 (define-public r-freetypeharfbuzz
27099 (package
27100 (name "r-freetypeharfbuzz")
27101 (version "0.2.6")
27102 (source
27103 (origin
27104 (method url-fetch)
27105 (uri (cran-uri "freetypeharfbuzz" version))
27106 (sha256
27107 (base32
27108 "0r3icgnq3jk4fm6z92cmhzdmflbk5df8zsmjg0dzpc4y48xafnk7"))))
27109 (properties
27110 `((upstream-name . "freetypeharfbuzz")))
27111 (build-system r-build-system)
27112 (arguments
27113 `(#:phases
27114 (modify-phases %standard-phases
27115 (add-after 'unpack 'prepare-static-libraries
27116 (lambda* (#:key inputs #:allow-other-keys)
27117 (mkdir-p "src/target/include")
27118 (let ((freetype (assoc-ref inputs "static-freetype"))
27119 (harfbuzz (assoc-ref inputs "static-harfbuzz")))
27120 (substitute* "src/Makevars.in"
27121 (("include @MK_FILE@") "") ; do not build static libs
27122 (("^HB_STATIC_LIB =.*")
27123 (string-append "HB_STATIC_LIB = " harfbuzz "/lib/libharfbuzz.a\n"))
27124 (("^FT_STATIC_LIB =.*")
27125 (string-append "FT_STATIC_LIB = " freetype "/lib/libfreetype.a\n")))
27126 (copy-recursively (string-append freetype "/include")
27127 "src/target/include")
27128 (copy-recursively (string-append harfbuzz "/include")
27129 "src/target/include")))))))
27130 (propagated-inputs
27131 `(("r-fontquiver" ,r-fontquiver)))
27132 ;; This may defeat the purpose of this package as our versions of freetype
27133 ;; and harfbuzz obviously differ from the tarballs offered by this
27134 ;; project. On the other hand, Guix arguably does a better job at
27135 ;; "ensur[ing] deterministic computation".
27136 (native-inputs
27137 `(("static-freetype"
27138 ,(package
27139 (inherit (static-package freetype))
27140 (arguments
27141 `(#:configure-flags
27142 (list "--enable-static=yes"
27143 "--with-pic=yes"
27144 "--without-zlib"
27145 "--without-bzip2"
27146 "--without-png"
27147 "--without-harfbuzz")))))
27148 ("static-harfbuzz"
27149 ,(package
27150 (inherit (static-package harfbuzz))
27151 (arguments
27152 `(#:tests? #false ; fail because shared library is disabled
27153 #:configure-flags
27154 (list "--enable-static=yes"
27155 "--enable-shared=no"
27156 "--with-pic=yes"
27157 "--with-freetype=yes"
27158 "--without-icu"
27159 "--without-cairo"
27160 "--without-fontconfig"
27161 "--without-glib")))))))
27162 (inputs
27163 `(("zlib" ,zlib)))
27164 (home-page "https://cran.r-project.org/package=freetypeharfbuzz")
27165 (synopsis "Deterministic computation of text box metrics")
27166 (description
27167 "Unlike other tools that dynamically link to the Cairo stack,
27168 freetypeharfbuzz is statically linked to specific versions of the FreeType and
27169 harfbuzz libraries. This ensures deterministic computation of text box
27170 extents for situations where reproducible results are crucial (for instance
27171 unit tests of graphics).")
27172 (license license:gpl3)))
27173
27174 (define-public r-vdiffr
27175 (package
27176 (name "r-vdiffr")
27177 (version "0.3.3")
27178 (source
27179 (origin
27180 (method url-fetch)
27181 (uri (cran-uri "vdiffr" version))
27182 (sha256
27183 (base32
27184 "0i0xdr8dakbkkgrhp0zvlnv3rxhc8h5naqq416mr5zv9q8i4p8jc"))
27185 (snippet
27186 '(begin
27187 (delete-file "inst/htmlwidgets/lib/jquery.min.js")))))
27188 (properties `((upstream-name . "vdiffr")))
27189 (build-system r-build-system)
27190 (arguments
27191 `(#:phases
27192 (modify-phases %standard-phases
27193 (add-after 'unpack 'process-javascript
27194 (lambda* (#:key inputs #:allow-other-keys)
27195 (with-directory-excursion "inst/htmlwidgets/lib/"
27196 (let ((source (assoc-ref inputs "js-jquery"))
27197 (target "jquery.min.js"))
27198 (format #true "Processing ~a --> ~a~%"
27199 source target)
27200 (invoke "esbuild" source "--minify"
27201 (string-append "--outfile=" target)))))))))
27202 (inputs
27203 `(("freetype" ,freetype)
27204 ("harfbuzz" ,harfbuzz)))
27205 (propagated-inputs
27206 `(("r-bh" ,r-bh)
27207 ("r-devtools" ,r-devtools)
27208 ("r-diffobj" ,r-diffobj)
27209 ("r-fontquiver" ,r-fontquiver)
27210 ("r-freetypeharfbuzz" ,r-freetypeharfbuzz)
27211 ("r-gdtools" ,r-gdtools)
27212 ("r-glue" ,r-glue)
27213 ("r-htmltools" ,r-htmltools)
27214 ("r-htmlwidgets" ,r-htmlwidgets)
27215 ("r-purrr" ,r-purrr)
27216 ("r-r6" ,r-r6)
27217 ("r-rcpp" ,r-rcpp)
27218 ("r-rlang" ,r-rlang)
27219 ("r-shiny" ,r-shiny)
27220 ("r-testthat" ,r-testthat)
27221 ("r-usethis" ,r-usethis)
27222 ("r-xml2" ,r-xml2)))
27223 (native-inputs
27224 `(("esbuild" ,esbuild)
27225 ("js-jquery"
27226 ,(origin
27227 (method url-fetch)
27228 (uri "https://code.jquery.com/jquery-1.12.4.js")
27229 (sha256
27230 (base32
27231 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))))
27232 (home-page "https://github.com/r-lib/vdiffr")
27233 (synopsis "Visual regression testing and graphical diffing")
27234 (description
27235 "This package is an extension to the testthat package that makes it easy
27236 to add graphical unit tests. It provides a Shiny application to manage the
27237 test cases.")
27238 (license license:gpl3)))
27239
27240 (define-public r-highlight
27241 (package
27242 (name "r-highlight")
27243 (version "0.5.0")
27244 (source
27245 (origin
27246 (method url-fetch)
27247 (uri (cran-uri "highlight" version))
27248 (sha256
27249 (base32
27250 "1shar4y07wyixg0ichdrn2xhgwkl3mv2pxkalqzisc69w605b3hf"))))
27251 (properties `((upstream-name . "highlight")))
27252 (build-system r-build-system)
27253 (home-page "https://github.com/hadley/highlight")
27254 (synopsis "Syntax highlighter for R code")
27255 (description
27256 "This package provides a syntax highlighter for R code based on the
27257 results of the R parser. It supports rendering in HTML and LaTeX markup. It
27258 includes a custom Sweave driver performing syntax highlighting of R code
27259 chunks.")
27260 (license license:gpl3+)))
27261
27262 (define-public r-clustree
27263 (package
27264 (name "r-clustree")
27265 (version "0.4.3")
27266 (source
27267 (origin
27268 (method url-fetch)
27269 (uri (cran-uri "clustree" version))
27270 (sha256
27271 (base32
27272 "0lxydy2f83qqd5dhlp2l546jax759l43b29j6g82079yzg1szwsz"))))
27273 (properties `((upstream-name . "clustree")))
27274 (build-system r-build-system)
27275 (propagated-inputs
27276 `(("r-checkmate" ,r-checkmate)
27277 ("r-dplyr" ,r-dplyr)
27278 ("r-ggplot2" ,r-ggplot2)
27279 ("r-ggraph" ,r-ggraph)
27280 ("r-ggrepel" ,r-ggrepel)
27281 ("r-igraph" ,r-igraph)
27282 ("r-rlang" ,r-rlang)
27283 ("r-tidygraph" ,r-tidygraph)
27284 ("r-viridis" ,r-viridis)))
27285 (native-inputs
27286 `(("r-knitr" ,r-knitr)))
27287 (home-page "https://github.com/lazappi/clustree")
27288 (synopsis "Visualize clusterings at different resolutions")
27289 (description
27290 "Deciding what resolution to use can be a difficult question when
27291 approaching a clustering analysis. One way to approach this problem is to
27292 look at how samples move as the number of clusters increases. This package
27293 allows you to produce clustering trees, a visualization for interrogating
27294 clusterings as resolution increases.")
27295 (license license:gpl3)))
27296
27297 (define-public r-textshaping
27298 (package
27299 (name "r-textshaping")
27300 (version "0.3.1")
27301 (source
27302 (origin
27303 (method url-fetch)
27304 (uri (cran-uri "textshaping" version))
27305 (sha256
27306 (base32
27307 "16y3amb9cxwq126q1mxssx7kswzalqf9n2437mi5n7q1nqby6wlq"))))
27308 (properties `((upstream-name . "textshaping")))
27309 (build-system r-build-system)
27310 (inputs
27311 `(("freetype" ,freetype)
27312 ("fribidi" ,fribidi)
27313 ("harfbuzz" ,harfbuzz)
27314 ("zlib" ,zlib)))
27315 (propagated-inputs
27316 `(("r-cpp11" ,r-cpp11)
27317 ("r-systemfonts" ,r-systemfonts)))
27318 (native-inputs
27319 `(("pkg-config" ,pkg-config)
27320 ("r-knitr" ,r-knitr)))
27321 (home-page "https://github.com/r-lib/textshaping")
27322 (synopsis "Bindings to the HarfBuzz and Fribidi libraries for text shaping")
27323 (description
27324 "This package provides access to the text shaping functionality in the
27325 HarfBuzz library and the bidirectional algorithm in the Fribidi library. This
27326 is a low-level utility package mainly for graphic devices that expands upon
27327 the font tool-set provided by the @code{systemfonts} package.")
27328 (license license:expat)))
27329
27330 (define-public r-ragg
27331 (package
27332 (name "r-ragg")
27333 (version "1.1.1")
27334 (source
27335 (origin
27336 (method url-fetch)
27337 (uri (cran-uri "ragg" version))
27338 (sha256
27339 (base32
27340 "0nh1xxrxgdbq9anzkc6k3n519czp9hqyiizakm3m2gl4l4w0vp0q"))))
27341 (properties `((upstream-name . "ragg")))
27342 (build-system r-build-system)
27343 (inputs
27344 `(("freetype" ,freetype)
27345 ("libjpeg" ,libjpeg-turbo)
27346 ("libpng" ,libpng)
27347 ("libtiff" ,libtiff)
27348 ("zlib" ,zlib)))
27349 (propagated-inputs
27350 `(("r-systemfonts" ,r-systemfonts)
27351 ("r-textshaping" ,r-textshaping)))
27352 (native-inputs
27353 `(("pkg-config" ,pkg-config)))
27354 (home-page "https://ragg.r-lib.org")
27355 (synopsis "Graphic devices based on AGG")
27356 (description
27357 "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D
27358 drawing library. The ragg package provides a set of graphic devices based on
27359 AGG to use as alternative to the raster devices provided through the
27360 @code{grDevices} package.")
27361 (license license:expat)))
27362
27363 (define-public r-downlit
27364 (package
27365 (name "r-downlit")
27366 (version "0.2.1")
27367 (source
27368 (origin
27369 (method url-fetch)
27370 (uri (cran-uri "downlit" version))
27371 (sha256
27372 (base32
27373 "0z4fz7c9kyd9v72wl3iqs2wxspi975d6b0rgjr9lvg8a18maa9z6"))))
27374 (properties `((upstream-name . "downlit")))
27375 (build-system r-build-system)
27376 (propagated-inputs
27377 `(("r-brio" ,r-brio)
27378 ("r-digest" ,r-digest)
27379 ("r-evaluate" ,r-evaluate)
27380 ("r-fansi" ,r-fansi)
27381 ("r-rlang" ,r-rlang)
27382 ("r-vctrs" ,r-vctrs)
27383 ("r-yaml" ,r-yaml)))
27384 (home-page "https://downlit.r-lib.org/")
27385 (synopsis "Syntax highlighting and automatic linking")
27386 (description
27387 "This package provides syntax highlighting of R code, specifically
27388 designed for the needs of RMarkdown packages like @code{pkgdown},
27389 @code{hugodown}, and @code{bookdown}. It includes linking of function calls
27390 to their documentation on the web, and automatic translation of ANSI escapes
27391 in output to the equivalent HTML.")
27392 (license license:expat)))
27393
27394 (define-public r-pkgdown
27395 (package
27396 (name "r-pkgdown")
27397 (version "1.6.1")
27398 (source
27399 (origin
27400 (method url-fetch)
27401 (uri (cran-uri "pkgdown" version))
27402 (sha256
27403 (base32
27404 "1k31biyvxkv3xjc1yy3nzb9wfza3vbx97fv17nly5a6vlv7zqbs4"))))
27405 (properties `((upstream-name . "pkgdown")))
27406 (build-system r-build-system)
27407 (inputs `(("pandoc" ,pandoc)))
27408 (propagated-inputs
27409 `(("r-callr" ,r-callr)
27410 ("r-crayon" ,r-crayon)
27411 ("r-desc" ,r-desc)
27412 ("r-digest" ,r-digest)
27413 ("r-downlit" ,r-downlit)
27414 ("r-fs" ,r-fs)
27415 ("r-httr" ,r-httr)
27416 ("r-magrittr" ,r-magrittr)
27417 ("r-memoise" ,r-memoise)
27418 ("r-openssl" ,r-openssl)
27419 ("r-purrr" ,r-purrr)
27420 ("r-ragg" ,r-ragg)
27421 ("r-rematch2" ,r-rematch2)
27422 ("r-rlang" ,r-rlang)
27423 ("r-rmarkdown" ,r-rmarkdown)
27424 ("r-tibble" ,r-tibble)
27425 ("r-whisker" ,r-whisker)
27426 ("r-withr" ,r-withr)
27427 ("r-xml2" ,r-xml2)
27428 ("r-yaml" ,r-yaml)))
27429 (native-inputs
27430 `(("r-knitr" ,r-knitr)))
27431 (home-page "https://pkgdown.r-lib.org")
27432 (synopsis "Make static HTML documentation for an R package")
27433 (description
27434 "The goal of this package is to generate an attractive and useful website
27435 from a source package. @code{pkgdown} converts your documentation, vignettes,
27436 README file, and more to HTML making it easy to share information about your
27437 package online.")
27438 (license license:expat)))
27439
27440 (define-public r-prereg
27441 (package
27442 (name "r-prereg")
27443 (version "0.5.0")
27444 (source
27445 (origin
27446 (method url-fetch)
27447 (uri (cran-uri "prereg" version))
27448 (sha256
27449 (base32
27450 "0bck13iiaxwpqh0rd45mp1s5d8z62ggg0wa7rmyi8a65aywiypsi"))))
27451 (properties `((upstream-name . "prereg")))
27452 (build-system r-build-system)
27453 (propagated-inputs
27454 `(("r-rmarkdown" ,r-rmarkdown)))
27455 (home-page "https://github.com/crsh/prereg")
27456 (synopsis
27457 "R Markdown Templates to preregister Scientific Studies")
27458 (description
27459 "This package provides a collection of templates to author
27460 preregistration documents for scientific studies in PDF format.")
27461 (license license:gpl3)))
27462
27463 (define-public r-ez
27464 (package
27465 (name "r-ez")
27466 (version "4.4-0")
27467 (source
27468 (origin
27469 (method url-fetch)
27470 (uri (cran-uri "ez" version))
27471 (sha256
27472 (base32
27473 "0a58s94x576dfz7wcbivrr2hmdh5x1vy16zwkqp9fmdzqx38pagq"))))
27474 (properties `((upstream-name . "ez")))
27475 (build-system r-build-system)
27476 (propagated-inputs
27477 `(("r-car" ,r-car)
27478 ("r-ggplot2" ,r-ggplot2)
27479 ("r-lme4" ,r-lme4)
27480 ("r-mass" ,r-mass)
27481 ("r-matrix" ,r-matrix)
27482 ("r-mgcv" ,r-mgcv)
27483 ("r-plyr" ,r-plyr)
27484 ("r-reshape2" ,r-reshape2)
27485 ("r-scales" ,r-scales)
27486 ("r-stringr" ,r-stringr)))
27487 (home-page "https://github.com/mike-lawrence/ez")
27488 (synopsis "Easy Analysis and Visualization of Factorial Experiments")
27489 (description
27490 "Facilitates easy analysis of factorial experiments, including purely
27491 within-Ss designs (a.k.a. \"repeated measures\"), purely between-Ss designs,
27492 and mixed within-and-between-Ss designs. The functions in this package aim to
27493 provide simple, intuitive and consistent specification of data analysis and
27494 visualization. Visualization functions also include design visualization for
27495 pre-analysis data auditing, and correlation matrix visualization. Finally,
27496 this package includes functions for non-parametric analysis, including
27497 permutation tests and bootstrap resampling. The bootstrap function obtains
27498 predictions either by cell means or by more advanced/powerful mixed effects
27499 models, yielding predictions and confidence intervals that may be easily
27500 visualized at any level of the experiment's design.")
27501 (license license:gpl2+)))
27502
27503 (define-public r-qdapregex
27504 (package
27505 (name "r-qdapregex")
27506 (version "0.7.2")
27507 (source
27508 (origin
27509 (method url-fetch)
27510 (uri (cran-uri "qdapRegex" version))
27511 (sha256
27512 (base32
27513 "1xa8q1way3gjadrjh3mv3xr4c6b4h16nd2c6lgl969difplpfz9p"))))
27514 (properties `((upstream-name . "qdapRegex")))
27515 (build-system r-build-system)
27516 (propagated-inputs `(("r-stringi" ,r-stringi)))
27517 (home-page
27518 "https://trinker.github.com/qdapRegex/")
27519 (synopsis
27520 "Regular Expression Removal, Extraction, and Replacement Tools")
27521 (description
27522 "This package provides a collection of regular expression tools
27523 associated with the @code{qdap} package that may be useful outside of the
27524 context of discourse analysis. Tools include removal/extraction/replacement of
27525 abbreviations, dates, dollar amounts, email addresses, hash tags, numbers,
27526 percentages, citations, person tags, phone numbers, times, and zip codes.")
27527 (license license:gpl2)))
27528
27529 (define-public r-mgsub
27530 (package
27531 (name "r-mgsub")
27532 (version "1.7.2")
27533 (source
27534 (origin
27535 (method url-fetch)
27536 (uri (cran-uri "mgsub" version))
27537 (sha256
27538 (base32
27539 "02l1b96zv36ia0c97wgcwfhi037mbn3wy9c64hcw0n0w67yj77rr"))))
27540 (properties `((upstream-name . "mgsub")))
27541 (build-system r-build-system)
27542 (native-inputs `(("r-knitr" ,r-knitr)))
27543 (home-page
27544 "https://cran.r-project.org/package=mgsub")
27545 (synopsis
27546 "Safe, Multiple, Simultaneous String Substitution")
27547 (description
27548 "Designed to enable simultaneous substitution in strings in a safe
27549 fashion. Safe means it does not rely on placeholders (which can cause errors
27550 in same length matches).")
27551 (license license:expat)))
27552
27553 (define-public r-textshape
27554 (package
27555 (name "r-textshape")
27556 (version "1.7.1")
27557 (source
27558 (origin
27559 (method url-fetch)
27560 (uri (cran-uri "textshape" version))
27561 (sha256
27562 (base32
27563 "02111kj3kka84mpx7s19bjna9cas8diw5fxz51v5ggz0ldswa5pa"))))
27564 (properties `((upstream-name . "textshape")))
27565 (build-system r-build-system)
27566 (propagated-inputs
27567 `(("r-data-table" ,r-data-table)
27568 ("r-slam" ,r-slam)
27569 ("r-stringi" ,r-stringi)))
27570 (home-page "http://github.com/trinker/textshape")
27571 (synopsis "Tools for Reshaping Text")
27572 (description
27573 "Tools that can be used to reshape and restructure text data.")
27574 (license license:gpl2)))
27575
27576 (define-public r-syuzhet
27577 (package
27578 (name "r-syuzhet")
27579 (version "1.0.6")
27580 (source
27581 (origin
27582 (method url-fetch)
27583 (uri (cran-uri "syuzhet" version))
27584 (sha256
27585 (base32
27586 "16iccqdbw02iw82nah6kwz3gwfghi864j2y698n4b9dyc386ijzv"))))
27587 (properties `((upstream-name . "syuzhet")))
27588 (build-system r-build-system)
27589 (propagated-inputs
27590 `(("r-dplyr" ,r-dplyr)
27591 ("r-dtt" ,r-dtt)
27592 ("r-nlp" ,r-nlp)
27593 ("r-rlang" ,r-rlang)
27594 ("r-textshape" ,r-textshape)
27595 ("r-tidyr" ,r-tidyr)
27596 ("r-zoo" ,r-zoo)))
27597 (native-inputs `(("r-knitr" ,r-knitr)))
27598 (home-page "https://github.com/mjockers/syuzhet")
27599 (synopsis
27600 "Extracts Sentiment and Sentiment-Derived Plot Arcs from Text")
27601 (description
27602 "Extracts sentiment and sentiment-derived plot arcs from text using a
27603 variety of sentiment dictionaries conveniently packaged for consumption by R
27604 users. Implemented dictionaries include @dfn{syuzhet} (default) developed in the
27605 Nebraska Literary Lab, @dfn{afinn} developed by Finn Arup Nielsen, @dfn{bing}
27606 developed by Minqing Hu and Bing Liu, and @dfn{nrc} developed by Mohammad, Saif
27607 M. and Turney, Peter D. Applicable references are available in
27608 @file{README.md} and in the documentation for the @code{get_sentiment}
27609 function. The package also provides a hack for implementing Stanford's coreNLP
27610 sentiment parser. The package provides several methods for plot arc
27611 normalization.")
27612 (license license:gpl3)))
27613
27614 (define-public r-lexicon
27615 (package
27616 (name "r-lexicon")
27617 (version "1.2.1")
27618 (source
27619 (origin
27620 (method url-fetch)
27621 (uri (cran-uri "lexicon" version))
27622 (sha256
27623 (base32
27624 "0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
27625 (properties `((upstream-name . "lexicon")))
27626 (build-system r-build-system)
27627 (propagated-inputs
27628 `(("r-data-table" ,r-data-table)
27629 ("r-syuzhet" ,r-syuzhet)))
27630 (home-page "https://github.com/trinker/lexicon")
27631 (synopsis "Lexicons for Text Analysis")
27632 (description
27633 "This package provides a collection of lexical hash tables, dictionaries,
27634 and word lists.")
27635 (license license:gpl3)))
27636
27637 (define-public r-english
27638 (package
27639 (name "r-english")
27640 (version "1.2-5")
27641 (source
27642 (origin
27643 (method url-fetch)
27644 (uri (cran-uri "english" version))
27645 (sha256
27646 (base32
27647 "0d6rin40wy2y6k75x8d5qvf03rfy139f309wrl8xwbdb1h8fjkd1"))))
27648 (properties `((upstream-name . "english")))
27649 (build-system r-build-system)
27650 (native-inputs `(("r-knitr" ,r-knitr)))
27651 (home-page
27652 "https://cran.r-project.org/package=english")
27653 (synopsis "Translate Integers into English")
27654 (description
27655 "Allow numbers to be presented in an English language version, one, two,
27656 three, ... Ordinals are also available, first, second, third, ... and
27657 indefinite article choice, \"a\" or \"an\".")
27658 (license license:gpl2)))
27659
27660 (define-public r-textclean
27661 (package
27662 (name "r-textclean")
27663 (version "0.9.3")
27664 (source
27665 (origin
27666 (method url-fetch)
27667 (uri (cran-uri "textclean" version))
27668 (sha256
27669 (base32
27670 "0kgjh6c4f14qkjc4fds7q7rpf4nkma3p0igm54fplmm3p853nvrz"))))
27671 (properties `((upstream-name . "textclean")))
27672 (build-system r-build-system)
27673 (propagated-inputs
27674 `(("r-data-table" ,r-data-table)
27675 ("r-english" ,r-english)
27676 ("r-glue" ,r-glue)
27677 ("r-lexicon" ,r-lexicon)
27678 ("r-mgsub" ,r-mgsub)
27679 ("r-qdapregex" ,r-qdapregex)
27680 ("r-stringi" ,r-stringi)
27681 ("r-textshape" ,r-textshape)))
27682 (home-page
27683 "https://github.com/trinker/textclean")
27684 (synopsis "Text Cleaning Tools")
27685 (description
27686 "Tools to clean and process text. Tools are geared at checking for
27687 substrings that are not optimal for analysis and replacing or removing them
27688 (normalizing) with more analysis friendly substrings (see Sproat, Black, Chen,
27689 Kumar, Ostendorf, & Richards (2001) @url{doi:10.1006/csla.2001.0169}) or
27690 extracting them into new variables. For example, emoticons are often used in
27691 text but not always easily handled by analysis algorithms. The
27692 @code{replace_emoticon()} function replaces emoticons with word equivalents.")
27693 (license license:gpl2)))
27694
27695 (define-public r-striprtf
27696 (package
27697 (name "r-striprtf")
27698 (version "0.5.2")
27699 (source
27700 (origin
27701 (method url-fetch)
27702 (uri (cran-uri "striprtf" version))
27703 (sha256
27704 (base32
27705 "1ra6aalalig6drsj26z9s24lmb10zssagqrvgqqi4358zbm8gwcd"))))
27706 (properties `((upstream-name . "striprtf")))
27707 (build-system r-build-system)
27708 (propagated-inputs
27709 `(("r-magrittr" ,r-magrittr)
27710 ("r-rcpp" ,r-rcpp)
27711 ("r-stringr" ,r-stringr)))
27712 (home-page "https://github.com/kota7/striprtf")
27713 (synopsis "Extract Text from RTF File")
27714 (description
27715 "Extracts plain text from @dfn{Rich Text Format} (RTF) file.")
27716 (license license:expat)))
27717
27718 (define-public r-ndjson
27719 (package
27720 (name "r-ndjson")
27721 (version "0.8.0")
27722 (source
27723 (origin
27724 (method url-fetch)
27725 (uri (cran-uri "ndjson" version))
27726 (sha256
27727 (base32
27728 "0lvzbgfi1sg4kya1mvv67z14qk3vz9q57x22qh57xq8ampdkg812"))
27729 (modules '((guix build utils)))
27730 (snippet
27731 '(begin
27732 ;; unvendor gzstream
27733 (for-each delete-file '("src/gzstream.cpp" "src/gzstream.h"))
27734 #t))))
27735 (properties `((upstream-name . "ndjson")))
27736 (build-system r-build-system)
27737 (arguments
27738 '(#:phases
27739 (modify-phases %standard-phases
27740 (add-after 'unpack 'use-system-gzstream
27741 (lambda* (#:key inputs #:allow-other-keys)
27742 (substitute* "src/Makevars"
27743 (("PKG_LIBS = " all)
27744 (string-append all "-lgzstream ")))
27745 #t)))))
27746 (inputs `(("zlib" ,zlib) ("gzstream" ,gzstream)))
27747 (propagated-inputs
27748 `(("r-data-table" ,r-data-table)
27749 ("r-rcpp" ,r-rcpp)
27750 ("r-tibble" ,r-tibble)))
27751 (home-page "https://gitlab.com/hrbrmstr/ndjson")
27752 (synopsis
27753 "Wicked-Fast @dfn{Streaming JSON} (ndjson) Reader")
27754 (description
27755 "@dfn{Streaming JSON} (ndjson) has one JSON record per-line and many
27756 modern ndjson files contain large numbers of records. These constructs may not
27757 be columnar in nature, but it is often useful to read in these files and
27758 \"flatten\" the structure out to enable working with the data in an R
27759 @code{data.frame}-like context. Functions are provided that make it possible
27760 to read in plain ndjson files or compressed (@code{gz}) ndjson files and either
27761 validate the format of the records or create \"flat\" @code{data.table}
27762 structures from them.")
27763 (license license:expat)))
27764
27765 (define-public r-streamr
27766 (package
27767 (name "r-streamr")
27768 (version "0.4.5")
27769 (source
27770 (origin
27771 (method url-fetch)
27772 (uri (cran-uri "streamR" version))
27773 (sha256
27774 (base32
27775 "1clx3b0j2515r1nmnl6ki7qw5n54q3x2jvqv3zrc00kq71mlj7ix"))))
27776 (properties `((upstream-name . "streamR")))
27777 (build-system r-build-system)
27778 (propagated-inputs
27779 `(("r-ndjson" ,r-ndjson)
27780 ("r-rcurl" ,r-rcurl)
27781 ("r-rjson" ,r-rjson)))
27782 (home-page
27783 "https://cran.r-project.org/package=streamR")
27784 (synopsis
27785 "Access to Twitter Streaming API via R")
27786 (description
27787 "This package provides functions to access Twitter's filter, sample, and
27788 user streams, and to parse the output into data frames.")
27789 (license license:gpl2)))
27790
27791 (define-public r-readods
27792 (package
27793 (name "r-readods")
27794 (version "1.7.0")
27795 (source
27796 (origin
27797 (method url-fetch)
27798 (uri (cran-uri "readODS" version))
27799 (sha256
27800 (base32
27801 "1hi217ab7hp15jsbzi5ak57cqf8jn2rv78bnn74q72gn9mrfra7n"))))
27802 (properties `((upstream-name . "readODS")))
27803 (build-system r-build-system)
27804 (propagated-inputs
27805 `(("r-cellranger" ,r-cellranger)
27806 ("r-readr" ,r-readr)
27807 ("r-stringi" ,r-stringi)
27808 ("r-xml2" ,r-xml2)))
27809 (native-inputs `(("r-knitr" ,r-knitr)))
27810 (home-page
27811 "https://cran.r-project.org/package=readODS")
27812 (synopsis "Read and Write ODS Files")
27813 (description
27814 "Import @dfn{OpenDocument Spreadsheet} (ODS) into R as a data frame.
27815 Also support writing data frame into ODS file.")
27816 (license license:gpl3)))
27817
27818 (define-public r-qpdf
27819 (package
27820 (name "r-qpdf")
27821 (version "1.1")
27822 (source
27823 (origin
27824 (method url-fetch)
27825 (uri (cran-uri "qpdf" version))
27826 (sha256
27827 (base32
27828 "03lnfncw8qd1fwfyqh1mjvnsjr3b63wxbah0wp5g7z7gba90dwbi"))
27829 (modules '((guix build utils)))
27830 (snippet
27831 '(begin
27832 ;; unvendor libqpdf
27833 (delete-file-recursively "src/libqpdf")
27834 (delete-file-recursively "src/include/qpdf")
27835 #t))))
27836 (properties `((upstream-name . "qpdf")))
27837 (build-system r-build-system)
27838 (arguments
27839 '(#:phases
27840 (modify-phases %standard-phases
27841 (add-after 'unpack 'configure
27842 (lambda _
27843 (setenv "EXTERNAL_QPDF" "1")
27844 #t)))))
27845 (inputs
27846 `(("zlib" ,zlib)
27847 ("qpdf" ,qpdf)))
27848 (propagated-inputs
27849 `(("r-askpass" ,r-askpass)
27850 ("r-curl" ,r-curl)
27851 ("r-rcpp" ,r-rcpp)))
27852 (native-inputs `(("pkg-config" ,pkg-config)))
27853 (home-page "https://github.com/ropensci/qpdf")
27854 (synopsis
27855 "Split, Combine and Compress PDF Files")
27856 (description
27857 "Content-preserving transformations transformations of PDF files such as
27858 split, combine, and compress. This package interfaces directly to the
27859 @code{qpdf} C++ API and does not require any command line utilities. Note that
27860 @code{qpdf} does not read actual content from PDF files: to extract text and
27861 data you need the @code{pdftools} package.")
27862 (license license:asl2.0)))
27863
27864 (define-public r-pdftools
27865 (package
27866 (name "r-pdftools")
27867 (version "2.3.1")
27868 (source
27869 (origin
27870 (method url-fetch)
27871 (uri (cran-uri "pdftools" version))
27872 (sha256
27873 (base32
27874 "01i5g2mjkshis0zlm7lrvi7kkzl4dn3if1hzwkgzf9n2mi33ndsx"))))
27875 (properties `((upstream-name . "pdftools")))
27876 (build-system r-build-system)
27877 (inputs
27878 `(("zlib" ,zlib)
27879 ("poppler" ,poppler)))
27880 (propagated-inputs
27881 `(("r-qpdf" ,r-qpdf) ("r-rcpp" ,r-rcpp)))
27882 (native-inputs `(("pkg-config" ,pkg-config)))
27883 (home-page
27884 "https://docs.ropensci.org/pdftools/")
27885 (synopsis
27886 "Text Extraction, Rendering and Converting of PDF Documents")
27887 (description
27888 "Utilities based on @code{libpoppler} for extracting text, fonts,
27889 attachments and metadata from a PDF file. Also supports high quality rendering
27890 of PDF documents into PNG, JPEG, TIFF format, or into raw bitmap vectors for
27891 further processing in R.")
27892 (license license:expat)))
27893
27894 (define-public r-antiword
27895 (package
27896 (name "r-antiword")
27897 (version "1.3")
27898 (source
27899 (origin
27900 (method url-fetch)
27901 (uri (cran-uri "antiword" version))
27902 (sha256
27903 (base32
27904 "034znb0g9wwb8gi1r3z75v3sbb4mh83qrc4y8mbfx5lbgh8zhj6j"))
27905 (modules '((guix build utils)))
27906 (snippet
27907 '(begin
27908 ;; unvendor libantiword
27909 (delete-file-recursively "src")
27910 #t))))
27911 (properties `((upstream-name . "antiword")))
27912 (build-system r-build-system)
27913 (arguments
27914 '(#:phases
27915 (modify-phases %standard-phases
27916 (add-after 'unpack 'use-system-antiword
27917 (lambda* (#:key inputs #:allow-other-keys)
27918 (substitute* "R/antiword.R"
27919 (("system.file\\(\"bin\", package = \"antiword\"\\)")
27920 (string-append "\"" (assoc-ref inputs "antiword") "/bin\"")))
27921 #t)))))
27922 (inputs `(("antiword" ,antiword)))
27923 (propagated-inputs `(("r-sys" ,r-sys)))
27924 (home-page
27925 "https://github.com/ropensci/antiword#readme")
27926 (synopsis
27927 "Extract Text from Microsoft Word Documents")
27928 (description
27929 "Wraps the @code{AntiWord} utility to extract text from Microsoft Word
27930 documents. The utility only supports the old @code{doc} format, not the new
27931 xml based @code{docx} format. Use the @code{xml2} package to read the
27932 latter.")
27933 (license license:gpl2)))
27934
27935 (define-public r-readtext
27936 (package
27937 (name "r-readtext")
27938 (version "0.80")
27939 (source
27940 (origin
27941 (method url-fetch)
27942 (uri (cran-uri "readtext" version))
27943 (sha256
27944 (base32
27945 "0q8ajnp99fwvh14ppkm2z3gqwdwmjrvxvsfb4q7ad0dhkqric05y"))))
27946 (properties `((upstream-name . "readtext")))
27947 (build-system r-build-system)
27948 (propagated-inputs
27949 `(("r-antiword" ,r-antiword)
27950 ("r-data-table" ,r-data-table)
27951 ("r-digest" ,r-digest)
27952 ("r-httr" ,r-httr)
27953 ("r-jsonlite" ,r-jsonlite)
27954 ("r-pdftools" ,r-pdftools)
27955 ("r-readods" ,r-readods)
27956 ("r-readxl" ,r-readxl)
27957 ("r-streamr" ,r-streamr)
27958 ("r-stringi" ,r-stringi)
27959 ("r-striprtf" ,r-striprtf)
27960 ("r-tibble" ,r-tibble)
27961 ("r-xml2" ,r-xml2)))
27962 (native-inputs `(("r-knitr" ,r-knitr)))
27963 (home-page
27964 "https://github.com/quanteda/readtext")
27965 (synopsis
27966 "Import and Handling for Plain and Formatted Text Files")
27967 (description
27968 "This package provides functions for importing and handling text files
27969 and formatted text files with additional meta-data, such including @code{.csv},
27970 @code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
27971 @code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
27972 (license license:gpl3)))
27973
27974 (define-public r-packcircles
27975 (package
27976 (name "r-packcircles")
27977 (version "0.3.4")
27978 (source
27979 (origin
27980 (method url-fetch)
27981 (uri (cran-uri "packcircles" version))
27982 (sha256
27983 (base32
27984 "05pv5c4k4njkr0xw6i6ksiy34hcyx2lbiqpv5gxw81yrkm0rxfyk"))))
27985 (properties `((upstream-name . "packcircles")))
27986 (build-system r-build-system)
27987 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
27988 (native-inputs `(("r-knitr" ,r-knitr)))
27989 (home-page
27990 "https://github.com/mbedward/packcircles")
27991 (synopsis "Circle Packing")
27992 (description
27993 "Algorithms to find arrangements of non-overlapping circles.")
27994 (license license:expat)))
27995
27996 ;; Cannot unbundle liblwgeom, because PostGIS does not support building it on
27997 ;; its own.
27998 (define-public r-lwgeom
27999 (package
28000 (name "r-lwgeom")
28001 (version "0.2-5")
28002 (source
28003 (origin
28004 (method url-fetch)
28005 (uri (cran-uri "lwgeom" version))
28006 (sha256
28007 (base32
28008 "0byhjqa2acns8mznl1ngnfygxxxyszvnq66qfg0smhhhdkwr67aa"))))
28009 (properties `((upstream-name . "lwgeom")))
28010 (build-system r-build-system)
28011 (inputs `(("geos" ,geos) ("proj" ,proj) ("sqlite" ,sqlite)))
28012 (propagated-inputs
28013 `(("r-rcpp" ,r-rcpp)
28014 ("r-sf" ,r-sf)
28015 ("r-units" ,r-units)))
28016 (native-inputs `(("pkg-config" ,pkg-config)))
28017 (home-page
28018 "https://github.com/r-spatial/lwgeom/")
28019 (synopsis
28020 "Bindings to Selected 'liblwgeom' Functions for Simple Features")
28021 (description
28022 "Access to selected functions found in
28023 @url{https://github.com/postgis/postgis/tree/master/liblwgeom,liblwgeom}, the
28024 light-weight geometry library used by @url{http://postgis.net/,PostGIS}.")
28025 (license license:gpl2)))
28026
28027 (define-public r-stars
28028 (package
28029 (name "r-stars")
28030 (version "0.5-1")
28031 (source
28032 (origin
28033 (method url-fetch)
28034 (uri (cran-uri "stars" version))
28035 (sha256
28036 (base32
28037 "0ybk899rc0rpf2cv5kwk78fvis5xnr255hfcy5khdxsxdqgl0m9j"))))
28038 (properties `((upstream-name . "stars")))
28039 (build-system r-build-system)
28040 (propagated-inputs
28041 `(("r-abind" ,r-abind)
28042 ("r-classint" ,r-classint)
28043 ("r-lwgeom" ,r-lwgeom)
28044 ("r-rlang" ,r-rlang)
28045 ("r-sf" ,r-sf)
28046 ("r-units" ,r-units)))
28047 (native-inputs `(("r-knitr" ,r-knitr)))
28048 (home-page "https://r-spatial.github.io/stars/")
28049 (synopsis
28050 "Spatiotemporal Arrays, Raster and Vector Data Cubes")
28051 (description
28052 "Reading, manipulating, writing and plotting spatiotemporal arrays
28053 (raster and vector data cubes) in @code{R}, using @code{GDAL} bindings provided
28054 by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.")
28055 (license license:asl2.0)))
28056
28057 (define-public r-tmaptools
28058 (package
28059 (name "r-tmaptools")
28060 (version "3.1-1")
28061 (source
28062 (origin
28063 (method url-fetch)
28064 (uri (cran-uri "tmaptools" version))
28065 (sha256
28066 (base32
28067 "0bal3czrdr93qig8s5cf5szld5vjbbks67rismfhlkmlgw6wp2gx"))))
28068 (properties `((upstream-name . "tmaptools")))
28069 (build-system r-build-system)
28070 (propagated-inputs
28071 `(("r-dichromat" ,r-dichromat)
28072 ("r-lwgeom" ,r-lwgeom)
28073 ("r-magrittr" ,r-magrittr)
28074 ("r-rcolorbrewer" ,r-rcolorbrewer)
28075 ("r-sf" ,r-sf)
28076 ("r-stars" ,r-stars)
28077 ("r-units" ,r-units)
28078 ("r-viridislite" ,r-viridislite)
28079 ("r-xml" ,r-xml)))
28080 (home-page
28081 "https://github.com/mtennekes/tmaptools")
28082 (synopsis "Thematic Map Tools")
28083 (description
28084 "Set of tools for reading and processing spatial data. The aim is to
28085 supply the workflow to create thematic maps. This package also facilitates
28086 @code{tmap}, the package for visualizing thematic maps.")
28087 (license license:gpl3)))
28088
28089 (define-public r-rworldmap
28090 (package
28091 (name "r-rworldmap")
28092 (version "1.3-6")
28093 (source
28094 (origin
28095 (method url-fetch)
28096 (uri (cran-uri "rworldmap" version))
28097 (sha256
28098 (base32
28099 "1q1h0n9qr0m5pdx10swrh9ddsvdj8kv5nqngrf3lnx9rg9iwivjk"))))
28100 (properties `((upstream-name . "rworldmap")))
28101 (build-system r-build-system)
28102 (propagated-inputs
28103 `(("r-fields" ,r-fields)
28104 ("r-maptools" ,r-maptools)
28105 ("r-sp" ,r-sp)))
28106 (home-page
28107 "https://github.com/AndySouth/rworldmap/")
28108 (synopsis "Mapping Global Data")
28109 (description
28110 "Enables mapping of country level and gridded user datasets.")
28111 (license license:gpl2+)))
28112
28113 (define-public r-rtweet
28114 (package
28115 (name "r-rtweet")
28116 (version "0.7.0")
28117 (source
28118 (origin
28119 (method url-fetch)
28120 (uri (cran-uri "rtweet" version))
28121 (sha256
28122 (base32
28123 "05pbvxm2vmf6935b9s6663k3aifnkr3m52wh2jvnplmrwyrfpn9n"))))
28124 (properties `((upstream-name . "rtweet")))
28125 (build-system r-build-system)
28126 (propagated-inputs
28127 `(("r-httpuv" ,r-httpuv)
28128 ("r-httr" ,r-httr)
28129 ("r-jsonlite" ,r-jsonlite)
28130 ("r-magrittr" ,r-magrittr)
28131 ("r-progress" ,r-progress)
28132 ("r-rcpp" ,r-rcpp)
28133 ("r-tibble" ,r-tibble)))
28134 (native-inputs `(("r-knitr" ,r-knitr)))
28135 (home-page
28136 "https://docs.ropensci.org/rtweet/")
28137 (synopsis "Collecting Twitter Data")
28138 (description
28139 "An implementation of calls designed to collect and organize Twitter data
28140 via @url{https://developer.twitter.com/en/docs,Twitter's REST and stream
28141 Application Program Interfaces (API)}.")
28142 (license license:expat)))
28143
28144 (define-public r-intervals
28145 (package
28146 (name "r-intervals")
28147 (version "0.15.2")
28148 (source
28149 (origin
28150 (method url-fetch)
28151 (uri (cran-uri "intervals" version))
28152 (sha256
28153 (base32
28154 "0mvwfwc03ifb30a3dzbmkv9adwqb8ajxhcw24d8xip8px063plhb"))))
28155 (properties `((upstream-name . "intervals")))
28156 (build-system r-build-system)
28157 (home-page "https://github.com/edzer/intervals")
28158 (synopsis
28159 "Tools for Working with Points and Intervals")
28160 (description
28161 "Tools for working with and comparing sets of points and intervals.")
28162 (license license:artistic2.0)))
28163
28164 (define-public r-eyelinker
28165 (package
28166 (name "r-eyelinker")
28167 (version "0.2.0")
28168 (source
28169 (origin
28170 (method url-fetch)
28171 (uri (cran-uri "eyelinker" version))
28172 (sha256
28173 (base32
28174 "14rfcdxad9iazwd46q6bm8gg1ryh6s8kf7arj00hhb7xz3gvk9c2"))))
28175 (properties `((upstream-name . "eyelinker")))
28176 (build-system r-build-system)
28177 (propagated-inputs
28178 `(("r-intervals" ,r-intervals)
28179 ("r-readr" ,r-readr)
28180 ("r-stringi" ,r-stringi)
28181 ("r-stringr" ,r-stringr)
28182 ("r-tibble" ,r-tibble)))
28183 (native-inputs `(("r-knitr" ,r-knitr)))
28184 (home-page
28185 "https://github.com/a-hurst/eyelinker")
28186 (synopsis
28187 "Import ASC Files from EyeLink Eye Trackers")
28188 (description
28189 "Imports plain-text ASC data files from EyeLink eye trackers into
28190 (relatively) tidy data frames for analysis and visualization.")
28191 (license license:gpl3)))
28192
28193 (define-public r-btm
28194 (package
28195 (name "r-btm")
28196 (version "0.3.5")
28197 (source
28198 (origin
28199 (method url-fetch)
28200 (uri (cran-uri "BTM" version))
28201 (sha256
28202 (base32
28203 "1x6bncb7r97z8bdyxnn2frdi9kyawfy6c2041mv9f42zdrfzm6jb"))))
28204 (properties `((upstream-name . "BTM")))
28205 (build-system r-build-system)
28206 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
28207 (home-page "https://github.com/bnosac/BTM")
28208 (synopsis "Biterm Topic Models for Short Text")
28209 (description
28210 "Biterm Topic Models find topics in collections of short texts. It is a
28211 word co-occurrence based topic model that learns topics by modeling word-word
28212 co-occurrences patterns which are called biterms. This in contrast to
28213 traditional topic models like Latent Dirichlet Allocation and Probabilistic
28214 Latent Semantic Analysis which are word-document co-occurrence topic models. A
28215 biterm consists of two words co-occurring in the same short text window. This
28216 context window can for example be a twitter message, a short answer on a
28217 survey, a sentence of a text or a document identifier. The techniques are
28218 explained in detail in the paper 'A Biterm Topic Model For Short Text' by
28219 Xiaohui Yan, Jiafeng Guo, Yanyan Lan, Xueqi Cheng (2013)
28220 @url{https://github.com/xiaohuiyan/xiaohuiyan.github.io/blob/master/paper/\
28221 BTM-WWW13.pdf}.")
28222 (license license:asl2.0)))
28223
28224 (define-public r-textplot
28225 (package
28226 (name "r-textplot")
28227 (version "0.1.4")
28228 (source
28229 (origin
28230 (method url-fetch)
28231 (uri (cran-uri "textplot" version))
28232 (sha256
28233 (base32
28234 "1sgkndy2cxk8c76h8hwajn6f78w5jj2n8vsmaxh9kj931crzn8cy"))))
28235 (properties `((upstream-name . "textplot")))
28236 (build-system r-build-system)
28237 (propagated-inputs
28238 `(("r-data-table" ,r-data-table)
28239 ("r-lattice" ,r-lattice)
28240 ("r-matrix" ,r-matrix)))
28241 (native-inputs `(("r-knitr" ,r-knitr)))
28242 (home-page "https://github.com/bnosac/textplot")
28243 (synopsis "Text Plots")
28244 (description
28245 "Visualise complex relations in texts. This is done by providing
28246 functionalities for displaying text co-occurrence networks, text correlation
28247 networks, dependency relationships as well as text clustering. Feel free to
28248 join the effort of providing interesting text visualisations.")
28249 (license license:gpl2)))