gnu: r-broom: Update to 0.7.6.
[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 ;;; Copyright © 2021 Tim Howes <timhowes@lavabit.com>
37 ;;;
38 ;;; This file is part of GNU Guix.
39 ;;;
40 ;;; GNU Guix is free software; you can redistribute it and/or modify it
41 ;;; under the terms of the GNU General Public License as published by
42 ;;; the Free Software Foundation; either version 3 of the License, or (at
43 ;;; your option) any later version.
44 ;;;
45 ;;; GNU Guix is distributed in the hope that it will be useful, but
46 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
47 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
48 ;;; GNU General Public License for more details.
49 ;;;
50 ;;; You should have received a copy of the GNU General Public License
51 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
52
53 (define-module (gnu packages cran)
54 #:use-module ((guix licenses) #:prefix license:)
55 #:use-module (guix packages)
56 #:use-module (guix download)
57 #:use-module (guix git-download)
58 #:use-module (guix utils)
59 #:use-module (guix build-system gnu)
60 #:use-module (guix build-system r)
61 #:use-module (gnu packages)
62 #:use-module (gnu packages algebra)
63 #:use-module (gnu packages autotools)
64 #:use-module (gnu packages base)
65 #:use-module (gnu packages bioinformatics)
66 #:use-module (gnu packages c)
67 #:use-module (gnu packages compression)
68 #:use-module (gnu packages crypto)
69 #:use-module (gnu packages curl)
70 #:use-module (gnu packages databases)
71 #:use-module (gnu packages fontutils)
72 #:use-module (gnu packages fribidi)
73 #:use-module (gnu packages gcc)
74 #:use-module (gnu packages geo)
75 #:use-module (gnu packages ghostscript)
76 #:use-module (gnu packages gl)
77 #:use-module (gnu packages gnome)
78 #:use-module (gnu packages graph)
79 #:use-module (gnu packages gtk)
80 #:use-module (gnu packages haskell-xyz)
81 #:use-module (gnu packages icu4c)
82 #:use-module (gnu packages image)
83 #:use-module (gnu packages imagemagick)
84 #:use-module (gnu packages java)
85 #:use-module (gnu packages javascript)
86 #:use-module (gnu packages libevent)
87 #:use-module (gnu packages lisp-xyz)
88 #:use-module (gnu packages machine-learning)
89 #:use-module (gnu packages maths)
90 #:use-module (gnu packages mpi)
91 #:use-module (gnu packages multiprecision)
92 #:use-module (gnu packages networking)
93 #:use-module (gnu packages node)
94 #:use-module (gnu packages pcre)
95 #:use-module (gnu packages pdf)
96 #:use-module (gnu packages perl)
97 #:use-module (gnu packages pkg-config)
98 #:use-module (gnu packages pulseaudio) ;libsndfile
99 #:use-module (gnu packages python)
100 #:use-module (gnu packages python-xyz)
101 #:use-module (gnu packages sqlite)
102 #:use-module (gnu packages statistics)
103 #:use-module (gnu packages tcl)
104 #:use-module (gnu packages textutils)
105 #:use-module (gnu packages tls)
106 #:use-module (gnu packages version-control)
107 #:use-module (gnu packages web)
108 #:use-module (gnu packages xml)
109 #:use-module (gnu packages xorg))
110
111 (define-public r-brio
112 (package
113 (name "r-brio")
114 (version "1.1.1")
115 (source
116 (origin
117 (method url-fetch)
118 (uri (cran-uri "brio" version))
119 (sha256
120 (base32
121 "0ai2pqw5zk11r0rl2xshsq095ix1sdp2vjlixz2qxvy27x145ykh"))))
122 (properties `((upstream-name . "brio")))
123 (build-system r-build-system)
124 (home-page "https://github.com/r-lib/brio")
125 (synopsis "Basic R input output")
126 (description
127 "This package provides functions to handle basic input output. These
128 functions always read and write UTF-8 (8-bit Unicode Transformation Format)
129 files and provide more explicit control over line endings.")
130 (license license:expat)))
131
132 (define-public r-cachem
133 (package
134 (name "r-cachem")
135 (version "1.0.4")
136 (source
137 (origin
138 (method url-fetch)
139 (uri (cran-uri "cachem" version))
140 (sha256
141 (base32
142 "1b1gk837rk9kbfq385ybrrk12ckxwvhjvf0z9635l3vw49wal4mh"))))
143 (properties `((upstream-name . "cachem")))
144 (build-system r-build-system)
145 (propagated-inputs
146 `(("r-fastmap" ,r-fastmap)
147 ("r-rlang" ,r-rlang)))
148 (home-page "https://cachem.r-lib.org/")
149 (synopsis "Cache R objects with automatic pruning")
150 (description
151 "This package provides key-value stores with automatic pruning. Caches
152 can limit either their total size or the age of the oldest object (or both),
153 automatically pruning objects to maintain the constraints.")
154 (license license:expat)))
155
156 (define-public r-diffobj
157 (package
158 (name "r-diffobj")
159 (version "0.3.4")
160 (source
161 (origin
162 (method url-fetch)
163 (uri (cran-uri "diffobj" version))
164 (sha256
165 (base32
166 "1z4yhfasjpi9rxl1lh9bny7yvs947a6hhc768azc1wwad748mk9q"))))
167 (properties `((upstream-name . "diffobj")))
168 (build-system r-build-system)
169 (propagated-inputs `(("r-crayon" ,r-crayon)))
170 (native-inputs `(("r-knitr" ,r-knitr)))
171 (home-page "https://github.com/brodieG/diffobj")
172 (synopsis "Diffs for R objects")
173 (description
174 "Generate a colorized diff of two R objects for an intuitive
175 visualization of their differences.")
176 (license license:gpl2+)))
177
178 (define-public r-waldo
179 (package
180 (name "r-waldo")
181 (version "0.2.5")
182 (source
183 (origin
184 (method url-fetch)
185 (uri (cran-uri "waldo" version))
186 (sha256
187 (base32
188 "09jhwpgd6hg4qyip4r7wzpjz0jr139fyspd5ncriqimp522snqbr"))))
189 (properties `((upstream-name . "waldo")))
190 (build-system r-build-system)
191 (propagated-inputs
192 `(("r-cli" ,r-cli)
193 ("r-diffobj" ,r-diffobj)
194 ("r-fansi" ,r-fansi)
195 ("r-glue" ,r-glue)
196 ("r-rematch2" ,r-rematch2)
197 ("r-rlang" ,r-rlang)
198 ("r-tibble" ,r-tibble)))
199 (home-page "https://github.com/r-lib/waldo")
200 (synopsis "Find differences between R objects")
201 (description
202 "Compare complex R objects and reveal the key differences. This package
203 was designed particularly for use in testing packages where being able to
204 quickly isolate key differences makes understanding test failures much
205 easier.")
206 (license license:expat)))
207
208 (define-public r-rticles
209 (package
210 (name "r-rticles")
211 (version "0.19")
212 (source
213 (origin
214 (method url-fetch)
215 (uri (cran-uri "rticles" version))
216 (sha256
217 (base32
218 "1zcj5y54z1max1df9j2iclm6zlcic4wj684y18wcnmmdwfs51818"))))
219 (properties `((upstream-name . "rticles")))
220 (build-system r-build-system)
221 (propagated-inputs
222 `(("r-knitr" ,r-knitr)
223 ("r-rmarkdown" ,r-rmarkdown)
224 ("r-tinytex" ,r-tinytex)
225 ("r-xfun" ,r-xfun)
226 ("r-yaml" ,r-yaml)))
227 (home-page "https://github.com/rstudio/rticles")
228 (synopsis "Article formats for R Markdown")
229 (description
230 "This package provides a suite of custom R Markdown formats and templates
231 for authoring journal articles and conference submissions.")
232 (license license:gpl3)))
233
234 (define-public r-bezier
235 (package
236 (name "r-bezier")
237 (version "1.1.2")
238 (source (origin
239 (method url-fetch)
240 (uri (cran-uri "bezier" version))
241 (sha256
242 (base32
243 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
244 (build-system r-build-system)
245 (home-page "https://cran.r-project.org/web/packages/bezier/")
246 (synopsis "Bezier curve and spline toolkit")
247 (description
248 "This package is a toolkit for working with Bezier curves and splines.
249 The package provides functions for point generation, arc length estimation,
250 degree elevation and curve fitting.")
251 (license license:gpl2+)))
252
253 (define-public r-v8
254 (package
255 (name "r-v8")
256 (version "3.4.0")
257 (source
258 (origin
259 (method url-fetch)
260 (uri (cran-uri "V8" version))
261 (sha256
262 (base32
263 "1g9z22pc8ydx1yhv57ww2d2jg5hvrl7ilwa79x89zgn17jha5j7m"))))
264 (properties `((upstream-name . "V8")))
265 (build-system r-build-system)
266 (arguments
267 `(#:phases
268 (modify-phases %standard-phases
269 (add-after 'unpack 'find-v8
270 (lambda* (#:key inputs #:allow-other-keys)
271 (substitute* "configure"
272 (("^PKG_LIBS=.*")
273 (string-append "PKG_LIBS="
274 (assoc-ref inputs "node")
275 "/lib/libnode.so.64\n")))
276 (setenv "INCLUDE_DIR"
277 (string-append
278 (assoc-ref inputs "node")
279 "/include/node"))
280 (setenv "LIB_DIR"
281 (string-append
282 (assoc-ref inputs "node") "/lib"))
283 #t)))))
284 (inputs
285 `(("node" ,libnode)))
286 (propagated-inputs
287 `(("r-curl" ,r-curl)
288 ("r-jsonlite" ,r-jsonlite)
289 ("r-rcpp" ,r-rcpp)))
290 (native-inputs
291 `(("r-knitr" ,r-knitr)))
292 (home-page "https://jeroen.cran.dev/V8")
293 (synopsis "Embedded JavaScript and WebAssembly engine for R")
294 (description
295 "This package provides an R interface to V8: Google's JavaScript and
296 WebAssembly engine.")
297 (license license:expat)))
298
299 (define-public r-dot
300 (package
301 (name "r-dot")
302 (version "0.1")
303 (source
304 (origin
305 (method url-fetch)
306 (uri (cran-uri "DOT" version))
307 (sha256
308 (base32
309 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
310 (properties `((upstream-name . "DOT")))
311 (build-system r-build-system)
312 (propagated-inputs
313 `(("r-v8" ,r-v8)))
314 (home-page "http://haghish.com/dot")
315 (synopsis "Render and Export DOT Graphs in R")
316 (description
317 "This package provides tools to render DOT diagram markup language in R
318 and also provides the possibility to export the graphs in PostScript and
319 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
320 programming packages such as @code{knitr} and @code{rmarkdown}.")
321 (license license:expat)))
322
323 (define-public r-clipr
324 (package
325 (name "r-clipr")
326 (version "0.7.1")
327 (source
328 (origin
329 (method url-fetch)
330 (uri (cran-uri "clipr" version))
331 (sha256
332 (base32
333 "1ywa4kipwc2d7na6iiz3wzdah99h6aynnh74yxl3nzl40xxlgbgz"))))
334 (build-system r-build-system)
335 (native-inputs
336 `(("r-knitr" ,r-knitr)))
337 (home-page "https://github.com/mdlincoln/clipr")
338 (synopsis "Read and write from the system clipboard")
339 (description
340 "This package provides simple utility functions to read from and write to
341 the system clipboards.")
342 (license license:gpl3)))
343
344 (define-public r-zoo
345 (package
346 (name "r-zoo")
347 (version "1.8-9")
348 (source (origin
349 (method url-fetch)
350 (uri (cran-uri "zoo" version))
351 (sha256
352 (base32
353 "18vjywalpgzqyk66gajb8x1yp8avdaaf11ykynld9fd8cy82bgmp"))))
354 (build-system r-build-system)
355 (propagated-inputs
356 `(("r-lattice" ,r-lattice)))
357 (home-page "http://zoo.R-Forge.R-project.org/")
358 (synopsis "S3 infrastructure for regular and irregular time series")
359 (description "This package contains an S3 class with methods for totally
360 ordered indexed observations. It is particularly aimed at irregular time
361 series of numeric vectors/matrices and factors.")
362 (license license:gpl2+)))
363
364 (define-public r-ggalluvial
365 (package
366 (name "r-ggalluvial")
367 (version "0.12.3")
368 (source (origin
369 (method url-fetch)
370 (uri (cran-uri "ggalluvial" version))
371 (sha256
372 (base32
373 "0mkan9gxg3yxjism22yxbhvlh2lh7wpbrqpb355za790prcmjbh3"))))
374 (properties `((upstream-name . "ggalluvial")))
375 (build-system r-build-system)
376 (propagated-inputs
377 `(("r-dplyr" ,r-dplyr)
378 ("r-ggplot2" ,r-ggplot2)
379 ("r-lazyeval" ,r-lazyeval)
380 ("r-rlang" ,r-rlang)
381 ("r-tidyr" ,r-tidyr)
382 ("r-tidyselect" ,r-tidyselect)))
383 (native-inputs
384 `(("r-knitr" ,r-knitr)))
385 (home-page "http://corybrunson.github.io/ggalluvial/")
386 (synopsis "Alluvial plots for ggplot2")
387 (description "This package provides alluvial plots for @code{ggplot2}.
388 Alluvial plots use variable-width ribbons and stacked bar plots to represent
389 multi-dimensional or repeated-measures data with categorical or ordinal
390 variables.")
391 (license license:gpl3)))
392
393 (define-public r-ggpmisc
394 (package
395 (name "r-ggpmisc")
396 (version "0.3.9")
397 (source (origin
398 (method url-fetch)
399 (uri (cran-uri "ggpmisc" version))
400 (sha256
401 (base32
402 "0nb0lpwqph9334s9sq77mk3nd22icy9d9hywz4awhf6nvp5rcc2v"))))
403 (build-system r-build-system)
404 (propagated-inputs
405 `(("r-dplyr" ,r-dplyr)
406 ("r-generics" ,r-generics)
407 ("r-glue" ,r-glue)
408 ("r-ggplot2" ,r-ggplot2)
409 ("r-gridextra" ,r-gridextra)
410 ("r-lubridate" ,r-lubridate)
411 ("r-magrittr" ,r-magrittr)
412 ("r-mass" ,r-mass)
413 ("r-plyr" ,r-plyr)
414 ("r-polynom" ,r-polynom)
415 ("r-rlang" ,r-rlang)
416 ("r-scales" ,r-scales)
417 ("r-splus2r" ,r-splus2r)
418 ("r-stringr" ,r-stringr)
419 ("r-tibble" ,r-tibble)
420 ("r-xts" ,r-xts)
421 ("r-zoo" ,r-zoo)))
422 (native-inputs
423 `(("r-knitr" ,r-knitr)))
424 (home-page "https://www.r4photobiology.info/")
425 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
426 (description "This package provides extensions to @code{ggplot2},
427 respecting the grammar of its graphics paradigm.")
428 (license license:gpl2+)))
429
430 (define-public r-gprofiler
431 (package
432 (name "r-gprofiler")
433 (version "0.7.0")
434 (source
435 (origin
436 (method url-fetch)
437 (uri (cran-uri "gProfileR" version))
438 (sha256
439 (base32
440 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
441 (properties `((upstream-name . "gProfileR")))
442 (build-system r-build-system)
443 (propagated-inputs
444 `(("r-plyr" ,r-plyr)
445 ("r-rcurl" ,r-rcurl)))
446 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
447 (synopsis "Interface to the g:Profiler toolkit")
448 (description
449 "This package provides tools for functional enrichment analysis,
450 gene identifier conversion and mapping homologous genes across related
451 organisms via the @code{g:Profiler} toolkit.")
452 (license license:gpl2+)))
453
454 (define-public r-gprofiler2
455 (package
456 (name "r-gprofiler2")
457 (version "0.2.0")
458 (source
459 (origin
460 (method url-fetch)
461 (uri (cran-uri "gprofiler2" version))
462 (sha256
463 (base32
464 "0q8hl3gdxy34c0181ql405fdklz82nfvmwdcafd5mzf935rjpyjg"))))
465 (properties `((upstream-name . "gprofiler2")))
466 (build-system r-build-system)
467 (propagated-inputs
468 `(("r-crosstalk" ,r-crosstalk)
469 ("r-dplyr" ,r-dplyr)
470 ("r-ggplot2" ,r-ggplot2)
471 ("r-gridextra" ,r-gridextra)
472 ("r-jsonlite" ,r-jsonlite)
473 ("r-plotly" ,r-plotly)
474 ("r-rcurl" ,r-rcurl)
475 ("r-tidyr" ,r-tidyr)
476 ("r-viridislite" ,r-viridislite)))
477 (native-inputs `(("r-knitr" ,r-knitr)))
478 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
479 (synopsis "Interface to the g:Profiler toolset")
480 (description
481 "This package provides a toolset for functional enrichment analysis and
482 visualization, gene/protein/SNP identifier conversion and mapping orthologous
483 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
484 The main tools are:
485
486 @enumerate
487 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
488 lists;
489 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
490 various namespaces;
491 @item @code{g:Orth}, orthology search across species;
492 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
493 genes and variant effects.
494 @end enumerate
495
496 This package is an R interface corresponding to the 2019 update of
497 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
498 higher.")
499 (license license:gpl2+)))
500
501 (define-public r-oenb
502 (package
503 (name "r-oenb")
504 (version "0.0.2")
505 (source
506 (origin
507 (method url-fetch)
508 (uri (cran-uri "oenb" version))
509 (sha256
510 (base32
511 "1jgxw7ycx2lcdzglg9nix8k08fs4r6i5jdsjzrd6w1dg6smsinl5"))))
512 (properties `((upstream-name . "oenb")))
513 (build-system r-build-system)
514 (propagated-inputs
515 `(("r-dplyr" ,r-dplyr)
516 ("r-xml" ,r-xml)))
517 (native-inputs `(("r-knitr" ,r-knitr)))
518 (home-page "https://github.com/franzmohr/oenb")
519 (synopsis "Tools for the OeNB Data Web Service")
520 (description
521 "Tools to access data from the data web service of the
522 @acronym{OeNB, Oesterreichische Nationalbank},
523 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
524 (license license:gpl2+)))
525
526 (define-public r-scales
527 (package
528 (name "r-scales")
529 (version "1.1.1")
530 (source
531 (origin
532 (method url-fetch)
533 (uri (cran-uri "scales" version))
534 (sha256
535 (base32 "019ps0njjc0rzrjygqiyn8b9vp0c3c0jd56h1yi19wzi49jvdcj0"))))
536 (build-system r-build-system)
537 (propagated-inputs
538 `(("r-farver" ,r-farver)
539 ("r-labeling" ,r-labeling)
540 ("r-lifecycle" ,r-lifecycle)
541 ("r-munsell" ,r-munsell)
542 ("r-rcolorbrewer" ,r-rcolorbrewer)
543 ("r-r6" ,r-r6)
544 ("r-viridislite" ,r-viridislite)))
545 (home-page "https://github.com/hadley/scales")
546 (synopsis "Scale functions for visualization")
547 (description
548 "This package provides graphical scales that map data to aesthetics, and
549 provides methods for automatically determining breaks and labels for axes and
550 legends.")
551 (license license:expat)))
552
553 (define-public r-pheatmap
554 (package
555 (name "r-pheatmap")
556 (version "1.0.12")
557 (source
558 (origin
559 (method url-fetch)
560 (uri (cran-uri "pheatmap" version))
561 (sha256
562 (base32
563 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
564 (build-system r-build-system)
565 (propagated-inputs
566 `(("r-gtable" ,r-gtable)
567 ("r-rcolorbrewer" ,r-rcolorbrewer)
568 ("r-scales" ,r-scales)))
569 (home-page "https://cran.r-project.org/web/packages/pheatmap")
570 (synopsis "Pretty heatmaps")
571 (description
572 "This package provides an implementation of heatmaps that offers more
573 control over dimensions and appearance.")
574 (license license:gpl2+)))
575
576 (define-public r-ecp
577 (package
578 (name "r-ecp")
579 (version "3.1.3")
580 (source (origin
581 (method url-fetch)
582 (uri (cran-uri "ecp" version))
583 (sha256
584 (base32
585 "0n602jssl6rf596nwm6hbl7s9vdlqi20w8mrhxicj373mw5v22m8"))))
586 (build-system r-build-system)
587 (propagated-inputs
588 `(("r-rcpp" ,r-rcpp)))
589 (home-page "https://cran.r-project.org/web/packages/ecp/")
590 (synopsis "Multiple change-point analysis of multivariate data")
591 (description
592 "This package implements various procedures for finding multiple
593 change-points. Two methods make use of dynamic programming and pruning, with
594 no distributional assumptions other than the existence of certain absolute
595 moments in one method. Hierarchical and exact search methods are included.
596 All methods return the set of estimated change-points as well as other summary
597 information.")
598 (license license:gpl2+)))
599
600 (define-public r-ellipsis
601 (package
602 (name "r-ellipsis")
603 (version "0.3.1")
604 (source
605 (origin
606 (method url-fetch)
607 (uri (cran-uri "ellipsis" version))
608 (sha256
609 (base32
610 "1nvmkcca57d9067rcggw1gby80ibx5hplk2myz0cs9zwilaib2jg"))))
611 (build-system r-build-system)
612 (propagated-inputs
613 `(("r-rlang" ,r-rlang)))
614 (home-page "https://github.com/hadley/ellipsis")
615 (synopsis "Tools for working with additional arguments")
616 (description
617 "In S3 generics, it's useful to take @code{...} so that methods can have
618 additional arguments. But this flexibility comes at a cost: misspelled
619 arguments will be silently ignored. The @code{ellipsis} package is an
620 experiment that allows a generic to warn if any arguments passed in @code{...}
621 are not used.")
622 (license license:gpl3)))
623
624 (define-public r-grr
625 (package
626 (name "r-grr")
627 (version "0.9.5")
628 (source
629 (origin
630 (method url-fetch)
631 (uri (cran-uri "grr" version))
632 (sha256
633 (base32
634 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
635 (build-system r-build-system)
636 (home-page "https://cran.r-project.org/web/packages/grr")
637 (synopsis "Alternative implementations of base R functions")
638 (description
639 "This package provides alternative implementations of some base R
640 functions, including @code{sort}, @code{order}, and @code{match}. The
641 functions are simplified but can be faster or have other advantages.")
642 (license license:gpl3)))
643
644 (define-public r-matrix-utils
645 (package
646 (name "r-matrix-utils")
647 (version "0.9.8")
648 (source
649 (origin
650 (method url-fetch)
651 (uri (cran-uri "Matrix.utils" version))
652 (sha256
653 (base32
654 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
655 (properties `((upstream-name . "Matrix.utils")))
656 (build-system r-build-system)
657 (propagated-inputs
658 `(("r-grr" ,r-grr)
659 ("r-matrix" ,r-matrix)))
660 (home-page "https://github.com/cvarrichio/Matrix.utils")
661 (synopsis
662 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
663 (description
664 "This package implements data manipulation methods such as @code{cast},
665 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
666 objects.")
667 (license license:gpl3)))
668
669 (define-public r-mboost
670 (package
671 (name "r-mboost")
672 (version "2.9-4")
673 (source (origin
674 (method url-fetch)
675 (uri (cran-uri "mboost" version))
676 (sha256
677 (base32
678 "1dgyc38axfk2a430wsdnnk76xikizkyxf5r0l1kbp6cacrx6idz0"))))
679 (build-system r-build-system)
680 (propagated-inputs
681 `(("r-lattice" ,r-lattice)
682 ("r-matrix" ,r-matrix)
683 ("r-nnls" ,r-nnls)
684 ("r-partykit" ,r-partykit)
685 ("r-quadprog" ,r-quadprog)
686 ("r-stabs" ,r-stabs)
687 ("r-survival" ,r-survival)))
688 (home-page "https://github.com/boost-R/mboost")
689 (synopsis "Model-based boosting")
690 (description
691 "This package provides a functional gradient descent algorithm (boosting)
692 for optimizing general risk functions utilizing component-wise (penalised)
693 least squares estimates or regression trees as base-learners for fitting
694 generalized linear, additive and interaction models to potentially
695 high-dimensional data.")
696 (license license:gpl2)))
697
698 (define-public r-shadowtext
699 (package
700 (name "r-shadowtext")
701 (version "0.0.7")
702 (source (origin
703 (method url-fetch)
704 (uri (cran-uri "shadowtext" version))
705 (sha256
706 (base32
707 "1s1ip8zfr684a3ld7hvf524bhn2j31k6d1wbhh1ni0flsggv2ckf"))))
708 (properties `((upstream-name . "shadowtext")))
709 (build-system r-build-system)
710 (propagated-inputs
711 `(("r-ggplot2" ,r-ggplot2)
712 ("r-scales" ,r-scales)))
713 (native-inputs
714 `(("r-knitr" ,r-knitr)))
715 (home-page "https://github.com/GuangchuangYu/shadowtext/")
716 (synopsis "Shadow text grob and layer")
717 (description "This package implements @code{shadowtextGrob()} for
718 @code{grid} and @code{geom_shadowtext()} layer for @code{ggplot2}.
719 These functions draw text grob with background shadow.")
720 (license license:artistic2.0)))
721
722 (define-public r-sys
723 (package
724 (name "r-sys")
725 (version "3.4")
726 (source
727 (origin
728 (method url-fetch)
729 (uri (cran-uri "sys" version))
730 (sha256
731 (base32
732 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
733 (build-system r-build-system)
734 (home-page "https://github.com/jeroen/sys")
735 (synopsis "Powerful and reliable tools for running system commands in R")
736 (description
737 "This package provides drop-in replacements for the base @code{system2()}
738 function with fine control and consistent behavior across platforms. It
739 supports clean interruption, timeout, background tasks, and streaming STDIN /
740 STDOUT / STDERR over binary or text connections. The package also provides
741 functions for evaluating expressions inside a temporary fork. Such
742 evaluations have no side effects on the main R process, and support reliable
743 interrupts and timeouts. This provides the basis for a sandboxing
744 mechanism.")
745 (license license:expat)))
746
747 (define-public r-ashr
748 (package
749 (name "r-ashr")
750 (version "2.2-47")
751 (source (origin
752 (method url-fetch)
753 (uri (cran-uri "ashr" version))
754 (sha256
755 (base32
756 "1rqb5j30ylaf1h4l66x4jxyn5inrvhc42d90qd5mgkxsq0ghdlr4"))))
757 (properties `((upstream-name . "ashr")))
758 (build-system r-build-system)
759 (propagated-inputs
760 `(("r-etrunct" ,r-etrunct)
761 ("r-invgamma" ,r-invgamma)
762 ("r-matrix" ,r-matrix)
763 ("r-mixsqp" ,r-mixsqp)
764 ("r-rcpp" ,r-rcpp)
765 ("r-squarem" ,r-squarem)
766 ("r-truncnorm" ,r-truncnorm)))
767 (native-inputs
768 `(("r-knitr" ,r-knitr)))
769 (home-page "https://github.com/stephens999/ashr")
770 (synopsis "Methods for adaptive shrinkage, using empirical bayes")
771 (description "This package implements an empirical Bayes approach for
772 large-scale hypothesis testing and false discovery rate estimation.")
773 (license license:gpl3+)))
774
775 (define-public r-askpass
776 (package
777 (name "r-askpass")
778 (version "1.1")
779 (source
780 (origin
781 (method url-fetch)
782 (uri (cran-uri "askpass" version))
783 (sha256
784 (base32
785 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
786 (build-system r-build-system)
787 (propagated-inputs `(("r-sys" ,r-sys)))
788 (home-page "https://github.com/jeroen/askpass")
789 (synopsis "Safe password entry for R")
790 (description
791 "This package provides cross-platform utilities for prompting the user
792 for credentials or a passphrase, for example to authenticate with a server or
793 read a protected key.")
794 (license license:expat)))
795
796 (define-public r-vegan
797 (package
798 (name "r-vegan")
799 (version "2.5-7")
800 (source
801 (origin
802 (method url-fetch)
803 (uri (cran-uri "vegan" version))
804 (sha256
805 (base32
806 "0aj6m9l1vkh32sar6fyvq4p8j4h2f2f347w1300qnzgaa5lmhfz6"))))
807 (build-system r-build-system)
808 (native-inputs
809 `(("r-knitr" ,r-knitr) ; needed for vignettes
810 ("gfortran" ,gfortran)))
811 (propagated-inputs
812 `(("r-cluster" ,r-cluster)
813 ("r-lattice" ,r-lattice)
814 ("r-mass" ,r-mass)
815 ("r-mgcv" ,r-mgcv)
816 ("r-permute" ,r-permute)))
817 (home-page "https://cran.r-project.org/web/packages/vegan")
818 (synopsis "Functions for community ecology")
819 (description
820 "The vegan package provides tools for descriptive community ecology. It
821 has most basic functions of diversity analysis, community ordination and
822 dissimilarity analysis. Most of its multivariate tools can be used for other
823 data types as well.")
824 (license license:gpl2+)))
825
826 (define-public r-tidyverse
827 (package
828 (name "r-tidyverse")
829 (version "1.3.0")
830 (source
831 (origin
832 (method url-fetch)
833 (uri (cran-uri "tidyverse" version))
834 (sha256
835 (base32
836 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
837 (build-system r-build-system)
838 (propagated-inputs
839 `(("r-broom" ,r-broom)
840 ("r-cli" ,r-cli)
841 ("r-crayon" ,r-crayon)
842 ("r-dbplyr" ,r-dbplyr)
843 ("r-dplyr" ,r-dplyr)
844 ("r-forcats" ,r-forcats)
845 ("r-ggplot2" ,r-ggplot2)
846 ("r-haven" ,r-haven)
847 ("r-hms" ,r-hms)
848 ("r-httr" ,r-httr)
849 ("r-jsonlite" ,r-jsonlite)
850 ("r-lubridate" ,r-lubridate)
851 ("r-magrittr" ,r-magrittr)
852 ("r-modelr" ,r-modelr)
853 ("r-pillar" ,r-pillar)
854 ("r-purrr" ,r-purrr)
855 ("r-readr" ,r-readr)
856 ("r-readxl" ,r-readxl)
857 ("r-reprex" ,r-reprex)
858 ("r-rlang" ,r-rlang)
859 ("r-rstudioapi" ,r-rstudioapi)
860 ("r-rvest" ,r-rvest)
861 ("r-stringr" ,r-stringr)
862 ("r-tibble" ,r-tibble)
863 ("r-tidyr" ,r-tidyr)
864 ("r-xml2" ,r-xml2)))
865 (home-page "https://tidyverse.tidyverse.org")
866 (synopsis "Install and load packages from the \"Tidyverse\"")
867 (description
868 "The @code{tidyverse} is a set of packages that work in harmony because
869 they share common data representations and API design. This package is
870 designed to make it easy to install and load multiple tidyverse packages in a
871 single step.")
872 (license license:gpl3)))
873
874 (define-public r-rvest
875 (package
876 (name "r-rvest")
877 (version "1.0.0")
878 (source
879 (origin
880 (method url-fetch)
881 (uri (cran-uri "rvest" version))
882 (sha256
883 (base32 "04spcv6nxlmx5bxncq0vybfqrs8jgjamzyrn6wmkdcwii8jvyn53"))))
884 (build-system r-build-system)
885 (propagated-inputs
886 `(("r-httr" ,r-httr)
887 ("r-lifecycle" ,r-lifecycle)
888 ("r-magrittr" ,r-magrittr)
889 ("r-rlang" ,r-rlang)
890 ("r-selectr" ,r-selectr)
891 ("r-tibble" ,r-tibble)
892 ("r-xml2" ,r-xml2)))
893 (native-inputs
894 `(("r-knitr" ,r-knitr)))
895 (home-page "https://github.com/hadley/rvest")
896 (synopsis "Simple web scraping for R")
897 (description
898 "@code{r-rvest} helps you scrape information from web pages. It is
899 designed to work with @code{magrittr} to make it easy to express common web
900 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
901 (license license:gpl3)))
902
903 (define-public r-selectr
904 (package
905 (name "r-selectr")
906 (version "0.4-2")
907 (source
908 (origin
909 (method url-fetch)
910 (uri (cran-uri "selectr" version))
911 (sha256
912 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
913 (build-system r-build-system)
914 (propagated-inputs
915 `(("r-stringr" ,r-stringr)
916 ("r-r6" ,r-r6)))
917 (home-page "https://sjp.co.nz/projects/selectr/")
918 (synopsis "Translate CSS selectors to XPath expressions")
919 (description
920 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
921 expression. This allows you to use CSS selectors when working with the XML
922 package as it can only evaluate XPath expressions. Also provided are
923 convenience functions useful for using CSS selectors on XML nodes. This
924 package is a port of the Python package @code{cssselect}.")
925 (license license:bsd-3)))
926
927 (define-public r-reprex
928 (package
929 (name "r-reprex")
930 (version "2.0.0")
931 (source
932 (origin
933 (method url-fetch)
934 (uri (cran-uri "reprex" version))
935 (sha256
936 (base32
937 "1lcnxczy28n4g3rvph09va7svcznfyqa7zdggklqb924qvy7flwh"))))
938 (build-system r-build-system)
939 (propagated-inputs
940 `(("r-callr" ,r-callr)
941 ("r-cli" ,r-cli)
942 ("r-clipr" ,r-clipr)
943 ("r-fs" ,r-fs)
944 ("r-glue" ,r-glue)
945 ("r-knitr" ,r-knitr)
946 ("r-rlang" ,r-rlang)
947 ("r-rmarkdown" ,r-rmarkdown)
948 ("r-rstudioapi" ,r-rstudioapi)
949 ("r-withr" ,r-withr)))
950 (native-inputs
951 `(("r-knitr" ,r-knitr)))
952 (home-page "https://github.com/tidyverse/reprex")
953 (synopsis "Prepare reproducible R code examples for sharing")
954 (description
955 "This package provides a convenience wrapper that uses the
956 @code{rmarkdown} package to render small snippets of code to target formats
957 that include both code and output. The goal is to encourage the sharing of
958 small, reproducible, and runnable examples on code-oriented websites or email.
959 @code{reprex} also extracts clean, runnable R code from various common formats,
960 such as copy/paste from an R session.")
961 (license license:expat)))
962
963 (define-public r-reordercluster
964 (package
965 (name "r-reordercluster")
966 (version "1.0")
967 (source (origin
968 (method url-fetch)
969 (uri (cran-uri "ReorderCluster" version))
970 (sha256
971 (base32
972 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
973 (build-system r-build-system)
974 (propagated-inputs
975 `(("r-gplots" ,r-gplots)
976 ("r-rcpp" ,r-rcpp)))
977 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
978 (synopsis "Reordering the dendrogram according to the class labels")
979 (description "This package provides tools for performing the leaf reordering
980 for the dendrogram that preserves the hierarchical clustering result and at the
981 same time tries to group instances from the same class together.")
982 (license license:gpl3+)))
983
984 (define-public r-callr
985 (package
986 (name "r-callr")
987 (version "3.6.0")
988 (source
989 (origin
990 (method url-fetch)
991 (uri (cran-uri "callr" version))
992 (sha256
993 (base32
994 "050s7l1ipi6snbj6xnk052l6acycnxjyzv84026adw5x8kki0yz6"))))
995 (build-system r-build-system)
996 (propagated-inputs
997 `(("r-r6" ,r-r6)
998 ("r-processx" ,r-processx)))
999 (home-page "https://github.com/r-lib/callr#readme")
1000 (synopsis "Call R from R")
1001 (description
1002 "It is sometimes useful to perform a computation in a separate R process,
1003 without affecting the current R process at all. This package does exactly
1004 that.")
1005 (license license:expat)))
1006
1007 (define-public r-readxl
1008 (package
1009 (name "r-readxl")
1010 (version "1.3.1")
1011 (source
1012 (origin
1013 (method url-fetch)
1014 (uri (cran-uri "readxl" version))
1015 (sha256
1016 (base32
1017 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
1018 (build-system r-build-system)
1019 (propagated-inputs
1020 `(("r-cellranger" ,r-cellranger)
1021 ("r-progress" ,r-progress)
1022 ("r-rcpp" ,r-rcpp)
1023 ("r-tibble" ,r-tibble)))
1024 (home-page "https://readxl.tidyverse.org")
1025 (synopsis "Read Excel files")
1026 (description
1027 "This package lets you import Excel files into R. It supports
1028 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
1029 the embedded @code{RapidXML} C++ library.")
1030 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
1031 ;; 'rapidxml' which is Boost.
1032 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
1033
1034 (define-public r-modelr
1035 (package
1036 (name "r-modelr")
1037 (version "0.1.8")
1038 (source
1039 (origin
1040 (method url-fetch)
1041 (uri (cran-uri "modelr" version))
1042 (sha256
1043 (base32
1044 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
1045 (build-system r-build-system)
1046 (propagated-inputs
1047 `(("r-broom" ,r-broom)
1048 ("r-magrittr" ,r-magrittr)
1049 ("r-purrr" ,r-purrr)
1050 ("r-rlang" ,r-rlang)
1051 ("r-tibble" ,r-tibble)
1052 ("r-tidyr" ,r-tidyr)
1053 ("r-tidyselect" ,r-tidyselect)
1054 ("r-vctrs" ,r-vctrs)))
1055 (home-page "https://github.com/tidyverse/modelr")
1056 (synopsis "Helper functions for modelling in pipelines")
1057 (description
1058 "Functions for modelling that help you seamlessly integrate modelling
1059 into a pipeline of data manipulation and visualisation.")
1060 (license license:gpl3)))
1061
1062 (define-public r-httpuv
1063 (package
1064 (name "r-httpuv")
1065 (version "1.5.5")
1066 (source (origin
1067 (method url-fetch)
1068 (uri (cran-uri "httpuv" version))
1069 (sha256
1070 (base32
1071 "05rir03xwamwfq5691vx0x957sgmr4i8iv5vpx5rv1f74y4wkrhb"))
1072 ;; Unvendor bundled libraries. As of 1.5.4 the vendored libuv
1073 ;; only contains fixes for building on Solaris.
1074 (patches (search-patches "r-httpuv-1.5.5-unvendor-libuv.patch"))
1075 (modules '((guix build utils)))
1076 (snippet
1077 `(begin
1078 (delete-file-recursively "src/libuv")
1079 ;; Cannot unbundle http-parser, because it contains local
1080 ;; modifications.
1081 #t))))
1082 (build-system r-build-system)
1083 (arguments
1084 `(#:phases
1085 (modify-phases %standard-phases
1086 (add-after 'unpack 'unbundle-libuv
1087 (lambda* (#:key outputs #:allow-other-keys)
1088 (substitute* (find-files "src" "\\.cpp$|\\.h$")
1089 (("\"libuv/include/uv\\.h\"")
1090 "<uv.h>"))
1091 ;; Fix https://github.com/rstudio/httpuv/issues/282
1092 (substitute* "src/http.cpp"
1093 (("uv_pipe_init\\(pLoop, &pSocket->handle\\.pipe, true\\);")
1094 "uv_pipe_init(pLoop, &pSocket->handle.pipe, 0);"))
1095 #t)))))
1096 (inputs
1097 `(("libuv" ,libuv)))
1098 (propagated-inputs
1099 `(("r-bh" ,r-bh)
1100 ("r-later" ,r-later)
1101 ("r-promises" ,r-promises)
1102 ("r-r6" ,r-r6)
1103 ("r-rcpp" ,r-rcpp)))
1104 (home-page "https://github.com/rstudio/httpuv")
1105 (synopsis "HTTP and WebSocket server library for R")
1106 (description
1107 "The httpuv package provides low-level socket and protocol support for
1108 handling HTTP and WebSocket requests directly from within R. It is primarily
1109 intended as a building block for other packages, rather than making it
1110 particularly easy to create complete web applications using httpuv alone.")
1111 ;; This package includes third-party code that was originally released
1112 ;; under various non-copyleft licenses. Full licensing information can be
1113 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
1114 (license license:gpl3+)))
1115
1116 (define-public r-jsonlite
1117 (package
1118 (name "r-jsonlite")
1119 (version "1.7.2")
1120 (source (origin
1121 (method url-fetch)
1122 (uri (cran-uri "jsonlite" version))
1123 (sha256
1124 (base32
1125 "1lhzcpz9clwq04i5m6jzkvw9x03pwlqrixv4l9xzchjr8d84nd86"))))
1126 (build-system r-build-system)
1127 (native-inputs
1128 `(("r-knitr" ,r-knitr)))
1129 (home-page "https://arxiv.org/abs/1403.2805")
1130 (synopsis "Robust, high performance JSON parser and generator for R")
1131 (description
1132 "The jsonlite package provides a fast JSON parser and generator optimized
1133 for statistical data and the web. It offers flexible, robust, high
1134 performance tools for working with JSON in R and is particularly powerful for
1135 building pipelines and interacting with a web API. In addition to converting
1136 JSON data from/to R objects, jsonlite contains functions to stream, validate,
1137 and prettify JSON data. The unit tests included with the package verify that
1138 all edge cases are encoded and decoded consistently for use with dynamic data
1139 in systems and applications.")
1140 (license license:expat)))
1141
1142 (define-public r-servr
1143 (package
1144 (name "r-servr")
1145 (version "0.21")
1146 (source (origin
1147 (method url-fetch)
1148 (uri (cran-uri "servr" version))
1149 (sha256
1150 (base32
1151 "12fk585hmz735v4hra8da9wld1fmd67byqnf95m7jjyh7l3dmh1z"))))
1152 (build-system r-build-system)
1153 (propagated-inputs
1154 `(("r-httpuv" ,r-httpuv)
1155 ("r-jsonlite" ,r-jsonlite)
1156 ("r-mime" ,r-mime)
1157 ("r-xfun" ,r-xfun)))
1158 (home-page "https://github.com/yihui/servr")
1159 (synopsis "Simple HTTP server to serve static files or dynamic documents")
1160 (description
1161 "Servr provides an HTTP server in R to serve static files, or dynamic
1162 documents that can be converted to HTML files (e.g., R Markdown) under a given
1163 directory.")
1164 (license license:expat)))
1165
1166 (define-public r-htmltools
1167 (package
1168 (name "r-htmltools")
1169 (version "0.5.1.1")
1170 (source (origin
1171 (method url-fetch)
1172 (uri (cran-uri "htmltools" version))
1173 (sha256
1174 (base32
1175 "1fm4cymz4hz6lds80m9j5q00xy5flkrmfn5dkrn3s3rkzqpyggzh"))))
1176 (build-system r-build-system)
1177 (propagated-inputs
1178 `(("r-base64enc" ,r-base64enc)
1179 ("r-digest" ,r-digest)
1180 ("r-rlang" ,r-rlang)))
1181 (home-page "https://cran.r-project.org/web/packages/htmltools")
1182 (synopsis "R tools for HTML")
1183 (description
1184 "This package provides tools for HTML generation and output in R.")
1185 (license license:expat)))
1186
1187 (define-public r-htmlwidgets
1188 (package
1189 (name "r-htmlwidgets")
1190 (version "1.5.3")
1191 (source (origin
1192 (method url-fetch)
1193 (uri (cran-uri "htmlwidgets" version))
1194 (sha256
1195 (base32
1196 "0a8g7wqd3qxnhwkm9c9bkzg29db7gvjiaa5y038ln8nch8qq7981"))))
1197 (build-system r-build-system)
1198 (propagated-inputs
1199 `(("r-htmltools" ,r-htmltools)
1200 ("r-jsonlite" ,r-jsonlite)
1201 ("r-yaml" ,r-yaml)))
1202 (native-inputs
1203 `(("r-knitr" ,r-knitr)))
1204 (home-page "https://github.com/ramnathv/htmlwidgets")
1205 (synopsis "HTML Widgets for R")
1206 (description
1207 "HTML widgets is a framework for creating HTML widgets that render in
1208 various contexts including the R console, R Markdown documents, and Shiny web
1209 applications.")
1210 (license license:expat)))
1211
1212 (define-public r-htmltable
1213 (package
1214 (name "r-htmltable")
1215 (version "2.1.0")
1216 (source
1217 (origin
1218 (method url-fetch)
1219 (uri (cran-uri "htmlTable" version))
1220 (sha256
1221 (base32 "1gzh0bdxi55p1ckxv4k0a41b1j0grwv2w3lkqz4c3gkw66dk6ja0"))))
1222 (properties `((upstream-name . "htmlTable")))
1223 (build-system r-build-system)
1224 (propagated-inputs
1225 `(("r-checkmate" ,r-checkmate)
1226 ("r-htmltools" ,r-htmltools)
1227 ("r-htmlwidgets" ,r-htmlwidgets)
1228 ("r-knitr" ,r-knitr)
1229 ("r-magrittr" ,r-magrittr)
1230 ("r-rstudioapi" ,r-rstudioapi)
1231 ("r-stringr" ,r-stringr)))
1232 (native-inputs
1233 `(("r-knitr" ,r-knitr)))
1234 (home-page "http://gforge.se/packages/")
1235 (synopsis "Advanced tables for Markdown/HTML")
1236 (description
1237 "This package provides functions to build tables with advanced layout
1238 elements such as row spanners, column spanners, table spanners, zebra
1239 striping, and more. While allowing advanced layout, the underlying
1240 CSS-structure is simple in order to maximize compatibility with word
1241 processors such as LibreOffice. The package also contains a few text
1242 formatting functions that help outputting text compatible with HTML or
1243 LaTeX.")
1244 (license license:gpl3+)))
1245
1246 (define-public r-curl
1247 (package
1248 (name "r-curl")
1249 (version "4.3")
1250 (source (origin
1251 (method url-fetch)
1252 (uri (cran-uri "curl" version))
1253 (sha256
1254 (base32
1255 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
1256 (build-system r-build-system)
1257 (arguments
1258 `(#:phases
1259 (modify-phases %standard-phases
1260 ;; The environment variable CURL_CA_BUNDLE is only respected when
1261 ;; running Windows, so we disable the platform checks.
1262 ;; This can be removed once the libcurl has been patched.
1263 (add-after 'unpack 'allow-CURL_CA_BUNDLE
1264 (lambda _
1265 (substitute* "R/onload.R"
1266 (("if \\(!grepl\\(\"mingw\".*")
1267 "if (FALSE)\n"))
1268 (substitute* "src/handle.c"
1269 (("/\\* Only set" m)
1270 (string-append "\
1271 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
1272 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
1273 " m)))
1274 #t)))))
1275 (inputs
1276 `(("libcurl" ,curl)
1277 ("zlib" ,zlib)))
1278 (native-inputs
1279 `(("pkg-config" ,pkg-config)))
1280 (home-page "https://github.com/jeroenooms/curl")
1281 (synopsis "HTTP client for R")
1282 (description
1283 "The @code{curl()} and @code{curl_download()} functions provide highly
1284 configurable drop-in replacements for base @code{url()} and
1285 @code{download.file()} with better performance, support for encryption, gzip
1286 compression, authentication, and other @code{libcurl} goodies. The core of
1287 the package implements a framework for performing fully customized requests
1288 where data can be processed either in memory, on disk, or streaming via the
1289 callback or connection interfaces.")
1290 (license license:expat)))
1291
1292 (define-public r-hwriter
1293 (package
1294 (name "r-hwriter")
1295 (version "1.3.2")
1296 (source
1297 (origin
1298 (method url-fetch)
1299 (uri (cran-uri "hwriter" version))
1300 (sha256
1301 (base32
1302 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
1303 (build-system r-build-system)
1304 (home-page "https://cran.r-project.org/web/packages/hwriter")
1305 (synopsis "Output R objects in HTML format")
1306 (description
1307 "This package provides easy-to-use and versatile functions to output R
1308 objects in HTML format.")
1309 (license license:lgpl2.1+)))
1310
1311 (define-public r-rjson
1312 (package
1313 (name "r-rjson")
1314 (version "0.2.20")
1315 (source
1316 (origin
1317 (method url-fetch)
1318 (uri (cran-uri "rjson" version))
1319 (sha256
1320 (base32
1321 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
1322 (build-system r-build-system)
1323 (home-page "https://cran.r-project.org/web/packages/rjson")
1324 (synopsis "JSON library for R")
1325 (description
1326 "This package provides functions to convert R objects into JSON objects
1327 and vice-versa.")
1328 (license license:gpl2+)))
1329
1330 (define-public r-fastmap
1331 (package
1332 (name "r-fastmap")
1333 (version "1.1.0")
1334 (source
1335 (origin
1336 (method url-fetch)
1337 (uri (cran-uri "fastmap" version))
1338 (sha256
1339 (base32
1340 "0aw29hnq3ppn7bsnwg9d9sp84k1cvq30lrmfzqn315n0nhkfa4wi"))))
1341 (properties `((upstream-name . "fastmap")))
1342 (build-system r-build-system)
1343 (home-page "https://r-lib.github.io/fastmap/")
1344 (synopsis "Fast implementation of a key-value store")
1345 (description
1346 "This package provides a fast implementation of a key-value store.
1347 Environments are commonly used as key-value stores, but every time a new key
1348 is used, it is added to R's global symbol table, causing a small amount of
1349 memory leakage. This can be problematic in cases where many different keys
1350 are used. Fastmap avoids this memory leak issue by implementing the map using
1351 data structures in C++.")
1352 (license license:expat)))
1353
1354 (define-public r-fastghquad
1355 (package
1356 (name "r-fastghquad")
1357 (version "1.0")
1358 (source
1359 (origin
1360 (method url-fetch)
1361 (uri (cran-uri "fastGHQuad" version))
1362 (sha256
1363 (base32
1364 "1rjia8wggadr9xwxcmzmal0rc4g6pa3dr5888fbbnb6abl8b2lrj"))))
1365 (properties `((upstream-name . "fastGHQuad")))
1366 (build-system r-build-system)
1367 (propagated-inputs
1368 `(("r-rcpp" ,r-rcpp)))
1369 (home-page "https://github.com/awblocker/fastGHQuad")
1370 (synopsis "Fast Rcpp implementation of Gauss-Hermite Quadrature")
1371 (description
1372 "This package implements numerically-stable Gauss-Hermite quadrature
1373 rules and utility functions for adaptive GH quadrature.")
1374 (license license:expat)))
1375
1376 (define-public r-rstpm2
1377 (package
1378 (name "r-rstpm2")
1379 (version "1.5.2")
1380 (source
1381 (origin
1382 (method url-fetch)
1383 (uri (cran-uri "rstpm2" version))
1384 (sha256
1385 (base32
1386 "0c6l3z250b2kn6mh2xyb0bd2y5nsbj11n9xfi51dac9s8xq3v7m4"))))
1387 (properties `((upstream-name . "rstpm2")))
1388 (build-system r-build-system)
1389 (propagated-inputs
1390 `(("r-bbmle" ,r-bbmle)
1391 ("r-bh" ,r-bh)
1392 ("r-desolve" ,r-desolve)
1393 ("r-fastghquad" ,r-fastghquad)
1394 ("r-mgcv" ,r-mgcv)
1395 ("r-rcpp" ,r-rcpp)
1396 ("r-rcpparmadillo" ,r-rcpparmadillo)
1397 ("r-survival" ,r-survival)))
1398 (native-inputs
1399 `(("gfortran" ,gfortran)))
1400 (home-page "https://github.com/mclements/rstpm2")
1401 (synopsis "Link-based survival models")
1402 (description
1403 "This package provides R implementations of @dfn{generalized survival
1404 models} (GSMs), smooth @dfn{accelerated failure time} (AFT) models and Markov
1405 multi-state models.")
1406 ;; One of these licenses
1407 (license (list license:gpl2 license:gpl3))))
1408
1409 ;; This package includes minified JavaScript files. When upgrading please
1410 ;; check that there are no new minified JavaScript files.
1411 (define-public r-jquerylib
1412 (package
1413 (name "r-jquerylib")
1414 (version "0.1.3")
1415 (source
1416 (origin
1417 (method url-fetch)
1418 (uri (cran-uri "jquerylib" version))
1419 (sha256
1420 (base32
1421 "1s0d6mws13hwkx07jqmry7vp30a05b2p9w7ir68bmkhasidwkzdq"))
1422 (snippet
1423 '(for-each delete-file
1424 '("inst/lib/jquery-1.12.4.min.js"
1425 "inst/lib/jquery-2.2.4.min.js"
1426 "inst/lib/jquery-3.5.1.min.js")))))
1427 (properties `((upstream-name . "jquerylib")))
1428 (build-system r-build-system)
1429 (arguments
1430 `(#:modules ((guix build utils)
1431 (guix build r-build-system)
1432 (srfi srfi-1))
1433 #:phases
1434 (modify-phases %standard-phases
1435 (add-after 'unpack 'process-javascript
1436 (lambda* (#:key inputs #:allow-other-keys)
1437 (with-directory-excursion "inst/lib/"
1438 (call-with-values
1439 (lambda ()
1440 (unzip2
1441 `(("jquery-1.12.4.js"
1442 "jquery-1.12.4.min.js")
1443 ("jquery-2.2.4.js"
1444 "jquery-2.2.4.min.js")
1445 ("jquery-3.5.1.js"
1446 "jquery-3.5.1.min.js"))))
1447 (lambda (sources targets)
1448 (for-each (lambda (source target)
1449 (format #t "Processing ~a --> ~a~%"
1450 source target)
1451 (invoke "esbuild" source "--minify"
1452 (string-append "--outfile=" target)))
1453 sources targets)))))))))
1454 (propagated-inputs
1455 `(("r-htmltools" ,r-htmltools)))
1456 (native-inputs
1457 `(("esbuild" ,esbuild)))
1458 (home-page "https://cran.r-project.org/package=jquerylib")
1459 (synopsis "Obtain jQuery as an HTML dependency object")
1460 (description
1461 "Obtain any major version of jQuery and use it in any webpage generated
1462 by htmltools (e.g. shiny, htmlwidgets, and rmarkdown). Most R users don't
1463 need to use this package directly, but other R packages (e.g. shiny,
1464 rmarkdown, etc.) depend on this package to avoid bundling redundant copies of
1465 jQuery.")
1466 (license license:expat)))
1467
1468 (define-public r-sass
1469 (package
1470 (name "r-sass")
1471 (version "0.3.1")
1472 (source
1473 (origin
1474 (method url-fetch)
1475 (uri (cran-uri "sass" version))
1476 (sha256
1477 (base32
1478 "1cxqwsdyz71mgflqqa65mfr161jlv8q9mshs1y19pxp6pz5wnv0s"))))
1479 (properties `((upstream-name . "sass")))
1480 (build-system r-build-system)
1481 (propagated-inputs
1482 `(("r-digest" ,r-digest)
1483 ("r-fs" ,r-fs)
1484 ("r-htmltools" ,r-htmltools)
1485 ("r-r6" ,r-r6)
1486 ("r-rappdirs" ,r-rappdirs)
1487 ("r-rlang" ,r-rlang)))
1488 (native-inputs `(("r-knitr" ,r-knitr)))
1489 (home-page "https://github.com/rstudio/sass")
1490 (synopsis "Syntactically Awesome Style Sheets (SASS)")
1491 (description
1492 "This package provides an SCSS compiler, powered by the libsass library.
1493 With this, R developers can use variables, inheritance, and functions to
1494 generate dynamic style sheets. The package uses the Sass CSS extension
1495 language, which is stable, powerful, and CSS compatible.")
1496 (license license:expat)))
1497
1498 ;; This package includes minified JavaScript files. When upgrading please
1499 ;; check that there are no new minified JavaScript files.
1500 (define-public r-bslib
1501 (package
1502 (name "r-bslib")
1503 (version "0.2.4")
1504 (source
1505 (origin
1506 (method url-fetch)
1507 (uri (cran-uri "bslib" version))
1508 (sha256
1509 (base32
1510 "0qlpv2lqr3hjykszmnll7vi4zhmrz4rgcfl0sifxc6cha6jy2nac"))
1511 (snippet
1512 '(for-each delete-file
1513 '("inst/lib/bs-a11y-p/plugins/js/bootstrap-accessibility.min.js"
1514 "inst/lib/bs-colorpicker/js/bootstrap-colorpicker.min.js"
1515 "inst/lib/bs-sass/assets/javascripts/bootstrap.min.js"
1516 "inst/lib/bs/dist/js/bootstrap.bundle.min.js")))))
1517 (properties `((upstream-name . "bslib")))
1518 (build-system r-build-system)
1519 (arguments
1520 `(#:modules ((guix build utils)
1521 (guix build r-build-system)
1522 (srfi srfi-1))
1523 #:phases
1524 (modify-phases %standard-phases
1525 (add-after 'unpack 'process-javascript
1526 (lambda* (#:key inputs #:allow-other-keys)
1527 (with-directory-excursion "inst/lib/"
1528 (call-with-values
1529 (lambda ()
1530 (unzip2
1531 `(("bs-a11y-p/plugins/js/bootstrap-accessibility.js"
1532 "bs-a11y-p/plugins/js/bootstrap-accessibility.min.js")
1533 ("bs-colorpicker/js/bootstrap-colorpicker.js"
1534 "bs-colorpicker/js/bootstrap-colorpicker.min.js")
1535 ("bs-sass/assets/javascripts/bootstrap.js"
1536 "bs-sass/assets/javascripts/bootstrap.min.js")
1537 (,(assoc-ref inputs "js-bootstrap-bundle")
1538 "bs/dist/js/bootstrap.bundle.min.js"))))
1539 (lambda (sources targets)
1540 (for-each (lambda (source target)
1541 (format #t "Processing ~a --> ~a~%"
1542 source target)
1543 (invoke "esbuild" source "--minify"
1544 (string-append "--outfile=" target)))
1545 sources targets)))))))))
1546 (propagated-inputs
1547 `(("r-digest" ,r-digest)
1548 ("r-htmltools" ,r-htmltools)
1549 ("r-jquerylib" ,r-jquerylib)
1550 ("r-jsonlite" ,r-jsonlite)
1551 ("r-magrittr" ,r-magrittr)
1552 ("r-rlang" ,r-rlang)
1553 ("r-sass" ,r-sass)))
1554 (native-inputs
1555 `(("esbuild" ,esbuild)
1556 ("js-bootstrap-bundle"
1557 ,(origin
1558 (method url-fetch)
1559 (uri "https://raw.githubusercontent.com/twbs/bootstrap/v4.5.3/dist/js/bootstrap.bundle.js")
1560 (sha256
1561 (base32
1562 "1lcsxj7gcm56va3gck47ggpwzjxrzq27sgjzdw6c54qkp0487sak"))))))
1563 (home-page "https://rstudio.github.io/bslib/")
1564 (synopsis "Custom Bootstrap Sass themes for shiny and rmarkdown")
1565 (description
1566 "This package simplifies custom CSS styling of both shiny and rmarkdown
1567 via Bootstrap Sass. It supports both Bootstrap 3 and 4 as well as their
1568 various Bootswatch themes. An interactive widget is also provided for
1569 previewing themes in real time.")
1570 (license license:expat)))
1571
1572 ;; This package includes minified JavaScript files. When upgrading please
1573 ;; check that there are no new minified JavaScript files.
1574 (define-public r-shiny
1575 (package
1576 (name "r-shiny")
1577 (version "1.6.0")
1578 (source
1579 (origin
1580 (method git-fetch)
1581 (uri (git-reference
1582 (url "https://github.com/rstudio/shiny")
1583 (commit (string-append "v" version))))
1584 (file-name (git-file-name name version))
1585 (sha256
1586 (base32
1587 "0f6cwx5xyqzs40msq271sqhwl8736rwbm7kd1ldkcvxngzr4vlx9"))
1588 (snippet
1589 '(for-each delete-file
1590 '("inst/www/shared/bootstrap/js/bootstrap.min.js"
1591 "inst/www/shared/bootstrap/accessibility/js/bootstrap-accessibility.min.js" ; TODO
1592 "inst/www/shared/datatables/js/jquery.dataTables.min.js"
1593 "inst/www/shared/datepicker/js/bootstrap-datepicker.min.js"
1594 "inst/www/shared/highlight/highlight.pack.js"
1595 "inst/www/shared/ionrangeslider/js/ion.rangeSlider.min.js"
1596 "inst/www/shared/jquery.min.js"
1597 "inst/www/shared/jqueryui/jquery-ui.min.js"
1598 "inst/www/shared/legacy/jquery.min.js"
1599 "inst/www/shared/selectize/accessibility/js/selectize-plugin-a11y.min.js"
1600 "inst/www/shared/selectize/js/selectize.min.js"
1601 "inst/www/shared/shiny.min.js"
1602 "inst/www/shared/showdown/compressed/showdown.js"
1603 "inst/www/shared/strftime/strftime-min.js")))))
1604 (build-system r-build-system)
1605 (arguments
1606 `(#:modules ((guix build r-build-system)
1607 (guix build minify-build-system)
1608 (guix build utils)
1609 (ice-9 match))
1610 #:imported-modules (,@%r-build-system-modules
1611 (guix build minify-build-system))
1612 #:phases
1613 (modify-phases (@ (guix build r-build-system) %standard-phases)
1614 (add-after 'unpack 'replace-bundled-minified-JavaScript
1615 (lambda* (#:key inputs #:allow-other-keys)
1616 (let ((replace-file (lambda (old new)
1617 (format #t "replacing ~a with ~a\n" old new)
1618 (symlink new old))))
1619 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
1620 ;; contain just data. They are not minified code, so we don't
1621 ;; replace them.
1622 (with-directory-excursion "inst/www/shared"
1623 (replace-file "strftime/strftime-min.js"
1624 (string-append (assoc-ref inputs "js-strftime")
1625 "/share/javascript/strftime.min.js"))
1626 (replace-file "highlight/highlight.pack.js"
1627 (string-append (assoc-ref inputs "js-highlight")
1628 "/share/javascript/highlight.min.js"))
1629 (replace-file "datatables/js/jquery.dataTables.min.js"
1630 (string-append (assoc-ref inputs "js-datatables")
1631 "/share/javascript/jquery.dataTables.min.js"))
1632 (replace-file "selectize/js/selectize.min.js"
1633 (string-append (assoc-ref inputs "js-selectize")
1634 "/share/javascript/selectize.min.js"))
1635 (for-each (match-lambda
1636 ((source . target)
1637 (minify source #:target target)))
1638 `(("jqueryui/jquery-ui.js" .
1639 "jqueryui/jquery-ui.min.js")
1640 ("datepicker/js/bootstrap-datepicker.js" .
1641 "datepicker/js/bootstrap-datepicker.min.js")
1642 ("ionrangeslider/js/ion.rangeSlider.js" .
1643 "ionrangeslider/js/ion.rangeSlider.min.js")
1644 ("bootstrap/js/bootstrap.js" .
1645 "bootstrap/js/bootstrap.min.js")
1646 (,(assoc-ref inputs "js-bootstrap-accessibility") .
1647 "bootstrap/accessibility/js/bootstrap-accessibility.min.js")
1648 ("shiny.js" .
1649 "shiny.min.js")
1650 ("jquery.js" .
1651 "jquery.min.js")
1652 ("legacy/jquery.js" .
1653 "legacy/jquery.min.js")
1654 ("selectize/accessibility/js/selectize-plugin-a11y.js" .
1655 "selectize/accessibility/js/selectize-plugin-a11y.min.js")
1656 ("showdown/src/showdown.js" .
1657 "showdown/compressed/showdown.js"))))))))))
1658 (propagated-inputs
1659 `(("r-bslib" ,r-bslib)
1660 ("r-cachem" ,r-cachem)
1661 ("r-commonmark" ,r-commonmark)
1662 ("r-crayon" ,r-crayon)
1663 ("r-digest" ,r-digest)
1664 ("r-ellipsis" ,r-ellipsis)
1665 ("r-fastmap" ,r-fastmap)
1666 ("r-glue" ,r-glue)
1667 ("r-htmltools" ,r-htmltools)
1668 ("r-httpuv" ,r-httpuv)
1669 ("r-jsonlite" ,r-jsonlite)
1670 ("r-later" ,r-later)
1671 ("r-lifecycle" ,r-lifecycle)
1672 ("r-mime" ,r-mime)
1673 ("r-promises" ,r-promises)
1674 ("r-r6" ,r-r6)
1675 ("r-rlang" ,r-rlang)
1676 ("r-sourcetools" ,r-sourcetools)
1677 ("r-withr" ,r-withr)
1678 ("r-xtable" ,r-xtable)))
1679 (inputs
1680 `(("js-datatables" ,js-datatables)
1681 ("js-selectize" ,js-selectize)
1682 ("js-strftime" ,js-strftime)
1683 ("js-highlight" ,js-highlight)))
1684 (native-inputs
1685 `(("uglify-js" ,uglify-js)
1686 ("gfortran" ,gfortran)
1687 ("js-bootstrap-accessibility"
1688 ,(origin
1689 (method url-fetch)
1690 (uri "https://raw.githubusercontent.com/paypal/bootstrap-accessibility-plugin/\
1691 v1.0.7/_site/plugins/js/bootstrap-accessibility.js")
1692 (sha256
1693 (base32
1694 "1489wyzwrpf86y7vhc13n4v3mszmsfybhd3f75jkpnbvyp5sncm8"))))))
1695 (home-page "https://shiny.rstudio.com")
1696 (synopsis "Easy interactive web applications with R")
1697 (description
1698 "Makes it incredibly easy to build interactive web applications
1699 with R. Automatic \"reactive\" binding between inputs and outputs and
1700 extensive prebuilt widgets make it possible to build beautiful,
1701 responsive, and powerful applications with minimal effort.")
1702 (license license:artistic2.0)))
1703
1704 ;; This package includes minified JavaScript files. When upgrading please
1705 ;; check that there are no new minified JavaScript files.
1706 (define-public r-shinytree
1707 (package
1708 (name "r-shinytree")
1709 (version "0.2.7")
1710 (source
1711 (origin
1712 (method url-fetch)
1713 (uri (cran-uri "shinyTree" version))
1714 (sha256
1715 (base32
1716 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
1717 (modules '((guix build utils)))
1718 (snippet
1719 '(begin
1720 ;; Delete minified JavaScript
1721 (for-each delete-file
1722 '("inst/www/jsTree-3.3.7/libs/require.js"
1723 "inst/www/jsTree-3.3.7/libs/jquery.js"
1724 "inst/www/jsTree-3.3.7/jstree.min.js"))
1725 #t))))
1726 (properties `((upstream-name . "shinyTree")))
1727 (build-system r-build-system)
1728 (arguments
1729 `(#:modules ((guix build utils)
1730 (guix build r-build-system)
1731 (srfi srfi-1)
1732 (ice-9 popen))
1733 #:phases
1734 (modify-phases %standard-phases
1735 (add-after 'unpack 'replace-minified-javascript
1736 (lambda* (#:key inputs #:allow-other-keys)
1737 (with-directory-excursion "inst/www/jsTree-3.3.7/"
1738 (symlink (string-append (assoc-ref inputs "js-requirejs")
1739 "/share/javascript/require.min.js")
1740 "libs/require.js")
1741 (call-with-values
1742 (lambda ()
1743 (unzip2
1744 `((,(assoc-ref inputs "js-jquery")
1745 "libs/jquery.js")
1746 ("jstree.js"
1747 "jstree.min.js"))))
1748 (lambda (sources targets)
1749 (for-each (lambda (source target)
1750 (format #t "Processing ~a --> ~a~%"
1751 source target)
1752 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1753 (call-with-output-file target
1754 (lambda (port)
1755 (dump-port minified port)))))
1756 sources targets))))
1757 #t)))))
1758 (propagated-inputs
1759 `(("r-htmlwidgets" ,r-htmlwidgets)
1760 ("r-jsonlite" ,r-jsonlite)
1761 ("r-promises" ,r-promises)
1762 ("r-shiny" ,r-shiny)
1763 ("r-stringr" ,r-stringr)))
1764 (inputs
1765 `(("js-requirejs" ,js-requirejs)))
1766 (native-inputs
1767 `(("uglify-js" ,uglify-js)
1768 ("js-jquery"
1769 ,(origin
1770 (method url-fetch)
1771 (uri "https://code.jquery.com/jquery-3.3.1.js")
1772 (sha256
1773 (base32
1774 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
1775 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
1776 (synopsis "jsTree bindings for Shiny")
1777 (description
1778 "This package exposes R bindings to jsTree, a JavaScript library that
1779 supports interactive trees, to enable rich, editable trees in Shiny.")
1780 (license license:expat)))
1781
1782 (define-public r-shinydashboard
1783 (package
1784 (name "r-shinydashboard")
1785 (version "0.7.1")
1786 (source (origin
1787 (method url-fetch)
1788 (uri (cran-uri "shinydashboard" version))
1789 (sha256
1790 (base32
1791 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
1792 (build-system r-build-system)
1793 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
1794 ;; Regenerate it from the included sources.
1795 (arguments
1796 `(#:modules ((guix build utils)
1797 (guix build r-build-system)
1798 (ice-9 popen))
1799 #:phases
1800 (modify-phases %standard-phases
1801 (add-after 'unpack 'generate-minified-javascript
1802 (lambda _
1803 (with-directory-excursion "inst/AdminLTE"
1804 (delete-file "app.min.js")
1805 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1806 (call-with-output-file "app.min.js"
1807 (lambda (port)
1808 (dump-port minified port))))))))))
1809 (propagated-inputs
1810 `(("r-htmltools" ,r-htmltools)
1811 ("r-promises" ,r-promises)
1812 ("r-shiny" ,r-shiny)))
1813 (native-inputs
1814 `(("uglify-js" ,uglify-js)))
1815 (home-page "https://rstudio.github.io/shinydashboard/")
1816 (synopsis "Create dashboards with shiny")
1817 (description "This package provides an extension to the Shiny web
1818 application framework for R, making it easy to create attractive dashboards.")
1819 ;; This package includes software that was released under the Expat
1820 ;; license, but the whole package is released under GPL version 2 or
1821 ;; later.
1822 (license license:gpl2+)))
1823
1824 (define-public r-shinyfiles
1825 (package
1826 (name "r-shinyfiles")
1827 (version "0.9.0")
1828 (source
1829 (origin
1830 (method url-fetch)
1831 (uri (cran-uri "shinyFiles" version))
1832 (sha256
1833 (base32 "0rsijlx16vd74r7bd8s9zipy71kgpw19v9s85kxj5bmwc6njmbai"))))
1834 (properties `((upstream-name . "shinyFiles")))
1835 (build-system r-build-system)
1836 (propagated-inputs
1837 `(("r-fs" ,r-fs)
1838 ("r-htmltools" ,r-htmltools)
1839 ("r-jsonlite" ,r-jsonlite)
1840 ("r-shiny" ,r-shiny)
1841 ("r-tibble" ,r-tibble)))
1842 (home-page "https://github.com/thomasp85/shinyFiles")
1843 (synopsis "Server-side file system viewer for Shiny")
1844 (description
1845 "This package provides functionality for client-side navigation of the
1846 server side file system in shiny apps. In case the app is running locally
1847 this gives the user direct access to the file system without the need to
1848 \"download\" files to a temporary location. Both file and folder selection as
1849 well as file saving is available.")
1850 (license license:gpl2+)))
1851
1852 (define-public r-shinythemes
1853 (package
1854 (name "r-shinythemes")
1855 (version "1.2.0")
1856 (source
1857 (origin
1858 (method url-fetch)
1859 (uri (cran-uri "shinythemes" version))
1860 (sha256
1861 (base32
1862 "0qr9bfxw8afxns44i2j4msignf6g5qb2nzpay2lpv343rrlqbmip"))))
1863 (properties `((upstream-name . "shinythemes")))
1864 (build-system r-build-system)
1865 (propagated-inputs `(("r-shiny" ,r-shiny)))
1866 (home-page "https://rstudio.github.io/shinythemes/")
1867 (synopsis "Themes for Shiny")
1868 (description
1869 "This package provides themes for use with Shiny. It includes several
1870 Bootstrap themes, which are packaged for use with Shiny applications.")
1871 ;; The package is released under version 3 of the GPL, but it includes
1872 ;; source files that are covered by the Expat license. It also includes
1873 ;; fonts under SIL or the ASL.
1874 (license (list license:gpl3 license:expat
1875 license:silofl1.1 license:asl2.0))))
1876
1877 ;; The package sources include minified variants of d3.js and non-minified
1878 ;; source code of d3-jetpack.
1879 (define-public r-d3r
1880 (package
1881 (name "r-d3r")
1882 (version "0.9.1")
1883 (source
1884 (origin
1885 (method url-fetch)
1886 (uri (cran-uri "d3r" version))
1887 (sha256
1888 (base32
1889 "0kc82vvyfxhxvqfalngn36prn3sxdiinsx04rn99ha6zdc27zp5k"))))
1890 (build-system r-build-system)
1891 (arguments
1892 `(#:modules ((guix build utils)
1893 (guix build r-build-system)
1894 (srfi srfi-1))
1895 #:phases
1896 (modify-phases %standard-phases
1897 (add-after 'unpack 'process-javascript
1898 (lambda* (#:key inputs #:allow-other-keys)
1899 (with-directory-excursion "inst/www/d3/"
1900 (call-with-values
1901 (lambda ()
1902 (unzip2
1903 `((,(assoc-ref inputs "d3.v3.js")
1904 "v3/dist/d3.min.js")
1905 (,(assoc-ref inputs "d3.v4.js")
1906 "v4/dist/d3.min.js")
1907 (,(assoc-ref inputs "d3.v5.js")
1908 "v5/dist/d3.min.js")
1909 (,(assoc-ref inputs "d3.v6.js")
1910 "v6/dist/d3.min.js"))))
1911 (lambda (sources targets)
1912 (for-each (lambda (source target)
1913 (format #t "Processing ~a --> ~a~%"
1914 source target)
1915 (delete-file target)
1916 (invoke "esbuild" source "--minify"
1917 (string-append "--outfile=" target)))
1918 sources targets))))
1919 #t)))))
1920 (propagated-inputs
1921 `(("r-dplyr" ,r-dplyr)
1922 ("r-htmltools" ,r-htmltools)
1923 ("r-rlang" ,r-rlang)
1924 ("r-tidyr" ,r-tidyr)))
1925 (native-inputs
1926 `(("esbuild" ,esbuild)
1927 ("d3.v3.js"
1928 ,(origin
1929 (method url-fetch)
1930 (uri "https://d3js.org/d3.v3.js")
1931 (sha256
1932 (base32
1933 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1934 ("d3.v4.js"
1935 ,(origin
1936 (method url-fetch)
1937 (uri "https://d3js.org/d3.v4.js")
1938 (sha256
1939 (base32
1940 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1941 ("d3.v5.js"
1942 ,(origin
1943 (method url-fetch)
1944 (uri "https://d3js.org/d3.v5.js")
1945 (sha256
1946 (base32
1947 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))
1948 ("d3.v6.js"
1949 ,(origin
1950 (method url-fetch)
1951 (uri "https://d3js.org/d3.v6.js")
1952 (sha256
1953 (base32
1954 "1x6432ca7p1pfxhz3airzw943fincn9izzxkclc1wmphcvv2n2p9"))))))
1955 (home-page "https://github.com/timelyportfolio/d3r")
1956 (synopsis "d3.js utilities for R")
1957 (description
1958 "This package provides a suite of functions to help ease the use of the
1959 d3.js visualization library in R. These helpers include
1960 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1961 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1962 R objects into the JSON format that the d3.js library expects.")
1963 (license license:bsd-3)))
1964
1965 ;; We use the latest commit here because the last release was in 2016 while
1966 ;; the latest commit was in 2018.
1967 (define-public r-sankeyd3
1968 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1969 (revision "1"))
1970 (package
1971 (name "r-sankeyd3")
1972 (version (git-version "0.3.2" revision commit))
1973 (source
1974 (origin
1975 (method git-fetch)
1976 (uri (git-reference
1977 (url "https://github.com/fbreitwieser/sankeyD3")
1978 (commit commit)))
1979 (file-name (git-file-name name version))
1980 (sha256
1981 (base32
1982 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1983 (build-system r-build-system)
1984 (propagated-inputs
1985 `(("r-d3r" ,r-d3r)
1986 ("r-htmlwidgets" ,r-htmlwidgets)
1987 ("r-shiny" ,r-shiny)
1988 ("r-magrittr" ,r-magrittr)))
1989 (home-page "https://github.com/fbreitwieser/sankeyD3")
1990 (synopsis "Sankey network graphs from R")
1991 (description
1992 "This package provides an R library to generate Sankey network graphs
1993 in R and Shiny via the D3 visualization library.")
1994 ;; The R code is licensed under GPLv3+. It includes the non-minified
1995 ;; JavaScript source code of d3-sankey, which is released under the
1996 ;; 3-clause BSD license.
1997 (license (list license:gpl3+ license:bsd-3)))))
1998
1999 (define-public r-wesanderson
2000 (package
2001 (name "r-wesanderson")
2002 (version "0.3.6")
2003 (source
2004 (origin
2005 (method url-fetch)
2006 (uri (cran-uri "wesanderson" version))
2007 (sha256
2008 (base32
2009 "09mr6p2jmqdjq27cz974w5hyxgn929zp9z3inhxqmmh1582fmdi2"))))
2010 (properties `((upstream-name . "wesanderson")))
2011 (build-system r-build-system)
2012 (home-page "https://github.com/karthik/wesanderson")
2013 (synopsis "Wes Anderson color palette generator")
2014 (description
2015 "This package provides color palettes that have been generated mostly
2016 from Wes Anderson movies.")
2017 (license license:expat)))
2018
2019 (define-public r-gg-gap
2020 (package
2021 (name "r-gg-gap")
2022 (version "1.3")
2023 (source
2024 (origin
2025 (method url-fetch)
2026 (uri (cran-uri "gg.gap" version))
2027 (sha256
2028 (base32
2029 "0m66050ryn31xmsmmikjsssllasvjdmp9yjbwfdwfpwdv106zn9h"))))
2030 (properties `((upstream-name . "gg.gap")))
2031 (build-system r-build-system)
2032 (propagated-inputs
2033 `(("r-cowplot" ,r-cowplot)
2034 ("r-ggplot2" ,r-ggplot2)))
2035 (home-page "https://github.com/ChrisLou-bioinfo/gg.gap")
2036 (synopsis "Define segments on the y-axis for ggplot2")
2037 (description
2038 "The @code{gg.gap} function enables you to define segments for the y-axis
2039 in a ggplot2 plot.")
2040 (license license:gpl3)))
2041
2042 (define-public r-tablerdash
2043 (package
2044 (name "r-tablerdash")
2045 (version "0.1.0")
2046 (source
2047 (origin
2048 (method url-fetch)
2049 (uri (cran-uri "tablerDash" version))
2050 (sha256
2051 (base32
2052 "1mnp6lxa7d669r325aynq1n3f35r9sy4v1fvdh4cymbf33s8mkmm"))
2053 (snippet
2054 '(begin
2055 ;; Delete minified JavaScript
2056 (for-each delete-file
2057 '("inst/tablerDash-0.1.0/require.min.js"
2058 "inst/bootstrap-4.0.0/bootstrap.bundle.min.js"))
2059 #true))))
2060 (properties `((upstream-name . "tablerDash")))
2061 (build-system r-build-system)
2062 (arguments
2063 `(#:modules ((guix build utils)
2064 (guix build r-build-system)
2065 (srfi srfi-1))
2066 #:phases
2067 (modify-phases %standard-phases
2068 (add-after 'unpack 'process-javascript
2069 (lambda* (#:key inputs #:allow-other-keys)
2070 (with-directory-excursion "inst"
2071 (call-with-values
2072 (lambda ()
2073 (unzip2
2074 `((,(assoc-ref inputs "js-requirejs")
2075 "tablerDash-0.1.0/require.min.js")
2076 (,(assoc-ref inputs "js-bootstrap")
2077 "bootstrap-4.0.0/bootstrap.bundle.min.js"))))
2078 (lambda (sources targets)
2079 (for-each (lambda (source target)
2080 (format #t "Processing ~a --> ~a~%"
2081 source target)
2082 (invoke "esbuild" source "--minify"
2083 (string-append "--outfile=" target)))
2084 sources targets))))
2085 #t)))))
2086 (propagated-inputs
2087 `(("r-htmltools" ,r-htmltools)
2088 ("r-knitr" ,r-knitr)
2089 ("r-shiny" ,r-shiny)))
2090 (native-inputs
2091 `(("esbuild" ,esbuild)
2092 ("js-requirejs"
2093 ,(origin
2094 (method url-fetch)
2095 (uri "https://raw.githubusercontent.com/requirejs/requirejs/2.3.5/require.js")
2096 (sha256
2097 (base32
2098 "06w32mwqii9cx409ivda88z58qbkcdb4p6hf6jawchsgagaziyds"))))
2099 ("js-bootstrap"
2100 ,(origin
2101 (method url-fetch)
2102 (uri "https://raw.githubusercontent.com/twbs/bootstrap/\
2103 v4.0.0/dist/js/bootstrap.bundle.js")
2104 (sha256
2105 (base32
2106 "0cvfqffn45vfbj3fk6wmrhkyndhk4id89vgydssbbzxjkfwprfrj"))))))
2107 (home-page "https://rinterface.github.io/tablerDash/")
2108 (synopsis "Tabler API for Shiny")
2109 (description
2110 "This package provides an R interface to the
2111 @url{https://tabler.io,Tabler} HTML template. tablerDash is a light Bootstrap
2112 4 dashboard template. There are different layouts available such as a one
2113 page dashboard or a multi-page template, where the navigation menu is
2114 contained in the navigation bar.")
2115 (license license:gpl2+)))
2116
2117 (define-public r-spelling
2118 (package
2119 (name "r-spelling")
2120 (version "2.2")
2121 (source
2122 (origin
2123 (method url-fetch)
2124 (uri (cran-uri "spelling" version))
2125 (sha256
2126 (base32
2127 "179nj9w1v27qq9q5240ddvggp0795998sxyqjvbqjvq9dmach3bl"))))
2128 (properties `((upstream-name . "spelling")))
2129 (build-system r-build-system)
2130 (propagated-inputs
2131 `(("r-commonmark" ,r-commonmark)
2132 ("r-hunspell" ,r-hunspell)
2133 ("r-knitr" ,r-knitr)
2134 ("r-xml2" ,r-xml2)))
2135 (home-page "https://docs.ropensci.org/spelling/")
2136 (synopsis "Tools for spell checking in R")
2137 (description
2138 "This is an R package for spell checking common document formats
2139 including LaTeX, markdown, manual pages, and DESCRIPTION files. It includes
2140 utilities to automate checking of documentation and vignettes as a unit test
2141 during @code{R CMD check}. Both British and American English are supported
2142 out of the box and other languages can be added. In addition, packages may
2143 define a wordlist to allow custom terminology without having to abuse
2144 punctuation.")
2145 (license license:expat)))
2146
2147 (define-public r-crosstalk
2148 (package
2149 (name "r-crosstalk")
2150 (version "1.1.1")
2151 (source
2152 (origin
2153 (method url-fetch)
2154 (uri (cran-uri "crosstalk" version))
2155 (sha256
2156 (base32
2157 "1n6c6s7a6yxiwvva71x6bzcrim8xprl5s01fqiy61yq0y3vk8cpd"))))
2158 (build-system r-build-system)
2159 (propagated-inputs
2160 `(("r-htmltools" ,r-htmltools)
2161 ("r-jsonlite" ,r-jsonlite)
2162 ("r-lazyeval" ,r-lazyeval)
2163 ("r-r6" ,r-r6)))
2164 (home-page "https://rstudio.github.io/crosstalk/")
2165 (synopsis "Inter-widget interactivity for HTML widgets")
2166 (description
2167 "This package provides building blocks for allowing HTML widgets to
2168 communicate with each other, with Shiny or without (i.e. static @code{.html}
2169 files). It currently supports linked brushing and filtering.")
2170 (license license:expat)))
2171
2172 (define-public r-rook
2173 (package
2174 (name "r-rook")
2175 (version "1.1-1")
2176 (source
2177 (origin
2178 (method url-fetch)
2179 (uri (cran-uri "Rook" version))
2180 (sha256
2181 (base32
2182 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
2183 (properties `((upstream-name . "Rook")))
2184 (build-system r-build-system)
2185 (propagated-inputs `(("r-brew" ,r-brew)))
2186 (home-page "https://cran.r-project.org/web/packages/Rook")
2187 (synopsis "Web server interface for R")
2188 (description
2189 "This package contains the Rook specification and convenience software
2190 for building and running Rook applications. A Rook application is an R
2191 reference class object that implements a @code{call} method or an R closure
2192 that takes exactly one argument, an environment, and returns a list with three
2193 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
2194 (license license:gpl2)))
2195
2196 (define-public r-miniui
2197 (package
2198 (name "r-miniui")
2199 (version "0.1.1.1")
2200 (source
2201 (origin
2202 (method url-fetch)
2203 (uri (cran-uri "miniUI" version))
2204 (sha256
2205 (base32
2206 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
2207 (properties `((upstream-name . "miniUI")))
2208 (build-system r-build-system)
2209 (propagated-inputs
2210 `(("r-htmltools" ,r-htmltools)
2211 ("r-shiny" ,r-shiny)))
2212 (home-page "https://cran.r-project.org/web/packages/miniUI/")
2213 (synopsis "Shiny UI widgets for small screens")
2214 (description
2215 "This package provides UI widget and layout functions for writing Shiny apps that
2216 work well on small screens.")
2217 (license license:gpl3)))
2218
2219 (define-public r-feather
2220 (package
2221 (name "r-feather")
2222 (version "0.3.5")
2223 (source
2224 (origin
2225 (method url-fetch)
2226 (uri (cran-uri "feather" version))
2227 (sha256
2228 (base32
2229 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
2230 (build-system r-build-system)
2231 (propagated-inputs
2232 `(("r-hms" ,r-hms)
2233 ("r-rcpp" ,r-rcpp)
2234 ("r-tibble" ,r-tibble)))
2235 (home-page "https://github.com/wesm/feather")
2236 (synopsis "R Bindings to the Feather API")
2237 (description "Read and write feather files, a lightweight binary columnar
2238 data store designed for maximum speed.")
2239 (license license:asl2.0)))
2240
2241 (define-public r-maps
2242 (package
2243 (name "r-maps")
2244 (version "3.3.0")
2245 (source
2246 (origin
2247 (method url-fetch)
2248 (uri (cran-uri "maps" version))
2249 (sha256
2250 (base32
2251 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
2252 (build-system r-build-system)
2253 (home-page "https://cran.r-project.org/web/packages/maps")
2254 (synopsis "Draw geographical maps")
2255 (description "This package provides an R module for display of maps.
2256 Projection code and larger maps are in separate packages (@code{mapproj} and
2257 @code{mapdata}).")
2258 (license license:gpl2)))
2259
2260 (define-public r-mapproj
2261 (package
2262 (name "r-mapproj")
2263 (version "1.2.7")
2264 (source
2265 (origin
2266 (method url-fetch)
2267 (uri (cran-uri "mapproj" version))
2268 (sha256
2269 (base32
2270 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
2271 (build-system r-build-system)
2272 (propagated-inputs `(("r-maps" ,r-maps)))
2273 (home-page "https://cran.r-project.org/web/packages/mapproj")
2274 (synopsis "Map projection in R")
2275 (description "This package converts latitude/longitude into projected
2276 coordinates.")
2277 (license (list license:gpl2 ; The R interface
2278 (license:non-copyleft ; The C code
2279 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
2280 "Lucent Public License Version 1.02")))))
2281
2282 (define-public r-rgooglemaps
2283 (package
2284 (name "r-rgooglemaps")
2285 (version "1.4.5.3")
2286 (source
2287 (origin
2288 (method url-fetch)
2289 (uri (cran-uri "RgoogleMaps" version))
2290 (sha256
2291 (base32
2292 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
2293 (properties `((upstream-name . "RgoogleMaps")))
2294 (build-system r-build-system)
2295 (propagated-inputs
2296 `(("r-png" ,r-png)
2297 ("r-sp" ,r-sp)))
2298 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
2299 (synopsis "Use Google Maps in R")
2300 (description "This package serves two purposes:
2301 @enumerate
2302 @item Provide a comfortable R interface to query the Google server for static
2303 maps, and
2304 @item Use the map as a background image to overlay plots within R. This
2305 requires proper coordinate scaling.
2306 @end enumerate\n")
2307 (license license:gpl2+)))
2308
2309 (define-public r-geosphere
2310 (package
2311 (name "r-geosphere")
2312 (version "1.5-10")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (cran-uri "geosphere" version))
2317 (sha256
2318 (base32
2319 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
2320 (build-system r-build-system)
2321 (propagated-inputs `(("r-sp" ,r-sp)))
2322 (home-page "https://cran.r-project.org/web/packages/geosphere")
2323 (synopsis "Spherical trigonometry")
2324 (description "This package computes spherical trigonometry for geographic
2325 applications. That is, compute distances and related measures for angular
2326 (longitude/latitude) locations.")
2327 (license license:gpl3+)))
2328
2329 (define-public r-jpeg
2330 (package
2331 (name "r-jpeg")
2332 (version "0.1-8.1")
2333 (source
2334 (origin
2335 (method url-fetch)
2336 (uri (cran-uri "jpeg" version))
2337 (sha256
2338 (base32
2339 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
2340 (build-system r-build-system)
2341 (inputs `(("libjpeg" ,libjpeg-turbo)))
2342 (home-page "https://www.rforge.net/jpeg/")
2343 (synopsis "Read and write JPEG images with R")
2344 (description "This package provides a way to read, write and display
2345 bitmap images stored in the JPEG format with R. It can read and write both
2346 files and in-memory raw vectors.")
2347 (license license:gpl2+)))
2348
2349 (define-public r-ggmap
2350 (package
2351 (name "r-ggmap")
2352 (version "3.0.0")
2353 (source
2354 (origin
2355 (method url-fetch)
2356 (uri (cran-uri "ggmap" version))
2357 (sha256
2358 (base32
2359 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
2360 (build-system r-build-system)
2361 (propagated-inputs
2362 `(("r-bitops" ,r-bitops)
2363 ("r-digest" ,r-digest)
2364 ("r-dplyr" ,r-dplyr)
2365 ("r-ggplot2" ,r-ggplot2)
2366 ("r-glue" ,r-glue)
2367 ("r-httr" ,r-httr)
2368 ("r-jpeg" ,r-jpeg)
2369 ("r-magrittr" ,r-magrittr)
2370 ("r-plyr" ,r-plyr)
2371 ("r-png" ,r-png)
2372 ("r-purrr" ,r-purrr)
2373 ("r-rgooglemaps" ,r-rgooglemaps)
2374 ("r-rjson" ,r-rjson)
2375 ("r-scales" ,r-scales)
2376 ("r-stringr" ,r-stringr)
2377 ("r-tibble" ,r-tibble)
2378 ("r-tidyr" ,r-tidyr)))
2379 (home-page "https://github.com/dkahle/ggmap")
2380 (synopsis "Spatial visualization with ggplot2")
2381 (description "This package provides a collection of functions to visualize
2382 spatial data and models on top of static maps from various online sources (e.g
2383 Google Maps and Stamen Maps). It includes tools common to those tasks,
2384 including functions for geolocation and routing.")
2385 (license license:gpl2)))
2386
2387 (define-public r-haven
2388 (package
2389 (name "r-haven")
2390 (version "2.3.1")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (cran-uri "haven" version))
2395 (sha256
2396 (base32
2397 "03cypgqhdkrfbfpl1yx2wb7flczrbak1w654wkicmd5ajwr9zvkf"))
2398 (modules '((guix build utils)))
2399 (snippet
2400 '(begin
2401 ;; unvendor readstat
2402 (delete-file-recursively "src/readstat")
2403 #t))))
2404 (build-system r-build-system)
2405 (arguments
2406 '(#:phases
2407 (modify-phases %standard-phases
2408 (add-after 'unpack 'unbundle-readstat
2409 (lambda _
2410 ;; Not required, since we’re not building readstat.
2411 (substitute* "src/Makevars"
2412 (("-lz") "-lreadstat"))
2413 #t)))))
2414 (inputs
2415 `(("readstat" ,readstat)))
2416 (native-inputs
2417 `(("r-knitr" ,r-knitr)))
2418 (propagated-inputs
2419 `(("r-forcats" ,r-forcats)
2420 ("r-hms" ,r-hms)
2421 ("r-rcpp" ,r-rcpp)
2422 ("r-rlang" ,r-rlang)
2423 ("r-readr" ,r-readr)
2424 ("r-tibble" ,r-tibble)
2425 ("r-tidyselect" ,r-tidyselect)
2426 ("r-vctrs" ,r-vctrs)))
2427 (home-page "https://haven.tidyverse.org")
2428 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
2429 (description
2430 "This package lets you mport foreign statistical formats into R via the
2431 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
2432 (license license:expat)))
2433
2434 (define-public r-amap
2435 (package
2436 (name "r-amap")
2437 (version "0.8-18")
2438 (source (origin
2439 (method url-fetch)
2440 (uri (cran-uri "amap" version))
2441 (sha256
2442 (base32
2443 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
2444 (build-system r-build-system)
2445 (native-inputs
2446 `(("gfortran" ,gfortran)))
2447 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
2448 (synopsis "Another multidimensional analysis package")
2449 (description "This package provides tools for clustering and principal
2450 component analysis (with robust methods, and parallelized functions).")
2451 (license license:gpl2+)))
2452
2453 (define-public r-ape
2454 (package
2455 (name "r-ape")
2456 (version "5.4-1")
2457 (source
2458 (origin
2459 (method url-fetch)
2460 (uri (cran-uri "ape" version))
2461 (sha256
2462 (base32
2463 "1r7fwyz30ippcl1ibqiv1xryf44x5crcks5kx19h146ffj76qcgh"))))
2464 (build-system r-build-system)
2465 (propagated-inputs
2466 `(("r-lattice" ,r-lattice)
2467 ("r-nlme" ,r-nlme)
2468 ("r-rcpp" ,r-rcpp)))
2469 (home-page "http://ape-package.ird.fr/")
2470 (synopsis "Analyses of phylogenetics and evolution")
2471 (description
2472 "This package provides functions for reading, writing, plotting, and
2473 manipulating phylogenetic trees, analyses of comparative data in a
2474 phylogenetic framework, ancestral character analyses, analyses of
2475 diversification and macroevolution, computing distances from DNA sequences,
2476 and several other tools.")
2477 (license license:gpl2+)))
2478
2479 (define-public r-abbyyr
2480 (package
2481 (name "r-abbyyr")
2482 (version "0.5.5")
2483 (source
2484 (origin
2485 (method url-fetch)
2486 (uri (cran-uri "abbyyR" version))
2487 (sha256
2488 (base32
2489 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
2490 (properties `((upstream-name . "abbyyR")))
2491 (build-system r-build-system)
2492 (propagated-inputs
2493 `(("r-curl" ,r-curl)
2494 ("r-httr" ,r-httr)
2495 ("r-plyr" ,r-plyr)
2496 ("r-progress" ,r-progress)
2497 ("r-readr" ,r-readr)
2498 ("r-xml" ,r-xml)))
2499 (home-page "https://github.com/soodoku/abbyyR")
2500 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
2501 (description
2502 "This package provides tools to get text from images of text using Abbyy
2503 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
2504 OCR images, barcodes, forms, documents with machine readable zones, e.g.
2505 passports and get the results in a variety of formats including plain text and
2506 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
2507 (license license:expat)))
2508
2509 (define-public r-colorspace
2510 (package
2511 (name "r-colorspace")
2512 (version "2.0-0")
2513 (source
2514 (origin
2515 (method url-fetch)
2516 (uri (cran-uri "colorspace" version))
2517 (sha256
2518 (base32 "13h1hara0s6xn16bgkrbd0flszah1yiylwfwxwn2inqqk6pm6sjf"))))
2519 (build-system r-build-system)
2520 (native-inputs
2521 `(("r-knitr" ,r-knitr)))
2522 (home-page "https://cran.r-project.org/web/packages/colorspace")
2523 (synopsis "Color space manipulation")
2524 (description
2525 "This package carries out a mapping between assorted color spaces
2526 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
2527 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
2528 colors are provided.")
2529 (license license:bsd-3)))
2530
2531 (define-public r-glue
2532 (package
2533 (name "r-glue")
2534 (version "1.4.2")
2535 (source
2536 (origin
2537 (method url-fetch)
2538 (uri (cran-uri "glue" version))
2539 (sha256
2540 (base32
2541 "1bgpirdvjrf0da734clrixawvpdap4lpda4g89vais96589m8wwz"))))
2542 (build-system r-build-system)
2543 ;; knitr depends on glue, so we can't add knitr here to build the
2544 ;; vignettes.
2545 #;
2546 (native-inputs
2547 `(("r-knitr" ,r-knitr)))
2548 (home-page "https://github.com/tidyverse/glue")
2549 (synopsis "Interpreted string literals")
2550 (description
2551 "This package provides an implementation of interpreted string literals,
2552 inspired by Python's Literal String Interpolation (PEP-0498) and
2553 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
2554 (license license:expat)))
2555
2556 (define-public r-palmerpenguins
2557 (package
2558 (name "r-palmerpenguins")
2559 (version "0.1.0")
2560 (source
2561 (origin
2562 (method url-fetch)
2563 (uri (cran-uri "palmerpenguins" version))
2564 (sha256
2565 (base32
2566 "0q1k3cdkliq7kwrg1n0vs9b6cjwyfarhlgdijhp9c6riy6y5ik7x"))))
2567 (properties
2568 `((upstream-name . "palmerpenguins")))
2569 (build-system r-build-system)
2570 (home-page "https://allisonhorst.github.io/palmerpenguins/")
2571 (synopsis "Palmer Archipelago (Antarctica) penguin data")
2572 (description
2573 "This package includes size measurements, clutch observations, and blood
2574 isotope ratios for adult foraging Adélie, Chinstrap, and Gentoo penguins
2575 observed on islands in the Palmer Archipelago near Palmer Station, Antarctica.
2576 Data were collected and made available by Dr. Kristen Gorman and the Palmer
2577 Station Long Term Ecological Research (LTER) Program.")
2578 (license license:cc0)))
2579
2580 (define-public r-pastecs
2581 (package
2582 (name "r-pastecs")
2583 (version "1.3.21")
2584 (source (origin
2585 (method url-fetch)
2586 (uri (cran-uri "pastecs" version))
2587 (sha256
2588 (base32
2589 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
2590 (build-system r-build-system)
2591 (propagated-inputs
2592 `(("r-boot" ,r-boot)))
2593 (home-page "https://github.com/phgrosjean/pastecs")
2594 (synopsis "Analysis of space-time ecological series")
2595 (description
2596 "This package provides functions for regulation, decomposition and analysis
2597 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
2598 initiative to bring PASSTEC 2000 functionalities to R.")
2599 (license license:gpl2+)))
2600
2601 (define-public r-partykit
2602 (package
2603 (name "r-partykit")
2604 (version "1.2-13")
2605 (source (origin
2606 (method url-fetch)
2607 (uri (cran-uri "partykit" version))
2608 (sha256
2609 (base32
2610 "15bfhqvx2y4vclnc3sw4v7ggs70pk57b3qk9aqjfvdrx444d2gd4"))))
2611 (build-system r-build-system)
2612 (propagated-inputs
2613 `(("r-formula" ,r-formula)
2614 ("r-inum" ,r-inum)
2615 ("r-libcoin" ,r-libcoin)
2616 ("r-mvtnorm" ,r-mvtnorm)
2617 ("r-rpart" ,r-rpart)
2618 ("r-survival" ,r-survival)))
2619 (home-page "http://partykit.R-Forge.R-project.org/partykit")
2620 (synopsis "Toolkit for recursive partytioning")
2621 (description
2622 "This package provides a toolkit with infrastructure for representing,
2623 summarizing, and visualizing tree-structured regression and classification
2624 models.")
2625 (license license:gpl2+)))
2626
2627 (define-public r-plogr
2628 (package
2629 (name "r-plogr")
2630 (version "0.2.0")
2631 (source
2632 (origin
2633 (method url-fetch)
2634 (uri (cran-uri "plogr" version))
2635 (sha256
2636 (base32
2637 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
2638 (build-system r-build-system)
2639 (home-page "https://github.com/krlmlr/plogr")
2640 (synopsis "R bindings for the plog C++ logging library")
2641 (description
2642 "This package provides the header files for a stripped-down version of
2643 the plog header-only C++ logging library, and a method to log to R's standard
2644 error stream.")
2645 (license license:expat)))
2646
2647 (define-public r-pls
2648 (package
2649 (name "r-pls")
2650 (version "2.7-3")
2651 (source
2652 (origin
2653 (method url-fetch)
2654 (uri (cran-uri "pls" version))
2655 (sha256
2656 (base32 "0b3ls12w19wc4xkhnsgmb333y9lyzwq3syjc3k8zs1agnw59c7cg"))))
2657 (build-system r-build-system)
2658 (home-page "https://mevik.net/work/software/pls.html")
2659 (synopsis "Partial Least Squares and Principal Component Regression")
2660 (description
2661 "The pls package implements multivariate regression methods: Partial Least
2662 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
2663 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
2664
2665 @itemize
2666 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
2667 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
2668 @item multi-response models (or @dfn{PLS2})
2669 @item flexible cross-validation
2670 @item Jackknife variance estimates of regression coefficients
2671 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
2672 (R)MSEP, R², and correlation loadings
2673 @item formula interface, modelled after @code{lm()}, with methods for predict,
2674 print, summary, plot, update, etc.
2675 @item extraction functions for coefficients, scores, and loadings
2676 @item MSEP, RMSEP, and R² estimates
2677 @item multiplicative scatter correction (@dfn{MSC})
2678 @end itemize\n")
2679 (license license:gpl2)))
2680
2681 (define-public r-ps
2682 (package
2683 (name "r-ps")
2684 (version "1.6.0")
2685 (source
2686 (origin
2687 (method url-fetch)
2688 (uri (cran-uri "ps" version))
2689 (sha256
2690 (base32 "0cdzjqgap108whhsilxllg12m2d05pgksryhrz5bq608bvf7vbc9"))))
2691 (build-system r-build-system)
2692 (home-page "https://ps.r-lib.org")
2693 (synopsis "List, query, and manipulate system processes")
2694 (description
2695 "The ps package implements an API to list, query, and manipulate system
2696 processes. Most of its code is based on the @code{psutil} Python package.")
2697 (license license:bsd-3)))
2698
2699 (define-public r-pkgbuild
2700 (package
2701 (name "r-pkgbuild")
2702 (version "1.2.0")
2703 (source
2704 (origin
2705 (method url-fetch)
2706 (uri (cran-uri "pkgbuild" version))
2707 (sha256
2708 (base32 "0qx920h2viwjg10va81nj0xja495d8ni6vcc25ggvzki6a6k069f"))))
2709 (build-system r-build-system)
2710 (propagated-inputs
2711 `(("r-callr" ,r-callr)
2712 ("r-cli" ,r-cli)
2713 ("r-crayon" ,r-crayon)
2714 ("r-desc" ,r-desc)
2715 ("r-prettyunits" ,r-prettyunits)
2716 ("r-r6" ,r-r6)
2717 ("r-rprojroot" ,r-rprojroot)
2718 ("r-withr" ,r-withr)))
2719 (home-page "https://github.com/r-pkgs/pkgbuild")
2720 (synopsis "Find tools needed to build R packages")
2721 (description
2722 "This package provides functions used to build R packages. It locates
2723 compilers needed to build R packages on various platforms and ensures the PATH
2724 is configured appropriately so R can use them.")
2725 (license license:gpl3)))
2726
2727 (define-public r-pkgload
2728 (package
2729 (name "r-pkgload")
2730 (version "1.2.0")
2731 (source
2732 (origin
2733 (method url-fetch)
2734 (uri (cran-uri "pkgload" version))
2735 (sha256
2736 (base32
2737 "185xr79z2vncq62bni7x4qv3p7dxvnfsbdnnglma0a196hz6pj7v"))))
2738 (build-system r-build-system)
2739 (propagated-inputs
2740 `(("r-cli" ,r-cli)
2741 ("r-crayon" ,r-crayon)
2742 ("r-desc" ,r-desc)
2743 ("r-pkgbuild" ,r-pkgbuild)
2744 ("r-rlang" ,r-rlang)
2745 ("r-rprojroot" ,r-rprojroot)
2746 ("r-rstudioapi" ,r-rstudioapi)
2747 ("r-withr" ,r-withr)))
2748 (home-page "https://github.com/r-lib/pkgload")
2749 (synopsis "Simulate package installation and attach")
2750 (description
2751 "This package simulates the process of installing a package and then
2752 attaching it. This is a key part of the @code{devtools} package as it allows
2753 you to rapidly iterate while developing a package.")
2754 (license license:gpl3)))
2755
2756 (define-public r-rcpp
2757 (package
2758 (name "r-rcpp")
2759 (version "1.0.6")
2760 (source
2761 (origin
2762 (method url-fetch)
2763 (uri (cran-uri "Rcpp" version))
2764 (sha256
2765 (base32 "04ph6lm36cmvz01ng53pvvf3jxvzsn9smyflkfc7l3q0pib4gwn9"))))
2766 (build-system r-build-system)
2767 (home-page "http://www.rcpp.org")
2768 (synopsis "Seamless R and C++ integration")
2769 (description
2770 "The Rcpp package provides R functions as well as C++ classes which offer
2771 a seamless integration of R and C++. Many R data types and objects can be
2772 mapped back and forth to C++ equivalents which facilitates both writing of new
2773 code as well as easier integration of third-party libraries. Documentation
2774 about Rcpp is provided by several vignettes included in this package, via the
2775 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
2776 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
2777 @code{citation(\"Rcpp\")} for details on these last two.")
2778 (license license:gpl2+)))
2779
2780 (define-public r-rcppthread
2781 (package
2782 (name "r-rcppthread")
2783 (version "1.0.0")
2784 (source
2785 (origin
2786 (method url-fetch)
2787 (uri (cran-uri "RcppThread" version))
2788 (sha256
2789 (base32
2790 "1xfcxrny779kgknlvnc4j02ifprnakndnkhx8bhy50d39vp4hjjl"))))
2791 (properties `((upstream-name . "RcppThread")))
2792 (build-system r-build-system)
2793 (home-page
2794 "https://github.com/tnagler/RcppThread")
2795 (synopsis "R threading in C++")
2796 (description
2797 "This package provides a C++11-style thread class and thread pool that can
2798 safely be interrupted from R.")
2799 (license license:expat)))
2800
2801 (define-public r-bindr
2802 (package
2803 (name "r-bindr")
2804 (version "0.1.1")
2805 (source
2806 (origin
2807 (method url-fetch)
2808 (uri (cran-uri "bindr" version))
2809 (sha256
2810 (base32
2811 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
2812 (build-system r-build-system)
2813 (home-page "https://github.com/krlmlr/bindr")
2814 (synopsis "Parametrized active bindings")
2815 (description
2816 "This package provides a simple interface for creating active bindings
2817 where the bound function accepts additional arguments.")
2818 (license license:expat)))
2819
2820 (define-public r-bindrcpp
2821 (package
2822 (name "r-bindrcpp")
2823 (version "0.2.2")
2824 (source
2825 (origin
2826 (method url-fetch)
2827 (uri (cran-uri "bindrcpp" version))
2828 (sha256
2829 (base32
2830 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
2831 (build-system r-build-system)
2832 (propagated-inputs
2833 `(("r-bindr" ,r-bindr)
2834 ("r-plogr" ,r-plogr)
2835 ("r-rcpp" ,r-rcpp)))
2836 (home-page "https://github.com/krlmlr/bindrcpp")
2837 (synopsis "Rcpp interface to active bindings")
2838 (description
2839 "This package provides an easy way to fill an environment with active
2840 bindings that call a C++ function.")
2841 (license license:expat)))
2842
2843 (define-public r-auc
2844 (package
2845 (name "r-auc")
2846 (version "0.3.0")
2847 (source
2848 (origin
2849 (method url-fetch)
2850 (uri (cran-uri "AUC" version))
2851 (sha256
2852 (base32
2853 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
2854 (properties `((upstream-name . "AUC")))
2855 (build-system r-build-system)
2856 (home-page "https://cran.r-project.org/web/packages/AUC")
2857 (synopsis "Compute the area under the curve of selected measures")
2858 (description
2859 "This package includes functions to compute the area under the curve of
2860 selected measures: the area under the sensitivity curve (AUSEC), the area
2861 under the specificity curve (AUSPC), the area under the accuracy
2862 curve (AUACC), and the area under the receiver operating characteristic
2863 curve (AUROC). The curves can also be visualized. Support for partial areas
2864 is provided.")
2865 (license license:gpl2+)))
2866
2867 (define-public r-calibrate
2868 (package
2869 (name "r-calibrate")
2870 (version "1.7.7")
2871 (source
2872 (origin
2873 (method url-fetch)
2874 (uri (cran-uri "calibrate" version))
2875 (sha256
2876 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
2877 (build-system r-build-system)
2878 (propagated-inputs
2879 `(("r-mass" ,r-mass)))
2880 (home-page "https://cran.r-project.org/web/packages/calibrate")
2881 (synopsis "Calibration of scatterplot and biplot axes")
2882 (description
2883 "This is a package for drawing calibrated scales with tick marks
2884 on (non-orthogonal) variable vectors in scatterplots and biplots.")
2885 (license license:gpl2)))
2886
2887 (define-public r-shape
2888 (package
2889 (name "r-shape")
2890 (version "1.4.5")
2891 (source
2892 (origin
2893 (method url-fetch)
2894 (uri (cran-uri "shape" version))
2895 (sha256
2896 (base32
2897 "17qqhjyfhxv9la07ykaslb50c8g4d0cgfypx4y91h9i2yjw7jjh9"))))
2898 (build-system r-build-system)
2899 (home-page "https://cran.r-project.org/web/packages/shape")
2900 (synopsis "Functions for plotting graphical shapes")
2901 (description
2902 "This package provides functions for plotting graphical shapes such as
2903 ellipses, circles, cylinders, arrows, ...")
2904 (license license:gpl3+)))
2905
2906 (define-public r-globaloptions
2907 (package
2908 (name "r-globaloptions")
2909 (version "0.1.2")
2910 (source
2911 (origin
2912 (method url-fetch)
2913 (uri (cran-uri "GlobalOptions" version))
2914 (sha256
2915 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
2916 (properties `((upstream-name . "GlobalOptions")))
2917 (build-system r-build-system)
2918 (native-inputs
2919 `(("r-knitr" ,r-knitr)))
2920 (home-page "https://github.com/jokergoo/GlobalOptions")
2921 (synopsis "Generate functions to get or set global options")
2922 (description
2923 "This package provides more controls on the option values such as
2924 validation and filtering on the values, making options invisible or private.")
2925 (license license:gpl2+)))
2926
2927 (define-public r-circlize
2928 (package
2929 (name "r-circlize")
2930 (version "0.4.12")
2931 (source
2932 (origin
2933 (method url-fetch)
2934 (uri (cran-uri "circlize" version))
2935 (sha256
2936 (base32
2937 "1x2j6a80bb4fly3dm91ias964s1gb1cmzj3lyh69ikwjaam0rdmk"))))
2938 (build-system r-build-system)
2939 (propagated-inputs
2940 `(("r-colorspace" ,r-colorspace)
2941 ("r-globaloptions" ,r-globaloptions)
2942 ("r-shape" ,r-shape)))
2943 (native-inputs
2944 `(("r-knitr" ,r-knitr)))
2945 (home-page "https://github.com/jokergoo/circlize")
2946 (synopsis "Circular visualization")
2947 (description
2948 "Circular layout is an efficient way to visualise huge amounts of
2949 information. This package provides an implementation of circular layout
2950 generation in R as well as an enhancement of available software. Its
2951 flexibility is based on the usage of low-level graphics functions such that
2952 self-defined high-level graphics can be easily implemented by users for
2953 specific purposes. Together with the seamless connection between the powerful
2954 computational and visual environment in R, it gives users more convenience and
2955 freedom to design figures for better understanding complex patterns behind
2956 multi-dimensional data.")
2957 (license license:gpl2+)))
2958
2959 (define-public r-powerlaw
2960 (package
2961 (name "r-powerlaw")
2962 (version "0.70.6")
2963 (source
2964 (origin
2965 (method url-fetch)
2966 (uri (cran-uri "poweRlaw" version))
2967 (sha256
2968 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
2969 (properties `((upstream-name . "poweRlaw")))
2970 (build-system r-build-system)
2971 (propagated-inputs
2972 `(("r-pracma" ,r-pracma)))
2973 (native-inputs
2974 `(("r-knitr" ,r-knitr)))
2975 (home-page "https://github.com/csgillespie/poweRlaw")
2976 (synopsis "Tools for the analysis of heavy tailed distributions")
2977 (description
2978 "This package provides an implementation of maximum likelihood estimators
2979 for a variety of heavy tailed distributions, including both the discrete and
2980 continuous power law distributions. Additionally, a goodness-of-fit based
2981 approach is used to estimate the lower cut-off for the scaling region.")
2982 ;; Any of these GPL versions.
2983 (license (list license:gpl2 license:gpl3))))
2984
2985 (define-public r-compare
2986 (package
2987 (name "r-compare")
2988 (version "0.2-6")
2989 (source
2990 (origin
2991 (method url-fetch)
2992 (uri (cran-uri "compare" version))
2993 (sha256
2994 (base32
2995 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
2996 (build-system r-build-system)
2997 (home-page "https://cran.r-project.org/web/packages/compare")
2998 (synopsis "Comparing objects for differences")
2999 (description
3000 "This package provides functions to compare a model object to a
3001 comparison object. If the objects are not identical, the functions can be
3002 instructed to explore various modifications of the objects (e.g., sorting
3003 rows, dropping names) to see if the modified versions are identical.")
3004 (license license:gpl2+)))
3005
3006 (define-public r-dendextend
3007 (package
3008 (name "r-dendextend")
3009 (version "1.14.0")
3010 (source
3011 (origin
3012 (method url-fetch)
3013 (uri (cran-uri "dendextend" version))
3014 (sha256
3015 (base32
3016 "0n3qg76apgbqbvxv2yp5qwpy6nx03xmmc9mdfyq4dqblqhdld29p"))))
3017 (build-system r-build-system)
3018 (propagated-inputs
3019 `(("r-ggplot2" ,r-ggplot2)
3020 ("r-magrittr" ,r-magrittr)
3021 ("r-viridis" ,r-viridis)))
3022 (native-inputs
3023 `(("r-knitr" ,r-knitr)))
3024 (home-page "https://cran.r-project.org/web/packages/dendextend")
3025 (synopsis "Extending 'dendrogram' functionality in R")
3026 (description
3027 "This package offers a set of functions for extending @code{dendrogram}
3028 objects in R, letting you visualize and compare trees of hierarchical
3029 clusterings. You can adjust a tree's graphical parameters (the color, size,
3030 type, etc of its branches, nodes and labels) and visually and statistically
3031 compare different dendrograms to one another.")
3032 ;; Any of these versions
3033 (license (list license:gpl2 license:gpl3))))
3034
3035 (define-public r-getoptlong
3036 (package
3037 (name "r-getoptlong")
3038 (version "1.0.5")
3039 (source
3040 (origin
3041 (method url-fetch)
3042 (uri (cran-uri "GetoptLong" version))
3043 (sha256
3044 (base32
3045 "00fpm6nd3kqa2ikasxa62jzywi46fvvmx1mdavcp5yrxxn37j8wc"))))
3046 (properties `((upstream-name . "GetoptLong")))
3047 (build-system r-build-system)
3048 (inputs
3049 `(("perl" ,perl)))
3050 (propagated-inputs
3051 `(("r-crayon" ,r-crayon)
3052 ("r-globaloptions" ,r-globaloptions)
3053 ("r-rjson" ,r-rjson)))
3054 (native-inputs
3055 `(("r-knitr" ,r-knitr)))
3056 (home-page "https://github.com/jokergoo/GetoptLong")
3057 (synopsis "Parsing command-line arguments and variable interpolation")
3058 (description
3059 "This is yet another command-line argument parser which wraps the
3060 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
3061 use in R. It also provides a simple way for variable interpolation in R.")
3062 (license license:gpl2+)))
3063
3064 (define-public r-fastmatch
3065 (package
3066 (name "r-fastmatch")
3067 (version "1.1-0")
3068 (source
3069 (origin
3070 (method url-fetch)
3071 (uri (cran-uri "fastmatch" version))
3072 (sha256
3073 (base32
3074 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
3075 (build-system r-build-system)
3076 (home-page "https://www.rforge.net/fastmatch")
3077 (synopsis "Fast match function")
3078 (description
3079 "This package provides a fast @code{match} replacement for cases that
3080 require repeated look-ups. It is slightly faster that R's built-in
3081 @code{match} function on first match against a table, but extremely fast on
3082 any subsequent lookup as it keeps the hash table in memory.")
3083 (license license:gpl2)))
3084
3085 (define-public r-ff
3086 (package
3087 (name "r-ff")
3088 (version "4.0.4")
3089 (source
3090 (origin
3091 (method url-fetch)
3092 (uri (cran-uri "ff" version))
3093 (sha256
3094 (base32
3095 "1rfj2ff5cxzdp9nvfnbgmswc1jvxz5vkxqgpv6gprwk32a0z3v12"))))
3096 (build-system r-build-system)
3097 (propagated-inputs `(("r-bit" ,r-bit)))
3098 (home-page "http://ff.r-forge.r-project.org/")
3099 (synopsis "Memory-efficient storage of large data on disk and access functions")
3100 (description
3101 "This package provides data structures that are stored on disk but
3102 behave (almost) as if they were in RAM by transparently mapping only a section
3103 in main memory.")
3104 ;; error Architecture not supported.
3105 (supported-systems (delete "aarch64-linux" %supported-systems))
3106 (license license:gpl2)))
3107
3108 (define-public r-ffbase
3109 (package
3110 (name "r-ffbase")
3111 (version "0.13.3")
3112 (source
3113 (origin
3114 (method url-fetch)
3115 (uri (cran-uri "ffbase" version))
3116 (sha256
3117 (base32
3118 "1dp6lblfq2j7r1b4b8ls47jlx8j27n88d5vp8w116lb8pa01zxmk"))))
3119 (build-system r-build-system)
3120 (propagated-inputs
3121 `(("r-bit" ,r-bit)
3122 ("r-fastmatch" ,r-fastmatch)
3123 ("r-ff" ,r-ff)))
3124 (home-page "https://github.com/edwindj/ffbase")
3125 (synopsis "Basic statistical functions for package 'ff'")
3126 (description
3127 "This package extends the out of memory vectors of @code{ff} with
3128 statistical functions and other utilities to ease their usage.")
3129 (license license:gpl3)))
3130
3131 (define-public r-prettyunits
3132 (package
3133 (name "r-prettyunits")
3134 (version "1.1.1")
3135 (source
3136 (origin
3137 (method url-fetch)
3138 (uri (cran-uri "prettyunits" version))
3139 (sha256
3140 (base32
3141 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
3142 (build-system r-build-system)
3143 (home-page "https://github.com/gaborcsardi/prettyunits")
3144 (synopsis "Pretty, human readable formatting of quantities")
3145 (description
3146 "This package provides tools for pretty, human readable formatting of
3147 quantities.")
3148 (license license:expat)))
3149
3150 (define-public r-reshape
3151 (package
3152 (name "r-reshape")
3153 (version "0.8.8")
3154 (source
3155 (origin
3156 (method url-fetch)
3157 (uri (cran-uri "reshape" version))
3158 (sha256
3159 (base32
3160 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
3161 (build-system r-build-system)
3162 (propagated-inputs
3163 `(("r-plyr" ,r-plyr)
3164 ("r-rcpp" ,r-rcpp)))
3165 (home-page "http://had.co.nz/reshape")
3166 (synopsis "Flexibly reshape data")
3167 (description
3168 "Flexibly restructure and aggregate data using just two functions:
3169 @code{melt} and @code{cast}. This package provides them.")
3170 (license license:expat)))
3171
3172 (define-public r-restrserve
3173 (package
3174 (name "r-restrserve")
3175 (version "0.4.1")
3176 (source
3177 (origin
3178 (method url-fetch)
3179 (uri (cran-uri "RestRserve" version))
3180 (sha256
3181 (base32 "1486hrzj5q5w4nbrsbqlv7vv20ly01y90qc2vygl5syzwvyjd422"))))
3182 (build-system r-build-system)
3183 (propagated-inputs
3184 `(("r-checkmate" ,r-checkmate)
3185 ("r-jsonlite" ,r-jsonlite)
3186 ("r-mime" ,r-mime)
3187 ("r-r6" ,r-r6)
3188 ("r-rcpp" ,r-rcpp)
3189 ("r-rserve" ,r-rserve)
3190 ("r-uuid" ,r-uuid)))
3191 (native-inputs
3192 `(("r-knitr" ,r-knitr)))
3193 (home-page "https://restrserve.org")
3194 (synopsis "R web API framework")
3195 (description
3196 "RestRserve is an R web API framework for building high-performance AND
3197 robust microservices and app backends. With Rserve backend on UNIX-like
3198 systems it is parallel by design. It will handle incoming requests in
3199 parallel - each request in a separate fork.")
3200 (license license:gpl2+)))
3201
3202 (define-public r-progress
3203 (package
3204 (name "r-progress")
3205 (version "1.2.2")
3206 (source
3207 (origin
3208 (method url-fetch)
3209 (uri (cran-uri "progress" version))
3210 (sha256
3211 (base32
3212 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
3213 (build-system r-build-system)
3214 (propagated-inputs
3215 `(("r-crayon" ,r-crayon)
3216 ("r-hms" ,r-hms)
3217 ("r-prettyunits" ,r-prettyunits)
3218 ("r-r6" ,r-r6)))
3219 (home-page "https://github.com/gaborcsardi/progress")
3220 (synopsis "Terminal progress bars")
3221 (description
3222 "This package provides configurable progress bars. They may include
3223 percentage, elapsed time, and/or the estimated completion time. They work in
3224 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
3225 package also provides a C++ API, that works with or without Rcpp.")
3226 (license license:expat)))
3227
3228 (define-public r-ggally
3229 (package
3230 (name "r-ggally")
3231 (version "2.1.1")
3232 (source
3233 (origin
3234 (method url-fetch)
3235 (uri (cran-uri "GGally" version))
3236 (sha256
3237 (base32
3238 "0lly659kd43cnz1bmmzqj6dbf4v0nm8dhj8xq2wlv9qbnfhq5r9p"))))
3239 (properties `((upstream-name . "GGally")))
3240 (build-system r-build-system)
3241 (inputs
3242 `(("openssl" ,openssl)))
3243 (propagated-inputs
3244 `(("r-dplyr" ,r-dplyr)
3245 ("r-forcats" ,r-forcats)
3246 ("r-ggplot2" ,r-ggplot2)
3247 ("r-gtable" ,r-gtable)
3248 ("r-lifecycle" ,r-lifecycle)
3249 ("r-plyr" ,r-plyr)
3250 ("r-progress" ,r-progress)
3251 ("r-rcolorbrewer" ,r-rcolorbrewer)
3252 ("r-reshape" ,r-reshape)
3253 ("r-rlang" ,r-rlang)
3254 ("r-scales" ,r-scales)
3255 ("r-tidyr" ,r-tidyr)))
3256 (home-page "https://ggobi.github.io/ggally")
3257 (synopsis "Extension to ggplot2")
3258 (description
3259 "The R package ggplot2 is a plotting system based on the grammar of
3260 graphics. GGally extends ggplot2 by adding several functions to reduce the
3261 complexity of combining geometric objects with transformed data. Some of
3262 these functions include a pairwise plot matrix, a two group pairwise plot
3263 matrix, a parallel coordinates plot, a survival plot, and several functions to
3264 plot networks.")
3265 (license license:gpl2+)))
3266
3267 (define-public r-proxy
3268 (package
3269 (name "r-proxy")
3270 (version "0.4-25")
3271 (source
3272 (origin
3273 (method url-fetch)
3274 (uri (cran-uri "proxy" version))
3275 (sha256
3276 (base32
3277 "1m893djrv6ckadmlx9n5bxfp0ycdh2w63sy6yxfyj1migvc7072f"))))
3278 (build-system r-build-system)
3279 (home-page "https://cran.r-project.org/web/packages/proxy")
3280 (synopsis "Distance and similarity measures")
3281 (description
3282 "This package provides an extensible framework for the efficient
3283 calculation of auto- and cross-proximities, along with implementations of the
3284 most popular ones.")
3285 (license license:gpl2)))
3286
3287 (define-public r-sp
3288 (package
3289 (name "r-sp")
3290 (version "1.4-5")
3291 (source
3292 (origin
3293 (method url-fetch)
3294 (uri (cran-uri "sp" version))
3295 (sha256
3296 (base32 "1nh9izsnszzm5kbq461w8bi0yh7fqzb74b2zmpg5qis0slbb5vkb"))))
3297 (build-system r-build-system)
3298 (propagated-inputs
3299 `(("r-lattice" ,r-lattice)))
3300 (home-page "https://cran.r-project.org/web/packages/sp")
3301 (synopsis "Classes and methods for spatial data")
3302 (description
3303 "This package provides classes and methods for spatial data; the classes
3304 document where the spatial location information resides, for 2D or 3D data.
3305 Utility functions are provided, e.g. for plotting data as maps, spatial
3306 selection, as well as methods for retrieving coordinates, for subsetting,
3307 print, summary, etc.")
3308 (license license:gpl2+)))
3309
3310 (define-public r-laplacesdemon
3311 (package
3312 (name "r-laplacesdemon")
3313 (version "16.1.4")
3314 (source
3315 (origin
3316 (method url-fetch)
3317 (uri (cran-uri "LaplacesDemon" version))
3318 (sha256
3319 (base32 "1nv1kx86cg8f2s8q15pzskc0lg94bb250p0fhybrx5sjqv1s2lj1"))))
3320 (properties `((upstream-name . "LaplacesDemon")))
3321 (build-system r-build-system)
3322 (home-page "https://github.com/LaplacesDemonR/LaplacesDemon")
3323 (synopsis "Complete environment for Bayesian inference")
3324 (description
3325 "This package provides a complete environment for Bayesian inference using
3326 a variety of different samplers.")
3327 (license license:expat)))
3328
3329 (define-public r-rmtstat
3330 (package
3331 (name "r-rmtstat")
3332 (version "0.3")
3333 (source
3334 (origin
3335 (method url-fetch)
3336 (uri (cran-uri "RMTstat" version))
3337 (sha256
3338 (base32
3339 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
3340 (properties `((upstream-name . "RMTstat")))
3341 (build-system r-build-system)
3342 (home-page "https://cran.r-project.org/web/packages/RMTstat")
3343 (synopsis "Distributions, statistics and tests derived from random matrix theory")
3344 (description
3345 "This package provides functions for working with the Tracy-Widom laws
3346 and other distributions related to the eigenvalues of large Wishart
3347 matrices.")
3348 (license license:bsd-3)))
3349
3350 (define-public r-rmpi
3351 (package
3352 (name "r-rmpi")
3353 (version "0.6-9.1")
3354 (source (origin
3355 (method url-fetch)
3356 (uri (cran-uri "Rmpi" version))
3357 (sha256
3358 (base32
3359 "1j8akqjan59yzwx2s1zxc214qyd323fd2i2dhgq0n11mb6ajmq4r"))))
3360 (properties `((upstream-name . "Rmpi")))
3361 (build-system r-build-system)
3362 (arguments
3363 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
3364 #:phases (modify-phases %standard-phases
3365 (add-before 'install 'mpi-setup
3366 ,%openmpi-setup))))
3367 (inputs
3368 `(("openmpi" ,openmpi)))
3369 (native-inputs
3370 `(("pkg-config" ,pkg-config)))
3371 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
3372 (synopsis "R interface to message-passing interface (MPI)")
3373 (description
3374 "This package provides an interface (wrapper) to MPI APIs. It also
3375 provides an interactive R manager and worker environment.")
3376 (license license:gpl2+)))
3377
3378 (define-public r-lmoments
3379 (package
3380 (name "r-lmoments")
3381 (version "1.3-1")
3382 (source
3383 (origin
3384 (method url-fetch)
3385 (uri (cran-uri "Lmoments" version))
3386 (sha256
3387 (base32
3388 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
3389 (properties `((upstream-name . "Lmoments")))
3390 (build-system r-build-system)
3391 (propagated-inputs
3392 `(("r-rcpp" ,r-rcpp)
3393 ("r-rcpparmadillo" ,r-rcpparmadillo)))
3394 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
3395 (synopsis "L-moments and quantile mixtures")
3396 (description
3397 "This package contains functions to estimate L-moments and trimmed
3398 L-moments from the data. It also contains functions to estimate the
3399 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
3400 quantile mixture from L-moments and trimmed L-moments.")
3401 (license license:gpl2)))
3402
3403 (define-public r-distillery
3404 (package
3405 (name "r-distillery")
3406 (version "1.2")
3407 (source
3408 (origin
3409 (method url-fetch)
3410 (uri (cran-uri "distillery" version))
3411 (sha256
3412 (base32
3413 "10nhh9p0hp294pp4aav0y0zsmir2qbn05sf3k52rmzmm36q2kc8y"))))
3414 (build-system r-build-system)
3415 (home-page "https://ral.ucar.edu/staff/ericg/")
3416 (synopsis "Functions for confidence intervals and object information")
3417 (description
3418 "This package provides some very simple method functions for confidence
3419 interval calculation and to distill pertinent information from a potentially
3420 complex object; primarily used in common with the packages extRemes and
3421 SpatialVx.")
3422 (license license:gpl2+)))
3423
3424 (define-public r-etrunct
3425 (package
3426 (name "r-etrunct")
3427 (version "0.1")
3428 (source (origin
3429 (method url-fetch)
3430 (uri (cran-uri "etrunct" version))
3431 (sha256
3432 (base32
3433 "0ayazgyqlc8jcqr03cwfmfhm4pck6xri1r6vkgqy4arqkrrnrcqr"))))
3434 (properties `((upstream-name . "etrunct")))
3435 (build-system r-build-system)
3436 (home-page "https://cran.r-project.org/web/packages/etrunct")
3437 (synopsis "Computes moments of univariate truncated T distribution")
3438 (description "This package computes moments of univariate truncated
3439 T distribution. There is only one exported function, @code{e_trunct},
3440 which should be seen for details.")
3441 (license license:expat)))
3442
3443 (define-public r-extremes
3444 (package
3445 (name "r-extremes")
3446 (version "2.1")
3447 (source
3448 (origin
3449 (method url-fetch)
3450 (uri (cran-uri "extRemes" version))
3451 (sha256
3452 (base32
3453 "1b69r3mzl6hp3g3rqxyc77m8r40jyq7c2d87q85af7xqkn6hnxid"))))
3454 (properties `((upstream-name . "extRemes")))
3455 (build-system r-build-system)
3456 (propagated-inputs
3457 `(("r-distillery" ,r-distillery)
3458 ("r-lmoments" ,r-lmoments)))
3459 (home-page "https://www.assessment.ucar.edu/toolkit/")
3460 (synopsis "Extreme value analysis")
3461 (description
3462 "ExtRemes is a suite of functions for carrying out analyses on the
3463 extreme values of a process of interest; be they block maxima over long blocks
3464 or excesses over a high threshold.")
3465 (license license:gpl2+)))
3466
3467 (define-public r-lmtest
3468 (package
3469 (name "r-lmtest")
3470 (version "0.9-38")
3471 (source
3472 (origin
3473 (method url-fetch)
3474 (uri (cran-uri "lmtest" version))
3475 (sha256
3476 (base32
3477 "0sr19bmw2cpagfvwg772m79wvl1i2hww1xfr69bzr3rr8pm2r8ij"))))
3478 (build-system r-build-system)
3479 (propagated-inputs
3480 `(("r-zoo" ,r-zoo)))
3481 (native-inputs
3482 `(("gfortran" ,gfortran)))
3483 (home-page "https://cran.r-project.org/web/packages/lmtest")
3484 (synopsis "Testing linear regression models")
3485 (description
3486 "This package provides a collection of tests, data sets, and examples for
3487 diagnostic checking in linear regression models. Furthermore, some generic
3488 tools for inference in parametric models are provided.")
3489 ;; Either version is okay
3490 (license (list license:gpl2 license:gpl3))))
3491
3492 (define-public r-idr
3493 (package
3494 (name "r-idr")
3495 (version "1.2")
3496 (source (origin
3497 (method url-fetch)
3498 (uri (cran-uri "idr" version))
3499 (sha256
3500 (base32
3501 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
3502 (build-system r-build-system)
3503 (home-page "https://cran.r-project.org/web/packages/idr/")
3504 (synopsis "Irreproducible discovery rate")
3505 (description
3506 "This is a package for estimating the copula mixture model and plotting
3507 correspondence curves in \"Measuring reproducibility of high-throughput
3508 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
3509 by Li, Brown, Huang, and Bickel")
3510 (license license:gpl2+)))
3511
3512 (define-public r-inline
3513 (package
3514 (name "r-inline")
3515 (version "0.3.17")
3516 (source (origin
3517 (method url-fetch)
3518 (uri (cran-uri "inline" version))
3519 (sha256
3520 (base32
3521 "1wslsn60q959yrr27cwanba43qlpfaxzdli46i9dc26lxfr5fa3r"))))
3522 (build-system r-build-system)
3523 (home-page "https://cran.r-project.org/web/packages/inline")
3524 (synopsis "Functions to inline C, C++, Fortran function calls from R")
3525 (description
3526 "This package provides functionality to dynamically define R functions
3527 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
3528 @code{.Call} calling conventions.")
3529 ;; Any version of the LGPL.
3530 (license license:lgpl3+)))
3531
3532 (define-public r-inum
3533 (package
3534 (name "r-inum")
3535 (version "1.0-3")
3536 (source (origin
3537 (method url-fetch)
3538 (uri (cran-uri "inum" version))
3539 (sha256
3540 (base32
3541 "1sz11b4vlpskhmq9vvc1jix63a5g7lij6368w8qbnkjmjd97k7i4"))))
3542 (build-system r-build-system)
3543 (propagated-inputs
3544 `(("r-libcoin" ,r-libcoin)))
3545 (home-page "https://cran.r-project.org/web/packages/inum/")
3546 (synopsis "Interval and enum-type representation of vectors")
3547 (description
3548 "This package provides an enum-type representation of vectors and
3549 representation of intervals, including a method of coercing variables
3550 in data frames.")
3551 (license license:gpl2)))
3552 (define-public r-invgamma
3553 (package
3554 (name "r-invgamma")
3555 (version "1.1")
3556 (source (origin
3557 (method url-fetch)
3558 (uri (cran-uri "invgamma" version))
3559 (sha256
3560 (base32
3561 "12ga2y4wc9bc5zz6vimvxwgjpsx3ys3209nq63gscbw559ydxa5a"))))
3562 (properties `((upstream-name . "invgamma")))
3563 (build-system r-build-system)
3564 (home-page "https://github.com/dkahle/invgamma")
3565 (synopsis "Inverse gamma distribution")
3566 (description "This package provides a light weight implementation of the
3567 standard distribution functions for the inverse gamma distribution, wrapping
3568 those for the gamma distribution in the @code{stats} package.")
3569 (license license:gpl2)))
3570
3571 (define-public r-bdsmatrix
3572 (package
3573 (name "r-bdsmatrix")
3574 (version "1.3-4")
3575 (source
3576 (origin
3577 (method url-fetch)
3578 (uri (cran-uri "bdsmatrix" version))
3579 (sha256
3580 (base32
3581 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
3582 (properties `((upstream-name . "bdsmatrix")))
3583 (build-system r-build-system)
3584 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
3585 (synopsis "Routines for block diagonal symmetric matrices")
3586 (description
3587 "This package provides procedures to work with block diagonal symmetric
3588 matrices, a special case of sparse matrices.")
3589 (license license:lgpl2.0)))
3590
3591 (define-public r-bbmle
3592 (package
3593 (name "r-bbmle")
3594 (version "1.0.23.1")
3595 (source
3596 (origin
3597 (method url-fetch)
3598 (uri (cran-uri "bbmle" version))
3599 (sha256
3600 (base32
3601 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
3602 (build-system r-build-system)
3603 (propagated-inputs
3604 `(("r-bdsmatrix" ,r-bdsmatrix)
3605 ("r-lattice" ,r-lattice)
3606 ("r-mass" ,r-mass)
3607 ("r-matrix" ,r-matrix)
3608 ("r-mvtnorm" ,r-mvtnorm)
3609 ("r-numderiv" ,r-numderiv)))
3610 (home-page "https://cran.r-project.org/web/packages/bbmle")
3611 (synopsis "Tools for General Maximum Likelihood Estimation")
3612 (description
3613 "This package provides methods and functions for fitting maximum
3614 likelihood models in R. This package modifies and extends the @code{mle}
3615 classes in the @code{stats4} package.")
3616 ;; Any version of the GPL
3617 (license license:gpl2+)))
3618
3619 (define-public r-emdbook
3620 (package
3621 (name "r-emdbook")
3622 (version "1.3.12")
3623 (source
3624 (origin
3625 (method url-fetch)
3626 (uri (cran-uri "emdbook" version))
3627 (sha256
3628 (base32
3629 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
3630 (build-system r-build-system)
3631 (propagated-inputs
3632 `(("r-bbmle" ,r-bbmle)
3633 ("r-coda" ,r-coda)
3634 ("r-lattice" ,r-lattice)
3635 ("r-mass" ,r-mass)
3636 ("r-plyr" ,r-plyr)))
3637 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
3638 (synopsis "Support functions and data for \"Ecological Models and Data\"")
3639 (description
3640 "This package provides auxiliary functions and data sets for \"Ecological
3641 Models and Data\", a book presenting maximum likelihood estimation and related
3642 topics for ecologists (ISBN 978-0-691-12522-0).")
3643 ;; Any GPL version
3644 (license (list license:gpl2 license:gpl3))))
3645
3646 (define-public r-lpsolve
3647 (package
3648 (name "r-lpsolve")
3649 (version "5.6.15")
3650 (source
3651 (origin
3652 (method url-fetch)
3653 (uri (cran-uri "lpSolve" version))
3654 (sha256
3655 (base32
3656 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
3657 (properties `((upstream-name . "lpSolve")))
3658 (build-system r-build-system)
3659 (home-page "https://cran.r-project.org/web/packages/lpSolve")
3660 (synopsis "R interface to Lp_solve to solve linear/integer programs")
3661 (description
3662 "Lp_solve is software for solving linear, integer and mixed integer
3663 programs. This implementation supplies a \"wrapper\" function in C and some R
3664 functions that solve general linear/integer problems, assignment problems, and
3665 transportation problems.")
3666 (license license:lgpl2.0)))
3667
3668 (define-public r-limsolve
3669 (package
3670 (name "r-limsolve")
3671 (version "1.5.6")
3672 (source
3673 (origin
3674 (method url-fetch)
3675 (uri (cran-uri "limSolve" version))
3676 (sha256
3677 (base32
3678 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
3679 (properties `((upstream-name . "limSolve")))
3680 (build-system r-build-system)
3681 (propagated-inputs
3682 `(("r-lpsolve" ,r-lpsolve)
3683 ("r-mass" ,r-mass)
3684 ("r-quadprog" ,r-quadprog)))
3685 (native-inputs `(("gfortran" ,gfortran)))
3686 (home-page "https://cran.r-project.org/web/packages/limSolve")
3687 (synopsis "Solving linear inverse models")
3688 (description
3689 "This package provides functions that:
3690
3691 @enumerate
3692 @item find the minimum/maximum of a linear or quadratic function,
3693 @item sample an underdetermined or overdetermined system,
3694 @item solve a linear system Ax=B for the unknown x.
3695 @end enumerate
3696
3697 It includes banded and tridiagonal linear systems. The package calls Fortran
3698 functions from LINPACK.")
3699 ;; Any GPL version.
3700 (license (list license:gpl2+ license:gpl3+))))
3701
3702 (define-public r-fitdistrplus
3703 (package
3704 (name "r-fitdistrplus")
3705 (version "1.1-3")
3706 (source
3707 (origin
3708 (method url-fetch)
3709 (uri (cran-uri "fitdistrplus" version))
3710 (sha256
3711 (base32
3712 "1pjnqx0j26dai2fa4ip56wspmfsrcm9dpmxkg15y9623w5b58vbp"))))
3713 (build-system r-build-system)
3714 (propagated-inputs
3715 `(("r-mass" ,r-mass)
3716 ("r-survival" ,r-survival)))
3717 (native-inputs
3718 `(("r-knitr" ,r-knitr)))
3719 (home-page "http://riskassessment.r-forge.r-project.org")
3720 (synopsis "Fitting a parametric distribution from data")
3721 (description
3722 "This package extends the @code{fitdistr} function of the MASS package
3723 with several functions to help the fit of a parametric distribution to
3724 non-censored or censored data. Censored data may contain left-censored,
3725 right-censored and interval-censored values, with several lower and upper
3726 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
3727 provides moment matching (MME), quantile matching (QME) and maximum
3728 goodness-of-fit estimation (MGE) methods (available only for non-censored
3729 data). Weighted versions of MLE, MME and QME are available.")
3730 (license license:gpl2+)))
3731
3732 (define-public r-energy
3733 (package
3734 (name "r-energy")
3735 (version "1.7-8")
3736 (source
3737 (origin
3738 (method url-fetch)
3739 (uri (cran-uri "energy" version))
3740 (sha256
3741 (base32
3742 "12a7gy681aq3l55iys044cs6sn1s2l5qihghpdl01cvv0ggfh26y"))))
3743 (build-system r-build-system)
3744 (propagated-inputs
3745 `(("r-boot" ,r-boot)
3746 ("r-gsl" ,r-gsl)
3747 ("r-rcpp" ,r-rcpp)))
3748 (home-page "https://cran.r-project.org/web/packages/energy")
3749 (synopsis "Multivariate inference via the energy of data")
3750 (description
3751 "This package provides e-statistics (energy) tests and statistics for
3752 multivariate and univariate inference, including distance correlation,
3753 one-sample, two-sample, and multi-sample tests for comparing multivariate
3754 distributions, are implemented. Measuring and testing multivariate
3755 independence based on distance correlation, partial distance correlation,
3756 multivariate goodness-of-fit tests, clustering based on energy distance,
3757 testing for multivariate normality, distance components (disco) for
3758 non-parametric analysis of structured data, and other energy
3759 statistics/methods are implemented.")
3760 (license license:gpl2+)))
3761
3762 (define-public r-suppdists
3763 (package
3764 (name "r-suppdists")
3765 (version "1.1-9.5")
3766 (source
3767 (origin
3768 (method url-fetch)
3769 (uri (cran-uri "SuppDists" version))
3770 (sha256
3771 (base32
3772 "1i3iq12a5x5k49ac01mikzcrrq9gc148xq3m08h4xm07bha6f2v8"))))
3773 (properties `((upstream-name . "SuppDists")))
3774 (build-system r-build-system)
3775 (home-page "https://cran.r-project.org/web/packages/SuppDists")
3776 (synopsis "Supplementary distributions")
3777 (description
3778 "This package provides ten distributions supplementing those built into
3779 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
3780 Spearman's rho, maximum F ratio, the Pearson product moment correlation
3781 coefficient, Johnson distributions, normal scores and generalized
3782 hypergeometric distributions. In addition two random number generators of
3783 George Marsaglia are included.")
3784 (license license:gpl2+)))
3785
3786 (define-public r-ksamples
3787 (package
3788 (name "r-ksamples")
3789 (version "1.2-9")
3790 (source
3791 (origin
3792 (method url-fetch)
3793 (uri (cran-uri "kSamples" version))
3794 (sha256
3795 (base32
3796 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
3797 (properties `((upstream-name . "kSamples")))
3798 (build-system r-build-system)
3799 (propagated-inputs
3800 `(("r-suppdists" ,r-suppdists)))
3801 (home-page "https://cran.r-project.org/web/packages/kSamples")
3802 (synopsis "K-Sample rank tests and their combinations")
3803 (description
3804 "This package provides tools to compares k samples using the
3805 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
3806 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
3807 test. It computes asymptotic, simulated or (limited) exact P-values, all
3808 valid under randomization, with or without ties, or conditionally under random
3809 sampling from populations, given the observed tie pattern. Except for Steel's
3810 test and the JT test it also combines these tests across several blocks of
3811 samples.")
3812 (license license:gpl2+)))
3813
3814 (define-public r-cvst
3815 (package
3816 (name "r-cvst")
3817 (version "0.2-2")
3818 (source
3819 (origin
3820 (method url-fetch)
3821 (uri (cran-uri "CVST" version))
3822 (sha256
3823 (base32
3824 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
3825 (properties `((upstream-name . "CVST")))
3826 (build-system r-build-system)
3827 (propagated-inputs
3828 `(("r-kernlab" ,r-kernlab)
3829 ("r-matrix" ,r-matrix)))
3830 (home-page "https://cran.r-project.org/web/packages/CVST")
3831 (synopsis "Fast cross-validation via sequential testing")
3832 (description
3833 "This package implements the fast cross-validation via sequential
3834 testing (CVST) procedure. CVST is an improved cross-validation procedure
3835 which uses non-parametric testing coupled with sequential analysis to
3836 determine the best parameter set on linearly increasing subsets of the data.
3837 Additionally to the CVST the package contains an implementation of the
3838 ordinary k-fold cross-validation with a flexible and powerful set of helper
3839 objects and methods to handle the overall model selection process. The
3840 implementations of the Cochran's Q test with permutations and the sequential
3841 testing framework of Wald are generic and can therefore also be used in other
3842 contexts.")
3843 (license license:gpl2+)))
3844
3845 (define-public r-squarem
3846 (package
3847 (name "r-squarem")
3848 (version "2021.1")
3849 (source
3850 (origin
3851 (method url-fetch)
3852 (uri (cran-uri "SQUAREM" version))
3853 (sha256
3854 (base32
3855 "0n1s32l9p4vdm3h5q6g43s0qbpzry08difsh0yay80wrla6f3rb6"))))
3856 (properties `((upstream-name . "SQUAREM")))
3857 (build-system r-build-system)
3858 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
3859 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
3860 (description
3861 "This package provides algorithms for accelerating the convergence of
3862 slow, monotone sequences from smooth, contraction mapping such as the EM
3863 algorithm. It can be used to accelerate any smooth, linearly convergent
3864 acceleration scheme. A tutorial style introduction to this package is
3865 available in a vignette.")
3866 (license license:gpl2+)))
3867
3868 (define-public r-lava
3869 (package
3870 (name "r-lava")
3871 (version "1.6.9")
3872 (source
3873 (origin
3874 (method url-fetch)
3875 (uri (cran-uri "lava" version))
3876 (sha256
3877 (base32
3878 "07difbrz8zmvdyns63958v0zw4hyv48956mcww8zh7064a564k83"))))
3879 (build-system r-build-system)
3880 (propagated-inputs
3881 `(("r-numderiv" ,r-numderiv)
3882 ("r-squarem" ,r-squarem)
3883 ("r-survival" ,r-survival)))
3884 (native-inputs
3885 `(("r-knitr" ,r-knitr)))
3886 (home-page "https://github.com/kkholst/lava")
3887 (synopsis "Latent variable models")
3888 (description
3889 "This package provides tools for the estimation and simulation of latent
3890 variable models.")
3891 (license license:gpl3)))
3892
3893 (define-public r-drr
3894 (package
3895 (name "r-drr")
3896 (version "0.0.4")
3897 (source
3898 (origin
3899 (method url-fetch)
3900 (uri (cran-uri "DRR" version))
3901 (sha256
3902 (base32
3903 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
3904 (properties `((upstream-name . "DRR")))
3905 (build-system r-build-system)
3906 (propagated-inputs
3907 `(("r-cvst" ,r-cvst)
3908 ("r-kernlab" ,r-kernlab)
3909 ("r-matrix" ,r-matrix)))
3910 (home-page "https://cran.r-project.org/web/packages/DRR")
3911 (synopsis "Dimensionality reduction via regression")
3912 (description
3913 "This package provides an implementation of dimensionality reduction via
3914 regression using Kernel Ridge Regression.")
3915 (license license:gpl3)))
3916
3917 (define-public r-prodlim
3918 (package
3919 (name "r-prodlim")
3920 (version "2019.11.13")
3921 (source
3922 (origin
3923 (method url-fetch)
3924 (uri (cran-uri "prodlim" version))
3925 (sha256
3926 (base32
3927 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
3928 (build-system r-build-system)
3929 (propagated-inputs
3930 `(("r-kernsmooth" ,r-kernsmooth)
3931 ("r-lava" ,r-lava)
3932 ("r-rcpp" ,r-rcpp)
3933 ("r-survival" ,r-survival)))
3934 (home-page "https://cran.r-project.org/web/packages/prodlim")
3935 (synopsis "Product-limit estimation for censored event history analysis")
3936 (description
3937 "This package provides a fast and user-friendly implementation of
3938 nonparametric estimators for censored event history (survival) analysis with
3939 the Kaplan-Meier and Aalen-Johansen methods.")
3940 (license license:gpl2+)))
3941
3942 (define-public r-dimred
3943 (package
3944 (name "r-dimred")
3945 (version "0.2.3")
3946 (source
3947 (origin
3948 (method url-fetch)
3949 (uri (cran-uri "dimRed" version))
3950 (sha256
3951 (base32
3952 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
3953 (properties `((upstream-name . "dimRed")))
3954 (build-system r-build-system)
3955 (propagated-inputs
3956 `(("r-drr" ,r-drr)
3957 ("r-magrittr" ,r-magrittr)))
3958 (home-page "https://github.com/gdkrmr/dimRed")
3959 (synopsis "Framework for dimensionality reduction")
3960 (description
3961 "This package provides a collection of dimensionality reduction
3962 techniques from R packages and provides a common interface for calling the
3963 methods.")
3964 (license license:gpl3)))
3965
3966 (define-public r-timedate
3967 (package
3968 (name "r-timedate")
3969 (version "3043.102")
3970 (source
3971 (origin
3972 (method url-fetch)
3973 (uri (cran-uri "timeDate" version))
3974 (sha256
3975 (base32
3976 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
3977 (properties `((upstream-name . "timeDate")))
3978 (build-system r-build-system)
3979 (home-page "https://www.rmetrics.org")
3980 (synopsis "Chronological and calendar objects")
3981 (description
3982 "This package provides an environment for teaching \"Financial
3983 Engineering and Computational Finance\" and for managing chronological and
3984 calendar objects.")
3985 (license license:gpl2+)))
3986
3987 (define-public r-magic
3988 (package
3989 (name "r-magic")
3990 (version "1.5-9")
3991 (source
3992 (origin
3993 (method url-fetch)
3994 (uri (cran-uri "magic" version))
3995 (sha256
3996 (base32
3997 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
3998 (build-system r-build-system)
3999 (propagated-inputs
4000 `(("r-abind" ,r-abind)))
4001 (home-page "https://github.com/RobinHankin/magic.git")
4002 (synopsis "Create and investigate magic squares")
4003 (description
4004 "This package provides a collection of efficient, vectorized algorithms
4005 for the creation and investigation of magic squares and hypercubes, including
4006 a variety of functions for the manipulation and analysis of arbitrarily
4007 dimensioned arrays.")
4008 (license license:gpl2)))
4009
4010 (define-public r-rmysql
4011 (package
4012 (name "r-rmysql")
4013 (version "0.10.21")
4014 (source
4015 (origin
4016 (method url-fetch)
4017 (uri (cran-uri "RMySQL" version))
4018 (sha256
4019 (base32
4020 "0cbb5ln9iigl816nzvsls9zil5qlfr8yv2aginapqv6n69nz0srs"))))
4021 (properties `((upstream-name . "RMySQL")))
4022 (build-system r-build-system)
4023 (inputs
4024 `(("mariadb-dev" ,mariadb "dev")
4025 ("zlib" ,zlib)))
4026 (propagated-inputs
4027 `(("r-dbi" ,r-dbi)))
4028 (home-page "https://github.com/r-dbi/RMySQL")
4029 (synopsis "Database interface and MySQL driver for R")
4030 (description
4031 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
4032 package contains an old implementation based on legacy code from S-PLUS which
4033 is being phased out. A modern MySQL client based on Rcpp is available from
4034 the RMariaDB package.")
4035 (license license:gpl2)))
4036
4037 (define-public r-rpostgresql
4038 (package
4039 (name "r-rpostgresql")
4040 (version "0.6-2")
4041 (source
4042 (origin
4043 (method url-fetch)
4044 (uri (cran-uri "RPostgreSQL" version))
4045 (sha256
4046 (base32
4047 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
4048 (properties `((upstream-name . "RPostgreSQL")))
4049 (build-system r-build-system)
4050 (inputs
4051 `(("postgresql" ,postgresql)))
4052 (propagated-inputs
4053 `(("r-dbi" ,r-dbi)))
4054 (home-page "https://github.com/tomoakin/RPostgreSQL")
4055 (synopsis "R interface to the PostgreSQL database system")
4056 (description
4057 "This package provides a Database Interface (DBI) compliant driver for R
4058 to access PostgreSQL database systems.")
4059 ;; The whole package is released under GPL version 2. It includes code
4060 ;; under the PostgreSQL license.
4061 (license license:gpl2)))
4062
4063 (define-public r-linprog
4064 (package
4065 (name "r-linprog")
4066 (version "0.9-2")
4067 (source
4068 (origin
4069 (method url-fetch)
4070 (uri (cran-uri "linprog" version))
4071 (sha256
4072 (base32
4073 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
4074 (build-system r-build-system)
4075 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
4076 (home-page "http://linprog.r-forge.r-project.org/")
4077 (synopsis "Linear programming and optimization")
4078 (description
4079 "This package can be used to solve Linear Programming / Linear
4080 Optimization problems by using the simplex algorithm.")
4081 (license license:gpl2+)))
4082
4083 (define-public r-geometry
4084 (package
4085 (name "r-geometry")
4086 (version "0.4.5")
4087 (source
4088 (origin
4089 (method url-fetch)
4090 (uri (cran-uri "geometry" version))
4091 (sha256
4092 (base32
4093 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
4094 (build-system r-build-system)
4095 (propagated-inputs
4096 `(("r-magic" ,r-magic)
4097 ("r-linprog" ,r-linprog)
4098 ("r-lpsolve" ,r-lpsolve)
4099 ("r-rcpp" ,r-rcpp)
4100 ("r-rcppprogress" ,r-rcppprogress)))
4101 (home-page "http://geometry.r-forge.r-project.org/")
4102 (synopsis "Mesh generator and surface tessellator")
4103 (description
4104 "This package makes the qhull library available in R, in a similar manner
4105 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
4106 intersections about a point, Voronoi diagrams, furthest-site Delaunay
4107 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
4108 and higher dimensions. It implements the Quickhull algorithm for computing
4109 the convex hull. Qhull does not support constrained Delaunay triangulations,
4110 or mesh generation of non-convex objects, but the package does include some R
4111 functions that allow for this. Currently the package only gives access to
4112 Delaunay triangulation and convex hull computation.")
4113 ;; The Qhull sources are included and are distributed under a custom
4114 ;; non-copyleft license. The R sources are released under GPL version 2.
4115 (license (list license:gpl2
4116 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
4117
4118 (define-public r-ddalpha
4119 (package
4120 (name "r-ddalpha")
4121 (version "1.3.11")
4122 (source
4123 (origin
4124 (method url-fetch)
4125 (uri (cran-uri "ddalpha" version))
4126 (sha256
4127 (base32
4128 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
4129 (build-system r-build-system)
4130 (propagated-inputs
4131 `(("r-bh" ,r-bh)
4132 ("r-class" ,r-class)
4133 ("r-geometry" ,r-geometry)
4134 ("r-mass" ,r-mass)
4135 ("r-rcpp" ,r-rcpp)
4136 ("r-robustbase" ,r-robustbase)
4137 ("r-sfsmisc" ,r-sfsmisc)))
4138 (native-inputs
4139 `(("gfortran" ,gfortran)))
4140 (home-page "https://cran.r-project.org/web/packages/ddalpha")
4141 (synopsis "Depth-Based classification and calculation of data depth")
4142 (description
4143 "This package contains procedures for depth-based supervised learning,
4144 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
4145 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
4146 statistical depth function to a compact low-dimensional space, where the final
4147 classification is done. It also offers an extension to functional data and
4148 routines for calculating certain notions of statistical depth functions. 50
4149 multivariate and 5 functional classification problems are included.")
4150 (license license:gpl2)))
4151
4152 (define-public r-gower
4153 (package
4154 (name "r-gower")
4155 (version "0.2.2")
4156 (source
4157 (origin
4158 (method url-fetch)
4159 (uri (cran-uri "gower" version))
4160 (sha256
4161 (base32
4162 "0c9n921wn4hhlvjq96r4nkk96s5788376cbldr7y7bwz348200iz"))))
4163 (build-system r-build-system)
4164 (home-page "https://github.com/markvanderloo/gower")
4165 (synopsis "Gower's distance")
4166 (description
4167 "This package provides tools to compute Gower's distance (or similarity)
4168 coefficient between records, and to compute the top-n matches between records.
4169 Core algorithms are executed in parallel on systems supporting OpenMP.")
4170 (license license:gpl3)))
4171
4172 (define-public r-rcpproll
4173 (package
4174 (name "r-rcpproll")
4175 (version "0.3.0")
4176 (source
4177 (origin
4178 (method url-fetch)
4179 (uri (cran-uri "RcppRoll" version))
4180 (sha256
4181 (base32
4182 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
4183 (properties `((upstream-name . "RcppRoll")))
4184 (build-system r-build-system)
4185 (propagated-inputs
4186 `(("r-rcpp" ,r-rcpp)))
4187 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
4188 (synopsis "Efficient rolling and windowed operations")
4189 (description
4190 "This package provides fast and efficient routines for common rolling /
4191 windowed operations. Routines for the efficient computation of windowed mean,
4192 median, sum, product, minimum, maximum, standard deviation and variance are
4193 provided.")
4194 (license license:gpl2+)))
4195
4196 (define-public r-ipred
4197 (package
4198 (name "r-ipred")
4199 (version "0.9-11")
4200 (source
4201 (origin
4202 (method url-fetch)
4203 (uri (cran-uri "ipred" version))
4204 (sha256
4205 (base32
4206 "04hfg27c72v0fz4091w3rgbc2vd7g6yl78y9plvsvh0vjlx8ymmp"))))
4207 (build-system r-build-system)
4208 (propagated-inputs
4209 `(("r-class" ,r-class)
4210 ("r-mass" ,r-mass)
4211 ("r-nnet" ,r-nnet)
4212 ("r-prodlim" ,r-prodlim)
4213 ("r-rpart" ,r-rpart)
4214 ("r-survival" ,r-survival)))
4215 (home-page "https://cran.r-project.org/web/packages/ipred")
4216 (synopsis "Improved predictors")
4217 (description
4218 "This package provides improved predictive models by indirect
4219 classification and bagging for classification, regression and survival
4220 problems as well as resampling based estimators of prediction error.")
4221 (license license:gpl2+)))
4222
4223 (define-public r-psych
4224 (package
4225 (name "r-psych")
4226 (version "2.1.3")
4227 (source
4228 (origin
4229 (method url-fetch)
4230 (uri (cran-uri "psych" version))
4231 (sha256
4232 (base32
4233 "1ibh1ivr280wpmk3qjgm715dk79wx0ikjl9jjjcqs03q6vz4wmdx"))))
4234 (build-system r-build-system)
4235 (propagated-inputs
4236 `(("r-lattice" ,r-lattice)
4237 ("r-mnormt" ,r-mnormt)
4238 ("r-nlme" ,r-nlme)))
4239 (native-inputs
4240 `(("r-knitr" ,r-knitr)))
4241 (home-page "https://cran.r-project.org/web/packages/psych/")
4242 (synopsis "Procedures for psychological, psychometric, and personality research")
4243 (description
4244 "This package provides a general purpose toolbox for personality,
4245 psychometric theory and experimental psychology. Functions are primarily for
4246 multivariate analysis and scale construction using factor analysis, principal
4247 component analysis, cluster analysis and reliability analysis, although others
4248 provide basic descriptive statistics. Item Response Theory is done using
4249 factor analysis of tetrachoric and polychoric correlations. Functions for
4250 analyzing data at multiple levels include within and between group statistics,
4251 including correlations and factor analysis. Functions for simulating and
4252 testing particular item and test structures are included. Several functions
4253 serve as a useful front end for structural equation modeling. Graphical
4254 displays of path diagrams, factor analysis and structural equation models are
4255 created using basic graphics.")
4256 (license license:gpl2+)))
4257
4258 (define-public r-generics
4259 (package
4260 (name "r-generics")
4261 (version "0.1.0")
4262 (source
4263 (origin
4264 (method url-fetch)
4265 (uri (cran-uri "generics" version))
4266 (sha256
4267 (base32
4268 "0qw7r0d2qvlj1pvrlpv30d6akml624ydxkk19hv85iv6pfyx2wdb"))))
4269 (build-system r-build-system)
4270 (home-page "https://github.com/r-lib/generics")
4271 (synopsis "Common S3 generics not provided by base R methods")
4272 (description
4273 "In order to reduce potential package dependencies and conflicts,
4274 generics provides a number of commonly used S3 generics that are not provided
4275 by base R methods related to model fitting.")
4276 (license license:gpl2)))
4277
4278 (define-public r-broom
4279 (package
4280 (name "r-broom")
4281 (version "0.7.6")
4282 (source
4283 (origin
4284 (method url-fetch)
4285 (uri (cran-uri "broom" version))
4286 (sha256
4287 (base32
4288 "1ljcl8mh0yqxw3qxzar482qwbxbcaim1x6y1wm82ws12pfdw0j8n"))))
4289 (build-system r-build-system)
4290 (propagated-inputs
4291 `(("r-backports" ,r-backports)
4292 ("r-dplyr" ,r-dplyr)
4293 ("r-ellipsis" ,r-ellipsis)
4294 ("r-generics" ,r-generics)
4295 ("r-glue" ,r-glue)
4296 ("r-purrr" ,r-purrr)
4297 ("r-rlang" ,r-rlang)
4298 ("r-stringr" ,r-stringr)
4299 ("r-tibble" ,r-tibble)
4300 ("r-tidyr" ,r-tidyr)))
4301 (native-inputs
4302 `(("r-knitr" ,r-knitr)))
4303 (home-page "https://github.com/tidyverse/broom")
4304 (synopsis "Convert statistical analysis objects into tidy data frames")
4305 (description
4306 "This package provides tools to convert statistical analysis objects from
4307 R into tidy data frames, so that they can more easily be combined, reshaped
4308 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
4309 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
4310 summarizes a model's statistical findings such as coefficients of a
4311 regression; @code{augment}, which adds columns to the original data such as
4312 predictions, residuals and cluster assignments; and @code{glance}, which
4313 provides a one-row summary of model-level statistics.")
4314 (license license:expat)))
4315
4316 (define-public r-recipes
4317 (package
4318 (name "r-recipes")
4319 (version "0.1.15")
4320 (source
4321 (origin
4322 (method url-fetch)
4323 (uri (cran-uri "recipes" version))
4324 (sha256
4325 (base32
4326 "0xif0ak3w90xmfzlxvb5pnzc3scpfl1pyhrjffi3mq4asvsd52l0"))))
4327 (build-system r-build-system)
4328 (propagated-inputs
4329 `(("r-dplyr" ,r-dplyr)
4330 ("r-generics" ,r-generics)
4331 ("r-glue" ,r-glue)
4332 ("r-gower" ,r-gower)
4333 ("r-ipred" ,r-ipred)
4334 ("r-lifecycle" ,r-lifecycle)
4335 ("r-lubridate" ,r-lubridate)
4336 ("r-magrittr" ,r-magrittr)
4337 ("r-matrix" ,r-matrix)
4338 ("r-purrr" ,r-purrr)
4339 ("r-rlang" ,r-rlang)
4340 ("r-tibble" ,r-tibble)
4341 ("r-tidyr" ,r-tidyr)
4342 ("r-tidyselect" ,r-tidyselect)
4343 ("r-timedate" ,r-timedate)
4344 ("r-withr" ,r-withr)))
4345 (native-inputs
4346 `(("r-knitr" ,r-knitr)))
4347 (home-page "https://github.com/topepo/recipes")
4348 (synopsis "Preprocessing tools to create design matrices")
4349 (description
4350 "Recipes is an extensible framework to create and preprocess design
4351 matrices. Recipes consist of one or more data manipulation and analysis
4352 \"steps\". Statistical parameters for the steps can be estimated from an
4353 initial data set and then applied to other data sets. The resulting design
4354 matrices can then be used as inputs into statistical or machine learning
4355 models.")
4356 (license license:gpl2)))
4357
4358 (define-public r-pdist
4359 (package
4360 (name "r-pdist")
4361 (version "1.2")
4362 (source
4363 (origin
4364 (method url-fetch)
4365 (uri (cran-uri "pdist" version))
4366 (sha256
4367 (base32
4368 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
4369 (build-system r-build-system)
4370 (home-page "https://github.com/jeffwong/pdist")
4371 (synopsis "Partitioned distance function")
4372 (description
4373 "Pdist computes the euclidean distance between rows of a matrix X and
4374 rows of another matrix Y. Previously, this could be done by binding the two
4375 matrices together and calling @code{dist}, but this creates unnecessary
4376 computation by computing the distances between a row of X and another row of
4377 X, and likewise for Y. Pdist strictly computes distances across the two
4378 matrices, not within the same matrix, making computations significantly faster
4379 for certain use cases.")
4380 (license license:gpl3+)))
4381
4382 (define-public r-ggrepel
4383 (package
4384 (name "r-ggrepel")
4385 (version "0.9.1")
4386 (source
4387 (origin
4388 (method url-fetch)
4389 (uri (cran-uri "ggrepel" version))
4390 (sha256
4391 (base32
4392 "1z5xyr5f4aryy0v1gzz9m8m4s5fzzwbrf0fxll1nbflr8xnr3yr9"))))
4393 (build-system r-build-system)
4394 (propagated-inputs
4395 `(("r-ggplot2" ,r-ggplot2)
4396 ("r-rcpp" ,r-rcpp)
4397 ("r-rlang" ,r-rlang)
4398 ("r-scales" ,r-scales)))
4399 (native-inputs
4400 `(("r-knitr" ,r-knitr))) ; for vignettes
4401 (home-page "https://github.com/slowkow/ggrepel")
4402 (synopsis "Repulsive text and label geometries for ggplot2")
4403 (description
4404 "This package provides text and label geometries for ggplot2 that help to
4405 avoid overlapping text labels. Labels repel away from each other and away
4406 from the data points.")
4407 (license license:gpl3)))
4408
4409 (define-public r-corrplot
4410 (package
4411 (name "r-corrplot")
4412 (version "0.84")
4413 (source
4414 (origin
4415 (method url-fetch)
4416 (uri (cran-uri "corrplot" version))
4417 (sha256
4418 (base32
4419 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
4420 (build-system r-build-system)
4421 (home-page "https://github.com/taiyun/corrplot")
4422 (synopsis "Visualization of a correlation matrix")
4423 (description
4424 "This package provides a graphical display of a correlation matrix or
4425 general matrix. It also contains some algorithms to do matrix reordering. In
4426 addition, corrplot is good at details, including choosing color, text labels,
4427 color labels, layout, etc.")
4428 ;; Any version of the GPL
4429 (license license:gpl2+)))
4430
4431 (define-public r-stringdist
4432 (package
4433 (name "r-stringdist")
4434 (version "0.9.6.3")
4435 (source
4436 (origin
4437 (method url-fetch)
4438 (uri (cran-uri "stringdist" version))
4439 (sha256
4440 (base32 "06rzbgw43vzg496xca82pydf3g2rz6iw6h50ai0prbp9hbwrhvfd"))))
4441 (build-system r-build-system)
4442 (home-page "https://github.com/markvanderloo/stringdist")
4443 (synopsis "Approximate string matching and string distance functions")
4444 (description
4445 "This package implements an approximate string matching version of R's
4446 native @code{match} function. It can calculate various string distances based
4447 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal string alignment),
4448 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
4449 Jaro-Winkler). An implementation of soundex is provided as well. Distances
4450 can be computed between character vectors while taking proper care of encoding
4451 or between integer vectors representing generic sequences.")
4452 (license license:gpl3+)))
4453
4454 (define-public r-ucminf
4455 (package
4456 (name "r-ucminf")
4457 (version "1.1-4")
4458 (source
4459 (origin
4460 (method url-fetch)
4461 (uri (cran-uri "ucminf" version))
4462 (sha256
4463 (base32
4464 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
4465 (build-system r-build-system)
4466 (native-inputs `(("gfortran" ,gfortran)))
4467 (home-page "https://cran.r-project.org/web/packages/ucminf/")
4468 (synopsis "General-purpose unconstrained non-linear optimization")
4469 (description
4470 "This package provides an implementation of an algorithm for
4471 general-purpose unconstrained non-linear optimization. The algorithm is of
4472 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
4473 search with a trust region type monitoring of the input to the line search
4474 algorithm. The interface of @code{ucminf} is designed for easy interchange
4475 with the package @code{optim}.")
4476 (license license:gpl2+)))
4477
4478 (define-public r-useful
4479 (package
4480 (name "r-useful")
4481 (version "1.2.6")
4482 (source (origin
4483 (method url-fetch)
4484 (uri (cran-uri "useful" version))
4485 (sha256
4486 (base32
4487 "0n50v1q75k518sq23id14jphwla35q4sasahrnrnllwrachl67v1"))))
4488 (properties `((upstream-name . "useful")))
4489 (build-system r-build-system)
4490 (propagated-inputs
4491 `(("r-assertthat" ,r-assertthat)
4492 ("r-dplyr" ,r-dplyr)
4493 ("r-ggplot2" ,r-ggplot2)
4494 ("r-magrittr" ,r-magrittr)
4495 ("r-matrix" ,r-matrix)
4496 ("r-plyr" ,r-plyr)
4497 ("r-purrr" ,r-purrr)
4498 ("r-scales" ,r-scales)))
4499 (home-page "https://github.com/jaredlander/useful")
4500 (synopsis "Collection of handy, useful functions")
4501 (description "This package provides a set of little functions that have been
4502 found useful to do little odds and ends such as plotting the results of K-means
4503 clustering, substituting special text characters, viewing parts of a
4504 @code{data.frame}, constructing formulas from text and building design and
4505 response matrices.")
4506 (license license:bsd-3)))
4507
4508 (define-public r-ordinal
4509 (package
4510 (name "r-ordinal")
4511 (version "2019.12-10")
4512 (source
4513 (origin
4514 (method url-fetch)
4515 (uri (cran-uri "ordinal" version))
4516 (sha256
4517 (base32
4518 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
4519 (build-system r-build-system)
4520 (propagated-inputs
4521 `(("r-mass" ,r-mass)
4522 ("r-matrix" ,r-matrix)
4523 ("r-numderiv" ,r-numderiv)
4524 ("r-ucminf" ,r-ucminf)))
4525 (home-page "https://github.com/runehaubo/ordinal")
4526 (synopsis "Regression models for ordinal data")
4527 (description
4528 "This package provides an implementation of cumulative link (mixed)
4529 models also known as ordered regression models, proportional odds models,
4530 proportional hazards models for grouped survival times and ordered models.
4531 Estimation is via maximum likelihood and mixed models are fitted with the
4532 Laplace approximation and adaptive Gauss-Hermite quadrature.")
4533 (license license:gpl2+)))
4534
4535 (define-public r-jomo
4536 (package
4537 (name "r-jomo")
4538 (version "2.7-2")
4539 (source
4540 (origin
4541 (method url-fetch)
4542 (uri (cran-uri "jomo" version))
4543 (sha256
4544 (base32
4545 "1sbcpacxnxbzwa8rr9x2bq7hh0s3sw6yznr90dkp43n6xk5xaqir"))))
4546 (build-system r-build-system)
4547 (propagated-inputs
4548 `(("r-lme4" ,r-lme4)
4549 ("r-mass" ,r-mass)
4550 ("r-ordinal" ,r-ordinal)
4551 ("r-survival" ,r-survival)))
4552 (home-page "https://cran.r-project.org/web/packages/jomo/")
4553 (synopsis "Multilevel Joint Modelling Multiple Imputation")
4554 (description
4555 "Similarly to Schafer's package pan, jomo is a package for multilevel
4556 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
4557 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
4558 possibility of handling binary and categorical data through latent normal
4559 variables, the option to use cluster-specific covariance matrices and to
4560 impute compatibly with the substantive model.")
4561 (license license:gpl2)))
4562
4563 (define-public r-pan
4564 (package
4565 (name "r-pan")
4566 (version "1.6")
4567 (source
4568 (origin
4569 (method url-fetch)
4570 (uri (cran-uri "pan" version))
4571 (sha256
4572 (base32
4573 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
4574 (build-system r-build-system)
4575 (native-inputs `(("gfortran" ,gfortran)))
4576 (home-page "https://cran.r-project.org/web/packages/pan/")
4577 (synopsis "Multiple imputation for multivariate panel or clustered data")
4578 (description
4579 "This package implements multiple imputation for multivariate panel or
4580 clustered data.")
4581 (license license:gpl3)))
4582
4583 (define-public r-mitml
4584 (package
4585 (name "r-mitml")
4586 (version "0.4-1")
4587 (source
4588 (origin
4589 (method url-fetch)
4590 (uri (cran-uri "mitml" version))
4591 (sha256
4592 (base32
4593 "1bw92fl6xp3yvawh3nbjzs4hp4alpwj6vnv6lsysd74aqndw447c"))))
4594 (build-system r-build-system)
4595 (propagated-inputs
4596 `(("r-haven" ,r-haven)
4597 ("r-jomo" ,r-jomo)
4598 ("r-pan" ,r-pan)))
4599 (native-inputs
4600 `(("r-knitr" ,r-knitr)))
4601 (home-page "https://cran.r-project.org/web/packages/mitml/")
4602 (synopsis "Tools for multiple imputation in multilevel modeling")
4603 (description
4604 "This package provides tools for multiple imputation of missing data in
4605 multilevel modeling. It includes a user-friendly interface to the packages
4606 pan and jomo, and several functions for visualization, data management and the
4607 analysis of multiply imputed data sets.")
4608 (license license:gpl2+)))
4609
4610 (define-public r-mice
4611 (package
4612 (name "r-mice")
4613 (version "3.13.0")
4614 (source
4615 (origin
4616 (method url-fetch)
4617 (uri (cran-uri "mice" version))
4618 (sha256
4619 (base32
4620 "11cpyqlilakan2pwjzacb9jjlazazsqdngy237nnrj8j6mky822i"))))
4621 (build-system r-build-system)
4622 (propagated-inputs
4623 `(("r-broom" ,r-broom)
4624 ("r-cpp11" ,r-cpp11)
4625 ("r-dplyr" ,r-dplyr)
4626 ("r-generics" ,r-generics)
4627 ("r-lattice" ,r-lattice)
4628 ("r-rcpp" ,r-rcpp)
4629 ("r-rlang" ,r-rlang)
4630 ("r-tidyr" ,r-tidyr)))
4631 (home-page "https://cran.r-project.org/web/packages/mice/")
4632 (synopsis "Multivariate imputation by chained equations")
4633 (description
4634 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
4635 implemented by the MICE algorithm as described in @url{Van Buuren and
4636 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
4637 variable has its own imputation model. Built-in imputation models are
4638 provided for continuous data (predictive mean matching, normal), binary
4639 data (logistic regression), unordered categorical data (polytomous logistic
4640 regression) and ordered categorical data (proportional odds). MICE can also
4641 impute continuous two-level data (normal model, pan, second-level variables).
4642 Passive imputation can be used to maintain consistency between variables.
4643 Various diagnostic plots are available to inspect the quality of the
4644 imputations.")
4645 ;; Any of these two versions.
4646 (license (list license:gpl2 license:gpl3))))
4647
4648 (define-public r-truncnorm
4649 (package
4650 (name "r-truncnorm")
4651 (version "1.0-8")
4652 (source
4653 (origin
4654 (method url-fetch)
4655 (uri (cran-uri "truncnorm" version))
4656 (sha256
4657 (base32
4658 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
4659 (build-system r-build-system)
4660 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
4661 (synopsis "Truncated normal distribution")
4662 (description "This package provides functions for the truncated normal
4663 distribution with mean equal to @code{mean} and standard deviation equal to
4664 @code{sd}. It includes density, distribution, quantile, and expected value
4665 functions, as well as a random generation function.")
4666 (license license:gpl2)))
4667
4668 (define-public r-rsolnp
4669 (package
4670 (name "r-rsolnp")
4671 (version "1.16")
4672 (source
4673 (origin
4674 (method url-fetch)
4675 (uri (cran-uri "Rsolnp" version))
4676 (sha256
4677 (base32
4678 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
4679 (properties `((upstream-name . "Rsolnp")))
4680 (build-system r-build-system)
4681 (propagated-inputs
4682 `(("r-truncnorm" ,r-truncnorm)))
4683 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
4684 (synopsis "General non-linear optimization")
4685 (description "The Rsolnp package implements a general non-linear augmented
4686 Lagrange multiplier method solver, a @dfn{sequential quadratic
4687 programming} (SQP) based solver).")
4688 ;; Any version of the GPL.
4689 (license license:gpl2+)))
4690
4691 (define-public r-hardyweinberg
4692 (package
4693 (name "r-hardyweinberg")
4694 (version "1.7.1")
4695 (source
4696 (origin
4697 (method url-fetch)
4698 (uri (cran-uri "HardyWeinberg" version))
4699 (sha256
4700 (base32
4701 "0afjz818yvaq3akvgpy4irnlpspd2dj71qkrwj81lm9y36ypwlw6"))))
4702 (properties `((upstream-name . "HardyWeinberg")))
4703 (build-system r-build-system)
4704 (propagated-inputs
4705 `(("r-mice" ,r-mice)
4706 ("r-rcpp" ,r-rcpp)
4707 ("r-rsolnp" ,r-rsolnp)))
4708 (home-page "https://cran.r-project.org/package=HardyWeinberg")
4709 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
4710 (description
4711 "This package contains tools for exploring Hardy-Weinberg equilibrium for
4712 diallelic genetic marker data. All classical tests (chi-square, exact,
4713 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
4714 included in the package, as well as functions for power computation and for
4715 the simulation of marker data under equilibrium and disequilibrium. Routines
4716 for dealing with markers on the X-chromosome are included. Functions for
4717 testing equilibrium in the presence of missing data by using multiple
4718 imputation are also provided. Implements several graphics for exploring the
4719 equilibrium status of a large set of diallelic markers: ternary plots with
4720 acceptance regions, log-ratio plots and Q-Q plots.")
4721 (license license:gpl2+)))
4722
4723 (define-public r-sm
4724 (package
4725 (name "r-sm")
4726 (version "2.2-5.6")
4727 (source
4728 (origin
4729 (method url-fetch)
4730 (uri (cran-uri "sm" version))
4731 (sha256
4732 (base32
4733 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
4734 (build-system r-build-system)
4735 (native-inputs `(("gfortran" ,gfortran)))
4736 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
4737 (synopsis "Smoothing methods for nonparametric regression and density estimation")
4738 (description
4739 "This is software accompanying the book 'Applied Smoothing Techniques for
4740 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
4741 University Press. It provides smoothing methods for nonparametric regression
4742 and density estimation")
4743 (license license:gpl2+)))
4744
4745 (define-public r-venndiagram
4746 (package
4747 (name "r-venndiagram")
4748 (version "1.6.20")
4749 (source (origin
4750 (method url-fetch)
4751 (uri (cran-uri "VennDiagram" version))
4752 (sha256
4753 (base32
4754 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
4755 (properties `((upstream-name . "VennDiagram")))
4756 (build-system r-build-system)
4757 (propagated-inputs
4758 `(("r-futile-logger" ,r-futile-logger)))
4759 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
4760 (synopsis "Generate High-Resolution Venn and Euler Plots")
4761 (description
4762 "This package provides a set of functions to generate high-resolution
4763 Venn and Euler plots. It includes handling for several special cases,
4764 including two-case scaling, and extensive customization of plot shape and
4765 structure.")
4766 (license license:gpl2+)))
4767
4768 (define-public r-vioplot
4769 (package
4770 (name "r-vioplot")
4771 (version "0.3.5")
4772 (source
4773 (origin
4774 (method url-fetch)
4775 (uri (cran-uri "vioplot" version))
4776 (sha256
4777 (base32
4778 "0aiy615kn9lpr2cs757g3pklg81n01yhqh0wrwv111fn3cy86r0v"))))
4779 (build-system r-build-system)
4780 (propagated-inputs
4781 `(("r-sm" ,r-sm)
4782 ("r-zoo" ,r-zoo)))
4783 (native-inputs
4784 `(("r-knitr" ,r-knitr)))
4785 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
4786 (synopsis "Violin plot")
4787 (description
4788 "This package provides a violin plot, which is a combination of a box
4789 plot and a kernel density plot.")
4790 (license license:bsd-3)))
4791
4792 (define-public r-rsofia
4793 (package
4794 (name "r-rsofia")
4795 (version "1.1")
4796 (source (origin
4797 (method url-fetch)
4798 ;; This package has been removed from CRAN, so we can
4799 ;; only fetch it from the archives.
4800 (uri (string-append "https://cran.r-project.org/src/"
4801 "contrib/Archive/RSofia/RSofia_"
4802 version ".tar.gz"))
4803 (sha256
4804 (base32
4805 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
4806 (properties `((upstream-name . "RSofia")))
4807 (build-system r-build-system)
4808 (propagated-inputs
4809 `(("r-rcpp" ,r-rcpp)))
4810 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
4811 (synopsis "Port of sofia-ml to R")
4812 (description "This package is a port of sofia-ml to R. Sofia-ml is a
4813 suite of fast incremental algorithms for machine learning that can be used for
4814 training models for classification or ranking.")
4815 (license license:asl2.0)))
4816
4817 (define-public r-xts
4818 (package
4819 (name "r-xts")
4820 (version "0.12.1")
4821 (source
4822 (origin
4823 (method url-fetch)
4824 (uri (cran-uri "xts" version))
4825 (sha256
4826 (base32
4827 "0b6a7mpyk9aw6axas7nz01gadczprwwfhii01fz31z26z555i06n"))))
4828 (build-system r-build-system)
4829 (propagated-inputs `(("r-zoo" ,r-zoo)))
4830 (home-page "https://github.com/joshuaulrich/xts")
4831 (synopsis "Extensible time series")
4832 (description
4833 "This package provides for uniform handling of R's different time-based
4834 data classes by extending @code{zoo}, maximizing native format information
4835 preservation and allowing for user-level customization and extension, while
4836 simplifying cross-class interoperability.")
4837 (license license:gpl2+)))
4838
4839 (define-public r-performanceanalytics
4840 (package
4841 (name "r-performanceanalytics")
4842 (version "2.0.4")
4843 (source
4844 (origin
4845 (method url-fetch)
4846 (uri (cran-uri "PerformanceAnalytics" version))
4847 (sha256
4848 (base32
4849 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
4850 (properties
4851 `((upstream-name . "PerformanceAnalytics")))
4852 (build-system r-build-system)
4853 (propagated-inputs
4854 `(("r-quadprog" ,r-quadprog)
4855 ("r-xts" ,r-xts)
4856 ("r-zoo" ,r-zoo)))
4857 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
4858 (synopsis "Econometric tools for performance and risk analysis")
4859 (description "This is a collection of econometric functions for
4860 performance and risk analysis. This package aims to aid practitioners and
4861 researchers in utilizing the latest research in analysis of non-normal return
4862 streams. In general, it is most tested on return (rather than price) data on
4863 a regular scale, but most functions will work with irregular return data as
4864 well, and increasing numbers of functions will work with P&L or price data
4865 where possible.")
4866 ;; Either version may be picked.
4867 (license (list license:gpl2 license:gpl3))))
4868
4869 (define-public r-laeken
4870 (package
4871 (name "r-laeken")
4872 (version "0.5.1")
4873 (source
4874 (origin
4875 (method url-fetch)
4876 (uri (cran-uri "laeken" version))
4877 (sha256
4878 (base32
4879 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
4880 (build-system r-build-system)
4881 (propagated-inputs
4882 `(("r-boot" ,r-boot)
4883 ("r-mass" ,r-mass)))
4884 (home-page "https://cran.r-project.org/web/packages/laeken/")
4885 (synopsis "Estimation of indicators on social exclusion and poverty")
4886 (description "This package provides tools for the estimation of indicators
4887 on social exclusion and poverty, as well as an implementation of Pareto tail
4888 modeling for empirical income distributions.")
4889 (license license:gpl2+)))
4890
4891 (define-public r-vcd
4892 (package
4893 (name "r-vcd")
4894 (version "1.4-8")
4895 (source
4896 (origin
4897 (method url-fetch)
4898 (uri (cran-uri "vcd" version))
4899 (sha256
4900 (base32
4901 "030yyhpzsj4ivwrla7p9kgvmyjh6b8fr7czf678ykxjj64ccnvr3"))))
4902 (build-system r-build-system)
4903 (propagated-inputs
4904 `(("r-colorspace" ,r-colorspace)
4905 ("r-lmtest" ,r-lmtest)
4906 ("r-mass" ,r-mass)))
4907 (home-page "https://cran.r-project.org/web/packages/vcd/")
4908 (synopsis "Visualizing categorical data")
4909 (description "This package provides visualization techniques, data sets,
4910 summary and inference procedures aimed particularly at categorical data.
4911 Special emphasis is given to highly extensible grid graphics. The package was
4912 originally inspired by the book \"Visualizing Categorical Data\" by Michael
4913 Friendly and is now the main support package for a new book, \"Discrete Data
4914 Analysis with R\" by Michael Friendly and David Meyer (2015).")
4915 (license license:gpl2)))
4916
4917 (define-public r-ica
4918 (package
4919 (name "r-ica")
4920 (version "1.0-2")
4921 (source
4922 (origin
4923 (method url-fetch)
4924 (uri (cran-uri "ica" version))
4925 (sha256
4926 (base32
4927 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
4928 (build-system r-build-system)
4929 (home-page "https://cran.r-project.org/web/packages/ica/")
4930 (synopsis "Independent component analysis")
4931 (description "This package provides tools for @dfn{Independent Component
4932 Analysis} (ICA) using various algorithms: FastICA,
4933 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
4934 of Eigenmatrices} (JADE).")
4935 (license license:gpl2+)))
4936
4937 (define-public r-dtw
4938 (package
4939 (name "r-dtw")
4940 (version "1.22-3")
4941 (source
4942 (origin
4943 (method url-fetch)
4944 (uri (cran-uri "dtw" version))
4945 (sha256
4946 (base32
4947 "004gm4mzgdzdj807j3bwqsv5lizmnmz5jq514bdjshhkysnzjz6z"))))
4948 (build-system r-build-system)
4949 (propagated-inputs `(("r-proxy" ,r-proxy)))
4950 (home-page "http://dtw.r-forge.r-project.org/")
4951 (synopsis "Dynamic Time Warping Algorithms")
4952 (description "This package provides a comprehensive implementation of
4953 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
4954 optimal (least cumulative distance) alignment between points of two time
4955 series. Common DTW variants covered include local (slope) and global (window)
4956 constraints, subsequence matches, arbitrary distance definitions,
4957 normalizations, minimum variance matching, and so on.")
4958 (license license:gpl2+)))
4959
4960 (define-public r-sdmtools
4961 (package
4962 (name "r-sdmtools")
4963 (version "1.1-221.2")
4964 (source
4965 (origin
4966 (method url-fetch)
4967 (uri (cran-uri "SDMTools" version))
4968 (sha256
4969 (base32
4970 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
4971 (properties `((upstream-name . "SDMTools")))
4972 (build-system r-build-system)
4973 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
4974 (home-page "https://www.rforge.net/SDMTools/")
4975 (synopsis "Species distribution modelling tools")
4976 (description "This package provides a set of tools for post processing
4977 the outcomes of species distribution modeling exercises. It includes novel
4978 methods for comparing models and tracking changes in distributions through
4979 time. It further includes methods for visualizing outcomes, selecting
4980 thresholds, calculating measures of accuracy and landscape fragmentation
4981 statistics, etc.")
4982 (license license:gpl3+)))
4983
4984 (define-public r-scatterplot3d
4985 (package
4986 (name "r-scatterplot3d")
4987 (version "0.3-41")
4988 (source
4989 (origin
4990 (method url-fetch)
4991 (uri (cran-uri "scatterplot3d" version))
4992 (sha256
4993 (base32
4994 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
4995 (build-system r-build-system)
4996 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
4997 (synopsis "3D scatter plot")
4998 (description "This package provides an implementation of scatter plots for
4999 plotting. a three dimensional point cloud.")
5000 (license license:gpl2)))
5001
5002 (define-public r-ggridges
5003 (package
5004 (name "r-ggridges")
5005 (version "0.5.3")
5006 (source
5007 (origin
5008 (method url-fetch)
5009 (uri (cran-uri "ggridges" version))
5010 (sha256
5011 (base32
5012 "0bmlqy1p6rac90af97ffpdi6php7dblx66l2hcm8ljidgyqzmspm"))))
5013 (build-system r-build-system)
5014 (propagated-inputs
5015 `(("r-ggplot2" ,r-ggplot2)
5016 ("r-plyr" ,r-plyr)
5017 ("r-scales" ,r-scales)
5018 ("r-withr" ,r-withr)))
5019 (native-inputs
5020 `(("r-knitr" ,r-knitr)))
5021 (home-page "https://github.com/clauswilke/ggridges")
5022 (synopsis "Ridgeline plots in ggplot2")
5023 (description
5024 "Ridgeline plots provide a convenient way of visualizing changes in
5025 distributions over time or space. This package enables the creation of such
5026 plots in @code{ggplot2}.")
5027 (license license:gpl2)))
5028
5029 (define-public r-ggjoy
5030 (package
5031 (name "r-ggjoy")
5032 (version "0.4.1")
5033 (source
5034 (origin
5035 (method url-fetch)
5036 (uri (cran-uri "ggjoy" version))
5037 (sha256
5038 (base32
5039 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
5040 (build-system r-build-system)
5041 (propagated-inputs
5042 `(("r-ggplot2" ,r-ggplot2)
5043 ("r-ggridges" ,r-ggridges)))
5044 (home-page "https://github.com/clauswilke/ggjoy")
5045 (synopsis "Joyplots in ggplot2")
5046 (description "Joyplots provide a convenient way of visualizing changes in
5047 distributions over time or space. This package enables the creation of such
5048 plots in @code{ggplot2}.")
5049 (license license:gpl2)))
5050
5051 (define-public r-cli
5052 (package
5053 (name "r-cli")
5054 (version "2.3.1")
5055 (source
5056 (origin
5057 (method url-fetch)
5058 (uri (cran-uri "cli" version))
5059 (sha256
5060 (base32
5061 "1jh64ixn6mg2ap1sx4azrxkjnlsyjbfxyc9zjkx8m9dlakgf4v2i"))))
5062 (build-system r-build-system)
5063 (propagated-inputs
5064 `(("r-assertthat" ,r-assertthat)
5065 ("r-glue" ,r-glue)))
5066 (home-page "https://github.com/r-lib/cli#readme")
5067 (synopsis "Helpers for developing command line interfaces")
5068 (description "This package provides a suite of tools designed to build
5069 attractive command line interfaces (CLIs). It includes tools for drawing
5070 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
5071 (license license:expat)))
5072
5073 (define-public r-argparser
5074 (package
5075 (name "r-argparser")
5076 (version "0.7.1")
5077 (source
5078 (origin
5079 (method url-fetch)
5080 (uri (cran-uri "argparser" version))
5081 (sha256
5082 (base32
5083 "0xcl0ivsbc4iw8s7027q4cx68j6s5lihbby0xa9pmlv4wjmcvdr6"))))
5084 (build-system r-build-system)
5085 (home-page "https://bitbucket.org/djhshih/argparser")
5086 (synopsis "Command-line argument parser")
5087 (description
5088 "This package provides a cross-platform command-line argument parser
5089 written purely in R with no external dependencies. It is useful with the
5090 Rscript front-end and facilitates turning an R script into an executable
5091 script.")
5092 (license license:gpl3+)))
5093
5094 (define-public r-debugme
5095 (package
5096 (name "r-debugme")
5097 (version "1.1.0")
5098 (source
5099 (origin
5100 (method url-fetch)
5101 (uri (cran-uri "debugme" version))
5102 (sha256
5103 (base32
5104 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
5105 (build-system r-build-system)
5106 (propagated-inputs `(("r-crayon" ,r-crayon)))
5107 (home-page "https://github.com/r-lib/debugme#readme")
5108 (synopsis "Debug R packages")
5109 (description
5110 "This package allows the user to specify debug messages as special string
5111 constants, and control debugging of packages via environment variables.")
5112 (license license:expat)))
5113
5114 (define-public r-processx
5115 (package
5116 (name "r-processx")
5117 (version "3.4.5")
5118 (source
5119 (origin
5120 (method url-fetch)
5121 (uri (cran-uri "processx" version))
5122 (sha256
5123 (base32 "055v2gdrgqsfy8s672wsq79bqr44b4jjmcbqivx4p2d6lqx10s73"))))
5124 (build-system r-build-system)
5125 (propagated-inputs
5126 `(("r-ps" ,r-ps)
5127 ("r-r6" ,r-r6)))
5128 (home-page "https://github.com/r-lib/processx3")
5129 (synopsis "Execute and control system processes")
5130 (description
5131 "This package provides portable tools to run system processes in the
5132 background. It can check if a background process is running; wait on a
5133 background process to finish; get the exit status of finished processes; kill
5134 background processes and their children; restart processes. It can read the
5135 standard output and error of the processes, using non-blocking connections.
5136 @code{processx} can poll a process for standard output or error, with a
5137 timeout. It can also poll several processes at once.")
5138 (license license:expat)))
5139
5140 (define-public r-tsp
5141 (package
5142 (name "r-tsp")
5143 (version "1.1-10")
5144 (source
5145 (origin
5146 (method url-fetch)
5147 (uri (cran-uri "TSP" version))
5148 (sha256
5149 (base32
5150 "0z1v6m0vqjzxc4az3zyjaayygx0jr3mdmc56jjd421iqh0b9z5s4"))))
5151 (properties `((upstream-name . "TSP")))
5152 (build-system r-build-system)
5153 (propagated-inputs `(("r-foreach" ,r-foreach)))
5154 (home-page "https://cran.r-project.org/web/packages/TSP/")
5155 (synopsis "Traveling salesperson problem (TSP)")
5156 (description "This package provides basic infrastructure and some
5157 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
5158 traveling salesman problem).")
5159 (license license:gpl3)))
5160
5161 (define-public r-qap
5162 (package
5163 (name "r-qap")
5164 (version "0.1-1")
5165 (source
5166 (origin
5167 (method url-fetch)
5168 (uri (cran-uri "qap" version))
5169 (sha256
5170 (base32
5171 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
5172 (build-system r-build-system)
5173 (native-inputs `(("gfortran" ,gfortran)))
5174 (home-page "https://cran.r-project.org/web/packages/qap/")
5175 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
5176 (description "This package implements heuristics for the @dfn{quadratic
5177 assignment problem} (QAP). Currently only a simulated annealing heuristic is
5178 available.")
5179 (license license:gpl3)))
5180
5181 (define-public r-gclus
5182 (package
5183 (name "r-gclus")
5184 (version "1.3.2")
5185 (source
5186 (origin
5187 (method url-fetch)
5188 (uri (cran-uri "gclus" version))
5189 (sha256
5190 (base32
5191 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
5192 (build-system r-build-system)
5193 (propagated-inputs `(("r-cluster" ,r-cluster)))
5194 (home-page "https://cran.r-project.org/web/packages/gclus/")
5195 (synopsis "Clustering graphics")
5196 (description "This package orders panels in scatterplot matrices and
5197 parallel coordinate displays by some merit index. It contains various indices
5198 of merit, ordering functions, and enhanced versions of @code{pairs} and
5199 @code{parcoord} which color panels according to their merit level.")
5200 (license license:gpl2+)))
5201
5202 (define-public r-webshot
5203 (package
5204 (name "r-webshot")
5205 (version "0.5.2")
5206 (source
5207 (origin
5208 (method url-fetch)
5209 (uri (cran-uri "webshot" version))
5210 (sha256
5211 (base32
5212 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
5213 (build-system r-build-system)
5214 (propagated-inputs
5215 `(("r-callr" ,r-callr)
5216 ("r-jsonlite" ,r-jsonlite)
5217 ("r-magrittr" ,r-magrittr)))
5218 (home-page "https://github.com/wch/webshot/")
5219 (synopsis "Take screenshots of web pages")
5220 (description
5221 "Webshot makes it easy to take screenshots of web pages from within R.
5222 It can also run Shiny applications locally and take screenshots of the
5223 application; and it can render and screenshot static as well as interactive R
5224 Markdown documents.")
5225 (license license:gpl2)))
5226
5227 (define-public r-seriation
5228 (package
5229 (name "r-seriation")
5230 (version "1.2-9")
5231 (source
5232 (origin
5233 (method url-fetch)
5234 (uri (cran-uri "seriation" version))
5235 (sha256
5236 (base32
5237 "1glxn098ar1v96xlwp85kjxzfd1nyfzp2f82x5z3fm87yv57k4lb"))))
5238 (build-system r-build-system)
5239 (propagated-inputs
5240 `(("r-cluster" ,r-cluster)
5241 ("r-colorspace" ,r-colorspace)
5242 ("r-dendextend" ,r-dendextend)
5243 ("r-gclus" ,r-gclus)
5244 ("r-gplots" ,r-gplots)
5245 ("r-mass" ,r-mass)
5246 ("r-qap" ,r-qap)
5247 ("r-registry" ,r-registry)
5248 ("r-tsp" ,r-tsp)))
5249 (native-inputs `(("gfortran" ,gfortran)))
5250 (home-page "https://s2.smu.edu/IDA/seriation/")
5251 (synopsis "Infrastructure for ordering objects using seriation")
5252 (description
5253 "This package provides infrastructure for seriation with an
5254 implementation of several seriation/sequencing techniques to reorder matrices,
5255 dissimilarity matrices, and dendrograms. It also provides (optimally)
5256 reordered heatmaps, color images and clustering visualizations like
5257 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
5258 iVAT).")
5259 (license license:gpl3)))
5260
5261 (define-public r-xfun
5262 (package
5263 (name "r-xfun")
5264 (version "0.22")
5265 (source
5266 (origin
5267 (method url-fetch)
5268 (uri (cran-uri "xfun" version))
5269 (sha256
5270 (base32 "0ix3p0iw2c60whn5mvsflh0vhm4yixhw4s9d9v4023qhp077nw9y"))))
5271 (build-system r-build-system)
5272 ;; knitr itself depends on xfun
5273 #;
5274 (native-inputs
5275 `(("r-knitr" ,r-knitr)))
5276 (home-page "https://github.com/yihui/xfun")
5277 (synopsis "Miscellaneous functions")
5278 (description
5279 "This package provides miscellaneous functions commonly used in other
5280 packages maintained by Yihui Xie.")
5281 (license license:expat)))
5282
5283 (define-public r-utf8
5284 (package
5285 (name "r-utf8")
5286 (version "1.2.1")
5287 (source
5288 (origin
5289 (method url-fetch)
5290 (uri (cran-uri "utf8" version))
5291 (sha256
5292 (base32
5293 "1yw7vjn3gpkqddc91rbfh4kk0zmn2kp0jycrd3066sissh01jhdk"))))
5294 (build-system r-build-system)
5295 (native-inputs
5296 `(("r-knitr" ,r-knitr)))
5297 (home-page "https://github.com/patperry/r-utf8")
5298 (synopsis "Unicode text processing")
5299 (description
5300 "This package provides tools to process and print UTF-8 encoded
5301 international text (Unicode). Input, validate, normalize, encode, format, and
5302 display.")
5303 (license license:asl2.0)))
5304
5305 (define-public r-zeallot
5306 (package
5307 (name "r-zeallot")
5308 (version "0.1.0")
5309 (source
5310 (origin
5311 (method url-fetch)
5312 (uri (cran-uri "zeallot" version))
5313 (sha256
5314 (base32
5315 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
5316 (build-system r-build-system)
5317 (home-page "https://github.com/nteetor/zeallot")
5318 (synopsis "Multiple, unpacking, and destructuring assignment")
5319 (description
5320 "This package provides a @code{%<-%} operator to perform multiple,
5321 unpacking, and destructuring assignment in R. The operator unpacks the
5322 right-hand side of an assignment into multiple values and assigns these values
5323 to variables on the left-hand side of the assignment.")
5324 (license license:expat)))
5325
5326 (define-public r-vctrs
5327 (package
5328 (name "r-vctrs")
5329 (version "0.3.6")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (uri (cran-uri "vctrs" version))
5334 (sha256
5335 (base32
5336 "09ddxgzyah7lw42hn6n8fynsixf43s10jamsf94d2aidky63czfz"))))
5337 (build-system r-build-system)
5338 (propagated-inputs
5339 `(("r-digest" ,r-digest)
5340 ("r-ellipsis" ,r-ellipsis)
5341 ("r-glue" ,r-glue)
5342 ("r-rlang" ,r-rlang)))
5343 (native-inputs
5344 `(("r-knitr" ,r-knitr)))
5345 (home-page "https://github.com/r-lib/vctrs")
5346 (synopsis "Vector helpers")
5347 (description
5348 "There are three main goals to the @code{vctrs} package:
5349
5350 @enumerate
5351 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
5352 @code{length()} and @code{class()}. These definitions are paired with a
5353 framework for type-coercion and size-recycling.
5354 @item To define type- and size-stability as desirable function properties, use
5355 them to analyse existing base function, and to propose better alternatives.
5356 This work has been particularly motivated by thinking about the ideal
5357 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
5358 @item To provide a new @code{vctr} base class that makes it easy to create new
5359 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
5360 a few new @code{vctrs} generics, making implementation considerably simpler
5361 and more robust.
5362 @end enumerate\n")
5363 (license license:gpl3)))
5364
5365 (define-public r-pillar
5366 (package
5367 (name "r-pillar")
5368 (version "1.5.1")
5369 (source
5370 (origin
5371 (method url-fetch)
5372 (uri (cran-uri "pillar" version))
5373 (sha256
5374 (base32
5375 "0wp68cg95895aybi7yjqy0sidvc68lmfqndinpd63dysci9x3r8c"))))
5376 (build-system r-build-system)
5377 (propagated-inputs
5378 `(("r-cli" ,r-cli)
5379 ("r-crayon" ,r-crayon)
5380 ("r-ellipsis" ,r-ellipsis)
5381 ("r-fansi" ,r-fansi)
5382 ("r-lifecycle" ,r-lifecycle)
5383 ("r-rlang" ,r-rlang)
5384 ("r-utf8" ,r-utf8)
5385 ("r-vctrs" ,r-vctrs)))
5386 (native-inputs
5387 `(("r-knitr" ,r-knitr)))
5388 (home-page "https://github.com/r-lib/pillar")
5389 (synopsis "Coloured formatting for columns")
5390 (description
5391 "This package provides a @code{pillar} generic designed for formatting
5392 columns of data using the full range of colours provided by modern
5393 terminals.")
5394 (license license:gpl3)))
5395
5396 (define-public r-uuid
5397 (package
5398 (name "r-uuid")
5399 (version "0.1-4")
5400 (source
5401 (origin
5402 (method url-fetch)
5403 (uri (cran-uri "uuid" version))
5404 (sha256
5405 (base32
5406 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
5407 (build-system r-build-system)
5408 (home-page "https://www.rforge.net/uuid")
5409 (synopsis "Tools for generating and handling of UUIDs")
5410 (description
5411 "This package provides tools for generating and handling of
5412 @dfn{Universally Unique Identifiers} (UUIDs).")
5413 (license license:expat)))
5414
5415 (define-public r-tinytex
5416 (package
5417 (name "r-tinytex")
5418 (version "0.30")
5419 (source
5420 (origin
5421 (method url-fetch)
5422 (uri (cran-uri "tinytex" version))
5423 (sha256
5424 (base32
5425 "0dk6mpszwh1m65b0wfwjlcvpzywmasf6p31niqiq53wnd92my0gw"))))
5426 (build-system r-build-system)
5427 (propagated-inputs
5428 `(("r-xfun" ,r-xfun)))
5429 (home-page "https://github.com/yihui/tinytex")
5430 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
5431 (description
5432 "This package provides helper functions to install and maintain the LaTeX
5433 distribution named TinyTeX, a lightweight, cross-platform, portable, and
5434 easy-to-maintain version of TeX Live. This package also contains helper
5435 functions to compile LaTeX documents, and install missing LaTeX packages
5436 automatically.")
5437 (license license:expat)))
5438
5439 (define-public r-tinytest
5440 (package
5441 (name "r-tinytest")
5442 (version "1.2.4")
5443 (source
5444 (origin
5445 (method url-fetch)
5446 (uri (cran-uri "tinytest" version))
5447 (sha256
5448 (base32
5449 "1asryjrah3fj39gg0c6yxgpr142j5bg2n990v7q8r0a5pb8gcr45"))))
5450 (properties `((upstream-name . "tinytest")))
5451 (build-system r-build-system)
5452 (home-page "https://github.com/markvanderloo/tinytest")
5453 (synopsis "Lightweight unit testing framework")
5454 (description
5455 "This package provides a lightweight unit testing framework. Main
5456 features:
5457
5458 @enumerate
5459 @item install tests with the package;
5460 @item test results are treated as data that can be stored and manipulated;
5461 @item test files are R scripts interspersed with test commands, that can be
5462 programmed over;
5463 @item fully automated build-install-test sequence for packages;
5464 @item skip tests when not run locally (e.g. on CRAN);
5465 @item flexible and configurable output printing;
5466 @item compare computed output with output stored with the package;
5467 @item run tests in parallel;
5468 @item extensible by other packages;
5469 @item report side effects.
5470 @end enumerate
5471 ")
5472 (license license:gpl3)))
5473
5474 (define-public r-network
5475 (package
5476 (name "r-network")
5477 (version "1.16.1")
5478 (source
5479 (origin
5480 (method url-fetch)
5481 (uri (cran-uri "network" version))
5482 (sha256
5483 (base32
5484 "1cgy7vlbinyndl0zkzvnpcmi240wry6iwfb42sz1mj5c9iwkar7b"))))
5485 (build-system r-build-system)
5486 (propagated-inputs
5487 `(("r-magrittr" ,r-magrittr)
5488 ("r-tibble" ,r-tibble)))
5489 (home-page "https://statnet.org/")
5490 (synopsis "Classes for relational data")
5491 (description
5492 "This package provides tools to create and modify network objects. The
5493 @code{network} class can represent a range of relational data types, and
5494 supports arbitrary vertex/edge/graph attributes.")
5495 (license license:gpl2+)))
5496
5497 (define-public r-stabs
5498 (package
5499 (name "r-stabs")
5500 (version "0.6-4")
5501 (source
5502 (origin
5503 (method url-fetch)
5504 (uri (cran-uri "stabs" version))
5505 (sha256
5506 (base32
5507 "1nf1yg14cgxrs4np1yghpzw1nczaslfv3rvf3918wrlzg0vp6l7q"))))
5508 (build-system r-build-system)
5509 (native-inputs
5510 `(("r-knitr" ,r-knitr)))
5511 (home-page "https://github.com/hofnerb/stabs")
5512 (synopsis "Stability selection with error control")
5513 (description
5514 "This package provides resampling procedures to assess the stability of
5515 selected variables with additional finite sample error control for
5516 high-dimensional variable selection procedures such as Lasso or boosting.
5517 Both, standard stability selection (Meinshausen & Buhlmann, 2010) and
5518 complementary pairs stability selection with improved error bounds
5519 (Shah & Samworth, 2013) are implemented. The package can be combined with
5520 arbitrary user specified variable selection approaches.")
5521 (license license:gpl2)))
5522
5523 (define-public r-rle
5524 (package
5525 (name "r-rle")
5526 (version "0.9.2")
5527 (source
5528 (origin
5529 (method url-fetch)
5530 (uri (cran-uri "rle" version))
5531 (sha256
5532 (base32
5533 "0sagl0jggg40lihzy7pfq4593rfvc3b3f7g6ggi85s7n18qvwg40"))))
5534 (properties `((upstream-name . "rle")))
5535 (build-system r-build-system)
5536 (home-page "https://cran.r-project.org/web/packages/rle/")
5537 (synopsis "Common functions for run-length encoded vectors")
5538 (description
5539 "This package provides common @code{base} and @code{stats} methods for
5540 @code{rle} objects, aiming to make it possible to treat them transparently as
5541 vectors.")
5542 (license license:gpl3)))
5543
5544 (define-public r-statnet-common
5545 (package
5546 (name "r-statnet-common")
5547 (version "4.4.1")
5548 (source
5549 (origin
5550 (method url-fetch)
5551 (uri (cran-uri "statnet.common" version))
5552 (sha256
5553 (base32
5554 "1z89an46xcl1d7dacj4irhk6pkajdz7v85b2347vczwdf622pksf"))))
5555 (properties
5556 `((upstream-name . "statnet.common")))
5557 (build-system r-build-system)
5558 (propagated-inputs
5559 `(("r-coda" ,r-coda)
5560 ("r-rle" ,r-rle)))
5561 (home-page "https://statnet.org")
5562 (synopsis "R scripts and utilities used by the Statnet software")
5563 (description "This package provides non-statistical utilities used by the
5564 software developed by the Statnet Project.")
5565 (license license:gpl3)))
5566
5567 (define-public r-statcheck
5568 (package
5569 (name "r-statcheck")
5570 (version "1.3.0")
5571 (source
5572 (origin
5573 (method url-fetch)
5574 (uri (cran-uri "statcheck" version))
5575 (sha256
5576 (base32
5577 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
5578 (build-system r-build-system)
5579 (propagated-inputs
5580 `(("r-ggplot2" ,r-ggplot2)
5581 ("r-plyr" ,r-plyr)
5582 ("r-rmarkdown" ,r-rmarkdown)))
5583 (home-page "https://cran.r-project.org/web/packages/statcheck/")
5584 (synopsis "Extract statistics from articles and recompute p-values")
5585 (description "This package can automatically extract statistical
5586 null-hypothesis significant testing (NHST) results from articles and recompute
5587 the p-values based on the reported test statistic and degrees of freedom to
5588 detect possible inconsistencies.")
5589 (license license:gpl2)))
5590
5591 (define-public r-sna
5592 (package
5593 (name "r-sna")
5594 (version "2.6")
5595 (source
5596 (origin
5597 (method url-fetch)
5598 (uri (cran-uri "sna" version))
5599 (sha256
5600 (base32
5601 "0ai0v4538d30m4wks5s3lch1yfmx1ml0nnrz7ihs097lv586a09s"))))
5602 (build-system r-build-system)
5603 (propagated-inputs
5604 `(("r-network" ,r-network)
5605 ("r-statnet-common" ,r-statnet-common)))
5606 (home-page "https://statnet.org")
5607 (synopsis "Tools for social network analysis")
5608 (description
5609 "This package provides a range of tools for social network analysis,
5610 including node and graph-level indices, structural distance and covariance
5611 methods, structural equivalence detection, network regression, random graph
5612 generation, and 2D/3D network visualization.")
5613 (license license:gpl2+)))
5614
5615 (define-public r-tfisher
5616 (package
5617 (name "r-tfisher")
5618 (version "0.2.0")
5619 (source
5620 (origin
5621 (method url-fetch)
5622 (uri (cran-uri "TFisher" version))
5623 (sha256
5624 (base32
5625 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
5626 (properties `((upstream-name . "TFisher")))
5627 (build-system r-build-system)
5628 (propagated-inputs
5629 `(("r-matrix" ,r-matrix)
5630 ("r-mvtnorm" ,r-mvtnorm)
5631 ("r-sn" ,r-sn)))
5632 (home-page "https://cran.r-project.org/web/packages/TFisher/")
5633 (synopsis "Optimal thresholding Fisher's p-value combination method")
5634 (description
5635 "This package provides the @dfn{cumulative distribution function} (CDF),
5636 quantile, and statistical power calculator for a collection of thresholding
5637 Fisher's p-value combination methods, including Fisher's p-value combination
5638 method, truncated product method and, in particular, soft-thresholding
5639 Fisher's p-value combination method which is proven to be optimal in some
5640 context of signal detection. The p-value calculator for the omnibus version
5641 of these tests are also included.")
5642 (license license:gpl2)))
5643
5644 (define-public r-ttr
5645 (package
5646 (name "r-ttr")
5647 (version "0.24.2")
5648 (source
5649 (origin
5650 (method url-fetch)
5651 (uri (cran-uri "TTR" version))
5652 (sha256
5653 (base32
5654 "06vicgbhwpsww09hhha5mbcd0cwip6cvkfbhjjhp950rv64bk1r5"))))
5655 (properties `((upstream-name . "TTR")))
5656 (build-system r-build-system)
5657 (propagated-inputs
5658 `(("r-curl" ,r-curl)
5659 ("r-xts" ,r-xts)
5660 ("r-zoo" ,r-zoo)))
5661 (home-page "https://github.com/joshuaulrich/TTR")
5662 (synopsis "Technical trading rules")
5663 (description
5664 "This package provides functions and data to construct technical trading
5665 rules with R.")
5666 (license license:gpl2)))
5667
5668 (define-public r-leaps
5669 (package
5670 (name "r-leaps")
5671 (version "3.1")
5672 (source
5673 (origin
5674 (method url-fetch)
5675 (uri (cran-uri "leaps" version))
5676 (sha256
5677 (base32
5678 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
5679 (build-system r-build-system)
5680 (native-inputs `(("gfortran" ,gfortran)))
5681 (home-page "https://cran.r-project.org/web/packages/leaps/")
5682 (synopsis "Regression subset selection")
5683 (description
5684 "This package provides tools for regression subset selection, including
5685 exhaustive search.")
5686 (license license:gpl2+)))
5687
5688 (define-public r-splus2r
5689 (package
5690 (name "r-splus2r")
5691 (version "1.3-3")
5692 (source
5693 (origin
5694 (method url-fetch)
5695 (uri (cran-uri "splus2R" version))
5696 (sha256
5697 (base32
5698 "035zd22zcpkh74rik9ws6g8al6vjz7jgrqs5si361bzb5n290p3x"))))
5699 (properties `((upstream-name . "splus2R")))
5700 (build-system r-build-system)
5701 (home-page "https://cran.r-project.org/web/packages/splus2R/")
5702 (synopsis "Supplemental S-PLUS functionality in R")
5703 (description
5704 "Currently there are many functions in S-PLUS that are missing in R. To
5705 facilitate the conversion of S-PLUS packages to R packages, this package
5706 provides some missing S-PLUS functionality in R.")
5707 (license license:gpl2)))
5708
5709 (define-public r-ifultools
5710 (package
5711 (name "r-ifultools")
5712 (version "2.0-22")
5713 (source
5714 (origin
5715 (method url-fetch)
5716 (uri (cran-uri "ifultools" version))
5717 (sha256
5718 (base32
5719 "0f95vqc47dgssqngznk0rclr72ndbyxc7gdq2cmbksvq7qpn3gg1"))))
5720 (build-system r-build-system)
5721 (propagated-inputs
5722 `(("r-mass" ,r-mass)
5723 ("r-splus2r" ,r-splus2r)))
5724 (home-page "https://cran.r-project.org/web/packages/ifultools/")
5725 (synopsis "Insightful research tools")
5726 (description "This package provides C code used by the wmtsa, fractal, and
5727 sapa R packages.")
5728 (license license:gpl2)))
5729
5730 (define-public r-sapa
5731 (package
5732 (name "r-sapa")
5733 (version "2.0-2")
5734 (source
5735 (origin
5736 (method url-fetch)
5737 (uri (cran-uri "sapa" version))
5738 (sha256
5739 (base32
5740 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
5741 (build-system r-build-system)
5742 (propagated-inputs
5743 `(("r-ifultools" ,r-ifultools)
5744 ("r-splus2r" ,r-splus2r)))
5745 (home-page "https://cran.r-project.org/web/packages/sapa/")
5746 (synopsis "Spectral analysis for physical applications")
5747 (description "This package provides software for the book Spectral
5748 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
5749 Cambridge University Press, 1993.")
5750 (license license:gpl2)))
5751
5752 (define-public r-aggregation
5753 (package
5754 (name "r-aggregation")
5755 (version "1.0.1")
5756 (source
5757 (origin
5758 (method url-fetch)
5759 (uri (cran-uri "aggregation" version))
5760 (sha256
5761 (base32
5762 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
5763 (build-system r-build-system)
5764 (home-page "https://cran.r-project.org/web/packages/aggregation/")
5765 (synopsis "Methods for p-value aggregation")
5766 (description
5767 "This package contains functionality for performing the following methods
5768 of p-value aggregation: Fisher's method, the Lancaster method (weighted
5769 Fisher's method), and Sidak correction.")
5770 (license license:gpl3)))
5771
5772 (define-public r-quantmod
5773 (package
5774 (name "r-quantmod")
5775 (version "0.4.18")
5776 (source
5777 (origin
5778 (method url-fetch)
5779 (uri (cran-uri "quantmod" version))
5780 (sha256
5781 (base32
5782 "0dbcrncv06iqcbkky95dd7l32xq0hhbnkb0kj8wwzym1jf748h5a"))))
5783 (build-system r-build-system)
5784 (propagated-inputs
5785 `(("r-curl" ,r-curl)
5786 ("r-ttr" ,r-ttr)
5787 ("r-xts" ,r-xts)
5788 ("r-zoo" ,r-zoo)))
5789 (home-page "https://cran.r-project.org/web/packages/quantmod/")
5790 (synopsis "Quantitative financial modelling framework")
5791 (description "This package provides a quantitative financial modelling
5792 framework to allow users to specify, build, trade, and analyse quantitative
5793 financial trading strategies.")
5794 (license license:gpl3)))
5795
5796 (define-public r-tseries
5797 (package
5798 (name "r-tseries")
5799 (version "0.10-48")
5800 (source
5801 (origin
5802 (method url-fetch)
5803 (uri (cran-uri "tseries" version))
5804 (sha256
5805 (base32
5806 "0wa4rcf0igayi1yrwc6wak6d491560p0z89rz32haqlkiiq25gak"))))
5807 (build-system r-build-system)
5808 (propagated-inputs
5809 `(("r-quadprog" ,r-quadprog)
5810 ("r-quantmod" ,r-quantmod)
5811 ("r-zoo" ,r-zoo)))
5812 (native-inputs
5813 `(("gfortran" ,gfortran)))
5814 (home-page "https://cran.r-project.org/web/packages/tseries/")
5815 (synopsis "Time series analysis and computational finance")
5816 (description
5817 "This package provides functions relating to time series analysis and
5818 computational finance.")
5819 (license license:gpl2)))
5820
5821 (define-public r-wmtsa
5822 (package
5823 (name "r-wmtsa")
5824 (version "2.0-3")
5825 (source
5826 (origin
5827 (method url-fetch)
5828 (uri (cran-uri "wmtsa" version))
5829 (sha256
5830 (base32
5831 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
5832 (build-system r-build-system)
5833 (propagated-inputs
5834 `(("r-ifultools" ,r-ifultools)
5835 ("r-mass" ,r-mass)
5836 ("r-splus2r" ,r-splus2r)))
5837 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
5838 (synopsis "Wavelet methods for time series analysis")
5839 (description
5840 "This package provides software to accompany the book \"Wavelet Methods
5841 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
5842 University Press, 2000.")
5843 (license license:gpl2)))
5844
5845 (define-public r-tsa
5846 (package
5847 (name "r-tsa")
5848 (version "1.3")
5849 (source
5850 (origin
5851 (method url-fetch)
5852 (uri (cran-uri "TSA" version))
5853 (sha256
5854 (base32
5855 "1bv5q609lhmrcxnjnvcj497fbjlv89zwa8q918hw4iki5nkvwwdb"))))
5856 (properties `((upstream-name . "TSA")))
5857 (build-system r-build-system)
5858 (propagated-inputs
5859 `(("r-leaps" ,r-leaps)
5860 ("r-locfit" ,r-locfit)
5861 ("r-mgcv" ,r-mgcv)
5862 ("r-tseries" ,r-tseries)))
5863 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
5864 (synopsis "Time series analysis")
5865 (description
5866 "This package contains R functions and datasets detailed in the book
5867 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
5868 Cryer and Kung-Sik Chan.")
5869 (license license:gpl2+)))
5870
5871 (define-public r-extradistr
5872 (package
5873 (name "r-extradistr")
5874 (version "1.9.1")
5875 (source
5876 (origin
5877 (method url-fetch)
5878 (uri (cran-uri "extraDistr" version))
5879 (sha256
5880 (base32
5881 "1gypnbvdzczl0mvznvy8r7hzsvc5gvdvi2mmzj21cqdw9n63944r"))))
5882 (properties `((upstream-name . "extraDistr")))
5883 (build-system r-build-system)
5884 (propagated-inputs
5885 `(("r-rcpp" ,r-rcpp)))
5886 (home-page "https://github.com/twolodzko/extraDistr")
5887 (synopsis "Additional univariate and multivariate distributions")
5888 (description
5889 "This package implements density, distribution functions, quantile
5890 functions and random generation functions for a large number of univariate and
5891 multivariate distributions.")
5892 (license license:gpl2)))
5893
5894 (define-public r-fractal
5895 (package
5896 (name "r-fractal")
5897 (version "2.0-4")
5898 (source
5899 (origin
5900 (method url-fetch)
5901 (uri (cran-uri "fractal" version))
5902 (sha256
5903 (base32
5904 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
5905 (build-system r-build-system)
5906 (propagated-inputs
5907 `(("r-ifultools" ,r-ifultools)
5908 ("r-mass" ,r-mass)
5909 ("r-sapa" ,r-sapa)
5910 ("r-scatterplot3d" ,r-scatterplot3d)
5911 ("r-splus2r" ,r-splus2r)
5912 ("r-wmtsa" ,r-wmtsa)))
5913 (home-page "https://cran.r-project.org/web/packages/fractal/")
5914 (synopsis "Fractal time series modeling and analysis")
5915 (description
5916 "This package provides tools for stochastic fractal and deterministic
5917 chaotic time series analysis.")
5918 (license license:gpl2)))
5919
5920 (define-public r-urca
5921 (package
5922 (name "r-urca")
5923 (version "1.3-0")
5924 (source
5925 (origin
5926 (method url-fetch)
5927 (uri (cran-uri "urca" version))
5928 (sha256
5929 (base32
5930 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
5931 (build-system r-build-system)
5932 (propagated-inputs `(("r-nlme" ,r-nlme)))
5933 (native-inputs `(("gfortran" ,gfortran)))
5934 (home-page "https://cran.r-project.org/web/packages/urca/")
5935 (synopsis "Unit root and cointegration tests for time series data")
5936 (description
5937 "This package provides unit root and cointegration tests encountered in
5938 applied econometric analysis.")
5939 (license license:gpl2+)))
5940
5941 (define-public r-cubature
5942 (package
5943 (name "r-cubature")
5944 (version "2.0.4.1")
5945 (source
5946 (origin
5947 (method url-fetch)
5948 (uri (cran-uri "cubature" version))
5949 (sha256
5950 (base32
5951 "006la36gxdikvmdnq4ny7ik7r30id4z3b3fqsl57dpqwkpsbsgrq"))))
5952 (build-system r-build-system)
5953 (propagated-inputs
5954 `(("r-rcpp" ,r-rcpp)))
5955 (native-inputs
5956 `(("r-knitr" ,r-knitr)))
5957 (home-page "https://github.com/bnaras/cubature")
5958 (synopsis "Adaptive multivariate integration over hypercubes")
5959 (description
5960 "This package is an R wrapper around the cubature C library for adaptive
5961 multivariate integration over hypercubes. This version provides both
5962 @code{hcubature} and @code{pcubature} routines in addition to a vector
5963 interface.")
5964 ;; The included cubature C library is released under GPLv2+, but the
5965 ;; wrapper declares the license to be GPLv3+.
5966 (license (list license:gpl2+ license:gpl3+))))
5967
5968 (define-public r-trend
5969 (package
5970 (name "r-trend")
5971 (version "1.1.4")
5972 (source
5973 (origin
5974 (method url-fetch)
5975 (uri (cran-uri "trend" version))
5976 (sha256
5977 (base32
5978 "1mr5g5gaxiqj6x83ngcbwwh57vhrhcz0x9dh0rmvs9y2ivk29ccs"))))
5979 (build-system r-build-system)
5980 (propagated-inputs
5981 `(("r-extradistr" ,r-extradistr)))
5982 (native-inputs
5983 `(("gfortran" ,gfortran)))
5984 (home-page "https://cran.r-project.org/web/packages/trend/")
5985 (synopsis "Non-parametric trend tests and change-point detection")
5986 (description
5987 "The analysis of environmental data often requires the detection of
5988 trends and change-points. This package includes tests for trend
5989 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
5990 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
5991 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
5992 correlation trend test), change-point detection (Lanzante's test procedures,
5993 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
5994 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
5995 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
5996 sample Robust Rank-Order Distributional Test.")
5997 (license license:gpl3)))
5998
5999 (define-public r-expm
6000 (package
6001 (name "r-expm")
6002 (version "0.999-6")
6003 (source
6004 (origin
6005 (method url-fetch)
6006 (uri (cran-uri "expm" version))
6007 (sha256
6008 (base32
6009 "1p5dapwv8ycxaysgi6imnby04i4kh1c5a2czqa4wygz0s8pr2y9c"))))
6010 (build-system r-build-system)
6011 (propagated-inputs `(("r-matrix" ,r-matrix)))
6012 (native-inputs `(("gfortran" ,gfortran)))
6013 (home-page "https://r-forge.r-project.org/projects/expm/")
6014 (synopsis "Tools for matrix exponentials and related quantities")
6015 (description
6016 "This package provides tools for the computation of the matrix
6017 exponential, logarithm, square root, and related quantities.")
6018 (license license:gpl2+)))
6019
6020 (define-public r-complexplus
6021 (package
6022 (name "r-complexplus")
6023 (version "2.1")
6024 (source
6025 (origin
6026 (method url-fetch)
6027 (uri (cran-uri "complexplus" version))
6028 (sha256
6029 (base32
6030 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
6031 (build-system r-build-system)
6032 (propagated-inputs
6033 `(("r-expm" ,r-expm)
6034 ("r-matrix" ,r-matrix)))
6035 (home-page "https://cran.r-project.org/web/packages/complexplus/")
6036 (synopsis "Functions of complex or real variables")
6037 (description
6038 "This package extends several functions to the complex domain, including
6039 the matrix exponential and logarithm, and the determinant.")
6040 (license license:gpl2)))
6041
6042 (define-public r-phontools
6043 (package
6044 (name "r-phontools")
6045 (version "0.2-2.1")
6046 (source
6047 (origin
6048 (method url-fetch)
6049 (uri (cran-uri "phonTools" version))
6050 (sha256
6051 (base32
6052 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
6053 (properties `((upstream-name . "phonTools")))
6054 (build-system r-build-system)
6055 (home-page "http://www.santiagobarreda.com/rscripts.html")
6056 (synopsis "Tools for phonetic and acoustic analyses")
6057 (description
6058 "This package contains tools for the organization, display, and analysis
6059 of the sorts of data frequently encountered in phonetics research and
6060 experimentation, including the easy creation of IPA vowel plots, and the
6061 creation and manipulation of WAVE audio files.")
6062 (license license:bsd-2)))
6063
6064 (define-public r-np
6065 (package
6066 (name "r-np")
6067 (version "0.60-10")
6068 (source
6069 (origin
6070 (method url-fetch)
6071 (uri (cran-uri "np" version))
6072 (sha256
6073 (base32
6074 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
6075 (build-system r-build-system)
6076 (propagated-inputs
6077 `(("r-boot" ,r-boot)
6078 ("r-cubature" ,r-cubature)
6079 ("r-quadprog" ,r-quadprog)
6080 ("r-quantreg" ,r-quantreg)))
6081 (home-page "https://github.com/JeffreyRacine/R-Package-np")
6082 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
6083 (description "This package provides non-parametric (and semi-parametric)
6084 kernel methods that seamlessly handle a mix of continuous, unordered, and
6085 ordered factor data types.")
6086 ;; Any version of the GPL.
6087 (license license:gpl3+)))
6088
6089 (define-public r-powerplus
6090 (package
6091 (name "r-powerplus")
6092 (version "3.1")
6093 (source
6094 (origin
6095 (method url-fetch)
6096 (uri (cran-uri "powerplus" version))
6097 (sha256
6098 (base32
6099 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
6100 (build-system r-build-system)
6101 (propagated-inputs
6102 `(("r-complexplus" ,r-complexplus)
6103 ("r-expm" ,r-expm)
6104 ("r-mass" ,r-mass)
6105 ("r-matrix" ,r-matrix)
6106 ("r-phontools" ,r-phontools)))
6107 (home-page "https://cran.r-project.org/web/packages/powerplus/")
6108 (synopsis "Exponentiation operations")
6109 (description
6110 "This package provides tools for the computation of matrix and scalar
6111 exponentiation.")
6112 (license license:gpl2)))
6113
6114 (define-public r-egg
6115 (package
6116 (name "r-egg")
6117 (version "0.4.5")
6118 (source
6119 (origin
6120 (method url-fetch)
6121 (uri (cran-uri "egg" version))
6122 (sha256
6123 (base32
6124 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
6125 (properties `((upstream-name . "egg")))
6126 (build-system r-build-system)
6127 (propagated-inputs
6128 `(("r-ggplot2" ,r-ggplot2)
6129 ("r-gridextra" ,r-gridextra)
6130 ("r-gtable" ,r-gtable)))
6131 (home-page "https://cran.r-project.org/web/packages/egg")
6132 (synopsis "Extensions for ggplot2")
6133 (description
6134 "This package provides miscellaneous functions to help customize ggplot2
6135 objects. High-level functions are provided to post-process ggplot2 layouts
6136 and allow alignment between plot panels, as well as setting panel sizes to
6137 fixed values. Other functions include a custom @code{geom}, and helper
6138 functions to enforce symmetric scales or add tags to facetted plots.")
6139 (license license:gpl3)))
6140
6141 (define-public r-heatmaply
6142 (package
6143 (name "r-heatmaply")
6144 (version "1.2.1")
6145 (source
6146 (origin
6147 (method url-fetch)
6148 (uri (cran-uri "heatmaply" version))
6149 (sha256
6150 (base32
6151 "0hspfkninwy62sf8gkdcsvwnvl66bbnjs2dpah9rr95a3rsgdp9d"))))
6152 (build-system r-build-system)
6153 (propagated-inputs
6154 `(("r-assertthat" ,r-assertthat)
6155 ("r-colorspace" ,r-colorspace)
6156 ("r-dendextend" ,r-dendextend)
6157 ("r-egg" ,r-egg)
6158 ("r-ggplot2" ,r-ggplot2)
6159 ("r-htmlwidgets" ,r-htmlwidgets)
6160 ("r-magrittr" ,r-magrittr)
6161 ("r-plotly" ,r-plotly)
6162 ("r-rcolorbrewer" ,r-rcolorbrewer)
6163 ("r-reshape2" ,r-reshape2)
6164 ("r-scales" ,r-scales)
6165 ("r-seriation" ,r-seriation)
6166 ("r-viridis" ,r-viridis)
6167 ("r-webshot" ,r-webshot)))
6168 (native-inputs
6169 `(("r-knitr" ,r-knitr)))
6170 (home-page "https://cran.r-project.org/package=heatmaply")
6171 (synopsis "Interactive cluster heat maps using plotly")
6172 (description
6173 "This package enables you to create interactive cluster heatmaps that can
6174 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
6175 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
6176 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
6177 a popular graphical method for visualizing high-dimensional data, in which a
6178 table of numbers is encoded as a grid of colored cells. The rows and columns
6179 of the matrix are ordered to highlight patterns and are often accompanied by
6180 dendrograms.")
6181 ;; Either version of the license.
6182 (license (list license:gpl2 license:gpl3))))
6183
6184 (define-public r-h5
6185 (package
6186 (name "r-h5")
6187 (version "0.9.9")
6188 (source
6189 (origin
6190 (method url-fetch)
6191 (uri (cran-uri "h5" version))
6192 (sha256
6193 (base32
6194 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
6195 (build-system r-build-system)
6196 (inputs
6197 `(("zlib" ,zlib)
6198 ("hdf5" ,hdf5)))
6199 (native-inputs
6200 `(("which" ,which)))
6201 (propagated-inputs
6202 `(("r-rcpp" ,r-rcpp)))
6203 (home-page "https://github.com/mannau/h5")
6204 (synopsis "Interface to the HDF5 Library")
6205 (description
6206 "This package provides an S4 interface to the HDF5 library supporting
6207 fast storage and retrieval of R-objects like vectors, matrices and arrays to
6208 binary files in a language independent format. The HDF5 format can therefore
6209 be used as an alternative to R's save/load mechanism. Since h5 is able to
6210 access only subsets of stored data it can also handle data sets which do not
6211 fit into memory.")
6212 (license license:bsd-2)))
6213
6214 (define-public r-cgdsr
6215 (package
6216 (name "r-cgdsr")
6217 (version "1.3.0")
6218 (source
6219 (origin
6220 (method url-fetch)
6221 (uri (cran-uri "cgdsr" version))
6222 (sha256
6223 (base32
6224 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
6225 (build-system r-build-system)
6226 (propagated-inputs
6227 `(("r-httr" ,r-httr)
6228 ("r-r-methodss3" ,r-r-methodss3)
6229 ("r-r-oo" ,r-r-oo)))
6230 (home-page "https://github.com/cBioPortal/cgdsr")
6231 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
6232 (description
6233 "This package provides a basic set of R functions for querying the Cancer
6234 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
6235 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
6236 (license license:lgpl3)))
6237
6238 (define-public r-import
6239 (package
6240 (name "r-import")
6241 (version "1.2.0")
6242 (source
6243 (origin
6244 (method url-fetch)
6245 (uri (cran-uri "import" version))
6246 (sha256
6247 (base32
6248 "018s0x224gqnv4cjfh0fwliyfg6ma9vslmwybrlizfsmqcc5wp37"))))
6249 (build-system r-build-system)
6250 (native-inputs
6251 `(("r-knitr" ,r-knitr)))
6252 (home-page "https://github.com/smbache/import")
6253 (synopsis "Import mechanism for R")
6254 (description
6255 "This is an alternative mechanism for importing objects from packages.
6256 The syntax allows for importing multiple objects from a package with a single
6257 command in an expressive way. The import package bridges some of the gap
6258 between using @code{library} (or @code{require}) and direct (single-object)
6259 imports. Furthermore the imported objects are not placed in the current
6260 environment. It is also possible to import objects from stand-alone @code{.R}
6261 files.")
6262 (license license:expat)))
6263
6264 (define-public r-shinyace
6265 (package
6266 (name "r-shinyace")
6267 (version "0.4.1")
6268 (source
6269 (origin
6270 (method url-fetch)
6271 (uri (cran-uri "shinyAce" version))
6272 (sha256
6273 (base32
6274 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
6275 (properties `((upstream-name . "shinyAce")))
6276 (build-system r-build-system)
6277 (propagated-inputs
6278 `(("r-shiny" ,r-shiny)
6279 ("r-jsonlite" ,r-jsonlite)))
6280 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
6281 (synopsis "Ace editor bindings for Shiny")
6282 (description
6283 "This package provides Ace editor bindings to enable a rich text editing
6284 environment within Shiny.")
6285 (license license:expat)))
6286
6287 (define-public r-randomizr
6288 (package
6289 (name "r-randomizr")
6290 (version "0.20.0")
6291 (source
6292 (origin
6293 (method url-fetch)
6294 (uri (cran-uri "randomizr" version))
6295 (sha256
6296 (base32
6297 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
6298 (properties `((upstream-name . "randomizr")))
6299 (build-system r-build-system)
6300 (native-inputs
6301 `(("r-knitr" ,r-knitr)))
6302 (home-page "https://declaredesign.org/r/randomizr/")
6303 (synopsis "Tools for common forms of random assignment and sampling")
6304 (description
6305 "This package provides tools for generating random assignments for common
6306 experimental designs and random samples for common sampling designs.")
6307 (license license:expat)))
6308
6309 (define-public r-base64url
6310 (package
6311 (name "r-base64url")
6312 (version "1.4")
6313 (source
6314 (origin
6315 (method url-fetch)
6316 (uri (cran-uri "base64url" version))
6317 (sha256
6318 (base32
6319 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
6320 (build-system r-build-system)
6321 (propagated-inputs
6322 `(("r-backports" ,r-backports)))
6323 (home-page "https://github.com/mllg/base64url")
6324 (synopsis "Fast and URL-safe base64 encoder and decoder")
6325 (description
6326 "This package provides a URL-safe base64 encoder and decoder. In
6327 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
6328 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
6329 encoder does not fill the string with trailing @code{=}. The resulting
6330 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
6331 and thus are safe to use in URLs or for file names. The package also comes
6332 with a simple base32 encoder/decoder suited for case insensitive file
6333 systems.")
6334 (license license:gpl3)))
6335
6336 (define-public r-radiant-data
6337 (package
6338 (name "r-radiant-data")
6339 (version "1.3.12")
6340 (source
6341 (origin
6342 (method url-fetch)
6343 (uri (cran-uri "radiant.data" version))
6344 (sha256
6345 (base32
6346 "08bqqrfvpgyf613ikihwfnzb23l23f5nfs7zynnxbjxc1zfhbpny"))
6347 (modules '((guix build utils)))
6348 (snippet
6349 '(begin
6350 ;; Delete files that are under CC-NC-SA.
6351 (delete-file-recursively "inst/app/tools/help")
6352 #t))))
6353 (properties `((upstream-name . "radiant.data")))
6354 (build-system r-build-system)
6355 (propagated-inputs
6356 `(("r-base64enc" ,r-base64enc)
6357 ("r-broom" ,r-broom)
6358 ("r-car" ,r-car)
6359 ("r-curl" ,r-curl)
6360 ("r-dplyr" ,r-dplyr)
6361 ("r-dt" ,r-dt)
6362 ("r-glue" ,r-glue)
6363 ("r-ggplot2" ,r-ggplot2)
6364 ("r-import" ,r-import)
6365 ("r-jsonlite" ,r-jsonlite)
6366 ("r-knitr" ,r-knitr)
6367 ("r-lubridate" ,r-lubridate)
6368 ("r-magrittr" ,r-magrittr)
6369 ("r-markdown" ,r-markdown)
6370 ("r-mass" ,r-mass)
6371 ("r-patchwork" ,r-patchwork)
6372 ("r-plotly" ,r-plotly)
6373 ("r-psych" ,r-psych)
6374 ("r-randomizr" ,r-randomizr)
6375 ("r-readr" ,r-readr)
6376 ("r-readxl" ,r-readxl)
6377 ("r-rlang" ,r-rlang)
6378 ("r-rmarkdown" ,r-rmarkdown)
6379 ("r-rstudioapi" ,r-rstudioapi)
6380 ("r-scales" ,r-scales)
6381 ("r-shiny" ,r-shiny)
6382 ("r-shinyfiles" ,r-shinyfiles)
6383 ("r-shinyace" ,r-shinyace)
6384 ("r-stringi" ,r-stringi)
6385 ("r-tibble" ,r-tibble)
6386 ("r-tidyr" ,r-tidyr)
6387 ("r-writexl" ,r-writexl)))
6388 (home-page "https://github.com/radiant-rstats/radiant.data")
6389 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
6390 (description
6391 "The Radiant Data menu includes interfaces for loading, saving, viewing,
6392 visualizing, summarizing, transforming, and combining data. It also contains
6393 functionality to generate reproducible reports of the analyses conducted in
6394 the application.")
6395 (license license:agpl3)))
6396
6397 (define-public r-algdesign
6398 (package
6399 (name "r-algdesign")
6400 (version "1.2.0")
6401 (source
6402 (origin
6403 (method url-fetch)
6404 (uri (cran-uri "AlgDesign" version))
6405 (sha256
6406 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
6407 (properties `((upstream-name . "AlgDesign")))
6408 (build-system r-build-system)
6409 (home-page "https://github.com/jvbraun/AlgDesign")
6410 (synopsis "Algorithmic experimental design")
6411 (description
6412 "This package provides tools to calculate exact and approximate theory
6413 experimental designs for D, A, and I criteria. Very large designs may be
6414 created. Experimental designs may be blocked or blocked designs created from
6415 a candidate list, using several criteria. The blocking can be done when whole
6416 and within plot factors interact.")
6417 (license license:gpl2+)))
6418
6419 (define-public r-signal
6420 (package
6421 (name "r-signal")
6422 (version "0.7-6")
6423 (source
6424 (origin
6425 (method url-fetch)
6426 (uri (cran-uri "signal" version))
6427 (sha256
6428 (base32
6429 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
6430 (build-system r-build-system)
6431 (propagated-inputs `(("r-mass" ,r-mass)))
6432 (native-inputs `(("gfortran" ,gfortran)))
6433 (home-page "https://cran.r-project.org/web/packages/signal/")
6434 (synopsis "Signal processing")
6435 (description
6436 "This package provides a set of signal processing functions originally
6437 written for Matlab and GNU Octave. It includes filter generation utilities,
6438 filtering functions, resampling routines, and visualization of filter models.
6439 It also includes interpolation functions.")
6440 (license license:gpl2)))
6441
6442 (define-public r-gsubfn
6443 (package
6444 (name "r-gsubfn")
6445 (version "0.7")
6446 (source
6447 (origin
6448 (method url-fetch)
6449 (uri (cran-uri "gsubfn" version))
6450 (sha256
6451 (base32
6452 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
6453 (build-system r-build-system)
6454 (propagated-inputs `(("r-proto" ,r-proto)))
6455 (home-page "https://code.google.com/archive/p/gsubfn/")
6456 (synopsis "Utilities for strings and function arguments.")
6457 (description
6458 "This package provides @code{gsubfn} which is like @code{gsub} but can
6459 take a replacement function or certain other objects instead of the
6460 replacement string. Matches and back references are input to the replacement
6461 function and replaced by the function output. @code{gsubfn} can be used to
6462 split strings based on content rather than delimiters and for quasi-perl-style
6463 string interpolation. The package also has facilities for translating
6464 formulas to functions and allowing such formulas in function calls instead of
6465 functions.")
6466 (license license:gpl2+)))
6467
6468 (define-public r-sqldf
6469 (package
6470 (name "r-sqldf")
6471 (version "0.4-11")
6472 (source
6473 (origin
6474 (method url-fetch)
6475 (uri (cran-uri "sqldf" version))
6476 (sha256
6477 (base32
6478 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
6479 (build-system r-build-system)
6480 (propagated-inputs
6481 `(("r-chron" ,r-chron)
6482 ("r-dbi" ,r-dbi)
6483 ("r-gsubfn" ,r-gsubfn)
6484 ("r-proto" ,r-proto)
6485 ("r-rsqlite" ,r-rsqlite)))
6486 (home-page "https://github.com/ggrothendieck/sqldf")
6487 (synopsis "Manipulate R data frames using SQL")
6488 (description
6489 "The @code{sqldf} function is typically passed a single argument which is
6490 an SQL select statement where the table names are ordinary R data frame names.
6491 @code{sqldf} transparently sets up a database, imports the data frames into
6492 that database, performs the SQL statement and returns the result using a
6493 heuristic to determine which class to assign to each column of the returned
6494 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
6495 used to read filtered files into R even if the original files are larger than
6496 R itself can handle.")
6497 (license license:gpl2)))
6498
6499 (define-public r-abind
6500 (package
6501 (name "r-abind")
6502 (version "1.4-5")
6503 (source
6504 (origin
6505 (method url-fetch)
6506 (uri (cran-uri "abind" version))
6507 (sha256
6508 (base32
6509 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
6510 (build-system r-build-system)
6511 (home-page "https://cran.r-project.org/web/packages/abind/")
6512 (synopsis "Combine multidimensional arrays")
6513 (description
6514 "This package provides tools to combine multidimensional arrays into a
6515 single array. This is a generalization of @code{cbind} and @code{rbind}. It
6516 works with vectors, matrices, and higher-dimensional arrays. It also provides
6517 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
6518 extracting and replacing data in arrays.")
6519 (license license:lgpl2.0+)))
6520
6521 (define-public r-prroc
6522 (package
6523 (name "r-prroc")
6524 (version "1.3.1")
6525 (source
6526 (origin
6527 (method url-fetch)
6528 (uri (cran-uri "PRROC" version))
6529 (sha256
6530 (base32
6531 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
6532 (properties `((upstream-name . "PRROC")))
6533 (build-system r-build-system)
6534 (home-page "https://cran.r-project.org/web/packages/PRROC/")
6535 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
6536 (description
6537 "This package computes the areas under the @dfn{precision-recall} (PR)
6538 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
6539 contrast to other implementations, the interpolation between points of the PR
6540 curve is done by a non-linear piecewise function. In addition to the areas
6541 under the curves, the curves themselves can also be computed and plotted by a
6542 specific S3-method.")
6543 (license license:gpl3)))
6544
6545 (define-public r-vim
6546 (package
6547 (name "r-vim")
6548 (version "6.1.0")
6549 (source
6550 (origin
6551 (method url-fetch)
6552 (uri (cran-uri "VIM" version))
6553 (sha256
6554 (base32
6555 "1a8aw0ysaf0al95m2la2zx1p3g5mnwqx0x30br1s1dqqkfnv57hz"))))
6556 (properties `((upstream-name . "VIM")))
6557 (build-system r-build-system)
6558 (propagated-inputs
6559 `(("r-car" ,r-car)
6560 ("r-colorspace" ,r-colorspace)
6561 ("r-data-table" ,r-data-table)
6562 ("r-e1071" ,r-e1071)
6563 ("r-laeken" ,r-laeken)
6564 ("r-magrittr" ,r-magrittr)
6565 ("r-mass" ,r-mass)
6566 ("r-nnet" ,r-nnet)
6567 ("r-ranger" ,r-ranger)
6568 ("r-rcpp" ,r-rcpp)
6569 ("r-robustbase" ,r-robustbase)
6570 ("r-sp" ,r-sp)
6571 ("r-vcd" ,r-vcd)))
6572 (native-inputs
6573 `(("r-knitr" ,r-knitr)))
6574 (home-page "https://github.com/alexkowa/VIM")
6575 (synopsis "Visualization and imputation of missing values")
6576 (description
6577 "This package provides tools for the visualization of missing and/or
6578 imputed values are introduced, which can be used for exploring the data and
6579 the structure of the missing and/or imputed values. Depending on this
6580 structure of the missing values, the corresponding methods may help to
6581 identify the mechanism generating the missing values and explore the
6582 data including missing values. In addition, the quality of imputation can be
6583 visually explored using various univariate, bivariate, multiple and
6584 multivariate plot methods.")
6585 (license license:gpl2+)))
6586
6587 (define-public r-fnn
6588 (package
6589 (name "r-fnn")
6590 (version "1.1.3")
6591 (source
6592 (origin
6593 (method url-fetch)
6594 (uri (cran-uri "FNN" version))
6595 (sha256
6596 (base32
6597 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
6598 (properties `((upstream-name . "FNN")))
6599 (build-system r-build-system)
6600 (home-page "https://cran.r-project.org/web/packages/FNN")
6601 (synopsis "Fast nearest neighbor search algorithms and applications")
6602 (description
6603 "This package provides cover-tree and kd-tree fast k-nearest neighbor
6604 search algorithms. Related applications including KNN classification,
6605 regression and information measures are implemented.")
6606 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
6607 ;; later can be used.
6608 (license license:gpl2+)))
6609
6610 (define-public r-smoother
6611 (package
6612 (name "r-smoother")
6613 (version "1.1")
6614 (source
6615 (origin
6616 (method url-fetch)
6617 (uri (cran-uri "smoother" version))
6618 (sha256
6619 (base32
6620 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
6621 (build-system r-build-system)
6622 (propagated-inputs
6623 `(("r-ttr" ,r-ttr)))
6624 (home-page "https://cran.r-project.org/web/packages/smoother")
6625 (synopsis "Functions relating to the smoothing of numerical data")
6626 (description
6627 "This package provides a collection of methods for smoothing numerical
6628 data, commencing with a port of the Matlab gaussian window smoothing function.
6629 In addition, several functions typically used in smoothing of financial data
6630 are included.")
6631 (license license:gpl2)))
6632
6633 (define-public r-riverplot
6634 (package
6635 (name "r-riverplot")
6636 (version "0.10")
6637 (source
6638 (origin
6639 (method url-fetch)
6640 (uri (cran-uri "riverplot" version))
6641 (sha256
6642 (base32
6643 "04ap1dsa7fx03l73jhv1ql3adaaaz2100qawdplxa9xmrllgcgbj"))))
6644 (build-system r-build-system)
6645 (propagated-inputs
6646 `(("r-rcolorbrewer" ,r-rcolorbrewer)))
6647 (native-inputs
6648 `(("r-knitr" ,r-knitr)))
6649 (home-page "https://logfc.wordpress.com")
6650 (synopsis "Sankey or ribbon plots")
6651 (description
6652 "Sankey plots are a type of diagram that is convenient to illustrate how
6653 flow of information, resources etc. separates and joins, much like observing
6654 how rivers split and merge. For example, they can be used to compare
6655 different clusterings. This package provides an implementation of Sankey
6656 plots for R.")
6657 (license license:gpl2+)))
6658
6659 (define-public r-dyn
6660 (package
6661 (name "r-dyn")
6662 (version "0.2-9.6")
6663 (source
6664 (origin
6665 (method url-fetch)
6666 (uri (cran-uri "dyn" version))
6667 (sha256
6668 (base32
6669 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
6670 (build-system r-build-system)
6671 (propagated-inputs
6672 `(("r-zoo" ,r-zoo)))
6673 (home-page "https://cran.r-project.org/web/packages/dyn")
6674 (synopsis "Time series regression")
6675 (description
6676 "This package provides the dyn class interfaces @code{ts}, @code{irts},
6677 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
6678 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
6679 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
6680 @code{randomForest::randomForest()} and other regression functions, allowing
6681 those functions to be used with time series including specifications that may
6682 contain lags, diffs and missing values.")
6683 ;; Any GPL version.
6684 (license license:gpl2+)))
6685
6686 (define-public r-catdap
6687 (package
6688 (name "r-catdap")
6689 (version "1.3.5")
6690 (source
6691 (origin
6692 (method url-fetch)
6693 (uri (cran-uri "catdap" version))
6694 (sha256
6695 (base32
6696 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
6697 (build-system r-build-system)
6698 (native-inputs
6699 `(("gfortran" ,gfortran)))
6700 (home-page "https://cran.r-project.org/web/packages/catdap/")
6701 (synopsis "Tools for categorical data analysis")
6702 (description
6703 "This package provides functions for analyzing multivariate data.
6704 Dependencies of the distribution of the specified variable (response
6705 variable) to other variables (explanatory variables) are derived and
6706 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
6707 (license license:gpl2+)))
6708
6709 (define-public r-arules
6710 (package
6711 (name "r-arules")
6712 (version "1.6-6")
6713 (source
6714 (origin
6715 (method url-fetch)
6716 (uri (cran-uri "arules" version))
6717 (sha256
6718 (base32
6719 "1pk3jjizn2m5rwi7qkdkbq9f07acgpy0qdzzqmx0agg47cwahlkm"))))
6720 (build-system r-build-system)
6721 (propagated-inputs
6722 `(("r-matrix" ,r-matrix)))
6723 (home-page "https://github.com/mhahsler/arules")
6724 (synopsis "Mining association rules and frequent itemsets")
6725 (description
6726 "This package provides an infrastructure for representing, manipulating
6727 and analyzing transaction data and patterns (frequent itemsets and association rules).
6728 It also provides C implementations of the association mining algorithms Apriori
6729 and Eclat.")
6730 (license license:gpl3)))
6731
6732 (define-public r-parsedate
6733 (package
6734 (name "r-parsedate")
6735 (version "1.2.0")
6736 (source
6737 (origin
6738 (method url-fetch)
6739 (uri (cran-uri "parsedate" version))
6740 (sha256
6741 (base32
6742 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
6743 (build-system r-build-system)
6744 (propagated-inputs
6745 `(("r-rematch2" ,r-rematch2)))
6746 (home-page "https://github.com/gaborcsardi/parsedate")
6747 (synopsis
6748 "Recognize and parse dates in various formats")
6749 (description
6750 "This package provides three functions for dealing with dates:
6751 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
6752 time formats, @code{parse_date} parses dates in unspecified formats,
6753 and @code{format_iso_8601} formats a date in ISO 8601 format.")
6754 (license license:gpl2)))
6755
6756 (define-public r-abc-data
6757 (package
6758 (name "r-abc-data")
6759 (version "1.0")
6760 (source
6761 (origin
6762 (method url-fetch)
6763 (uri (cran-uri "abc.data" version))
6764 (sha256
6765 (base32
6766 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
6767 (properties `((upstream-name . "abc.data")))
6768 (build-system r-build-system)
6769 (home-page "https://cran.r-project.org/web/packages/abc.data/")
6770 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
6771 (description
6772 "This package contains data which are used by functions of the abc
6773 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
6774 algorithms for performing parameter estimation, model selection, and
6775 goodness-of-fit.")
6776 (license license:gpl3+)))
6777
6778 (define-public r-abc
6779 (package
6780 (name "r-abc")
6781 (version "2.1")
6782 (source
6783 (origin
6784 (method url-fetch)
6785 (uri (cran-uri "abc" version))
6786 (sha256
6787 (base32
6788 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
6789 (build-system r-build-system)
6790 (propagated-inputs
6791 `(("r-abc-data" ,r-abc-data)
6792 ("r-locfit" ,r-locfit)
6793 ("r-mass" ,r-mass)
6794 ("r-nnet" ,r-nnet)
6795 ("r-quantreg" ,r-quantreg)))
6796 (home-page "https://cran.r-project.org/web/packages/abc/")
6797 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
6798 (description
6799 "This package implements several @dfn{Approximate Bayesian
6800 Computation} (ABC) algorithms for performing parameter estimation, model
6801 selection, and goodness-of-fit. Cross-validation tools are also available for
6802 measuring the accuracy of ABC estimates, and to calculate the
6803 misclassification probabilities of different models.")
6804 (license license:gpl3+)))
6805
6806 (define-public r-zip
6807 (package
6808 (name "r-zip")
6809 (version "2.1.1")
6810 (source
6811 (origin
6812 (method url-fetch)
6813 (uri (cran-uri "zip" version))
6814 (sha256
6815 (base32
6816 "0b3wmbx5v0i1scylgk4nli2ljg4p12wx7a1sqljklv9969wl3p8i"))))
6817 (build-system r-build-system)
6818 (home-page "https://github.com/gaborcsardi/zip")
6819 (synopsis "Cross-platform Zip compression")
6820 (description
6821 "This package provides a cross-platform Zip compression library for R.
6822 It is a replacement for the @code{zip} function, that does not require any
6823 additional external tools on any platform.")
6824 (license license:cc0)))
6825
6826 (define-public r-openxlsx
6827 (package
6828 (name "r-openxlsx")
6829 (version "4.2.3")
6830 (source
6831 (origin
6832 (method url-fetch)
6833 (uri (cran-uri "openxlsx" version))
6834 (sha256
6835 (base32
6836 "0vz4nlrwgsiifrgza8kfd9i1c0ya6plymrgk59vyy2z54vc8kvyd"))))
6837 (build-system r-build-system)
6838 (propagated-inputs
6839 `(("r-rcpp" ,r-rcpp)
6840 ("r-stringi" ,r-stringi)
6841 ("r-zip" ,r-zip)))
6842 (native-inputs
6843 `(("r-knitr" ,r-knitr)))
6844 (home-page "https://github.com/awalker89/openxlsx")
6845 (synopsis "Read, write and edit XLSX files")
6846 (description
6847 "This package simplifies the creation of Excel @code{.xlsx} files by
6848 providing a high level interface to writing, styling and editing worksheets.
6849 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
6850 and @code{XLConnect} packages with the added benefit of removing the
6851 dependency on Java.")
6852 (license license:gpl3)))
6853
6854 (define-public r-rio
6855 (package
6856 (name "r-rio")
6857 (version "0.5.26")
6858 (source
6859 (origin
6860 (method url-fetch)
6861 (uri (cran-uri "rio" version))
6862 (sha256
6863 (base32
6864 "1k6zxjb2bb0z6rv7zmkbaz85cbvs84mj602ikkwk60alh8kpdw2d"))))
6865 (build-system r-build-system)
6866 (propagated-inputs
6867 `(("r-curl" ,r-curl)
6868 ("r-data-table" ,r-data-table)
6869 ("r-foreign" ,r-foreign)
6870 ("r-haven" ,r-haven)
6871 ("r-openxlsx" ,r-openxlsx)
6872 ("r-readxl" ,r-readxl)
6873 ("r-tibble" ,r-tibble)))
6874 (native-inputs
6875 `(("r-knitr" ,r-knitr)))
6876 (home-page "https://github.com/leeper/rio")
6877 (synopsis "Swiss-army knife for data I/O")
6878 (description
6879 "This package provides streamlined data import and export infrastructure
6880 by making assumptions that the user is probably willing to make: @code{import}
6881 and @code{export} determine the data structure from the file extension,
6882 reasonable defaults are used for data import and export (e.g.,
6883 @code{stringsAsFactors=FALSE}), web-based import is natively
6884 supported (including from SSL/HTTPS), compressed files can be read directly
6885 without explicit decompression, and fast import packages are used where
6886 appropriate. An additional convenience function, @code{convert}, provides a
6887 simple method for converting between file types.")
6888 (license license:gpl2)))
6889
6890 (define-public r-maptools
6891 (package
6892 (name "r-maptools")
6893 (version "1.1-1")
6894 (source
6895 (origin
6896 (method url-fetch)
6897 (uri (cran-uri "maptools" version))
6898 (sha256
6899 (base32
6900 "0pn4gwh2rl6pfh2vbc7ln86kzlg22cfpd02z95j7zpjidz2mva8l"))))
6901 (build-system r-build-system)
6902 (propagated-inputs
6903 `(("r-foreign" ,r-foreign)
6904 ("r-lattice" ,r-lattice)
6905 ("r-sp" ,r-sp)))
6906 (home-page "https://r-forge.r-project.org/projects/maptools/")
6907 (synopsis "Tools for reading and handling spatial objects")
6908 (description
6909 "This package provides a set of tools for manipulating and reading
6910 geographic data, in particular ESRI Shapefiles. It includes binary access to
6911 GSHHG shoreline files. The package also provides interface wrappers for
6912 exchanging spatial objects with other R packages.")
6913 ;; The C source files from shapelib are released under the Expat license.
6914 ;; The R code is released under GPL version 2 or later.
6915 (license (list license:gpl2+
6916 license:expat))))
6917
6918 (define-public r-later
6919 (package
6920 (name "r-later")
6921 (version "1.1.0.1")
6922 (source
6923 (origin
6924 (method url-fetch)
6925 (uri (cran-uri "later" version))
6926 (sha256
6927 (base32
6928 "1k9n2j7zxw9gfclnx8zfqp6w64c5d6apn7g02yhkajkpmszagfki"))))
6929 (build-system r-build-system)
6930 (propagated-inputs
6931 `(("r-bh" ,r-bh)
6932 ("r-rcpp" ,r-rcpp)
6933 ("r-rlang" ,r-rlang)))
6934 (native-inputs
6935 `(("r-knitr" ,r-knitr)))
6936 (home-page "https://github.com/r-lib/later")
6937 (synopsis "Utilities for delaying function execution")
6938 (description
6939 "This package provides tools to execute arbitrary R or C functions some
6940 time after the current time, after the R execution stack has emptied.")
6941 (license license:gpl2+)))
6942
6943 (define-public r-promises
6944 (package
6945 (name "r-promises")
6946 (version "1.2.0.1")
6947 (source
6948 (origin
6949 (method url-fetch)
6950 (uri (cran-uri "promises" version))
6951 (sha256
6952 (base32
6953 "1dy4cbqw17awh4q8m7cy3anaj0n9iynabfzflb1g94cyj0bq4fld"))))
6954 (build-system r-build-system)
6955 (propagated-inputs
6956 `(("r-later" ,r-later)
6957 ("r-magrittr" ,r-magrittr)
6958 ("r-r6" ,r-r6)
6959 ("r-rcpp" ,r-rcpp)
6960 ("r-rlang" ,r-rlang)))
6961 (native-inputs
6962 `(("r-knitr" ,r-knitr)))
6963 (home-page "https://rstudio.github.io/promises")
6964 (synopsis "Abstractions for promise-based asynchronous programming")
6965 (description
6966 "This package provides fundamental abstractions for doing asynchronous
6967 programming in R using promises. Asynchronous programming is useful for
6968 allowing a single R process to orchestrate multiple tasks in the background
6969 while also attending to something else. Semantics are similar to JavaScript
6970 promises, but with a syntax that is idiomatic R.")
6971 (license license:expat)))
6972
6973 (define-public r-dosnow
6974 (package
6975 (name "r-dosnow")
6976 (version "1.0.19")
6977 (source
6978 (origin
6979 (method url-fetch)
6980 (uri (cran-uri "doSNOW" version))
6981 (sha256
6982 (base32
6983 "0f07b38cl7s61vwzkyqkzzsic9g4sw9k6ndbxk3g90l4ca0d1ljc"))))
6984 (properties `((upstream-name . "doSNOW")))
6985 (build-system r-build-system)
6986 (propagated-inputs
6987 `(("r-foreach" ,r-foreach)
6988 ("r-iterators" ,r-iterators)
6989 ("r-snow" ,r-snow)))
6990 (home-page "https://cran.r-project.org/web/packages/doSNOW")
6991 (synopsis "Foreach parallel adaptor for the snow package")
6992 (description
6993 "This package provides a parallel backend for the @code{%dopar%} function
6994 using the @code{snow} package.")
6995 (license license:gpl2)))
6996
6997 (define-public r-fst
6998 (package
6999 (name "r-fst")
7000 (version "0.9.4")
7001 (source
7002 (origin
7003 (method url-fetch)
7004 (uri (cran-uri "fst" version))
7005 (sha256
7006 (base32
7007 "0vwclzxww8mw9nnpyj29bn71mrr8jjg7ka03979h9rbzw6d9bjrr"))))
7008 (properties `((upstream-name . "fst")))
7009 (build-system r-build-system)
7010 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7011 (home-page "http://www.fstpackage.org")
7012 (synopsis "Fast serialization of data frames")
7013 (description
7014 "The fst package for R provides a fast, easy and flexible way to
7015 serialize data frames. With access speeds of multiple GB/s, fst is
7016 specifically designed to unlock the potential of high speed solid state disks.
7017 Data frames stored in the fst format have full random access, both in column
7018 and rows. The fst format allows for random access of stored data and
7019 compression with the LZ4 and ZSTD compressors.")
7020 (license license:agpl3)))
7021
7022 (define-public r-snowfall
7023 (package
7024 (name "r-snowfall")
7025 (version "1.84-6.1")
7026 (source (origin
7027 (method url-fetch)
7028 (uri (cran-uri "snowfall" version))
7029 (sha256
7030 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
7031 (build-system r-build-system)
7032 (propagated-inputs
7033 `(("r-snow" ,r-snow)))
7034 (home-page "https://cran.r-project.org/web/packages/snowfall/")
7035 (synopsis "Easier cluster computing")
7036 (description "This package is a usability wrapper around snow for easier
7037 development of parallel R programs. This package offers e.g. extended error
7038 checks, and additional functions. All functions work in sequential mode, too,
7039 if no cluster is present or wished. The package is also designed as connector
7040 to the cluster management tool @code{sfCluster}, but can also used without
7041 it.")
7042 (license license:gpl2+)))
7043
7044 (define-public r-rgexf
7045 (package
7046 (name "r-rgexf")
7047 (version "0.16.0")
7048 (source
7049 (origin
7050 (method url-fetch)
7051 (uri (cran-uri "rgexf" version))
7052 (sha256
7053 (base32
7054 "1vj5ha1qx0xzflchxf25ycys6clfn9y32m1717afzkvhmkwisrra"))
7055 (snippet
7056 '(begin
7057 ;; Delete minified JavaScript files
7058 (for-each delete-file
7059 '("inst/gexf-js/js/jquery-2.0.2.min.js"
7060 "inst/gexf-js/js/jquery-ui-1.10.3.custom.min.js"
7061 "inst/gexf-js/js/jquery.mousewheel.min.js"))
7062 #true))))
7063 (properties `((upstream-name . "rgexf")))
7064 (build-system r-build-system)
7065 (arguments
7066 `(#:modules ((guix build utils)
7067 (guix build r-build-system)
7068 (srfi srfi-1)
7069 (ice-9 popen))
7070 #:phases
7071 (modify-phases %standard-phases
7072 (add-after 'unpack 'process-javascript
7073 (lambda* (#:key inputs #:allow-other-keys)
7074 (invoke "unzip" "-d" "/tmp" (assoc-ref inputs "js-jquery-ui"))
7075 (with-directory-excursion "inst/gexf-js/js/"
7076 (call-with-values
7077 (lambda ()
7078 (unzip2
7079 `((,(assoc-ref inputs "js-jquery")
7080 "jquery-2.0.2.min.js")
7081 ("/tmp/jquery-ui-1.10.3/ui/jquery-ui.js"
7082 "jquery-ui-1.10.3.custom.min.js")
7083 (,(assoc-ref inputs "js-jquery-mousewheel")
7084 "jquery.mousewheel.min.js"))))
7085 (lambda (sources targets)
7086 (for-each (lambda (source target)
7087 (format #true "Processing ~a --> ~a~%"
7088 source target)
7089 (invoke "esbuild" source "--minify"
7090 (string-append "--outfile=" target)))
7091 sources targets))))
7092 #t)))))
7093 (propagated-inputs
7094 `(("r-igraph" ,r-igraph)
7095 ("r-servr" ,r-servr)
7096 ("r-xml" ,r-xml)))
7097 (native-inputs
7098 `(("r-knitr" ,r-knitr)
7099 ("esbuild" ,esbuild)
7100 ("unzip" ,unzip)
7101 ("js-jquery"
7102 ,(origin
7103 (method url-fetch)
7104 (uri "https://code.jquery.com/jquery-2.0.2.js")
7105 (sha256
7106 (base32
7107 "0v818bxpw48gdk8i95qqqij80r9jcgisi2r4ac6xnxca20h0gvfj"))))
7108 ("js-jquery-ui"
7109 ,(origin
7110 (method url-fetch)
7111 (uri "https://jqueryui.com/resources/download/jquery-ui-1.10.3.zip")
7112 (sha256
7113 (base32
7114 "00xpfy0l69nj2yan4s8k65ldsrlfsjkmyw2dwcg93dc8mv454vxx"))))
7115 ("js-jquery-mousewheel"
7116 ,(origin
7117 (method url-fetch)
7118 (uri "https://raw.githubusercontent.com/jquery/jquery-mousewheel/\
7119 3.0.6/jquery.mousewheel.js")
7120 (sha256
7121 (base32
7122 "19lk5xy2s47bx8hsa7j6bg012f8yw6d770g230bcnm559kf4nc6v"))))))
7123 (home-page "https://gvegayon.github.io/rgexf")
7124 (synopsis "Build, import and export GEXF graph files")
7125 (description
7126 "Create, read and write GEXF (Graph Exchange XML Format) graph
7127 files (used in Gephi and others). It allows the user to easily build/read
7128 graph files including attributes, GEXF visual attributes (such as color, size,
7129 and position), network dynamics (for both edges and nodes) and edge weighting.
7130 Users can build/handle graphs element-by-element or massively through
7131 data-frames, visualize the graph on a web browser through gexf-js (a
7132 JavaScript library) and interact with the igraph package.")
7133 (license license:expat)))
7134
7135 (define-public r-data-tree
7136 (package
7137 (name "r-data-tree")
7138 (version "1.0.0")
7139 (source
7140 (origin
7141 (method url-fetch)
7142 (uri (cran-uri "data.tree" version))
7143 (sha256
7144 (base32
7145 "0pizmx2312zsym4m42b97q2184bg3hibvbdrblcga05xln84qrs0"))))
7146 (properties `((upstream-name . "data.tree")))
7147 (build-system r-build-system)
7148 (propagated-inputs
7149 `(("r-r6" ,r-r6)
7150 ("r-stringi" ,r-stringi)))
7151 (native-inputs
7152 `(("r-knitr" ,r-knitr)))
7153 (home-page "https://github.com/gluc/data.tree")
7154 (synopsis "General purpose hierarchical data structure")
7155 (description
7156 "Create tree structures from hierarchical data, and traverse the tree in
7157 various orders. Aggregate, cumulate, print, plot, convert to and from
7158 data.frame and more. This is useful for decision trees, machine learning,
7159 finance, conversion from and to JSON, and many other applications.")
7160 (license license:gpl2+)))
7161
7162 (define-public r-collapsibletree
7163 (package
7164 (name "r-collapsibletree")
7165 (version "0.1.7")
7166 (source
7167 (origin
7168 (method url-fetch)
7169 (uri (cran-uri "collapsibleTree" version))
7170 (sha256
7171 (base32
7172 "0b65pbp1wnpsrayqi630ds4r98jvcvynnlp6wxdqrnnr9nzw5343"))
7173 (snippet
7174 '(begin
7175 ;; Delete minified JavaScript file
7176 (delete-file "inst/htmlwidgets/lib/d3-4.10.2/d3.min.js")
7177 #true))))
7178 (properties
7179 `((upstream-name . "collapsibleTree")))
7180 (build-system r-build-system)
7181 (arguments
7182 `(#:phases
7183 (modify-phases %standard-phases
7184 (add-after 'unpack 'process-javascript
7185 (lambda* (#:key inputs #:allow-other-keys)
7186 (with-directory-excursion "inst/htmlwidgets/lib/d3-4.10.2/"
7187 (let ((source (assoc-ref inputs "d3.v4.js"))
7188 (target "d3.min.js"))
7189 (format #t "Processing ~a --> ~a~%"
7190 source target)
7191 (invoke "esbuild" source "--minify"
7192 (string-append "--outfile=" target)))))))))
7193 (propagated-inputs
7194 `(("r-data-tree" ,r-data-tree)
7195 ("r-htmlwidgets" ,r-htmlwidgets)))
7196 (native-inputs
7197 `(("esbuild" ,esbuild)
7198 ("d3.v4.js"
7199 ,(origin
7200 (method url-fetch)
7201 (uri "https://d3js.org/d3.v4.js")
7202 (sha256
7203 (base32
7204 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
7205 (home-page "https://github.com/AdeelK93/collapsibleTree")
7206 (synopsis "Interactive collapsible tree diagrams using D3.js")
7207 (description
7208 "This is a package for interactive Reingold-Tilford tree diagrams created
7209 using D3.js, where every node can be expanded and collapsed by clicking on it.
7210 Tooltips and color gradients can be mapped to nodes using a numeric column in
7211 the source data frame.")
7212 (license license:gpl3+)))
7213
7214 (define-public r-rappdirs
7215 (package
7216 (name "r-rappdirs")
7217 (version "0.3.3")
7218 (source
7219 (origin
7220 (method url-fetch)
7221 (uri (cran-uri "rappdirs" version))
7222 (sha256
7223 (base32
7224 "1161i3jgjvzjv4p8qbz9r976fnggkcrw3mlj4yd1h2svnijrz5a9"))))
7225 (build-system r-build-system)
7226 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
7227 (synopsis "Determine where to save data, caches, and logs")
7228 (description
7229 "This package provides an easy way to determine which directories on the
7230 user's computer should be used to save data, caches and logs. It is a port of
7231 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
7232 (license license:expat)))
7233
7234 (define-public r-rastervis
7235 (package
7236 (name "r-rastervis")
7237 (version "0.50")
7238 (source
7239 (origin
7240 (method url-fetch)
7241 (uri (cran-uri "rasterVis" version))
7242 (sha256
7243 (base32
7244 "0m7fjd53apxim0d0rjnyzc28vmfcg4spcrn0zbnk8llillxji1hi"))))
7245 (properties `((upstream-name . "rasterVis")))
7246 (build-system r-build-system)
7247 (propagated-inputs
7248 `(("r-hexbin" ,r-hexbin)
7249 ("r-lattice" ,r-lattice)
7250 ("r-latticeextra" ,r-latticeextra)
7251 ("r-raster" ,r-raster)
7252 ("r-rcolorbrewer" ,r-rcolorbrewer)
7253 ("r-sp" ,r-sp)
7254 ("r-terra" ,r-terra)
7255 ("r-viridislite" ,r-viridislite)
7256 ("r-zoo" ,r-zoo)))
7257 (home-page "https://oscarperpinan.github.io/rastervis/")
7258 (synopsis "Visualization methods for raster data")
7259 (description
7260 "This package provides methods for enhanced visualization and interaction
7261 with raster data. It implements visualization methods for quantitative data
7262 and categorical data, both for univariate and multivariate rasters. It also
7263 provides methods to display spatiotemporal rasters, and vector fields.")
7264 (license license:gpl3)))
7265
7266 (define-public r-rentrez
7267 (package
7268 (name "r-rentrez")
7269 (version "1.2.3")
7270 (source
7271 (origin
7272 (method url-fetch)
7273 (uri (cran-uri "rentrez" version))
7274 (sha256
7275 (base32
7276 "0x1g2f6hvkqqlb39z8m5qxhcvsizddic5i7rpqw0wy77xfbna9gv"))))
7277 (properties `((upstream-name . "rentrez")))
7278 (build-system r-build-system)
7279 (propagated-inputs
7280 `(("r-httr" ,r-httr)
7281 ("r-jsonlite" ,r-jsonlite)
7282 ("r-xml" ,r-xml)))
7283 (native-inputs
7284 `(("r-knitr" ,r-knitr)))
7285 (home-page "https://docs.ropensci.org/rentrez/")
7286 (synopsis "Entrez in R")
7287 (description
7288 "This package provides an R interface to the NCBI's EUtils API,
7289 allowing users to search databases like GenBank PubMed, process the results of
7290 those searches and pull data into their R sessions.")
7291 (license license:expat)))
7292
7293 (define-public r-renv
7294 (package
7295 (name "r-renv")
7296 (version "0.13.0")
7297 (source
7298 (origin
7299 (method url-fetch)
7300 (uri (cran-uri "renv" version))
7301 (sha256
7302 (base32
7303 "16n2dz9jibc03f7q1wrzxss6l5jmaks7m2lnli9dz9anvcmxbdia"))))
7304 (properties `((upstream-name . "renv")))
7305 (build-system r-build-system)
7306 (native-inputs
7307 `(("r-knitr" ,r-knitr)))
7308 (home-page "https://rstudio.github.io/renv")
7309 (synopsis "Project environments")
7310 (description
7311 "This package provides a dependency management toolkit for R. Using
7312 renv, you can create and manage project-local R libraries, save the state of
7313 these libraries to a lockfile, and later restore your library as required.
7314 Together, these tools can help make your projects more isolated, portable, and
7315 reproducible.")
7316 (license license:expat)))
7317
7318 (define-public r-learnr
7319 (package
7320 (name "r-learnr")
7321 (version "0.10.1")
7322 (source
7323 (origin
7324 (method url-fetch)
7325 (uri (cran-uri "learnr" version))
7326 (sha256
7327 (base32
7328 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
7329 (build-system r-build-system)
7330 (propagated-inputs
7331 `(("r-checkmate" ,r-checkmate)
7332 ("r-ellipsis" ,r-ellipsis)
7333 ("r-evaluate" ,r-evaluate)
7334 ("r-htmltools" ,r-htmltools)
7335 ("r-htmlwidgets" ,r-htmlwidgets)
7336 ("r-jsonlite" ,r-jsonlite)
7337 ("r-knitr" ,r-knitr)
7338 ("r-markdown" ,r-markdown)
7339 ("r-rappdirs" ,r-rappdirs)
7340 ("r-renv" ,r-renv)
7341 ("r-rmarkdown" ,r-rmarkdown)
7342 ("r-rprojroot" ,r-rprojroot)
7343 ("r-shiny" ,r-shiny)
7344 ("r-withr" ,r-withr)))
7345 (home-page "https://rstudio.github.io/learnr/")
7346 (synopsis "Interactive tutorials for R")
7347 (description
7348 "This package provides tools to create interactive tutorials using R
7349 Markdown. Use a combination of narrative, figures, videos, exercises, and
7350 quizzes to create self-paced tutorials for learning about R and R packages.")
7351 (license license:asl2.0)))
7352
7353 (define-public r-analytics
7354 (package
7355 (name "r-analytics")
7356 (version "3.0")
7357 (source
7358 (origin
7359 (method url-fetch)
7360 (uri (cran-uri "analytics" version))
7361 (sha256
7362 (base32
7363 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
7364 (build-system r-build-system)
7365 (propagated-inputs
7366 `(("r-car" ,r-car)
7367 ("r-cluster" ,r-cluster)
7368 ("r-fractal" ,r-fractal)
7369 ("r-lmtest" ,r-lmtest)
7370 ("r-mass" ,r-mass)
7371 ("r-np" ,r-np)
7372 ("r-powerplus" ,r-powerplus)
7373 ("r-robust" ,r-robust)
7374 ("r-trend" ,r-trend)
7375 ("r-tsa" ,r-tsa)
7376 ("r-urca" ,r-urca)
7377 ("r-vim" ,r-vim)))
7378 (home-page "https://cran.r-project.org/web/packages/analytics/")
7379 (synopsis "Collection of data analysis tools")
7380 (description
7381 "This package is a collection of data analysis tools. It includes tools
7382 for regression outlier detection in a fitted linear model, stationary
7383 bootstrap using a truncated geometric distribution, a comprehensive test for
7384 weak stationarity, column means by group, weighted biplots, and a heuristic to
7385 obtain a better initial configuration in non-metric MDS.")
7386 (license license:gpl2)))
7387
7388 (define-public r-reticulate
7389 (package
7390 (name "r-reticulate")
7391 (version "1.18")
7392 (source
7393 (origin
7394 (method url-fetch)
7395 (uri (cran-uri "reticulate" version))
7396 (sha256
7397 (base32
7398 "04w5c9jfxakb4rr2qjynxgagb42khsja3y4dwgxywiplb1d8agxk"))))
7399 (build-system r-build-system)
7400 (inputs `(("python" ,python)))
7401 (propagated-inputs
7402 `(("r-rappdirs" ,r-rappdirs)
7403 ("r-jsonlite" ,r-jsonlite)
7404 ("r-matrix" ,r-matrix)
7405 ("r-rcpp" ,r-rcpp)))
7406 (native-inputs
7407 `(("r-knitr" ,r-knitr)))
7408 (home-page "https://github.com/rstudio/reticulate")
7409 (synopsis "R interface to Python")
7410 (description
7411 "This package provides an interface from R to Python modules, classes,
7412 and functions. When calling into Python, R data types are automatically
7413 converted to their equivalent Python types. When values are returned from
7414 Python to R they are converted back to R types.")
7415 (license license:asl2.0)))
7416
7417 (define-public r-bibtex
7418 (package
7419 (name "r-bibtex")
7420 (version "0.4.2.3")
7421 (source
7422 (origin
7423 (method url-fetch)
7424 (uri (cran-uri "bibtex" version))
7425 (sha256
7426 (base32
7427 "0vdwx6808r73pk15263f33bkqbfmb08d8jkmr4d7h4ml414ikbbv"))))
7428 (build-system r-build-system)
7429 (propagated-inputs `(("r-stringr" ,r-stringr)))
7430 (home-page "https://github.com/romainfrancois/bibtex")
7431 (synopsis "Bibtex parser")
7432 (description "This package provides a utility for R to parse a bibtex
7433 file.")
7434 (license license:gpl2+)))
7435
7436 (define-public r-ggseqlogo
7437 (package
7438 (name "r-ggseqlogo")
7439 (version "0.1")
7440 (source
7441 (origin
7442 (method url-fetch)
7443 (uri (cran-uri "ggseqlogo" version))
7444 (sha256
7445 (base32
7446 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
7447 (build-system r-build-system)
7448 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
7449 (home-page "https://github.com/omarwagih/ggseqlogo")
7450 (synopsis "ggplot2 extension for drawing genetic sequence logos")
7451 (description
7452 "The range of functions provided by this package makes it possible to
7453 draw highly versatile genomic sequence logos. Features include, but are not
7454 limited to, modifying colour schemes and fonts used to draw the logo,
7455 generating multiple logo plots, and aiding the visualisation with annotations.
7456 Sequence logos can easily be combined with other ggplot2 plots.")
7457 ;; Unspecified version of the LGPL.
7458 (license license:lgpl3+)))
7459
7460 (define-public r-ggsci
7461 (package
7462 (name "r-ggsci")
7463 (version "2.9")
7464 (source
7465 (origin
7466 (method url-fetch)
7467 (uri (cran-uri "ggsci" version))
7468 (sha256
7469 (base32
7470 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
7471 (build-system r-build-system)
7472 (propagated-inputs
7473 `(("r-ggplot2" ,r-ggplot2)
7474 ("r-scales" ,r-scales)))
7475 (home-page "https://nanx.me/ggsci/")
7476 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
7477 (description
7478 "This package provides a collection of ggplot2 color palettes inspired by
7479 plots in scientific journals, data visualization libraries, science fiction
7480 movies, and TV shows.")
7481 (license license:gpl3)))
7482
7483 (define-public r-ggsignif
7484 (package
7485 (name "r-ggsignif")
7486 (version "0.6.1")
7487 (source
7488 (origin
7489 (method url-fetch)
7490 (uri (cran-uri "ggsignif" version))
7491 (sha256
7492 (base32
7493 "0rjy9wqsq67jjm1jz3j7hm599x0rshrrhw2w01iaqb9kf506hvjh"))))
7494 (build-system r-build-system)
7495 (native-inputs
7496 `(("r-knitr" ,r-knitr)))
7497 (propagated-inputs
7498 `(("r-ggplot2" ,r-ggplot2)))
7499 (home-page "https://github.com/const-ae/ggsignif")
7500 (synopsis "Significance brackets for ggplot2")
7501 (description
7502 "Enrich your ggplots with group-wise comparisons. This package provides
7503 an easy way to indicate if two groups are significantly different. Commonly
7504 this is shown by a bracket on top connecting the groups of interest which
7505 itself is annotated with the level of significance. The package provides a
7506 single layer that takes the groups for comparison and the test as arguments
7507 and adds the annotation to the plot.")
7508 (license license:gpl3)))
7509
7510 (define-public r-rstatix
7511 (package
7512 (name "r-rstatix")
7513 (version "0.7.0")
7514 (source
7515 (origin
7516 (method url-fetch)
7517 (uri (cran-uri "rstatix" version))
7518 (sha256
7519 (base32
7520 "0330y8iziffqg8j9j5h9zv4qcdyf8ybhmzxrr9fzq9nc6bf1gbm5"))))
7521 (properties `((upstream-name . "rstatix")))
7522 (build-system r-build-system)
7523 (propagated-inputs
7524 `(("r-broom" ,r-broom)
7525 ("r-car" ,r-car)
7526 ("r-corrplot" ,r-corrplot)
7527 ("r-dplyr" ,r-dplyr)
7528 ("r-generics" ,r-generics)
7529 ("r-magrittr" ,r-magrittr)
7530 ("r-purrr" ,r-purrr)
7531 ("r-rlang" ,r-rlang)
7532 ("r-tibble" ,r-tibble)
7533 ("r-tidyr" ,r-tidyr)
7534 ("r-tidyselect" ,r-tidyselect)))
7535 (home-page "https://rpkgs.datanovia.com/rstatix/")
7536 (synopsis "Pipe-friendly framework for basic statistical tests")
7537 (description
7538 "This package provides a simple and intuitive pipe-friendly framework,
7539 coherent with the @code{tidyverse} design philosophy, for performing basic
7540 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
7541 correlation analyses. The output of each test is automatically transformed
7542 into a tidy data frame to facilitate visualization. Additional functions are
7543 available for reshaping, reordering, manipulating and visualizing correlation
7544 matrix.")
7545 (license license:gpl2)))
7546
7547 (define-public r-ggpubr
7548 (package
7549 (name "r-ggpubr")
7550 (version "0.4.0")
7551 (source
7552 (origin
7553 (method url-fetch)
7554 (uri (cran-uri "ggpubr" version))
7555 (sha256
7556 (base32
7557 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
7558 (build-system r-build-system)
7559 (propagated-inputs
7560 `(("r-cowplot" ,r-cowplot)
7561 ("r-dplyr" ,r-dplyr)
7562 ("r-ggplot2" ,r-ggplot2)
7563 ("r-ggrepel" ,r-ggrepel)
7564 ("r-ggsci" ,r-ggsci)
7565 ("r-ggsignif" ,r-ggsignif)
7566 ("r-glue" ,r-glue)
7567 ("r-gridextra" ,r-gridextra)
7568 ("r-magrittr" ,r-magrittr)
7569 ("r-polynom" ,r-polynom)
7570 ("r-purrr" ,r-purrr)
7571 ("r-rlang" ,r-rlang)
7572 ("r-scales" ,r-scales)
7573 ("r-rstatix" ,r-rstatix)
7574 ("r-tibble" ,r-tibble)
7575 ("r-tidyr" ,r-tidyr)))
7576 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
7577 (synopsis "ggplot2-based publication-ready plots")
7578 (description
7579 "The ggplot2 package is an excellent and flexible package for elegant
7580 data visualization in R. However the default generated plots require some
7581 formatting before we can send them for publication. The ggpubr package
7582 provides some easy-to-use functions for creating and customizing ggplot2-based
7583 publication-ready plots.")
7584 (license license:gpl2)))
7585
7586 (define-public r-ellipse
7587 (package
7588 (name "r-ellipse")
7589 (version "0.4.2")
7590 (source
7591 (origin
7592 (method url-fetch)
7593 (uri (cran-uri "ellipse" version))
7594 (sha256
7595 (base32
7596 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
7597 (build-system r-build-system)
7598 (home-page "https://cran.r-project.org/web/packages/ellipse/")
7599 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
7600 (description
7601 "This package contains various routines for drawing ellipses and
7602 ellipse-like confidence regions, implementing the plots described in Murdoch
7603 and Chow (1996), A graphical display of large correlation matrices, The
7604 American Statistician 50, 178-180. There are also routines implementing the
7605 profile plots described in Bates and Watts (1988), Nonlinear Regression
7606 Analysis and its Applications.")
7607 (license license:gpl2+)))
7608
7609 (define-public r-flashclust
7610 (package
7611 (name "r-flashclust")
7612 (version "1.01-2")
7613 (source
7614 (origin
7615 (method url-fetch)
7616 (uri (cran-uri "flashClust" version))
7617 (sha256
7618 (base32
7619 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
7620 (properties `((upstream-name . "flashClust")))
7621 (build-system r-build-system)
7622 (native-inputs `(("gfortran" ,gfortran)))
7623 (home-page "https://cran.r-project.org/web/packages/flashClust/")
7624 (synopsis "Implementation of optimal hierarchical clustering")
7625 (description
7626 "This package provides a fast implementation of hierarchical
7627 clustering.")
7628 (license license:gpl2+)))
7629
7630 (define-public r-factominer
7631 (package
7632 (name "r-factominer")
7633 (version "2.4")
7634 (source
7635 (origin
7636 (method url-fetch)
7637 (uri (cran-uri "FactoMineR" version))
7638 (sha256
7639 (base32
7640 "0lg8n9fxxk46nchnj4pbpqqf4swxfsq7r9jzr36dmd36kb7avqxr"))))
7641 (properties `((upstream-name . "FactoMineR")))
7642 (build-system r-build-system)
7643 (propagated-inputs
7644 `(("r-car" ,r-car)
7645 ("r-cluster" ,r-cluster)
7646 ("r-dt" ,r-dt)
7647 ("r-ellipse" ,r-ellipse)
7648 ("r-flashclust" ,r-flashclust)
7649 ("r-ggplot2" ,r-ggplot2)
7650 ("r-ggrepel" ,r-ggrepel)
7651 ("r-lattice" ,r-lattice)
7652 ("r-leaps" ,r-leaps)
7653 ("r-mass" ,r-mass)
7654 ("r-scatterplot3d" ,r-scatterplot3d)))
7655 (native-inputs
7656 `(("r-knitr" ,r-knitr)))
7657 (home-page "http://factominer.free.fr")
7658 (synopsis "Multivariate exploratory data analysis and data mining")
7659 (description
7660 "This package provides exploratory data analysis methods to summarize,
7661 visualize and describe datasets. The main principal component methods are
7662 available, those with the largest potential in terms of applications:
7663 principal component analysis (PCA) when variables are quantitative,
7664 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
7665 variables are categorical, Multiple Factor Analysis when variables are
7666 structured in groups, etc. and hierarchical cluster analysis.")
7667 (license license:gpl2+)))
7668
7669 (define-public r-factoextra
7670 (package
7671 (name "r-factoextra")
7672 (version "1.0.7")
7673 (source
7674 (origin
7675 (method url-fetch)
7676 (uri (cran-uri "factoextra" version))
7677 (sha256
7678 (base32
7679 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
7680 (build-system r-build-system)
7681 (propagated-inputs
7682 `(("r-abind" ,r-abind)
7683 ("r-cluster" ,r-cluster)
7684 ("r-dendextend" ,r-dendextend)
7685 ("r-factominer" ,r-factominer)
7686 ("r-ggplot2" ,r-ggplot2)
7687 ("r-ggpubr" ,r-ggpubr)
7688 ("r-ggrepel" ,r-ggrepel)
7689 ("r-reshape2" ,r-reshape2)
7690 ("r-tidyr" ,r-tidyr)))
7691 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
7692 (synopsis "Extract and visualize the results of multivariate data analyses")
7693 (description
7694 "This package provides some easy-to-use functions to extract and
7695 visualize the output of multivariate data analyses, including
7696 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
7697 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
7698 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
7699 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
7700 packages. It contains also functions for simplifying some clustering analysis
7701 steps and provides ggplot2-based elegant data visualization.")
7702 (license license:gpl2)))
7703
7704 (define-public r-fansi
7705 (package
7706 (name "r-fansi")
7707 (version "0.4.2")
7708 (source
7709 (origin
7710 (method url-fetch)
7711 (uri (cran-uri "fansi" version))
7712 (sha256
7713 (base32
7714 "0i7wmaflkjzdbggqv31wnsj3m9imvc6db429vyjk64xrz1ng1vd2"))))
7715 (build-system r-build-system)
7716 (native-inputs
7717 `(("r-knitr" ,r-knitr))) ; for vignettes
7718 (home-page "https://github.com/brodieG/fansi")
7719 (synopsis "ANSI control sequence aware string functions")
7720 (description
7721 "This package provides counterparts to R string manipulation functions
7722 that account for the effects of ANSI text formatting control sequences.")
7723 (license license:gpl2+)))
7724
7725 (define-public r-nbclust
7726 (package
7727 (name "r-nbclust")
7728 (version "3.0")
7729 (source
7730 (origin
7731 (method url-fetch)
7732 (uri (cran-uri "NbClust" version))
7733 (sha256
7734 (base32
7735 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
7736 (properties `((upstream-name . "NbClust")))
7737 (build-system r-build-system)
7738 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
7739 (synopsis "Determine the best number of clusters in a data set")
7740 (description
7741 "NbClust provides 30 indexes for determining the optimal number of
7742 clusters in a data set and offers the best clustering scheme from different
7743 results to the user.")
7744 (license license:gpl2)))
7745
7746 (define-public r-hdf5r
7747 (package
7748 (name "r-hdf5r")
7749 (version "1.3.3")
7750 (source
7751 (origin
7752 (method url-fetch)
7753 (uri (cran-uri "hdf5r" version))
7754 (sha256
7755 (base32
7756 "0i8m4yjxggrs05slq2afvz2ckl1yc9wq7gd1s7dq2gjn46zkry50"))))
7757 (build-system r-build-system)
7758 (inputs
7759 `(("hdf5" ,hdf5)
7760 ("zlib" ,zlib)))
7761 (propagated-inputs
7762 `(("r-bit64" ,r-bit64)
7763 ("r-r6" ,r-r6)))
7764 (native-inputs
7765 `(("r-knitr" ,r-knitr)))
7766 (home-page "https://hhoeflin.github.io/hdf5r")
7767 (synopsis "Interface to the HDF5 binary data format")
7768 (description
7769 "HDF5 is a data model, library and file format for storing and managing
7770 large amounts of data. This package provides a nearly feature complete,
7771 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
7772 functionality is added so that HDF5 objects behave very similar to their
7773 corresponding R counterparts.")
7774 (license license:asl2.0)))
7775
7776 (define-public r-itertools
7777 (package
7778 (name "r-itertools")
7779 (version "0.1-3")
7780 (source
7781 (origin
7782 (method url-fetch)
7783 (uri (cran-uri "itertools" version))
7784 (sha256
7785 (base32
7786 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
7787 (build-system r-build-system)
7788 (propagated-inputs
7789 `(("r-iterators" ,r-iterators)))
7790 (home-page "https://cran.r-project.org/web/packages/itertools/")
7791 (synopsis "Iterator tools")
7792 (description
7793 "This package provides various tools for creating iterators, many
7794 patterned after functions in the Python @code{itertools} module, and others
7795 patterned after functions in the snow package.")
7796 (license license:gpl2)))
7797
7798 (define-public r-polynom
7799 (package
7800 (name "r-polynom")
7801 (version "1.4-0")
7802 (source
7803 (origin
7804 (method url-fetch)
7805 (uri (cran-uri "polynom" version))
7806 (sha256
7807 (base32
7808 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
7809 (build-system r-build-system)
7810 (home-page "https://cran.r-project.org/web/packages/polynom/")
7811 (synopsis "Functions for univariate polynomial manipulations")
7812 (description
7813 "This package provides a collection of functions to implement a class for
7814 univariate polynomial manipulations.")
7815 (license license:gpl2)))
7816
7817 (define-public r-gbrd
7818 (package
7819 (name "r-gbrd")
7820 (version "0.4-11")
7821 (source
7822 (origin
7823 (method url-fetch)
7824 (uri (cran-uri "gbRd" version))
7825 (sha256
7826 (base32
7827 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
7828 (properties `((upstream-name . "gbRd")))
7829 (build-system r-build-system)
7830 (home-page "https://cran.r-project.org/web/packages/gbRd/")
7831 (synopsis "Utilities for processing Rd objects and files")
7832 (description
7833 "This package provides utilities for processing Rd objects and files.
7834 Extract argument descriptions and other parts of the help pages of
7835 functions.")
7836 (license license:gpl2+)))
7837
7838 (define-public r-rjags
7839 (package
7840 (name "r-rjags")
7841 (version "4-10")
7842 (source
7843 (origin
7844 (method url-fetch)
7845 (uri (cran-uri "rjags" version))
7846 (sha256
7847 (base32
7848 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
7849 (build-system r-build-system)
7850 (propagated-inputs
7851 `(("r-coda" ,r-coda)))
7852 (inputs
7853 `(("jags" ,jags)))
7854 (native-inputs
7855 `(("pkg-config" ,pkg-config)))
7856 (home-page "http://mcmc-jags.sourceforge.net")
7857 (synopsis "Bayesian graphical models using MCMC")
7858 (description
7859 "This package provides an R interface to the JAGS MCMC library. JAGS is
7860 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
7861 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
7862 (license license:gpl2)))
7863
7864 (define-public r-rbibutils
7865 (package
7866 (name "r-rbibutils")
7867 (version "2.0")
7868 (source
7869 (origin
7870 (method url-fetch)
7871 (uri (cran-uri "rbibutils" version))
7872 (sha256
7873 (base32
7874 "1vfg2188i4dyhrmvnwpsh2la8qkd4wkryz2fpj4cppi1wfz3ml83"))))
7875 (properties `((upstream-name . "rbibutils")))
7876 (build-system r-build-system)
7877 (home-page "https://geobosh.github.io/rbibutils/")
7878 (synopsis "Convert between bibliography formats")
7879 (description
7880 "This package converts between a number of bibliography formats,
7881 including BibTeX, BibLaTeX and Bibentry. It includes a port of the bibutils
7882 utilities and supports all bibliography formats and character encodings
7883 implemented in bibutils.")
7884 (license license:gpl2)))
7885
7886 (define-public r-rdpack
7887 (package
7888 (name "r-rdpack")
7889 (version "2.1.1")
7890 (source
7891 (origin
7892 (method url-fetch)
7893 (uri (cran-uri "Rdpack" version))
7894 (sha256
7895 (base32
7896 "11psw5yiamq0g7jc6fqn2wis565i60qgda4a5d09qi8fyzd6mnfb"))))
7897 (properties `((upstream-name . "Rdpack")))
7898 (build-system r-build-system)
7899 (propagated-inputs
7900 `(("r-rbibutils" ,r-rbibutils)))
7901 (home-page "https://github.com/GeoBosh/Rdpack")
7902 (synopsis "Update and manipulate Rd documentation objects")
7903 (description
7904 "This package provides functions for manipulation of R documentation
7905 objects, including functions @code{reprompt()} and @code{ereprompt()} for
7906 updating Rd documentation for functions, methods and classes; it also includes
7907 Rd macros for citations and import of references from bibtex files for use in
7908 Rd files and roxygen2 comments, as well as many functions for manipulation of
7909 references and Rd files.")
7910 (license license:gpl2+)))
7911
7912 (define-public r-officer
7913 (package
7914 (name "r-officer")
7915 (version "0.3.17")
7916 (source
7917 (origin
7918 (method url-fetch)
7919 (uri (cran-uri "officer" version))
7920 (sha256
7921 (base32
7922 "1apg0dh1zfhrqcbbmm8318l40gyjbqc2l9sdvwxx7qi8mzc1mqvw"))))
7923 (build-system r-build-system)
7924 (propagated-inputs
7925 `(("r-r6" ,r-r6)
7926 ("r-uuid" ,r-uuid)
7927 ("r-xml2" ,r-xml2)
7928 ("r-zip" ,r-zip)))
7929 (native-inputs
7930 `(("r-knitr" ,r-knitr)))
7931 (home-page "https://davidgohel.github.io/officer")
7932 (synopsis "Manipulation of Word and PowerPoint documents")
7933 (description
7934 "This package provides tools to access and manipulate Word and PowerPoint
7935 documents from R. The package focuses on tabular and graphical reporting from
7936 R; it also provides two functions that let users get document content into
7937 data objects. A set of functions lets add and remove images, tables and
7938 paragraphs of text in new or existing documents. When working with PowerPoint
7939 presentations, slides can be added or removed; shapes inside slides can also
7940 be added or removed. When working with Word documents, a cursor can be used
7941 to help insert or delete content at a specific location in the document.")
7942 (license license:gpl3)))
7943
7944 (define-public r-profilemodel
7945 (package
7946 (name "r-profilemodel")
7947 (version "0.6.1")
7948 (source
7949 (origin
7950 (method url-fetch)
7951 (uri (cran-uri "profileModel" version))
7952 (sha256
7953 (base32
7954 "01m5nb8cmq0aq555pxk2a99182si65hhmn68yn9nal2j3zl2bp4i"))))
7955 (properties `((upstream-name . "profileModel")))
7956 (build-system r-build-system)
7957 (home-page "https://github.com/ikosmidis/profileModel")
7958 (synopsis "Profiling inference functions for various model classes")
7959 (description
7960 "This package provides tools that can be used to calculate, evaluate,
7961 plot and use for inference the profiles of *arbitrary* inference functions for
7962 arbitrary @code{glm}-like fitted models with linear predictors. More information
7963 on the methods that are implemented can be found in Kosmidis (2008)
7964 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
7965 (license license:gpl2+)))
7966
7967 (define-public r-brglm
7968 (package
7969 (name "r-brglm")
7970 (version "0.7.1")
7971 (source
7972 (origin
7973 (method url-fetch)
7974 (uri (cran-uri "brglm" version))
7975 (sha256
7976 (base32
7977 "1v68ma1agwhxar76mfvdfkcnd5h4gmxiz8j491rhdsckg271j7sa"))))
7978 (properties `((upstream-name . "brglm")))
7979 (build-system r-build-system)
7980 (propagated-inputs
7981 `(("r-profilemodel" ,r-profilemodel)))
7982 (home-page "https://github.com/ikosmidis/brglm")
7983 (synopsis "Bias reduction in binomial-response generalized linear models")
7984 (description
7985 "Fit generalized linear models with binomial responses using either an
7986 adjusted-score approach to bias reduction or maximum penalized likelihood
7987 where penalization is by Jeffreys invariant prior. These procedures return
7988 estimates with improved frequentist properties (bias, mean squared error) that
7989 are always finite even in cases where the maximum likelihood estimates are
7990 infinite (data separation). Fitting takes place by fitting generalized linear
7991 models on iteratively updated pseudo-data. The interface is essentially the
7992 same as @code{glm}. More flexibility is provided by the fact that custom
7993 pseudo-data representations can be specified and used for model fitting.
7994 Functions are provided for the construction of confidence intervals for the
7995 reduced-bias estimates.")
7996 (license license:gpl2+)))
7997
7998 (define-public r-entropy
7999 (package
8000 (name "r-entropy")
8001 (version "1.2.1")
8002 (source
8003 (origin
8004 (method url-fetch)
8005 (uri (cran-uri "entropy" version))
8006 (sha256
8007 (base32
8008 "10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"))))
8009 (properties `((upstream-name . "entropy")))
8010 (build-system r-build-system)
8011 (home-page "https://www.strimmerlab.org/software/entropy/")
8012 (synopsis "Estimation of entropy, mutual information and related quantities")
8013 (description
8014 "This package implements various estimators of entropy, such as the
8015 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
8016 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
8017 estimator. It also offers an R interface to the NSB estimator. Furthermore,
8018 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
8019 mutual information, and chi-squared statistic of independence. In addition
8020 there are functions for discretizing continuous random variables.")
8021 (license license:gpl3+)))
8022
8023 (define-public r-abn
8024 (package
8025 (name "r-abn")
8026 (version "2.3-0")
8027 (source
8028 (origin
8029 (method url-fetch)
8030 (uri (cran-uri "abn" version))
8031 (sha256
8032 (base32
8033 "17vdrqm6qp5aijg00ah2imj3pqr6cl5r43hgg8dijbrbhznarci6"))))
8034 (build-system r-build-system)
8035 (inputs
8036 `(("gsl" ,gsl)))
8037 (propagated-inputs
8038 `(("r-lme4" ,r-lme4)
8039 ("r-nnet" ,r-nnet)
8040 ("r-rcpp" ,r-rcpp)
8041 ("r-rcpparmadillo" ,r-rcpparmadillo)
8042 ("r-rjags" ,r-rjags)))
8043 (home-page "https://r-bayesian-networks.org/")
8044 (synopsis "Modelling multivariate data with additive bayesian networks")
8045 (description
8046 "Bayesian network analysis is a form of probabilistic graphical models
8047 which derives from empirical data a directed acyclic graph, DAG, describing
8048 the dependency structure between random variables. An additive Bayesian
8049 network model consists of a form of a DAG where each node comprises a
8050 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
8051 equivalent to Bayesian multivariate regression using graphical modelling, they
8052 generalises the usual multivariable regression, GLM, to multiple dependent
8053 variables. This package provides routines to help determine optimal Bayesian
8054 network models for a given data set, where these models are used to identify
8055 statistical dependencies in messy, complex data.")
8056 (license license:gpl2+)))
8057
8058 (define-public r-acd
8059 (package
8060 (name "r-acd")
8061 (version "1.5.3")
8062 (source
8063 (origin
8064 (method url-fetch)
8065 (uri (cran-uri "ACD" version))
8066 (sha256
8067 (base32
8068 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
8069 (properties `((upstream-name . "ACD")))
8070 (build-system r-build-system)
8071 (home-page "https://cran.r-project.org/web/packages/ACD/")
8072 (synopsis "Categorical data analysis with complete or missing responses")
8073 (description
8074 "This package provides tools for categorical data analysis with complete
8075 or missing responses.")
8076 (license license:gpl2+)))
8077
8078 (define-public r-acdm
8079 (package
8080 (name "r-acdm")
8081 (version "1.0.4")
8082 (source
8083 (origin
8084 (method url-fetch)
8085 (uri (cran-uri "ACDm" version))
8086 (sha256
8087 (base32
8088 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
8089 (properties `((upstream-name . "ACDm")))
8090 (build-system r-build-system)
8091 (propagated-inputs
8092 `(("r-dplyr" ,r-dplyr)
8093 ("r-ggplot2" ,r-ggplot2)
8094 ("r-plyr" ,r-plyr)
8095 ("r-rsolnp" ,r-rsolnp)
8096 ("r-zoo" ,r-zoo)))
8097 (home-page "https://cran.r-project.org/web/packages/ACDm/")
8098 (synopsis "Tools for Autoregressive Conditional Duration Models")
8099 (description
8100 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
8101 and Russell, 1998) models. It creates trade, price or volume durations from
8102 transactions (tic) data, performs diurnal adjustments, fits various ACD models
8103 and tests them.")
8104 (license license:gpl2+)))
8105
8106 (define-public r-overlap
8107 (package
8108 (name "r-overlap")
8109 (version "0.3.3")
8110 (source
8111 (origin
8112 (method url-fetch)
8113 (uri (cran-uri "overlap" version))
8114 (sha256
8115 (base32
8116 "17cnr4qin1qy0df4k491267acna12gpbbps6w3gi8nccqxfrb1pd"))))
8117 (build-system r-build-system)
8118 (home-page "https://cran.r-project.org/web/packages/overlap/")
8119 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
8120 (description
8121 "This package provides functions to fit kernel density functions to data
8122 on temporal activity patterns of animals; estimate coefficients of overlapping
8123 of densities for two species; and calculate bootstrap estimates of confidence
8124 intervals.")
8125 (license license:gpl3+)))
8126
8127 (define-public r-snakecase
8128 (package
8129 (name "r-snakecase")
8130 (version "0.11.0")
8131 (source
8132 (origin
8133 (method url-fetch)
8134 (uri (cran-uri "snakecase" version))
8135 (sha256
8136 (base32
8137 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
8138 (build-system r-build-system)
8139 (propagated-inputs
8140 `(("r-stringi" ,r-stringi)
8141 ("r-stringr" ,r-stringr)))
8142 (home-page "https://github.com/Tazinho/snakecase")
8143 (synopsis "Convert strings into any case")
8144 (description
8145 "This package provides a consistent, flexible and easy to use tool to
8146 parse and convert strings into cases like snake or camel among others.")
8147 (license license:gpl3)))
8148
8149 (define-public r-prediction
8150 (package
8151 (name "r-prediction")
8152 (version "0.3.14")
8153 (source
8154 (origin
8155 (method url-fetch)
8156 (uri (cran-uri "prediction" version))
8157 (sha256
8158 (base32
8159 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
8160 (build-system r-build-system)
8161 (propagated-inputs
8162 `(("r-data-table" ,r-data-table)))
8163 (home-page "https://github.com/leeper/prediction")
8164 (synopsis "Tidy, type-safe prediction methods")
8165 (description
8166 "This package provides the @code{prediction()} function, a type-safe
8167 alternative to @code{predict()} that always returns a data frame. The package
8168 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
8169 from the @code{stats} package, as well as numerous other model classes from
8170 other add-on packages.")
8171 (license license:expat)))
8172
8173 (define-public r-insight
8174 (package
8175 (name "r-insight")
8176 (version "0.13.1")
8177 (source
8178 (origin
8179 (method url-fetch)
8180 (uri (cran-uri "insight" version))
8181 (sha256
8182 (base32
8183 "1la4yxzfl9fnknamnaziil6gvpdzl78z16lfzis9jgzg8r9q0y5l"))))
8184 (build-system r-build-system)
8185 (native-inputs
8186 `(("r-knitr" ,r-knitr)))
8187 (home-page "https://easystats.github.io/insight/")
8188 (synopsis "Easy access to model information for various model objects")
8189 (description
8190 "This package provides a tool to provide an easy, intuitive and
8191 consistent access to information contained in various R models, like model
8192 formulas, model terms, information about random effects, data that was used to
8193 fit the model or data from response variables. The package mainly revolves
8194 around two types of functions: Functions that find (the names of) information,
8195 starting with @code{find_}, and functions that get the underlying data,
8196 starting with @code{get_}. The package has a consistent syntax and works with
8197 many different model objects, where otherwise functions to access these
8198 information are missing.")
8199 (license license:gpl3)))
8200
8201 (define-public r-sjlabelled
8202 (package
8203 (name "r-sjlabelled")
8204 (version "1.1.7")
8205 (source
8206 (origin
8207 (method url-fetch)
8208 (uri (cran-uri "sjlabelled" version))
8209 (sha256
8210 (base32
8211 "0d3fsjd2gxchv8mlx9l5pf8xvkmx4pgvizam83f3qss07bmvpzwg"))))
8212 (build-system r-build-system)
8213 (propagated-inputs
8214 `(("r-insight" ,r-insight)))
8215 (native-inputs
8216 `(("r-knitr" ,r-knitr)))
8217 (home-page "https://github.com/strengejacke/sjlabelled")
8218 (synopsis "Labelled data utility functions")
8219 (description
8220 "This package provides a collection of functions dealing with labelled
8221 data, like reading and writing data between R and other statistical software
8222 packages. This includes easy ways to get, set or change value and variable
8223 label attributes, to convert labelled vectors into factors or numeric (and
8224 vice versa), or to deal with multiple declared missing values.")
8225 (license license:gpl3)))
8226
8227 (define-public r-sjmisc
8228 (package
8229 (name "r-sjmisc")
8230 (version "2.8.6")
8231 (source
8232 (origin
8233 (method url-fetch)
8234 (uri (cran-uri "sjmisc" version))
8235 (sha256
8236 (base32
8237 "1nfrkv5jfnwb85blpv7yk7xac1myzi2c30bqcf7xicniknkjwycr"))))
8238 (build-system r-build-system)
8239 (propagated-inputs
8240 `(("r-dplyr" ,r-dplyr)
8241 ("r-insight" ,r-insight)
8242 ("r-magrittr" ,r-magrittr)
8243 ("r-purrr" ,r-purrr)
8244 ("r-rlang" ,r-rlang)
8245 ("r-sjlabelled" ,r-sjlabelled)
8246 ("r-tidyselect" ,r-tidyselect)))
8247 (native-inputs
8248 `(("r-knitr" ,r-knitr)))
8249 (home-page "https://github.com/strengejacke/sjmisc")
8250 (synopsis "Data and variable transformation functions")
8251 (description
8252 "This package is a collection of miscellaneous utility functions,
8253 supporting data transformation tasks like recoding, dichotomizing or grouping
8254 variables, setting and replacing missing values. The data transformation
8255 functions also support labelled data, and all integrate seamlessly into a
8256 tidyverse workflow.")
8257 (license license:gpl3)))
8258
8259 (define-public r-nortest
8260 (package
8261 (name "r-nortest")
8262 (version "1.0-4")
8263 (source
8264 (origin
8265 (method url-fetch)
8266 (uri (cran-uri "nortest" version))
8267 (sha256
8268 (base32
8269 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
8270 (build-system r-build-system)
8271 (home-page "https://cran.r-project.org/web/packages/nortest/")
8272 (synopsis "Tests for normality")
8273 (description
8274 "This package provides five omnibus tests for testing the composite
8275 hypothesis of normality.")
8276 (license license:gpl2+)))
8277
8278 (define-public r-moonbook
8279 (package
8280 (name "r-moonbook")
8281 (version "0.2.4")
8282 (source
8283 (origin
8284 (method url-fetch)
8285 (uri (cran-uri "moonBook" version))
8286 (sha256
8287 (base32
8288 "0z78pzc8sr2g19xjdd9cmai4iqyifmh79gj8x40ddww6a27dalry"))))
8289 (properties `((upstream-name . "moonBook")))
8290 (build-system r-build-system)
8291 (propagated-inputs
8292 `(("r-magrittr" ,r-magrittr)
8293 ("r-nortest" ,r-nortest)
8294 ("r-sjmisc" ,r-sjmisc)
8295 ("r-stringr" ,r-stringr)
8296 ("r-survival" ,r-survival)
8297 ("r-ztable" ,r-ztable)))
8298 (native-inputs
8299 `(("r-knitr" ,r-knitr)))
8300 (home-page "https://github.com/cardiomoon/moonBook")
8301 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
8302 (description
8303 "This package provides several analysis-related functions for the book
8304 entitled \"R statistics and graph for medical articles\" (written in Korean),
8305 version 1, by Keon-Woong Moon with Korean demographic data with several plot
8306 functions.")
8307 (license license:gpl2)))
8308
8309 (define-public r-flextable
8310 (package
8311 (name "r-flextable")
8312 (version "0.6.4")
8313 (source
8314 (origin
8315 (method url-fetch)
8316 (uri (cran-uri "flextable" version))
8317 (sha256
8318 (base32
8319 "1ykjfnqhn8nd9f3l4jj8hf1bbjjckkna3p7fdsg0a73c05a17yma"))))
8320 (build-system r-build-system)
8321 (propagated-inputs
8322 `(("r-base64enc" ,r-base64enc)
8323 ("r-data-table" ,r-data-table)
8324 ("r-gdtools" ,r-gdtools)
8325 ("r-htmltools" ,r-htmltools)
8326 ("r-knitr" ,r-knitr)
8327 ("r-officer" ,r-officer)
8328 ("r-rlang" ,r-rlang)
8329 ("r-rmarkdown" ,r-rmarkdown)
8330 ("r-uuid" ,r-uuid)
8331 ("r-xml2" ,r-xml2)))
8332 (native-inputs
8333 `(("r-knitr" ,r-knitr)))
8334 (home-page "https://davidgohel.github.io/flextable")
8335 (synopsis "Functions for tabular reporting")
8336 (description
8337 "This package provides tools to create pretty tables for HTML documents
8338 and other formats. Functions are provided to let users create tables, modify
8339 and format their content. It extends the @code{officer} package and can be
8340 used within R markdown documents when rendering to HTML and to Word
8341 documents.")
8342 (license license:gpl3)))
8343
8344 (define-public r-writexl
8345 (package
8346 (name "r-writexl")
8347 (version "1.3.1")
8348 (source
8349 (origin
8350 (method url-fetch)
8351 (uri (cran-uri "writexl" version))
8352 (sha256
8353 (base32
8354 "1njdhvh8605wd2j8glrbxfyc36p2n88prpq080jn44s9lgfmbgsb"))))
8355 (build-system r-build-system)
8356 (inputs `(("zlib" ,zlib)))
8357 (home-page "https://github.com/ropensci/writexl")
8358 (synopsis "Export data frames to xlsx format")
8359 (description
8360 "This package provides a data frame to xlsx exporter based on
8361 libxlsxwriter.")
8362 (license license:bsd-2)))
8363
8364 (define-public r-biasedurn
8365 (package
8366 (name "r-biasedurn")
8367 (version "1.07")
8368 (source
8369 (origin
8370 (method url-fetch)
8371 (uri (cran-uri "BiasedUrn" version))
8372 (sha256
8373 (base32
8374 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
8375 (properties `((upstream-name . "BiasedUrn")))
8376 (build-system r-build-system)
8377 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
8378 (synopsis "Biased Urn model distributions")
8379 (description
8380 "This package provides statistical models of biased sampling in the form
8381 of univariate and multivariate noncentral hypergeometric distributions,
8382 including Wallenius' noncentral hypergeometric distribution and Fisher's
8383 noncentral hypergeometric distribution (also called extended hypergeometric
8384 distribution).")
8385 (license license:gpl3)))
8386
8387 (define-public r-goplot
8388 (package
8389 (name "r-goplot")
8390 (version "1.0.2")
8391 (source
8392 (origin
8393 (method url-fetch)
8394 (uri (cran-uri "GOplot" version))
8395 (sha256
8396 (base32
8397 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
8398 (properties `((upstream-name . "GOplot")))
8399 (build-system r-build-system)
8400 (propagated-inputs
8401 `(("r-ggdendro" ,r-ggdendro)
8402 ("r-ggplot2" ,r-ggplot2)
8403 ("r-gridextra" ,r-gridextra)
8404 ("r-rcolorbrewer" ,r-rcolorbrewer)))
8405 (home-page "https://github.com/wencke/wencke.github.io")
8406 (synopsis "Visualization of functional analysis data")
8407 (description
8408 "This package provides an implementation of multilayered visualizations
8409 for enhanced graphical representation of functional analysis data. It
8410 combines and integrates omics data derived from expression and functional
8411 annotation enrichment analyses. Its plotting functions have been developed
8412 with an hierarchical structure in mind: starting from a general overview to
8413 identify the most enriched categories (modified bar plot, bubble plot) to a
8414 more detailed one displaying different types of relevant information for the
8415 molecules in a given set of categories (circle plot, chord plot, cluster plot,
8416 Venn diagram, heatmap).")
8417 (license license:gpl2)))
8418
8419 (define-public r-getopt
8420 (package
8421 (name "r-getopt")
8422 (version "1.20.3")
8423 (source
8424 (origin
8425 (method url-fetch)
8426 (uri (cran-uri "getopt" version))
8427 (sha256
8428 (base32
8429 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
8430 (build-system r-build-system)
8431 (home-page "https://github.com/trevorld/getopt")
8432 (synopsis "Command-line option processor for R")
8433 (description
8434 "This package is designed to be used with Rscript to write shebang
8435 scripts that accept short and long options. Many users will prefer to
8436 use the packages @code{optparse} or @code{argparse} which add extra
8437 features like automatically generated help options and usage texts,
8438 support for default values, positional argument support, etc.")
8439 (license license:gpl2+)))
8440
8441 (define-public r-findpython
8442 (package
8443 (name "r-findpython")
8444 (version "1.0.7")
8445 (source
8446 (origin
8447 (method url-fetch)
8448 (uri (cran-uri "findpython" version))
8449 (sha256
8450 (base32
8451 "0jf10jpqla90x03kl3k77gnd255zmw9rvr8d724vb17cqawh9yar"))))
8452 (build-system r-build-system)
8453 (home-page "https://github.com/trevorld/findpython")
8454 (synopsis "Functions to find an acceptable Python binary")
8455 (description
8456 "This package was designed to find an acceptable Python binary that
8457 matches version and feature constraints.")
8458 (license license:expat)))
8459
8460 ;; This in not the same as "r-argparser"
8461 (define-public r-argparse
8462 (package
8463 (name "r-argparse")
8464 (version "2.0.3")
8465 (source
8466 (origin
8467 (method url-fetch)
8468 (uri (cran-uri "argparse" version))
8469 (sha256
8470 (base32
8471 "1c2r417m1dxk1jhcggv3g4zax5a59k9rqs9jcs6xy2pa2333jqfj"))))
8472 (build-system r-build-system)
8473 (inputs `(("python" ,python)))
8474 (propagated-inputs
8475 `(("r-findpython" ,r-findpython)
8476 ("r-jsonlite" ,r-jsonlite)
8477 ("r-r6" ,r-r6)))
8478 (native-inputs
8479 `(("r-knitr" ,r-knitr)))
8480 (home-page "https://github.com/trevorld/argparse")
8481 (synopsis "Command line optional and positional argument parser")
8482 (description
8483 "This package provides a command line parser to be used with Rscript to
8484 write shebang scripts that gracefully accept positional and optional arguments
8485 and automatically generate usage notices.")
8486 (license license:gpl2+)))
8487
8488 (define-public r-hash
8489 (package
8490 (name "r-hash")
8491 (version "2.2.6.1")
8492 (source
8493 (origin
8494 (method url-fetch)
8495 (uri (cran-uri "hash" version))
8496 (sha256
8497 (base32
8498 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
8499 (build-system r-build-system)
8500 (home-page "https://cran.r-project.org/web/packages/hash/")
8501 (synopsis "Implementation of hash/associated arrays/dictionaries")
8502 (description
8503 "This package implements a data structure similar to hashes in Perl and
8504 dictionaries in Python but with a purposefully R flavor. For objects of
8505 appreciable size, access using hashes outperforms native named lists and
8506 vectors.")
8507 (license license:gpl2+)))
8508
8509 (define-public r-orddom
8510 (package
8511 (name "r-orddom")
8512 (version "3.1")
8513 (source
8514 (origin
8515 (method url-fetch)
8516 (uri (cran-uri "orddom" version))
8517 (sha256
8518 (base32
8519 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
8520 (build-system r-build-system)
8521 (propagated-inputs `(("r-psych" ,r-psych)))
8522 (home-page "https://cran.r-project.org/web/packages/orddom/")
8523 (synopsis "Ordinal dominance statistics")
8524 (description
8525 "This package provides tools to compute ordinal, statistics and effect
8526 sizes as an alternative to mean comparison: Cliff's delta or success rate
8527 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
8528 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
8529 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
8530 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
8531 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
8532 Group (Non-)Overlap considerations.")
8533 (license license:gpl2)))
8534
8535 (define-public r-deriv
8536 (package
8537 (name "r-deriv")
8538 (version "4.1.3")
8539 (source
8540 (origin
8541 (method url-fetch)
8542 (uri (cran-uri "Deriv" version))
8543 (sha256
8544 (base32
8545 "130g3mv0z9sqs6y23a0a94512iiw05yr6fp378vhdxxbignzbnyv"))))
8546 (properties `((upstream-name . "Deriv")))
8547 (build-system r-build-system)
8548 (home-page "https://cran.r-project.org/web/packages/Deriv")
8549 (synopsis "Symbolic differentiation")
8550 (description
8551 "This package provides an R-based solution for symbolic differentiation.
8552 It admits user-defined functions as well as function substitution in arguments
8553 of functions to be differentiated. Some symbolic simplification is part of
8554 the work.")
8555 (license license:gpl3+)))
8556
8557 (define-public r-doby
8558 (package
8559 (name "r-doby")
8560 (version "4.6.9")
8561 (source
8562 (origin
8563 (method url-fetch)
8564 (uri (cran-uri "doBy" version))
8565 (sha256
8566 (base32
8567 "02f545md5yhbpp3wb3q2c8zabqwgf02555r5c6g7znab5zjbyr00"))))
8568 (properties `((upstream-name . "doBy")))
8569 (build-system r-build-system)
8570 (propagated-inputs
8571 `(("r-broom" ,r-broom)
8572 ("r-deriv" ,r-deriv)
8573 ("r-dplyr" ,r-dplyr)
8574 ("r-ggplot2" ,r-ggplot2)
8575 ("r-magrittr" ,r-magrittr)
8576 ("r-mass" ,r-mass)
8577 ("r-matrix" ,r-matrix)
8578 ("r-pbkrtest" ,r-pbkrtest)
8579 ("r-tibble" ,r-tibble)))
8580 (native-inputs
8581 `(("r-knitr" ,r-knitr)))
8582 (home-page "https://people.math.aau.dk/~sorenh/software/doBy/")
8583 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
8584 (description
8585 "This package contains:
8586
8587 @itemize
8588 @item facilities for working with grouped data: @code{do}
8589 something to data stratified @code{by} some variables.
8590 @item implementations of least-squares means, general linear contrasts, and
8591 @item miscellaneous other utilities.
8592 @end itemize\n")
8593 (license license:gpl2+)))
8594
8595 (define-public r-refgenome
8596 (package
8597 (name "r-refgenome")
8598 (version "1.7.7")
8599 (source
8600 (origin
8601 (method url-fetch)
8602 (uri (cran-uri "refGenome" version))
8603 (sha256
8604 (base32
8605 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
8606 (properties `((upstream-name . "refGenome")))
8607 (build-system r-build-system)
8608 (propagated-inputs
8609 `(("r-dbi" ,r-dbi)
8610 ("r-doby" ,r-doby)
8611 ("r-rsqlite" ,r-rsqlite)))
8612 (home-page "https://cran.r-project.org/web/packages/refGenome/")
8613 (synopsis
8614 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
8615 (description
8616 "This package contains functionality for importing and managing of
8617 downloaded genome annotation data from the Ensembl genome browser (European
8618 Bioinformatics Institute) and from the UCSC genome browser (University of
8619 California, Santa Cruz) and annotation routines for genomic positions and
8620 splice site positions.")
8621 (license license:gpl2)))
8622
8623 (define-public r-basix
8624 (package
8625 (name "r-basix")
8626 (version "1.1")
8627 (source
8628 (origin
8629 (method url-fetch)
8630 (uri (cran-uri "BASIX" version))
8631 (sha256
8632 (base32
8633 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
8634 (properties `((upstream-name . "BASIX")))
8635 (build-system r-build-system)
8636 (home-page "https://cran.r-project.org/web/packages/BASIX/")
8637 (synopsis "Efficient C/C++ toolset for R")
8638 (description
8639 "BASIX provides some efficient C/C++ implementations of native R
8640 procedures to speed up calculations in R.")
8641 (license license:gpl2)))
8642
8643 (define-public r-blockfest
8644 (package
8645 (name "r-blockfest")
8646 (version "2.0")
8647 (source
8648 (origin
8649 (method url-fetch)
8650 (uri (cran-uri "BlockFeST" version))
8651 (sha256
8652 (base32
8653 "1fcl3yc1cf09znqbj787d3fd2kl5rp63la7pxawsgmap7nxwkp65"))))
8654 (properties `((upstream-name . "BlockFeST")))
8655 (build-system r-build-system)
8656 (propagated-inputs `(("r-basix" ,r-basix)))
8657 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
8658 (synopsis "Bayesian calculation of region-specific fixation index")
8659 (description
8660 "This package provides an R implementation of an extension of the
8661 BayeScan software for codominant markers, adding the option to group
8662 individual SNPs into pre-defined blocks. A typical application of this new
8663 approach is the identification of genomic regions, genes, or gene sets
8664 containing one or more SNPs that evolved under directional selection.")
8665 (license license:gpl2)))
8666
8667 (define-public r-proc
8668 (package
8669 (name "r-proc")
8670 (version "1.17.0.1")
8671 (source
8672 (origin
8673 (method url-fetch)
8674 (uri (cran-uri "pROC" version))
8675 (sha256
8676 (base32
8677 "1gd6a47d6bcfd237s3g7r9rws8x2sg7zrvq5k6clpc41zdpp4712"))))
8678 (properties `((upstream-name . "pROC")))
8679 (build-system r-build-system)
8680 (propagated-inputs
8681 `(("r-plyr" ,r-plyr)
8682 ("r-rcpp" ,r-rcpp)))
8683 (home-page "https://web.expasy.org/pROC/")
8684 (synopsis "Display and analyze ROC curves")
8685 (description
8686 "This package provides tools for visualizing, smoothing and comparing
8687 receiver operating characteristic (ROC curves). The area under the
8688 curve (AUC) can be compared with statistical tests based on U-statistics or
8689 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
8690 (license license:gpl3+)))
8691
8692 (define-public r-rootsolve
8693 (package
8694 (name "r-rootsolve")
8695 (version "1.8.2.1")
8696 (source
8697 (origin
8698 (method url-fetch)
8699 (uri (cran-uri "rootSolve" version))
8700 (sha256
8701 (base32
8702 "0c9hhgq1pgqdg80a6n2ssfbj5nyaf97y4iiya7j7l6b34qc53128"))))
8703 (properties `((upstream-name . "rootSolve")))
8704 (build-system r-build-system)
8705 (native-inputs `(("gfortran" ,gfortran)))
8706 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
8707 (synopsis "Tools for the analysis of ordinary differential equations")
8708 (description
8709 "This package provides routines to find the root of nonlinear functions,
8710 and to perform steady-state and equilibrium analysis of @dfn{ordinary
8711 differential equations} (ODE). It includes routines that:
8712
8713 @enumerate
8714 @item generate gradient and jacobian matrices (full and banded),
8715 @item find roots of non-linear equations by the Newton-Raphson method,
8716 @item estimate steady-state conditions of a system of (differential) equations
8717 in full, banded or sparse form, using the Newton-Raphson method, or by
8718 dynamically running,
8719 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
8720 and 3-D partial differential equations, that have been converted to ordinary
8721 differential equations by numerical differencing (using the method-of-lines
8722 approach).
8723 @end enumerate\n")
8724 (license license:gpl2+)))
8725
8726 (define-public r-abcanalysis
8727 (package
8728 (name "r-abcanalysis")
8729 (version "1.2.1")
8730 (source
8731 (origin
8732 (method url-fetch)
8733 (uri (cran-uri "ABCanalysis" version))
8734 (sha256
8735 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
8736 (properties `((upstream-name . "ABCanalysis")))
8737 (build-system r-build-system)
8738 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
8739 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
8740 (synopsis "Computed ABC Analysis")
8741 (description
8742 "Multivariate data sets often differ in several factors or derived statistical
8743 parameters, which have to be selected for a valid interpretation. Basing this
8744 selection on traditional statistical limits leads occasionally to the perception
8745 of losing information from a data set. This package provides tools to calculate
8746 these limits on the basis of the mathematical properties of the distribution of
8747 the analyzed items.")
8748 (license license:gpl3)))
8749
8750 (define-public r-slam
8751 (package
8752 (name "r-slam")
8753 (version "0.1-48")
8754 (source
8755 (origin
8756 (method url-fetch)
8757 (uri (cran-uri "slam" version))
8758 (sha256
8759 (base32 "1ppsvkph4v1dffxgp12a4wnr9arj7pkmh4qv0and3f6nbz9k42qa"))))
8760 (build-system r-build-system)
8761 (home-page "https://cran.r-project.org/web/packages/slam/")
8762 (synopsis "Sparse lightweight arrays and matrices")
8763 (description
8764 "This package contains data structures and algorithms for sparse arrays and matrices,
8765 based on index arrays and simple triplet representations, respectively.")
8766 (license license:gpl2)))
8767
8768 (define-public r-manipulatewidget
8769 (package
8770 (name "r-manipulatewidget")
8771 (version "0.10.1")
8772 (source
8773 (origin
8774 (method url-fetch)
8775 (uri (cran-uri "manipulateWidget" version))
8776 (sha256
8777 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
8778 (properties
8779 `((upstream-name . "manipulateWidget")))
8780 (build-system r-build-system)
8781 (propagated-inputs
8782 `(("r-base64enc" ,r-base64enc)
8783 ("r-codetools" ,r-codetools)
8784 ("r-htmltools" ,r-htmltools)
8785 ("r-htmlwidgets" ,r-htmlwidgets)
8786 ("r-knitr" ,r-knitr)
8787 ("r-miniui" ,r-miniui)
8788 ("r-shiny" ,r-shiny)
8789 ("r-webshot" ,r-webshot)))
8790 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
8791 (synopsis "Add even more interactivity to interactive charts")
8792 (description
8793 "This package lets you create in just a few lines of R code a nice user interface to
8794 modify the data or the graphical parameters of one or multiple interactive
8795 charts. It is useful to quickly explore visually some data or for package
8796 developers to generate user interfaces easy to maintain.")
8797 (license license:gpl2+)))
8798
8799 (define-public r-a3
8800 (package
8801 (name "r-a3")
8802 (version "1.0.0")
8803 (source
8804 (origin
8805 (method url-fetch)
8806 (uri (cran-uri "A3" version))
8807 (sha256
8808 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
8809 (properties `((upstream-name . "A3")))
8810 (build-system r-build-system)
8811 (propagated-inputs
8812 `(("r-pbapply" ,r-pbapply)
8813 ("r-xtable" ,r-xtable)))
8814 (home-page "https://cran.r-project.org/web/packages/A3/")
8815 (synopsis "Error metrics for predictive models")
8816 (description
8817 "This package supplies tools for tabulating and analyzing the results of predictive
8818 models. The methods employed are applicable to virtually any predictive model
8819 and make comparisons between different methodologies straightforward.")
8820 (license license:gpl2+)))
8821
8822 (define-public r-infotheo
8823 (package
8824 (name "r-infotheo")
8825 (version "1.2.0")
8826 (source
8827 (origin
8828 (method url-fetch)
8829 (uri (cran-uri "infotheo" version))
8830 (sha256
8831 (base32
8832 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
8833 (build-system r-build-system)
8834 (home-page "http://homepage.meyerp.com/software")
8835 (synopsis "Information-theoretic measures")
8836 (description
8837 "This package implements various measures of information theory based on
8838 several entropy estimators.")
8839 (license license:gpl3+)))
8840
8841 (define-public r-abcoptim
8842 (package
8843 (name "r-abcoptim")
8844 (version "0.15.0")
8845 (source
8846 (origin
8847 (method url-fetch)
8848 (uri (cran-uri "ABCoptim" version))
8849 (sha256
8850 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
8851 (properties `((upstream-name . "ABCoptim")))
8852 (build-system r-build-system)
8853 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
8854 (home-page "https://github.com/gvegayon/ABCoptim/")
8855 (synopsis "Optimization of Artificial Bee Colony algorithm")
8856 (description
8857 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
8858 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
8859 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
8860 algorithms, and uses only common control parameters such as colony size and
8861 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
8862 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
8863 This version is a work-in-progress and is written in R code.")
8864 (license license:expat)))
8865
8866 (define-public r-abcp2
8867 (package
8868 (name "r-abcp2")
8869 (version "1.2")
8870 (source
8871 (origin
8872 (method url-fetch)
8873 (uri (cran-uri "ABCp2" version))
8874 (sha256
8875 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
8876 (properties `((upstream-name . "ABCp2")))
8877 (build-system r-build-system)
8878 (propagated-inputs `(("r-mass" ,r-mass)))
8879 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
8880 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
8881 (description
8882 "This package tests the goodness of fit of a distribution of offspring to the Normal,
8883 Poisson, and Gamma distribution and estimates the proportional paternity of the
8884 second male (P2) based on the best fit distribution.")
8885 (license license:gpl2)))
8886
8887 (define-public r-abcrf
8888 (package
8889 (name "r-abcrf")
8890 (version "1.8.1")
8891 (source
8892 (origin
8893 (method url-fetch)
8894 (uri (cran-uri "abcrf" version))
8895 (sha256
8896 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
8897 (build-system r-build-system)
8898 (propagated-inputs
8899 `(("r-doparallel" ,r-doparallel)
8900 ("r-foreach" ,r-foreach)
8901 ("r-mass" ,r-mass)
8902 ("r-matrixstats" ,r-matrixstats)
8903 ("r-ranger" ,r-ranger)
8904 ("r-rcpp" ,r-rcpp)
8905 ("r-rcpparmadillo" ,r-rcpparmadillo)
8906 ("r-readr" ,r-readr)
8907 ("r-stringr" ,r-stringr)))
8908 (home-page "https://cran.r-project.org/web/packages/abcrf/")
8909 (synopsis "Approximate bayesian computation via random forests")
8910 (description
8911 "This package performs approximate bayesian computation (ABC) model choice and
8912 parameter inference via random forests. This machine learning tool named random
8913 forests (RF) can conduct selection among the highly complex models covered by
8914 ABC algorithms.")
8915 (license license:gpl2+)))
8916
8917 (define-public r-abctools
8918 (package
8919 (name "r-abctools")
8920 (version "1.1.3")
8921 (source
8922 (origin
8923 (method url-fetch)
8924 (uri (cran-uri "abctools" version))
8925 (sha256
8926 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
8927 (build-system r-build-system)
8928 (propagated-inputs
8929 `(("r-abc" ,r-abc)
8930 ("r-abind" ,r-abind)
8931 ("r-hmisc" ,r-hmisc)
8932 ("r-plyr" ,r-plyr)))
8933 (home-page "https://github.com/dennisprangle/abctools/")
8934 (synopsis "Tools for ABC analyses")
8935 (description
8936 "This @code{r-abctools} package provides tools for approximate Bayesian computation
8937 including summary statistic selection and assessing coverage. This includes
8938 recent dimension reduction algorithms to tune the choice of summary statistics,
8939 and coverage methods to tune the choice of threshold.")
8940 (license license:gpl2+)))
8941
8942 (define-public r-ggstance
8943 (package
8944 (name "r-ggstance")
8945 (version "0.3.5")
8946 (source
8947 (origin
8948 (method url-fetch)
8949 (uri (cran-uri "ggstance" version))
8950 (sha256
8951 (base32 "0jz9vvnmcc6a38n8nzr458r65sna23bgn5r8mxdhzdlyqibihr7d"))))
8952 (build-system r-build-system)
8953 (propagated-inputs
8954 `(("r-ggplot2" ,r-ggplot2)
8955 ("r-plyr" ,r-plyr)
8956 ("r-rlang" ,r-rlang)
8957 ("r-withr" ,r-withr)))
8958 (home-page "https://cran.r-project.org/web/packages/ggstance/")
8959 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
8960 (description
8961 "This package is a @code{r-ggplot2} extension that provides flipped components:
8962 @enumerate
8963 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
8964 @item vertical versions of @code{r-ggplot2} positions.
8965 @end enumerate")
8966 (license license:gpl3)))
8967
8968 (define-public r-mosaiccore
8969 (package
8970 (name "r-mosaiccore")
8971 (version "0.9.0")
8972 (source
8973 (origin
8974 (method url-fetch)
8975 (uri (cran-uri "mosaicCore" version))
8976 (sha256
8977 (base32 "1h3ixzna4xy42rdnd89jj0v9q0riy3fnkd33z6l5c0zaidzm58fz"))))
8978 (properties `((upstream-name . "mosaicCore")))
8979 (build-system r-build-system)
8980 (propagated-inputs
8981 `(("r-dplyr" ,r-dplyr)
8982 ("r-mass" ,r-mass)
8983 ("r-rlang" ,r-rlang)
8984 ("r-tidyr" ,r-tidyr)))
8985 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
8986 (synopsis "Common utilities for mosaic family packages")
8987 (description
8988 "Common utilities used in other Mosaic family packages are collected here.")
8989 (license license:gpl2+)))
8990
8991 (define-public r-labelled
8992 (package
8993 (name "r-labelled")
8994 (version "2.8.0")
8995 (source
8996 (origin
8997 (method url-fetch)
8998 (uri (cran-uri "labelled" version))
8999 (sha256
9000 (base32
9001 "0fs8fhmk9j2nv2j87mpkmm0clz34f8kybnzn6pzqpcbwk0i2pcwg"))))
9002 (properties `((upstream-name . "labelled")))
9003 (build-system r-build-system)
9004 (propagated-inputs
9005 `(("r-dplyr" ,r-dplyr)
9006 ("r-haven" ,r-haven)
9007 ("r-lifecycle" ,r-lifecycle)
9008 ("r-rlang" ,r-rlang)
9009 ("r-stringr" ,r-stringr)
9010 ("r-tidyr" ,r-tidyr)
9011 ("r-vctrs" ,r-vctrs)))
9012 (native-inputs
9013 `(("r-knitr" ,r-knitr)))
9014 (home-page "http://larmarange.github.io/labelled/")
9015 (synopsis "Manipulating labelled data")
9016 (description
9017 "This package provides useful functions to deal with the
9018 @code{haven_labelled} and @code{haven_labelled_spss} classes introduced by the
9019 haven package. ")
9020 (license license:gpl3)))
9021
9022 (define-public r-ggformula
9023 (package
9024 (name "r-ggformula")
9025 (version "0.10.1")
9026 (source
9027 (origin
9028 (method url-fetch)
9029 (uri (cran-uri "ggformula" version))
9030 (sha256
9031 (base32 "1ph5jd8svk8hmshi894vmmpq3zwgdmf4yn3gmdlkad68z8jynhsp"))))
9032 (build-system r-build-system)
9033 (propagated-inputs
9034 `(("r-ggforce" ,r-ggforce)
9035 ("r-ggplot2" ,r-ggplot2)
9036 ("r-ggridges" ,r-ggridges)
9037 ("r-ggstance" ,r-ggstance)
9038 ("r-labelled" ,r-labelled)
9039 ("r-magrittr" ,r-magrittr)
9040 ("r-mosaiccore" ,r-mosaiccore)
9041 ("r-rlang" ,r-rlang)
9042 ("r-scales" ,r-scales)
9043 ("r-stringr" ,r-stringr)
9044 ("r-tibble" ,r-tibble)))
9045 (native-inputs
9046 `(("r-knitr" ,r-knitr)))
9047 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
9048 (synopsis "Formula interface for the @code{r-ggplot2}")
9049 (description
9050 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
9051 gf_density(), and so on, bring the formula interface to ggplot(). This captures
9052 and extends the excellent simplicity of the lattice-graphics formula interface,
9053 while providing the intuitive capabilities of @code{r-ggplot2}.")
9054 (license license:expat)))
9055
9056 (define-public r-mosaicdata
9057 (package
9058 (name "r-mosaicdata")
9059 (version "0.20.2")
9060 (source
9061 (origin
9062 (method url-fetch)
9063 (uri (cran-uri "mosaicData" version))
9064 (sha256
9065 (base32 "0h3f5fgzkzjfgf3ml0qa5j52921y6wy6jgggxmhs31bs8fd4srg4"))))
9066 (properties `((upstream-name . "mosaicData")))
9067 (build-system r-build-system)
9068 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
9069 (synopsis "Data sets for project Mosaic")
9070 (description
9071 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
9072 used to teach mathematics, statistics, computation and modeling.")
9073 (license license:gpl2+)))
9074
9075 (define-public r-raster
9076 (package
9077 (name "r-raster")
9078 (version "3.4-5")
9079 (source
9080 (origin
9081 (method url-fetch)
9082 (uri (cran-uri "raster" version))
9083 (sha256
9084 (base32
9085 "19g4chd0nyhnz6hc2j0v9ahjcgz64vvja4y3mrj1pfis1dwhsqn6"))))
9086 (build-system r-build-system)
9087 (propagated-inputs
9088 `(("r-rcpp" ,r-rcpp)
9089 ("r-sp" ,r-sp)))
9090 (home-page "https://www.rspatial.org/")
9091 (synopsis "Geographic data analysis and modeling")
9092 (description
9093 "The package implements basic and high-level functions for reading,
9094 writing, manipulating, analyzing and modeling of gridded spatial data.
9095 Processing of very large files is supported.")
9096 (license license:gpl3+)))
9097
9098 (define-public r-mosaic
9099 (package
9100 (name "r-mosaic")
9101 (version "1.4.0")
9102 (source
9103 (origin
9104 (method url-fetch)
9105 (uri (cran-uri "mosaic" version))
9106 (sha256
9107 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
9108 (build-system r-build-system)
9109 (propagated-inputs
9110 `(("r-broom" ,r-broom)
9111 ("r-dplyr" ,r-dplyr)
9112 ("r-ggdendro" ,r-ggdendro)
9113 ("r-ggformula" ,r-ggformula)
9114 ("r-ggplot2" ,r-ggplot2)
9115 ("r-ggrepel" ,r-ggrepel)
9116 ("r-glue" ,r-glue)
9117 ("r-gridextra" ,r-gridextra)
9118 ("r-lattice" ,r-lattice)
9119 ("r-latticeextra" ,r-latticeextra)
9120 ("r-lazyeval" ,r-lazyeval)
9121 ("r-mass" ,r-mass)
9122 ("r-matrix" ,r-matrix)
9123 ("r-mosaiccore" ,r-mosaiccore)
9124 ("r-mosaicdata" ,r-mosaicdata)
9125 ("r-readr" ,r-readr)
9126 ("r-tidyr" ,r-tidyr)))
9127 (native-inputs
9128 `(("r-knitr" ,r-knitr)))
9129 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
9130 (synopsis "Mathematics, statistics, and computation teaching utilities")
9131 (description
9132 "This package contain data sets and utilities from
9133 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
9134 statistics, computation and modeling. Project MOSAIC is a community of
9135 educators working to tie together aspects of quantitative work that students
9136 in science, technology, engineering and mathematics will need in their
9137 professional lives, but which are usually taught in isolation, if at all.")
9138 (license license:gpl2+)))
9139
9140 (define-public r-abd
9141 (package
9142 (name "r-abd")
9143 (version "0.2-8")
9144 (source
9145 (origin
9146 (method url-fetch)
9147 (uri (cran-uri "abd" version))
9148 (sha256
9149 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
9150 (build-system r-build-system)
9151 (propagated-inputs
9152 `(("r-lattice" ,r-lattice)
9153 ("r-mosaic" ,r-mosaic)
9154 ("r-nlme" ,r-nlme)))
9155 (home-page "https://cran.r-project.org/web/packages/abd/")
9156 (synopsis "Analysis of biological data")
9157 (description
9158 "The @code{r-abd} package contains data sets and sample code for the Analysis of
9159 biological data by Michael Whitlock and Dolph Schluter.")
9160 (license license:gpl2)))
9161
9162 (define-public r-svgui
9163 (package
9164 (name "r-svgui")
9165 (version "1.0.0")
9166 (source
9167 (origin
9168 (method url-fetch)
9169 (uri (cran-uri "svGUI" version))
9170 (sha256
9171 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
9172 (properties `((upstream-name . "svGUI")))
9173 (build-system r-build-system)
9174 (home-page "https://github.com/SciViews/svGUI/")
9175 (synopsis "Functions for managing GUI clients in R")
9176 (description
9177 "The SciViews @code{svGUI} package eases the management of Graphical User
9178 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
9179 centralizes info about GUI elements currently used, and it dispatches GUI
9180 calls to the particular toolkits in use in function of the context.")
9181 (license license:gpl2)))
9182
9183 (define-public r-svdialogs
9184 (package
9185 (name "r-svdialogs")
9186 (version "1.0.0")
9187 (source
9188 (origin
9189 (method url-fetch)
9190 (uri (cran-uri "svDialogs" version))
9191 (sha256
9192 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
9193 (properties `((upstream-name . "svDialogs")))
9194 (build-system r-build-system)
9195 (inputs
9196 `(("yad" ,yad)
9197 ("zenity" ,zenity)))
9198 (propagated-inputs
9199 `(("r-rstudioapi" ,r-rstudioapi)
9200 ("r-svgui" ,r-svgui)))
9201 (home-page "https://github.com/SciViews/svDialogs/")
9202 (synopsis "Portable dialog boxes")
9203 (description
9204 "This package helps to construct standard dialog boxes for your GUI, including
9205 message boxes, input boxes, list, file or directory selection, and others. In
9206 case R cannot display GUI dialog boxes, a simpler command line version of these
9207 interactive elements is also provided as a fallback solution.")
9208 (license license:gpl2)))
9209
9210 (define-public r-abe
9211 (package
9212 (name "r-abe")
9213 (version "3.0.1")
9214 (source
9215 (origin
9216 (method url-fetch)
9217 (uri (cran-uri "abe" version))
9218 (sha256
9219 (base32
9220 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
9221 (build-system r-build-system)
9222 (home-page "https://cran.r-project.org/web/packages/abe/")
9223 (synopsis "Augmented backward elimination")
9224 (description
9225 "This package performs augmented backward elimination and checks the
9226 stability of the obtained model. Augmented backward elimination combines
9227 significance or information based criteria with the change in estimate to
9228 either select the optimal model for prediction purposes or to serve as a tool
9229 to obtain a practically sound, highly interpretable model.")
9230 (license license:gpl2+)))
9231
9232 (define-public r-abf2
9233 (package
9234 (name "r-abf2")
9235 (version "0.7-1")
9236 (source
9237 (origin
9238 (method url-fetch)
9239 (uri (cran-uri "abf2" version))
9240 (sha256
9241 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
9242 (build-system r-build-system)
9243 (home-page "https://cran.r-project.org/web/packages/abf2/")
9244 (synopsis "Load gap-free axon @code{r-abf2} files")
9245 (description
9246 "This package loads electrophysiology data from ABF2 files, as created by
9247 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
9248 mode are currently supported.")
9249 (license license:artistic2.0)))
9250
9251 (define-public r-abhgenotyper
9252 (package
9253 (name "r-abhgenotyper")
9254 (version "1.0.1")
9255 (source
9256 (origin
9257 (method url-fetch)
9258 (uri (cran-uri "ABHgenotypeR" version))
9259 (sha256
9260 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
9261 (properties `((upstream-name . "ABHgenotypeR")))
9262 (build-system r-build-system)
9263 (propagated-inputs
9264 `(("r-ggplot2" ,r-ggplot2)
9265 ("r-reshape2" ,r-reshape2)))
9266 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
9267 (synopsis "Visualize and manipulate ABH genotypes")
9268 (description
9269 "The @code{r-abhgenotyper} package provides simple imputation,
9270 error-correction and plotting capacities for genotype data. The package is
9271 supposed to serve as an intermediate but independent analysis tool between the
9272 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
9273 not found in either TASSEL or @code{r-qtl} in addition to visualization of
9274 genotypes as \"graphical genotypes\".")
9275 (license license:gpl3)))
9276
9277 (define-public r-furrr
9278 (package
9279 (name "r-furrr")
9280 (version "0.2.2")
9281 (source
9282 (origin
9283 (method url-fetch)
9284 (uri (cran-uri "furrr" version))
9285 (sha256
9286 (base32
9287 "0kfd4hw1yn2mfxzjgiz4r6yi2vsp1j0wy5hdhzd6wha7vi9h7hg5"))))
9288 (build-system r-build-system)
9289 (propagated-inputs
9290 `(("r-ellipsis" ,r-ellipsis)
9291 ("r-future" ,r-future)
9292 ("r-globals" ,r-globals)
9293 ("r-lifecycle" ,r-lifecycle)
9294 ("r-purrr" ,r-purrr)
9295 ("r-rlang" ,r-rlang)
9296 ("r-vctrs" ,r-vctrs)))
9297 (home-page "https://github.com/DavisVaughan/furrr")
9298 (synopsis "Apply mapping functions in parallel using futures")
9299 (description
9300 "This package provides implementations of the family of @code{map()}
9301 functions from the @code{purrr} package that can be resolved using any
9302 @code{future}-supported backend, e.g. parallel on the local machine or
9303 distributed on a compute cluster.")
9304 (license license:lgpl2.1+)))
9305
9306 (define-public r-abjutils
9307 (package
9308 (name "r-abjutils")
9309 (version "0.3.1")
9310 (source
9311 (origin
9312 (method url-fetch)
9313 (uri (cran-uri "abjutils" version))
9314 (sha256
9315 (base32 "18mmlkqsrjfclk8islfjdsp8sbw6dpjj5x45kqilxdiss69gg5zd"))))
9316 (build-system r-build-system)
9317 (propagated-inputs
9318 `(("r-dplyr" ,r-dplyr)
9319 ("r-magrittr" ,r-magrittr)
9320 ("r-purrr" ,r-purrr)
9321 ("r-rlang" ,r-rlang)
9322 ("r-rstudioapi" ,r-rstudioapi)
9323 ("r-stringi" ,r-stringi)
9324 ("r-stringr" ,r-stringr)
9325 ("r-tidyr" ,r-tidyr)))
9326 (home-page "https://github.com/abjur/abjutils/")
9327 (synopsis "Collection of tools for jurimetrical analysis")
9328 (description
9329 "This package implements general purpose tools, such as functions for
9330 sampling and basic manipulation of Brazilian lawsuits identification number.
9331 It also implements functions for text cleaning, such as accentuation
9332 removal.")
9333 (license license:expat)))
9334
9335 (define-public r-abnormality
9336 (package
9337 (name "r-abnormality")
9338 (version "0.1.0")
9339 (source
9340 (origin
9341 (method url-fetch)
9342 (uri (cran-uri "abnormality" version))
9343 (sha256
9344 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
9345 (build-system r-build-system)
9346 (propagated-inputs
9347 `(("r-mass" ,r-mass)
9348 ("r-matrix" ,r-matrix)))
9349 (home-page "https://cran.r-project.org/web/packages/abnormality/")
9350 (synopsis "Measure a subject's abnormality with respect to a reference population")
9351 (description
9352 "This package contains functions to implement the methodology and
9353 considerations laid out by Marks et al. in the article \"Measuring abnormality
9354 in high dimensional spaces: applications in biomechanical gait analysis\".
9355 Using high-dimensional datasets to measure a subject's overall level of
9356 abnormality as compared to a reference population is often needed in outcomes
9357 research.")
9358 (license license:expat)))
9359
9360 (define-public r-abodoutlier
9361 (package
9362 (name "r-abodoutlier")
9363 (version "0.1")
9364 (source
9365 (origin
9366 (method url-fetch)
9367 (uri (cran-uri "abodOutlier" version))
9368 (sha256
9369 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
9370 (properties `((upstream-name . "abodOutlier")))
9371 (build-system r-build-system)
9372 (propagated-inputs
9373 `(("r-cluster" ,r-cluster)))
9374 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
9375 (synopsis "Angle-based outlier detection")
9376 (description
9377 "This package performs angle-based outlier detection on a given data
9378 frame. It offers three methods to process data:
9379 @enumerate
9380 @item full but slow implementation using all the data that has cubic
9381 complexity;
9382 @item a fully randomized method;
9383 @item a method using k-nearest neighbours.
9384 @end enumerate
9385 These algorithms are well suited for high dimensional data outlier
9386 detection.")
9387 (license license:expat)))
9388
9389 (define-public r-abps
9390 (package
9391 (name "r-abps")
9392 (version "0.3")
9393 (source
9394 (origin
9395 (method url-fetch)
9396 (uri (cran-uri "ABPS" version))
9397 (sha256
9398 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
9399 (properties `((upstream-name . "ABPS")))
9400 (build-system r-build-system)
9401 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
9402 (home-page "https://cran.r-project.org/web/packages/ABPS/")
9403 (synopsis "Abnormal blood profile score to detect blood doping")
9404 (description
9405 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
9406 The ABPS is a part of the Athlete biological passport program of the World
9407 anti-doping agency, which combines several blood parameters into a single
9408 score in order to detect blood doping. The package also contains functions to
9409 calculate other scores used in anti-doping programs, such as the ratio of
9410 hemoglobin to reticulocytes (OFF-score), as well as example data.")
9411 (license license:gpl2+)))
9412
9413 (define-public r-parmigene
9414 (package
9415 (name "r-parmigene")
9416 (version "1.1.0")
9417 (source
9418 (origin
9419 (method url-fetch)
9420 (uri (cran-uri "parmigene" version))
9421 (sha256
9422 (base32
9423 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
9424 (build-system r-build-system)
9425 (home-page "https://cran.r-project.org/web/packages/parmigene/")
9426 (synopsis "Mutual information estimation for gene network reconstruction")
9427 (description
9428 "This package provides a parallel estimation of the mutual information
9429 based on entropy estimates from k-nearest neighbors distances and algorithms
9430 for the reconstruction of gene regulatory networks.")
9431 (license license:agpl3+)))
9432
9433 (define-public r-pscl
9434 (package
9435 (name "r-pscl")
9436 (version "1.5.5")
9437 (source
9438 (origin
9439 (method url-fetch)
9440 (uri (cran-uri "pscl" version))
9441 (sha256
9442 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
9443 (build-system r-build-system)
9444 (propagated-inputs
9445 `(("r-mass" ,r-mass)))
9446 (home-page "https://github.com/atahk/pscl/")
9447 (synopsis "Political science computational laboratory")
9448 (description
9449 "The @code{pscl} is an R package providing classes and methods for:
9450 @enumerate
9451 @item Bayesian analysis of roll call data (item-response models);
9452 @item elementary Bayesian statistics;
9453 @item maximum likelihood estimation of zero-inflated and hurdle models for count
9454 data;
9455 @item utility functions.
9456 @end enumerate")
9457 (license license:gpl2)))
9458
9459 (define-public r-accelmissing
9460 (package
9461 (name "r-accelmissing")
9462 (version "1.4")
9463 (source
9464 (origin
9465 (method url-fetch)
9466 (uri (cran-uri "accelmissing" version))
9467 (sha256
9468 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
9469 (build-system r-build-system)
9470 (propagated-inputs
9471 `(("r-mice" ,r-mice)
9472 ("r-pscl" ,r-pscl)))
9473 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
9474 (synopsis "Missing value imputation for accelerometer data")
9475 (description
9476 "This package provides a statistical method to impute the missing values in
9477 accelerometer data. The methodology includes both parametric and
9478 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
9479 model. It also provides multiple functions to preprocess the accelerometer data
9480 previous to the missing data imputation. These include detecting the wearing
9481 and the non-wearing time, selecting valid days and subjects, and creating plots.")
9482 (license license:gpl2+)))
9483
9484 (define-public r-mhsmm
9485 (package
9486 (name "r-mhsmm")
9487 (version "0.4.16")
9488 (source
9489 (origin
9490 (method url-fetch)
9491 (uri (cran-uri "mhsmm" version))
9492 (sha256
9493 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
9494 (build-system r-build-system)
9495 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
9496 (home-page "https://github.com/jaredo/mhsmm/")
9497 (synopsis "Inference for hidden Markov and semi-Markov models")
9498 (description
9499 "The @code{r-mhsmm} package implements estimation and prediction methods for
9500 hidden Markov and semi-Markov models for multiple observation sequences. Such
9501 techniques are of interest when observed data is thought to be dependent on some
9502 unobserved (or hidden) state. Also, this package is suitable for equidistant
9503 time series data, with multivariate and/or missing data. Allows user defined
9504 emission distributions.")
9505 (license license:gpl2+)))
9506
9507 (define-public r-nleqslv
9508 (package
9509 (name "r-nleqslv")
9510 (version "3.3.2")
9511 (source
9512 (origin
9513 (method url-fetch)
9514 (uri (cran-uri "nleqslv" version))
9515 (sha256
9516 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
9517 (build-system r-build-system)
9518 (native-inputs `(("gfortran" ,gfortran)))
9519 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
9520 (synopsis "Solve systems of nonlinear equations")
9521 (description
9522 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
9523 Broyden or a Newton method with a choice of global strategies such as line
9524 search and trust region. There are options for using a numerical or user
9525 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
9526 singular or ill-conditioned Jacobian.")
9527 (license license:gpl2+)))
9528
9529 (define-public r-physicalactivity
9530 (package
9531 (name "r-physicalactivity")
9532 (version "0.2-4")
9533 (source
9534 (origin
9535 (method url-fetch)
9536 (uri (cran-uri "PhysicalActivity" version))
9537 (sha256
9538 (base32 "0b27prkv3x6v2afz0y53ccs9scibpc7nj54n0hpd9fgn1wyg4c40"))))
9539 (properties
9540 `((upstream-name . "PhysicalActivity")))
9541 (build-system r-build-system)
9542 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
9543 (synopsis "Procesing accelerometer data for physical activity measurement")
9544 (description
9545 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
9546 for classification of monitor wear and nonwear time intervals in accelerometer
9547 data collected to assess physical activity. The package also contains functions
9548 for making plots of accelerometer data and obtaining the summary of various
9549 information including daily monitor wear time and the mean monitor wear time
9550 during valid days. The revised package version 0.2-1 improved the functions
9551 regarding speed, robustness and add better support for time zones and daylight
9552 saving. In addition, several functions were added:
9553 @enumerate
9554 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
9555 @item the @code{markPAI} can categorize physical activity intensity level based
9556 on user-defined cut-points of accelerometer counts.
9557 @end enumerate
9558 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
9559 @code{queryActigraph} functions.")
9560 (license license:gpl3+)))
9561
9562 (define-public r-acc
9563 (package
9564 (name "r-acc")
9565 (version "1.3.3")
9566 (source
9567 (origin
9568 (method url-fetch)
9569 (uri (cran-uri "acc" version))
9570 (sha256
9571 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
9572 (build-system r-build-system)
9573 (propagated-inputs
9574 `(("r-circlize" ,r-circlize)
9575 ("r-dbi" ,r-dbi)
9576 ("r-ggplot2" ,r-ggplot2)
9577 ("r-iterators" ,r-iterators)
9578 ("r-mhsmm" ,r-mhsmm)
9579 ("r-nleqslv" ,r-nleqslv)
9580 ("r-physicalactivity" ,r-physicalactivity)
9581 ("r-plyr" ,r-plyr)
9582 ("r-r-utils" ,r-r-utils)
9583 ("r-rcpp" ,r-rcpp)
9584 ("r-rcpparmadillo" ,r-rcpparmadillo)
9585 ("r-rsqlite" ,r-rsqlite)
9586 ("r-zoo" ,r-zoo)))
9587 (home-page "https://cran.r-project.org/web/packages/acc/")
9588 (synopsis "Exploring accelerometer data")
9589 (description
9590 "This package processes accelerometer data from uni-axial and tri-axial devices
9591 and generates data summaries. Also, includes functions to plot, analyze, and
9592 simulate accelerometer data.")
9593 (license license:gpl2+)))
9594
9595 (define-public r-rbenchmark
9596 (package
9597 (name "r-rbenchmark")
9598 (version "1.0.0")
9599 (source
9600 (origin
9601 (method url-fetch)
9602 (uri (cran-uri "rbenchmark" version))
9603 (sha256
9604 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
9605 (build-system r-build-system)
9606 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
9607 (synopsis "Benchmarking routine for R")
9608 (description
9609 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
9610 and is intended to facilitate benchmarking of arbitrary R code. The library
9611 consists of just one function, benchmark, which is a simple wrapper around
9612 system.time. Given a specification of the benchmarking process (counts of
9613 replications, evaluation environment) and an arbitrary number of expressions,
9614 benchmark evaluates each of the expressions in the specified environment,
9615 replicating the evaluation as many times as specified, and returning the results
9616 conveniently wrapped into a data frame.")
9617 (license license:gpl2+)))
9618
9619 (define-public r-mitools
9620 (package
9621 (name "r-mitools")
9622 (version "2.4")
9623 (source
9624 (origin
9625 (method url-fetch)
9626 (uri (cran-uri "mitools" version))
9627 (sha256
9628 (base32
9629 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
9630 (build-system r-build-system)
9631 (propagated-inputs `(("r-dbi" ,r-dbi)))
9632 (home-page "https://cran.r-project.org/web/packages/mitools/")
9633 (synopsis "Tools for multiple imputation of missing data")
9634 (description
9635 "This package provides tools to perform analyses and combine results from
9636 multiple-imputation datasets.")
9637 (license license:gpl2)))
9638
9639 (define-public r-mixsqp
9640 (package
9641 (name "r-mixsqp")
9642 (version "0.3-43")
9643 (source (origin
9644 (method url-fetch)
9645 (uri (cran-uri "mixsqp" version))
9646 (sha256
9647 (base32
9648 "1qics04w0swyp216d6g8dmsph8q2kpadpacp66h2qih3521js12q"))))
9649 (properties `((upstream-name . "mixsqp")))
9650 (build-system r-build-system)
9651 (propagated-inputs
9652 `(("r-irlba" ,r-irlba)
9653 ("r-rcpp" ,r-rcpp)
9654 ("r-rcpparmadillo" ,r-rcpparmadillo)))
9655 (native-inputs
9656 `(("r-knitr" ,r-knitr)))
9657 (home-page "https://github.com/stephenslab/mixsqp")
9658 (synopsis
9659 "Sequential quadratic programming for maximum-likelihood estimation")
9660 (description
9661 "This package provides an optimization method based on sequential
9662 quadratic programming for maximum likelihood estimation of the mixture
9663 proportions in a finite mixture model where the component densities are
9664 known. The algorithm is expected to obtain solutions that are at least
9665 as accurate as the state-of-the-art MOSEK interior-point solver, and they
9666 are expected to arrive at solutions more quickly when the number of
9667 samples is large and the number of mixture components is not too large.")
9668 (license license:expat)))
9669
9670 (define-public r-magick
9671 (package
9672 (name "r-magick")
9673 (version "2.7.0")
9674 (source
9675 (origin
9676 (method url-fetch)
9677 (uri (cran-uri "magick" version))
9678 (sha256
9679 (base32
9680 "0m1kij6pp7dmsrhl80h60iyccjqmbbb3zdnqdc9sgy1kj1x3pscp"))))
9681 (build-system r-build-system)
9682 (inputs
9683 `(("imagemagick" ,imagemagick)
9684 ("zlib" ,zlib)))
9685 (propagated-inputs
9686 `(("r-curl" ,r-curl)
9687 ("r-magrittr" ,r-magrittr)
9688 ("r-rcpp" ,r-rcpp)))
9689 (native-inputs
9690 `(("pkg-config" ,pkg-config)
9691 ("r-knitr" ,r-knitr)))
9692 (home-page "https://github.com/ropensci/magick")
9693 (synopsis "Advanced graphics and image-processing in R")
9694 (description
9695 "This package provides bindings to ImageMagick, a comprehensive image
9696 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
9697 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
9698 operations are vectorized via the Magick++ STL meaning they operate either on
9699 a single frame or a series of frames for working with layers, collages, or
9700 animation. In RStudio, images are automatically previewed when printed to the
9701 console, resulting in an interactive editing environment.")
9702 (license license:expat)))
9703
9704 (define-public r-survey
9705 (package
9706 (name "r-survey")
9707 (version "4.0")
9708 (source
9709 (origin
9710 (method url-fetch)
9711 (uri (cran-uri "survey" version))
9712 (sha256
9713 (base32
9714 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
9715 (build-system r-build-system)
9716 (propagated-inputs
9717 `(("r-lattice" ,r-lattice)
9718 ("r-matrix" ,r-matrix)
9719 ("r-minqa" ,r-minqa)
9720 ("r-mitools" ,r-mitools)
9721 ("r-numderiv" ,r-numderiv)
9722 ("r-survival" ,r-survival)))
9723 (home-page "http://r-survey.r-forge.r-project.org/survey/")
9724 (synopsis "Analysis of complex survey samples")
9725 (description
9726 "This package provides tools for the analysis of complex survey samples.
9727 The provided features include: summary statistics, two-sample tests, rank
9728 tests, generalised linear models, cumulative link models, Cox models,
9729 loglinear models, and general maximum pseudolikelihood estimation for
9730 multistage stratified, cluster-sampled, unequally weighted survey samples;
9731 variances by Taylor series linearisation or replicate weights;
9732 post-stratification, calibration, and raking; two-phase subsampling designs;
9733 graphics; PPS sampling without replacement; principal components, and factor
9734 analysis.")
9735 ;; Either version of the GPL.
9736 (license (list license:gpl2 license:gpl3))))
9737
9738 (define-public r-gee
9739 (package
9740 (name "r-gee")
9741 (version "4.13-20")
9742 (source
9743 (origin
9744 (method url-fetch)
9745 (uri (cran-uri "gee" version))
9746 (sha256
9747 (base32
9748 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
9749 (properties `((upstream-name . "gee")))
9750 (build-system r-build-system)
9751 (native-inputs
9752 `(("gfortran" ,gfortran)))
9753 (home-page "https://cran.r-project.org/web/packages/gee/")
9754 (synopsis "Generalized estimation equation solver")
9755 (description
9756 "This package provides a solver for generalized estimation equations.")
9757 (license license:gpl2)))
9758
9759 (define-public r-tab
9760 (package
9761 (name "r-tab")
9762 (version "4.1.1")
9763 (source
9764 (origin
9765 (method url-fetch)
9766 (uri (cran-uri "tab" version))
9767 (sha256
9768 (base32
9769 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
9770 (properties `((upstream-name . "tab")))
9771 (build-system r-build-system)
9772 (propagated-inputs
9773 `(("r-dplyr" ,r-dplyr)
9774 ("r-gee" ,r-gee)
9775 ("r-knitr" ,r-knitr)
9776 ("r-mass" ,r-mass)
9777 ("r-survey" ,r-survey)
9778 ("r-survival" ,r-survival)
9779 ("r-xtable" ,r-xtable)))
9780 (home-page "https://cran.r-project.org/web/packages/tab/")
9781 (synopsis "Create summary tables for statistical reports")
9782 (description
9783 "This package contains functions for creating various types of summary
9784 tables, e.g. comparing characteristics across levels of a categorical variable
9785 and summarizing fitted generalized linear models, generalized estimating
9786 equations, and Cox proportional hazards models. Functions are available to
9787 handle data from simple random samples as well as complex surveys.")
9788 (license license:gpl3+)))
9789
9790 (define-public r-dvmisc
9791 (package
9792 (name "r-dvmisc")
9793 (version "1.1.4")
9794 (source
9795 (origin
9796 (method url-fetch)
9797 (uri (cran-uri "dvmisc" version))
9798 (sha256
9799 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
9800 (build-system r-build-system)
9801 (propagated-inputs
9802 `(("r-cubature" ,r-cubature)
9803 ("r-data-table" ,r-data-table)
9804 ("r-dplyr" ,r-dplyr)
9805 ("r-ggplot2" ,r-ggplot2)
9806 ("r-mass" ,r-mass)
9807 ("r-mvtnorm" ,r-mvtnorm)
9808 ("r-pracma" ,r-pracma)
9809 ("r-rbenchmark" ,r-rbenchmark)
9810 ("r-rcpp" ,r-rcpp)
9811 ("r-survey" ,r-survey)
9812 ("r-tab" ,r-tab)))
9813 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
9814 (synopsis "Faster computation of common statistics and miscellaneous functions")
9815 (description
9816 "This package implements faster versions of base R functions (e.g. mean, standard
9817 deviation, covariance, weighted mean), mostly written in C++, along with
9818 miscellaneous functions for various purposes (e.g. create the histogram with
9819 fitted probability density function or probability mass function curve, create
9820 the body mass index groups, assess the linearity assumption in logistic
9821 regression).")
9822 (license license:gpl2)))
9823
9824 (define-public r-accelerometry
9825 (package
9826 (name "r-accelerometry")
9827 (version "3.1.2")
9828 (source
9829 (origin
9830 (method url-fetch)
9831 (uri (cran-uri "accelerometry" version))
9832 (sha256
9833 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
9834 (build-system r-build-system)
9835 (propagated-inputs
9836 `(("r-dvmisc" ,r-dvmisc)
9837 ("r-rcpp" ,r-rcpp)))
9838 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
9839 (synopsis "Functions for processing accelerometer data")
9840 (description
9841 "This package provides a collection of functions that perform operations on
9842 time-series accelerometer data, such as identify the non-wear time, flag minutes
9843 that are part of an activity bout, and find the maximum 10-minute average count
9844 value. The functions are generally very flexible, allowing for a variety of
9845 algorithms to be implemented.")
9846 (license license:gpl3)))
9847
9848 (define-public r-absim
9849 (package
9850 (name "r-absim")
9851 (version "0.2.6")
9852 (source
9853 (origin
9854 (method url-fetch)
9855 (uri (cran-uri "AbSim" version))
9856 (sha256
9857 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
9858 (properties `((upstream-name . "AbSim")))
9859 (build-system r-build-system)
9860 (propagated-inputs
9861 `(("r-ape" ,r-ape)
9862 ("r-powerlaw" ,r-powerlaw)))
9863 (home-page "https://cran.r-project.org/web/packages/AbSim/")
9864 (synopsis "Time resolved simulations of antibody repertoires")
9865 (description
9866 "This package provides simulation methods for the evolution of antibody repertoires.
9867 The heavy and light chain variable region of both human and C57BL/6 mice can
9868 be simulated in a time-dependent fashion. Both single lineages using one set of
9869 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
9870 with an initial V-D-J recombination event, starting the first phylogenetic tree.
9871 Upon completion, the main loop of the algorithm begins, with each iteration
9872 representing one simulated time step. Various mutation events are possible at
9873 each time step, contributing to a diverse final repertoire.")
9874 (license license:gpl2)))
9875
9876 (define-public r-quic
9877 (package
9878 (name "r-quic")
9879 (version "1.1")
9880 (source
9881 (origin
9882 (method url-fetch)
9883 (uri (cran-uri "QUIC" version))
9884 (sha256
9885 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
9886 (properties `((upstream-name . "QUIC")))
9887 (build-system r-build-system)
9888 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
9889 (synopsis "Regularized sparse inverse covariance matrix estimation")
9890 (description
9891 "This package implements the regularized Gaussian maximum likelihood
9892 estimation of the inverse of a covariance matrix. It uses Newton's method and
9893 coordinate descent to solve the regularized inverse covariance matrix
9894 estimation problem.")
9895 ;; The project home page states that the release is under GPLv3 or later.
9896 ;; The CRAN page only says GPL-3.
9897 (license license:gpl3+)))
9898
9899 (define-public r-abundant
9900 (package
9901 (name "r-abundant")
9902 (version "1.1")
9903 (source
9904 (origin
9905 (method url-fetch)
9906 (uri (cran-uri "abundant" version))
9907 (sha256
9908 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
9909 (build-system r-build-system)
9910 (propagated-inputs
9911 `(("r-quic" ,r-quic)))
9912 (home-page "https://cran.r-project.org/web/packages/abundant/")
9913 (synopsis "Abundant regression and high-dimensional principal fitted components")
9914 (description
9915 "This package provides tools to fit and predict with the high-dimensional
9916 principal fitted components model. This model is described by Cook, Forzani,
9917 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
9918 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
9919 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
9920 (license license:gpl2+)))
9921
9922 (define-public r-ac3net
9923 (package
9924 (name "r-ac3net")
9925 (version "1.2.2")
9926 (source
9927 (origin
9928 (method url-fetch)
9929 (uri (cran-uri "Ac3net" version))
9930 (sha256
9931 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
9932 (properties `((upstream-name . "Ac3net")))
9933 (build-system r-build-system)
9934 (propagated-inputs
9935 `(("r-data-table" ,r-data-table)))
9936 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
9937 (synopsis "Inferring directional conservative causal core gene networks")
9938 (description "This package infers directional Conservative causal core
9939 (gene) networks (C3NET). This is a version of the algorithm C3NET with
9940 directional network.")
9941 (license license:gpl3+)))
9942
9943 (define-public r-aca
9944 (package
9945 (name "r-aca")
9946 (version "1.1")
9947 (source
9948 (origin
9949 (method url-fetch)
9950 (uri (cran-uri "ACA" version))
9951 (sha256
9952 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
9953 (properties `((upstream-name . "ACA")))
9954 (build-system r-build-system)
9955 (home-page "https://cran.r-project.org/web/packages/ACA/")
9956 (synopsis "Abrupt change-point or aberration detection in point series")
9957 (description
9958 "This package offers an interactive function for the detection of breakpoints in
9959 series.")
9960 ;; Any version of the GPL
9961 (license (list license:gpl2+ license:gpl3+))))
9962
9963 (define-public r-acceptancesampling
9964 (package
9965 (name "r-acceptancesampling")
9966 (version "1.0-6")
9967 (source
9968 (origin
9969 (method url-fetch)
9970 (uri (cran-uri "AcceptanceSampling" version))
9971 (sha256
9972 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
9973 (properties
9974 `((upstream-name . "AcceptanceSampling")))
9975 (build-system r-build-system)
9976 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
9977 (synopsis "Creation and evaluation of acceptance sampling plans")
9978 (description
9979 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
9980 acceptance sampling plans. Acceptance sampling is a methodology commonly used
9981 in quality control and improvement. International standards of acceptance
9982 sampling provide sampling plans for specific circumstances. The aim of this
9983 package is to provide an easy-to-use interface to visualize single, double or
9984 multiple sampling plans. In addition, methods have been provided to enable the
9985 user to assess sampling plans against pre-specified levels of performance, as
9986 measured by the probability of acceptance for a given level of quality in the
9987 lot.")
9988 (license license:gpl3+)))
9989
9990 (define-public r-acclma
9991 (package
9992 (name "r-acclma")
9993 (version "1.0")
9994 (source
9995 (origin
9996 (method url-fetch)
9997 (uri (cran-uri "ACCLMA" version))
9998 (sha256
9999 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
10000 (properties `((upstream-name . "ACCLMA")))
10001 (build-system r-build-system)
10002 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
10003 (synopsis "ACC & LMA graph plotting")
10004 (description
10005 "This package contains a function that imports data from a @acronym{CSV,
10006 Comma-Separated Values} file, or uses manually entered data from the format (x,
10007 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
10008 Curve} vs @acronym{LOI, Line of Independence} graph and
10009 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
10010 function is @code{plotLMA} (source file, header) that takes a data set and plots the
10011 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
10012 string) was passed, a manual data entry window is opened. The header parameter
10013 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
10014 a header row or not. The dataset should contain only one independent variable
10015 (x) and one dependent variable (y) and can contain a weight for each
10016 observation.")
10017 (license license:gpl2)))
10018
10019 (define-public r-aspi
10020 (package
10021 (name "r-aspi")
10022 (version "0.2.0")
10023 (source
10024 (origin
10025 (method url-fetch)
10026 (uri (cran-uri "aspi" version))
10027 (sha256
10028 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
10029 (build-system r-build-system)
10030 (home-page
10031 "https://cran.r-project.org/web/packages/aspi/")
10032 (synopsis
10033 "Analysis of symmetry of parasitic infections")
10034 (description
10035 "This package provides tools for the analysis and visualization of bilateral
10036 asymmetry in parasitic infections.")
10037 (license license:gpl3+)))
10038
10039 (define-public r-sandwich
10040 (package
10041 (name "r-sandwich")
10042 (version "3.0-0")
10043 (source
10044 (origin
10045 (method url-fetch)
10046 (uri (cran-uri "sandwich" version))
10047 (sha256
10048 (base32
10049 "0afm6snak7r11dxyl3qirqdjah6d9pdv4afmxwam1nq9bqxyb3w2"))))
10050 (build-system r-build-system)
10051 (propagated-inputs
10052 `(("r-zoo" ,r-zoo)))
10053 (home-page "https://cran.r-project.org/web/packages/sandwich/")
10054 (synopsis "Robust Covariance Matrix Estimators")
10055 (description
10056 "This package provides model-robust standard error estimators for
10057 cross-sectional, time series, clustered, panel, and longitudinal data.")
10058 ;; Either version of the license.
10059 (license (list license:gpl2 license:gpl3))))
10060
10061 (define-public r-th-data
10062 (package
10063 (name "r-th-data")
10064 (version "1.0-10")
10065 (source
10066 (origin
10067 (method url-fetch)
10068 (uri (cran-uri "TH.data" version))
10069 (sha256
10070 (base32
10071 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
10072 (properties `((upstream-name . "TH.data")))
10073 (build-system r-build-system)
10074 (propagated-inputs
10075 `(("r-mass" ,r-mass)
10076 ("r-survival" ,r-survival)))
10077 (home-page "https://cran.r-project.org/web/packages/TH.data/")
10078 (synopsis "Shared data sets")
10079 (description
10080 "This package contains supporting data sets that are used in other
10081 packages maintained by Torsten Hothorn.")
10082 (license license:gpl3)))
10083
10084 (define-public r-multcomp
10085 (package
10086 (name "r-multcomp")
10087 (version "1.4-16")
10088 (source
10089 (origin
10090 (method url-fetch)
10091 (uri (cran-uri "multcomp" version))
10092 (sha256
10093 (base32
10094 "1s8qmljawalisggniy7va5l5cicsgvs0lp20c33vxlvyiy0dbb1s"))))
10095 (build-system r-build-system)
10096 (propagated-inputs
10097 `(("r-codetools" ,r-codetools)
10098 ("r-mvtnorm" ,r-mvtnorm)
10099 ("r-sandwich" ,r-sandwich)
10100 ("r-survival" ,r-survival)
10101 ("r-th-data" ,r-th-data)))
10102 (home-page "https://cran.r-project.org/web/packages/multcomp/")
10103 (synopsis "Simultaneous inference in general parametric models")
10104 (description
10105 "Simultaneous tests and confidence intervals for general linear
10106 hypotheses in parametric models, including linear, generalized linear, linear
10107 mixed effects, and survival models. The package includes demos reproducing
10108 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
10109 Hothorn, Westfall, 2010, CRC Press).")
10110 (license license:gpl2)))
10111
10112 (define-public r-emmeans
10113 (package
10114 (name "r-emmeans")
10115 (version "1.5.4")
10116 (source
10117 (origin
10118 (method url-fetch)
10119 (uri (cran-uri "emmeans" version))
10120 (sha256
10121 (base32
10122 "1rbh3ls23fazrwpsam5llk3kqdzz2zvsms3i4f1cgn34ky3w8361"))))
10123 (build-system r-build-system)
10124 (propagated-inputs
10125 `(("r-estimability" ,r-estimability)
10126 ("r-mvtnorm" ,r-mvtnorm)
10127 ("r-numderiv" ,r-numderiv)
10128 ("r-plyr" ,r-plyr)
10129 ("r-xtable" ,r-xtable)))
10130 (native-inputs
10131 `(("r-knitr" ,r-knitr)))
10132 (home-page "https://github.com/rvlenth/emmeans")
10133 (synopsis "Estimated marginal means, aka least-squares means")
10134 (description
10135 "This package provides tools to obtain @dfn{estimated marginal
10136 means} (EMMs) for many linear, generalized linear, and mixed models. It can
10137 be used to compute contrasts or linear functions of EMMs, trends, and
10138 comparisons of slopes.")
10139 ;; Either version of the license.
10140 (license (list license:gpl2 license:gpl3))))
10141
10142 (define-public r-pwr
10143 (package
10144 (name "r-pwr")
10145 (version "1.3-0")
10146 (source
10147 (origin
10148 (method url-fetch)
10149 (uri (cran-uri "pwr" version))
10150 (sha256
10151 (base32
10152 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
10153 (build-system r-build-system)
10154 (native-inputs
10155 `(("r-knitr" ,r-knitr)))
10156 (home-page "https://github.com/heliosdrm/pwr")
10157 (synopsis "Basic functions for power analysis")
10158 (description
10159 "This package provides power analysis functions along the lines of
10160 Cohen (1988).")
10161 (license license:gpl3+)))
10162
10163 (define-public r-libcoin
10164 (package
10165 (name "r-libcoin")
10166 (version "1.0-8")
10167 (source
10168 (origin
10169 (method url-fetch)
10170 (uri (cran-uri "libcoin" version))
10171 (sha256
10172 (base32 "0izgnr4zdrbz3a05b0s28xfly4izp2zslgh282l9ads4skrmj3hl"))))
10173 (build-system r-build-system)
10174 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
10175 (home-page "https://cran.r-project.org/web/packages/libcoin")
10176 (synopsis "Linear test statistics for permutation inference")
10177 (description
10178 "This package provides basic infrastructure for linear test statistics
10179 and permutation inference in the framework of Strasser and Weber (1999).")
10180 (license license:gpl2)))
10181
10182 (define-public r-coin
10183 (package
10184 (name "r-coin")
10185 (version "1.4-1")
10186 (source
10187 (origin
10188 (method url-fetch)
10189 (uri (cran-uri "coin" version))
10190 (sha256
10191 (base32
10192 "15xvhnbyg34aacn6jfz4bsa1f7wq2ci0hslj8mgymql90k50x1qi"))))
10193 (build-system r-build-system)
10194 (propagated-inputs
10195 `(("r-libcoin" ,r-libcoin)
10196 ("r-matrixstats" ,r-matrixstats)
10197 ("r-modeltools" ,r-modeltools)
10198 ("r-multcomp" ,r-multcomp)
10199 ("r-mvtnorm" ,r-mvtnorm)
10200 ("r-survival" ,r-survival)))
10201 (home-page "http://coin.r-forge.r-project.org")
10202 (synopsis "Conditional inference procedures in a permutation test framework")
10203 (description
10204 "This package provides conditional inference procedures for the general
10205 independence problem including two-sample, K-sample (non-parametric ANOVA),
10206 correlation, censored, ordered and multivariate problems.")
10207 (license license:gpl2)))
10208
10209 (define-public r-bayesplot
10210 (package
10211 (name "r-bayesplot")
10212 (version "1.8.0")
10213 (source
10214 (origin
10215 (method url-fetch)
10216 (uri (cran-uri "bayesplot" version))
10217 (sha256
10218 (base32
10219 "0j69a78l5z0wyxcz607amaa4jc8kwwvcia9wxyir65b8ks9gj1d6"))))
10220 (build-system r-build-system)
10221 (inputs
10222 `(("pandoc" ,pandoc)
10223 ("pandoc-citeproc" ,pandoc-citeproc)))
10224 (native-inputs
10225 `(("r-knitr" ,r-knitr)))
10226 (propagated-inputs
10227 `(("r-dplyr" ,r-dplyr)
10228 ("r-ggplot2" ,r-ggplot2)
10229 ("r-ggridges" ,r-ggridges)
10230 ("r-glue" ,r-glue)
10231 ("r-reshape2" ,r-reshape2)
10232 ("r-rlang" ,r-rlang)
10233 ("r-tibble" ,r-tibble)
10234 ("r-tidyselect" ,r-tidyselect)))
10235 (home-page "https://mc-stan.org/bayesplot")
10236 (synopsis "Plotting for Bayesian models")
10237 (description
10238 "This package provides plotting functions for posterior analysis, model
10239 checking, and MCMC diagnostics. The package is designed not only to provide
10240 convenient functionality for users, but also a common set of functions that
10241 can be easily used by developers working on a variety of R packages for
10242 Bayesian modeling.")
10243 (license license:gpl3+)))
10244
10245 (define-public r-tmb
10246 (package
10247 (name "r-tmb")
10248 (version "1.7.19")
10249 (source
10250 (origin
10251 (method url-fetch)
10252 (uri (cran-uri "TMB" version))
10253 (sha256
10254 (base32
10255 "0vnjh8d5gnjswil8ld3gbbspy4m5l2pzar1mpj62qxn2mwx0cc4s"))))
10256 (properties `((upstream-name . "TMB")))
10257 (build-system r-build-system)
10258 (propagated-inputs
10259 `(("r-matrix" ,r-matrix)
10260 ("r-rcppeigen" ,r-rcppeigen)))
10261 (home-page "http://tmb-project.org")
10262 (synopsis "Template model builder: a general random effect tool")
10263 (description
10264 "With this tool, a user should be able to quickly implement complex
10265 random effect models through simple C++ templates. The package combines
10266 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
10267 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
10268 from R) to obtain an efficient implementation of the applied Laplace
10269 approximation with exact derivatives. Key features are: Automatic sparseness
10270 detection, parallelism through BLAS and parallel user templates.")
10271 (license license:gpl2)))
10272
10273 (define-public r-sjstats
10274 (package
10275 (name "r-sjstats")
10276 (version "0.18.1")
10277 (source
10278 (origin
10279 (method url-fetch)
10280 (uri (cran-uri "sjstats" version))
10281 (sha256
10282 (base32 "1cv80yjnyh6qihxf57zivihhia20gibr5f03x8aspy6382wnwlka"))))
10283 (build-system r-build-system)
10284 (propagated-inputs
10285 `(("r-bayestestr" ,r-bayestestr)
10286 ("r-broom" ,r-broom)
10287 ("r-dplyr" ,r-dplyr)
10288 ("r-effectsize" ,r-effectsize)
10289 ("r-emmeans" ,r-emmeans)
10290 ("r-insight" ,r-insight)
10291 ("r-lme4" ,r-lme4)
10292 ("r-magrittr" ,r-magrittr)
10293 ("r-mass" ,r-mass)
10294 ("r-modelr" ,r-modelr)
10295 ("r-parameters" ,r-parameters)
10296 ("r-performance" ,r-performance)
10297 ("r-purrr" ,r-purrr)
10298 ("r-rlang" ,r-rlang)
10299 ("r-sjlabelled" ,r-sjlabelled)
10300 ("r-sjmisc" ,r-sjmisc)
10301 ("r-tidyr" ,r-tidyr)))
10302 (home-page "https://github.com/strengejacke/sjstats")
10303 (synopsis "Functions for common statistical computations")
10304 (description
10305 "This package provides a collection of convenient functions for common
10306 statistical computations, which are not directly provided by R's @code{base}
10307 or @code{stats} packages. This package aims at providing, first, shortcuts
10308 for statistical measures, which otherwise could only be calculated with
10309 additional effort. Second, these shortcut functions are generic, and can be
10310 applied not only to vectors, but also to other objects as well. The focus of
10311 most functions lies on summary statistics or fit measures for regression
10312 models, including generalized linear models, mixed effects models and Bayesian
10313 models.")
10314 (license license:gpl3)))
10315
10316 (define-public r-glmmtmb
10317 (package
10318 (name "r-glmmtmb")
10319 (version "1.0.2.1")
10320 (source
10321 (origin
10322 (method url-fetch)
10323 (uri (cran-uri "glmmTMB" version))
10324 (sha256
10325 (base32
10326 "1a35hxcxz1cdm3zd5s7fyjaw2qs00hkacgr7h9130amygc1262ab"))))
10327 (properties `((upstream-name . "glmmTMB")))
10328 (build-system r-build-system)
10329 (propagated-inputs
10330 `(("r-lme4" ,r-lme4)
10331 ("r-matrix" ,r-matrix)
10332 ("r-nlme" ,r-nlme)
10333 ("r-rcppeigen" ,r-rcppeigen)
10334 ("r-tmb" ,r-tmb)))
10335 (native-inputs
10336 `(("r-knitr" ,r-knitr))) ; for vignettes
10337 (home-page "https://github.com/glmmTMB")
10338 (synopsis "Generalized linear mixed models")
10339 (description
10340 "Fit linear and generalized linear mixed models with various extensions,
10341 including zero-inflation. The models are fitted using maximum likelihood
10342 estimation via the Template Model Builder. Random effects are assumed to be
10343 Gaussian on the scale of the linear predictor and are integrated out using the
10344 Laplace approximation. Gradients are calculated using automatic
10345 differentiation.")
10346 (license license:agpl3+)))
10347
10348 (define-public r-bayestestr
10349 (package
10350 (name "r-bayestestr")
10351 (version "0.8.2")
10352 (source
10353 (origin
10354 (method url-fetch)
10355 (uri (cran-uri "bayestestR" version))
10356 (sha256
10357 (base32
10358 "06y7vccgln1882yv04may9p6s915py8nnhg82d5ppbpxzcifi7l4"))))
10359 (properties `((upstream-name . "bayestestR")))
10360 (build-system r-build-system)
10361 (propagated-inputs
10362 `(("r-insight" ,r-insight)))
10363 (native-inputs
10364 `(("r-knitr" ,r-knitr)))
10365 (home-page "https://github.com/easystats/bayestestR")
10366 (synopsis "Describe Bayesian models and posterior distributions")
10367 (description
10368 "This package provides utilities to understand and describe posterior
10369 distributions and Bayesian models. It includes point-estimates such as
10370 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
10371 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
10372 ROPE percentage and pd).")
10373 (license license:gpl3)))
10374
10375 (define-public r-performance
10376 (package
10377 (name "r-performance")
10378 (version "0.7.0")
10379 (source
10380 (origin
10381 (method url-fetch)
10382 (uri (cran-uri "performance" version))
10383 (sha256
10384 (base32
10385 "1z45vy8gg77c2imcspwqf94anzi6c40wwbq0h7hg6zy76jsgvbyj"))))
10386 (build-system r-build-system)
10387 (propagated-inputs
10388 `(("r-bayestestr" ,r-bayestestr)
10389 ("r-insight" ,r-insight)))
10390 (home-page "https://easystats.github.io/performance/")
10391 (synopsis "Assessment of regression models performance")
10392 (description
10393 "This package provides utilities for computing measures to assess model
10394 quality, which are not directly provided by R's @code{base} or @code{stats}
10395 packages. These include e.g. measures like r-squared, intraclass correlation
10396 coefficient, root mean squared error or functions to check models for
10397 overdispersion, singularity or zero-inflation and more. Functions apply to a
10398 large variety of regression models, including generalized linear models, mixed
10399 effects models and Bayesian models.")
10400 (license license:gpl3)))
10401
10402 (define-public r-ggeffects
10403 (package
10404 (name "r-ggeffects")
10405 (version "1.0.1")
10406 (source
10407 (origin
10408 (method url-fetch)
10409 (uri (cran-uri "ggeffects" version))
10410 (sha256
10411 (base32
10412 "1c5rvycaqp7zp1j6j17c84v8nlpi0w7bhfxmcha4n37m0snk1kgy"))))
10413 (build-system r-build-system)
10414 (propagated-inputs
10415 `(("r-insight" ,r-insight)
10416 ("r-mass" ,r-mass)
10417 ("r-sjlabelled" ,r-sjlabelled)))
10418 (native-inputs
10419 `(("r-knitr" ,r-knitr)))
10420 (home-page "https://github.com/strengejacke/ggeffects")
10421 (synopsis "Create tidy data frames of marginal effects for ggplot")
10422 (description
10423 "This package provides tools to compute marginal effects from statistical
10424 models and return the result as tidy data frames. These data frames are ready
10425 to use with the @code{ggplot2} package. Marginal effects can be calculated
10426 for many different models. Interaction terms, splines and polynomial terms
10427 are also supported. The two main functions are @code{ggpredict()} and
10428 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
10429 results using @code{ggplot2}.")
10430 (license license:gpl3)))
10431
10432 (define-public r-effectsize
10433 (package
10434 (name "r-effectsize")
10435 (version "0.4.4")
10436 (source
10437 (origin
10438 (method url-fetch)
10439 (uri (cran-uri "effectsize" version))
10440 (sha256
10441 (base32
10442 "0mgkq12ym72ncakkjpkzkjglhksyhj3iw8v4a8fjgpf7prvn191g"))))
10443 (properties `((upstream-name . "effectsize")))
10444 (build-system r-build-system)
10445 (propagated-inputs
10446 `(("r-bayestestr" ,r-bayestestr)
10447 ("r-insight" ,r-insight)
10448 ("r-parameters" ,r-parameters)))
10449 (native-inputs
10450 `(("r-knitr" ,r-knitr)))
10451 (home-page "https://github.com/easystats/effectsize")
10452 (synopsis "Indices of effect size and standardized parameters")
10453 (description
10454 "This package provides utilities to work with indices of effect size and
10455 standardized parameters for a wide variety of models, allowing computation and
10456 conversion of indices such as Cohen's d, r, odds, etc.")
10457 (license license:gpl3)))
10458
10459 (define-public r-sjplot
10460 (package
10461 (name "r-sjplot")
10462 (version "2.8.7")
10463 (source
10464 (origin
10465 (method url-fetch)
10466 (uri (cran-uri "sjPlot" version))
10467 (sha256
10468 (base32 "1g4qabg654kwdm09ihp4h3mg64a1d7a7gsn6w56rwsidqqaxilq0"))))
10469 (properties `((upstream-name . "sjPlot")))
10470 (build-system r-build-system)
10471 (propagated-inputs
10472 `(("r-bayestestr" ,r-bayestestr)
10473 ("r-dplyr" ,r-dplyr)
10474 ("r-effectsize" ,r-effectsize)
10475 ("r-ggeffects" ,r-ggeffects)
10476 ("r-ggplot2" ,r-ggplot2)
10477 ("r-insight" ,r-insight)
10478 ("r-knitr" ,r-knitr)
10479 ("r-mass" ,r-mass)
10480 ("r-parameters" ,r-parameters)
10481 ("r-performance" ,r-performance)
10482 ("r-purrr" ,r-purrr)
10483 ("r-rlang" ,r-rlang)
10484 ("r-scales" ,r-scales)
10485 ("r-sjlabelled" ,r-sjlabelled)
10486 ("r-sjmisc" ,r-sjmisc)
10487 ("r-sjstats" ,r-sjstats)
10488 ("r-tidyr" ,r-tidyr)))
10489 (native-inputs
10490 `(("r-knitr" ,r-knitr)))
10491 (home-page "https://strengejacke.github.io/sjPlot/")
10492 (synopsis "Data visualization for statistics in social science")
10493 (description
10494 "This package represents a collection of plotting and table output
10495 functions for data visualization. Results of various statistical
10496 analyses (that are commonly used in social sciences) can be visualized using
10497 this package, including simple and cross tabulated frequencies, histograms,
10498 box plots, (generalized) linear models, mixed effects models, principal
10499 component analysis and correlation matrices, cluster analyses, scatter plots,
10500 stacked scales, effects plots of regression models (including interaction
10501 terms) and much more. This package supports labelled data.")
10502 (license license:gpl3)))
10503
10504 (define-public r-ini
10505 (package
10506 (name "r-ini")
10507 (version "0.3.1")
10508 (source
10509 (origin
10510 (method url-fetch)
10511 (uri (cran-uri "ini" version))
10512 (sha256
10513 (base32
10514 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
10515 (build-system r-build-system)
10516 (home-page "https://github.com/dvdscripter/ini")
10517 (synopsis "Read and write configuration files")
10518 (description
10519 "This package provides tools to parse simple @code{.ini} configuration
10520 files to an structured list. Users can manipulate this resulting list with
10521 @code{lapply()} functions. This same structured list can be used to write
10522 back to file after modifications.")
10523 (license license:gpl3)))
10524
10525 (define-public r-gitcreds
10526 (package
10527 (name "r-gitcreds")
10528 (version "0.1.1")
10529 (source
10530 (origin
10531 (method url-fetch)
10532 (uri (cran-uri "gitcreds" version))
10533 (sha256
10534 (base32
10535 "1snzn7nxy0rwz0bzjsg6k04c0n811dgn8gn9cmn2v78aj57ayjmi"))))
10536 (properties `((upstream-name . "gitcreds")))
10537 (build-system r-build-system)
10538 (inputs `(("git" ,git-minimal)))
10539 (native-inputs `(("r-knitr" ,r-knitr)))
10540 (home-page "https://github.com/r-lib/gitcreds")
10541 (synopsis "Query git credentials from R")
10542 (description
10543 "Query, set, and delete credentials from the git credential store.
10544 Manage GitHub tokens and other git credentials. This package is to be used by
10545 other packages that need to authenticate to GitHub and/or other git
10546 repositories.")
10547 (license license:expat)))
10548
10549 (define-public r-gh
10550 (package
10551 (name "r-gh")
10552 (version "1.2.0")
10553 (source
10554 (origin
10555 (method url-fetch)
10556 (uri (cran-uri "gh" version))
10557 (sha256
10558 (base32
10559 "1zvy3ylxvni10lhvmbm9h14mg4wlsbdbzbzviwf28jxss8749219"))))
10560 (build-system r-build-system)
10561 (propagated-inputs
10562 `(("r-cli" ,r-cli)
10563 ("r-gitcreds" ,r-gitcreds)
10564 ("r-httr" ,r-httr)
10565 ("r-ini" ,r-ini)
10566 ("r-jsonlite" ,r-jsonlite)))
10567 (native-inputs
10568 `(("r-knitr" ,r-knitr)))
10569 (home-page "https://github.com/r-lib/gh#readme")
10570 (synopsis "Access the GitHub API via R")
10571 (description
10572 "This package provides a minimal R client to access the GitHub API.")
10573 (license license:expat)))
10574
10575 (define-public r-fs
10576 (package
10577 (name "r-fs")
10578 (version "1.5.0")
10579 (source
10580 (origin
10581 (method url-fetch)
10582 (uri (cran-uri "fs" version))
10583 (sha256
10584 (base32
10585 "15rqc3ljmcmgfvadj1j1kq7kvibagxic8sgplhlcdqqxax9idprn"))))
10586 (build-system r-build-system)
10587 (native-inputs
10588 `(("r-knitr" ,r-knitr)))
10589 (home-page "https://fs.r-lib.org")
10590 (synopsis "Cross-platform file system operations based on libuv")
10591 (description
10592 "This package provides a cross-platform interface to file system
10593 operations, built on top of the libuv C library.")
10594 (license license:gpl3)))
10595
10596 (define-public r-clisymbols
10597 (package
10598 (name "r-clisymbols")
10599 (version "1.2.0")
10600 (source
10601 (origin
10602 (method url-fetch)
10603 (uri (cran-uri "clisymbols" version))
10604 (sha256
10605 (base32
10606 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
10607 (build-system r-build-system)
10608 (home-page "https://github.com/gaborcsardi/clisymbols")
10609 (synopsis "Unicode symbols at the R prompt")
10610 (description
10611 "This package provides a small subset of Unicode symbols, that are useful
10612 when building command line applications. They fall back to alternatives on
10613 terminals that do not support Unicode.")
10614 (license license:expat)))
10615
10616 (define-public r-credentials
10617 (package
10618 (name "r-credentials")
10619 (version "1.3.0")
10620 (source
10621 (origin
10622 (method url-fetch)
10623 (uri (cran-uri "credentials" version))
10624 (sha256
10625 (base32
10626 "1w9zj34xdwz9bszsvhv2cbgq96y5sgxbh7ndn31pgfcpzlkfq6f1"))))
10627 (properties `((upstream-name . "credentials")))
10628 (build-system r-build-system)
10629 (arguments
10630 `(#:phases
10631 (modify-phases %standard-phases
10632 (add-after 'unpack 'setenv-HOME
10633 (lambda _
10634 ;; This is necessary because git looks for $HOME/.gitconfig
10635 (setenv "HOME" "/tmp")
10636 #t)))))
10637 (inputs
10638 `(("git" ,git-minimal)))
10639 (propagated-inputs
10640 `(("r-askpass" ,r-askpass)
10641 ("r-curl" ,r-curl)
10642 ("r-jsonlite" ,r-jsonlite)
10643 ("r-openssl" ,r-openssl)
10644 ("r-sys" ,r-sys)))
10645 (native-inputs
10646 `(("r-knitr" ,r-knitr)))
10647 (home-page "https://docs.ropensci.org/credentials/")
10648 (synopsis "Tools for managing SSH and Git credentials")
10649 (description
10650 "This package assists you in setting up and retrieving of HTTPS and SSH
10651 credentials for use with git and other services. For HTTPS remotes the
10652 package interfaces the @command{git-credential} utility which @command{git}
10653 uses to store HTTP usernames and passwords. For SSH remotes this package
10654 provides convenient functions to find or generate appropriate SSH keys. The
10655 package both helps the user to setup a local git installation, and also
10656 provides a back-end for git/ssh client libraries to authenticate with existing
10657 user credentials.")
10658 (license license:expat)))
10659
10660 (define-public r-gert
10661 (package
10662 (name "r-gert")
10663 (version "1.2.0")
10664 (source
10665 (origin
10666 (method url-fetch)
10667 (uri (cran-uri "gert" version))
10668 (sha256
10669 (base32
10670 "0ag2ia6cfb5drf3517lg5nhik1w0nv09a75wdy5jdciws1qra3d6"))))
10671 (properties `((upstream-name . "gert")))
10672 (build-system r-build-system)
10673 (inputs
10674 `(("libgit2" ,libgit2)
10675 ("zlib" ,zlib)))
10676 (propagated-inputs
10677 `(("r-askpass" ,r-askpass)
10678 ("r-credentials" ,r-credentials)
10679 ("r-openssl" ,r-openssl)
10680 ("r-rstudioapi" ,r-rstudioapi)
10681 ("r-sys" ,r-sys)
10682 ("r-zip" ,r-zip)))
10683 (native-inputs
10684 `(("pkg-config" ,pkg-config)
10685 ("r-knitr" ,r-knitr)))
10686 (home-page "https://docs.ropensci.org/gert/")
10687 (synopsis "Simple Git client for R")
10688 (description
10689 "This package provides a simple git client for R based on libgit2 with
10690 support for SSH and HTTPS remotes. All functions in gert use basic R data
10691 types (such as vectors and data-frames) for their arguments and return values.
10692 User credentials are shared with command line git through the
10693 @code{git-credential} store and SSH keys stored on disk or ssh-agent.")
10694 (license license:expat)))
10695
10696 (define-public r-usethis
10697 (package
10698 (name "r-usethis")
10699 (version "2.0.1")
10700 (source
10701 (origin
10702 (method url-fetch)
10703 (uri (cran-uri "usethis" version))
10704 (sha256
10705 (base32
10706 "1j6nzzrm2m6vi1gq0d5kxnnr9d8cy88wpmgigz3inych65x9w9pg"))))
10707 (build-system r-build-system)
10708 (propagated-inputs
10709 `(("r-cli" ,r-cli)
10710 ("r-clipr" ,r-clipr)
10711 ("r-crayon" ,r-crayon)
10712 ("r-curl" ,r-curl)
10713 ("r-desc" ,r-desc)
10714 ("r-fs" ,r-fs)
10715 ("r-gert" ,r-gert)
10716 ("r-gh" ,r-gh)
10717 ("r-glue" ,r-glue)
10718 ("r-jsonlite" ,r-jsonlite)
10719 ("r-lifecycle" ,r-lifecycle)
10720 ("r-purrr" ,r-purrr)
10721 ("r-rappdirs" ,r-rappdirs)
10722 ("r-rlang" ,r-rlang)
10723 ("r-rprojroot" ,r-rprojroot)
10724 ("r-rstudioapi" ,r-rstudioapi)
10725 ("r-whisker" ,r-whisker)
10726 ("r-withr" ,r-withr)
10727 ("r-yaml" ,r-yaml)))
10728 (home-page "https://github.com/r-lib/usethis")
10729 (synopsis "Automate R package and project setup")
10730 (description
10731 "This package helps you to automate R package and project setup tasks
10732 that are otherwise performed manually. This includes setting up unit testing,
10733 test coverage, continuous integration, Git, GitHub integration, licenses,
10734 Rcpp, RStudio projects, and more.")
10735 (license license:gpl3)))
10736
10737 (define-public r-sessioninfo
10738 (package
10739 (name "r-sessioninfo")
10740 (version "1.1.1")
10741 (source
10742 (origin
10743 (method url-fetch)
10744 (uri (cran-uri "sessioninfo" version))
10745 (sha256
10746 (base32
10747 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
10748 (build-system r-build-system)
10749 (propagated-inputs
10750 `(("r-cli" ,r-cli)
10751 ("r-withr" ,r-withr)))
10752 (home-page "https://github.com/r-lib/sessioninfo#readme")
10753 (synopsis "R session information")
10754 (description
10755 "This package provides tools to query and print information about the
10756 current R session. It is similar to @code{utils::sessionInfo()}, but includes
10757 more information about packages, and where they were installed from.")
10758 (license license:gpl2)))
10759
10760 (define-public r-remotes
10761 (package
10762 (name "r-remotes")
10763 (version "2.2.0")
10764 (source
10765 (origin
10766 (method url-fetch)
10767 (uri (cran-uri "remotes" version))
10768 (sha256
10769 (base32
10770 "1f1kdw9j1wald3fs8b3n68x1kljy07j60g3aw1aarx26ikyk9whj"))))
10771 (build-system r-build-system)
10772 (native-inputs
10773 `(("r-knitr" ,r-knitr)))
10774 (home-page "https://github.com/r-lib/remotes#readme")
10775 (synopsis "R package installation from remote repositories")
10776 (description
10777 "Download and install R packages stored in GitHub, BitBucket, or plain
10778 subversion or git repositories. This package is a lightweight replacement of
10779 the @code{install_*} functions in the @code{devtools} package. Indeed most of
10780 the code was copied over from @code{devtools}.")
10781 (license license:gpl2+)))
10782
10783 (define-public r-xopen
10784 (package
10785 (name "r-xopen")
10786 (version "1.0.0")
10787 (source
10788 (origin
10789 (method url-fetch)
10790 (uri (cran-uri "xopen" version))
10791 (sha256
10792 (base32
10793 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
10794 (build-system r-build-system)
10795 (propagated-inputs
10796 `(("r-processx" ,r-processx)))
10797 (home-page "https://github.com/r-lib/xopen#readme")
10798 (synopsis "Open system files, URLs, anything")
10799 (description
10800 "This package provides a cross-platform solution to open files,
10801 directories or URLs with their associated programs.")
10802 (license license:expat)))
10803
10804 (define-public r-rcmdcheck
10805 (package
10806 (name "r-rcmdcheck")
10807 (version "1.3.3")
10808 (source
10809 (origin
10810 (method url-fetch)
10811 (uri (cran-uri "rcmdcheck" version))
10812 (sha256
10813 (base32
10814 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
10815 (build-system r-build-system)
10816 (propagated-inputs
10817 `(("r-callr" ,r-callr)
10818 ("r-cli" ,r-cli)
10819 ("r-crayon" ,r-crayon)
10820 ("r-desc" ,r-desc)
10821 ("r-digest" ,r-digest)
10822 ("r-pkgbuild" ,r-pkgbuild)
10823 ("r-prettyunits" ,r-prettyunits)
10824 ("r-r6" ,r-r6)
10825 ("r-rprojroot" ,r-rprojroot)
10826 ("r-sessioninfo" ,r-sessioninfo)
10827 ("r-withr" ,r-withr)
10828 ("r-xopen" ,r-xopen)))
10829 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
10830 (synopsis "Run R CMD check from R and capture results")
10831 (description
10832 "Run @code{R CMD check} from R programmatically, and capture the results
10833 of the individual checks.")
10834 (license license:expat)))
10835
10836 (define-public r-rapportools
10837 (package
10838 (name "r-rapportools")
10839 (version "1.0")
10840 (source
10841 (origin
10842 (method url-fetch)
10843 (uri (cran-uri "rapportools" version))
10844 (sha256
10845 (base32
10846 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
10847 (build-system r-build-system)
10848 (propagated-inputs
10849 `(("r-pander" ,r-pander)
10850 ("r-plyr" ,r-plyr)
10851 ("r-reshape" ,r-reshape)))
10852 (home-page "https://cran.r-project.org/web/packages/rapportools/")
10853 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
10854 (description
10855 "This package provides helper functions that act as wrappers to more
10856 advanced statistical methods with the advantage of having sane defaults for
10857 quick reporting.")
10858 (license license:agpl3+)))
10859
10860 (define-public r-pander
10861 (package
10862 (name "r-pander")
10863 (version "0.6.3")
10864 (source
10865 (origin
10866 (method url-fetch)
10867 (uri (cran-uri "pander" version))
10868 (sha256
10869 (base32
10870 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
10871 (build-system r-build-system)
10872 (propagated-inputs
10873 `(("r-digest" ,r-digest)
10874 ("r-rcpp" ,r-rcpp)))
10875 (home-page "https://rapporter.github.io/pander")
10876 (synopsis "Render R objects into Pandoc's markdown")
10877 (description
10878 "The main aim of the pander R package is to provide a minimal and easy
10879 tool for rendering R objects into Pandoc's markdown. The package is also
10880 capable of exporting/converting complex Pandoc documents (reports) in various
10881 ways.")
10882 ;; This package is licensed under either the AGPLv3+ or the very rarely
10883 ;; used OSL 3.0.
10884 (license license:agpl3+)))
10885
10886 (define-public r-summarytools
10887 (package
10888 (name "r-summarytools")
10889 (version "0.9.8")
10890 (source
10891 (origin
10892 (method url-fetch)
10893 (uri (cran-uri "summarytools" version))
10894 (sha256
10895 (base32
10896 "0n7rad6bkfn9cb99wbfzbwl5qzch48r0gafhddfcqvyh4fbn2k0j"))))
10897 (build-system r-build-system)
10898 (propagated-inputs
10899 `(("r-base64enc" ,r-base64enc)
10900 ("r-checkmate" ,r-checkmate)
10901 ("r-dplyr" ,r-dplyr)
10902 ("r-htmltools" ,r-htmltools)
10903 ("r-lubridate" ,r-lubridate)
10904 ("r-magick" ,r-magick)
10905 ("r-matrixstats" ,r-matrixstats)
10906 ("r-pander" ,r-pander)
10907 ("r-pryr" ,r-pryr)
10908 ("r-rapportools" ,r-rapportools)
10909 ("r-tibble" ,r-tibble)
10910 ("r-tidyr" ,r-tidyr)))
10911 (native-inputs
10912 `(("r-knitr" ,r-knitr)))
10913 (home-page "https://github.com/dcomtois/summarytools")
10914 (synopsis "Tools to quickly and neatly summarize data")
10915 (description
10916 "This package provides tools for data frame summaries, cross-tabulations,
10917 weight-enabled frequency tables and common univariate statistics in concise
10918 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
10919 good point-of-entry for exploring data, both for experienced and new R
10920 users.")
10921 (license license:gpl2)))
10922
10923 (define-public r-lsei
10924 (package
10925 (name "r-lsei")
10926 (version "1.3-0")
10927 (source
10928 (origin
10929 (method url-fetch)
10930 (uri (cran-uri "lsei" version))
10931 (sha256
10932 (base32
10933 "1dka0rigfw4vj809qma2dkiwjb3nw5635ynnba5cm299cn7hb2b2"))))
10934 (build-system r-build-system)
10935 (native-inputs
10936 `(("gfortran" ,gfortran)))
10937 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
10938 (synopsis "Solve regression problems under equality/inequality constraints")
10939 (description
10940 "It contains functions that solve least squares linear regression
10941 problems under linear equality/inequality constraints. Functions for solving
10942 quadratic programming problems are also available, which transform such
10943 problems into least squares ones first.")
10944 (license license:gpl2+)))
10945
10946 (define-public r-npsurv
10947 (package
10948 (name "r-npsurv")
10949 (version "0.5-0")
10950 (source
10951 (origin
10952 (method url-fetch)
10953 (uri (cran-uri "npsurv" version))
10954 (sha256
10955 (base32
10956 "1ihxhb42cga1hssj2jv4ah0f4hlwsky899ij5261fzh1wxvdp1xw"))))
10957 (build-system r-build-system)
10958 (propagated-inputs
10959 `(("r-lsei" ,r-lsei)))
10960 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
10961 (synopsis "Nonparametric survival analysis")
10962 (description
10963 "This package contains functions for non-parametric survival analysis of
10964 exact and interval-censored observations.")
10965 (license license:gpl2+)))
10966
10967 (define-public r-clusteval
10968 (package
10969 (name "r-clusteval")
10970 (version "0.1")
10971 (source
10972 (origin
10973 (method url-fetch)
10974 (uri (cran-uri "clusteval" version))
10975 (sha256
10976 (base32
10977 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
10978 (build-system r-build-system)
10979 (propagated-inputs
10980 `(("r-mvtnorm" ,r-mvtnorm)
10981 ("r-rcpp" ,r-rcpp)))
10982 (home-page "https://cran.r-project.org/web/packages/clusteval/")
10983 (synopsis "Evaluation of clustering algorithms")
10984 (description
10985 "This R package provides a suite of tools to evaluate clustering
10986 algorithms, clusterings, and individual clusters.")
10987 (license license:expat)))
10988
10989 (define-public r-tweedie
10990 (package
10991 (name "r-tweedie")
10992 (version "2.3.3")
10993 (source
10994 (origin
10995 (method url-fetch)
10996 (uri (cran-uri "tweedie" version))
10997 (sha256
10998 (base32
10999 "1nfhaqblvm62j8gfkyrgba5ai0pb2fsnrxp63637mhys2bawlcm0"))))
11000 (build-system r-build-system)
11001 (native-inputs `(("gfortran" ,gfortran)))
11002 (home-page "https://cran.r-project.org/web/packages/tweedie/")
11003 (synopsis "Evaluation of Tweedie exponential family models")
11004 (description
11005 "Maximum likelihood computations for Tweedie families, including the
11006 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
11007 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
11008 and related methods.")
11009 (license license:gpl2+)))
11010
11011 (define-public r-rcppgsl
11012 (package
11013 (name "r-rcppgsl")
11014 (version "0.3.8")
11015 (source
11016 (origin
11017 (method url-fetch)
11018 (uri (cran-uri "RcppGSL" version))
11019 (sha256
11020 (base32 "17nlayy6gvwb3v6l5aiqm84i75yf4dfi3zclxrgpqwf3j9v09yvz"))))
11021 (properties `((upstream-name . "RcppGSL")))
11022 (build-system r-build-system)
11023 (propagated-inputs
11024 `(("r-rcpp" ,r-rcpp)
11025 ("gsl" ,gsl)))
11026 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
11027 (synopsis "Rcpp integration for GSL vectors and matrices")
11028 (description
11029 "The GNU Scientific Library (or GSL) is a collection of numerical
11030 routines for scientific computing. It is particularly useful for C and C++
11031 programs as it provides a standard C interface to a wide range of mathematical
11032 routines. There are over 1000 functions in total with an extensive test
11033 suite. The RcppGSL package provides an easy-to-use interface between GSL data
11034 structures and R using concepts from Rcpp which is itself a package that eases
11035 the interfaces between R and C++.")
11036 (license license:gpl2+)))
11037
11038 (define-public r-mvabund
11039 (package
11040 (name "r-mvabund")
11041 (version "4.1.9")
11042 (source
11043 (origin
11044 (method url-fetch)
11045 (uri (cran-uri "mvabund" version))
11046 (sha256
11047 (base32
11048 "19kyg0agjk7gxipa5kmklz4cqh97xrdbibmmy1g99r1gp3s9ml30"))))
11049 (build-system r-build-system)
11050 (propagated-inputs
11051 `(("r-mass" ,r-mass)
11052 ("r-rcpp" ,r-rcpp)
11053 ("r-rcppgsl" ,r-rcppgsl)
11054 ("r-statmod" ,r-statmod)
11055 ("r-tweedie" ,r-tweedie)))
11056 (home-page "https://cran.r-project.org/web/packages/mvabund/")
11057 (synopsis "Statistical methods for analysing multivariate abundance data")
11058 (description
11059 "This package provides a set of tools for displaying, modeling and
11060 analysing multivariate abundance data in community ecology.")
11061 (license license:lgpl2.1+)))
11062
11063 (define-public r-afex
11064 (package
11065 (name "r-afex")
11066 (version "0.28-1")
11067 (source
11068 (origin
11069 (method url-fetch)
11070 (uri (cran-uri "afex" version))
11071 (sha256
11072 (base32
11073 "0blwqr5ni3psav1dcdmhfi4jy3b4scm5njimqfpr1d81zadvgc6g"))))
11074 (build-system r-build-system)
11075 (propagated-inputs
11076 `(("r-car" ,r-car)
11077 ("r-lme4" ,r-lme4)
11078 ("r-lmertest" ,r-lmertest)
11079 ("r-pbkrtest" ,r-pbkrtest)
11080 ("r-reshape2" ,r-reshape2)))
11081 (native-inputs
11082 `(("r-knitr" ,r-knitr)))
11083 (home-page "https://afex.singmann.science/")
11084 (synopsis "Analysis of factorial experiments")
11085 (description
11086 "This package provides convenience functions for analyzing factorial
11087 experiments using ANOVA or mixed models.")
11088 (license license:gpl2+)))
11089
11090 (define-public r-lmertest
11091 (package
11092 (name "r-lmertest")
11093 (version "3.1-3")
11094 (source
11095 (origin
11096 (method url-fetch)
11097 (uri (cran-uri "lmerTest" version))
11098 (sha256
11099 (base32
11100 "1zd8gqjkazhxgpnnr484xwsq30p62fq8592nzyc171zjyplpbaim"))))
11101 (properties `((upstream-name . "lmerTest")))
11102 (build-system r-build-system)
11103 (propagated-inputs
11104 `(("r-ggplot2" ,r-ggplot2)
11105 ("r-lme4" ,r-lme4)
11106 ("r-mass" ,r-mass)
11107 ("r-numderiv" ,r-numderiv)))
11108 (home-page "https://github.com/runehaubo/lmerTestR")
11109 (synopsis "Tests in linear mixed effects models")
11110 (description
11111 "This package provides p-values in type I, II or III anova and summary
11112 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
11113 method. A Kenward-Roger method is also available via the @code{pbkrtest}
11114 package. Model selection methods include step, drop1 and anova-like tables
11115 for random effects (ranova). Methods for Least-Square means (LS-means) and
11116 tests of linear contrasts of fixed effects are also available.")
11117 (license license:gpl2+)))
11118
11119 (define-public r-r2glmm
11120 (package
11121 (name "r-r2glmm")
11122 (version "0.1.2")
11123 (source
11124 (origin
11125 (method url-fetch)
11126 (uri (cran-uri "r2glmm" version))
11127 (sha256
11128 (base32
11129 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
11130 (build-system r-build-system)
11131 (propagated-inputs
11132 `(("r-afex" ,r-afex)
11133 ("r-data-table" ,r-data-table)
11134 ("r-dplyr" ,r-dplyr)
11135 ("r-ggplot2" ,r-ggplot2)
11136 ("r-gridextra" ,r-gridextra)
11137 ("r-lmertest" ,r-lmertest)
11138 ("r-mass" ,r-mass)
11139 ("r-matrix" ,r-matrix)
11140 ("r-mgcv" ,r-mgcv)
11141 ("r-pbkrtest" ,r-pbkrtest)))
11142 (home-page "https://github.com/bcjaeger/r2glmm")
11143 (synopsis "Compute R squared for mixed (multilevel) models")
11144 (description
11145 "This package computes model and semi partial R squared with confidence
11146 limits for the linear and generalized linear mixed model (LMM and GLMM). The
11147 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
11148 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
11149 al. (2016)).")
11150 (license license:gpl2)))
11151
11152 (define-public r-weights
11153 (package
11154 (name "r-weights")
11155 (version "1.0.1")
11156 (source
11157 (origin
11158 (method url-fetch)
11159 (uri (cran-uri "weights" version))
11160 (sha256
11161 (base32
11162 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
11163 (build-system r-build-system)
11164 (propagated-inputs
11165 `(("r-gdata" ,r-gdata)
11166 ("r-hmisc" ,r-hmisc)
11167 ("r-mice" ,r-mice)))
11168 (home-page
11169 "https://cran.r-project.org/web/packages/weights/")
11170 (synopsis "Weighting and weighted statistics")
11171 (description "This package Provides a variety of functions for producing
11172 simple weighted statistics, such as weighted Pearson's correlations, partial
11173 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
11174 includes some software for quickly recoding survey data and plotting point
11175 estimates from interaction terms in regressions (and multiply imputed
11176 regressions). NOTE: Weighted partial correlation calculations pulled to
11177 address a bug.")
11178 (license license:gpl2+)))
11179
11180 (define-public r-rcppannoy
11181 (package
11182 (name "r-rcppannoy")
11183 (version "0.0.18")
11184 (source
11185 (origin
11186 (method url-fetch)
11187 (uri (cran-uri "RcppAnnoy" version))
11188 (sha256
11189 (base32
11190 "0n68cf77gz34iq6w6ad87pbqwqam45nxp1gjzns4g6qhf7qdvrz4"))))
11191 (properties `((upstream-name . "RcppAnnoy")))
11192 (build-system r-build-system)
11193 (propagated-inputs
11194 `(("r-rcpp" ,r-rcpp)))
11195 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
11196 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
11197 (description
11198 "Annoy is a small C++ library for Approximate Nearest Neighbors written
11199 for efficient memory usage as well an ability to load from and save to disk.
11200 This package provides an R interface.")
11201 ;; Annoy is released under ASL 2.0, but this wrapper is released under
11202 ;; GPLv2+.
11203 (license (list license:gpl2+ license:asl2.0))))
11204
11205 (define-public r-rcpphnsw
11206 (package
11207 (name "r-rcpphnsw")
11208 (version "0.3.0")
11209 (source
11210 (origin
11211 (method url-fetch)
11212 (uri (cran-uri "RcppHNSW" version))
11213 (sha256
11214 (base32
11215 "01z0plf1i6dyibw4ica8shmijyk1grpqb886hcga72z2cpm4xsx0"))))
11216 (properties `((upstream-name . "RcppHNSW")))
11217 (build-system r-build-system)
11218 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11219 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
11220 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
11221 (description
11222 "Hnswlib is a C++ library for approximate nearest neighbors. This
11223 package provides a minimal R interface by relying on the Rcpp package.")
11224 ;; hnswlib is released under Version 2.0 of the Apache License.
11225 (license (list license:gpl3 license:asl2.0))))
11226
11227 (define-public r-rcppparallel
11228 (package
11229 (name "r-rcppparallel")
11230 (version "5.0.3")
11231 (source
11232 (origin
11233 (method url-fetch)
11234 (uri (cran-uri "RcppParallel" version))
11235 (sha256
11236 (base32
11237 "0ihcirny4al2ydymxhdfacwmybmrgrz5nm0lbf49gk2zy8w124ki"))))
11238 (properties `((upstream-name . "RcppParallel")))
11239 (build-system r-build-system)
11240 (home-page "https://rcppcore.github.io/RcppParallel/")
11241 (synopsis "Parallel programming tools for Rcpp")
11242 (description
11243 "This package provides high level functions for parallel programming with
11244 Rcpp. For example, the @code{parallelFor()} function can be used to convert
11245 the work of a standard serial @code{for} loop into a parallel one and the
11246 @code{parallelReduce()} function can be used for accumulating aggregates or
11247 other values.")
11248 (license license:gpl2)))
11249
11250 (define-public r-ncdf4
11251 (package
11252 (name "r-ncdf4")
11253 (version "1.17")
11254 (source
11255 (origin
11256 (method url-fetch)
11257 (uri (cran-uri "ncdf4" version))
11258 (sha256
11259 (base32
11260 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
11261 (build-system r-build-system)
11262 (inputs
11263 `(("netcdf" ,netcdf)
11264 ("zlib" ,zlib)))
11265 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
11266 (synopsis "R interface to Unidata netCDF format data files")
11267 (description
11268 "This package provides a high-level R interface to data files written
11269 using Unidata's netCDF library (version 4 or earlier), which are binary data
11270 files that are portable across platforms and include metadata information in
11271 addition to the data sets. Using this package, netCDF files can be opened and
11272 data sets read in easily. It is also easy to create new netCDF dimensions,
11273 variables, and files, in either version 3 or 4 format, and manipulate existing
11274 netCDF files.")
11275 (license license:gpl3+)))
11276
11277 (define-public r-biocmanager
11278 (package
11279 (name "r-biocmanager")
11280 (version "1.30.10")
11281 (source
11282 (origin
11283 (method url-fetch)
11284 (uri (cran-uri "BiocManager" version))
11285 (sha256
11286 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
11287 (properties `((upstream-name . "BiocManager")))
11288 (build-system r-build-system)
11289 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
11290 (synopsis "Access the Bioconductor project package repository")
11291 (description
11292 "This package provides a convenient tool to install and update
11293 Bioconductor packages.")
11294 (license license:artistic2.0)))
11295
11296 (define-public r-rgl
11297 (package
11298 (name "r-rgl")
11299 (version "0.105.22")
11300 (source
11301 (origin
11302 (method url-fetch)
11303 (uri (cran-uri "rgl" version))
11304 (sha256
11305 (base32
11306 "1y69phym8pkdh1k808y3rp1030xmhjpc8vig9035v9n1r7v7a1kz"))))
11307 (build-system r-build-system)
11308 (native-inputs
11309 `(("pkg-config" ,pkg-config)
11310 ("r-knitr" ,r-knitr)))
11311 (inputs
11312 `(("freetype" ,freetype)
11313 ("libpng" ,libpng)
11314 ("glu" ,glu)
11315 ("libx11" ,libx11)
11316 ("pandoc" ,pandoc)
11317 ("zlib" ,zlib)))
11318 (propagated-inputs
11319 `(("r-crosstalk" ,r-crosstalk)
11320 ("r-htmltools" ,r-htmltools)
11321 ("r-htmlwidgets" ,r-htmlwidgets)
11322 ("r-jsonlite" ,r-jsonlite)
11323 ("r-knitr" ,r-knitr)
11324 ("r-magrittr" ,r-magrittr)
11325 ("r-manipulatewidget" ,r-manipulatewidget)
11326 ("r-shiny" ,r-shiny)))
11327 (home-page "https://r-forge.r-project.org/projects/rgl/")
11328 (synopsis "3D visualization using OpenGL")
11329 (description
11330 "This package provides medium to high level functions for 3D interactive graphics,
11331 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
11332 as functions for constructing representations of geometric
11333 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
11334 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
11335 image formats, including PNG, Postscript, SVG, PGF.")
11336 ;; Any version of the GPL.
11337 (license (list license:gpl2+ license:gpl3+))))
11338
11339 (define-public r-multicool
11340 (package
11341 (name "r-multicool")
11342 (version "0.1-11")
11343 (source
11344 (origin
11345 (method url-fetch)
11346 (uri (cran-uri "multicool" version))
11347 (sha256
11348 (base32
11349 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
11350 (build-system r-build-system)
11351 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11352 (home-page "https://cran.r-project.org/web/packages/multicool/")
11353 (synopsis "Permutations of multisets in cool-lex order")
11354 (description
11355 "This package provides a set of tools to permute multisets without loops
11356 or hash tables and to generate integer partitions. Cool-lex order is similar
11357 to colexicographical order.")
11358 (license license:gpl2)))
11359
11360 (define-public r-misc3d
11361 (package
11362 (name "r-misc3d")
11363 (version "0.9-0")
11364 (source
11365 (origin
11366 (method url-fetch)
11367 (uri (cran-uri "misc3d" version))
11368 (sha256
11369 (base32
11370 "10jf5r1x588vi54bzaqgi9mgcqlkiga2c3jvmqmk3lavc8fjksd1"))))
11371 (build-system r-build-system)
11372 (home-page "https://cran.r-project.org/web/packages/misc3d/")
11373 (synopsis "Miscellaneous 3D Plots")
11374 (description
11375 "This package provides a collection of miscellaneous 3d plots, including
11376 isosurfaces.")
11377 ;; Any version of the GPL.
11378 (license (list license:gpl2+ license:gpl3+))))
11379
11380 (define-public r-ks
11381 (package
11382 (name "r-ks")
11383 (version "1.12.0")
11384 (source
11385 (origin
11386 (method url-fetch)
11387 (uri (cran-uri "ks" version))
11388 (sha256
11389 (base32 "1sff6rlpq64lqyvwgral9zbcan30wpgmfb26hw9y6wzypd9gxbz6"))))
11390 (build-system r-build-system)
11391 (propagated-inputs
11392 `(("r-fnn" ,r-fnn)
11393 ("r-kernlab" ,r-kernlab)
11394 ("r-kernsmooth" ,r-kernsmooth)
11395 ("r-matrix" ,r-matrix)
11396 ("r-mclust" ,r-mclust)
11397 ("r-mgcv" ,r-mgcv)
11398 ("r-multicool" ,r-multicool)
11399 ("r-mvtnorm" ,r-mvtnorm)
11400 ("r-plot3d" ,r-plot3d)))
11401 (home-page "https://www.mvstat.net/tduong/")
11402 (synopsis "Kernel smoothing")
11403 (description
11404 "This package provides kernel smoothers for univariate and multivariate
11405 data, including density functions, density derivatives, cumulative
11406 distributions, modal clustering, discriminant analysis, and two-sample
11407 hypothesis testing.")
11408 ;; Either version of the GPL.
11409 (license (list license:gpl2 license:gpl3))))
11410
11411 (define-public r-feature
11412 (package
11413 (name "r-feature")
11414 (version "1.2.15")
11415 (source
11416 (origin
11417 (method url-fetch)
11418 (uri (cran-uri "feature" version))
11419 (sha256
11420 (base32
11421 "0yzn1w1sasilcp8v0pcjnxjv9l6lspkskqi412i6h040gqmjjf6y"))))
11422 (build-system r-build-system)
11423 (propagated-inputs
11424 `(("r-ks" ,r-ks)
11425 ("r-plot3d" ,r-plot3d)))
11426 (native-inputs
11427 `(("r-knitr" ,r-knitr)))
11428 (home-page "https://www.mvstat.net/tduong/")
11429 (synopsis "Inferential feature significance for kernel density estimation")
11430 (description
11431 "The feature package contains functions to display and compute kernel
11432 density estimates, significant gradient and significant curvature regions.
11433 Significant gradient and/or curvature regions often correspond to significant
11434 features (e.g. local modes).")
11435 ;; Either version of the GPL.
11436 (license (list license:gpl2 license:gpl3))))
11437
11438 (define-public r-arm
11439 (package
11440 (name "r-arm")
11441 (version "1.11-2")
11442 (source
11443 (origin
11444 (method url-fetch)
11445 (uri (cran-uri "arm" version))
11446 (sha256
11447 (base32
11448 "1grb27vayr2vhyalzfqbhx6p278r7c3l4pzi5nrz3dmnyqrbx1c3"))))
11449 (build-system r-build-system)
11450 (propagated-inputs
11451 `(("r-abind" ,r-abind)
11452 ("r-coda" ,r-coda)
11453 ("r-hmisc" ,r-hmisc)
11454 ("r-lme4" ,r-lme4)
11455 ("r-mass" ,r-mass)
11456 ("r-matrix" ,r-matrix)
11457 ("r-nlme" ,r-nlme)))
11458 (home-page "https://cran.r-project.org/web/packages/arm/")
11459 (synopsis "Data analysis using regression and multilevel/hierarchical models")
11460 (description
11461 "This package provides functions to accompany A. Gelman and J. Hill,
11462 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
11463 University Press, 2007.")
11464 (license license:gpl3+)))
11465
11466 (define-public r-circular
11467 (package
11468 (name "r-circular")
11469 (version "0.4-93")
11470 (source
11471 (origin
11472 (method url-fetch)
11473 (uri (cran-uri "circular" version))
11474 (sha256
11475 (base32
11476 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
11477 (build-system r-build-system)
11478 (propagated-inputs
11479 `(("r-boot" ,r-boot)
11480 ("r-mvtnorm" ,r-mvtnorm)))
11481 (native-inputs
11482 `(("gfortran" ,gfortran)))
11483 (home-page "https://cran.r-project.org/web/packages/circular/")
11484 (synopsis "Circular statistics")
11485 (description
11486 "This package provides tools for circular statistics, from \"Topics in
11487 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
11488 Scientific.")
11489 (license license:gpl2+)))
11490
11491 (define-public r-activity
11492 (package
11493 (name "r-activity")
11494 (version "1.3.1")
11495 (source
11496 (origin
11497 (method url-fetch)
11498 (uri (cran-uri "activity" version))
11499 (sha256
11500 (base32
11501 "1wn2a0hx7wfr2jyj1b772w5fgl6bcqkkw8cybais2s1wyjx8kjr5"))))
11502 (build-system r-build-system)
11503 (propagated-inputs
11504 `(("r-circular" ,r-circular)
11505 ("r-insol" ,r-insol)
11506 ("r-pbapply" ,r-pbapply)))
11507 (home-page "https://cran.r-project.org/web/packages/activity/")
11508 (synopsis "Animal activity statistics")
11509 (description
11510 "This package provides functions to fit kernel density functions to
11511 animal activity time data; plot activity distributions; quantify overall
11512 levels of activity; statistically compare activity metrics through
11513 bootstrapping; and evaluate variation in linear variables with time (or other
11514 circular variables).")
11515 (license license:gpl3)))
11516
11517 (define-public r-ouch
11518 (package
11519 (name "r-ouch")
11520 (version "2.15-1")
11521 (source
11522 (origin
11523 (method url-fetch)
11524 (uri (cran-uri "ouch" version))
11525 (sha256
11526 (base32
11527 "0myddn3b28pswyk42kvwhyvkj30q41f677vpxclxacdfkhgvrj6q"))))
11528 (build-system r-build-system)
11529 (propagated-inputs `(("r-subplex" ,r-subplex)))
11530 (home-page "https://kingaa.github.io/ouch/")
11531 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
11532 (description
11533 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
11534 for evolution along a phylogenetic tree.")
11535 (license license:gpl2+)))
11536
11537 (define-public r-fmsb
11538 (package
11539 (name "r-fmsb")
11540 (version "0.7.0")
11541 (source
11542 (origin
11543 (method url-fetch)
11544 (uri (cran-uri "fmsb" version))
11545 (sha256
11546 (base32
11547 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
11548 (build-system r-build-system)
11549 (home-page "http://minato.sip21c.org/msb/")
11550 (synopsis "Functions for medical statistics book with demographic data")
11551 (description
11552 "This package provides several utility functions for the book entitled
11553 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
11554 Japan, 2007) with Japanese demographic data and some demographic analysis
11555 related functions.")
11556 (license license:gpl2+)))
11557
11558 (define-public r-stabledist
11559 (package
11560 (name "r-stabledist")
11561 (version "0.7-1")
11562 (source
11563 (origin
11564 (method url-fetch)
11565 (uri (cran-uri "stabledist" version))
11566 (sha256
11567 (base32
11568 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
11569 (build-system r-build-system)
11570 (home-page "https://www.rmetrics.org")
11571 (synopsis "Stable distribution functions")
11572 (description
11573 "This package provides density, probability and quantile functions, and
11574 random number generation for (skew) stable distributions, using the
11575 parametrizations of Nolan.")
11576 (license license:gpl2+)))
11577
11578 (define-public r-gsl
11579 (package
11580 (name "r-gsl")
11581 (version "2.1-6")
11582 (source
11583 (origin
11584 (method url-fetch)
11585 (uri (cran-uri "gsl" version))
11586 (sha256
11587 (base32
11588 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
11589 (build-system r-build-system)
11590 (inputs
11591 `(("gsl" ,gsl)))
11592 (home-page "https://cran.r-project.org/web/packages/gsl")
11593 (synopsis "Wrapper for the GNU Scientific Library")
11594 (description
11595 "This package provides an R wrapper for the special functions and quasi
11596 random number generators of the GNU Scientific Library.")
11597 (license license:gpl2+)))
11598
11599 (define-public r-adgoftest
11600 (package
11601 (name "r-adgoftest")
11602 (version "0.3")
11603 (source
11604 (origin
11605 (method url-fetch)
11606 (uri (cran-uri "ADGofTest" version))
11607 (sha256
11608 (base32
11609 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
11610 (properties `((upstream-name . "ADGofTest")))
11611 (build-system r-build-system)
11612 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
11613 (synopsis "Anderson-Darling GoF test")
11614 (description
11615 "This package provides an implementation of the Anderson-Darling GoF test
11616 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
11617 Anderson-Darling Distribution\".")
11618 ;; Any version of the GPL.
11619 (license license:gpl3+)))
11620
11621 (define-public r-sodium
11622 (package
11623 (name "r-sodium")
11624 (version "1.1")
11625 (source
11626 (origin
11627 (method url-fetch)
11628 (uri (cran-uri "sodium" version))
11629 (sha256
11630 (base32
11631 "1zxzi8xvxnhgcd5qrylf08nz1cdq3aslrswjas440qg63ypmbf6w"))))
11632 (properties `((upstream-name . "sodium")))
11633 (build-system r-build-system)
11634 (inputs
11635 `(("libsodium" ,libsodium)))
11636 (native-inputs
11637 `(("pkg-config" ,pkg-config)
11638 ("r-knitr" ,r-knitr)))
11639 (home-page "https://github.com/jeroen/sodium")
11640 (synopsis "R bindings to the libsodium crypto library")
11641 (description
11642 "This package provides bindings to libsodium: a library for encryption,
11643 decryption, signatures, password hashing and more. Sodium uses curve25519, a
11644 Diffie-Hellman function by Daniel Bernstein, which has become very popular
11645 after it was discovered that the NSA had backdoored Dual EC DRBG.")
11646 (license license:expat)))
11647
11648 (define-public r-softimpute
11649 (package
11650 (name "r-softimpute")
11651 (version "1.4")
11652 (source
11653 (origin
11654 (method url-fetch)
11655 (uri (cran-uri "softImpute" version))
11656 (sha256
11657 (base32
11658 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
11659 (properties `((upstream-name . "softImpute")))
11660 (build-system r-build-system)
11661 (propagated-inputs
11662 `(("r-matrix" ,r-matrix)))
11663 (native-inputs
11664 `(("gfortran" ,gfortran)))
11665 (home-page "https://cran.r-project.org/web/packages/softImpute")
11666 (synopsis "Matrix completion via iterative soft-thresholded SVD")
11667 (description
11668 "This package provides iterative methods for matrix completion that use
11669 nuclear-norm regularization. The package includes procedures for centering
11670 and scaling rows, columns or both, and for computing low-rank @dfn{single
11671 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
11672 components).")
11673 (license license:gpl2)))
11674
11675 (define-public r-fftwtools
11676 (package
11677 (name "r-fftwtools")
11678 (version "0.9-11")
11679 (source
11680 (origin
11681 (method url-fetch)
11682 (uri (cran-uri "fftwtools" version))
11683 (sha256
11684 (base32
11685 "0zrchp4l0jdbir2gibjf00x225y9giqk80zvqmr2yyvc12lwkw7i"))))
11686 (build-system r-build-system)
11687 (inputs `(("fftw" ,fftw)))
11688 (native-inputs
11689 `(("pkg-config" ,pkg-config)))
11690 (home-page "https://github.com/krahim/fftwtools")
11691 (synopsis "Wrapper for FFTW3")
11692 (description
11693 "This package provides a wrapper for several FFTW functions. It provides
11694 access to the two-dimensional FFT, the multivariate FFT, and the
11695 one-dimensional real to complex FFT using the FFTW3 library. The package
11696 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
11697 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
11698 The FFT functions have a parameter that allows them to not return the
11699 redundant complex conjugate when the input is real data.")
11700 (license license:gpl2+)))
11701
11702 (define-public r-tiff
11703 (package
11704 (name "r-tiff")
11705 (version "0.1-7")
11706 (source
11707 (origin
11708 (method url-fetch)
11709 (uri (cran-uri "tiff" version))
11710 (sha256
11711 (base32
11712 "101n6x70fr1dhcwx53g3s8q1j4wh93y0388v1s1316f8558rxqxh"))))
11713 (build-system r-build-system)
11714 (inputs
11715 `(("libtiff" ,libtiff)
11716 ("libjpeg" ,libjpeg-turbo)
11717 ("zlib" ,zlib)))
11718 (home-page "https://www.rforge.net/tiff/")
11719 (synopsis "Read and write TIFF images")
11720 (description
11721 "This package provides an easy and simple way to read, write and display
11722 bitmap images stored in the TIFF format. It can read and write both files and
11723 in-memory raw vectors.")
11724 ;; Either of these two license versions.
11725 (license (list license:gpl2 license:gpl3))))
11726
11727 (define-public r-nlp
11728 (package
11729 (name "r-nlp")
11730 (version "0.2-1")
11731 (source
11732 (origin
11733 (method url-fetch)
11734 (uri (cran-uri "NLP" version))
11735 (sha256
11736 (base32
11737 "1dpj04fmld2lnhg072ahgjbhmciqqy9h1lrz0wf32mr7mm9s9sh5"))))
11738 (properties `((upstream-name . "NLP")))
11739 (build-system r-build-system)
11740 (home-page "https://cran.r-project.org/web/packages/NLP/")
11741 (synopsis "Natural language processing infrastructure")
11742 (description
11743 "This package provides basic classes and methods for Natural Language
11744 Processing.")
11745 (license license:gpl3)))
11746
11747 (define-public r-tm
11748 (package
11749 (name "r-tm")
11750 (version "0.7-8")
11751 (source
11752 (origin
11753 (method url-fetch)
11754 (uri (cran-uri "tm" version))
11755 (sha256
11756 (base32
11757 "0mk2lsplynms15nw92vbdgsafg4bw1m0ik31gch1mnsnv61idsxi"))))
11758 (properties `((upstream-name . "tm")))
11759 (build-system r-build-system)
11760 (propagated-inputs
11761 `(("r-bh" ,r-bh)
11762 ("r-nlp" ,r-nlp)
11763 ("r-rcpp" ,r-rcpp)
11764 ("r-slam" ,r-slam)
11765 ("r-xml2" ,r-xml2)))
11766 (home-page "http://tm.r-forge.r-project.org/")
11767 (synopsis "Text mining package")
11768 (description
11769 "This package provides a framework for text mining applications within R.")
11770 (license license:gpl3)))
11771
11772 (define-public r-waveslim
11773 (package
11774 (name "r-waveslim")
11775 (version "1.8.2")
11776 (source
11777 (origin
11778 (method url-fetch)
11779 (uri (cran-uri "waveslim" version))
11780 (sha256
11781 (base32
11782 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
11783 (build-system r-build-system)
11784 (native-inputs
11785 `(("gfortran" ,gfortran)))
11786 (home-page "http://waveslim.blogspot.com")
11787 (synopsis "Basic wavelet routines for signal processing")
11788 (description
11789 "This package provides basic wavelet routines for time series (1D),
11790 image (2D) and array (3D) analysis. The code provided here is based on
11791 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
11792 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
11793 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
11794 pairs (Selesnick 2001, 2002).")
11795 (license license:bsd-3)))
11796
11797 (define-public r-wordcloud
11798 (package
11799 (name "r-wordcloud")
11800 (version "2.6")
11801 (source
11802 (origin
11803 (method url-fetch)
11804 (uri (cran-uri "wordcloud" version))
11805 (sha256
11806 (base32
11807 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
11808 (build-system r-build-system)
11809 (propagated-inputs
11810 `(("r-rcolorbrewer" ,r-rcolorbrewer)
11811 ("r-rcpp" ,r-rcpp)
11812 ;; The "tm" package is only "suggested" according to CRAN, but the
11813 ;; wordcloud package cannot be loaded without it.
11814 ("r-tm" ,r-tm)))
11815 (home-page "https://cran.r-project.org/web/packages/wordcloud")
11816 (synopsis "Word clouds")
11817 (description
11818 "This package provides functionality to create pretty word clouds,
11819 visualize differences and similarity between documents, and avoid
11820 over-plotting in scatter plots with text.")
11821 (license license:lgpl2.1)))
11822
11823 (define-public r-colorramps
11824 (package
11825 (name "r-colorramps")
11826 (version "2.3")
11827 (source
11828 (origin
11829 (method url-fetch)
11830 (uri (cran-uri "colorRamps" version))
11831 (sha256
11832 (base32
11833 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
11834 (properties `((upstream-name . "colorRamps")))
11835 (build-system r-build-system)
11836 (home-page "https://cran.r-project.org/web/packages/colorRamps")
11837 (synopsis "Build color tables")
11838 (description "This package provides features to build gradient color
11839 maps.")
11840 ;; Any version of the GPL
11841 (license license:gpl3+)))
11842
11843 (define-public r-tidytree
11844 (package
11845 (name "r-tidytree")
11846 (version "0.3.3")
11847 (source
11848 (origin
11849 (method url-fetch)
11850 (uri (cran-uri "tidytree" version))
11851 (sha256
11852 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
11853 (build-system r-build-system)
11854 (propagated-inputs
11855 `(("r-ape" ,r-ape)
11856 ("r-dplyr" ,r-dplyr)
11857 ("r-lazyeval" ,r-lazyeval)
11858 ("r-magrittr" ,r-magrittr)
11859 ("r-rlang" ,r-rlang)
11860 ("r-tibble" ,r-tibble)))
11861 (native-inputs
11862 `(("r-knitr" ,r-knitr)))
11863 (home-page "https://github.com/GuangchuangYu/tidytree")
11864 (synopsis "Tidy tool for phylogenetic tree data manipulation")
11865 (description
11866 "Phylogenetic trees generally contain multiple components including nodes,
11867 edges, branches and associated data. This package provides an approach to
11868 convert tree objects to tidy data frames. It also provides tidy interfaces to
11869 manipulate tree data.")
11870 (license license:artistic2.0)))
11871
11872 (define-public r-rvcheck
11873 (package
11874 (name "r-rvcheck")
11875 (version "0.1.8")
11876 (source
11877 (origin
11878 (method url-fetch)
11879 (uri (cran-uri "rvcheck" version))
11880 (sha256
11881 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
11882 (build-system r-build-system)
11883 (propagated-inputs
11884 `(("r-biocmanager" ,r-biocmanager)
11885 ("r-rlang" ,r-rlang)))
11886 (home-page "https://cran.r-project.org/web/packages/rvcheck")
11887 (synopsis "R package version check")
11888 (description
11889 "This package provides tools to check the latest release version of R and
11890 R packages (on CRAN, Bioconductor or Github).")
11891 (license license:artistic2.0)))
11892
11893 (define-public r-docopt
11894 (package
11895 (name "r-docopt")
11896 (version "0.7.1")
11897 (source
11898 (origin
11899 (method url-fetch)
11900 (uri (cran-uri "docopt" version))
11901 (sha256
11902 (base32
11903 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
11904 (build-system r-build-system)
11905 (home-page "https://github.com/docopt/docopt.R")
11906 (synopsis "Command-line interface specification language")
11907 (description
11908 "This package enables you to define a command-line interface by just
11909 giving it a description in the specific format.")
11910 (license license:expat)))
11911
11912 (define-public r-sparsesvd
11913 (package
11914 (name "r-sparsesvd")
11915 (version "0.2")
11916 (source
11917 (origin
11918 (method url-fetch)
11919 (uri (cran-uri "sparsesvd" version))
11920 (sha256
11921 (base32
11922 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
11923 (build-system r-build-system)
11924 (propagated-inputs `(("r-matrix" ,r-matrix)))
11925 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
11926 (synopsis "Sparse truncated singular value decomposition")
11927 (description
11928 "This package provides a Wrapper around the SVDLIBC library
11929 for (truncated) singular value decomposition of a sparse matrix. Currently,
11930 only sparse real matrices in Matrix package format are supported.")
11931 ;; SVDLIBC is released under BSD-2. The R interface is released under
11932 ;; BSD-3.
11933 (license (list license:bsd-3 license:bsd-2))))
11934
11935 (define-public r-speedglm
11936 (package
11937 (name "r-speedglm")
11938 (version "0.3-3")
11939 (source
11940 (origin
11941 (method url-fetch)
11942 (uri (cran-uri "speedglm" version))
11943 (sha256
11944 (base32
11945 "0f37w4lj8dpcg1sfkd7cv6qpdkanmb97mnd8zih2fxzv8bpd0rfh"))))
11946 (build-system r-build-system)
11947 (propagated-inputs
11948 `(("r-mass" ,r-mass)
11949 ("r-matrix" ,r-matrix)))
11950 (home-page "https://cran.r-project.org/web/packages/speedglm")
11951 (synopsis "Fit linear and generalized linear models to large data sets")
11952 (description
11953 "This package provides tools for fitting linear models and generalized
11954 linear models to large data sets by updating algorithms.")
11955 ;; Any version of the GPL
11956 (license license:gpl2+)))
11957
11958 (define-public r-densityclust
11959 (package
11960 (name "r-densityclust")
11961 (version "0.3")
11962 (source
11963 (origin
11964 (method url-fetch)
11965 (uri (cran-uri "densityClust" version))
11966 (sha256
11967 (base32
11968 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
11969 (properties `((upstream-name . "densityClust")))
11970 (build-system r-build-system)
11971 (propagated-inputs
11972 `(("r-fnn" ,r-fnn)
11973 ("r-ggplot2" ,r-ggplot2)
11974 ("r-ggrepel" ,r-ggrepel)
11975 ("r-gridextra" ,r-gridextra)
11976 ("r-rcolorbrewer" ,r-rcolorbrewer)
11977 ("r-rcpp" ,r-rcpp)
11978 ("r-rtsne" ,r-rtsne)))
11979 (home-page "https://cran.r-project.org/web/packages/densityClust")
11980 (synopsis "Clustering by fast search and find of density peaks")
11981 (description
11982 "This package provides an improved implementation (based on k-nearest
11983 neighbors) of the density peak clustering algorithm, originally described by
11984 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
11985 large datasets (> 100,000 samples) very efficiently.")
11986 (license license:gpl2+)))
11987
11988 (define-public r-combinat
11989 (package
11990 (name "r-combinat")
11991 (version "0.0-8")
11992 (source
11993 (origin
11994 (method url-fetch)
11995 (uri (cran-uri "combinat" version))
11996 (sha256
11997 (base32
11998 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
11999 (build-system r-build-system)
12000 (home-page "https://cran.r-project.org/web/packages/combinat")
12001 (synopsis "Combinatorics utilities")
12002 (description "This package provides assorted routines for combinatorics.")
12003 (license license:gpl2)))
12004
12005 (define-public r-qlcmatrix
12006 (package
12007 (name "r-qlcmatrix")
12008 (version "0.9.7")
12009 (source
12010 (origin
12011 (method url-fetch)
12012 (uri (cran-uri "qlcMatrix" version))
12013 (sha256
12014 (base32
12015 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
12016 (properties `((upstream-name . "qlcMatrix")))
12017 (build-system r-build-system)
12018 (propagated-inputs
12019 `(("r-docopt" ,r-docopt)
12020 ("r-matrix" ,r-matrix)
12021 ("r-slam" ,r-slam)
12022 ("r-sparsesvd" ,r-sparsesvd)))
12023 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
12024 (synopsis "Sparse matrix functions for quantitative language comparison")
12025 (description
12026 "This package provides an extension of the functionality of the Matrix
12027 package for using sparse matrices. Some of the functions are very general,
12028 while other are highly specific for the special data format used for
12029 @dfn{quantitative language comparison} (QLC).")
12030 (license license:gpl3)))
12031
12032 (define-public r-ddrtree
12033 (package
12034 (name "r-ddrtree")
12035 (version "0.1.5")
12036 (source
12037 (origin
12038 (method url-fetch)
12039 (uri (cran-uri "DDRTree" version))
12040 (sha256
12041 (base32
12042 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
12043 (properties `((upstream-name . "DDRTree")))
12044 (build-system r-build-system)
12045 (propagated-inputs
12046 `(("r-bh" ,r-bh)
12047 ("r-irlba" ,r-irlba)
12048 ("r-rcpp" ,r-rcpp)
12049 ("r-rcppeigen" ,r-rcppeigen)))
12050 (home-page "https://cran.r-project.org/web/packages/DDRTree")
12051 (synopsis "Learning principal graphs with DDRTree")
12052 (description
12053 "This package provides an implementation of the framework of
12054 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
12055 dimensional space while constructs a principal tree which passes through the
12056 middle of the data simultaneously. DDRTree shows superiority to
12057 alternatives (Wishbone, DPT) for inferring the ordering as well as the
12058 intrinsic structure of single cell genomics data. In general, it could be
12059 used to reconstruct the temporal progression as well as the bifurcation
12060 structure of any data type.")
12061 (license license:asl2.0)))
12062
12063 (define-public r-corpcor
12064 (package
12065 (name "r-corpcor")
12066 (version "1.6.9")
12067 (source
12068 (origin
12069 (method url-fetch)
12070 (uri (cran-uri "corpcor" version))
12071 (sha256
12072 (base32
12073 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
12074 (build-system r-build-system)
12075 (home-page "http://strimmerlab.org/software/corpcor/")
12076 (synopsis "Efficient estimation of covariance and (partial) correlation")
12077 (description
12078 "This package implements a James-Stein-type shrinkage estimator for the
12079 covariance matrix, with separate shrinkage for variances and correlations.
12080 Furthermore, functions are available for fast singular value decomposition,
12081 for computing the pseudoinverse, and for checking the rank and positive
12082 definiteness of a matrix.")
12083 (license license:gpl3+)))
12084
12085 (define-public r-rspectra
12086 (package
12087 (name "r-rspectra")
12088 (version "0.16-0")
12089 (source
12090 (origin
12091 (method url-fetch)
12092 (uri (cran-uri "RSpectra" version))
12093 (sha256
12094 (base32
12095 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
12096 (properties `((upstream-name . "RSpectra")))
12097 (build-system r-build-system)
12098 (propagated-inputs
12099 `(("r-matrix" ,r-matrix)
12100 ("r-rcpp" ,r-rcpp)
12101 ("r-rcppeigen" ,r-rcppeigen)))
12102 (home-page "https://github.com/yixuan/RSpectra")
12103 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
12104 (description
12105 "This package provides an R interface to the Spectra library for
12106 large-scale eigenvalue and SVD problems. It is typically used to compute a
12107 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
12108 which is usually more efficient than @code{eigen()} if k << n.")
12109 ;; MPL 2 or later.
12110 (license license:mpl2.0)))
12111
12112 (define-public r-vbsr
12113 (package
12114 (name "r-vbsr")
12115 (version "0.0.5")
12116 (source
12117 (origin
12118 (method url-fetch)
12119 (uri (cran-uri "vbsr" version))
12120 (sha256
12121 (base32
12122 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
12123 (build-system r-build-system)
12124 (home-page "https://cran.r-project.org/web/packages/vbsr")
12125 (synopsis "Variational Bayes spike regression regularized linear models")
12126 (description
12127 "This package provides an efficient algorithm for solving ultra-sparse
12128 regularized regression models using a variational Bayes algorithm with a spike
12129 prior. The algorithm is solved on a path, with coordinate updates, and is
12130 capable of generating very sparse models. Very general model
12131 diagnostics for controlling type-1 errors are also provided.")
12132 (license license:gpl2)))
12133
12134 (define-public r-flare
12135 (package
12136 (name "r-flare")
12137 (version "1.7.0")
12138 (source
12139 (origin
12140 (method url-fetch)
12141 (uri (cran-uri "flare" version))
12142 (sha256
12143 (base32
12144 "0f992dmgnr6s8g3386i9bjfyf08q8srgw7sjz2yx7snj8znq7251"))))
12145 (build-system r-build-system)
12146 (propagated-inputs
12147 `(("r-igraph" ,r-igraph)
12148 ("r-lattice" ,r-lattice)
12149 ("r-mass" ,r-mass)
12150 ("r-matrix" ,r-matrix)))
12151 (home-page "https://cran.r-project.org/web/packages/flare")
12152 (synopsis "Family of Lasso regression implementations")
12153 (description
12154 "This package provides implementations of a family of Lasso variants
12155 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
12156 high dimensional sparse linear models.")
12157 (license license:gpl2)))
12158
12159 (define-public r-lassopv
12160 (package
12161 (name "r-lassopv")
12162 (version "0.2.0")
12163 (source
12164 (origin
12165 (method url-fetch)
12166 (uri (cran-uri "lassopv" version))
12167 (sha256
12168 (base32
12169 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
12170 (build-system r-build-system)
12171 (propagated-inputs `(("r-lars" ,r-lars)))
12172 (home-page "https://github.com/lingfeiwang/lassopv")
12173 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
12174 (description
12175 "This package enables you to estimate the p-values for predictors x
12176 against target variable y in Lasso regression, using the regularization
12177 strength when each predictor enters the active set of regularization path for
12178 the first time as the statistic.")
12179 (license license:gpl3)))
12180
12181 (define-public r-splitstackshape
12182 (package
12183 (name "r-splitstackshape")
12184 (version "1.4.8")
12185 (source
12186 (origin
12187 (method url-fetch)
12188 (uri (cran-uri "splitstackshape" version))
12189 (sha256
12190 (base32
12191 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
12192 (build-system r-build-system)
12193 (propagated-inputs
12194 `(("r-data-table" ,r-data-table)))
12195 (home-page "https://github.com/mrdwab/splitstackshape")
12196 (synopsis "Stack and reshape datasets after splitting concatenated values")
12197 (description
12198 "Online data collection tools like Google Forms often export
12199 multiple-response questions with data concatenated in cells. The
12200 @code{concat.split} (cSplit) family of functions provided by this package
12201 splits such data into separate cells. This package also includes functions to
12202 stack groups of columns and to reshape wide data, even when the data are
12203 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
12204 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
12205 handle.")
12206 (license license:gpl3)))
12207
12208 (define-public r-tfmpvalue
12209 (package
12210 (name "r-tfmpvalue")
12211 (version "0.0.8")
12212 (source
12213 (origin
12214 (method url-fetch)
12215 (uri (cran-uri "TFMPvalue" version))
12216 (sha256
12217 (base32
12218 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
12219 (properties `((upstream-name . "TFMPvalue")))
12220 (build-system r-build-system)
12221 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12222 (home-page "https://github.com/ge11232002/TFMPvalue")
12223 (synopsis "P-value computation for position weight matrices")
12224 (description
12225 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
12226 identification from sequence/alignments, we are interested in the significance
12227 of certain match scores. TFMPvalue provides the accurate calculation of a
12228 p-value with a score threshold for position weight matrices, or the score with
12229 a given p-value. It is an interface to code originally made available by
12230 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
12231 Touzet and Varre (2007).")
12232 (license license:gpl2)))
12233
12234 (define-public r-rnifti
12235 (package
12236 (name "r-rnifti")
12237 (version "1.3.0")
12238 (source
12239 (origin
12240 (method url-fetch)
12241 (uri (cran-uri "RNifti" version))
12242 (sha256
12243 (base32
12244 "1zr0q79id62csmc30c7gs4hbmavk8n6p50a981sfz51dczhjj5ny"))))
12245 (properties `((upstream-name . "RNifti")))
12246 (build-system r-build-system)
12247 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12248 (home-page "https://github.com/jonclayden/RNifti")
12249 (synopsis "Fast R and C++ access to NIfTI images")
12250 (description
12251 "This package provides very fast read and write access to images stored
12252 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
12253 compiled C and interpreted R code. It also provides a C/C++ API that can be
12254 used by other packages.")
12255 (license license:gpl2)))
12256
12257 (define-public r-shades
12258 (package
12259 (name "r-shades")
12260 (version "1.4.0")
12261 (source
12262 (origin
12263 (method url-fetch)
12264 (uri (cran-uri "shades" version))
12265 (sha256
12266 (base32
12267 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
12268 (build-system r-build-system)
12269 (home-page "https://github.com/jonclayden/shades")
12270 (synopsis "Simple color manipulation")
12271 (description
12272 "This package provides functions for easily manipulating colors,
12273 creating color scales and calculating color distances.")
12274 (license license:bsd-3)))
12275
12276 (define-public r-ore
12277 (package
12278 (name "r-ore")
12279 (version "1.6.3")
12280 (source
12281 (origin
12282 (method url-fetch)
12283 (uri (cran-uri "ore" version))
12284 (sha256
12285 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
12286 (build-system r-build-system)
12287 (home-page "https://github.com/jonclayden/ore")
12288 (synopsis "R interface to the Onigmo regular expression library")
12289 (description
12290 "This package provides an alternative to R's built-in functionality for
12291 handling regular expressions, based on the Onigmo library. It offers
12292 first-class compiled regex objects, partial matching and function-based
12293 substitutions, amongst other features.")
12294 (license license:bsd-3)))
12295
12296 (define-public r-reportr
12297 (package
12298 (name "r-reportr")
12299 (version "1.3.0")
12300 (source
12301 (origin
12302 (method url-fetch)
12303 (uri (cran-uri "reportr" version))
12304 (sha256
12305 (base32
12306 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
12307 (build-system r-build-system)
12308 (propagated-inputs `(("r-ore" ,r-ore)))
12309 (home-page "https://github.com/jonclayden/reportr")
12310 (synopsis "General message and error reporting system")
12311 (description
12312 "This package provides a system for reporting messages, which offers
12313 certain useful features over the standard R system, such as the incorporation
12314 of output consolidation, message filtering, assertions, expression
12315 substitution, automatic generation of stack traces for debugging, and
12316 conditional reporting based on the current \"output level\".")
12317 (license license:gpl2)))
12318
12319 (define-public r-tractor-base
12320 (package
12321 (name "r-tractor-base")
12322 (version "3.3.3.1")
12323 (source
12324 (origin
12325 (method url-fetch)
12326 (uri (cran-uri "tractor.base" version))
12327 (sha256
12328 (base32
12329 "0w5jw7pf77npkgig7667yikpbwv4dfk1dcq63qm88l409ga2f95p"))))
12330 (properties `((upstream-name . "tractor.base")))
12331 (build-system r-build-system)
12332 (propagated-inputs
12333 `(("r-ore" ,r-ore)
12334 ("r-reportr" ,r-reportr)
12335 ("r-rnifti" ,r-rnifti)
12336 ("r-shades" ,r-shades)))
12337 (home-page "https://www.tractor-mri.org.uk")
12338 (synopsis "Read, manipulate and visualize magnetic resonance images")
12339 (description
12340 "This package provides functions for working with magnetic resonance
12341 images. It supports reading and writing of popular file formats (DICOM,
12342 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
12343 visualization; flexible image manipulation; metadata and sparse image
12344 handling.")
12345 (license license:gpl2)))
12346
12347 (define-public r-grimport
12348 (package
12349 (name "r-grimport")
12350 (version "0.9-3")
12351 (source
12352 (origin
12353 (method url-fetch)
12354 (uri (cran-uri "grImport" version))
12355 (sha256
12356 (base32
12357 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
12358 (properties `((upstream-name . "grImport")))
12359 (build-system r-build-system)
12360 (inputs
12361 `(("ghostscript" ,ghostscript)))
12362 (propagated-inputs
12363 `(("r-xml" ,r-xml)))
12364 (home-page "https://cran.r-project.org/web/packages/grImport")
12365 (synopsis "Convert, import, and draw PostScript pictures")
12366 (description
12367 "This package provides functions for converting, importing, and drawing
12368 PostScript pictures in R plots.")
12369 (license license:gpl2+)))
12370
12371 (define-public r-grimport2
12372 (package
12373 (name "r-grimport2")
12374 (version "0.2-0")
12375 (source
12376 (origin
12377 (method url-fetch)
12378 (uri (cran-uri "grImport2" version))
12379 (sha256
12380 (base32
12381 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
12382 (properties `((upstream-name . "grImport2")))
12383 (build-system r-build-system)
12384 (propagated-inputs
12385 `(("r-base64enc" ,r-base64enc)
12386 ("r-jpeg" ,r-jpeg)
12387 ("r-png" ,r-png)
12388 ("r-xml" ,r-xml)))
12389 (home-page "https://cran.r-project.org/web/packages/grImport2/")
12390 (synopsis "Import SVG graphics")
12391 (description
12392 "This package provides functions for importing external vector images and
12393 drawing them as part of R plots. This package is different from the
12394 @code{grImport} package because, where that package imports PostScript format
12395 images, this package imports SVG format images. Furthermore, this package
12396 imports a specific subset of SVG, so external images must be preprocessed
12397 using a package like @code{rsvg} to produce SVG that this package can import.
12398 SVG features that are not supported by R graphics, such as gradient fills, can
12399 be imported and then exported via the @code{gridSVG} package.")
12400 (license license:gpl2+)))
12401
12402 (define-public r-kohonen
12403 (package
12404 (name "r-kohonen")
12405 (version "3.0.10")
12406 (source
12407 (origin
12408 (method url-fetch)
12409 (uri (cran-uri "kohonen" version))
12410 (sha256
12411 (base32
12412 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
12413 (build-system r-build-system)
12414 (propagated-inputs
12415 `(("r-rcpp" ,r-rcpp)))
12416 (home-page "https://cran.r-project.org/web/packages/kohonen")
12417 (synopsis "Supervised and unsupervised self-organising maps")
12418 (description
12419 "This package provides functions to train @dfn{self-organising
12420 maps} (SOMs). Also interrogation of the maps and prediction using trained
12421 maps are supported. The name of the package refers to Teuvo Kohonen, the
12422 inventor of the SOM.")
12423 (license license:gpl2+)))
12424
12425 (define-public r-nnls
12426 (package
12427 (name "r-nnls")
12428 (version "1.4")
12429 (source
12430 (origin
12431 (method url-fetch)
12432 (uri (cran-uri "nnls" version))
12433 (sha256
12434 (base32
12435 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
12436 (build-system r-build-system)
12437 (native-inputs `(("gfortran" ,gfortran)))
12438 (home-page "https://cran.r-project.org/web/packages/nnls")
12439 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
12440 (description
12441 "This package provides an R interface to the Lawson-Hanson implementation
12442 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
12443 the combination of non-negative and non-positive constraints.")
12444 (license license:gpl2+)))
12445
12446 (define-public r-iso
12447 (package
12448 (name "r-iso")
12449 (version "0.0-18.1")
12450 (source
12451 (origin
12452 (method url-fetch)
12453 (uri (cran-uri "Iso" version))
12454 (sha256
12455 (base32
12456 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
12457 (properties `((upstream-name . "Iso")))
12458 (build-system r-build-system)
12459 (native-inputs `(("gfortran" ,gfortran)))
12460 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
12461 (synopsis "Functions to perform isotonic regression")
12462 (description
12463 "This package provides support for linear order and unimodal
12464 order (univariate) isotonic regression and bivariate isotonic regression with
12465 linear order on both variables.")
12466 (license license:gpl2+)))
12467
12468 (define-public r-chemometricswithr
12469 (package
12470 (name "r-chemometricswithr")
12471 (version "0.1.13")
12472 (source
12473 (origin
12474 (method url-fetch)
12475 (uri (cran-uri "ChemometricsWithR" version))
12476 (sha256
12477 (base32
12478 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
12479 (properties
12480 `((upstream-name . "ChemometricsWithR")))
12481 (build-system r-build-system)
12482 (propagated-inputs
12483 `(("r-devtools" ,r-devtools)
12484 ("r-kohonen" ,r-kohonen)
12485 ("r-mass" ,r-mass)
12486 ("r-pls" ,r-pls)))
12487 (home-page "https://github.com/rwehrens/CWR")
12488 (synopsis "Chemometrics with R")
12489 (description
12490 "This package provides functions and scripts used in the book
12491 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
12492 Life Sciences\" by Ron Wehrens, Springer (2011).")
12493 (license license:gpl2+)))
12494
12495 (define-public r-als
12496 (package
12497 (name "r-als")
12498 (version "0.0.6")
12499 (source
12500 (origin
12501 (method url-fetch)
12502 (uri (cran-uri "ALS" version))
12503 (sha256
12504 (base32
12505 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
12506 (properties `((upstream-name . "ALS")))
12507 (build-system r-build-system)
12508 (propagated-inputs
12509 `(("r-iso" ,r-iso)
12510 ("r-nnls" ,r-nnls)))
12511 (home-page "https://cran.r-project.org/web/packages/ALS")
12512 (synopsis "Multivariate curve resolution alternating least squares")
12513 (description
12514 "Alternating least squares is often used to resolve components
12515 contributing to data with a bilinear structure; the basic technique may be
12516 extended to alternating constrained least squares. This package provides an
12517 implementation of @dfn{multivariate curve resolution alternating least
12518 squares} (MCR-ALS).
12519
12520 Commonly applied constraints include unimodality, non-negativity, and
12521 normalization of components. Several data matrices may be decomposed
12522 simultaneously by assuming that one of the two matrices in the bilinear
12523 decomposition is shared between datasets.")
12524 (license license:gpl2+)))
12525
12526 (define-public r-strucchange
12527 (package
12528 (name "r-strucchange")
12529 (version "1.5-2")
12530 (source
12531 (origin
12532 (method url-fetch)
12533 (uri (cran-uri "strucchange" version))
12534 (sha256
12535 (base32
12536 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
12537 (build-system r-build-system)
12538 (propagated-inputs
12539 `(("r-sandwich" ,r-sandwich)
12540 ("r-zoo" ,r-zoo)))
12541 (home-page "https://cran.r-project.org/web/packages/strucchange")
12542 (synopsis "Testing, monitoring, and dating structural changes")
12543 (description
12544 "This package provides tools for testing, monitoring and dating
12545 structural changes in (linear) regression models. It features tests/methods
12546 from the generalized fluctuation test framework as well as from the F
12547 test (Chow test) framework. This includes methods to fit, plot and test
12548 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
12549 statistics, respectively. It is possible to monitor incoming data online
12550 using fluctuation processes. Finally, the breakpoints in regression models
12551 with structural changes can be estimated together with confidence intervals.
12552 Emphasis is always given to methods for visualizing the data.")
12553 ;; Either of these two GPL versions
12554 (license (list license:gpl2 license:gpl3))))
12555
12556 (define-public r-pixmap
12557 (package
12558 (name "r-pixmap")
12559 (version "0.4-12")
12560 (source
12561 (origin
12562 (method url-fetch)
12563 (uri (cran-uri "pixmap" version))
12564 (sha256
12565 (base32
12566 "1v1a1adsgh5jlvvi98j4nhb1h681s97ip76zdrga12rlsjaahfw9"))))
12567 (build-system r-build-system)
12568 (home-page "https://cran.r-project.org/web/packages/pixmap")
12569 (synopsis "Tools for bitmap images")
12570 (description
12571 "This package provides functions for importing, exporting, plotting and
12572 other manipulations of bitmapped images.")
12573 (license license:gpl2)))
12574
12575 (define-public r-rapidjsonr
12576 (package
12577 (name "r-rapidjsonr")
12578 (version "1.2.0")
12579 (source
12580 (origin
12581 (method url-fetch)
12582 (uri (cran-uri "rapidjsonr" version))
12583 (sha256
12584 (base32
12585 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
12586 (build-system r-build-system)
12587 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
12588 (synopsis "JSON parser")
12589 (description
12590 "This package provides JSON parsing capability through the Rapidjson
12591 library.")
12592 (license license:expat)))
12593
12594 (define-public r-ontologyindex
12595 (package
12596 (name "r-ontologyindex")
12597 (version "2.7")
12598 (source
12599 (origin
12600 (method url-fetch)
12601 (uri (cran-uri "ontologyIndex" version))
12602 (sha256
12603 (base32
12604 "0j3h1spqwjhh1wbmwivmqcyi042yy7d565c3kxgn70xrmy693x1k"))))
12605 (properties `((upstream-name . "ontologyIndex")))
12606 (build-system r-build-system)
12607 (native-inputs
12608 `(("r-knitr" ,r-knitr)))
12609 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
12610 (synopsis "Functions for processing ontologies in R")
12611 (description
12612 "This package provides functions for reading ontologies into R as lists
12613 and manipulating sets of ontological terms.")
12614 (license license:gpl2+)))
12615
12616 (define-public r-gargle
12617 (package
12618 (name "r-gargle")
12619 (version "1.0.0")
12620 (source
12621 (origin
12622 (method url-fetch)
12623 (uri (cran-uri "gargle" version))
12624 (sha256
12625 (base32
12626 "0hsqn4hf935wn6vk2pwym7la4sdvy271y4cashp38pg4hkpg9zph"))))
12627 (build-system r-build-system)
12628 (propagated-inputs
12629 `(("r-fs" ,r-fs)
12630 ("r-glue" ,r-glue)
12631 ("r-httr" ,r-httr)
12632 ("r-jsonlite" ,r-jsonlite)
12633 ("r-rlang" ,r-rlang)
12634 ("r-withr" ,r-withr)))
12635 (native-inputs
12636 `(("r-knitr" ,r-knitr)))
12637 (home-page "https://gargle.r-lib.org")
12638 (synopsis "Utilities for working with Google APIs")
12639 (description
12640 "This package provides utilities for working with Google APIs. This
12641 includes functions and classes for handling common credential types and for
12642 preparing, executing, and processing HTTP requests.")
12643 (license license:expat)))
12644
12645 (define-public r-bigrquery
12646 (package
12647 (name "r-bigrquery")
12648 (version "1.3.2")
12649 (source
12650 (origin
12651 (method url-fetch)
12652 (uri (cran-uri "bigrquery" version))
12653 (sha256
12654 (base32
12655 "16whccv7f94vf57dvbbrhdskz3nnbmpa11a14kp7aynckldlfy0v"))))
12656 (build-system r-build-system)
12657 (propagated-inputs
12658 `(("r-assertthat" ,r-assertthat)
12659 ("r-bit64" ,r-bit64)
12660 ("r-curl" ,r-curl)
12661 ("r-dbi" ,r-dbi)
12662 ("r-gargle" ,r-gargle)
12663 ("r-glue" ,r-glue)
12664 ("r-httr" ,r-httr)
12665 ("r-jsonlite" ,r-jsonlite)
12666 ("r-prettyunits" ,r-prettyunits)
12667 ("r-progress" ,r-progress)
12668 ("r-rapidjsonr" ,r-rapidjsonr)
12669 ("r-rcpp" ,r-rcpp)
12670 ("r-rlang" ,r-rlang)
12671 ("r-tibble" ,r-tibble)))
12672 (home-page "https://github.com/rstats-db/bigrquery")
12673 (synopsis "R interface to Google's BigQuery API")
12674 (description
12675 "This package provides an R interface to Google's BigQuery database.")
12676 (license license:gpl3)))
12677
12678 (define-public r-gmp
12679 (package
12680 (name "r-gmp")
12681 (version "0.6-2")
12682 (source
12683 (origin
12684 (method url-fetch)
12685 (uri (cran-uri "gmp" version))
12686 (sha256
12687 (base32
12688 "03kzbflgpy5sgnzxmhshs5qv7jjmfc113ybkhxys4z8y7xdv9z3b"))))
12689 (build-system r-build-system)
12690 (arguments
12691 '(#:phases
12692 (modify-phases %standard-phases
12693 (add-after 'unpack 'set-CC
12694 (lambda _ (setenv "CC" "gcc") #t)))))
12695 (inputs `(("gmp" ,gmp)))
12696 (home-page "https://cran.r-project.org/web/packages/gmp")
12697 (synopsis "Multiple precision arithmetic")
12698 (description
12699 "This package supports multiple precision arithmetic (big integers and
12700 rationals, prime number tests, matrix computation), \"arithmetic without
12701 limitations\" using the GNU Multiple Precision library.")
12702 ;; Any version of the GPL.
12703 (license license:gpl3+)))
12704
12705 (define-public r-rmpfr
12706 (package
12707 (name "r-rmpfr")
12708 (version "0.8-2")
12709 (source
12710 (origin
12711 (method url-fetch)
12712 (uri (cran-uri "Rmpfr" version))
12713 (sha256
12714 (base32
12715 "007pc7fpzl2mcg3qxa2vfjip6m2dr314qjsnybkj3kdj70bszxkl"))))
12716 (properties `((upstream-name . "Rmpfr")))
12717 (build-system r-build-system)
12718 (inputs
12719 `(("mpfr" ,mpfr)
12720 ("gmp" ,gmp)))
12721 (propagated-inputs
12722 `(("r-gmp" ,r-gmp)))
12723 (native-inputs
12724 `(("pkg-config" ,pkg-config)))
12725 (home-page "http://rmpfr.r-forge.r-project.org/")
12726 (synopsis "R bindings to the MPFR library")
12727 (description
12728 "This package supports arithmetic (via S4 classes and methods) for
12729 arbitrary precision floating point numbers, including transcendental
12730 functions. To this end, the package interfaces with the @dfn{Multiple
12731 Precision Floating-Point Reliable} (MPFR) library.")
12732 (license license:gpl2+)))
12733
12734 (define-public r-assertive-base
12735 (package
12736 (name "r-assertive-base")
12737 (version "0.0-9")
12738 (source
12739 (origin
12740 (method url-fetch)
12741 (uri (cran-uri "assertive.base" version))
12742 (sha256
12743 (base32
12744 "07m0ddz092bgbl2fn1yk932h0iajdcqkri632477wl5a1q5r3w2b"))))
12745 (properties
12746 `((upstream-name . "assertive.base")))
12747 (build-system r-build-system)
12748 (home-page "https://bitbucket.org/richierocks/assertive.base")
12749 (synopsis "Core of the assertive package")
12750 (description
12751 "This package provides a minimal set of predicates and assertions used by
12752 the assertive package. This is mainly for use by other package developers who
12753 want to include run-time testing features in their own packages.")
12754 (license license:gpl3+)))
12755
12756 (define-public r-assertive-properties
12757 (package
12758 (name "r-assertive-properties")
12759 (version "0.0-4")
12760 (source
12761 (origin
12762 (method url-fetch)
12763 (uri (cran-uri "assertive.properties" version))
12764 (sha256
12765 (base32
12766 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
12767 (properties
12768 `((upstream-name . "assertive.properties")))
12769 (build-system r-build-system)
12770 (propagated-inputs
12771 `(("r-assertive-base" ,r-assertive-base)))
12772 (home-page "https://bitbucket.org/richierocks/assertive.properties")
12773 (synopsis "Assertions to check properties of variables")
12774 (description
12775 "This package provides a set of predicates and assertions for checking
12776 the properties of variables, such as length, names and attributes. This is
12777 mainly for use by other package developers who want to include run-time
12778 testing features in their own packages.")
12779 (license license:gpl3+)))
12780
12781 (define-public r-assertive-numbers
12782 (package
12783 (name "r-assertive-numbers")
12784 (version "0.0-2")
12785 (source
12786 (origin
12787 (method url-fetch)
12788 (uri (cran-uri "assertive.numbers" version))
12789 (sha256
12790 (base32
12791 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
12792 (properties
12793 `((upstream-name . "assertive.numbers")))
12794 (build-system r-build-system)
12795 (propagated-inputs
12796 `(("r-assertive-base" ,r-assertive-base)))
12797 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
12798 (synopsis "Assertions to check properties of numbers")
12799 (description
12800 "This package provides a set of predicates and assertions for checking
12801 the properties of numbers. This is mainly for use by other package developers
12802 who want to include run-time testing features in their own packages.")
12803 (license license:gpl3+)))
12804
12805 (define-public r-assertive-sets
12806 (package
12807 (name "r-assertive-sets")
12808 (version "0.0-3")
12809 (source
12810 (origin
12811 (method url-fetch)
12812 (uri (cran-uri "assertive.sets" version))
12813 (sha256
12814 (base32
12815 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
12816 (properties
12817 `((upstream-name . "assertive.sets")))
12818 (build-system r-build-system)
12819 (propagated-inputs
12820 `(("r-assertive-base" ,r-assertive-base)))
12821 (home-page "https://bitbucket.org/richierocks/assertive.sets")
12822 (synopsis "Assertions to check properties of sets")
12823 (description
12824 "This package provides a set of predicates and assertions for checking
12825 the properties of sets. This is mainly for use by other package developers
12826 who want to include run-time testing features in their own packages.")
12827 (license license:gpl3+)))
12828
12829 (define-public r-assertive-matrices
12830 (package
12831 (name "r-assertive-matrices")
12832 (version "0.0-2")
12833 (source
12834 (origin
12835 (method url-fetch)
12836 (uri (cran-uri "assertive.matrices" version))
12837 (sha256
12838 (base32
12839 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
12840 (properties
12841 `((upstream-name . "assertive.matrices")))
12842 (build-system r-build-system)
12843 (propagated-inputs
12844 `(("r-assertive-base" ,r-assertive-base)))
12845 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
12846 (synopsis "Assertions to check properties of matrices")
12847 (description
12848 "This package provides a set of predicates and assertions for checking
12849 the properties of matrices. This is mainly for use by other package
12850 developers who want to include run-time testing features in their own
12851 packages.")
12852 (license license:gpl3+)))
12853
12854 (define-public r-assertive-models
12855 (package
12856 (name "r-assertive-models")
12857 (version "0.0-2")
12858 (source
12859 (origin
12860 (method url-fetch)
12861 (uri (cran-uri "assertive.models" version))
12862 (sha256
12863 (base32
12864 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
12865 (properties
12866 `((upstream-name . "assertive.models")))
12867 (build-system r-build-system)
12868 (propagated-inputs
12869 `(("r-assertive-base" ,r-assertive-base)))
12870 (home-page "https://bitbucket.org/richierocks/assertive.models")
12871 (synopsis "Assertions to check properties of models")
12872 (description
12873 "This package provides a set of predicates and assertions for checking
12874 the properties of models. This is mainly for use by other package developers
12875 who want to include run-time testing features in their own packages.")
12876 (license license:gpl3+)))
12877
12878 (define-public r-assertive-reflection
12879 (package
12880 (name "r-assertive-reflection")
12881 (version "0.0-5")
12882 (source
12883 (origin
12884 (method url-fetch)
12885 (uri (cran-uri "assertive.reflection" version))
12886 (sha256
12887 (base32
12888 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
12889 (properties
12890 `((upstream-name . "assertive.reflection")))
12891 (build-system r-build-system)
12892 (propagated-inputs
12893 `(("r-assertive-base" ,r-assertive-base)))
12894 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
12895 (synopsis "Assertions for checking the state of R")
12896 (description
12897 "This package provides a set of predicates and assertions for checking
12898 the state and capabilities of R, the operating system it is running on, and
12899 the IDE being used. This is mainly for use by other package developers who
12900 want to include run-time testing features in their own packages.")
12901 (license license:gpl3+)))
12902
12903 (define-public r-assertive-types
12904 (package
12905 (name "r-assertive-types")
12906 (version "0.0-3")
12907 (source
12908 (origin
12909 (method url-fetch)
12910 (uri (cran-uri "assertive.types" version))
12911 (sha256
12912 (base32
12913 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
12914 (properties
12915 `((upstream-name . "assertive.types")))
12916 (build-system r-build-system)
12917 (propagated-inputs
12918 `(("r-assertive-base" ,r-assertive-base)
12919 ("r-assertive-properties" ,r-assertive-properties)
12920 ("r-codetools" ,r-codetools)))
12921 (home-page "https://bitbucket.org/richierocks/assertive.types")
12922 (synopsis "Assertions to check types of variables")
12923 (description
12924 "This package provides a set of predicates and assertions for checking
12925 the types of variables. This is mainly for use by other package developers
12926 who want to include run-time testing features in their own packages.")
12927 (license license:gpl3+)))
12928
12929 (define-public r-assertive-files
12930 (package
12931 (name "r-assertive-files")
12932 (version "0.0-2")
12933 (source
12934 (origin
12935 (method url-fetch)
12936 (uri (cran-uri "assertive.files" version))
12937 (sha256
12938 (base32
12939 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
12940 (properties
12941 `((upstream-name . "assertive.files")))
12942 (build-system r-build-system)
12943 (propagated-inputs
12944 `(("r-assertive-base" ,r-assertive-base)
12945 ("r-assertive-numbers" ,r-assertive-numbers)))
12946 (home-page "https://bitbucket.org/richierocks/assertive.files")
12947 (synopsis "Assertions to check properties of files")
12948 (description
12949 "This package provides a set of predicates and assertions for checking
12950 the properties of files and connections. This is mainly for use by other
12951 package developers who want to include run-time testing features in their own
12952 packages.")
12953 (license license:gpl3+)))
12954
12955 (define-public r-assertive-code
12956 (package
12957 (name "r-assertive-code")
12958 (version "0.0-3")
12959 (source
12960 (origin
12961 (method url-fetch)
12962 (uri (cran-uri "assertive.code" version))
12963 (sha256
12964 (base32
12965 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
12966 (properties
12967 `((upstream-name . "assertive.code")))
12968 (build-system r-build-system)
12969 (propagated-inputs
12970 `(("r-assertive-base" ,r-assertive-base)
12971 ("r-assertive-properties" ,r-assertive-properties)
12972 ("r-assertive-types" ,r-assertive-types)))
12973 (home-page "https://bitbucket.org/richierocks/assertive.code")
12974 (synopsis "Assertions to check properties of code")
12975 (description
12976 "This package provides a set of predicates and assertions for checking
12977 the properties of code. This is mainly for use by other package developers
12978 who want to include run-time testing features in their own packages.")
12979 (license license:gpl3+)))
12980
12981 (define-public r-assertive-datetimes
12982 (package
12983 (name "r-assertive-datetimes")
12984 (version "0.0-3")
12985 (source
12986 (origin
12987 (method url-fetch)
12988 (uri (cran-uri "assertive.datetimes" version))
12989 (sha256
12990 (base32
12991 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
12992 (properties
12993 `((upstream-name . "assertive.datetimes")))
12994 (build-system r-build-system)
12995 (propagated-inputs
12996 `(("r-assertive-base" ,r-assertive-base)
12997 ("r-assertive-types" ,r-assertive-types)))
12998 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
12999 (synopsis "Assertions to check properties of dates and times")
13000 (description
13001 "This package provides a set of predicates and assertions for checking
13002 the properties of dates and times. This is mainly for use by other package
13003 developers who want to include run-time testing features in their own
13004 packages.")
13005 (license license:gpl3+)))
13006
13007 (define-public r-assertive-strings
13008 (package
13009 (name "r-assertive-strings")
13010 (version "0.0-3")
13011 (source
13012 (origin
13013 (method url-fetch)
13014 (uri (cran-uri "assertive.strings" version))
13015 (sha256
13016 (base32
13017 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
13018 (properties
13019 `((upstream-name . "assertive.strings")))
13020 (build-system r-build-system)
13021 (propagated-inputs
13022 `(("r-assertive-base" ,r-assertive-base)
13023 ("r-assertive-types" ,r-assertive-types)
13024 ("r-stringi" ,r-stringi)))
13025 (home-page "https://bitbucket.org/richierocks/assertive.strings")
13026 (synopsis "Assertions to check properties of strings")
13027 (description
13028 "This package provides a set of predicates and assertions for checking
13029 the properties of strings. This is mainly for use by other package developers
13030 who want to include run-time testing features in their own packages.")
13031 (license license:gpl3+)))
13032
13033 (define-public r-assertive-data-us
13034 (package
13035 (name "r-assertive-data-us")
13036 (version "0.0-2")
13037 (source
13038 (origin
13039 (method url-fetch)
13040 (uri (cran-uri "assertive.data.us" version))
13041 (sha256
13042 (base32
13043 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
13044 (properties
13045 `((upstream-name . "assertive.data.us")))
13046 (build-system r-build-system)
13047 (propagated-inputs
13048 `(("r-assertive-base" ,r-assertive-base)
13049 ("r-assertive-strings" ,r-assertive-strings)))
13050 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
13051 (synopsis "Assertions to check properties of strings")
13052 (description
13053 "This package provides a set of predicates and assertions for checking
13054 the properties of US-specific complex data types. This is mainly for use by
13055 other package developers who want to include run-time testing features in
13056 their own packages.")
13057 (license license:gpl3+)))
13058
13059 (define-public r-assertive-data-uk
13060 (package
13061 (name "r-assertive-data-uk")
13062 (version "0.0-2")
13063 (source
13064 (origin
13065 (method url-fetch)
13066 (uri (cran-uri "assertive.data.uk" version))
13067 (sha256
13068 (base32
13069 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
13070 (properties
13071 `((upstream-name . "assertive.data.uk")))
13072 (build-system r-build-system)
13073 (propagated-inputs
13074 `(("r-assertive-base" ,r-assertive-base)
13075 ("r-assertive-strings" ,r-assertive-strings)))
13076 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
13077 (synopsis "Assertions to check properties of strings")
13078 (description
13079 "This package provides a set of predicates and assertions for checking
13080 the properties of UK-specific complex data types. This is mainly for use by
13081 other package developers who want to include run-time testing features in
13082 their own packages.")
13083 (license license:gpl3+)))
13084
13085 (define-public r-assertive-data
13086 (package
13087 (name "r-assertive-data")
13088 (version "0.0-3")
13089 (source
13090 (origin
13091 (method url-fetch)
13092 (uri (cran-uri "assertive.data" version))
13093 (sha256
13094 (base32
13095 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
13096 (properties
13097 `((upstream-name . "assertive.data")))
13098 (build-system r-build-system)
13099 (propagated-inputs
13100 `(("r-assertive-base" ,r-assertive-base)
13101 ("r-assertive-strings" ,r-assertive-strings)))
13102 (home-page "https://bitbucket.org/richierocks/assertive.data")
13103 (synopsis "Assertions to check properties of data")
13104 (description
13105 "This package provides a set of predicates and assertions for checking
13106 the properties of (country independent) complex data types. This is mainly
13107 for use by other package developers who want to include run-time testing
13108 features in their own packages.")
13109 (license license:gpl3+)))
13110
13111 (define-public r-assertive
13112 (package
13113 (name "r-assertive")
13114 (version "0.3-6")
13115 (source
13116 (origin
13117 (method url-fetch)
13118 (uri (cran-uri "assertive" version))
13119 (sha256
13120 (base32
13121 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
13122 (build-system r-build-system)
13123 (propagated-inputs
13124 `(("r-assertive-base" ,r-assertive-base)
13125 ("r-assertive-code" ,r-assertive-code)
13126 ("r-assertive-data" ,r-assertive-data)
13127 ("r-assertive-data-uk" ,r-assertive-data-uk)
13128 ("r-assertive-data-us" ,r-assertive-data-us)
13129 ("r-assertive-datetimes" ,r-assertive-datetimes)
13130 ("r-assertive-files" ,r-assertive-files)
13131 ("r-assertive-matrices" ,r-assertive-matrices)
13132 ("r-assertive-models" ,r-assertive-models)
13133 ("r-assertive-numbers" ,r-assertive-numbers)
13134 ("r-assertive-properties" ,r-assertive-properties)
13135 ("r-assertive-reflection" ,r-assertive-reflection)
13136 ("r-assertive-sets" ,r-assertive-sets)
13137 ("r-assertive-strings" ,r-assertive-strings)
13138 ("r-assertive-types" ,r-assertive-types)
13139 ("r-knitr" ,r-knitr)))
13140 (native-inputs
13141 `(("r-knitr" ,r-knitr)))
13142 (home-page "https://bitbucket.org/richierocks/assertive")
13143 (synopsis "Readable check functions to ensure code integrity")
13144 (description
13145 "This package provides lots of predicates (@code{is_*} functions) to
13146 check the state of your variables, and assertions (@code{assert_*} functions)
13147 to throw errors if they aren't in the right form.")
13148 (license license:gpl3+)))
13149
13150 (define-public r-dotcall64
13151 (package
13152 (name "r-dotcall64")
13153 (version "1.0-1")
13154 (source
13155 (origin
13156 (method url-fetch)
13157 (uri (cran-uri "dotCall64" version))
13158 (sha256
13159 (base32
13160 "1im5k8jbviwj2i42mq1kmjskh80isa7jr9w8i0fknidrzzy2h2zi"))))
13161 (properties `((upstream-name . "dotCall64")))
13162 (build-system r-build-system)
13163 (native-inputs `(("gfortran" ,gfortran)))
13164 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
13165 (synopsis "Enhanced foreign function interface supporting long vectors")
13166 (description
13167 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
13168 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
13169 supports long vectors, arguments of type 64-bit integer, and provides a
13170 mechanism to avoid unnecessary copies of read-only and write-only arguments.
13171 This makes it a convenient and fast interface to C/C++ and Fortran code.")
13172 (license license:gpl2+)))
13173
13174 (define-public r-spam
13175 (package
13176 (name "r-spam")
13177 (version "2.6-0")
13178 (source
13179 (origin
13180 (method url-fetch)
13181 (uri (cran-uri "spam" version))
13182 (sha256
13183 (base32 "0p5ycvpry955ldrgbbq3syy91wx9425mddpn8r5m9xwlirjxv3v3"))))
13184 (build-system r-build-system)
13185 (propagated-inputs
13186 `(("r-dotcall64" ,r-dotcall64)))
13187 (native-inputs
13188 `(("gfortran" ,gfortran)
13189 ("r-knitr" ,r-knitr)))
13190 (home-page "https://www.math.uzh.ch/pages/spam/")
13191 (synopsis "Sparse matrix algebra")
13192 (description
13193 "This package provides a set of functions for sparse matrix algebra.
13194 Differences with other sparse matrix packages are:
13195
13196 @enumerate
13197 @item it only supports (essentially) one sparse matrix format;
13198 @item it is based on transparent and simple structure(s);
13199 @item it is tailored for MCMC calculations within G(M)RF;
13200 @item and it is fast and scalable (with the extension package @code{spam64}).
13201 @end enumerate\n")
13202 ;; Either of these licenses
13203 (license (list license:bsd-3 license:lgpl2.0))))
13204
13205 (define-public r-fields
13206 (package
13207 (name "r-fields")
13208 (version "11.6")
13209 (source
13210 (origin
13211 (method url-fetch)
13212 (uri (cran-uri "fields" version))
13213 (sha256
13214 (base32 "1nsrgkw9w3mwd3sajyzc06h49gg1s0bkq6xh5b66h1n4jbcx2046"))))
13215 (build-system r-build-system)
13216 (propagated-inputs
13217 `(("r-maps" ,r-maps)
13218 ("r-spam" ,r-spam)))
13219 (native-inputs
13220 `(("gfortran" ,gfortran)))
13221 (home-page "https://www.image.ucar.edu/fields")
13222 (synopsis "Tools for spatial data")
13223 (description
13224 "This is a package for curve, surface and function fitting with an
13225 emphasis on splines, spatial data and spatial statistics. The major methods
13226 include cubic, and thin plate splines, Kriging, and compactly supported
13227 covariance functions for large data sets.")
13228 (license license:gpl2+)))
13229
13230 (define-public r-spatialextremes
13231 (package
13232 (name "r-spatialextremes")
13233 (version "2.0-9")
13234 (source
13235 (origin
13236 (method url-fetch)
13237 (uri (cran-uri "SpatialExtremes" version))
13238 (sha256
13239 (base32
13240 "1mhn1c8n3bmgf0fjyac3wji4790zswzkqliqcv3n8kv9806crb0y"))))
13241 (properties
13242 `((upstream-name . "SpatialExtremes")))
13243 (build-system r-build-system)
13244 (propagated-inputs
13245 `(("r-fields" ,r-fields)
13246 ("r-maps" ,r-maps)))
13247 (home-page "http://spatialextremes.r-forge.r-project.org/")
13248 (synopsis "Modelling spatial extremes")
13249 (description
13250 "This package provides tools for the statistical modelling of spatial
13251 extremes using max-stable processes, copula or Bayesian hierarchical models.
13252 More precisely, this package allows (conditional) simulations from various
13253 parametric max-stable models, analysis of the extremal spatial dependence, the
13254 fitting of such processes using composite likelihoods or least square (simple
13255 max-stable processes only), model checking and selection and prediction.")
13256 (license license:gpl2+)))
13257
13258 (define-public r-drc
13259 (package
13260 (name "r-drc")
13261 (version "3.0-1")
13262 (source
13263 (origin
13264 (method url-fetch)
13265 (uri (cran-uri "drc" version))
13266 (sha256
13267 (base32
13268 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
13269 (build-system r-build-system)
13270 (propagated-inputs
13271 `(("r-car" ,r-car)
13272 ("r-gtools" ,r-gtools)
13273 ("r-mass" ,r-mass)
13274 ("r-multcomp" ,r-multcomp)
13275 ("r-plotrix" ,r-plotrix)
13276 ("r-scales" ,r-scales)))
13277 (home-page "https://cran.r-project.org/web/packages/drc")
13278 (synopsis "Analysis of dose-response curves")
13279 (description
13280 "This package provides a suite of flexible and versatile model fitting
13281 and after-fitting functions for the analysis of dose-response data.")
13282 (license license:gpl2+)))
13283
13284 (define-public r-rmeta
13285 (package
13286 (name "r-rmeta")
13287 (version "3.0")
13288 (source
13289 (origin
13290 (method url-fetch)
13291 (uri (cran-uri "rmeta" version))
13292 (sha256
13293 (base32
13294 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
13295 (build-system r-build-system)
13296 (home-page "https://cran.r-project.org/web/packages/rmeta")
13297 (synopsis "Tools for meta-analysis")
13298 (description
13299 "This package provides functions for simple fixed and random effects
13300 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
13301 draws standard summary plots, funnel plots, and computes summaries and tests
13302 for association and heterogeneity.")
13303 (license license:gpl2)))
13304
13305 (define-public r-bootstrap
13306 (package
13307 (name "r-bootstrap")
13308 (version "2019.6")
13309 (source
13310 (origin
13311 (method url-fetch)
13312 (uri (cran-uri "bootstrap" version))
13313 (sha256
13314 (base32
13315 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
13316 (build-system r-build-system)
13317 (native-inputs `(("gfortran" ,gfortran)))
13318 (home-page "https://cran.r-project.org/web/packages/bootstrap")
13319 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
13320 (description
13321 "This package provides software and data for the book \"An Introduction
13322 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
13323 This package is primarily provided for projects already based on it, and for
13324 support of the book. New projects should preferentially use the recommended
13325 package \"boot\".")
13326 (license license:bsd-3)))
13327
13328 (define-public r-survivalroc
13329 (package
13330 (name "r-survivalroc")
13331 (version "1.0.3")
13332 (source
13333 (origin
13334 (method url-fetch)
13335 (uri (cran-uri "survivalROC" version))
13336 (sha256
13337 (base32
13338 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
13339 (properties `((upstream-name . "survivalROC")))
13340 (build-system r-build-system)
13341 (home-page "https://cran.r-project.org/web/packages/survivalROC")
13342 (synopsis "Time-dependent ROC curve estimation from censored survival data")
13343 (description
13344 "Compute time-dependent ROC curve from censored survival data using
13345 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
13346 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
13347 (license license:gpl2+)))
13348
13349 (define-public r-longitudinal
13350 (package
13351 (name "r-longitudinal")
13352 (version "1.1.12")
13353 (source
13354 (origin
13355 (method url-fetch)
13356 (uri (cran-uri "longitudinal" version))
13357 (sha256
13358 (base32
13359 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
13360 (build-system r-build-system)
13361 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
13362 (home-page "http://strimmerlab.org/software/longitudinal/")
13363 (synopsis "Analysis of multiple time course data")
13364 (description
13365 "This package contains general data structures and functions for
13366 longitudinal data with multiple variables, repeated measurements, and
13367 irregularly spaced time points. It also implements a shrinkage estimator of
13368 dynamical correlation and dynamical covariance.")
13369 (license license:gpl3+)))
13370
13371 (define-public r-genenet
13372 (package
13373 (name "r-genenet")
13374 (version "1.2.15")
13375 (source
13376 (origin
13377 (method url-fetch)
13378 (uri (cran-uri "GeneNet" version))
13379 (sha256
13380 (base32
13381 "11ba6ahsk3x9alvcw8bai2bpg84ki1m8nadrjjdhjg65svhw8njm"))))
13382 (properties `((upstream-name . "GeneNet")))
13383 (build-system r-build-system)
13384 (propagated-inputs
13385 `(("r-corpcor" ,r-corpcor)
13386 ("r-fdrtool" ,r-fdrtool)
13387 ("r-longitudinal" ,r-longitudinal)))
13388 (home-page "http://strimmerlab.org/software/genenet/")
13389 (synopsis "Modeling and inferring gene networks")
13390 (description
13391 "This package analyzes gene expression (time series) data with focus on
13392 the inference of gene networks. In particular, GeneNet implements the methods
13393 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
13394 for learning large-scale gene association networks (including assignment of
13395 putative directions).")
13396 (license license:gpl3+)))
13397
13398 (define-public r-rbamtools
13399 (package
13400 (name "r-rbamtools")
13401 (version "2.16.17")
13402 (source
13403 (origin
13404 (method url-fetch)
13405 (uri (cran-uri "rbamtools" version))
13406 (sha256
13407 (base32
13408 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
13409 (build-system r-build-system)
13410 (inputs `(("zlib" ,zlib)))
13411 (propagated-inputs
13412 `(("r-refgenome" ,r-refgenome)))
13413 (home-page "https://cran.r-project.org/web/packages/rbamtools")
13414 (synopsis "Read and write BAM (binary alignment) files")
13415 (description
13416 "This package provides an R interface to functions of the SAMtools
13417 library.")
13418 (license license:artistic2.0)))
13419
13420 (define-public r-protviz
13421 (package
13422 (name "r-protviz")
13423 (version "0.6.8")
13424 (source
13425 (origin
13426 (method url-fetch)
13427 (uri (cran-uri "protViz" version))
13428 (sha256
13429 (base32
13430 "0rn8fjg7791a4j2k1kk1jwx40xz20bfaavvflmhyzpl398vmmy3a"))))
13431 (properties `((upstream-name . "protViz")))
13432 (build-system r-build-system)
13433 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
13434 (home-page "https://github.com/protViz/protViz/")
13435 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
13436 (description
13437 "This package helps with quality checks, visualizations and analysis of
13438 mass spectrometry data, coming from proteomics experiments. The package is
13439 developed, tested and used at the Functional Genomics Center Zurich, where it
13440 is used mainly for prototyping, teaching, and having fun with proteomics data.
13441 But it can also be used to do data analysis for small scale data sets.")
13442 (license license:gpl3)))
13443
13444 (define-public r-cmprsk
13445 (package
13446 (name "r-cmprsk")
13447 (version "2.2-10")
13448 (source
13449 (origin
13450 (method url-fetch)
13451 (uri (cran-uri "cmprsk" version))
13452 (sha256
13453 (base32 "1xnx2zanw548prxsw2zw5cddkkg6kj97jgyzw67achq5mnsvfbg8"))))
13454 (build-system r-build-system)
13455 (propagated-inputs
13456 `(("r-survival" ,r-survival)))
13457 (native-inputs
13458 `(("gfortran" ,gfortran)))
13459 (home-page "https://cran.r-project.org/web/packages/cmprsk")
13460 (synopsis "Subdistribution analysis of competing risks")
13461 (description
13462 "This package provides tool for estimation, testing and regression
13463 modeling of subdistribution functions in competing risks, as described in
13464 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
13465 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
13466 A proportional hazards model for the subdistribution of a competing risk,
13467 JASA, 94:496-509.")
13468 (license license:gpl2+)))
13469
13470 (define-public r-etm
13471 (package
13472 (name "r-etm")
13473 (version "1.1.1")
13474 (source
13475 (origin
13476 (method url-fetch)
13477 (uri (cran-uri "etm" version))
13478 (sha256
13479 (base32
13480 "1hvrplmdpjjpjji663rw0vjbbrzj2nvr04d1nkc8bf46p4ixyxgy"))))
13481 (build-system r-build-system)
13482 (propagated-inputs
13483 `(("r-data-table" ,r-data-table)
13484 ("r-lattice" ,r-lattice)
13485 ("r-rcpp" ,r-rcpp)
13486 ("r-rcpparmadillo" ,r-rcpparmadillo)
13487 ("r-survival" ,r-survival)))
13488 (home-page "https://cran.r-project.org/web/packages/etm")
13489 (synopsis "Empirical transition matrix")
13490 (description
13491 "The @dfn{empirical transition matrix} (etm) package estimates
13492 the matrix of transition probabilities for any time-inhomogeneous multistate
13493 model with finite state space using the Aalen-Johansen estimator.")
13494 (license license:expat)))
13495
13496 (define-public r-epi
13497 (package
13498 (name "r-epi")
13499 (version "2.44")
13500 (source
13501 (origin
13502 (method url-fetch)
13503 (uri (cran-uri "Epi" version))
13504 (sha256
13505 (base32
13506 "1wcxr1f7irgfdwzz4vf67114yhxrhxxxnhy4hfaww0zy91vzxx10"))))
13507 (properties `((upstream-name . "Epi")))
13508 (build-system r-build-system)
13509 (propagated-inputs
13510 `(("r-cmprsk" ,r-cmprsk)
13511 ("r-data-table" ,r-data-table)
13512 ("r-dplyr" ,r-dplyr)
13513 ("r-etm" ,r-etm)
13514 ("r-mass" ,r-mass)
13515 ("r-matrix" ,r-matrix)
13516 ("r-mgcv" ,r-mgcv)
13517 ("r-numderiv" ,r-numderiv)
13518 ("r-plyr" ,r-plyr)
13519 ("r-purrr" ,r-purrr)
13520 ("r-survival" ,r-survival)
13521 ("r-zoo" ,r-zoo)))
13522 (home-page "https://BendixCarstensen.com/Epi/")
13523 (synopsis "Statistical analysis in epidemiology")
13524 (description
13525 "This package provides functions for demographic and epidemiological
13526 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
13527 particular representation, manipulation and simulation of multistate data -
13528 the Lexis suite of functions, which includes interfaces to the @code{mstate},
13529 @code{etm} and @code{cmprsk} packages. It also contains functions for
13530 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
13531 data and some useful functions for tabulation and plotting, as well as a
13532 number of epidemiological data sets.")
13533 (license license:gpl2)))
13534
13535 (define-public r-ppls
13536 (package
13537 (name "r-ppls")
13538 (version "1.6-1.1")
13539 (source
13540 (origin
13541 (method url-fetch)
13542 (uri (cran-uri "ppls" version))
13543 (sha256
13544 (base32
13545 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
13546 (build-system r-build-system)
13547 (propagated-inputs `(("r-mass" ,r-mass)))
13548 (home-page "https://cran.r-project.org/web/packages/ppls")
13549 (synopsis "Penalized partial least squares")
13550 (description
13551 "This package contains linear and nonlinear regression methods based on
13552 partial least squares and penalization techniques. Model parameters are
13553 selected via cross-validation, and confidence intervals ans tests for the
13554 regression coefficients can be conducted via jackknifing.")
13555 (license license:gpl2+)))
13556
13557 (define-public r-huge
13558 (package
13559 (name "r-huge")
13560 (version "1.3.4.1")
13561 (source
13562 (origin
13563 (method url-fetch)
13564 (uri (cran-uri "huge" version))
13565 (sha256
13566 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
13567 (build-system r-build-system)
13568 (propagated-inputs
13569 `(("r-igraph" ,r-igraph)
13570 ("r-mass" ,r-mass)
13571 ("r-matrix" ,r-matrix)
13572 ("r-rcpp" ,r-rcpp)
13573 ("r-rcppeigen" ,r-rcppeigen)))
13574 (home-page "https://cran.r-project.org/web/packages/huge")
13575 (synopsis "High-dimensional undirected graph estimation")
13576 (description
13577 "This package provides a general framework for high-dimensional
13578 undirected graph estimation. It integrates data preprocessing, neighborhood
13579 screening, graph estimation, and model selection techniques into a pipeline.")
13580 (license license:gpl2)))
13581
13582 (define-public r-parcor
13583 (package
13584 (name "r-parcor")
13585 (version "0.2-6")
13586 (source
13587 (origin
13588 (method url-fetch)
13589 (uri (cran-uri "parcor" version))
13590 (sha256
13591 (base32
13592 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
13593 (build-system r-build-system)
13594 (propagated-inputs
13595 `(("r-epi" ,r-epi)
13596 ("r-genenet" ,r-genenet)
13597 ("r-glmnet" ,r-glmnet)
13598 ("r-mass" ,r-mass)
13599 ("r-ppls" ,r-ppls)))
13600 (home-page "https://cran.r-project.org/web/packages/parcor")
13601 (synopsis "Regularized estimation of partial correlation matrices")
13602 (description
13603 "This package estimates the matrix of partial correlations based on
13604 different regularized regression methods: lasso, adaptive lasso, PLS, and
13605 Ridge Regression. In addition, the package provides model selection for
13606 lasso, adaptive lasso and Ridge regression based on cross-validation.")
13607 (license license:gpl2+)))
13608
13609 (define-public r-mcmc
13610 (package
13611 (name "r-mcmc")
13612 (version "0.9-7")
13613 (source
13614 (origin
13615 (method url-fetch)
13616 (uri (cran-uri "mcmc" version))
13617 (sha256
13618 (base32
13619 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
13620 (build-system r-build-system)
13621 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
13622 (synopsis "Markov chain Monte Carlo")
13623 (description
13624 "This package simulates continuous distributions of random vectors using
13625 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
13626 function that evaluates the log unnormalized density. Algorithms are random
13627 walk Metropolis algorithm (function @code{metrop}), simulated
13628 tempering (function @code{temper}), and morphometric random walk
13629 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
13630 by change of variable.")
13631 (license license:expat)))
13632
13633 (define-public r-listenv
13634 (package
13635 (name "r-listenv")
13636 (version "0.8.0")
13637 (source
13638 (origin
13639 (method url-fetch)
13640 (uri (cran-uri "listenv" version))
13641 (sha256
13642 (base32
13643 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
13644 (build-system r-build-system)
13645 (native-inputs
13646 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13647 (home-page "https://github.com/HenrikBengtsson/listenv")
13648 (synopsis "Environments behaving (almost) as lists")
13649 (description
13650 "This package implements list environments. List environments are
13651 environments that have list-like properties. For instance, the elements of a
13652 list environment are ordered and can be accessed and iterated over using index
13653 subsetting.")
13654 (license license:lgpl2.1+)))
13655
13656 (define-public r-globals
13657 (package
13658 (name "r-globals")
13659 (version "0.14.0")
13660 (source
13661 (origin
13662 (method url-fetch)
13663 (uri (cran-uri "globals" version))
13664 (sha256
13665 (base32
13666 "1wrjiiif6rpc268zz79pvpw33si6n6ffgxdnxmmcracwhb5vqg90"))))
13667 (build-system r-build-system)
13668 (propagated-inputs
13669 `(("r-codetools" ,r-codetools)))
13670 (home-page "https://github.com/HenrikBengtsson/globals")
13671 (synopsis "Identify global objects in R expressions")
13672 (description
13673 "This package provides tools to identify global (\"unknown\" or \"free\")
13674 objects in R expressions by code inspection using various strategies, e.g.
13675 conservative or liberal. The objective of this package is to make it as
13676 simple as possible to identify global objects for the purpose of exporting
13677 them in distributed compute environments.")
13678 (license license:lgpl2.1+)))
13679
13680 (define-public r-parallelly
13681 (package
13682 (name "r-parallelly")
13683 (version "1.24.0")
13684 (source
13685 (origin
13686 (method url-fetch)
13687 (uri (cran-uri "parallelly" version))
13688 (sha256
13689 (base32
13690 "1x04pxcyyzmg1rl9mcd7mmxglzmxgy40fmbwpy7vf5y7z15rzrp6"))))
13691 (properties `((upstream-name . "parallelly")))
13692 (build-system r-build-system)
13693 (home-page "https://github.com/HenrikBengtsson/parallelly")
13694 (synopsis "Enhancements of the parallel package")
13695 (description
13696 "This package provides utility functions that enhance the @code{parallel}
13697 package and support the built-in parallel backends of the @code{future}
13698 package. For example, @code{availableCores} gives the number of CPU cores
13699 available to your R process as given by R options and environment variables,
13700 including those set by job schedulers on high-performance compute clusters.
13701 If none is set, it will fall back to @code{parallel::detectCores}. Another
13702 example is @code{makeClusterPSOCK}, which is backward compatible with
13703 @code{parallel::makePSOCKcluster} while doing a better job in setting up
13704 remote cluster workers without the need for configuring the firewall to do
13705 port-forwarding to your local computer.")
13706 (license license:lgpl2.1+)))
13707
13708 (define-public r-future
13709 (package
13710 (name "r-future")
13711 (version "1.21.0")
13712 (source
13713 (origin
13714 (method url-fetch)
13715 (uri (cran-uri "future" version))
13716 (sha256
13717 (base32
13718 "0bfiy17n5rghxw0702k0vgpjkk13268lniifdlx59flf0q16d7lh"))))
13719 (build-system r-build-system)
13720 (propagated-inputs
13721 `(("r-digest" ,r-digest)
13722 ("r-globals" ,r-globals)
13723 ("r-listenv" ,r-listenv)
13724 ("r-parallelly" ,r-parallelly)))
13725 (native-inputs
13726 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13727 (home-page "https://github.com/HenrikBengtsson/future")
13728 (synopsis "Unified parallel and distributed processing in R")
13729 (description
13730 "The purpose of this package is to provide a lightweight and unified
13731 Future API for sequential and parallel processing of R expression via futures.
13732 This package implements sequential, multicore, multisession, and cluster
13733 futures. With these, R expressions can be evaluated on the local machine, in
13734 parallel a set of local machines, or distributed on a mix of local and remote
13735 machines. Extensions to this package implement additional backends for
13736 processing futures via compute cluster schedulers etc. Because of its unified
13737 API, there is no need to modify any code in order to switch from sequential on
13738 the local machine to, say, distributed processing on a remote compute cluster.")
13739 (license license:lgpl2.1+)))
13740
13741 (define-public r-future-apply
13742 (package
13743 (name "r-future-apply")
13744 (version "1.7.0")
13745 (source
13746 (origin
13747 (method url-fetch)
13748 (uri (cran-uri "future.apply" version))
13749 (sha256
13750 (base32
13751 "1ns5cf80vyabvyz9qp6kpvkg4jycinn7x6v7x6692fgjapdnmyig"))))
13752 (properties `((upstream-name . "future.apply")))
13753 (build-system r-build-system)
13754 (propagated-inputs
13755 `(("r-future" ,r-future)
13756 ("r-globals" ,r-globals)))
13757 (native-inputs
13758 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
13759 (home-page "https://github.com/HenrikBengtsson/future.apply")
13760 (synopsis "Apply function to elements in parallel using futures")
13761 (description
13762 "This package provides implementations of @code{apply()},
13763 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
13764 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
13765 can be resolved using any future-supported backend, e.g. parallel on the local
13766 machine or distributed on a compute cluster.")
13767 (license license:gpl2+)))
13768
13769 (define-public r-rsvd
13770 (package
13771 (name "r-rsvd")
13772 (version "1.0.3")
13773 (source
13774 (origin
13775 (method url-fetch)
13776 (uri (cran-uri "rsvd" version))
13777 (sha256
13778 (base32
13779 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
13780 (build-system r-build-system)
13781 (propagated-inputs
13782 `(("r-matrix" ,r-matrix)))
13783 (home-page "https://github.com/erichson/rSVD")
13784 (synopsis "Randomized singular value decomposition")
13785 (description
13786 "Low-rank matrix decompositions are fundamental tools and widely used for
13787 data analysis, dimension reduction, and data compression. Classically, highly
13788 accurate deterministic matrix algorithms are used for this task. However, the
13789 emergence of large-scale data has severely challenged our computational
13790 ability to analyze big data. The concept of randomness has been demonstrated
13791 as an effective strategy to quickly produce approximate answers to familiar
13792 problems such as the @dfn{singular value decomposition} (SVD). This package
13793 provides several randomized matrix algorithms such as the randomized singular
13794 value decomposition (@code{rsvd}), randomized principal component
13795 analysis (@code{rpca}), randomized robust principal component
13796 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
13797 and the randomized CUR decomposition (@code{rcur}). In addition several plot
13798 functions are provided.")
13799 (license license:gpl3+)))
13800
13801 (define-public r-sloop
13802 (package
13803 (name "r-sloop")
13804 (version "1.0.1")
13805 (source
13806 (origin
13807 (method url-fetch)
13808 (uri (cran-uri "sloop" version))
13809 (sha256
13810 (base32
13811 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
13812 (build-system r-build-system)
13813 (propagated-inputs
13814 `(("r-codetools" ,r-codetools)
13815 ("r-crayon" ,r-crayon)
13816 ("r-purrr" ,r-purrr)
13817 ("r-rlang" ,r-rlang)
13818 ("r-tibble" ,r-tibble)))
13819 (home-page "https://github.com/r-lib/sloop")
13820 (synopsis "Helpers for object-oriented programming in R")
13821 (description
13822 "This package provides a collection of helper functions designed to
13823 help you to better understand object oriented programming in R, particularly
13824 using @code{S3}.")
13825 (license license:gpl3)))
13826
13827 (define-public r-capushe
13828 (package
13829 (name "r-capushe")
13830 (version "1.1.1")
13831 (source
13832 (origin
13833 (method url-fetch)
13834 (uri (cran-uri "capushe" version))
13835 (sha256
13836 (base32
13837 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
13838 (build-system r-build-system)
13839 (propagated-inputs `(("r-mass" ,r-mass)))
13840 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
13841 (synopsis "Calibrating penalties using slope heuristics")
13842 (description
13843 "This package provides tools for the calibration of penalized criteria
13844 for model selection. The calibration methods available are based on the slope
13845 heuristics.")
13846 (license license:gpl2+)))
13847
13848 (define-public r-dorng
13849 (package
13850 (name "r-dorng")
13851 (version "1.8.2")
13852 (source
13853 (origin
13854 (method url-fetch)
13855 (uri (cran-uri "doRNG" version))
13856 (sha256
13857 (base32
13858 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
13859 (properties `((upstream-name . "doRNG")))
13860 (build-system r-build-system)
13861 (propagated-inputs
13862 `(("r-foreach" ,r-foreach)
13863 ("r-iterators" ,r-iterators)
13864 ("r-rngtools" ,r-rngtools)))
13865 (home-page "https://renozao.github.io/doRNG/")
13866 (synopsis "Generic reproducible parallel backend for foreach loops")
13867 (description
13868 "This package provides functions to perform reproducible parallel
13869 @code{foreach} loops, using independent random streams as generated by
13870 L'Ecuyer's combined multiple-recursive generator. It enables to easily
13871 convert standard @code{%dopar%} loops into fully reproducible loops,
13872 independently of the number of workers, the task scheduling strategy, or the
13873 chosen parallel environment and associated foreach backend.")
13874 (license license:gpl2+)))
13875
13876 (define-public r-blockmodeling
13877 (package
13878 (name "r-blockmodeling")
13879 (version "1.0.0")
13880 (source
13881 (origin
13882 (method url-fetch)
13883 (uri (cran-uri "blockmodeling" version))
13884 (sha256
13885 (base32
13886 "1z4w2kq0id0gb5d0lqcdaw3clplhzywarkpvvx3drivdypzl237i"))))
13887 (build-system r-build-system)
13888 (propagated-inputs
13889 `(("r-matrix" ,r-matrix)))
13890 (native-inputs `(("gfortran" ,gfortran)))
13891 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
13892 (synopsis "Generalized and classical blockmodeling of valued networks")
13893 (description
13894 "This package is primarily meant as an implementation of generalized
13895 blockmodeling for valued networks. In addition, measures of similarity or
13896 dissimilarity based on structural equivalence and regular equivalence (REGE
13897 algorithms) can be computed and partitioned matrices can be plotted.")
13898 (license license:gpl2+)))
13899
13900 (define-public r-upsetr
13901 (package
13902 (name "r-upsetr")
13903 (version "1.4.0")
13904 (source
13905 (origin
13906 (method url-fetch)
13907 (uri (cran-uri "UpSetR" version))
13908 (sha256
13909 (base32
13910 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
13911 (properties `((upstream-name . "UpSetR")))
13912 (build-system r-build-system)
13913 (propagated-inputs
13914 `(("r-ggplot2" ,r-ggplot2)
13915 ("r-gridextra" ,r-gridextra)
13916 ("r-plyr" ,r-plyr)
13917 ("r-scales" ,r-scales)))
13918 (home-page "https://github.com/hms-dbmi/UpSetR")
13919 (synopsis "Visualize intersecting sets")
13920 (description
13921 "This package provides a more scalable alternative to Venn and Euler
13922 diagrams for visualizing intersecting sets. Create visualizations of
13923 intersecting sets using a novel matrix design, along with visualizations of
13924 several common set, element and attribute related tasks.")
13925 (license license:expat)))
13926
13927 ;; This package includes a JavaScript file, which is not minified. When
13928 ;; upgrading please check that there are no new minified JavaScript files.
13929 (define-public r-shinybs
13930 (package
13931 (name "r-shinybs")
13932 (version "0.61")
13933 (source
13934 (origin
13935 (method url-fetch)
13936 (uri (cran-uri "shinyBS" version))
13937 (sha256
13938 (base32
13939 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
13940 (properties `((upstream-name . "shinyBS")))
13941 (build-system r-build-system)
13942 ;; The tests spawn Shiny browser apps. They cannot be run
13943 ;; non-interactively.
13944 (arguments '(#:tests? #f))
13945 (propagated-inputs
13946 `(("r-htmltools" ,r-htmltools)
13947 ("r-shiny" ,r-shiny)))
13948 (home-page "https://ebailey78.github.io/shinyBS/")
13949 (synopsis "Twitter Bootstrap components for Shiny")
13950 (description
13951 "This package adds additional Twitter Bootstrap components to Shiny.")
13952 (license license:gpl3)))
13953
13954 (define-public r-shinyjqui
13955 (package
13956 (name "r-shinyjqui")
13957 (version "0.4.0")
13958 (source
13959 (origin
13960 (method url-fetch)
13961 (uri (cran-uri "shinyjqui" version))
13962 (sha256
13963 (base32
13964 "0ins0pmfis34jr0rimsp1k1aw856r3xjdnsvv8lkwqhvp58nzqah"))
13965 (snippet
13966 '(begin
13967 (delete-file "inst/www/shinyjqui.min.js")))))
13968 (properties `((upstream-name . "shinyjqui")))
13969 (build-system r-build-system)
13970 (arguments
13971 `(#:phases
13972 (modify-phases %standard-phases
13973 (add-after 'unpack 'process-javascript
13974 (lambda* (#:key inputs #:allow-other-keys)
13975 (with-directory-excursion "inst/www/"
13976 (let ((source "shinyjqui.js")
13977 (target "shinyjqui.min.js"))
13978 (format #true "Processing ~a --> ~a~%"
13979 source target)
13980 (invoke "esbuild" source "--minify"
13981 (string-append "--outfile=" target)))))))))
13982 (propagated-inputs
13983 `(("r-htmltools" ,r-htmltools)
13984 ("r-htmlwidgets" ,r-htmlwidgets)
13985 ("r-jsonlite" ,r-jsonlite)
13986 ("r-shiny" ,r-shiny)))
13987 (native-inputs
13988 `(("r-knitr" ,r-knitr)
13989 ("esbuild" ,esbuild)))
13990 (home-page "https://github.com/yang-tang/shinyjqui")
13991 (synopsis "jQuery UI interactions and effects for Shiny")
13992 (description
13993 "This is an extension to Shiny that brings interactions and animation
13994 effects from the jQuery UI library.")
13995 (license license:expat)))
13996
13997 (define-public r-outliers
13998 (package
13999 (name "r-outliers")
14000 (version "0.14")
14001 (source
14002 (origin
14003 (method url-fetch)
14004 (uri (cran-uri "outliers" version))
14005 (sha256
14006 (base32
14007 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
14008 (build-system r-build-system)
14009 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
14010 (synopsis "Tests for outliers")
14011 (description
14012 "This package provides a collection of some tests commonly used for
14013 identifying outliers.")
14014 (license license:gpl2+)))
14015
14016 (define-public r-bayesm
14017 (package
14018 (name "r-bayesm")
14019 (version "3.1-4")
14020 (source
14021 (origin
14022 (method url-fetch)
14023 (uri (cran-uri "bayesm" version))
14024 (sha256
14025 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
14026 (build-system r-build-system)
14027 (propagated-inputs
14028 `(("r-rcpp" ,r-rcpp)
14029 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14030 (home-page "http://www.perossi.org/home/bsm-1")
14031 (synopsis "Bayesian inference for marketing/micro-econometrics")
14032 (description
14033 "This package covers many important models used in marketing and
14034 micro-econometrics applications, including Bayes Regression (univariate or
14035 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
14036 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
14037 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
14038 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
14039 Estimation with normal base, Hierarchical Linear Models with normal prior and
14040 covariates, Hierarchical Linear Models with a mixture of normals prior and
14041 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
14042 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
14043 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
14044 analysis of choice-based conjoint data, Bayesian treatment of linear
14045 instrumental variables models, Analysis of Multivariate Ordinal survey data
14046 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
14047 Coefficient Logit Models.")
14048 (license license:gpl2+)))
14049
14050 (define-public r-tensora
14051 (package
14052 (name "r-tensora")
14053 (version "0.36.2")
14054 (source
14055 (origin
14056 (method url-fetch)
14057 (uri (cran-uri "tensorA" version))
14058 (sha256
14059 (base32
14060 "19wwh654qlja4z1n7afjpzsrrm53p8ddysa2vra5mdnkddb4g2cf"))))
14061 (properties `((upstream-name . "tensorA")))
14062 (build-system r-build-system)
14063 (home-page "http://www.stat.boogaart.de/tensorA")
14064 (synopsis "Advanced tensor arithmetic with named indices")
14065 (description
14066 "This package provides convenience functions for advanced linear algebra
14067 with tensors and computation with datasets of tensors on a higher level
14068 abstraction. It includes Einstein and Riemann summing conventions, dragging,
14069 co- and contravariate indices, and parallel computations on sequences of
14070 tensors.")
14071 (license license:gpl2+)))
14072
14073 (define-public r-rarpack
14074 (package
14075 (name "r-rarpack")
14076 (version "0.11-0")
14077 (source
14078 (origin
14079 (method url-fetch)
14080 (uri (cran-uri "rARPACK" version))
14081 (sha256
14082 (base32
14083 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
14084 (properties `((upstream-name . "rARPACK")))
14085 (build-system r-build-system)
14086 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
14087 (home-page "https://github.com/yixuan/rARPACK")
14088 (synopsis "Solvers for large scale eigenvalue and SVD problems")
14089 (description
14090 "This package was previously an R wrapper of the ARPACK library, and now
14091 a shell of the R package RSpectra, an R interface to the Spectra library for
14092 solving large scale eigenvalue/vector problems. The current version of
14093 rARPACK simply imports and exports the functions provided by RSpectra. New
14094 users of rARPACK are advised to switch to the RSpectra package.")
14095 (license license:bsd-3)))
14096
14097 (define-public r-compositions
14098 (package
14099 (name "r-compositions")
14100 (version "2.0-1")
14101 (source
14102 (origin
14103 (method url-fetch)
14104 (uri (cran-uri "compositions" version))
14105 (sha256
14106 (base32
14107 "03qslsfx11gshls901zlhw47prd55mf16w4mkmd8x1dgiwq938l4"))))
14108 (build-system r-build-system)
14109 (propagated-inputs
14110 `(("r-bayesm" ,r-bayesm)
14111 ("r-mass" ,r-mass)
14112 ("r-robustbase" ,r-robustbase)
14113 ("r-tensora" ,r-tensora)))
14114 (native-inputs
14115 `(("r-knitr" ,r-knitr)))
14116 (home-page "http://www.stat.boogaart.de/compositions")
14117 (synopsis "Compositional data analysis")
14118 (description
14119 "This package provides functions for the consistent analysis of
14120 compositional data (e.g. portions of substances) and positive
14121 numbers (e.g. concentrations).")
14122 (license license:gpl2+)))
14123
14124 (define-public r-cobs
14125 (package
14126 (name "r-cobs")
14127 (version "1.3-4")
14128 (source
14129 (origin
14130 (method url-fetch)
14131 (uri (cran-uri "cobs" version))
14132 (sha256
14133 (base32
14134 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
14135 (build-system r-build-system)
14136 (propagated-inputs
14137 `(("r-quantreg" ,r-quantreg)
14138 ("r-sparsem" ,r-sparsem)))
14139 (home-page "https://cran.r-project.org/web/packages/cobs")
14140 (synopsis "Constrained B-Splines (sparse matrix based)")
14141 (description
14142 "This package provides qualitatively constrained (regression) smoothing
14143 splines via linear programming and sparse matrices.")
14144 (license license:gpl2+)))
14145
14146 (define-public r-drimpute
14147 (package
14148 (name "r-drimpute")
14149 (version "1.0")
14150 (source
14151 (origin
14152 (method url-fetch)
14153 (uri (cran-uri "DrImpute" version))
14154 (sha256
14155 (base32
14156 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
14157 (properties `((upstream-name . "DrImpute")))
14158 (build-system r-build-system)
14159 (propagated-inputs
14160 `(("r-rcpp" ,r-rcpp)
14161 ("r-rcpparmadillo" ,r-rcpparmadillo)))
14162 (home-page "https://github.com/ikwak2/DrImpute")
14163 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
14164 (description
14165 "This is an R package for imputing dropout events. Many statistical
14166 methods in cell type identification, visualization and lineage reconstruction
14167 do not account for dropout events. DrImpute can improve the performance of
14168 such software by imputing dropout events.")
14169 (license license:gpl3)))
14170
14171 (define-public r-gamlss-dist
14172 (package
14173 (name "r-gamlss-dist")
14174 (version "5.3-2")
14175 (source
14176 (origin
14177 (method url-fetch)
14178 (uri (cran-uri "gamlss.dist" version))
14179 (sha256
14180 (base32 "1lyf2rvkplywgyhcni93k52z3b89vv86yrgl38dx3ln3436r5ahc"))))
14181 (properties `((upstream-name . "gamlss.dist")))
14182 (build-system r-build-system)
14183 (propagated-inputs `(("r-mass" ,r-mass)))
14184 (home-page "http://www.gamlss.org/")
14185 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
14186 (description
14187 "This package provides a set of distributions which can be used for
14188 modelling the response variables in Generalized Additive Models for Location
14189 Scale and Shape. The distributions can be continuous, discrete or mixed
14190 distributions. Extra distributions can be created, by transforming, any
14191 continuous distribution defined on the real line, to a distribution defined on
14192 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
14193 transformation, respectively.")
14194 ;; Either version of the GPL.
14195 (license (list license:gpl2 license:gpl3))))
14196
14197 ;; This package includes JavaScript files, which are not minified. When
14198 ;; upgrading please check that there are no new minified JavaScript files.
14199 (define-public r-shinyjs
14200 (package
14201 (name "r-shinyjs")
14202 (version "2.0.0")
14203 (source
14204 (origin
14205 (method url-fetch)
14206 (uri (cran-uri "shinyjs" version))
14207 (sha256
14208 (base32
14209 "1zzq356dvd8ciajy6r5n4ybgx9xk7ydwv25j86xlcsqznkxdkkf2"))))
14210 (build-system r-build-system)
14211 (propagated-inputs
14212 `(("r-digest" ,r-digest)
14213 ("r-htmltools" ,r-htmltools)
14214 ("r-jsonlite" ,r-jsonlite)
14215 ("r-shiny" ,r-shiny)))
14216 (native-inputs
14217 `(("r-knitr" ,r-knitr)))
14218 (home-page "https://deanattali.com/shinyjs")
14219 (synopsis "Improve the user experience of your Shiny apps")
14220 (description
14221 "Perform common useful JavaScript operations in Shiny apps that will
14222 greatly improve your apps without having to know any JavaScript. Examples
14223 include: hiding an element, disabling an input, resetting an input back to its
14224 original value, delaying code execution by a few seconds, and many more useful
14225 functions for both the end user and the developer. Shinyjs can also be used
14226 to easily call your own custom JavaScript functions from R.")
14227 (license license:agpl3+)))
14228
14229 ;; This package includes minified JavaScript files. When upgrading please
14230 ;; check that there are no new minified JavaScript files.
14231 (define-public r-colourpicker
14232 (package
14233 (name "r-colourpicker")
14234 (version "1.1.0")
14235 (source
14236 (origin
14237 (method url-fetch)
14238 (uri (cran-uri "colourpicker" version))
14239 (sha256
14240 (base32
14241 "1qjispj7i12m02js5cm5xlgn5lyff0kc5ybz6lbknz8q5lkbdyrd"))))
14242 (build-system r-build-system)
14243 (arguments
14244 `(#:modules ((guix build utils)
14245 (guix build r-build-system)
14246 (srfi srfi-1)
14247 (ice-9 popen))
14248 #:phases
14249 (modify-phases %standard-phases
14250 (add-after 'unpack 'process-javascript
14251 (lambda* (#:key inputs #:allow-other-keys)
14252 (with-directory-excursion "inst"
14253 (call-with-values
14254 (lambda ()
14255 (unzip2
14256 `((,(assoc-ref inputs "js-salvattore")
14257 "examples/colourInput/www/salvattore.min.js")
14258 (,(assoc-ref inputs "js-jquery")
14259 "htmlwidgets/lib/jquery/jquery.min.js")
14260 ("www/shared/colourpicker/js/colourpicker.js"
14261 "www/shared/colourpicker/js/colourpicker.min.js"))))
14262 (lambda (sources targets)
14263 (for-each (lambda (source target)
14264 (format #t "Processing ~a --> ~a~%"
14265 source target)
14266 (delete-file target)
14267 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
14268 (call-with-output-file target
14269 (lambda (port)
14270 (dump-port minified port)))))
14271 sources targets))))
14272 #t)))))
14273 (propagated-inputs
14274 `(("r-ggplot2" ,r-ggplot2)
14275 ("r-htmltools" ,r-htmltools)
14276 ("r-htmlwidgets" ,r-htmlwidgets)
14277 ("r-jsonlite" ,r-jsonlite)
14278 ("r-miniui" ,r-miniui)
14279 ("r-shiny" ,r-shiny)
14280 ("r-shinyjs" ,r-shinyjs)))
14281 (native-inputs
14282 `(("r-knitr" ,r-knitr)
14283 ("uglify-js" ,uglify-js)
14284 ("js-jquery"
14285 ,(origin
14286 (method url-fetch)
14287 (uri "https://code.jquery.com/jquery-3.3.1.js")
14288 (sha256
14289 (base32
14290 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
14291 ("js-salvattore"
14292 ,(origin
14293 (method url-fetch)
14294 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
14295 (sha256
14296 (base32
14297 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
14298 (home-page "https://github.com/daattali/colourpicker")
14299 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
14300 (description
14301 "This package provides a color picker that can be used as an input in
14302 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
14303 custom color palettes, and many more options. A plot color helper tool is
14304 available as an RStudio Addin, which helps you pick colors to use in your
14305 plots. A more generic color picker RStudio Addin is also provided to let you
14306 select colors to use in your R code.")
14307 (license license:expat)))
14308
14309 (define-public r-ggextra
14310 (package
14311 (name "r-ggextra")
14312 (version "0.9")
14313 (source
14314 (origin
14315 (method url-fetch)
14316 (uri (cran-uri "ggExtra" version))
14317 (sha256
14318 (base32
14319 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
14320 (properties `((upstream-name . "ggExtra")))
14321 (build-system r-build-system)
14322 (propagated-inputs
14323 `(("r-colourpicker" ,r-colourpicker)
14324 ("r-ggplot2" ,r-ggplot2)
14325 ("r-gtable" ,r-gtable)
14326 ("r-miniui" ,r-miniui)
14327 ("r-r6" ,r-r6)
14328 ("r-scales" ,r-scales)
14329 ("r-shiny" ,r-shiny)
14330 ("r-shinyjs" ,r-shinyjs)))
14331 (native-inputs
14332 `(("r-knitr" ,r-knitr)))
14333 (home-page "https://github.com/daattali/ggExtra")
14334 (synopsis "Marginal histograms for ggplot2 and other enhancements")
14335 (description
14336 "This package is a collection of functions and layers to enhance ggplot2.
14337 The flagship function is @code{ggMarginal()}, which can be used to add
14338 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
14339 (license license:expat)))
14340
14341 (define-public r-minpack-lm
14342 (package
14343 (name "r-minpack-lm")
14344 (version "1.2-1")
14345 (source
14346 (origin
14347 (method url-fetch)
14348 (uri (cran-uri "minpack.lm" version))
14349 (sha256
14350 (base32
14351 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
14352 (properties `((upstream-name . "minpack.lm")))
14353 (build-system r-build-system)
14354 (native-inputs `(("gfortran" ,gfortran)))
14355 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
14356 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
14357 (description
14358 "The @code{nls.lm} function provides an R interface to @code{lmder} and
14359 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
14360 problems by a modification of the Levenberg-Marquardt algorithm, with support
14361 for lower and upper parameter bounds. The implementation can be used via
14362 @code{nls}-like calls using the @code{nlsLM} function.")
14363 (license license:gpl3)))
14364
14365 (define-public r-moments
14366 (package
14367 (name "r-moments")
14368 (version "0.14")
14369 (source
14370 (origin
14371 (method url-fetch)
14372 (uri (cran-uri "moments" version))
14373 (sha256
14374 (base32
14375 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
14376 (build-system r-build-system)
14377 (home-page "https://cran.r-project.org/web/packages/moments")
14378 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
14379 (description
14380 "This package provides functions to calculate: moments, Pearson's
14381 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
14382 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
14383 (license license:gpl2+)))
14384
14385 (define-public r-msir
14386 (package
14387 (name "r-msir")
14388 (version "1.3.3")
14389 (source
14390 (origin
14391 (method url-fetch)
14392 (uri (cran-uri "msir" version))
14393 (sha256
14394 (base32
14395 "1wm83m3cqd6llxb9p2jwim0wb81v84pgdmgcznygzaaq6kbn3n84"))))
14396 (build-system r-build-system)
14397 (propagated-inputs
14398 `(("r-mclust" ,r-mclust)))
14399 (native-inputs
14400 `(("r-knitr" ,r-knitr)))
14401 (home-page "https://cran.r-project.org/web/packages/msir")
14402 (synopsis "Model-based sliced inverse regression")
14403 (description
14404 "This is an R package for dimension reduction based on finite Gaussian
14405 mixture modeling of inverse regression.")
14406 (license license:gpl2+)))
14407
14408 (define-public r-pbivnorm
14409 (package
14410 (name "r-pbivnorm")
14411 (version "0.6.0")
14412 (source
14413 (origin
14414 (method url-fetch)
14415 (uri (cran-uri "pbivnorm" version))
14416 (sha256
14417 (base32
14418 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
14419 (build-system r-build-system)
14420 (native-inputs `(("gfortran" ,gfortran)))
14421 (home-page "https://github.com/brentonk/pbivnorm")
14422 (synopsis "Vectorized bivariate normal CDF")
14423 (description
14424 "This package provides a vectorized R function for calculating
14425 probabilities from a standard bivariate normal CDF.")
14426 (license license:gpl2+)))
14427
14428 (define-public r-lavaan
14429 (package
14430 (name "r-lavaan")
14431 (version "0.6-8")
14432 (source
14433 (origin
14434 (method url-fetch)
14435 (uri (cran-uri "lavaan" version))
14436 (sha256
14437 (base32
14438 "18l49f1v7nrngwra4v983ic8w1d4w23ws8xf36337dq0j6809qj0"))))
14439 (build-system r-build-system)
14440 (propagated-inputs
14441 `(("r-mass" ,r-mass)
14442 ("r-mnormt" ,r-mnormt)
14443 ("r-numderiv" ,r-numderiv)
14444 ("r-pbivnorm" ,r-pbivnorm)))
14445 (home-page "https://lavaan.ugent.be")
14446 (synopsis "Latent variable analysis")
14447 (description
14448 "This package provides tools to fit a variety of latent variable models,
14449 including confirmatory factor analysis, structural equation modeling and
14450 latent growth curve models.")
14451 (license license:gpl2+)))
14452
14453 (define-public r-nonnest2
14454 (package
14455 (name "r-nonnest2")
14456 (version "0.5-5")
14457 (source
14458 (origin
14459 (method url-fetch)
14460 (uri (cran-uri "nonnest2" version))
14461 (sha256
14462 (base32
14463 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
14464 (build-system r-build-system)
14465 (propagated-inputs
14466 `(("r-compquadform" ,r-compquadform)
14467 ("r-lavaan" ,r-lavaan)
14468 ("r-mvtnorm" ,r-mvtnorm)
14469 ("r-sandwich" ,r-sandwich)))
14470 (native-inputs
14471 `(("r-knitr" ,r-knitr)))
14472 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
14473 (synopsis "Tests of non-nested models")
14474 (description
14475 "This package allows for testing of non-nested models. It includes tests
14476 of model distinguishability and of model fit that can be applied to both
14477 nested and non-nested models. The package also includes functionality to
14478 obtain confidence intervals associated with AIC and BIC.")
14479 ;; Either version of the GPL.
14480 (license (list license:gpl2 license:gpl3))))
14481
14482 (define-public r-penalized
14483 (package
14484 (name "r-penalized")
14485 (version "0.9-51")
14486 (source
14487 (origin
14488 (method url-fetch)
14489 (uri (cran-uri "penalized" version))
14490 (sha256
14491 (base32
14492 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
14493 (build-system r-build-system)
14494 (propagated-inputs
14495 `(("r-rcpp" ,r-rcpp)
14496 ("r-rcpparmadillo" ,r-rcpparmadillo)
14497 ("r-survival" ,r-survival)))
14498 (home-page "https://cran.r-project.org/web/packages/penalized/")
14499 (synopsis "Penalized estimation in GLMs and in the Cox model")
14500 (description
14501 "This package provides tools for fitting possibly high dimensional
14502 penalized regression models. The penalty structure can be any combination of
14503 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
14504 constraint on the regression coefficients. The supported regression models
14505 are linear, logistic and Poisson regression and the Cox Proportional Hazards
14506 model. Cross-validation routines allow optimization of the tuning
14507 parameters.")
14508 (license license:gpl2+)))
14509
14510 (define-public r-zim
14511 (package
14512 (name "r-zim")
14513 (version "1.1.0")
14514 (source
14515 (origin
14516 (method url-fetch)
14517 (uri (cran-uri "ZIM" version))
14518 (sha256
14519 (base32
14520 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
14521 (properties `((upstream-name . "ZIM")))
14522 (build-system r-build-system)
14523 (propagated-inputs `(("r-mass" ,r-mass)))
14524 (home-page "https://github.com/biostatstudio/ZIM")
14525 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
14526 (description
14527 "Analyze count time series with excess zeros. Two types of statistical
14528 models are supported: Markov regression and state-space models. They are also
14529 known as observation-driven and parameter-driven models respectively in the
14530 time series literature. The functions used for Markov regression or
14531 observation-driven models can also be used to fit ordinary regression models
14532 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
14533 negative binomial (ZINB) assumption. The package also contains miscellaneous
14534 functions to compute density, distribution, quantile, and generate random
14535 numbers from ZIP and ZINB distributions.")
14536 (license license:gpl3)))
14537
14538 (define-public r-nor1mix
14539 (package
14540 (name "r-nor1mix")
14541 (version "1.3-0")
14542 (source
14543 (origin
14544 (method url-fetch)
14545 (uri (cran-uri "nor1mix" version))
14546 (sha256
14547 (base32
14548 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
14549 (build-system r-build-system)
14550 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
14551 (synopsis "Normal (1-d) mixture models")
14552 (description
14553 "This package provides S3 classes and methods for one-dimensional normal
14554 mixture models, for, e.g., density estimation or clustering algorithms
14555 research and teaching; it provides the widely used Marron-Wand densities. It
14556 also provides tools for efficient random number generation and graphics.")
14557 (license license:gpl2+)))
14558
14559 (define-public r-beanplot
14560 (package
14561 (name "r-beanplot")
14562 (version "1.2")
14563 (source
14564 (origin
14565 (method url-fetch)
14566 (uri (cran-uri "beanplot" version))
14567 (sha256
14568 (base32
14569 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
14570 (build-system r-build-system)
14571 (home-page "https://cran.r-project.org/web/packages/beanplot/")
14572 (synopsis "Visualization via beanplots")
14573 (description
14574 "This package provides beanplots, an alternative to
14575 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
14576 graphs.")
14577 (license license:gpl2)))
14578
14579 (define-public r-pbdzmq
14580 (package
14581 (name "r-pbdzmq")
14582 (version "0.3-5")
14583 (source
14584 (origin
14585 (method url-fetch)
14586 (uri (cran-uri "pbdZMQ" version))
14587 (sha256
14588 (base32
14589 "1v8iv1pzs4j3ics9k9h4xjkv6z1ma2xbqy003xk2lqax6srqi02d"))))
14590 (properties `((upstream-name . "pbdZMQ")))
14591 (build-system r-build-system)
14592 (inputs
14593 `(("zeromq" ,zeromq)
14594 ("zlib" ,zlib)))
14595 (native-inputs
14596 `(("pkg-config" ,pkg-config)))
14597 (home-page "https://pbdr.org/")
14598 (synopsis "R interface to ZeroMQ")
14599 (description
14600 "ZeroMQ is a well-known library for high-performance asynchronous
14601 messaging in scalable, distributed applications. This package provides high
14602 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
14603 interactive client/server programming frameworks. A few wrapper functions
14604 compatible with @code{rzmq} are also provided.")
14605 (license license:gpl3)))
14606
14607 (define-public r-repr
14608 (package
14609 (name "r-repr")
14610 (version "1.1.3")
14611 (source
14612 (origin
14613 (method url-fetch)
14614 (uri (cran-uri "repr" version))
14615 (sha256
14616 (base32
14617 "0qimllv9pn8wsl550bjkp5dkknbmr69j85mrwfbbq75m2ga466sk"))))
14618 (build-system r-build-system)
14619 (propagated-inputs
14620 `(("r-base64enc" ,r-base64enc)
14621 ("r-htmltools" ,r-htmltools)
14622 ("r-jsonlite" ,r-jsonlite)
14623 ("r-pillar" ,r-pillar)))
14624 (home-page "https://cran.r-project.org/web/packages/repr/")
14625 (synopsis "Serializable representations")
14626 (description
14627 "This package provides string and binary representations of objects for
14628 several formats and MIME types.")
14629 (license license:gpl3)))
14630
14631 (define-public r-irdisplay
14632 (package
14633 (name "r-irdisplay")
14634 (version "1.0")
14635 (source
14636 (origin
14637 (method url-fetch)
14638 (uri (cran-uri "IRdisplay" version))
14639 (sha256
14640 (base32
14641 "15jbjrihm1mk899357h9xb08iq3xyagds1xb40fmdpkfcmcfqrw9"))))
14642 (properties `((upstream-name . "IRdisplay")))
14643 (build-system r-build-system)
14644 (propagated-inputs
14645 `(("r-repr" ,r-repr)))
14646 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
14647 (synopsis "Jupyter display machinery")
14648 (description
14649 "This package provides an interface to the rich display capabilities of
14650 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
14651 running IRkernel session.")
14652 (license license:expat)))
14653
14654 (define-public r-irkernel
14655 (package
14656 (name "r-irkernel")
14657 (version "1.1.1")
14658 (source
14659 (origin
14660 (method url-fetch)
14661 (uri (cran-uri "IRkernel" version))
14662 (sha256
14663 (base32
14664 "1y06v3difaiihxfm2abm88nnjzvkla4p346cm1nxmga4iwb2k8gm"))))
14665 (properties `((upstream-name . "IRkernel")))
14666 (build-system r-build-system)
14667 (arguments
14668 `(#:phases
14669 (modify-phases %standard-phases
14670 (add-after 'install 'install-kernelspec
14671 (lambda* (#:key outputs #:allow-other-keys)
14672 (let ((out (assoc-ref outputs "out")))
14673 (setenv "HOME" "/tmp")
14674 (invoke "jupyter" "kernelspec" "install"
14675 "--name" "ir"
14676 "--prefix" out
14677 (string-append out "/site-library/IRkernel/kernelspec"))
14678 ;; Record the absolute file name of the 'R' executable in
14679 ;; 'kernel.json'.
14680 (substitute* (string-append out "/share/jupyter"
14681 "/kernels/ir/kernel.json")
14682 (("\\[\"R\",")
14683 (string-append "[\"" (which "R") "\",")))
14684 #t))))))
14685 (inputs
14686 `(("jupyter" ,jupyter)))
14687 (propagated-inputs
14688 `(("r-crayon" ,r-crayon)
14689 ("r-digest" ,r-digest)
14690 ("r-evaluate" ,r-evaluate)
14691 ("r-irdisplay" ,r-irdisplay)
14692 ("r-jsonlite" ,r-jsonlite)
14693 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
14694 ("r-minimal" ,r-minimal)
14695 ("r-pbdzmq" ,r-pbdzmq)
14696 ("r-repr" ,r-repr)
14697 ("r-uuid" ,r-uuid)))
14698 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
14699 (synopsis "Native R kernel for Jupyter")
14700 (description
14701 "The R kernel for the Jupyter environment executes R code which the
14702 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
14703 network.")
14704 (license license:expat)))
14705
14706 (define-public r-gmodels
14707 (package
14708 (name "r-gmodels")
14709 (version "2.18.1")
14710 (source
14711 (origin
14712 (method url-fetch)
14713 (uri (cran-uri "gmodels" version))
14714 (sha256
14715 (base32
14716 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
14717 (build-system r-build-system)
14718 (propagated-inputs
14719 `(("r-gdata" ,r-gdata)
14720 ("r-mass" ,r-mass)))
14721 (home-page "https://cran.r-project.org/web/packages/gmodels/")
14722 (synopsis "Various R programming tools for model fitting")
14723 (description
14724 "This package provides various R programming tools for model fitting.")
14725 (license license:gpl2)))
14726
14727 (define-public r-apcluster
14728 (package
14729 (name "r-apcluster")
14730 (version "1.4.8")
14731 (source
14732 (origin
14733 (method url-fetch)
14734 (uri (cran-uri "apcluster" version))
14735 (sha256
14736 (base32
14737 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
14738 (build-system r-build-system)
14739 (propagated-inputs
14740 `(("r-matrix" ,r-matrix)
14741 ("r-rcpp" ,r-rcpp)))
14742 (home-page "https://cran.r-project.org/web/packages/apcluster/")
14743 (synopsis "Affinity propagation clustering")
14744 (description
14745 "This package implements affinity propagation clustering introduced by
14746 Frey and Dueck (2007). The package further provides leveraged affinity
14747 propagation and an algorithm for exemplar-based agglomerative clustering that
14748 can also be used to join clusters obtained from affinity propagation. Various
14749 plotting functions are available for analyzing clustering results.")
14750 (license license:gpl2+)))
14751
14752 (define-public r-valr
14753 (package
14754 (name "r-valr")
14755 (version "0.6.2")
14756 (source
14757 (origin
14758 (method url-fetch)
14759 (uri (cran-uri "valr" version))
14760 (sha256
14761 (base32
14762 "1vbp89zfylgih5acvw7lcx3a0dbbd7dhq7yhywr7kq02737qykdx"))))
14763 (build-system r-build-system)
14764 (propagated-inputs
14765 `(("r-broom" ,r-broom)
14766 ("r-dplyr" ,r-dplyr)
14767 ("r-ggplot2" ,r-ggplot2)
14768 ("r-rcpp" ,r-rcpp)
14769 ("r-readr" ,r-readr)
14770 ("r-rlang" ,r-rlang)
14771 ("r-stringr" ,r-stringr)
14772 ("r-tibble" ,r-tibble)))
14773 (native-inputs
14774 `(("r-knitr" ,r-knitr)))
14775 (home-page "https://github.com/rnabioco/valr")
14776 (synopsis "Genome interval arithmetic in R")
14777 (description
14778 "This package enables you to read and manipulate genome intervals and
14779 signals. It provides functionality similar to command-line tool suites within
14780 R, enabling interactive analysis and visualization of genome-scale data.")
14781 (license license:expat)))
14782
14783 (define-public r-rematch2
14784 (package
14785 (name "r-rematch2")
14786 (version "2.1.2")
14787 (source
14788 (origin
14789 (method url-fetch)
14790 (uri (cran-uri "rematch2" version))
14791 (sha256
14792 (base32
14793 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
14794 (build-system r-build-system)
14795 (propagated-inputs
14796 `(("r-tibble" ,r-tibble)))
14797 (home-page "https://github.com/r-lib/rematch2")
14798 (synopsis "Tidy output from regular expression matching")
14799 (description
14800 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
14801 return the match results in tidy data frames.")
14802 (license license:expat)))
14803
14804 (define-public r-picante
14805 (package
14806 (name "r-picante")
14807 (version "1.8.2")
14808 (source
14809 (origin
14810 (method url-fetch)
14811 (uri (cran-uri "picante" version))
14812 (sha256
14813 (base32
14814 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
14815 (build-system r-build-system)
14816 (propagated-inputs
14817 `(("r-ape" ,r-ape)
14818 ("r-nlme" ,r-nlme)
14819 ("r-vegan" ,r-vegan)))
14820 (home-page "https://cran.r-project.org/web/packages/picante/")
14821 (synopsis "Integrating phylogenies and ecology")
14822 (description
14823 "This package provides functions for phylocom integration, community
14824 analyses, null-models, traits and evolution. It implements numerous
14825 ecophylogenetic approaches including measures of community phylogenetic and
14826 trait diversity, phylogenetic signal, estimation of trait values for
14827 unobserved taxa, null models for community and phylogeny randomizations, and
14828 utility functions for data input/output and phylogeny plotting. A full
14829 description of package functionality and methods are provided by Kembel et
14830 al. (2010).")
14831 (license license:gpl2)))
14832
14833 (define-public r-reinforcelearn
14834 (package
14835 (name "r-reinforcelearn")
14836 (version "0.2.1")
14837 (source
14838 (origin
14839 (method url-fetch)
14840 (uri (cran-uri "reinforcelearn" version))
14841 (sha256
14842 (base32
14843 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
14844 (build-system r-build-system)
14845 (propagated-inputs
14846 `(("r-checkmate" ,r-checkmate)
14847 ("r-nnet" ,r-nnet)
14848 ("r-purrr" ,r-purrr)
14849 ("r-r6" ,r-r6)))
14850 (home-page "https://markusdumke.github.io/reinforcelearn")
14851 (synopsis "Reinforcement learning")
14852 (description
14853 "This package implements reinforcement learning environments and
14854 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
14855 can be used with function approximation, eligibility traces (Singh & Sutton,
14856 1996) and experience replay (Mnih et al., 2013).")
14857 (license license:expat)))
14858
14859 (define-public r-lemon
14860 (package
14861 (name "r-lemon")
14862 (version "0.4.5")
14863 (source
14864 (origin
14865 (method url-fetch)
14866 (uri (cran-uri "lemon" version))
14867 (sha256
14868 (base32
14869 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
14870 (build-system r-build-system)
14871 (propagated-inputs
14872 `(("r-ggplot2" ,r-ggplot2)
14873 ("r-gridextra" ,r-gridextra)
14874 ("r-gtable" ,r-gtable)
14875 ("r-knitr" ,r-knitr)
14876 ("r-lattice" ,r-lattice)
14877 ("r-plyr" ,r-plyr)
14878 ("r-rlang" ,r-rlang)
14879 ("r-scales" ,r-scales)))
14880 (native-inputs
14881 `(("r-knitr" ,r-knitr)))
14882 (home-page "https://github.com/stefanedwards/lemon")
14883 (synopsis "Freshen up your ggplot2 plots")
14884 (description
14885 "This package provides functions for working with legends and axis lines
14886 of ggplot2, facets that repeat axis lines on all panels, and some knitr
14887 extensions.")
14888 (license license:gpl3)))
14889
14890 (define-public r-wgaim
14891 (package
14892 (name "r-wgaim")
14893 (version "2.0-1")
14894 (source
14895 (origin
14896 (method url-fetch)
14897 (uri (cran-uri "wgaim" version))
14898 (sha256
14899 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
14900 (build-system r-build-system)
14901 (propagated-inputs
14902 `(("r-ggplot2" ,r-ggplot2)
14903 ("r-qtl" ,r-qtl)))
14904 (home-page "https://cran.r-project.org/web/packages/wgaim")
14905 (synopsis "Whole genome average interval mapping for QTL detection")
14906 (description
14907 "This package integrates sophisticated mixed modelling methods with a
14908 whole genome approach to detecting significant QTL in linkage maps.")
14909 (license license:gpl2+)))
14910
14911 (define-public r-bedr
14912 (package
14913 (name "r-bedr")
14914 (version "1.0.7")
14915 (source
14916 (origin
14917 (method url-fetch)
14918 (uri (cran-uri "bedr" version))
14919 (sha256
14920 (base32
14921 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
14922 (build-system r-build-system)
14923 (propagated-inputs
14924 `(("r-data-table" ,r-data-table)
14925 ("r-r-utils" ,r-r-utils)
14926 ("r-testthat" ,r-testthat)
14927 ("r-venndiagram" ,r-venndiagram)
14928 ("r-yaml" ,r-yaml)
14929 ("bedops" ,bedops)
14930 ("bedtools" ,bedtools)
14931 ("htslib" ,htslib))) ; for tabix
14932 (native-inputs
14933 `(("r-knitr" ,r-knitr))) ; for vignettes
14934 (home-page "https://cran.r-project.org/web/packages/bedr")
14935 (synopsis "Genomic region processing")
14936 (description
14937 "This package is for genomic regions processing using command line tools
14938 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
14939 utilities to perform genome arithmetic e.g indexing, formatting and merging.
14940 The bedr package's API enhances access to these tools as well as offers
14941 additional utilities for genomic regions processing.")
14942 (license license:gpl2)))
14943
14944 (define-public r-sets
14945 (package
14946 (name "r-sets")
14947 (version "1.0-18")
14948 (source
14949 (origin
14950 (method url-fetch)
14951 (uri (cran-uri "sets" version))
14952 (sha256
14953 (base32
14954 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
14955 (properties `((upstream-name . "sets")))
14956 (build-system r-build-system)
14957 (home-page "https://cran.r-project.org/web/packages/sets")
14958 (synopsis "Sets, generalized sets, customizable sets and intervals")
14959 (description
14960 "This package provides data structures and basic operations for ordinary
14961 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
14962 customizable sets, and intervals.")
14963 (license license:gpl2)))
14964
14965 (define-public r-partitions
14966 (package
14967 (name "r-partitions")
14968 (version "1.9-22")
14969 (source
14970 (origin
14971 (method url-fetch)
14972 (uri (cran-uri "partitions" version))
14973 (sha256
14974 (base32
14975 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
14976 (build-system r-build-system)
14977 (propagated-inputs
14978 `(("r-gmp" ,r-gmp)
14979 ("r-polynom" ,r-polynom)
14980 ("r-sets" ,r-sets)))
14981 (home-page "https://cran.r-project.org/web/packages/partitions")
14982 (synopsis "Additive partitions of integers")
14983 (description
14984 "This package provides tools to enumerates the partitions, unequal
14985 partitions, and restricted partitions of an integer; the three corresponding
14986 partition functions are also given.")
14987 ;; Any version of the GPL
14988 (license license:gpl2+)))
14989
14990 (define-public r-brobdingnag
14991 (package
14992 (name "r-brobdingnag")
14993 (version "1.2-6")
14994 (source
14995 (origin
14996 (method url-fetch)
14997 (uri (cran-uri "Brobdingnag" version))
14998 (sha256
14999 (base32
15000 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
15001 (properties `((upstream-name . "Brobdingnag")))
15002 (build-system r-build-system)
15003 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
15004 (synopsis "Very large numbers in R")
15005 (description
15006 "This package handles very large numbers in R. Real numbers are held
15007 using their natural logarithms, plus a logical flag indicating sign. The
15008 package includes a vignette that gives a step-by-step introduction to using S4
15009 methods.")
15010 ;; Any version of the GPL
15011 (license license:gpl2+)))
15012
15013 (define-public r-untb
15014 (package
15015 (name "r-untb")
15016 (version "1.7-4")
15017 (source
15018 (origin
15019 (method url-fetch)
15020 (uri (cran-uri "untb" version))
15021 (sha256
15022 (base32
15023 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
15024 (build-system r-build-system)
15025 (propagated-inputs
15026 `(("r-brobdingnag" ,r-brobdingnag)
15027 ("r-partitions" ,r-partitions)
15028 ("r-polynom" ,r-polynom)))
15029 (home-page "https://github.com/RobinHankin/untb.git")
15030 (synopsis "Ecological drift under the UNTB")
15031 (description
15032 "This package provides numerical simulations, and visualizations, of
15033 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
15034 (license license:gpl2+)))
15035
15036 (define-public r-stepwise
15037 (package
15038 (name "r-stepwise")
15039 (version "0.3")
15040 (source
15041 (origin
15042 (method url-fetch)
15043 (uri (cran-uri "stepwise" version))
15044 (sha256
15045 (base32
15046 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
15047 (build-system r-build-system)
15048 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
15049 (synopsis "Stepwise detection of recombination breakpoints")
15050 (description
15051 "This package provides a stepwise approach to identifying recombination
15052 breakpoints in a genomic sequence alignment.")
15053 (license license:gpl2+)))
15054
15055 (define-public r-snpmaxsel
15056 (package
15057 (name "r-snpmaxsel")
15058 (version "1.0-3")
15059 (source
15060 (origin
15061 (method url-fetch)
15062 (uri (cran-uri "SNPmaxsel" version))
15063 (sha256
15064 (base32
15065 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
15066 (properties `((upstream-name . "SNPmaxsel")))
15067 (build-system r-build-system)
15068 (propagated-inputs
15069 `(("r-combinat" ,r-combinat)
15070 ("r-mvtnorm" ,r-mvtnorm)))
15071 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
15072 (synopsis "Maximally selected statistics for SNP data")
15073 (description
15074 "This package implements asymptotic methods related to maximally selected
15075 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
15076 data.")
15077 (license license:gpl2+)))
15078
15079 (define-public r-acsnminer
15080 (package
15081 (name "r-acsnminer")
15082 (version "0.16.8.25")
15083 (source (origin
15084 (method url-fetch)
15085 (uri (cran-uri "ACSNMineR" version))
15086 (sha256
15087 (base32
15088 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
15089 (properties `((upstream-name . "ACSNMineR")))
15090 (build-system r-build-system)
15091 (propagated-inputs
15092 `(("r-ggplot2" ,r-ggplot2)
15093 ("r-gridextra" ,r-gridextra)))
15094 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
15095 (synopsis "Gene enrichment analysis")
15096 (description
15097 "This package provides tools to compute and represent gene set enrichment
15098 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
15099 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
15100 enrichment can be run with hypergeometric test or Fisher exact test, and can
15101 use multiple corrections. Visualization of data can be done either by
15102 barplots or heatmaps.")
15103 (license license:gpl2+)))
15104
15105 (define-public r-seqinr
15106 (package
15107 (name "r-seqinr")
15108 (version "4.2-5")
15109 (source
15110 (origin
15111 (method url-fetch)
15112 (uri (cran-uri "seqinr" version))
15113 (sha256
15114 (base32
15115 "1z1jipgrn9nrnxlx7bcf8c2chwpa3kfva0zgyb12xbr3kisn166y"))))
15116 (build-system r-build-system)
15117 (propagated-inputs
15118 `(("r-ade4" ,r-ade4)
15119 ("r-segmented" ,r-segmented)))
15120 (inputs
15121 `(("zlib" ,zlib)))
15122 (home-page "http://seqinr.r-forge.r-project.org/")
15123 (synopsis "Biological sequences retrieval and analysis")
15124 (description
15125 "This package provides tools for exploratory data analysis and data
15126 visualization of biological sequence (DNA and protein) data. It also includes
15127 utilities for sequence data management under the ACNUC system.")
15128 (license license:gpl2+)))
15129
15130 (define-public r-units
15131 (package
15132 (name "r-units")
15133 (version "0.7-0")
15134 (source
15135 (origin
15136 (method url-fetch)
15137 (uri (cran-uri "units" version))
15138 (sha256
15139 (base32
15140 "0kwfcrrbcwl7s50n1wp33vswqzmprh91clvakbd1jpznqpg5m3js"))))
15141 (build-system r-build-system)
15142 (inputs
15143 `(("udunits" ,udunits)))
15144 (propagated-inputs
15145 `(("r-rcpp" ,r-rcpp)))
15146 (native-inputs
15147 `(("r-knitr" ,r-knitr)))
15148 (home-page "https://github.com/r-quantities/units/")
15149 (synopsis "Measurement Units for R Vectors")
15150 (description
15151 "This package provides support for measurement units in R vectors,
15152 matrices and arrays: automatic propagation, conversion, derivation and
15153 simplification of units; raising errors in case of unit incompatibility. It
15154 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
15155 classes.")
15156 (license license:gpl2)))
15157
15158 (define-public r-udunits2
15159 (package
15160 (name "r-udunits2")
15161 (version "0.13")
15162 (source
15163 (origin
15164 (method url-fetch)
15165 (uri (cran-uri "udunits2" version))
15166 (sha256
15167 (base32
15168 "0yav7rm2afcx67xqrknybxgz7x63w78zyxa0xifvc0k2gz0d6mfi"))))
15169 (properties `((upstream-name . "udunits2")))
15170 (build-system r-build-system)
15171 (inputs
15172 `(("udunits" ,udunits)))
15173 (home-page "https://cran.r-project.org/package=udunits2")
15174 (synopsis "Udunits-2 bindings for R")
15175 (description
15176 "This package provides simple bindings to Unidata's udunits library.")
15177 (license license:gpl2)))
15178
15179 (define-public r-classint
15180 (package
15181 (name "r-classint")
15182 (version "0.4-3")
15183 (source
15184 (origin
15185 (method url-fetch)
15186 (uri (cran-uri "classInt" version))
15187 (sha256
15188 (base32
15189 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
15190 (properties `((upstream-name . "classInt")))
15191 (build-system r-build-system)
15192 (propagated-inputs
15193 `(("r-class" ,r-class)
15194 ("r-e1071" ,r-e1071)
15195 ("r-kernsmooth" ,r-kernsmooth)))
15196 (native-inputs
15197 `(("gfortran" ,gfortran)
15198 ("r-knitr" ,r-knitr)))
15199 (home-page "https://github.com/r-spatial/classInt/")
15200 (synopsis "Choose univariate class intervals")
15201 (description
15202 "This package provides selected commonly used methods for choosing
15203 univariate class intervals for mapping or other graphics purposes.")
15204 (license license:gpl2+)))
15205
15206 (define-public r-spdata
15207 (package
15208 (name "r-spdata")
15209 (version "0.3.8")
15210 (source
15211 (origin
15212 (method url-fetch)
15213 (uri (cran-uri "spData" version))
15214 (sha256
15215 (base32
15216 "1mlsqy9cbilfc80cbdlbgsngvzdkrd9yjdkxnw2b1gzxnj6jcqbs"))))
15217 (properties `((upstream-name . "spData")))
15218 (build-system r-build-system)
15219 (propagated-inputs
15220 `(("r-raster" ,r-raster)
15221 ("r-sp" ,r-sp)))
15222 (home-page "https://github.com/Nowosad/spData")
15223 (synopsis "Datasets for spatial analysis")
15224 (description
15225 "This a package containing diverse spatial datasets for demonstrating,
15226 benchmarking and teaching spatial data analysis. It includes R data of class
15227 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
15228 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
15229 of the datasets are designed to illustrate specific analysis techniques.
15230 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
15231 illustrate point pattern analysis techniques.")
15232 (license license:cc0)))
15233
15234 (define-public r-learnbayes
15235 (package
15236 (name "r-learnbayes")
15237 (version "2.15.1")
15238 (source
15239 (origin
15240 (method url-fetch)
15241 (uri (cran-uri "LearnBayes" version))
15242 (sha256
15243 (base32
15244 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
15245 (properties `((upstream-name . "LearnBayes")))
15246 (build-system r-build-system)
15247 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
15248 (synopsis "Functions for learning Bayesian inference")
15249 (description
15250 "This package provides a collection of functions helpful in learning the
15251 basic tenets of Bayesian statistical inference. It contains functions for
15252 summarizing basic one and two parameter posterior distributions and predictive
15253 distributions. It contains MCMC algorithms for summarizing posterior
15254 distributions defined by the user. It also contains functions for regression
15255 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
15256 sampling.")
15257 (license license:gpl2+)))
15258
15259 (define-public r-deldir
15260 (package
15261 (name "r-deldir")
15262 (version "0.2-10")
15263 (source
15264 (origin
15265 (method url-fetch)
15266 (uri (cran-uri "deldir" version))
15267 (sha256
15268 (base32
15269 "08ij6zb6id71zk6gzs9z779y49y41c2gpi7p7mljnlw7py92g8k5"))))
15270 (build-system r-build-system)
15271 (native-inputs `(("gfortran" ,gfortran)))
15272 (home-page "https://cran.r-project.org/web/packages/deldir")
15273 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
15274 (description
15275 "This package provides tools for calculating the Delaunay triangulation
15276 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
15277 of a planar point set. It plots triangulations and tessellations in various
15278 ways, clips tessellations to sub-windows, calculates perimeters of
15279 tessellations, and summarizes information about the tiles of the
15280 tessellation.")
15281 (license license:gpl2+)))
15282
15283 (define-public r-sf
15284 (package
15285 (name "r-sf")
15286 (version "0.9-7")
15287 (source
15288 (origin
15289 (method url-fetch)
15290 (uri (cran-uri "sf" version))
15291 (sha256
15292 (base32
15293 "175fmnnw11fjhfgjv9sn9b0jfjcqbybpgwsvv99d5yddigvw5jja"))))
15294 (build-system r-build-system)
15295 (inputs
15296 `(("gdal" ,gdal)
15297 ("geos" ,geos)
15298 ("proj" ,proj)
15299 ("sqlite" ,sqlite)
15300 ("zlib" ,zlib)))
15301 (propagated-inputs
15302 `(("r-classint" ,r-classint)
15303 ("r-dbi" ,r-dbi)
15304 ("r-magrittr" ,r-magrittr)
15305 ("r-rcpp" ,r-rcpp)
15306 ("r-units" ,r-units)))
15307 (native-inputs
15308 `(("pkg-config" ,pkg-config)
15309 ("r-knitr" ,r-knitr)))
15310 (home-page "https://github.com/r-spatial/sf/")
15311 (synopsis "Simple features for R")
15312 (description
15313 "This package provides support for simple features, a standardized way to
15314 encode spatial vector data. It binds to GDAL for reading and writing data, to
15315 GEOS for geometrical operations, and to PROJ for projection conversions and
15316 datum transformations.")
15317 ;; Either of these licenses
15318 (license (list license:gpl2 license:expat))))
15319
15320 (define-public r-spdep
15321 (package
15322 (name "r-spdep")
15323 (version "1.1-5")
15324 (source
15325 (origin
15326 (method url-fetch)
15327 (uri (cran-uri "spdep" version))
15328 (sha256
15329 (base32
15330 "0pbd7wrg5v44p2yxsjp774lpyzap3madir5mn5p3ix7ibk7ldjs7"))))
15331 (build-system r-build-system)
15332 (propagated-inputs
15333 `(("r-boot" ,r-boot)
15334 ("r-coda" ,r-coda)
15335 ("r-deldir" ,r-deldir)
15336 ("r-expm" ,r-expm)
15337 ("r-gmodels" ,r-gmodels)
15338 ("r-learnbayes" ,r-learnbayes)
15339 ("r-mass" ,r-mass)
15340 ("r-matrix" ,r-matrix)
15341 ("r-nlme" ,r-nlme)
15342 ("r-sf" ,r-sf)
15343 ("r-sp" ,r-sp)
15344 ("r-spdata" ,r-spdata)))
15345 (native-inputs
15346 `(("r-knitr" ,r-knitr)))
15347 (home-page "https://github.com/r-spatial/spdep/")
15348 (synopsis "Spatial dependence: weighting schemes, statistics and models")
15349 (description
15350 "This package provides a collection of functions to create spatial
15351 weights matrix objects from polygon contiguities, from point patterns by
15352 distance and tessellations, for summarizing these objects, and for permitting
15353 their use in spatial data analysis, including regional aggregation by minimum
15354 spanning tree.")
15355 (license license:gpl2+)))
15356
15357 (define-public r-adegenet
15358 (package
15359 (name "r-adegenet")
15360 (version "2.1.3")
15361 (source
15362 (origin
15363 (method url-fetch)
15364 (uri (cran-uri "adegenet" version))
15365 (sha256
15366 (base32
15367 "1ipnawi0qfd4rfwj37igvh36x1a9d8x4n7xynn1jcr12rd713407"))))
15368 (build-system r-build-system)
15369 (propagated-inputs
15370 `(("r-ade4" ,r-ade4)
15371 ("r-ape" ,r-ape)
15372 ("r-boot" ,r-boot)
15373 ("r-dplyr" ,r-dplyr)
15374 ("r-ggplot2" ,r-ggplot2)
15375 ("r-igraph" ,r-igraph)
15376 ("r-mass" ,r-mass)
15377 ("r-reshape2" ,r-reshape2)
15378 ("r-seqinr" ,r-seqinr)
15379 ("r-shiny" ,r-shiny)
15380 ("r-spdep" ,r-spdep)
15381 ("r-vegan" ,r-vegan)))
15382 (home-page "https://github.com/thibautjombart/adegenet")
15383 (synopsis "Exploratory analysis of genetic and genomic data")
15384 (description
15385 "This package provides a toolset for the exploration of genetic and
15386 genomic data. Adegenet provides formal (S4) classes for storing and handling
15387 various genetic data, including genetic markers with varying ploidy and
15388 hierarchical population structure (@code{genind} class), alleles counts by
15389 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
15390 also implements original multivariate methods (DAPC, sPCA), graphics,
15391 statistical tests, simulation tools, distance and similarity measures, and
15392 several spatial methods. A range of both empirical and simulated datasets is
15393 also provided to illustrate various methods.")
15394 (license license:gpl2+)))
15395
15396 (define-public r-pegas
15397 (package
15398 (name "r-pegas")
15399 (version "0.14")
15400 (source
15401 (origin
15402 (method url-fetch)
15403 (uri (cran-uri "pegas" version))
15404 (sha256
15405 (base32 "0lr06gajzdanj8ax91kgpxsj863m367v2s1z5gnxps3999n0xybx"))))
15406 (build-system r-build-system)
15407 (propagated-inputs
15408 `(("r-adegenet" ,r-adegenet)
15409 ("r-ape" ,r-ape)))
15410 (home-page "http://ape-package.ird.fr/pegas.html")
15411 (synopsis "Population and evolutionary genetics analysis system")
15412 (description
15413 "This package provides functions for reading, writing, plotting,
15414 analysing, and manipulating allelic and haplotypic data, including from VCF
15415 files, and for the analysis of population nucleotide sequences and
15416 micro-satellites including coalescent analyses, linkage disequilibrium,
15417 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
15418 minimum spanning tree and network, and median-joining networks.")
15419 (license license:gpl2+)))
15420
15421 (define-public r-rmetasim
15422 (package
15423 (name "r-rmetasim")
15424 (version "3.1.14")
15425 (source
15426 (origin
15427 (method url-fetch)
15428 (uri (cran-uri "rmetasim" version))
15429 (sha256
15430 (base32
15431 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
15432 (build-system r-build-system)
15433 (propagated-inputs
15434 `(("r-ade4" ,r-ade4)
15435 ("r-adegenet" ,r-adegenet)
15436 ("r-gtools" ,r-gtools)
15437 ("r-pegas" ,r-pegas)))
15438 (home-page "https://cran.r-project.org/web/packages/rmetasim")
15439 (synopsis "Individual-based population genetic simulation environment")
15440 (description
15441 "This package provides an interface between R and the metasim simulation
15442 engine. The simulation environment is documented in: Strand, A.(2002),
15443 Metasim 1.0: an individual-based environment for simulating population
15444 genetics of complex population dynamics.")
15445 ;; Any GPL version
15446 (license license:gpl2+)))
15447
15448 (define-public r-genetics
15449 (package
15450 (name "r-genetics")
15451 (version "1.3.8.1.3")
15452 (source
15453 (origin
15454 (method url-fetch)
15455 (uri (cran-uri "genetics" version))
15456 (sha256
15457 (base32
15458 "0lljxvz7nc6y2z303icphar2niir0i407w5cyhy2pwspd9gwkwpy"))))
15459 (build-system r-build-system)
15460 (propagated-inputs
15461 `(("r-combinat" ,r-combinat)
15462 ("r-gdata" ,r-gdata)
15463 ("r-gtools" ,r-gtools)
15464 ("r-mass" ,r-mass)
15465 ("r-mvtnorm" ,r-mvtnorm)))
15466 (home-page "https://cran.r-project.org/web/packages/genetics/")
15467 (synopsis "Population genetics")
15468 (description
15469 "This package provides classes and methods for handling genetic data.
15470 It includes classes to represent genotypes and haplotypes at single markers up
15471 to multiple markers on multiple chromosomes. Function include allele
15472 frequencies, flagging homo/heterozygotes, flagging carriers of certain
15473 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
15474 and testing for linkage disequilibrium, ...")
15475 ;; Any GPL version.
15476 (license license:gpl2+)))
15477
15478 (define-public r-snp-plotter
15479 (package
15480 (name "r-snp-plotter")
15481 (version "0.5.1")
15482 (source
15483 (origin
15484 (method url-fetch)
15485 (uri (cran-uri "snp.plotter" version))
15486 (sha256
15487 (base32
15488 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
15489 (properties `((upstream-name . "snp.plotter")))
15490 (build-system r-build-system)
15491 (propagated-inputs `(("r-genetics" ,r-genetics)))
15492 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
15493 (synopsis "Plot p-values using single SNP and/or haplotype data")
15494 (description
15495 "This package helps you create plots of p-values using single SNP and/or
15496 haplotype data. Main features of the package include options to display a
15497 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
15498 datasets simultaneously. Plots can be created using global and/or individual
15499 haplotype p-values along with single SNP p-values. Images are created as
15500 either PDF/EPS files.")
15501 (license license:gpl2+)))
15502
15503 (define-public r-polspline
15504 (package
15505 (name "r-polspline")
15506 (version "1.1.19")
15507 (source
15508 (origin
15509 (method url-fetch)
15510 (uri (cran-uri "polspline" version))
15511 (sha256
15512 (base32 "0rhzf735hmbqfn2xbgcln4sqx7m9far72g5gq9mghgkw016kqglm"))))
15513 (build-system r-build-system)
15514 (native-inputs `(("gfortran" ,gfortran)))
15515 (home-page "https://cran.r-project.org/web/packages/polspline/")
15516 (synopsis "Polynomial spline routines")
15517 (description
15518 "This package provides routines for the polynomial spline fitting
15519 routines hazard regression, hazard estimation with flexible tails, logspline,
15520 lspec, polyclass, and polymars.")
15521 (license license:gpl2+)))
15522
15523 (define-public r-rms
15524 (package
15525 (name "r-rms")
15526 (version "6.1-1")
15527 (source
15528 (origin
15529 (method url-fetch)
15530 (uri (cran-uri "rms" version))
15531 (sha256
15532 (base32 "1zgfd60lzbakcv7x0i5k3lkw3s0xx5bzssjgangna5lq2j17cdli"))))
15533 (build-system r-build-system)
15534 (propagated-inputs
15535 `(("r-cluster" ,r-cluster)
15536 ("r-digest" ,r-digest)
15537 ("r-ggplot2" ,r-ggplot2)
15538 ("r-hmisc" ,r-hmisc)
15539 ("r-htmltable" ,r-htmltable)
15540 ("r-htmltools" ,r-htmltools)
15541 ("r-lattice" ,r-lattice)
15542 ("r-mass" ,r-mass)
15543 ("r-multcomp" ,r-multcomp)
15544 ("r-nlme" ,r-nlme)
15545 ("r-polspline" ,r-polspline)
15546 ("r-quantreg" ,r-quantreg)
15547 ("r-rpart" ,r-rpart)
15548 ("r-sparsem" ,r-sparsem)
15549 ("r-survival" ,r-survival)))
15550 (native-inputs `(("gfortran" ,gfortran)))
15551 (home-page "http://biostat.mc.vanderbilt.edu/rms")
15552 (synopsis "Regression modeling strategies")
15553 (description
15554 "This is a package for regression modeling, testing, estimation,
15555 validation, graphics, prediction, and typesetting by storing enhanced model
15556 design attributes in the fit. The rms package is a collection of functions
15557 that assist with and streamline modeling. It also contains functions for
15558 binary and ordinal logistic regression models, ordinal models for continuous Y
15559 with a variety of distribution families, and the Buckley-James multiple
15560 regression model for right-censored responses, and implements penalized
15561 maximum likelihood estimation for logistic and ordinary linear models. The
15562 package works with almost any regression model, but it was especially written
15563 to work with binary or ordinal regression models, Cox regression, accelerated
15564 failure time models, ordinary linear models, the Buckley-James model,
15565 generalized least squares for serially or spatially correlated observations,
15566 generalized linear models, and quantile regression.")
15567 (license license:gpl2+)))
15568
15569 (define-public r-arsenal
15570 (package
15571 (name "r-arsenal")
15572 (version "3.6.2")
15573 (source
15574 (origin
15575 (method url-fetch)
15576 (uri (cran-uri "arsenal" version))
15577 (sha256
15578 (base32
15579 "0spm0s23xs5bm88slkz6a65mbs663qhnravwxp7rkdkr378vb5fn"))))
15580 (properties `((upstream-name . "arsenal")))
15581 (build-system r-build-system)
15582 (propagated-inputs `(("r-knitr" ,r-knitr)))
15583 (native-inputs `(("r-knitr" ,r-knitr)))
15584 (home-page "https://github.com/mayoverse/arsenal")
15585 (synopsis "Functions for large-scale statistical summaries")
15586 (description
15587 "This package provides an arsenal of R functions for large-scale
15588 statistical summaries, which are streamlined to work within the latest
15589 reporting tools in R and RStudio and which use formulas and versatile
15590 summary statistics for summary tables and models. The primary functions
15591 include
15592
15593 @enumerate
15594 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
15595 levels of one or more categorical variables;
15596 @item @code{paired}, a Table-1-like summary of multiple variable types paired
15597 across two time points;
15598 @item @code{modelsum}, which performs simple model fits on one or more
15599 endpoints for many variables (univariate or adjusted for covariates);
15600 @item @code{freqlist}, a powerful frequency table across many categorical
15601 variables;
15602 @item @code{comparedf}, a function for comparing @code{data.frames}; and
15603 @item @code{write2}, a function to output tables to a document.
15604 @end enumerate
15605 ")
15606 (license license:gpl2+)))
15607
15608 (define-public r-haplo-stats
15609 (package
15610 (name "r-haplo-stats")
15611 (version "1.8.6")
15612 (source
15613 (origin
15614 (method url-fetch)
15615 (uri (cran-uri "haplo.stats" version))
15616 (sha256
15617 (base32
15618 "1imz4gs0n57vixwwbirrihpgvn2pyj5da4rgjcjk14n2xkk0nay7"))))
15619 (properties `((upstream-name . "haplo.stats")))
15620 (build-system r-build-system)
15621 (propagated-inputs
15622 `(("r-arsenal" ,r-arsenal)
15623 ("r-rms" ,r-rms)))
15624 (native-inputs
15625 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
15626 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
15627 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
15628 (description
15629 "This package provides routines for the analysis of indirectly measured
15630 haplotypes. The statistical methods assume that all subjects are unrelated
15631 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
15632 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
15633 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
15634 examples in the vignette.")
15635 (license license:gpl2+)))
15636
15637 (define-public r-bqtl
15638 (package
15639 (name "r-bqtl")
15640 (version "1.0-32")
15641 (source
15642 (origin
15643 (method url-fetch)
15644 (uri (cran-uri "bqtl" version))
15645 (sha256
15646 (base32
15647 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
15648 (build-system r-build-system)
15649 (native-inputs `(("gfortran" ,gfortran)))
15650 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
15651 (synopsis "Bayesian QTL mapping toolkit")
15652 (description
15653 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
15654 lines. It includes maximum likelihood and Bayesian tools.")
15655 (license license:gpl2+)))
15656
15657 (define-public r-ibdreg
15658 (package
15659 (name "r-ibdreg")
15660 (version "0.3.1")
15661 (source
15662 (origin
15663 (method url-fetch)
15664 (uri (cran-uri "ibdreg" version))
15665 (sha256
15666 (base32
15667 "0kgx9iavgm6d6njhki7bm82d6lw2c7kcch2pryd339js2hm0l5gq"))))
15668 (build-system r-build-system)
15669 (home-page "https://www.mayo.edu/research/labs/\
15670 statistical-genetics-genetic-epidemiology/software")
15671 (synopsis "Regression methods for IBD linkage with covariates")
15672 (description
15673 "This package provides a method to test genetic linkage with covariates
15674 by regression methods with response IBD sharing for relative pairs. Account
15675 for correlations of IBD statistics and covariates for relative pairs within
15676 the same pedigree.")
15677 (license license:gpl2+)))
15678
15679 (define-public r-dlmap
15680 (package
15681 (name "r-dlmap")
15682 (version "1.13")
15683 (source
15684 (origin
15685 (method url-fetch)
15686 (uri (cran-uri "dlmap" version))
15687 (sha256
15688 (base32
15689 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
15690 (build-system r-build-system)
15691 (propagated-inputs
15692 `(("r-ibdreg" ,r-ibdreg)
15693 ("r-mgcv" ,r-mgcv)
15694 ("r-nlme" ,r-nlme)
15695 ("r-qtl" ,r-qtl)
15696 ("r-wgaim" ,r-wgaim)))
15697 (home-page "https://cran.r-project.org/web/packages/dlmap/")
15698 (synopsis "Detection localization mapping for QTL")
15699 (description
15700 "This is package for QTL mapping in a mixed model framework with separate
15701 detection and localization stages. The first stage detects the number of QTL
15702 on each chromosome based on the genetic variation due to grouped markers on
15703 the chromosome; the second stage uses this information to determine the most
15704 likely QTL positions. The mixed model can accommodate general fixed and
15705 random effects, including spatial effects in field trials and pedigree
15706 effects. It is applicable to backcrosses, doubled haploids, recombinant
15707 inbred lines, F2 intercrosses, and association mapping populations.")
15708 (license license:gpl2)))
15709
15710 (define-public r-hwde
15711 (package
15712 (name "r-hwde")
15713 (version "0.67")
15714 (source
15715 (origin
15716 (method url-fetch)
15717 (uri (cran-uri "hwde" version))
15718 (sha256
15719 (base32
15720 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
15721 (build-system r-build-system)
15722 (home-page "https://cran.r-project.org/web/packages/hwde/")
15723 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
15724 (description
15725 "This package fits models for genotypic disequilibria, as described in
15726 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
15727 terms are available that account for first order interactions between loci.
15728 It also implements, for a single locus in a single population, a conditional
15729 exact test for Hardy-Weinberg equilibrium.")
15730 (license license:gpl2+)))
15731
15732 (define-public r-tdthap
15733 (package
15734 (name "r-tdthap")
15735 (version "1.1-11")
15736 (source
15737 (origin
15738 (method url-fetch)
15739 (uri (cran-uri "tdthap" version))
15740 (sha256
15741 (base32
15742 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
15743 (build-system r-build-system)
15744 (home-page "https://cran.r-project.org/web/packages/tdthap/")
15745 (synopsis "TDT tests for extended haplotypes")
15746 (description
15747 "Functions and examples are provided for transmission/disequilibrium
15748 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
15749 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
15750 (license license:artistic2.0)))
15751
15752 (define-public r-sparql
15753 (package
15754 (name "r-sparql")
15755 (version "1.16")
15756 (source (origin
15757 (method url-fetch)
15758 (uri (cran-uri "SPARQL" version))
15759 (sha256
15760 (base32
15761 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
15762 (properties `((upstream-name . "SPARQL")))
15763 (build-system r-build-system)
15764 (propagated-inputs
15765 `(("r-rcurl" ,r-rcurl)
15766 ("r-xml" ,r-xml)))
15767 (home-page "https://cran.r-project.org/web/packages/SPARQL")
15768 (synopsis "SPARQL client for R")
15769 (description "This package provides an interface to use SPARQL to pose
15770 SELECT or UPDATE queries to an end-point.")
15771 ;; The only license indication is found in the DESCRIPTION file,
15772 ;; which states GPL-3. So we cannot assume GPLv3+.
15773 (license license:gpl3)))
15774
15775 (define-public r-bookdown
15776 (package
15777 (name "r-bookdown")
15778 (version "0.21")
15779 (source (origin
15780 (method url-fetch)
15781 (uri (cran-uri "bookdown" version))
15782 (sha256
15783 (base32
15784 "0xms1srx9l2mn8xaxnpic0s21y8k56bhwpj45wy7b0yscmxgmh27"))))
15785 (build-system r-build-system)
15786 (propagated-inputs
15787 `(("r-htmltools" ,r-htmltools)
15788 ("r-knitr" ,r-knitr)
15789 ("r-rmarkdown" ,r-rmarkdown)
15790 ("r-tinytex" ,r-tinytex)
15791 ("r-xfun" ,r-xfun)
15792 ("r-yaml" ,r-yaml)
15793 ("pandoc" ,pandoc)))
15794 (home-page "https://github.com/rstudio/bookdown")
15795 (synopsis "Authoring books and technical documents with R markdown")
15796 (description "This package provides output formats and utilities for
15797 authoring books and technical documents with R Markdown.")
15798 (license license:gpl3)))
15799
15800 (define-public r-optparse
15801 (package
15802 (name "r-optparse")
15803 (version "1.6.6")
15804 (source
15805 (origin
15806 (method url-fetch)
15807 (uri (cran-uri "optparse" version))
15808 (sha256
15809 (base32
15810 "1l301dy3gc8pn7j00awcjh41wmc1ks9kswak255kbsa6f54rsxsi"))))
15811 (build-system r-build-system)
15812 (propagated-inputs
15813 `(("r-getopt" ,r-getopt)))
15814 (native-inputs
15815 `(("r-knitr" ,r-knitr)))
15816 (home-page "https://github.com/trevorld/optparse")
15817 (synopsis "Command line option parser")
15818 (description
15819 "This package provides a command line parser inspired by Python's
15820 @code{optparse} library to be used with Rscript to write shebang scripts
15821 that accept short and long options.")
15822 (license license:gpl2+)))
15823
15824 (define-public r-kernlab
15825 (package
15826 (name "r-kernlab")
15827 (version "0.9-29")
15828 (source
15829 (origin
15830 (method url-fetch)
15831 (uri (cran-uri "kernlab" version))
15832 (sha256
15833 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
15834 (build-system r-build-system)
15835 (home-page "https://cran.r-project.org/web/packages/kernlab")
15836 (synopsis "Kernel-based machine learning tools")
15837 (description
15838 "This package provides kernel-based machine learning methods for
15839 classification, regression, clustering, novelty detection, quantile regression
15840 and dimensionality reduction. Among other methods @code{kernlab} includes
15841 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
15842 and a QP solver.")
15843 (license license:gpl2)))
15844
15845 (define-public r-hierfstat
15846 (package
15847 (name "r-hierfstat")
15848 (version "0.5-7")
15849 (source
15850 (origin
15851 (method url-fetch)
15852 (uri (cran-uri "hierfstat" version))
15853 (sha256
15854 (base32
15855 "0dp8k1z5a8gqnax99y1hwfvxilzf4n2i751zr0z6ihrzirsvb3m3"))))
15856 (build-system r-build-system)
15857 (propagated-inputs
15858 `(("r-ade4" ,r-ade4)
15859 ("r-adegenet" ,r-adegenet)
15860 ("r-gaston" ,r-gaston)
15861 ("r-gtools" ,r-gtools)))
15862 (native-inputs
15863 `(("r-knitr" ,r-knitr)))
15864 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
15865 (synopsis "Estimation and tests of hierarchical F-statistics")
15866 (description
15867 "This package allows the estimation of hierarchical F-statistics from
15868 haploid or diploid genetic data with any numbers of levels in the hierarchy,
15869 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
15870 are also given to test via randomisations the significance of each F and
15871 variance components, using the likelihood-ratio statistics G.")
15872 (license license:gpl2+)))
15873
15874 (define-public r-hapassoc
15875 (package
15876 (name "r-hapassoc")
15877 (version "1.2-8")
15878 (source
15879 (origin
15880 (method url-fetch)
15881 (uri (cran-uri "hapassoc" version))
15882 (sha256
15883 (base32
15884 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
15885 (build-system r-build-system)
15886 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
15887 (synopsis "Inference of trait associations with SNP haplotypes")
15888 (description
15889 "Hapassoc performs likelihood inference of trait associations with
15890 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
15891 functions are developed primarily for data collected in cohort or
15892 cross-sectional studies. They can accommodate uncertain haplotype phase and
15893 handle missing genotypes at some SNPs.")
15894 (license license:gpl2)))
15895
15896 (define-public r-sampling
15897 (package
15898 (name "r-sampling")
15899 (version "2.9")
15900 (source
15901 (origin
15902 (method url-fetch)
15903 (uri (cran-uri "sampling" version))
15904 (sha256
15905 (base32
15906 "11xis4vzn2ga8ml9xrgfgqzccvwbnabq35aidzdvpnvciybsanvz"))))
15907 (build-system r-build-system)
15908 (propagated-inputs
15909 `(("r-lpsolve" ,r-lpsolve)
15910 ("r-mass" ,r-mass)))
15911 (home-page "https://cran.r-project.org/web/packages/sampling/")
15912 (synopsis "Survey sampling")
15913 (description
15914 "This package provides functions for drawing and calibrating samples.")
15915 (license license:gpl2+)))
15916
15917 (define-public r-r2html
15918 (package
15919 (name "r-r2html")
15920 (version "2.3.2")
15921 (source
15922 (origin
15923 (method url-fetch)
15924 (uri (cran-uri "R2HTML" version))
15925 (sha256
15926 (base32
15927 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
15928 (properties `((upstream-name . "R2HTML")))
15929 (build-system r-build-system)
15930 (home-page "https://github.com/nalimilan/R2HTML")
15931 (synopsis "HTML export for R objects")
15932 (description
15933 "This package includes HTML functions and methods to write in an HTML
15934 file. Thus, making HTML reports is easy. It includes a function that allows
15935 redirection on the fly, which appears to be very useful for teaching purposes,
15936 as the student can keep a copy of the produced output to keep all that they
15937 did during the course. The package comes with a vignette describing how to
15938 write HTML reports for statistical analysis. Finally, a driver for Sweave
15939 parses HTML flat files containing R code and to automatically write
15940 the corresponding outputs (tables and graphs).")
15941 (license license:gpl2+)))
15942
15943 (define-public r-rjava
15944 (package
15945 (name "r-rjava")
15946 (version "0.9-13")
15947 (source
15948 (origin
15949 (method url-fetch)
15950 (uri (cran-uri "rJava" version))
15951 (sha256
15952 (base32
15953 "1x3mihyqzr61j52rwaqciw43mkjzmhib4s6qf57v6xj40ksqh5jv"))))
15954 (properties `((upstream-name . "rJava")))
15955 (build-system r-build-system)
15956 (arguments
15957 `(#:modules ((guix build utils)
15958 (guix build r-build-system)
15959 (ice-9 match))
15960 #:phases
15961 (modify-phases %standard-phases
15962 (add-after 'unpack 'set-JAVA_HOME
15963 (lambda* (#:key inputs #:allow-other-keys)
15964 (let ((jdk (assoc-ref inputs "jdk")))
15965 (setenv "JAVA_HOME" jdk)
15966 (setenv "JAVA" (which "java"))
15967 (setenv "JAR" (which "jar"))
15968 (setenv "JAVAC" (which "javac"))
15969 (setenv "JAVAH" (which "javah"))
15970 (setenv "JAVA_CPPFLAGS"
15971 (string-append "-I" jdk "/include "
15972 "-I" jdk "/include/linux"))
15973 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
15974 ((lib) (setenv "JAVA_LIBS" lib))
15975 (_ (error "Could not find libjvm.so"))))
15976 #t)))))
15977 (inputs
15978 `(("icu4c" ,icu4c)
15979 ("jdk" ,icedtea-8 "jdk")
15980 ("pcre" ,pcre)
15981 ("zlib" ,zlib)))
15982 (home-page "https://www.rforge.net/rJava/")
15983 (synopsis "Low-Level R to Java interface")
15984 (description
15985 "This package provides a low-level interface to the Java VM very much
15986 like .C/.Call and friends. It allows the creation of objects, calling methods
15987 and accessing fields.")
15988 (license license:gpl2)))
15989
15990 (define-public r-svmisc
15991 (package
15992 (name "r-svmisc")
15993 (version "1.1.0")
15994 (source
15995 (origin
15996 (method url-fetch)
15997 (uri (cran-uri "svMisc" version))
15998 (sha256
15999 (base32
16000 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
16001 (properties `((upstream-name . "svMisc")))
16002 (build-system r-build-system)
16003 (home-page "https://github.com/SciViews/svMisc")
16004 (synopsis "Miscellaneous functions for SciViews")
16005 (description
16006 "This package provides miscellaneous functions for SciViews or general
16007 use, including tools to manage a temporary environment attached to the search
16008 path for temporary variables you do not want to @code{save()} or
16009 @code{load()}; test the current platform; showing progress bars, etc.")
16010 (license license:gpl2)))
16011
16012 (define-public r-xyz
16013 (package
16014 (name "r-xyz")
16015 (version "0.2")
16016 (source
16017 (origin
16018 (method url-fetch)
16019 (uri (cran-uri "xyz" version))
16020 (sha256
16021 (base32
16022 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
16023 (build-system r-build-system)
16024 (propagated-inputs
16025 `(("r-rcpp" ,r-rcpp)))
16026 (home-page "https://cran.r-project.org/web/packages/xyz/")
16027 (synopsis "Algorithm for fast interaction search in high-dimensional data")
16028 (description
16029 "High dimensional interaction search by brute force requires a quadratic
16030 computational cost in the number of variables. The xyz algorithm provably
16031 finds strong interactions in almost linear time. For details of the algorithm
16032 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
16033 interaction search in high-dimensional data.")
16034 ;; Any version of the GPL.
16035 (license license:gpl2+)))
16036
16037 (define-public r-rttf2pt1
16038 (package
16039 (name "r-rttf2pt1")
16040 (version "1.3.8")
16041 (source
16042 (origin
16043 (method url-fetch)
16044 (uri (cran-uri "Rttf2pt1" version))
16045 (sha256
16046 (base32
16047 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
16048 (properties `((upstream-name . "Rttf2pt1")))
16049 (build-system r-build-system)
16050 (home-page "https://github.com/wch/Rttf2pt1")
16051 (synopsis "Font conversion utility")
16052 (description
16053 "This package contains the program @code{ttf2pt1}, for use with the
16054 @code{extrafont} package.")
16055 ;; Most of the files are covered under the Expat license. Some files are
16056 ;; covered under BSD-3. Deviations for individual files are recorded in
16057 ;; the LICENSE file.
16058 (license (list license:bsd-3 license:expat
16059 (license:non-copyleft "file://LICENSE")))))
16060
16061 (define-public r-extrafontdb
16062 (package
16063 (name "r-extrafontdb")
16064 (version "1.0")
16065 (source
16066 (origin
16067 (method url-fetch)
16068 (uri (cran-uri "extrafontdb" version))
16069 (sha256
16070 (base32
16071 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
16072 (build-system r-build-system)
16073 (home-page "https://github.com/wch/extrafontdb")
16074 (synopsis "Database for the extrafont package")
16075 (description
16076 "This package holds the database for the @code{extrafont} package.")
16077 (license license:gpl2)))
16078
16079 (define-public r-extrafont
16080 (package
16081 (name "r-extrafont")
16082 (version "0.17")
16083 (source
16084 (origin
16085 (method url-fetch)
16086 (uri (cran-uri "extrafont" version))
16087 (sha256
16088 (base32
16089 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
16090 (build-system r-build-system)
16091 (propagated-inputs
16092 `(("r-extrafontdb" ,r-extrafontdb)
16093 ("r-rttf2pt1" ,r-rttf2pt1)))
16094 (home-page "https://github.com/wch/extrafont")
16095 (synopsis "Tools for using fonts in R")
16096 (description
16097 "The extrafont package makes it easier to use fonts other than the basic
16098 PostScript fonts that R uses. Fonts that are imported into extrafont can be
16099 used with PDF or PostScript output files. There are two hurdles for using
16100 fonts in PDF (or Postscript) output files:
16101
16102 @enumerate
16103 @item Making R aware of the font and the dimensions of the characters.
16104 @item Embedding the fonts in the PDF file so that the PDF can be displayed
16105 properly on a device that doesn't have the font. This is usually needed if
16106 you want to print the PDF file or share it with others.
16107 @end enumerate
16108
16109 The extrafont package makes both of these things easier.")
16110 (license license:gpl2)))
16111
16112 (define-public r-xkcd
16113 (package
16114 (name "r-xkcd")
16115 (version "0.0.6")
16116 (source
16117 (origin
16118 (method url-fetch)
16119 (uri (cran-uri "xkcd" version))
16120 (sha256
16121 (base32
16122 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
16123 (build-system r-build-system)
16124 (propagated-inputs
16125 `(("r-extrafont" ,r-extrafont)
16126 ("r-ggplot2" ,r-ggplot2)
16127 ("r-hmisc" ,r-hmisc)))
16128 (home-page "https://cran.r-project.org/web/packages/xkcd/")
16129 (synopsis "Plot ggplot2 graphics in the XKCD style")
16130 (description
16131 "This package provides the means to plot ggplot2 graphs in the style of
16132 the XKCD web comic.")
16133 (license license:gpl3)))
16134
16135 (define-public r-msigdbr
16136 (package
16137 (name "r-msigdbr")
16138 (version "7.2.1")
16139 (source
16140 (origin
16141 (method url-fetch)
16142 (uri (cran-uri "msigdbr" version))
16143 (sha256
16144 (base32
16145 "1rc2p9vw57pn4prmfgay4w18qd53ggq7wxfsi9kp7w25ciip1dq1"))))
16146 (build-system r-build-system)
16147 (propagated-inputs
16148 `(("r-dplyr" ,r-dplyr)
16149 ("r-magrittr" ,r-magrittr)
16150 ("r-rlang" ,r-rlang)
16151 ("r-tibble" ,r-tibble)
16152 ("r-tidyselect" ,r-tidyselect)))
16153 (native-inputs
16154 `(("r-knitr" ,r-knitr)))
16155 (home-page "https://github.com/igordot/msigdbr")
16156 (synopsis "MSigDB gene sets for multiple organisms")
16157 (description
16158 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
16159 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
16160 software in a standard R data frame with key-value pairs. Included are the
16161 original human gene symbols and Entrez IDs as well as the equivalents for
16162 various frequently studied model organisms such as mouse, rat, pig, fly, and
16163 yeast.")
16164 ;; The package is covered under the Expat license, but the upstream MSigDB
16165 ;; files are made available under the Creative Commons Attribution 4.0
16166 ;; International license.
16167 (license (list license:expat license:cc-by4.0))))
16168
16169 (define-public r-gridgraphics
16170 (package
16171 (name "r-gridgraphics")
16172 (version "0.5-1")
16173 (source
16174 (origin
16175 (method url-fetch)
16176 (uri (cran-uri "gridGraphics" version))
16177 (sha256
16178 (base32
16179 "12yswy02j3h5wir7m5jnkhpjmb0sa4snn61vjd68i49qwsa6w219"))))
16180 (properties `((upstream-name . "gridGraphics")))
16181 (build-system r-build-system)
16182 (home-page "https://github.com/pmur002/gridgraphics")
16183 (synopsis "Redraw base graphics using @code{grid} graphics")
16184 (description
16185 "This package provides functions to convert a page of plots drawn with
16186 the @code{graphics} package into identical output drawn with the @code{grid}
16187 package. The result looks like the original @code{graphics}-based plot, but
16188 consists of @code{grid} grobs and viewports that can then be manipulated with
16189 @code{grid} functions (e.g., edit grobs and revisit viewports).")
16190 (license license:gpl2+)))
16191
16192 (define-public r-farver
16193 (package
16194 (name "r-farver")
16195 (version "2.1.0")
16196 (source
16197 (origin
16198 (method url-fetch)
16199 (uri (cran-uri "farver" version))
16200 (sha256
16201 (base32
16202 "1x6ffwxqbrwlylnk995jz2a6nz2y9z59jaq0ncpni7q40w367j75"))))
16203 (build-system r-build-system)
16204 (home-page "https://github.com/thomasp85/farver")
16205 (synopsis "Vectorized color conversion and comparison")
16206 (description
16207 "The encoding of color can be handled in many different ways, using
16208 different color spaces. As different color spaces have different uses,
16209 efficient conversion between these representations are important. This
16210 package provides a set of functions that gives access to very fast color space
16211 conversion and comparisons implemented in C++, and offers 100-fold speed
16212 improvements over the @code{convertColor} function in the @code{grDevices}
16213 package.")
16214 (license license:expat)))
16215
16216 (define-public r-ggplotify
16217 (package
16218 (name "r-ggplotify")
16219 (version "0.0.5")
16220 (source
16221 (origin
16222 (method url-fetch)
16223 (uri (cran-uri "ggplotify" version))
16224 (sha256
16225 (base32
16226 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
16227 (build-system r-build-system)
16228 (propagated-inputs
16229 `(("r-ggplot2" ,r-ggplot2)
16230 ("r-gridgraphics" ,r-gridgraphics)
16231 ("r-rvcheck" ,r-rvcheck)))
16232 (native-inputs
16233 `(("r-knitr" ,r-knitr)))
16234 (home-page "https://github.com/GuangchuangYu/ggplotify")
16235 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
16236 (description
16237 "This package provides tools to convert plot function calls (using
16238 expression or formula) to @code{grob} or @code{ggplot} objects that are
16239 compatible with the @code{grid} and @code{ggplot2} environment. With this
16240 package, we are able to e.g. use @code{cowplot} to align plots produced by
16241 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
16242 converting them to @code{ggplot} objects.")
16243 (license license:artistic2.0)))
16244
16245 (define-public r-triebeard
16246 (package
16247 (name "r-triebeard")
16248 (version "0.3.0")
16249 (source
16250 (origin
16251 (method url-fetch)
16252 (uri (cran-uri "triebeard" version))
16253 (sha256
16254 (base32
16255 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
16256 (build-system r-build-system)
16257 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16258 (home-page "https://github.com/Ironholds/triebeard/")
16259 (synopsis "Radix trees in Rcpp")
16260 (description
16261 "Radix trees, or tries, are key-value data structures optimized for
16262 efficient lookups, similar in purpose to hash tables. This package provides
16263 an implementation of radix trees for use in R programming and in developing
16264 packages with Rcpp.")
16265 (license license:expat)))
16266
16267 (define-public r-tweenr
16268 (package
16269 (name "r-tweenr")
16270 (version "1.0.1")
16271 (source
16272 (origin
16273 (method url-fetch)
16274 (uri (cran-uri "tweenr" version))
16275 (sha256
16276 (base32
16277 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
16278 (build-system r-build-system)
16279 (propagated-inputs
16280 `(("r-farver" ,r-farver)
16281 ("r-magrittr" ,r-magrittr)
16282 ("r-rcpp" ,r-rcpp)
16283 ("r-rlang" ,r-rlang)))
16284 (home-page "https://github.com/thomasp85/tweenr")
16285 (synopsis "Interpolate data for smooth animations")
16286 (description
16287 "In order to create smooth animation between states of data, tweening is
16288 necessary. This package provides a range of functions for creating tweened
16289 data that can be used as basis for animation. Furthermore it adds a number of
16290 vectorized interpolaters for common R data types such as numeric, date and
16291 color.")
16292 (license license:expat)))
16293
16294 (define-public r-polyclip
16295 (package
16296 (name "r-polyclip")
16297 (version "1.10-0")
16298 (source
16299 (origin
16300 (method url-fetch)
16301 (uri (cran-uri "polyclip" version))
16302 (sha256
16303 (base32
16304 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
16305 (build-system r-build-system)
16306 (native-inputs `(("pkg-config" ,pkg-config)))
16307 (home-page "http://www.angusj.com/delphi/clipper.php")
16308 (synopsis "Polygon clipping")
16309 (description
16310 "This package provides an R port of the library Clipper. It performs
16311 polygon clipping operations (intersection, union, set minus, set difference)
16312 for polygonal regions of arbitrary complexity, including holes. It computes
16313 offset polygons (spatial buffer zones, morphological dilations, Minkowski
16314 dilations) for polygonal regions and polygonal lines. It computes the
16315 Minkowski Sum of general polygons. There is a function for removing
16316 self-intersections from polygon data.")
16317 (license license:boost1.0)))
16318
16319 (define-public r-urltools
16320 (package
16321 (name "r-urltools")
16322 (version "1.7.3")
16323 (source
16324 (origin
16325 (method url-fetch)
16326 (uri (cran-uri "urltools" version))
16327 (sha256
16328 (base32
16329 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
16330 (build-system r-build-system)
16331 (propagated-inputs
16332 `(("r-rcpp" ,r-rcpp)
16333 ("r-triebeard" ,r-triebeard)))
16334 (home-page "https://github.com/Ironholds/urltools/")
16335 (synopsis "Vectorized tools for URL handling and parsing")
16336 (description
16337 "This package provides a toolkit for all URL-handling needs, including
16338 encoding and decoding, parsing, parameter extraction and modification. All
16339 functions are designed to be both fast and entirely vectorized. It is
16340 intended to be useful for people dealing with web-related datasets, such as
16341 server-side logs, although may be useful for other situations involving large
16342 sets of URLs.")
16343 (license license:expat)))
16344
16345 (define-public r-ggforce
16346 (package
16347 (name "r-ggforce")
16348 (version "0.3.3")
16349 (source
16350 (origin
16351 (method url-fetch)
16352 (uri (cran-uri "ggforce" version))
16353 (sha256
16354 (base32
16355 "0bwzjbjl678xvc2ihm80dwn9pidwafqjdab3k299csys16s3na1a"))))
16356 (build-system r-build-system)
16357 (propagated-inputs
16358 `(("r-ggplot2" ,r-ggplot2)
16359 ("r-gtable" ,r-gtable)
16360 ("r-mass" ,r-mass)
16361 ("r-polyclip" ,r-polyclip)
16362 ("r-rcpp" ,r-rcpp)
16363 ("r-rcppeigen" ,r-rcppeigen)
16364 ("r-rlang" ,r-rlang)
16365 ("r-scales" ,r-scales)
16366 ("r-tidyselect" ,r-tidyselect)
16367 ("r-tweenr" ,r-tweenr)
16368 ("r-withr" ,r-withr)))
16369 (home-page "https://ggforce.data-imaginist.com")
16370 (synopsis "Accelerating ggplot2")
16371 (description
16372 "The aim of the ggplot2 package is to aid in visual data investigations.
16373 This focus has led to a lack of facilities for composing specialized plots.
16374 Thi package aims to be a collection of mainly new statistics and geometries
16375 that fills this gap.")
16376 (license license:expat)))
16377
16378 (define-public r-europepmc
16379 (package
16380 (name "r-europepmc")
16381 (version "0.4")
16382 (source
16383 (origin
16384 (method url-fetch)
16385 (uri (cran-uri "europepmc" version))
16386 (sha256
16387 (base32
16388 "174nnyc2mbgqxb5kgqabn1vf71c2mps7ig2bclq4is0f7nb64pym"))))
16389 (build-system r-build-system)
16390 (propagated-inputs
16391 `(("r-dplyr" ,r-dplyr)
16392 ("r-httr" ,r-httr)
16393 ("r-jsonlite" ,r-jsonlite)
16394 ("r-plyr" ,r-plyr)
16395 ("r-progress" ,r-progress)
16396 ("r-purrr" ,r-purrr)
16397 ("r-rlang" ,r-rlang)
16398 ("r-tibble" ,r-tibble)
16399 ("r-tidyr" ,r-tidyr)
16400 ("r-urltools" ,r-urltools)
16401 ("r-xml2" ,r-xml2)))
16402 (native-inputs
16403 `(("r-knitr" ,r-knitr)))
16404 (home-page "https://github.com/ropensci/europepmc/")
16405 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
16406 (description
16407 "This package provides an R Client for the
16408 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
16409 Service}. It gives access to both metadata on life science literature and
16410 open access full texts. Europe PMC indexes all PubMed content and other
16411 literature sources including Agricola, a bibliographic database of citations
16412 to the agricultural literature, or Biological Patents. In addition to
16413 bibliographic metadata, the client allows users to fetch citations and
16414 reference lists. Links between life-science literature and other EBI
16415 databases, including ENA, PDB or ChEMBL are also accessible.")
16416 (license license:gpl3)))
16417
16418 (define-public r-ggraph
16419 (package
16420 (name "r-ggraph")
16421 (version "2.0.5")
16422 (source
16423 (origin
16424 (method url-fetch)
16425 (uri (cran-uri "ggraph" version))
16426 (sha256
16427 (base32
16428 "0m4n8iw2b9jk8hcy5blg5w59zsqcpsbv27wbw598dvljpafx8sp3"))))
16429 (build-system r-build-system)
16430 (propagated-inputs
16431 `(("r-digest" ,r-digest)
16432 ("r-dplyr" ,r-dplyr)
16433 ("r-ggforce" ,r-ggforce)
16434 ("r-ggplot2" ,r-ggplot2)
16435 ("r-ggrepel" ,r-ggrepel)
16436 ("r-graphlayouts" ,r-graphlayouts)
16437 ("r-gtable" ,r-gtable)
16438 ("r-igraph" ,r-igraph)
16439 ("r-mass" ,r-mass)
16440 ("r-rcpp" ,r-rcpp)
16441 ("r-rlang" ,r-rlang)
16442 ("r-scales" ,r-scales)
16443 ("r-tidygraph" ,r-tidygraph)
16444 ("r-viridis" ,r-viridis)
16445 ("r-withr" ,r-withr)))
16446 (native-inputs
16447 `(("r-knitr" ,r-knitr)))
16448 (home-page "https://cran.r-project.org/web/packages/ggraph/")
16449 (synopsis "Implementation of grammar of graphics for graphs and networks")
16450 (description
16451 "The grammar of graphics as implemented in ggplot2 is a poor fit for
16452 graph and network visualizations due to its reliance on tabular data input.
16453 The ggraph package is an extension of the ggplot2 API tailored to graph
16454 visualizations and provides the same flexible approach to building up plots
16455 layer by layer.")
16456 (license license:gpl3)))
16457
16458 (define-public r-gkmsvm
16459 (package
16460 (name "r-gkmsvm")
16461 (version "0.81.0")
16462 (source
16463 (origin
16464 (method url-fetch)
16465 (uri (cran-uri "gkmSVM" version))
16466 (sha256
16467 (base32
16468 "119g5rhc7ffyviz04r04aj5z1g6abnj3ddd01g7db505sdr6lapj"))))
16469 (properties `((upstream-name . "gkmSVM")))
16470 (build-system r-build-system)
16471 (propagated-inputs
16472 `(("r-kernlab" ,r-kernlab)
16473 ("r-rcpp" ,r-rcpp)
16474 ("r-rocr" ,r-rocr)
16475 ("r-seqinr" ,r-seqinr)))
16476 (home-page "https://cran.r-project.org/web/packages/gkmSVM")
16477 (synopsis "Gapped-kmer support vector machine")
16478 (description
16479 "This R package provides tools for training gapped-kmer SVM classifiers
16480 for DNA and protein sequences. This package supports several sequence
16481 kernels, including: gkmSVM, kmer-SVM, mismatch kernel and wildcard kernel.")
16482 (license license:gpl2+)))
16483
16484 (define-public r-varselrf
16485 (package
16486 (name "r-varselrf")
16487 (version "0.7-8")
16488 (source
16489 (origin
16490 (method url-fetch)
16491 (uri (cran-uri "varSelRF" version))
16492 (sha256
16493 (base32
16494 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
16495 (properties `((upstream-name . "varSelRF")))
16496 (build-system r-build-system)
16497 (propagated-inputs
16498 `(("r-randomforest" ,r-randomforest)))
16499 (home-page "https://www.ligarto.org/rdiaz/software/software")
16500 (synopsis "Variable selection using random forests")
16501 (description
16502 "This package provides tools for the variable selection from random
16503 forests using both backwards variable elimination (for the selection of small
16504 sets of non-redundant variables) and selection based on the importance
16505 spectrum (somewhat similar to scree plots; for the selection of large,
16506 potentially highly-correlated variables). The main applications are in
16507 high-dimensional data (e.g., microarray data, and other genomics and
16508 proteomics applications).")
16509 (license license:gpl2+)))
16510
16511 (define-public r-pamr
16512 (package
16513 (name "r-pamr")
16514 (version "1.56.1")
16515 (source
16516 (origin
16517 (method url-fetch)
16518 (uri (cran-uri "pamr" version))
16519 (sha256
16520 (base32
16521 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
16522 (build-system r-build-system)
16523 (propagated-inputs
16524 `(("r-cluster" ,r-cluster)
16525 ("r-survival" ,r-survival)))
16526 (native-inputs `(("gfortran" ,gfortran)))
16527 (home-page "https://cran.r-project.org/web/packages/pamr/")
16528 (synopsis "Prediction Analysis for Microarrays")
16529 (description
16530 "This package provides some functions for sample classification in
16531 microarrays.")
16532 (license license:gpl2)))
16533
16534 (define-public r-rda
16535 (package
16536 (name "r-rda")
16537 (version "1.0.2-2.1")
16538 (source
16539 (origin
16540 (method url-fetch)
16541 (uri (cran-uri "rda" version))
16542 (sha256
16543 (base32
16544 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
16545 (build-system r-build-system)
16546 (home-page "https://cran.r-project.org/web/packages/rda/")
16547 (synopsis "Shrunken centroids regularized discriminant analysis")
16548 (description
16549 "This package provides tools for shrunken centroids regularized
16550 discriminant analysis for the purpose of classifying high dimensional data.")
16551 (license license:gpl2+)))
16552
16553 (define-public r-ggvis
16554 (package
16555 (name "r-ggvis")
16556 (version "0.4.7")
16557 (source
16558 (origin
16559 (method url-fetch)
16560 (uri (cran-uri "ggvis" version))
16561 (sha256
16562 (base32
16563 "1qv512pd4x5vmx15y9nvqmabbbw14h75fmi1sjbcg5yl25z0cswy"))))
16564 (build-system r-build-system)
16565 (propagated-inputs
16566 `(("r-assertthat" ,r-assertthat)
16567 ("r-dplyr" ,r-dplyr)
16568 ("r-htmltools" ,r-htmltools)
16569 ("r-jsonlite" ,r-jsonlite)
16570 ("r-magrittr" ,r-magrittr)
16571 ("r-rlang" ,r-rlang)
16572 ("r-shiny" ,r-shiny)))
16573 (home-page "https://ggvis.rstudio.com/")
16574 (synopsis "Interactive grammar of graphics")
16575 (description
16576 "This package is a data visualization package for R providing an
16577 implementation of an interactive grammar of graphics, taking the best parts of
16578 ggplot2, combining them with the reactive framework of Shiny and drawing web
16579 graphics using Vega.")
16580 (license license:gpl2)))
16581
16582 (define-public r-gbm
16583 (package
16584 (name "r-gbm")
16585 (version "2.1.8")
16586 (source
16587 (origin
16588 (method url-fetch)
16589 (uri (cran-uri "gbm" version))
16590 (sha256
16591 (base32
16592 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
16593 (build-system r-build-system)
16594 (propagated-inputs
16595 `(("r-lattice" ,r-lattice)
16596 ("r-survival" ,r-survival)))
16597 (native-inputs
16598 `(("r-knitr" ,r-knitr)))
16599 (home-page "https://github.com/gbm-developers/gbm")
16600 (synopsis "Generalized boosted regression models")
16601 (description
16602 "This package is an implementation of extensions to Freund and Schapire's
16603 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
16604 regression methods for least squares, absolute loss, t-distribution loss,
16605 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
16606 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
16607 and Learning to Rank measures (LambdaMart).")
16608 (license license:gpl2+)))
16609
16610 (define-public r-threejs
16611 (package
16612 (name "r-threejs")
16613 (version "0.3.3")
16614 (source
16615 (origin
16616 (method url-fetch)
16617 (uri (cran-uri "threejs" version))
16618 (sha256
16619 (base32
16620 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
16621 (build-system r-build-system)
16622 (arguments
16623 `(#:modules ((guix build utils)
16624 (guix build r-build-system)
16625 (srfi srfi-1)
16626 (ice-9 popen))
16627 #:phases
16628 (modify-phases %standard-phases
16629 (add-after 'unpack 'process-javascript
16630 (lambda* (#:key inputs #:allow-other-keys)
16631 (with-directory-excursion "inst"
16632 (call-with-values
16633 (lambda ()
16634 (unzip2
16635 `((,(assoc-ref inputs "js-jquery")
16636 "htmlwidgets/lib/jquery/jquery.min.js")
16637 (,(assoc-ref inputs "js-threejs-111")
16638 "htmlwidgets/lib/threejs-111/three.min.js"))))
16639 (lambda (sources targets)
16640 (for-each (lambda (source target)
16641 (format #t "Processing ~a --> ~a~%"
16642 source target)
16643 (delete-file target)
16644 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16645 (call-with-output-file target
16646 (lambda (port)
16647 (dump-port minified port)))))
16648 sources targets))))
16649 #t)))))
16650 (propagated-inputs
16651 `(("r-base64enc" ,r-base64enc)
16652 ("r-crosstalk" ,r-crosstalk)
16653 ("r-htmlwidgets" ,r-htmlwidgets)
16654 ("r-igraph" ,r-igraph)))
16655 (native-inputs
16656 `(("uglify-js" ,uglify-js)
16657 ("js-jquery"
16658 ,(origin
16659 (method url-fetch)
16660 (uri "https://code.jquery.com/jquery-1.12.4.js")
16661 (sha256
16662 (base32
16663 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
16664 ("js-threejs-111"
16665 ,(origin
16666 (method url-fetch)
16667 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
16668 (sha256
16669 (base32
16670 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
16671 (home-page "https://bwlewis.github.io/rthreejs")
16672 (synopsis "Interactive 3D scatter plots, networks and globes")
16673 (description
16674 "Create interactive 3D scatter plots, network plots, and globes in R
16675 using the three.js visualization library.")
16676 (license license:expat)))
16677
16678 (define-public r-mlbench
16679 (package
16680 (name "r-mlbench")
16681 (version "2.1-3")
16682 (source
16683 (origin
16684 (method url-fetch)
16685 (uri (cran-uri "mlbench" version))
16686 (sha256
16687 (base32
16688 "157iqsld0wj8g8cbs7nh6p2x6kasmkhs3078hsmqac946gk2pydi"))))
16689 (build-system r-build-system)
16690 (home-page "https://cran.r-project.org/web/packages/mlbench/")
16691 (synopsis "Machine learning benchmark problems")
16692 (description
16693 "This package provides a collection of artificial and real-world machine
16694 learning benchmark problems, including, e.g., several data sets from the UCI
16695 repository.")
16696 (license license:gpl2)))
16697
16698 (define-public r-mpm
16699 (package
16700 (name "r-mpm")
16701 (version "1.0-22")
16702 (source
16703 (origin
16704 (method url-fetch)
16705 (uri (cran-uri "mpm" version))
16706 (sha256
16707 (base32
16708 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
16709 (build-system r-build-system)
16710 (propagated-inputs
16711 `(("r-kernsmooth" ,r-kernsmooth)
16712 ("r-mass" ,r-mass)))
16713 (home-page "http://mpm.r-forge.r-project.org")
16714 (synopsis "Multivariate projection methods")
16715 (description
16716 "This is a package for exploratory graphical analysis of multivariate
16717 data, specifically gene expression data with different projection methods:
16718 principal component analysis, correspondence analysis, spectral map
16719 analysis.")
16720 (license license:gpl2+)))
16721
16722 (define-public r-png
16723 (package
16724 (name "r-png")
16725 (version "0.1-7")
16726 (source (origin
16727 (method url-fetch)
16728 (uri (cran-uri "png" version))
16729 (sha256
16730 (base32
16731 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
16732 (build-system r-build-system)
16733 (inputs
16734 `(("libpng" ,libpng)
16735 ("zlib" ,zlib)))
16736 (home-page "https://www.rforge.net/png/")
16737 (synopsis "Read and write PNG images")
16738 (description
16739 "This package provides an easy and simple way to read, write and display
16740 bitmap images stored in the PNG format. It can read and write both files and
16741 in-memory raw vectors.")
16742 ;; Any of these GPL versions.
16743 (license (list license:gpl2 license:gpl3))))
16744
16745 (define-public r-ggcorrplot
16746 (package
16747 (name "r-ggcorrplot")
16748 (version "0.1.3")
16749 (source
16750 (origin
16751 (method url-fetch)
16752 (uri (cran-uri "ggcorrplot" version))
16753 (sha256
16754 (base32
16755 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
16756 (build-system r-build-system)
16757 (propagated-inputs
16758 `(("r-ggplot2" ,r-ggplot2)
16759 ("r-reshape2" ,r-reshape2)))
16760 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
16761 (synopsis "Visualization of a correlation matrix using ggplot2")
16762 (description
16763 "The ggcorrplot package can be used to visualize easily a correlation
16764 matrix using ggplot2. It provides a solution for reordering the correlation
16765 matrix and displays the significance level on the plot. It also includes a
16766 function for computing a matrix of correlation p-values.")
16767 (license license:gpl2)))
16768
16769 (define-public r-gridtext
16770 (package
16771 (name "r-gridtext")
16772 (version "0.1.4")
16773 (source
16774 (origin
16775 (method url-fetch)
16776 (uri (cran-uri "gridtext" version))
16777 (sha256
16778 (base32
16779 "131kw7nkfwksviwfifd2kk7lyvhxzzzv1nnj8rahkr3dik3akk61"))))
16780 (properties `((upstream-name . "gridtext")))
16781 (build-system r-build-system)
16782 (propagated-inputs
16783 `(("r-jpeg" ,r-jpeg)
16784 ("r-markdown" ,r-markdown)
16785 ("r-png" ,r-png)
16786 ("r-rcpp" ,r-rcpp)
16787 ("r-rcurl" ,r-rcurl)
16788 ("r-rlang" ,r-rlang)
16789 ("r-stringr" ,r-stringr)
16790 ("r-xml2" ,r-xml2)))
16791 (home-page "https://wilkelab.org/gridtext/")
16792 (synopsis "Improved text rendering support for Grid graphics")
16793 (description
16794 "This package provides support for rendering of formatted text using Grid
16795 graphics. Text can be formatted via a minimal subset of Markdown, HTML, and
16796 inline CSS directives, and it can be rendered both with and without word
16797 wrap.")
16798 (license license:expat)))
16799
16800 (define-public r-ggtext
16801 (package
16802 (name "r-ggtext")
16803 (version "0.1.1")
16804 (source
16805 (origin
16806 (method url-fetch)
16807 (uri (cran-uri "ggtext" version))
16808 (sha256
16809 (base32
16810 "0n19dlcys8v7myfyckr6dnq0kx79k3sbh8nwx1jsx8pgzfbi8a2b"))))
16811 (properties `((upstream-name . "ggtext")))
16812 (build-system r-build-system)
16813 (propagated-inputs
16814 `(("r-ggplot2" ,r-ggplot2)
16815 ("r-gridtext" ,r-gridtext)
16816 ("r-rlang" ,r-rlang)
16817 ("r-scales" ,r-scales)))
16818 (native-inputs `(("r-knitr" ,r-knitr)))
16819 (home-page "https://wilkelab.org/ggtext/")
16820 (synopsis "Improved text rendering support for ggplot2")
16821 (description
16822 "This package provides a ggplot2 extension that enables the rendering of
16823 complex formatted plot labels (titles, subtitles, facet labels, axis labels,
16824 etc.). Text boxes with automatic word wrap are also supported.")
16825 (license license:gpl2)))
16826
16827 ;; This package includes minified JavaScript files. When upgrading please
16828 ;; check that there are no new minified JavaScript files.
16829 (define-public r-flexdashboard
16830 (package
16831 (name "r-flexdashboard")
16832 (version "0.5.2")
16833 (source
16834 (origin
16835 (method url-fetch)
16836 (uri (cran-uri "flexdashboard" version))
16837 (sha256
16838 (base32
16839 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
16840 (modules '((guix build utils)))
16841 (snippet
16842 '(begin
16843 ;; Delete bundled minified JavaScript files
16844 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
16845 (delete-file "inst/www/sly/sly.min.js")
16846 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
16847 (delete-file "inst/www/prism/prism.js")
16848 #t))))
16849 (build-system r-build-system)
16850 (arguments
16851 `(#:modules ((guix build utils)
16852 (guix build r-build-system)
16853 (srfi srfi-1)
16854 (srfi srfi-26)
16855 (ice-9 popen)
16856 (ice-9 textual-ports))
16857 #:phases
16858 (modify-phases %standard-phases
16859 (add-after 'unpack 'process-javascript
16860 (lambda* (#:key inputs #:allow-other-keys)
16861 (with-directory-excursion "inst"
16862 ;; Concatenate all components of prism.js
16863 (let ((contents (string-join
16864 (map (lambda (name)
16865 (call-with-input-file
16866 (assoc-ref inputs name)
16867 get-string-all))
16868 (list "js-prism"
16869 "js-prism-r"
16870 "js-prism-line-numbers"))
16871 "\n")))
16872 (call-with-output-file "prism-src.js"
16873 (cut display contents <>)))
16874 (call-with-values
16875 (lambda ()
16876 (unzip2
16877 `(("www/stickytableheaders/jquery.stickytableheaders.js"
16878 "www/stickytableheaders/jquery.stickytableheaders.min.js")
16879 ("www/sly/sly.js"
16880 "www/sly/sly.min.js")
16881 ("prism-src.js"
16882 "www/prism/prism.js")
16883 (,(assoc-ref inputs "js-raphael")
16884 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
16885 (,(assoc-ref inputs "js-featherlight")
16886 "www/featherlight/featherlight.min.js"))))
16887 (lambda (sources targets)
16888 (for-each (lambda (source target)
16889 (format #t "Processing ~a --> ~a~%"
16890 source target)
16891 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16892 (call-with-output-file target
16893 (lambda (port)
16894 (dump-port minified port)))))
16895 sources targets))))
16896 #t)))))
16897 (propagated-inputs
16898 `(("r-htmltools" ,r-htmltools)
16899 ("r-htmlwidgets" ,r-htmlwidgets)
16900 ("r-jsonlite" ,r-jsonlite)
16901 ("r-knitr" ,r-knitr)
16902 ("r-rmarkdown" ,r-rmarkdown)
16903 ("r-shiny" ,r-shiny)))
16904 (native-inputs
16905 `(("uglify-js" ,uglify-js)
16906 ("js-raphael"
16907 ,(origin
16908 (method url-fetch)
16909 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
16910 (sha256
16911 (base32
16912 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
16913 ("js-prism"
16914 ,(origin
16915 (method url-fetch)
16916 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
16917 (sha256
16918 (base32
16919 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
16920 ("js-prism-r"
16921 ,(origin
16922 (method url-fetch)
16923 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
16924 (sha256
16925 (base32
16926 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
16927 ("js-prism-line-numbers"
16928 ,(origin
16929 (method url-fetch)
16930 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
16931 (sha256
16932 (base32
16933 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
16934 ("js-featherlight"
16935 ,(origin
16936 (method url-fetch)
16937 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
16938 (sha256
16939 (base32
16940 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
16941 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
16942 (synopsis "R Markdown format for flexible dashboards")
16943 (description
16944 "This package provides an R Markdown format for converting an R Markdown
16945 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
16946 of its components to the containing web page.")
16947 (license license:expat)))
16948
16949 (define-public r-preseqr
16950 (package
16951 (name "r-preseqr")
16952 (version "4.0.0")
16953 (source
16954 (origin
16955 (method url-fetch)
16956 (uri (cran-uri "preseqR" version))
16957 (sha256
16958 (base32
16959 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
16960 (properties `((upstream-name . "preseqR")))
16961 (build-system r-build-system)
16962 (propagated-inputs
16963 `(("r-polynom" ,r-polynom)))
16964 (home-page "https://cran.r-project.org/web/packages/preseqR/")
16965 (synopsis "Predicting species accumulation curves")
16966 (description
16967 "This package can be used to predict the r-species accumulation
16968 curve (r-SAC), which is the number of species represented at least r times as
16969 a function of the sampling effort. When r = 1, the curve is known as the
16970 species accumulation curve, or the library complexity curve in high-throughput
16971 genomic sequencing. The package includes both parametric and nonparametric
16972 methods, as described by Deng C, et al. (2018).")
16973 (license license:gpl3)))
16974
16975 (define-public r-mapplots
16976 (package
16977 (name "r-mapplots")
16978 (version "1.5.1")
16979 (source
16980 (origin
16981 (method url-fetch)
16982 (uri (cran-uri "mapplots" version))
16983 (sha256
16984 (base32
16985 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
16986 (build-system r-build-system)
16987 (home-page "https://cran.r-project.org/web/packages/mapplots/")
16988 (synopsis "Data visualization on maps")
16989 (description
16990 "This package helps you create simple maps; add sub-plots like pie plots
16991 to a map or any other plot; format, plot and export gridded data. The package
16992 was developed for displaying fisheries data but most functions can be used for
16993 more generic data visualisation.")
16994 (license license:gpl2+)))
16995
16996 (define-public r-pmcmr
16997 (package
16998 (name "r-pmcmr")
16999 (version "4.3")
17000 (source
17001 (origin
17002 (method url-fetch)
17003 (uri (cran-uri "PMCMR" version))
17004 (sha256
17005 (base32
17006 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
17007 (properties `((upstream-name . "PMCMR")))
17008 (build-system r-build-system)
17009 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
17010 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
17011 (description
17012 "This is a deprecated package for calculating pairwise multiple
17013 comparisons of mean rank sums. This package is superseded by the novel
17014 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
17015 compatibility of dependent packages for some time.")
17016 (license license:gpl3+)))
17017
17018 (define-public r-downloader
17019 (package
17020 (name "r-downloader")
17021 (version "0.4")
17022 (source
17023 (origin
17024 (method url-fetch)
17025 (uri (cran-uri "downloader" version))
17026 (sha256
17027 (base32
17028 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
17029 (build-system r-build-system)
17030 (propagated-inputs
17031 `(("r-digest" ,r-digest)))
17032 (home-page "https://github.com/wch/downloader")
17033 (synopsis "Download files over HTTP and HTTPS")
17034 (description
17035 "This package provides a wrapper for the @code{download.file} function,
17036 making it possible to download files over HTTPS across platforms. The
17037 @code{RCurl} package provides this functionality (and much more) but has
17038 external dependencies. This package has is implemented purely in R.")
17039 (license license:gpl2)))
17040
17041 (define-public r-rex
17042 (package
17043 (name "r-rex")
17044 (version "1.2.0")
17045 (source
17046 (origin
17047 (method url-fetch)
17048 (uri (cran-uri "rex" version))
17049 (sha256
17050 (base32
17051 "0m7bq8db3m5dhf01rw7xc7xy1ciq3m7dfgsl80p8cy4h8vqr3d06"))))
17052 (build-system r-build-system)
17053 (propagated-inputs
17054 `(("r-lazyeval" ,r-lazyeval)))
17055 (native-inputs
17056 `(("r-knitr" ,r-knitr)))
17057 (home-page "https://github.com/kevinushey/rex")
17058 (synopsis "Friendly regular expressions")
17059 (description
17060 "This package provides a friendly interface for the construction of
17061 regular expressions. Regular expressions are a very powerful feature, however
17062 they are often difficult to interpret. Rex allows you to build complex
17063 regular expressions from human readable expressions")
17064 (license license:expat)))
17065
17066 (define-public r-xmlparsedata
17067 (package
17068 (name "r-xmlparsedata")
17069 (version "1.0.5")
17070 (source
17071 (origin
17072 (method url-fetch)
17073 (uri (cran-uri "xmlparsedata" version))
17074 (sha256
17075 (base32
17076 "1c6bnz3ng1qw7sfip8wq3a4dn36a4d6rbja0sadn0a4pbsmk8q3n"))))
17077 (properties `((upstream-name . "xmlparsedata")))
17078 (build-system r-build-system)
17079 (home-page "https://github.com/r-lib/xmlparsedata#readme")
17080 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
17081 (description
17082 "This package provides tools to convert the output of
17083 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
17084 @code{XPath}, and is easier to manipulate in general.")
17085 (license license:expat)))
17086
17087 (define-public r-cyclocomp
17088 (package
17089 (name "r-cyclocomp")
17090 (version "1.1.0")
17091 (source
17092 (origin
17093 (method url-fetch)
17094 (uri (cran-uri "cyclocomp" version))
17095 (sha256
17096 (base32
17097 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
17098 (properties `((upstream-name . "cyclocomp")))
17099 (build-system r-build-system)
17100 (propagated-inputs
17101 `(("r-callr" ,r-callr)
17102 ("r-crayon" ,r-crayon)
17103 ("r-desc" ,r-desc)
17104 ("r-remotes" ,r-remotes)
17105 ("r-withr" ,r-withr)))
17106 (home-page "https://github.com/MangoTheCat/cyclocomp")
17107 (synopsis "Cyclomatic complexity of R code")
17108 (description
17109 "Cyclomatic complexity is a software metric, used to indicate the
17110 complexity of a program. It is a quantitative measure of the number of
17111 linearly independent paths through a program's source code. This package
17112 provides tools to compute this metric.")
17113 (license license:expat)))
17114
17115 (define-public r-lintr
17116 (package
17117 (name "r-lintr")
17118 (version "2.0.1")
17119 (source
17120 (origin
17121 (method url-fetch)
17122 (uri (cran-uri "lintr" version))
17123 (sha256
17124 (base32
17125 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
17126 (properties `((upstream-name . "lintr")))
17127 (build-system r-build-system)
17128 (propagated-inputs
17129 `(("r-codetools" ,r-codetools)
17130 ("r-crayon" ,r-crayon)
17131 ("r-cyclocomp" ,r-cyclocomp)
17132 ("r-digest" ,r-digest)
17133 ("r-httr" ,r-httr)
17134 ("r-jsonlite" ,r-jsonlite)
17135 ("r-knitr" ,r-knitr)
17136 ("r-rex" ,r-rex)
17137 ("r-rstudioapi" ,r-rstudioapi)
17138 ("r-testthat" ,r-testthat)
17139 ("r-xml2" ,r-xml2)
17140 ("r-xmlparsedata" ,r-xmlparsedata)))
17141 (home-page "https://github.com/jimhester/lintr")
17142 (synopsis "Linter for R code")
17143 (description "This package checks adherence to a given style, syntax
17144 errors and possible semantic issues. It supports on the fly checking of R
17145 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
17146 (license license:expat)))
17147
17148 (define-public r-sctransform
17149 (package
17150 (name "r-sctransform")
17151 (version "0.3.2")
17152 (source
17153 (origin
17154 (method url-fetch)
17155 (uri (cran-uri "sctransform" version))
17156 (sha256
17157 (base32
17158 "1p3m6i28nlxh6r609syn88cwlbdpl3dw44dy3gsijk2ibq20mfsx"))))
17159 (build-system r-build-system)
17160 (propagated-inputs
17161 `(("r-future" ,r-future)
17162 ("r-future-apply" ,r-future-apply)
17163 ("r-ggplot2" ,r-ggplot2)
17164 ("r-gridextra" ,r-gridextra)
17165 ("r-mass" ,r-mass)
17166 ("r-matrix" ,r-matrix)
17167 ("r-matrixstats" ,r-matrixstats)
17168 ("r-rcpp" ,r-rcpp)
17169 ("r-rcpparmadillo" ,r-rcpparmadillo)
17170 ("r-reshape2" ,r-reshape2)))
17171 (home-page "https://github.com/ChristophH/sctransform")
17172 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
17173 (description
17174 "This package provides a normalization method for single-cell UMI count
17175 data using a variance stabilizing transformation. The transformation is based
17176 on a negative binomial regression model with regularized parameters. As part
17177 of the same regression framework, this package also provides functions for
17178 batch correction, and data correction.")
17179 (license license:gpl3)))
17180
17181 (define-public r-styler
17182 (package
17183 (name "r-styler")
17184 (version "1.3.2")
17185 (source
17186 (origin
17187 (method url-fetch)
17188 (uri (cran-uri "styler" version))
17189 (sha256
17190 (base32
17191 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
17192 (build-system r-build-system)
17193 (propagated-inputs
17194 `(("r-backports" ,r-backports)
17195 ("r-cli" ,r-cli)
17196 ("r-magrittr" ,r-magrittr)
17197 ("r-purrr" ,r-purrr)
17198 ("r-r-cache" ,r-r-cache)
17199 ("r-rematch2" ,r-rematch2)
17200 ("r-rlang" ,r-rlang)
17201 ("r-rprojroot" ,r-rprojroot)
17202 ("r-tibble" ,r-tibble)
17203 ("r-withr" ,r-withr)
17204 ("r-xfun" ,r-xfun)))
17205 (home-page "https://github.com/r-lib/styler")
17206 (synopsis "Non-invasive pretty printing of R code")
17207 (description
17208 "This is a package for pretty-printing R code without changing the user's
17209 formatting intent.")
17210 (license license:gpl3)))
17211
17212 (define-public r-scrime
17213 (package
17214 (name "r-scrime")
17215 (version "1.3.5")
17216 (source
17217 (origin
17218 (method url-fetch)
17219 (uri (cran-uri "scrime" version))
17220 (sha256
17221 (base32
17222 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
17223 (build-system r-build-system)
17224 (home-page "https://cran.r-project.org/web/packages/scrime/")
17225 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
17226 (description
17227 "This package provides tools for the analysis of high-dimensional data
17228 developed/implemented at the group \"Statistical Complexity Reduction In
17229 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
17230 the functions can also be applied to other types of categorical data.")
17231 (license license:gpl2)))
17232
17233 (define-public r-pbmcapply
17234 (package
17235 (name "r-pbmcapply")
17236 (version "1.5.0")
17237 (source
17238 (origin
17239 (method url-fetch)
17240 (uri (cran-uri "pbmcapply" version))
17241 (sha256
17242 (base32
17243 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
17244 (build-system r-build-system)
17245 (home-page "https://github.com/kvnkuang/pbmcapply")
17246 (synopsis "Track the progress of apply procedures with a progress bar")
17247 (description
17248 "This light-weight package helps you track and visualize the progress of
17249 parallel versions of vectorized R functions of the @code{mc*apply} family.")
17250 (license license:expat)))
17251
17252 (define-public r-blme
17253 (package
17254 (name "r-blme")
17255 (version "1.0-5")
17256 (source
17257 (origin
17258 (method url-fetch)
17259 (uri (cran-uri "blme" version))
17260 (sha256
17261 (base32
17262 "0413j7gwr5yj14jamkizj55q7xii1a0kgazzj0ilqn2ascclz6k7"))))
17263 (build-system r-build-system)
17264 (propagated-inputs `(("r-lme4" ,r-lme4)))
17265 (home-page "https://github.com/vdorie/blme")
17266 (synopsis "Bayesian linear mixed-effects models")
17267 (description
17268 "This package provides tools for maximum a posteriori estimation for
17269 linear and generalized linear mixed-effects models in a Bayesian setting. It
17270 extends the lme4 package.")
17271 (license license:gpl2+)))
17272
17273 (define-public r-batchtools
17274 (package
17275 (name "r-batchtools")
17276 (version "0.9.15")
17277 (source
17278 (origin
17279 (method url-fetch)
17280 (uri (cran-uri "batchtools" version))
17281 (sha256
17282 (base32
17283 "0d2xy77hkzhcnyz8zxcv98i80fx6ripjw4rvyx4ww1d0vjjgqf52"))))
17284 (build-system r-build-system)
17285 (propagated-inputs
17286 `(("r-backports" ,r-backports)
17287 ("r-base64url" ,r-base64url)
17288 ("r-brew" ,r-brew)
17289 ("r-checkmate" ,r-checkmate)
17290 ("r-data-table" ,r-data-table)
17291 ("r-digest" ,r-digest)
17292 ("r-fs" ,r-fs)
17293 ("r-progress" ,r-progress)
17294 ("r-r6" ,r-r6)
17295 ("r-rappdirs" ,r-rappdirs)
17296 ("r-stringi" ,r-stringi)
17297 ("r-withr" ,r-withr)))
17298 (native-inputs
17299 `(("r-knitr" ,r-knitr)))
17300 (home-page "https://github.com/mllg/batchtools")
17301 (synopsis "Tools for computation on batch systems")
17302 (description
17303 "As a successor of the packages BatchJobs and BatchExperiments, this
17304 package provides a parallel implementation of the Map function for high
17305 performance computing systems managed by various schedulers. A multicore and
17306 socket mode allow the parallelization on a local machines, and multiple
17307 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
17308 the package provides an abstraction mechanism to define large-scale computer
17309 experiments in a well-organized and reproducible way.")
17310 (license license:lgpl3)))
17311
17312 (define-public r-clue
17313 (package
17314 (name "r-clue")
17315 (version "0.3-58")
17316 (source
17317 (origin
17318 (method url-fetch)
17319 (uri (cran-uri "clue" version))
17320 (sha256
17321 (base32
17322 "1rwwxlnpl1k0n4k96vxc9zajw9kb4syqwzj76fvaf0qim8p6ddia"))))
17323 (build-system r-build-system)
17324 (propagated-inputs `(("r-cluster" ,r-cluster)))
17325 (home-page "https://cran.r-project.org/web/packages/clue/")
17326 (synopsis "Tools for analyzing cluster ensembles")
17327 (description "Cluster ensembles are collections of individual solutions to
17328 a given clustering problem which are useful or necessary to consider in a wide
17329 range of applications. This R package provides an extensible computational
17330 environment for creating and analyzing cluster ensembles, with basic data
17331 structures for representing partitions and hierarchies, and facilities for
17332 computing on them, including methods for measuring proximity and obtaining
17333 consensus and secondary clusterings.")
17334 (license license:gpl2)))
17335
17336 (define-public r-sitmo
17337 (package
17338 (name "r-sitmo")
17339 (version "2.0.1")
17340 (source
17341 (origin
17342 (method url-fetch)
17343 (uri (cran-uri "sitmo" version))
17344 (sha256
17345 (base32
17346 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
17347 (build-system r-build-system)
17348 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17349 (home-page "https://github.com/coatless/sitmo/")
17350 (synopsis "Parallel pseudo random number generator header files")
17351 (description
17352 "This package provides two high quality and fast PPRNGs that may be used
17353 in an OpenMP parallel environment. In addition, there is a generator for one
17354 dimensional low-discrepancy sequence.")
17355 (license license:expat)))
17356
17357 (define-public r-dqrng
17358 (package
17359 (name "r-dqrng")
17360 (version "0.2.1")
17361 (source
17362 (origin
17363 (method url-fetch)
17364 (uri (cran-uri "dqrng" version))
17365 (sha256
17366 (base32
17367 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
17368 (build-system r-build-system)
17369 (propagated-inputs
17370 `(("r-bh" ,r-bh)
17371 ("r-rcpp" ,r-rcpp)
17372 ("r-sitmo" ,r-sitmo)))
17373 (home-page "https://www.daqana.org/dqrng")
17374 (synopsis "Fast pseudo random number generators")
17375 (description
17376 "Several fast random number generators are provided as C++ header-only
17377 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
17378 Additionally, fast functions for generating random numbers according to a
17379 uniform, normal and exponential distribution are included. The latter two use
17380 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
17381 functions are exported to R and as a C++ interface and are enabled for use
17382 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
17383 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
17384 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
17385 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
17386 ;; whole is distributed under the terms of the AGPL 3.
17387 (license license:agpl3)))
17388
17389 (define-public r-ingredients
17390 (package
17391 (name "r-ingredients")
17392 (version "2.0.1")
17393 (source
17394 (origin
17395 (method url-fetch)
17396 (uri (cran-uri "ingredients" version))
17397 (sha256
17398 (base32
17399 "0w46h1f28y5ypqm3ypsvk7yk9v7k8p21f1pzjl3ima8r1ivmhv12"))))
17400 (properties `((upstream-name . "ingredients")))
17401 (build-system r-build-system)
17402 (propagated-inputs
17403 `(("r-ggplot2" ,r-ggplot2)
17404 ("r-gridextra" ,r-gridextra)
17405 ("r-scales" ,r-scales)))
17406 (native-inputs `(("r-knitr" ,r-knitr)))
17407 (home-page "https://ModelOriented.github.io/ingredients/")
17408 (synopsis "Effects and importances of model ingredients")
17409 (description
17410 "This is a collection of tools for assessment of feature importance and
17411 feature effects. Key functions are:
17412
17413 @itemize
17414 @item @code{feature_importance()} for assessment of global level feature
17415 importance,
17416 @item @code{ceteris_paribus()} for calculation of the what-if plots,
17417 @item @code{partial_dependence()} for partial dependence plots,
17418 @item @code{conditional_dependence()} for conditional dependence plots,
17419 @item @code{accumulated_dependence()} for accumulated local effects plots,
17420 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
17421 aggregation of ceteris paribus profiles,
17422 @item generic @code{print()} and @code{plot()} for better usability of
17423 selected explainers,
17424 @item generic @code{plotD3()} for interactive, D3 based explanations, and
17425 @item generic @code{describe()} for explanations in natural language.
17426 @end itemize\n")
17427 (license license:gpl3)))
17428
17429 (define-public r-ibreakdown
17430 (package
17431 (name "r-ibreakdown")
17432 (version "1.3.1")
17433 (source
17434 (origin
17435 (method url-fetch)
17436 (uri (cran-uri "iBreakDown" version))
17437 (sha256
17438 (base32
17439 "1bfl5bh0x6z5a0cmdmx68sap9zdxa3kwdnyk57csxapc362yz108"))))
17440 (properties `((upstream-name . "iBreakDown")))
17441 (build-system r-build-system)
17442 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
17443 (native-inputs `(("r-knitr" ,r-knitr)))
17444 (home-page "https://ModelOriented.github.io/iBreakDown/")
17445 (synopsis "Model agnostic instance level variable attributions")
17446 (description
17447 "This package provides a model agnostic tool for decomposition of
17448 predictions from black boxes. It supports additive attributions and
17449 attributions with interactions. The Break Down Table shows contributions of
17450 every variable to a final prediction. The Break Down Plot presents variable
17451 contributions in a concise graphical way. This package works for
17452 classification and regression models.")
17453 (license license:gpl3)))
17454
17455 (define-public r-dae
17456 (package
17457 (name "r-dae")
17458 (version "3.1-32")
17459 (source
17460 (origin
17461 (method url-fetch)
17462 (uri (cran-uri "dae" version))
17463 (sha256
17464 (base32
17465 "126w1lb9pz8mb2ajl2vz5dj798nbifp0dypnzfgcwixif5g5bpqi"))))
17466 (build-system r-build-system)
17467 (propagated-inputs
17468 `(("r-ggplot2" ,r-ggplot2)
17469 ("r-plyr" ,r-plyr)))
17470 (native-inputs
17471 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
17472 (home-page "http://chris.brien.name")
17473 (synopsis "Functions useful in the design and ANOVA of experiments")
17474 (description
17475 "This package provides functions useful in the design and ANOVA of
17476 experiments. The content falls into the following groupings:
17477
17478 @enumerate
17479 @item data,
17480 @item factor manipulation functions,
17481 @item design functions,
17482 @item ANOVA functions,
17483 @item matrix functions,
17484 @item projector and canonical efficiency functions, and
17485 @item miscellaneous functions.
17486 @end enumerate
17487
17488 There is a vignette called @code{DesignNotes} describing how to use the design
17489 functions for randomizing and assessing designs. The ANOVA functions
17490 facilitate the extraction of information when the @code{Error} function has
17491 been used in the call to @code{aov}.")
17492 (license license:gpl2)))
17493
17494 (define-public r-dalex
17495 (package
17496 (name "r-dalex")
17497 (version "2.1.1")
17498 (source
17499 (origin
17500 (method url-fetch)
17501 (uri (cran-uri "DALEX" version))
17502 (sha256
17503 (base32
17504 "1dnqsml94s648w8swsrq8spddnd4mj5pl3q6xxr917w6a1jxgyfz"))))
17505 (properties `((upstream-name . "DALEX")))
17506 (build-system r-build-system)
17507 (propagated-inputs
17508 `(("r-ggplot2" ,r-ggplot2)
17509 ("r-ibreakdown" ,r-ibreakdown)
17510 ("r-ingredients" ,r-ingredients)))
17511 (home-page "https://pbiecek.github.io/DALEX/")
17512 (synopsis "Descriptive machine learning explanations")
17513 (description
17514 "Machine Learning models are widely used and have various applications in
17515 classification or regression. Models created with boosting, bagging, stacking
17516 or similar techniques are often used due to their high performance, but such
17517 black-box models usually lack interpretability. The DALEX package contains
17518 various explainers that help to understand the link between input variables
17519 and model output.")
17520 ;; Any version of the GPL
17521 (license license:gpl3+)))
17522
17523 (define-public r-enrichr
17524 (package
17525 (name "r-enrichr")
17526 (version "3.0")
17527 (source
17528 (origin
17529 (method url-fetch)
17530 (uri (cran-uri "enrichR" version))
17531 (sha256
17532 (base32
17533 "0i3kfq4fkmx47n61zj5f87iv8ci6gbgy90a7s8dy9zbndzvbgya3"))))
17534 (properties `((upstream-name . "enrichR")))
17535 (build-system r-build-system)
17536 (propagated-inputs
17537 `(("r-ggplot2" ,r-ggplot2)
17538 ("r-httr" ,r-httr)
17539 ("r-rjson" ,r-rjson)))
17540 (native-inputs
17541 `(("r-knitr" ,r-knitr)))
17542 (home-page "https://cran.r-project.org/web/packages/enrichR/")
17543 (synopsis "R Interface to Enrichr database for analyzing gene sets")
17544 (description
17545 "This package provides an R interface to all Enrichr databases, a
17546 web-based tool for analyzing gene sets and returns any enrichment of common
17547 annotated biological functions.")
17548 (license license:gpl2+)))
17549
17550 (define-public r-plot3d
17551 (package
17552 (name "r-plot3d")
17553 (version "1.3")
17554 (source
17555 (origin
17556 (method url-fetch)
17557 (uri (cran-uri "plot3D" version))
17558 (sha256
17559 (base32
17560 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
17561 (properties `((upstream-name . "plot3D")))
17562 (build-system r-build-system)
17563 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
17564 (home-page "https://cran.r-project.org/web/packages/plot3D")
17565 (synopsis "Plot multi-dimensional data")
17566 (description
17567 "This package provides functions for viewing 2D and 3D data, including
17568 perspective plots, slice plots, surface plots, scatter plots, etc. It
17569 includes data sets from oceanography.")
17570 (license license:gpl3+)))
17571
17572 (define-public r-ggfortify
17573 (package
17574 (name "r-ggfortify")
17575 (version "0.4.11")
17576 (source
17577 (origin
17578 (method url-fetch)
17579 (uri (cran-uri "ggfortify" version))
17580 (sha256
17581 (base32
17582 "1wfm7l9bz6msh7rflgfv9dgbxh1ikz2ay0v7sgk9nkc24y6lhbpk"))))
17583 (build-system r-build-system)
17584 (propagated-inputs
17585 `(("r-dplyr" ,r-dplyr)
17586 ("r-ggplot2" ,r-ggplot2)
17587 ("r-gridextra" ,r-gridextra)
17588 ("r-scales" ,r-scales)
17589 ("r-stringr" ,r-stringr)
17590 ("r-tibble" ,r-tibble)
17591 ("r-tidyr" ,r-tidyr)))
17592 (native-inputs
17593 `(("r-knitr" ,r-knitr)))
17594 (home-page "https://github.com/sinhrks/ggfortify")
17595 (synopsis "Data visualization tools for statistical analysis results")
17596 (description
17597 "This package provides unified plotting tools for statistics commonly
17598 used, such as GLM, time series, PCA families, clustering and survival
17599 analysis. The package offers a single plotting interface for these analysis
17600 results and plots in a unified style using the @code{ggplot2} package.")
17601 (license license:gpl2)))
17602
17603 (define-public r-refmanager
17604 (package
17605 (name "r-refmanager")
17606 (version "1.3.0")
17607 (source
17608 (origin
17609 (method url-fetch)
17610 (uri (cran-uri "RefManageR" version))
17611 (sha256
17612 (base32
17613 "1spzdp5ni52dybcaxqnhwdphh27wjyrsfy4hsxsplpg9rqwfqfps"))))
17614 (properties `((upstream-name . "RefManageR")))
17615 (build-system r-build-system)
17616 (propagated-inputs
17617 `(("r-httr" ,r-httr)
17618 ("r-jsonlite" ,r-jsonlite)
17619 ("r-lubridate" ,r-lubridate)
17620 ("r-plyr" ,r-plyr)
17621 ("r-stringr" ,r-stringr)
17622 ("r-xml2" ,r-xml2)))
17623 (native-inputs
17624 `(("r-knitr" ,r-knitr)))
17625 (home-page "https://github.com/ropensci/RefManageR/")
17626 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
17627 (description
17628 "This package provides tools for importing and working with bibliographic
17629 references. It greatly enhances the @code{bibentry} class by providing a
17630 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
17631 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
17632 by various formats for name lists (author by last names, translator by full
17633 names, etc.). Entries can be updated, combined, sorted, printed in a number
17634 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
17635 into R and converted to @code{BibEntry} objects.")
17636 ;; Any of these licenses may be picked.
17637 (license (list license:gpl2 license:gpl3 license:bsd-3))))
17638
17639 (define-public r-citr
17640 (package
17641 (name "r-citr")
17642 (version "0.3.2")
17643 (source
17644 (origin
17645 (method url-fetch)
17646 (uri (cran-uri "citr" version))
17647 (sha256
17648 (base32
17649 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
17650 (build-system r-build-system)
17651 (propagated-inputs
17652 `(("r-assertthat" ,r-assertthat)
17653 ("r-curl" ,r-curl)
17654 ("r-httr" ,r-httr)
17655 ("r-miniui" ,r-miniui)
17656 ("r-refmanager" ,r-refmanager)
17657 ("r-rstudioapi" ,r-rstudioapi)
17658 ("r-shiny" ,r-shiny)
17659 ("r-shinyjs" ,r-shinyjs)
17660 ("r-yaml" ,r-yaml)))
17661 (home-page "https://github.com/crsh/citr")
17662 (synopsis "RStudio add-in to insert Markdown citations")
17663 (description
17664 "This package provides functions and an RStudio add-in that search a
17665 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
17666 the current document.")
17667 (license license:expat)))
17668
17669 (define-public r-xgboost
17670 (package
17671 (name "r-xgboost")
17672 (version "1.3.2.1")
17673 (source
17674 (origin
17675 (method url-fetch)
17676 (uri (cran-uri "xgboost" version))
17677 (sha256
17678 (base32
17679 "117q8xqm82589517fi8xicd8724v9c0wnq3qpl84h6nm3aw65x1g"))))
17680 (build-system r-build-system)
17681 (propagated-inputs
17682 `(("r-data-table" ,r-data-table)
17683 ("r-magrittr" ,r-magrittr)
17684 ("r-matrix" ,r-matrix)))
17685 (native-inputs
17686 `(("r-knitr" ,r-knitr)))
17687 (home-page "https://github.com/dmlc/xgboost")
17688 (synopsis "Extreme gradient boosting")
17689 (description
17690 "This package provides an R interface to Extreme Gradient Boosting, which
17691 is an efficient implementation of the gradient boosting framework from Chen
17692 and Guestrin (2016). The package includes efficient linear model solver and
17693 tree learning algorithms. The package can automatically do parallel
17694 computation on a single machine. It supports various objective functions,
17695 including regression, classification and ranking. The package is made to be
17696 extensible, so that users are also allowed to define their own objectives
17697 easily.")
17698 (license license:asl2.0)))
17699
17700 (define-public r-umap
17701 (package
17702 (name "r-umap")
17703 (version "0.2.7.0")
17704 (source
17705 (origin
17706 (method url-fetch)
17707 (uri (cran-uri "umap" version))
17708 (sha256
17709 (base32
17710 "191vpy84s0bar06y9z1qx43x2kc4qp7lmrcmd0cvz2pnzq722jab"))))
17711 (build-system r-build-system)
17712 (propagated-inputs
17713 `(("r-openssl" ,r-openssl)
17714 ("r-rcpp" ,r-rcpp)
17715 ("r-reticulate" ,r-reticulate)
17716 ("r-rspectra" ,r-rspectra)))
17717 (native-inputs
17718 `(("r-knitr" ,r-knitr)))
17719 (home-page "https://github.com/tkonopka/umap")
17720 (synopsis "Uniform manifold approximation and projection")
17721 (description
17722 "Uniform manifold approximation and projection is a technique for
17723 dimension reduction. This package provides an interface to the UMAP algorithm
17724 in R, including a translation of the original algorithm into R.")
17725 (license license:expat)))
17726
17727 (define-public r-uwot
17728 (package
17729 (name "r-uwot")
17730 (version "0.1.10")
17731 (source
17732 (origin
17733 (method url-fetch)
17734 (uri (cran-uri "uwot" version))
17735 (sha256
17736 (base32
17737 "08vxh085wnrxgwy35ksb4cr7ccjvd98pyr2zlgarqryfgc1bdqbf"))))
17738 (build-system r-build-system)
17739 (propagated-inputs
17740 `(("r-dqrng" ,r-dqrng)
17741 ("r-fnn" ,r-fnn)
17742 ("r-irlba" ,r-irlba)
17743 ("r-matrix" ,r-matrix)
17744 ("r-rcpp" ,r-rcpp)
17745 ("r-rcppannoy" ,r-rcppannoy)
17746 ("r-rcppprogress" ,r-rcppprogress)
17747 ("r-rspectra" ,r-rspectra)))
17748 (home-page "https://github.com/jlmelville/uwot")
17749 (synopsis "Uniform manifold approximation and projection")
17750 (description
17751 "This package provides an implementation of the Uniform Manifold
17752 Approximation and Projection dimensionality reduction by McInnes et
17753 al. (2018). It also provides means to transform new data and to carry out
17754 supervised dimensionality reduction. An implementation of the related
17755 LargeVis method of Tang et al. (2016) is also provided.")
17756 (license license:gpl3)))
17757
17758 (define-public r-kableextra
17759 (package
17760 (name "r-kableextra")
17761 (version "1.3.4")
17762 (source
17763 (origin
17764 (method url-fetch)
17765 (uri (cran-uri "kableExtra" version))
17766 (sha256
17767 (base32
17768 "1c5vzy95cbz36jwyssr927qicrayifinv861rvnmg4nghb1gl7q9"))))
17769 (properties `((upstream-name . "kableExtra")))
17770 (build-system r-build-system)
17771 (propagated-inputs
17772 `(("r-digest" ,r-digest)
17773 ("r-glue" ,r-glue)
17774 ("r-htmltools" ,r-htmltools)
17775 ("r-knitr" ,r-knitr)
17776 ("r-magrittr" ,r-magrittr)
17777 ("r-rmarkdown" ,r-rmarkdown)
17778 ("r-rstudioapi" ,r-rstudioapi)
17779 ("r-rvest" ,r-rvest)
17780 ("r-scales" ,r-scales)
17781 ("r-stringr" ,r-stringr)
17782 ("r-svglite" ,r-svglite)
17783 ("r-viridislite" ,r-viridislite)
17784 ("r-webshot" ,r-webshot)
17785 ("r-xml2" ,r-xml2)))
17786 (native-inputs
17787 `(("r-knitr" ,r-knitr)))
17788 (home-page "https://haozhu233.github.io/kableExtra/")
17789 (synopsis "Construct complex tables with pipe syntax")
17790 (description
17791 "Build complex HTML or LaTeX tables using @code{kable()} from
17792 @code{knitr} and the piping syntax from @code{magrittr}. The function
17793 @code{kable()} is a light weight table generator coming from @code{knitr}.
17794 This package simplifies the way to manipulate the HTML or LaTeX codes
17795 generated by @code{kable()} and allows users to construct complex tables and
17796 customize styles using a readable syntax.")
17797 (license license:expat)))
17798
17799 (define-public r-glasso
17800 (package
17801 (name "r-glasso")
17802 (version "1.11")
17803 (source
17804 (origin
17805 (method url-fetch)
17806 (uri (cran-uri "glasso" version))
17807 (sha256
17808 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
17809 (build-system r-build-system)
17810 (native-inputs `(("gfortran" ,gfortran)))
17811 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
17812 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
17813 (description
17814 "This is a package for estimation of a sparse inverse covariance matrix
17815 using a lasso (L1) penalty. Facilities are provided for estimates along a
17816 path of values for the regularization parameter.")
17817 (license license:gpl2)))
17818
17819 (define-public r-rhpcblasctl
17820 (package
17821 (name "r-rhpcblasctl")
17822 (version "0.20-137")
17823 (source
17824 (origin
17825 (method url-fetch)
17826 (uri (cran-uri "RhpcBLASctl" version))
17827 (sha256
17828 (base32
17829 "0vv144sgjhf7fazk633i16fc06g9k43syyxj1g34pi9gsgdcn0nv"))))
17830 (properties `((upstream-name . "RhpcBLASctl")))
17831 (build-system r-build-system)
17832 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
17833 (synopsis "Control the number of threads on BLAS")
17834 (description
17835 "This package allows you to control the number of threads the BLAS
17836 library uses. It is also possible to control the number of threads in
17837 OpenMP.")
17838 (license license:agpl3+)))
17839
17840 (define-public r-lda
17841 (package
17842 (name "r-lda")
17843 (version "1.4.2")
17844 (source
17845 (origin
17846 (method url-fetch)
17847 (uri (cran-uri "lda" version))
17848 (sha256
17849 (base32
17850 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
17851 (build-system r-build-system)
17852 (home-page "https://cran.r-project.org/web/packages/lda/")
17853 (synopsis "Collapsed Gibbs sampling methods for topic models")
17854 (description
17855 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
17856 related models. This includes (but is not limited to) sLDA, corrLDA, and the
17857 mixed-membership stochastic blockmodel. Inference for all of these models is
17858 implemented via a fast collapsed Gibbs sampler written in C. Utility
17859 functions for reading/writing data typically used in topic models, as well as
17860 tools for examining posterior distributions are also included.")
17861 ;; Any version of the LGPL
17862 (license license:lgpl3+)))
17863
17864 (define-public r-rann-l1
17865 (package
17866 (name "r-rann-l1")
17867 (version "2.5.2")
17868 (source
17869 (origin
17870 (method url-fetch)
17871 (uri (cran-uri "RANN.L1" version))
17872 (sha256
17873 (base32
17874 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
17875 (properties `((upstream-name . "RANN.L1")))
17876 (build-system r-build-system)
17877 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
17878 (synopsis "Fast nearest neighbour search using L1 metric")
17879 (description
17880 "This package provides tools to find the k nearest neighbours for every
17881 point in a given dataset in O(N log N) time using Arya and Mount's ANN
17882 library. There is support for approximate as well as exact searches, fixed
17883 radius searches and @code{bd} as well as @code{kd} trees. The distance is
17884 computed using the L1 (Manhattan, taxicab) metric.")
17885 (license license:gpl3+)))
17886
17887 (define-public r-leiden
17888 (package
17889 (name "r-leiden")
17890 (version "0.3.7")
17891 (source
17892 (origin
17893 (method url-fetch)
17894 (uri (cran-uri "leiden" version))
17895 (sha256
17896 (base32
17897 "14iqn5iqcya6bqbjvjivpd7q9gwc323sj29y7ssrbhb3sz9982bp"))))
17898 (properties `((upstream-name . "leiden")))
17899 (build-system r-build-system)
17900 (propagated-inputs
17901 `(("r-igraph" ,r-igraph)
17902 ("r-matrix" ,r-matrix)
17903 ("r-reticulate" ,r-reticulate)))
17904 (native-inputs
17905 `(("r-knitr" ,r-knitr)))
17906 (home-page "https://github.com/TomKellyGenetics/leiden")
17907 (synopsis "R implementation of Leiden clustering algorithm")
17908 (description
17909 "This package implements the Python @code{leidenalg} module to be called
17910 in R. It enables clustering using the Leiden algorithm for partitioning a
17911 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
17912 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
17913 (license license:gpl3)))
17914
17915 (define-public r-patchwork
17916 (package
17917 (name "r-patchwork")
17918 (version "1.1.1")
17919 (source
17920 (origin
17921 (method url-fetch)
17922 (uri (cran-uri "patchwork" version))
17923 (sha256
17924 (base32
17925 "10glgkf58lcykcwda1hj6xdps02m3i247qynk6s2jmwljagps3fg"))))
17926 (build-system r-build-system)
17927 (propagated-inputs
17928 `(("r-ggplot2" ,r-ggplot2)
17929 ("r-gtable" ,r-gtable)))
17930 (native-inputs
17931 `(("r-knitr" ,r-knitr)))
17932 (home-page "https://github.com/thomasp85/patchwork")
17933 (synopsis "Compose ggplot2 plots")
17934 (description
17935 "The @code{ggplot2} package provides a strong API for sequentially
17936 building up a plot, but does not concern itself with composition of multiple
17937 plots. Patchwork is a package that expands the API to allow for arbitrarily
17938 complex composition of plots by providing mathematical operators for combining
17939 multiple plots.")
17940 (license license:expat)))
17941
17942 (define-public r-liger
17943 (package
17944 (name "r-liger")
17945 (version "0.4.2")
17946 (source
17947 (origin
17948 (method git-fetch)
17949 (uri (git-reference
17950 (url "https://github.com/MacoskoLab/liger")
17951 (commit (string-append "v" version))))
17952 (file-name (git-file-name name version))
17953 (sha256
17954 (base32
17955 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
17956 (modules '((guix build utils)))
17957 (snippet
17958 '(begin
17959 (delete-file "inst/java/ModularityOptimizer.jar")
17960 #t))))
17961 (build-system r-build-system)
17962 (arguments
17963 `(#:phases
17964 (modify-phases %standard-phases
17965 (add-after 'unpack 'build-java-part
17966 (lambda* (#:key inputs #:allow-other-keys)
17967 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
17968 (for-each (lambda (file) (invoke "javac" file))
17969 (find-files "." "\\.java$"))
17970 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
17971 (find-files "." "\\.class$"))
17972 #t)))))
17973 (propagated-inputs
17974 `(("r-cowplot" ,r-cowplot)
17975 ("r-dosnow" ,r-dosnow)
17976 ("r-dplyr" ,r-dplyr)
17977 ("r-fnn" ,r-fnn)
17978 ("r-foreach" ,r-foreach)
17979 ("r-ggplot2" ,r-ggplot2)
17980 ("r-ggrepel" ,r-ggrepel)
17981 ("r-hmisc" ,r-hmisc)
17982 ("r-ica" ,r-ica)
17983 ("r-irlba" ,r-irlba)
17984 ("r-matrix" ,r-matrix)
17985 ("r-mclust" ,r-mclust)
17986 ("r-patchwork" ,r-patchwork)
17987 ("r-plyr" ,r-plyr)
17988 ("r-rann-l1" ,r-rann-l1)
17989 ("r-rcpp" ,r-rcpp)
17990 ("r-rcpparmadillo" ,r-rcpparmadillo)
17991 ("r-riverplot" ,r-riverplot)
17992 ("r-rtsne" ,r-rtsne)
17993 ("r-snow" ,r-snow)))
17994 (native-inputs
17995 `(("jdk" ,icedtea "jdk")
17996 ;; See https://github.com/MacoskoLab/liger/issues/96
17997 ;; The optimizer is released under the Expat license.
17998 ("optimizer-src"
17999 ,(origin
18000 (method url-fetch)
18001 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
18002 (sha256
18003 (base32
18004 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
18005 ("unzip" ,unzip)
18006 ("r-knitr" ,r-knitr))) ; for vignettes
18007 (home-page "https://github.com/MacoskoLab/liger")
18008 (synopsis "Integrate and analyze multiple single-cell datasets")
18009 (description
18010 "LIGER is a package for integrating and analyzing multiple single-cell
18011 datasets, developed and maintained by the Macosko lab. It relies on
18012 integrative non-negative matrix factorization to identify shared and
18013 dataset-specific factors.")
18014 (license license:gpl3)))
18015
18016 (define-public r-harmony
18017 (package
18018 (name "r-harmony")
18019 (version "0.1")
18020 (source
18021 (origin
18022 (method git-fetch)
18023 (uri (git-reference
18024 (url "https://github.com/immunogenomics/harmony")
18025 (commit version)))
18026 (file-name (git-file-name name version))
18027 (sha256
18028 (base32
18029 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
18030 (modules '((guix build utils)))
18031 (snippet
18032 '(begin
18033 (for-each delete-file '("config.status" "configure"))
18034 #t))))
18035 (build-system r-build-system)
18036 (propagated-inputs
18037 `(("r-cowplot" ,r-cowplot)
18038 ("r-dplyr" ,r-dplyr)
18039 ("r-ggplot2" ,r-ggplot2)
18040 ("r-irlba" ,r-irlba)
18041 ("r-matrix" ,r-matrix)
18042 ("r-rcpp" ,r-rcpp)
18043 ("r-rcpparmadillo" ,r-rcpparmadillo)
18044 ("r-rcppprogress" ,r-rcppprogress)
18045 ("r-rlang" ,r-rlang)
18046 ("r-tibble" ,r-tibble)
18047 ("r-tidyr" ,r-tidyr)))
18048 (native-inputs
18049 `(("autoconf" ,autoconf)))
18050 (home-page "https://github.com/immunogenomics/harmony")
18051 (synopsis "Integration of single cell sequencing data")
18052 (description
18053 "This package provides an implementation of the Harmony algorithm for
18054 single cell integration, described in Korsunsky et al
18055 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
18056 function and interfaces to external frameworks.")
18057 (license license:gpl3)))
18058
18059 (define-public r-covr
18060 (package
18061 (name "r-covr")
18062 (version "3.5.1")
18063 (source
18064 (origin
18065 (method url-fetch)
18066 (uri (cran-uri "covr" version))
18067 (sha256
18068 (base32 "0v5cv3cw2kpdr6wxmkbd3wclavr17zipypdcb10hhmpa4cvgqk55"))))
18069 (properties `((upstream-name . "covr")))
18070 (build-system r-build-system)
18071 (propagated-inputs
18072 `(("r-crayon" ,r-crayon)
18073 ("r-digest" ,r-digest)
18074 ("r-httr" ,r-httr)
18075 ("r-jsonlite" ,r-jsonlite)
18076 ("r-rex" ,r-rex)
18077 ("r-withr" ,r-withr)
18078 ("r-yaml" ,r-yaml)))
18079 (native-inputs
18080 `(("r-knitr" ,r-knitr))) ; for vignettes
18081 (home-page "https://github.com/r-lib/covr")
18082 (synopsis "Test coverage for R packages")
18083 (description
18084 "Thisp package enables you to track and report code coverage for your
18085 package and (optionally) upload the results to a coverage service. Code
18086 coverage is a measure of the amount of code being exercised by a set of tests.
18087 It is an indirect measure of test quality and completeness. This package is
18088 compatible with any testing methodology or framework and tracks coverage of
18089 both R code and compiled C/C++/FORTRAN code.")
18090 (license license:gpl3)))
18091
18092 (define-public r-systemfonts
18093 (package
18094 (name "r-systemfonts")
18095 (version "1.0.1")
18096 (source
18097 (origin
18098 (method url-fetch)
18099 (uri (cran-uri "systemfonts" version))
18100 (sha256
18101 (base32
18102 "15x7qx8iigkybgz6b6s66i3mh75vgynzpd50nw05wflfwzcv87a0"))))
18103 (properties `((upstream-name . "systemfonts")))
18104 (build-system r-build-system)
18105 (propagated-inputs
18106 `(("r-cpp11" ,r-cpp11)))
18107 (inputs
18108 `(("fontconfig" ,fontconfig)
18109 ("zlib" ,zlib)))
18110 (native-inputs
18111 `(("pkg-config" ,pkg-config)
18112 ("r-knitr" ,r-knitr)))
18113 (home-page "https://github.com/r-lib/systemfonts")
18114 (synopsis "System native font finding")
18115 (description
18116 "This package provides system native access to the font catalogue. As
18117 font handling varies between systems it is difficult to correctly locate
18118 installed fonts across different operating systems. The 'systemfonts' package
18119 provides bindings to the native libraries for finding font files that can then
18120 be used further by e.g. graphic devices.")
18121 (license license:expat)))
18122
18123 (define-public r-graphlayouts
18124 (package
18125 (name "r-graphlayouts")
18126 (version "0.7.1")
18127 (source
18128 (origin
18129 (method url-fetch)
18130 (uri (cran-uri "graphlayouts" version))
18131 (sha256
18132 (base32
18133 "05v7ss18bflhqa4ipsca8iw2ln8ddbaiyrizx2a5cwq81g5qq3rq"))))
18134 (properties `((upstream-name . "graphlayouts")))
18135 (build-system r-build-system)
18136 (propagated-inputs
18137 `(("r-igraph" ,r-igraph)
18138 ("r-rcpp" ,r-rcpp)
18139 ("r-rcpparmadillo" ,r-rcpparmadillo)))
18140 (home-page "https://github.com/schochastics/graphlayouts")
18141 (synopsis "Additional layout algorithms for network visualizations")
18142 (description
18143 "This package provides several layout algorithms to visualize networks
18144 which are not part of the igraph library. Most are based on the concept of
18145 stress majorization by Gansner et al. (2004)
18146 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
18147 emphasize hidden group structures in networks or focus on specific nodes.")
18148 (license license:expat)))
18149
18150 (define-public r-terra
18151 (package
18152 (name "r-terra")
18153 (version "1.1-4")
18154 (source
18155 (origin
18156 (method url-fetch)
18157 (uri (cran-uri "terra" version))
18158 (sha256
18159 (base32
18160 "1vsh55sq56shc8s2vmkl27yvrdbrbn3l6jrigqf2hmvppkb2jsbg"))))
18161 (properties `((upstream-name . "terra")))
18162 (build-system r-build-system)
18163 (inputs
18164 `(("gdal" ,gdal)
18165 ("geos" ,geos)
18166 ("proj" ,proj)
18167 ("sqlite" ,sqlite) ; needed for proj
18168 ("zlib" ,zlib)))
18169 (propagated-inputs
18170 `(("r-raster" ,r-raster)
18171 ("r-rcpp" ,r-rcpp)))
18172 (native-inputs
18173 `(("pkg-config" ,pkg-config)))
18174 (home-page "https://rspatial.org/terra")
18175 (synopsis "Spatial data analysis")
18176 (description
18177 "This package provides methods for spatial data analysis, especially
18178 raster data. The included methods allow for low-level data manipulation as
18179 well as high-level global, local, zonal, and focal computation. The predict
18180 and interpolate methods facilitate the use of regression type (interpolation,
18181 machine learning) models for spatial prediction. Processing of very large
18182 files is supported.")
18183 (license license:gpl3+)))
18184
18185 (define-public r-tidygraph
18186 (package
18187 (name "r-tidygraph")
18188 (version "1.2.0")
18189 (source
18190 (origin
18191 (method url-fetch)
18192 (uri (cran-uri "tidygraph" version))
18193 (sha256
18194 (base32
18195 "17qjns33zcj82jcsl7bn7i4zxcm7ric50zyf7agi0i01zi16qz85"))))
18196 (properties `((upstream-name . "tidygraph")))
18197 (build-system r-build-system)
18198 (propagated-inputs
18199 `(("r-dplyr" ,r-dplyr)
18200 ("r-igraph" ,r-igraph)
18201 ("r-magrittr" ,r-magrittr)
18202 ("r-pillar" ,r-pillar)
18203 ("r-r6" ,r-r6)
18204 ("r-rcpp" ,r-rcpp)
18205 ("r-rlang" ,r-rlang)
18206 ("r-tibble" ,r-tibble)
18207 ("r-tidyr" ,r-tidyr)))
18208 (home-page "https://github.com/thomasp85/tidygraph")
18209 (synopsis "Tidy API for graph manipulation")
18210 (description
18211 "This package provides a graph implementation that can be thought of as
18212 two tidy data frames describing node and edge data respectively. It provides
18213 an approach to manipulate these two virtual data frames using the API defined
18214 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
18215 common graph algorithms.")
18216 (license license:expat)))
18217
18218 (define-public r-soupx
18219 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
18220 (revision "1"))
18221 (package
18222 (name "r-soupx")
18223 (version (git-version "0.3.1" revision commit))
18224 (source
18225 (origin
18226 (method git-fetch)
18227 (uri (git-reference
18228 (url "https://github.com/constantAmateur/SoupX")
18229 (commit commit)))
18230 (file-name (git-file-name name version))
18231 (sha256
18232 (base32
18233 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
18234 (properties `((upstream-name . "SoupX")))
18235 (build-system r-build-system)
18236 (propagated-inputs
18237 `(("r-ggplot2" ,r-ggplot2)
18238 ("r-matrix" ,r-matrix)
18239 ("r-seurat" ,r-seurat)))
18240 (home-page "https://github.com/constantAmateur/SoupX")
18241 (synopsis "Single cell mRNA Soup eXterminator")
18242 (description
18243 "This package provides a package for quantifying, profiling and
18244 removing cell free mRNA contamination (the \"soup\") from droplet based single
18245 cell RNA-seq experiments.")
18246 (license license:gpl2))))
18247
18248 (define-public r-assertr
18249 (package
18250 (name "r-assertr")
18251 (version "2.8")
18252 (source
18253 (origin
18254 (method url-fetch)
18255 (uri (cran-uri "assertr" version))
18256 (sha256
18257 (base32
18258 "00764vv86r3bn4r85in4w637harffyw605fgq0dj6mrbrwcfb650"))))
18259 (build-system r-build-system)
18260 (propagated-inputs
18261 `(("r-dplyr" ,r-dplyr)
18262 ("r-mass" ,r-mass)
18263 ("r-rlang" ,r-rlang)))
18264 (native-inputs
18265 `(("r-knitr" ,r-knitr))) ; needed for vignette
18266 (home-page "https://github.com/ropensci/assertr")
18267 (synopsis "Assertive programming for R analysis pipelines")
18268 (description
18269 "This package provides functionality to assert conditions that have to be
18270 met so that errors in data used in analysis pipelines can fail quickly. It is
18271 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
18272 in pipelines.")
18273 (license license:expat)))
18274
18275 (define-public r-parameters
18276 (package
18277 (name "r-parameters")
18278 (version "0.12.0")
18279 (source
18280 (origin
18281 (method url-fetch)
18282 (uri (cran-uri "parameters" version))
18283 (sha256
18284 (base32
18285 "0dfqn4l4qmlpwmdva2ahyhlngkzdm0sgiirbdrf3mbbw52bhlmpm"))))
18286 (properties `((upstream-name . "parameters")))
18287 (build-system r-build-system)
18288 (propagated-inputs
18289 `(("r-bayestestr" ,r-bayestestr)
18290 ("r-insight" ,r-insight)))
18291 (native-inputs
18292 `(("r-knitr" ,r-knitr)))
18293 (home-page "https://cran.r-project.org/web/packages/parameters")
18294 (synopsis "Processing of model parameters")
18295 (description
18296 "This package provides utilities for processing the parameters of various
18297 statistical models. Beyond computing p values, CIs, and other indices for a
18298 wide variety of models, this package implements features like standardization
18299 or bootstrapping of parameters and models, feature reduction (feature
18300 extraction and variable selection) as well as conversion between indices of
18301 effect size.")
18302 (license license:gpl3)))
18303
18304 (define-public r-rgdal
18305 (package
18306 (name "r-rgdal")
18307 (version "1.5-23")
18308 (source
18309 (origin
18310 (method url-fetch)
18311 (uri (cran-uri "rgdal" version))
18312 (sha256
18313 (base32 "0vnb7kw762y349pda4aq1hx0smafylmn3635l963qykfji5p99cw"))))
18314 (properties `((upstream-name . "rgdal")))
18315 (build-system r-build-system)
18316 (inputs
18317 `(("gdal" ,gdal)
18318 ("proj" ,proj)
18319 ("zlib" ,zlib)))
18320 (propagated-inputs
18321 `(("r-sp" ,r-sp)))
18322 (native-inputs
18323 `(("pkg-config" ,pkg-config)
18324 ("r-knitr" ,r-knitr)))
18325 (home-page "http://rgdal.r-forge.r-project.org")
18326 (synopsis "Bindings for the Geospatial Data Abstraction Library")
18327 (description
18328 "This package provides bindings to the Geospatial Data Abstraction
18329 Library (GDAL) and access to projection/transformation operations from the
18330 PROJ.4 library.")
18331 (license license:gpl2+)))
18332
18333 (define-public r-insol
18334 (package
18335 (name "r-insol")
18336 (version "1.2.2")
18337 (source
18338 (origin
18339 (method url-fetch)
18340 (uri (cran-uri "insol" version))
18341 (sha256
18342 (base32
18343 "166kgxgzbh55y2qqya6c2si22x0v7asi70im054g6xxwc5187kh3"))))
18344 (properties `((upstream-name . "insol")))
18345 (build-system r-build-system)
18346 (propagated-inputs
18347 `(("r-raster" ,r-raster)))
18348 (native-inputs
18349 `(("gfortran" ,gfortran)))
18350 (home-page "https://meteoexploration.com/R/insol/index.html")
18351 (synopsis "Tools for calculating solar radiation")
18352 (description
18353 "This package provides functions to compute insolation on tilted
18354 surfaces, computes atmospheric transmittance and related parameters such as:
18355 Earth radius vector, declination, sunset and sunrise, daylength, equation of
18356 time, vector in the direction of the sun, vector normal to surface, and some
18357 atmospheric physics.")
18358 (license license:gpl2+)))
18359
18360 (define-public r-lifecycle
18361 (package
18362 (name "r-lifecycle")
18363 (version "1.0.0")
18364 (source
18365 (origin
18366 (method url-fetch)
18367 (uri (cran-uri "lifecycle" version))
18368 (sha256
18369 (base32
18370 "13hgxk93q9387s8dnqpm8dfx610y0pr76khqksj4kbgj2fr4lcq3"))))
18371 (properties `((upstream-name . "lifecycle")))
18372 (build-system r-build-system)
18373 (propagated-inputs
18374 `(("r-glue" ,r-glue)
18375 ("r-rlang" ,r-rlang)))
18376 (native-inputs
18377 `(("r-knitr" ,r-knitr))) ; for vignettes
18378 (home-page "https://github.com/r-lib/lifecycle")
18379 (synopsis "Manage the life cycle of your package functions")
18380 (description
18381 "Manage the life cycle of your exported functions with shared
18382 conventions, documentation badges, and non-invasive deprecation warnings. The
18383 lifecycle package defines four development stages (experimental, maturing,
18384 stable, and questioning) and three deprecation stages (soft-deprecated,
18385 deprecated, and defunct). It makes it easy to insert badges corresponding to
18386 these stages in your documentation. Usage of deprecated functions are
18387 signalled with increasing levels of non-invasive verbosity.")
18388 (license license:gpl3)))
18389
18390 (define-public r-assertable
18391 (package
18392 (name "r-assertable")
18393 (version "0.2.8")
18394 (source
18395 (origin
18396 (method url-fetch)
18397 (uri (cran-uri "assertable" version))
18398 (sha256
18399 (base32
18400 "1cciil1nzxd8gbj49w99jiv077lbpb59vx7bmb4p218aj2h5hqq4"))))
18401 (build-system r-build-system)
18402 (propagated-inputs
18403 `(("r-data-table" ,r-data-table)))
18404 (native-inputs
18405 `(("r-knitr" ,r-knitr)))
18406 (home-page "https://cran.r-project.org/web/packages/assertable/")
18407 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
18408 (description "This package provides simple, flexible assertions on
18409 data.frame or data.table objects with verbose output for vetting. While other
18410 assertion packages apply towards more general use-cases, @code{assertable} is
18411 tailored towards tabular data. It includes functions to check variable names
18412 and values, whether the dataset contains all combinations of a given set of
18413 unique identifiers, and whether it is a certain length. In addition,
18414 @code{assertable} includes utility functions to check the existence of target
18415 files and to efficiently import multiple tabular data files into one
18416 data.table.")
18417 (license license:gpl3)))
18418
18419 (define-public r-quadprog
18420 (package
18421 (name "r-quadprog")
18422 (version "1.5-8")
18423 (source
18424 (origin
18425 (method url-fetch)
18426 (uri (cran-uri "quadprog" version))
18427 (sha256
18428 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
18429 (build-system r-build-system)
18430 (native-inputs
18431 `(("gfortran" ,gfortran)))
18432 (home-page "https://cran.r-project.org/web/packages/quadprog")
18433 (synopsis "Functions to solve quadratic programming problems")
18434 (description
18435 "This package contains routines and documentation for solving quadratic
18436 programming problems.")
18437 (license license:gpl3+)))
18438
18439 (define-public r-desolve
18440 (package
18441 (name "r-desolve")
18442 (version "1.28")
18443 (source
18444 (origin
18445 (method url-fetch)
18446 (uri (cran-uri "deSolve" version))
18447 (sha256
18448 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
18449 (properties `((upstream-name . "deSolve")))
18450 (build-system r-build-system)
18451 (native-inputs
18452 `(("gfortran" ,gfortran)))
18453 (home-page "https://desolve.r-forge.r-project.org/")
18454 (synopsis "Solvers for initial value problems of differential equations")
18455 (description "This package provides functions that solve initial value
18456 problems of a system of first-order @dfn{ordinary differential
18457 equations} (ODE), of @dfn{partial differential equations} (PDE), of
18458 @dfn{differential algebraic equations} (DAE), and of delay differential
18459 equations. The functions provide an interface to the FORTRAN functions
18460 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
18461 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
18462 C-implementation of solvers of the Runge-Kutta family with fixed or variable
18463 time steps. The package contains routines designed for solving ODEs resulting
18464 from 1-D, 2-D and 3-D partial differential equations that have been converted
18465 to ODEs by numerical differencing.")
18466 (license license:gpl2+)))
18467
18468 (define-public r-pracma
18469 (package
18470 (name "r-pracma")
18471 (version "2.3.3")
18472 (source (origin
18473 (method url-fetch)
18474 (uri (cran-uri "pracma" version))
18475 (sha256
18476 (base32 "0g5r5ir5k43ba0ngnsanp108k479l2dnsjd5w6idk1d34ivqs7yg"))))
18477 (build-system r-build-system)
18478 (home-page "https://cran.r-project.org/web/packages/pracma/")
18479 (synopsis "Practical numerical math functions")
18480 (description "This package provides functions for numerical analysis and
18481 linear algebra, numerical optimization, differential equations, plus some
18482 special functions. It uses Matlab function names where appropriate to simplify
18483 porting.")
18484 (license license:gpl3+)))
18485
18486 (define-public r-subplex
18487 (package
18488 (name "r-subplex")
18489 (version "1.6")
18490 (source
18491 (origin
18492 (method url-fetch)
18493 (uri (cran-uri "subplex" version))
18494 (sha256
18495 (base32
18496 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
18497 (build-system r-build-system)
18498 (native-inputs
18499 `(("gfortran" ,gfortran)))
18500 (home-page "https://cran.r-project.org/web/packages/subplex")
18501 (synopsis "Unconstrained optimization using the subplex algorithm")
18502 (description
18503 "This package implements the Subplex optimization algorithm.
18504 It solves unconstrained optimization problems using a simplex method on
18505 subspaces. The method is well suited for optimizing objective functions that
18506 are noisy or are discontinuous at the solution.")
18507 (license license:gpl3+)))
18508
18509 (define-public r-txtplot
18510 (package
18511 (name "r-txtplot")
18512 (version "1.0-4")
18513 (source
18514 (origin
18515 (method url-fetch)
18516 (uri (cran-uri "txtplot" version))
18517 (sha256
18518 (base32
18519 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
18520 (build-system r-build-system)
18521 (home-page "https://cran.r-project.org/web/packages/txtplot/")
18522 (synopsis "Text-based plotting")
18523 (description "This package provides functions to produce rudimentary ASCII
18524 graphics directly in the terminal window. This package provides a basic
18525 plotting function (and equivalents of curve, density, acf and barplot) as well
18526 as a boxplot function.")
18527 (license license:lgpl3+)))
18528
18529 (define-public r-bio3d
18530 (package
18531 (name "r-bio3d")
18532 (version "2.4-1")
18533 (source
18534 (origin
18535 (method url-fetch)
18536 (uri (cran-uri "bio3d" version))
18537 (sha256
18538 (base32
18539 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
18540 (properties `((upstream-name . "bio3d")))
18541 (build-system r-build-system)
18542 (inputs `(("zlib" ,zlib)))
18543 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
18544 (home-page "http://thegrantlab.org/bio3d/")
18545 (synopsis "Biological structure analysis")
18546 (description
18547 "This package provides utilities to process, organize and explore protein
18548 structure, sequence and dynamics data. Features include the ability to read
18549 and write structure, sequence and dynamic trajectory data, perform sequence
18550 and structure database searches, data summaries, atom selection, alignment,
18551 superposition, rigid core identification, clustering, torsion analysis,
18552 distance matrix analysis, structure and sequence conservation analysis, normal
18553 mode analysis, principal component analysis of heterogeneous structure data,
18554 and correlation network analysis from normal mode and molecular dynamics data.
18555 In addition, various utility functions are provided to enable the statistical
18556 and graphical power of the R environment to work with biological sequence and
18557 structural data.")
18558 (license license:gpl2+)))
18559
18560 (define-public r-bios2cor
18561 (package
18562 (name "r-bios2cor")
18563 (version "2.2")
18564 (source
18565 (origin
18566 (method url-fetch)
18567 (uri (cran-uri "Bios2cor" version))
18568 (sha256
18569 (base32
18570 "1wkj9vr33m9jilidil9jpw5rzr3pf7gkimxdvch22ks4bgkx7l1w"))))
18571 (properties `((upstream-name . "Bios2cor")))
18572 (build-system r-build-system)
18573 (propagated-inputs
18574 `(("r-bigmemory" ,r-bigmemory)
18575 ("r-bio3d" ,r-bio3d)
18576 ("r-circular" ,r-circular)
18577 ("r-igraph" ,r-igraph)))
18578 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
18579 (synopsis "From biological sequences and simulations to correlation analysis")
18580 (description
18581 "This package provides utilities for computation and analysis of
18582 correlation/covariation in multiple sequence alignments and in side chain
18583 motions during molecular dynamics simulations. Features include the
18584 computation of correlation/covariation scores using a variety of scoring
18585 functions between either sequence positions in alignments or side chain
18586 dihedral angles in molecular dynamics simulations and utilities to analyze the
18587 correlation/covariation matrix through a variety of tools including network
18588 representation and principal components analysis. In addition, several
18589 utility functions are based on the R graphical environment to provide friendly
18590 tools for help in data interpretation.")
18591 (license license:gpl2+)))
18592
18593 ;; This package includes minified JavaScript files. When upgrading please
18594 ;; check that there are no new minified JavaScript files.
18595 (define-public r-networkd3
18596 (package
18597 (name "r-networkd3")
18598 (version "0.4")
18599 (source
18600 (origin
18601 (method url-fetch)
18602 (uri (cran-uri "networkD3" version))
18603 (sha256
18604 (base32
18605 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
18606 (snippet
18607 '(begin
18608 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
18609 #t))))
18610 (properties `((upstream-name . "networkD3")))
18611 (build-system r-build-system)
18612 (arguments
18613 `(#:modules ((guix build utils)
18614 (guix build r-build-system)
18615 (srfi srfi-1)
18616 (ice-9 popen))
18617 #:phases
18618 (modify-phases %standard-phases
18619 (add-after 'unpack 'process-javascript
18620 (lambda* (#:key inputs #:allow-other-keys)
18621 (with-directory-excursion "inst/htmlwidgets/lib/"
18622 (call-with-values
18623 (lambda ()
18624 (unzip2
18625 `((,(assoc-ref inputs "d3.v4.js")
18626 "d3-4.5.0/d3.min.js"))))
18627 (lambda (sources targets)
18628 (for-each (lambda (source target)
18629 (format #t "Processing ~a --> ~a~%"
18630 source target)
18631 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
18632 (call-with-output-file target
18633 (lambda (port)
18634 (dump-port minified port)))))
18635 sources targets))))
18636 #t)))))
18637 (native-inputs
18638 `(("uglify-js" ,uglify-js)
18639 ;; NOTE: Make sure that this version of d3 is still valid when
18640 ;; upgrading the package.
18641 ("d3.v4.js"
18642 ,(origin
18643 (method url-fetch)
18644 (uri "https://d3js.org/d3.v4.js")
18645 (sha256
18646 (base32
18647 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
18648 (propagated-inputs
18649 `(("r-htmlwidgets" ,r-htmlwidgets)
18650 ("r-igraph" ,r-igraph)
18651 ("r-magrittr" ,r-magrittr)))
18652 (home-page "https://cran.r-project.org/package=networkD3")
18653 (synopsis "D3 JavaScript network graphs from R")
18654 (description
18655 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
18656 graphs from R.")
18657 (license license:gpl3+)))
18658
18659 (define-public r-aasea
18660 (package
18661 (name "r-aasea")
18662 (version "1.1.0")
18663 (source
18664 (origin
18665 (method url-fetch)
18666 (uri (cran-uri "aaSEA" version))
18667 (sha256
18668 (base32
18669 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
18670 (properties `((upstream-name . "aaSEA")))
18671 (build-system r-build-system)
18672 (propagated-inputs
18673 `(("r-bios2cor" ,r-bios2cor)
18674 ("r-dt" ,r-dt)
18675 ("r-hmisc" ,r-hmisc)
18676 ("r-magrittr" ,r-magrittr)
18677 ("r-networkd3" ,r-networkd3)
18678 ("r-plotly" ,r-plotly)
18679 ("r-seqinr" ,r-seqinr)
18680 ("r-shiny" ,r-shiny)
18681 ("r-shinydashboard" ,r-shinydashboard)))
18682 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
18683 (synopsis "Amino acid substitution effect analyzer")
18684 (description
18685 "Given a protein multiple sequence alignment, it is a daunting task to
18686 assess the effects of substitutions along sequence length. The aaSEA package
18687 is intended to help researchers to rapidly analyze property changes caused by
18688 single, multiple and correlated amino acid substitutions in proteins.")
18689 (license license:gpl3)))
18690
18691 (define-public r-abacus
18692 (package
18693 (name "r-abacus")
18694 (version "1.0.0")
18695 (source
18696 (origin
18697 (method url-fetch)
18698 (uri (cran-uri "ABACUS" version))
18699 (sha256
18700 (base32
18701 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
18702 (properties `((upstream-name . "ABACUS")))
18703 (build-system r-build-system)
18704 (propagated-inputs
18705 `(("r-ggplot2" ,r-ggplot2)
18706 ("r-shiny" ,r-shiny)))
18707 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
18708 (synopsis "Apps-based activities for communicating and understanding statistics")
18709 (description
18710 "This package provides a set of Shiny apps for effective communication
18711 and understanding in statistics. The current version includes properties of
18712 normal distribution, properties of sampling distribution, one-sample z and t
18713 tests, two samples independent (unpaired) t test and analysis of variance.")
18714 (license license:gpl3)))
18715
18716 (define-public r-abc-rap
18717 (package
18718 (name "r-abc-rap")
18719 (version "0.9.0")
18720 (source
18721 (origin
18722 (method url-fetch)
18723 (uri (cran-uri "ABC.RAP" version))
18724 (sha256
18725 (base32
18726 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
18727 (properties `((upstream-name . "ABC.RAP")))
18728 (build-system r-build-system)
18729 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
18730 (synopsis "Array-based CpG region analysis pipeline")
18731 (description
18732 "This package aims to identify candidate genes that are differentially
18733 methylated between cases and controls. It applies Student's t-test and delta
18734 beta analysis to identify candidate genes containing multiple CpG sites.")
18735 (license license:gpl3)))
18736
18737 (define-public r-abcadm
18738 (package
18739 (name "r-abcadm")
18740 (version "1.0")
18741 (source
18742 (origin
18743 (method url-fetch)
18744 (uri (cran-uri "abcADM" version))
18745 (sha256
18746 (base32
18747 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
18748 (properties `((upstream-name . "abcADM")))
18749 (build-system r-build-system)
18750 (propagated-inputs
18751 `(("r-bh" ,r-bh)
18752 ("r-rcpp" ,r-rcpp)))
18753 (home-page "https://cran.r-project.org/web/packages/abcADM/")
18754 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
18755 (description
18756 "This package provides tools to estimate parameters of accumulated
18757 damage (load duration) models based on failure time data under a Bayesian
18758 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
18759 long-term reliability under stochastic load profiles.")
18760 (license license:gpl3)))
18761
18762 (define-public r-rglpk
18763 (package
18764 (name "r-rglpk")
18765 (version "0.6-4")
18766 (source
18767 (origin
18768 (method url-fetch)
18769 (uri (cran-uri "Rglpk" version))
18770 (sha256
18771 (base32
18772 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
18773 (properties `((upstream-name . "Rglpk")))
18774 (build-system r-build-system)
18775 (propagated-inputs
18776 `(("r-slam" ,r-slam)))
18777 (inputs
18778 `(("glpk" ,glpk)))
18779 (home-page "https://r-forge.r-project.org/projects/rglp/")
18780 (synopsis "R interface to the GNU Linear Programming Kit")
18781 (description
18782 "This package provides an R interface to the GNU Linear Programming Kit,
18783 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
18784 integer linear programming} (MILP) and other related problems.")
18785 ;; Either license
18786 (license (list license:gpl2 license:gpl3))))
18787
18788 (define-public r-abcdefba
18789 (package
18790 (name "r-abcdefba")
18791 (version "0.4")
18792 (source
18793 (origin
18794 (method url-fetch)
18795 (uri (cran-uri "abcdeFBA" version))
18796 (sha256
18797 (base32
18798 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
18799 (properties `((upstream-name . "abcdeFBA")))
18800 (build-system r-build-system)
18801 (propagated-inputs
18802 `(("r-corrplot" ,r-corrplot)
18803 ("r-lattice" ,r-lattice)
18804 ("r-rgl" ,r-rgl)
18805 ("r-rglpk" ,r-rglpk)))
18806 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
18807 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
18808 (description
18809 "This package provides functions for Constraint Based Simulation using
18810 Flux Balance Analysis and informative analysis of the data generated during
18811 simulation.")
18812 (license license:gpl2)))
18813
18814 (define-public r-abcrlda
18815 (package
18816 (name "r-abcrlda")
18817 (version "1.0.3")
18818 (source
18819 (origin
18820 (method url-fetch)
18821 (uri (cran-uri "abcrlda" version))
18822 (sha256
18823 (base32
18824 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
18825 (properties `((upstream-name . "abcrlda")))
18826 (build-system r-build-system)
18827 (home-page "https://ieeexplore.ieee.org/document/8720003/")
18828 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
18829 (description
18830 "This package offers methods to perform @dfn{asymptotically
18831 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
18832 cost-sensitive binary classification. The bias-correction is an estimate of
18833 the bias term added to regularized discriminant analysis that minimizes the
18834 overall risk.")
18835 (license license:gpl3)))
18836
18837 (define-public r-abemus
18838 (package
18839 (name "r-abemus")
18840 (version "1.0.1")
18841 (source
18842 (origin
18843 (method url-fetch)
18844 (uri (cran-uri "abemus" version))
18845 (sha256
18846 (base32
18847 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
18848 (properties `((upstream-name . "abemus")))
18849 (build-system r-build-system)
18850 (propagated-inputs
18851 `(("r-data-table" ,r-data-table)))
18852 (home-page "https://cran.r-project.org/web/packages/abemus/")
18853 (synopsis "Adaptive base error model in ultra-deep sequencing data")
18854 (description
18855 "This package provides an implementation of @dfn{Adaptive Base Error
18856 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
18857 platform-specific genetic knowledge and empirical signal to readily detect and
18858 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
18859 cell free DNA} (cfDNA).")
18860 (license license:gpl3)))
18861
18862 ;; This package includes minified JavaScript files. When upgrading please
18863 ;; check that there are no new minified JavaScript files.
18864 (define-public r-rintrojs
18865 (package
18866 (name "r-rintrojs")
18867 (version "0.2.2")
18868 (source
18869 (origin
18870 (method url-fetch)
18871 (uri (cran-uri "rintrojs" version))
18872 (sha256
18873 (base32
18874 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
18875 (properties `((upstream-name . "rintrojs")))
18876 (build-system r-build-system)
18877 (arguments
18878 `(#:modules ((guix build utils)
18879 (guix build r-build-system)
18880 (srfi srfi-1)
18881 (ice-9 popen))
18882 #:phases
18883 (modify-phases %standard-phases
18884 (add-after 'unpack 'process-javascript
18885 (lambda* (#:key inputs #:allow-other-keys)
18886 (with-directory-excursion "inst/javascript/introjs/"
18887 (call-with-values
18888 (lambda ()
18889 (unzip2
18890 `((,(assoc-ref inputs "intro.js")
18891 "intro.min.js"))))
18892 (lambda (sources targets)
18893 (for-each (lambda (source target)
18894 (format #t "Processing ~a --> ~a~%"
18895 source target)
18896 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
18897 (call-with-output-file target
18898 (lambda (port)
18899 (dump-port minified port)))))
18900 sources targets))))
18901 #t)))))
18902 (native-inputs
18903 `(("uglify-js" ,uglify-js)
18904 ("intro.js"
18905 ,(origin
18906 (method url-fetch)
18907 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
18908 (sha256
18909 (base32
18910 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
18911 (propagated-inputs
18912 `(("r-jsonlite" ,r-jsonlite)
18913 ("r-shiny" ,r-shiny)))
18914 (home-page "https://github.com/carlganz/rintrojs")
18915 (synopsis "Wrapper for the Intro.js library")
18916 (description
18917 "This package provides a wrapper for the @url{http://www.introjs.com,
18918 Intro.js} library. This package makes it easy to include step-by-step
18919 introductions, and clickable hints in a Shiny application. It supports both
18920 static introductions in the UI, and programmatic introductions from the
18921 server-side.")
18922 (license license:agpl3+)))
18923
18924 (define-public r-sysfonts
18925 (package
18926 (name "r-sysfonts")
18927 (version "0.8.3")
18928 (source
18929 (origin
18930 (method url-fetch)
18931 (uri (cran-uri "sysfonts" version))
18932 (sha256
18933 (base32
18934 "00kbazxw6zd1kakfshffdj928krca53bw9k78k0zar40mbqxiwd5"))))
18935 (properties `((upstream-name . "sysfonts")))
18936 (build-system r-build-system)
18937 (inputs
18938 `(("freetype" ,freetype)
18939 ("libpng" ,libpng)
18940 ("zlib" ,zlib)))
18941 (native-inputs
18942 `(("pkg-config" ,pkg-config)))
18943 (home-page "https://github.com/yixuan/sysfonts")
18944 (synopsis "Loading fonts into R")
18945 (description
18946 "This is a package to simplify loading of system fonts and Google Fonts
18947 into R, in order to support other packages.")
18948 (license license:gpl2)))
18949
18950 (define-public r-showtextdb
18951 (package
18952 (name "r-showtextdb")
18953 (version "3.0")
18954 (source
18955 (origin
18956 (method url-fetch)
18957 (uri (cran-uri "showtextdb" version))
18958 (sha256
18959 (base32
18960 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
18961 (properties `((upstream-name . "showtextdb")))
18962 (build-system r-build-system)
18963 (propagated-inputs
18964 `(("r-sysfonts" ,r-sysfonts)))
18965 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
18966 (synopsis "Font files for the 'showtext' package")
18967 (description
18968 "This package provides font files that can be used by the @code{showtext}
18969 package.")
18970 (license license:asl2.0)))
18971
18972 (define-public r-showtext
18973 (package
18974 (name "r-showtext")
18975 (version "0.9-2")
18976 (source
18977 (origin
18978 (method url-fetch)
18979 (uri (cran-uri "showtext" version))
18980 (sha256
18981 (base32
18982 "0y5mw6ffk92r7b22irrfhdmj4hxfl0d1wjxj14hznbapc4qm6f0z"))))
18983 (properties `((upstream-name . "showtext")))
18984 (build-system r-build-system)
18985 (inputs
18986 `(("freetype" ,freetype)
18987 ("libpng" ,libpng)
18988 ("zlib" ,zlib)))
18989 (propagated-inputs
18990 `(("r-showtextdb" ,r-showtextdb)
18991 ("r-sysfonts" ,r-sysfonts)))
18992 (native-inputs
18993 `(("pkg-config" ,pkg-config)
18994 ("r-knitr" ,r-knitr)))
18995 (home-page "https://github.com/yixuan/showtext")
18996 (synopsis "Using fonts more easily in R graphs")
18997 (description
18998 "This package aims to make it easy to use various types of
18999 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
19000 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
19001 will be converted into polygons or raster images, hence after the plot has
19002 been created, it no longer relies on the font files. No external software
19003 such as Ghostscript is needed to use this package.")
19004 (license license:asl2.0)))
19005
19006 (define-public r-emojifont
19007 (package
19008 (name "r-emojifont")
19009 (version "0.5.3")
19010 (source
19011 (origin
19012 (method url-fetch)
19013 (uri (cran-uri "emojifont" version))
19014 (sha256
19015 (base32
19016 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
19017 (properties `((upstream-name . "emojifont")))
19018 (build-system r-build-system)
19019 (propagated-inputs
19020 `(("r-ggplot2" ,r-ggplot2)
19021 ("r-proto" ,r-proto)
19022 ("r-showtext" ,r-showtext)
19023 ("r-sysfonts" ,r-sysfonts)))
19024 (home-page "https://guangchuangyu.github.io/emojifont")
19025 (synopsis "Emoji and Font Awesome in R graphics")
19026 (description
19027 "This package enables the use of emoji and the Font Awesome glyphs in
19028 both base and ggplot2 graphics.")
19029 (license license:artistic2.0)))
19030
19031 (define-public r-abstractr
19032 (package
19033 (name "r-abstractr")
19034 (version "0.1.0")
19035 (source
19036 (origin
19037 (method url-fetch)
19038 (uri (cran-uri "abstractr" version))
19039 (sha256
19040 (base32
19041 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
19042 (properties `((upstream-name . "abstractr")))
19043 (build-system r-build-system)
19044 (propagated-inputs
19045 `(("r-colourpicker" ,r-colourpicker)
19046 ("r-emojifont" ,r-emojifont)
19047 ("r-ggplot2" ,r-ggplot2)
19048 ("r-gridextra" ,r-gridextra)
19049 ("r-rintrojs" ,r-rintrojs)
19050 ("r-shiny" ,r-shiny)
19051 ("r-shinythemes" ,r-shinythemes)))
19052 (home-page "https://matt-kumar.shinyapps.io/portfolio")
19053 (synopsis "R-Shiny application for creating visual abstracts")
19054 (description
19055 "This package provides an R Shiny application to create visual abstracts
19056 for original research. A variety of user defined options and formatting are
19057 included.")
19058 (license license:gpl3)))
19059
19060 (define-public r-qgam
19061 (package
19062 (name "r-qgam")
19063 (version "1.3.2")
19064 (source
19065 (origin
19066 (method url-fetch)
19067 (uri (cran-uri "qgam" version))
19068 (sha256
19069 (base32
19070 "0lks2cj0p7irp1i01756v1l7i26d7alax1fbkc20qd6wpz840fi7"))))
19071 (properties `((upstream-name . "qgam")))
19072 (build-system r-build-system)
19073 (propagated-inputs
19074 `(("r-doparallel" ,r-doparallel)
19075 ("r-mgcv" ,r-mgcv)
19076 ("r-plyr" ,r-plyr)
19077 ("r-shiny" ,r-shiny)))
19078 (native-inputs `(("r-knitr" ,r-knitr)))
19079 (home-page "https://cran.r-project.org/web/packages/qgam/")
19080 (synopsis "Smooth additive quantile regression models")
19081 (description
19082 "This package provides smooth additive quantile regression models, fitted
19083 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
19084 the smoothing parameters are estimated automatically by marginal loss
19085 minimization, while the regression coefficients are estimated using either
19086 PIRLS or Newton algorithm. The learning rate is determined so that the
19087 Bayesian credible intervals of the estimated effects have approximately the
19088 correct coverage. The main function is @code{qgam()} which is similar to
19089 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
19090 regression models.")
19091 (license license:gpl2+)))
19092
19093 (define-public r-abtest
19094 (package
19095 (name "r-abtest")
19096 (version "0.2.2")
19097 (source
19098 (origin
19099 (method url-fetch)
19100 (uri (cran-uri "abtest" version))
19101 (sha256
19102 (base32
19103 "1ak0m4jd1grriwg4pn3aqf1468qma6rjn5kqjh8izx7zl29jd07v"))))
19104 (properties `((upstream-name . "abtest")))
19105 (build-system r-build-system)
19106 (propagated-inputs
19107 `(("r-matrix" ,r-matrix)
19108 ("r-mvtnorm" ,r-mvtnorm)
19109 ("r-plotrix" ,r-plotrix)
19110 ("r-qgam" ,r-qgam)
19111 ("r-rcolorbrewer" ,r-rcolorbrewer)
19112 ("r-rcpp" ,r-rcpp)
19113 ("r-sn" ,r-sn)
19114 ("r-truncnorm" ,r-truncnorm)))
19115 (home-page "https://cran.r-project.org/web/packages/abtest/")
19116 (synopsis "Bayesian A/B testing")
19117 (description
19118 "This package provides functions for Bayesian A/B testing including prior
19119 elicitation options based on Kass and Vaidyanathan (1992)
19120 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
19121 (license license:gpl2+)))
19122
19123 (define-public r-accept
19124 (package
19125 (name "r-accept")
19126 (version "0.7.1")
19127 (source
19128 (origin
19129 (method url-fetch)
19130 (uri (cran-uri "accept" version))
19131 (sha256
19132 (base32
19133 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
19134 (properties `((upstream-name . "accept")))
19135 (build-system r-build-system)
19136 (propagated-inputs
19137 `(("r-dplyr" ,r-dplyr)
19138 ("r-extrafont" ,r-extrafont)
19139 ("r-mass" ,r-mass)
19140 ("r-plotly" ,r-plotly)
19141 ("r-stringr" ,r-stringr)
19142 ("r-viridis" ,r-viridis)))
19143 (home-page "https://cran.r-project.org/web/packages/accept/")
19144 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
19145 (description
19146 "This package allows clinicians to predict the rate and severity of
19147 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
19148 Disease} (COPD) patients, based on the clinical prediction model published in
19149 Adibi et al. (2019) @url{doi:10.1101/651901}.")
19150 (license license:gpl3)))
19151
19152 (define-public r-smpracticals
19153 (package
19154 (name "r-smpracticals")
19155 (version "1.4-3")
19156 (source
19157 (origin
19158 (method url-fetch)
19159 (uri (cran-uri "SMPracticals" version))
19160 (sha256
19161 (base32
19162 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
19163 (properties `((upstream-name . "SMPracticals")))
19164 (build-system r-build-system)
19165 (propagated-inputs
19166 `(("r-ellipse" ,r-ellipse)
19167 ("r-mass" ,r-mass)
19168 ("r-nlme" ,r-nlme)
19169 ("r-survival" ,r-survival)))
19170 (home-page "http://statwww.epfl.ch/davison/SM/")
19171 (synopsis "Practicals for use with Davison (2003) Statistical Models")
19172 (description
19173 "This package contains the datasets and a few functions for use with the
19174 practicals outlined in Appendix A of the book Statistical Models (Davison,
19175 2003, Cambridge University Press). The practicals themselves can be found at
19176 @url{http://statwww.epfl.ch/davison/SM/}.")
19177 (license license:gpl2+)))
19178
19179 (define-public r-fgui
19180 (package
19181 (name "r-fgui")
19182 (version "1.0-8")
19183 (source
19184 (origin
19185 (method url-fetch)
19186 (uri (cran-uri "fgui" version))
19187 (sha256
19188 (base32
19189 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
19190 (properties `((upstream-name . "fgui")))
19191 (build-system r-build-system)
19192 (home-page
19193 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
19194 (synopsis "Create GUI for R functions")
19195 (description
19196 "Rapidly create a GUI for a function you created by automatically
19197 creating widgets for arguments of the function. This package automatically
19198 parses help routines for context-sensitive help to these arguments. The
19199 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
19200 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
19201 incorporated into the interface for greater customization for the more
19202 experienced.")
19203 ;; Any version of the GPL.
19204 (license (list license:gpl2+ license:gpl3+))))
19205
19206 (define-public r-tcltk2
19207 (package
19208 (name "r-tcltk2")
19209 (version "1.2-11")
19210 (source
19211 (origin
19212 (method url-fetch)
19213 (uri (cran-uri "tcltk2" version))
19214 (sha256
19215 (base32
19216 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
19217 (properties `((upstream-name . "tcltk2")))
19218 (build-system r-build-system)
19219 (inputs
19220 `(("tcl" ,tcl)
19221 ("tk" ,tk)))
19222 (home-page "https://www.sciviews.org/SciViews-R")
19223 (synopsis "Tcl/Tk additions")
19224 (description
19225 "This package provides a series of additional Tcl commands and Tk widgets
19226 with style and various functions to supplement the tcltk package")
19227 (license license:lgpl3)))
19228
19229 (define-public r-accrual
19230 (package
19231 (name "r-accrual")
19232 (version "1.3")
19233 (source
19234 (origin
19235 (method url-fetch)
19236 (uri (cran-uri "accrual" version))
19237 (sha256
19238 (base32
19239 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
19240 (properties `((upstream-name . "accrual")))
19241 (build-system r-build-system)
19242 (propagated-inputs
19243 `(("r-fgui" ,r-fgui)
19244 ("r-smpracticals" ,r-smpracticals)
19245 ("r-tcltk2" ,r-tcltk2)))
19246 (home-page "https://cran.r-project.org/web/packages/accrual/")
19247 (synopsis "Bayesian accrual prediction")
19248 (description
19249 "Subject recruitment for medical research is challenging. Slow patient
19250 accrual leads to delay in research. Accrual monitoring during the process of
19251 recruitment is critical. Researchers need reliable tools to manage the
19252 accrual rate. This package provides an implementation of a Bayesian method
19253 that integrates researcher's experience on previous trials and data from the
19254 current study, providing reliable prediction on accrual rate for clinical
19255 studies. It provides functions for Bayesian accrual prediction which can be
19256 easily used by statisticians and clinical researchers.")
19257 (license license:gpl2)))
19258
19259 (define-public r-accrued
19260 (package
19261 (name "r-accrued")
19262 (version "1.4.1")
19263 (source
19264 (origin
19265 (method url-fetch)
19266 (uri (cran-uri "accrued" version))
19267 (sha256
19268 (base32
19269 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
19270 (properties `((upstream-name . "accrued")))
19271 (build-system r-build-system)
19272 (home-page "https://cran.r-project.org/web/packages/accrued/")
19273 (synopsis "Data quality visualization tools for partially accruing data")
19274 (description
19275 "This is a package for visualizing data quality of partially accruing
19276 data.")
19277 (license license:gpl3)))
19278
19279 (define-public r-mda
19280 (package
19281 (name "r-mda")
19282 (version "0.5-2")
19283 (source
19284 (origin
19285 (method url-fetch)
19286 (uri (cran-uri "mda" version))
19287 (sha256
19288 (base32
19289 "1hq0zhhz9klmp4zcr1w8hyn7s1h9kfg57d2l2mfm7psx459j0krl"))))
19290 (properties `((upstream-name . "mda")))
19291 (build-system r-build-system)
19292 (propagated-inputs `(("r-class" ,r-class)))
19293 (native-inputs `(("gfortran" ,gfortran)))
19294 (home-page "https://cran.r-project.org/web/packages/mda/")
19295 (synopsis "Mixture and flexible discriminant analysis")
19296 (description
19297 "This is a package for mixture and flexible discriminant analysis,
19298 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
19299 (license license:gpl2)))
19300
19301 (define-public r-elasticnet
19302 (package
19303 (name "r-elasticnet")
19304 (version "1.3")
19305 (source
19306 (origin
19307 (method url-fetch)
19308 (uri (cran-uri "elasticnet" version))
19309 (sha256
19310 (base32
19311 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
19312 (properties `((upstream-name . "elasticnet")))
19313 (build-system r-build-system)
19314 (propagated-inputs
19315 `(("r-lars" ,r-lars)))
19316 (home-page "http://users.stat.umn.edu/~zouxx019/")
19317 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
19318 (description
19319 "This package provides functions for fitting the entire solution path of
19320 the Elastic-Net and also provides functions for estimating sparse Principal
19321 Components. The Lasso solution paths can be computed by the same function.")
19322 (license license:gpl2+)))
19323
19324 (define-public r-sparselda
19325 (package
19326 (name "r-sparselda")
19327 (version "0.1-9")
19328 (source
19329 (origin
19330 (method url-fetch)
19331 (uri (cran-uri "sparseLDA" version))
19332 (sha256
19333 (base32
19334 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
19335 (properties `((upstream-name . "sparseLDA")))
19336 (build-system r-build-system)
19337 (propagated-inputs
19338 `(("r-elasticnet" ,r-elasticnet)
19339 ("r-mass" ,r-mass)
19340 ("r-mda" ,r-mda)))
19341 (home-page "https://www.imm.dtu.dk/~lkhc/")
19342 (synopsis "Sparse discriminant analysis")
19343 (description
19344 "This package performs sparse linear discriminant analysis for Gaussians
19345 and mixture of Gaussian models.")
19346 (license license:gpl2+)))
19347
19348 (define-public r-accsda
19349 (package
19350 (name "r-accsda")
19351 (version "1.0.0")
19352 (source
19353 (origin
19354 (method url-fetch)
19355 (uri (cran-uri "accSDA" version))
19356 (sha256
19357 (base32
19358 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
19359 (properties `((upstream-name . "accSDA")))
19360 (build-system r-build-system)
19361 (propagated-inputs
19362 `(("r-ggplot2" ,r-ggplot2)
19363 ("r-ggthemes" ,r-ggthemes)
19364 ("r-gridextra" ,r-gridextra)
19365 ("r-mass" ,r-mass)
19366 ("r-rarpack" ,r-rarpack)
19367 ("r-sparselda" ,r-sparselda)))
19368 (home-page "https://github.com/gumeo/accSDA/wiki")
19369 (synopsis "Accelerated sparse discriminant analysis")
19370 (description
19371 "This package provides an implementation of sparse linear discriminant
19372 analysis, which is a supervised classification method for multiple classes.
19373 Various novel optimization approaches to this problem are implemented
19374 including @dfn{alternating direction method of multipliers} (ADMM),
19375 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
19376 Functions for performing cross validation are also supplied along with basic
19377 prediction and plotting functions. @dfn{Sparse zero variance
19378 discriminant} (SZVD) analysis is also included in the package.")
19379 (license license:gpl2+)))
19380
19381 (define-public r-ace2fastq
19382 (package
19383 (name "r-ace2fastq")
19384 (version "0.6.0")
19385 (source
19386 (origin
19387 (method url-fetch)
19388 (uri (cran-uri "ace2fastq" version))
19389 (sha256
19390 (base32
19391 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
19392 (properties `((upstream-name . "ace2fastq")))
19393 (build-system r-build-system)
19394 (propagated-inputs
19395 `(("r-stringr" ,r-stringr)))
19396 (home-page "https://github.com/c5sire/ace2fastq")
19397 (synopsis "ACE file to FASTQ converter")
19398 (description
19399 "The ACE file format is used in genomics to store contigs from sequencing
19400 machines. This tools converts it into FASTQ format. Both formats contain the
19401 sequence characters and their corresponding quality information. Unlike the
19402 FASTQ file, the ACE file stores the quality values numerically. The
19403 conversion algorithm uses the standard Sanger formula. The package
19404 facilitates insertion into pipelines, and content inspection.")
19405 (license license:gpl3)))
19406
19407 (define-public r-rngwell
19408 (package
19409 (name "r-rngwell")
19410 (version "0.10-6")
19411 (source
19412 (origin
19413 (method url-fetch)
19414 (uri (cran-uri "rngWELL" version))
19415 (sha256
19416 (base32
19417 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
19418 (properties `((upstream-name . "rngWELL")))
19419 (build-system r-build-system)
19420 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
19421 (synopsis "Toolbox for WELL random number generators")
19422 (description
19423 "This is a dedicated package to WELL pseudo random generators, which were
19424 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
19425 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
19426 (license license:bsd-3)))
19427
19428 (define-public r-randtoolbox
19429 (package
19430 (name "r-randtoolbox")
19431 (version "1.30.1")
19432 (source
19433 (origin
19434 (method url-fetch)
19435 (uri (cran-uri "randtoolbox" version))
19436 (sha256
19437 (base32
19438 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
19439 (properties `((upstream-name . "randtoolbox")))
19440 (build-system r-build-system)
19441 (propagated-inputs
19442 `(("r-rngwell" ,r-rngwell)))
19443 (native-inputs
19444 `(("gfortran" ,gfortran)))
19445 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
19446 (synopsis "Toolbox for pseudo and quasi random number generation")
19447 (description
19448 "This package provides
19449
19450 @enumerate
19451 @item pseudo random generators, such as general linear
19452 congruential generators, multiple recursive generators and generalized
19453 feedback shift register (SF-Mersenne Twister algorithm and WELL
19454 generators)
19455
19456 @item quasi random generators, such as the Torus algorithm, the Sobol
19457 sequence, the Halton sequence (including the Van der Corput sequence), and
19458
19459 @item some generator tests: the gap test, the serial test, the poker test.
19460 @end enumerate
19461
19462 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
19463 (license license:bsd-3)))
19464
19465 (define-public r-lhs
19466 (package
19467 (name "r-lhs")
19468 (version "1.1.1")
19469 (source
19470 (origin
19471 (method url-fetch)
19472 (uri (cran-uri "lhs" version))
19473 (sha256
19474 (base32
19475 "1p4h03qlijs2a59wfd4rlvdlb9i87pw2zm8xsjd6yzz8vlm9yglh"))))
19476 (properties `((upstream-name . "lhs")))
19477 (build-system r-build-system)
19478 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19479 (native-inputs
19480 `(("r-knitr" ,r-knitr)))
19481 (home-page "https://github.com/bertcarnell/lhs")
19482 (synopsis "Latin Hypercube Samples")
19483 (description
19484 "This package provides a number of methods for creating and augmenting
19485 Latin Hypercube Samples.")
19486 (license license:gpl3)))
19487
19488 (define-public r-acebayes
19489 (package
19490 (name "r-acebayes")
19491 (version "1.10")
19492 (source
19493 (origin
19494 (method url-fetch)
19495 (uri (cran-uri "acebayes" version))
19496 (sha256
19497 (base32
19498 "11bffz430gdfdaxjx3simig66vhynmx6l1ylac4q2shcmj52nx73"))))
19499 (properties `((upstream-name . "acebayes")))
19500 (build-system r-build-system)
19501 (propagated-inputs
19502 `(("r-compare" ,r-compare)
19503 ("r-lhs" ,r-lhs)
19504 ("r-randtoolbox" ,r-randtoolbox)
19505 ("r-rcpp" ,r-rcpp)
19506 ("r-rcpparmadillo" ,r-rcpparmadillo)))
19507 (home-page "https://cran.r-project.org/web/packages/acebayes/")
19508 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
19509 (description
19510 "Finding an optimal Bayesian experimental design involves maximizing an
19511 objective function given by the expectation of some appropriately chosen
19512 utility function with respect to the joint distribution of unknown
19513 quantities (including responses). This objective function is usually not
19514 available in closed form and the design space can be continuous and of high
19515 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
19516 to maximise an approximation to the expectation of the utility function.")
19517 (license license:gpl2)))
19518
19519 (define-public r-acet
19520 (package
19521 (name "r-acet")
19522 (version "1.8.1")
19523 (source
19524 (origin
19525 (method url-fetch)
19526 (uri (cran-uri "ACEt" version))
19527 (sha256
19528 (base32
19529 "0b5lfpnppyk0237phr2aybhx29nhm8ngwk2qa1y4lshrvsw97wg4"))))
19530 (properties `((upstream-name . "ACEt")))
19531 (build-system r-build-system)
19532 (propagated-inputs
19533 `(("r-bh" ,r-bh)
19534 ("r-mass" ,r-mass)
19535 ("r-rcpp" ,r-rcpp)
19536 ("r-rcpparmadillo" ,r-rcpparmadillo)))
19537 (home-page "https://cran.r-project.org/web/packages/ACEt/")
19538 (synopsis "Estimating dynamic heritability and twin model comparison")
19539 (description
19540 "This package supports twin models that are able to estimate the dynamic
19541 behaviour of the variance components in the classical twin models with respect
19542 to age using B-splines and P-splines.")
19543 (license license:gpl2+)))
19544
19545 (define-public r-acfmperiod
19546 (package
19547 (name "r-acfmperiod")
19548 (version "1.0.0")
19549 (source
19550 (origin
19551 (method url-fetch)
19552 (uri (cran-uri "acfMPeriod" version))
19553 (sha256
19554 (base32
19555 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
19556 (properties `((upstream-name . "acfMPeriod")))
19557 (build-system r-build-system)
19558 (propagated-inputs
19559 `(("r-mass" ,r-mass)))
19560 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
19561 (synopsis "Estimation of the ACF from the M-periodogram")
19562 (description
19563 "This package support non-robust and robust computations of the sample
19564 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
19565 univariate and multivariate processes. The methodology consists in reversing
19566 the diagonalization procedure involving the periodogram or the
19567 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
19568 ACOVF or the ACF as discussed in Fuller (1995)
19569 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
19570 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
19571 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
19572 (license license:gpl2+)))
19573
19574 (define-public r-gamlss-data
19575 (package
19576 (name "r-gamlss-data")
19577 (version "5.1-4")
19578 (source
19579 (origin
19580 (method url-fetch)
19581 (uri (cran-uri "gamlss.data" version))
19582 (sha256
19583 (base32
19584 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
19585 (properties `((upstream-name . "gamlss.data")))
19586 (build-system r-build-system)
19587 (home-page "http://www.gamlss.org/")
19588 (synopsis "GAMLSS data")
19589 (description
19590 "This package provides data used as examples to demonstrate GAMLSS
19591 models.")
19592 ;; Either version of the license
19593 (license (list license:gpl2 license:gpl3))))
19594
19595 (define-public r-gamlss
19596 (package
19597 (name "r-gamlss")
19598 (version "5.3-1")
19599 (source
19600 (origin
19601 (method url-fetch)
19602 (uri (cran-uri "gamlss" version))
19603 (sha256
19604 (base32
19605 "1ngf6g4zixwm6ni5r0fs0f6132xd2f2a6mlski9hlqnvvwb46iwr"))))
19606 (properties `((upstream-name . "gamlss")))
19607 (build-system r-build-system)
19608 (propagated-inputs
19609 `(("r-gamlss-data" ,r-gamlss-data)
19610 ("r-gamlss-dist" ,r-gamlss-dist)
19611 ("r-mass" ,r-mass)
19612 ("r-nlme" ,r-nlme)
19613 ("r-survival" ,r-survival)))
19614 (home-page "http://www.gamlss.org/")
19615 (synopsis "Generalized additive models for location scale and shape")
19616 (description
19617 "This package provides functions for fitting the generalized additive
19618 models for location scale and shape introduced by Rigby and
19619 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
19620 use a distributional regression approach where all the parameters of the
19621 conditional distribution of the response variable are modelled using
19622 explanatory variables.")
19623 ;; Either version of the license
19624 (license (list license:gpl2 license:gpl3))))
19625
19626 (define-public r-acid
19627 (package
19628 (name "r-acid")
19629 (version "1.1")
19630 (source
19631 (origin
19632 (method url-fetch)
19633 (uri (cran-uri "acid" version))
19634 (sha256
19635 (base32
19636 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
19637 (properties `((upstream-name . "acid")))
19638 (build-system r-build-system)
19639 (propagated-inputs
19640 `(("r-gamlss" ,r-gamlss)
19641 ("r-gamlss-dist" ,r-gamlss-dist)
19642 ("r-hmisc" ,r-hmisc)))
19643 (home-page "https://cran.r-project.org/web/packages/acid/")
19644 (synopsis "Analysing conditional income distributions")
19645 (description
19646 "This package provides functions for the analysis of income distributions
19647 for subgroups of the population as defined by a set of variables like age,
19648 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
19649 distribution as well as functions for moments, inequality measures, entropy
19650 measures and polarisation measures of income distributions. This package thus
19651 aides the analysis of income inequality by offering tools for the exploratory
19652 analysis of income distributions at the disaggregated level.")
19653 (license license:gpl3)))
19654
19655 (define-public r-acm4r
19656 (package
19657 (name "r-acm4r")
19658 (version "1.0")
19659 (source
19660 (origin
19661 (method url-fetch)
19662 (uri (cran-uri "acm4r" version))
19663 (sha256
19664 (base32
19665 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
19666 (properties `((upstream-name . "acm4r")))
19667 (build-system r-build-system)
19668 (propagated-inputs `(("r-mass" ,r-mass)))
19669 (home-page "https://cran.r-project.org/web/packages/acm4r/")
19670 (synopsis "Align-and-count method comparisons of RFLP data")
19671 (description
19672 "This is a package to compare sequence fragment lengths or molecular
19673 weights from pairs of lanes. The number of matching bands in the
19674 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
19675 the align-and-count method.")
19676 ;; Any version of the GPL
19677 (license (list license:gpl2+ license:gpl3+))))
19678
19679 (define-public r-filelock
19680 (package
19681 (name "r-filelock")
19682 (version "1.0.2")
19683 (source
19684 (origin
19685 (method url-fetch)
19686 (uri (cran-uri "filelock" version))
19687 (sha256
19688 (base32
19689 "00ql5fw1hidpfnm0szaavf43ahmsnvdbi8i5lr1nrcc90yaiaadc"))))
19690 (properties `((upstream-name . "filelock")))
19691 (build-system r-build-system)
19692 (home-page "https://github.com/r-lib/filelock")
19693 (synopsis "Portable file locking")
19694 (description
19695 "This library lets you place an exclusive or shared lock on a file using
19696 the appropriate system call provided by the underlying operating system.")
19697 (license license:expat)))
19698
19699 (define-public r-filematrix
19700 (package
19701 (name "r-filematrix")
19702 (version "1.3")
19703 (source
19704 (origin
19705 (method url-fetch)
19706 (uri (cran-uri "filematrix" version))
19707 (sha256
19708 (base32
19709 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
19710 (properties `((upstream-name . "filematrix")))
19711 (build-system r-build-system)
19712 ;; These inputs are needed for vignettes
19713 (native-inputs
19714 `(("r-knitr" ,r-knitr)
19715 ("r-rmarkdown" ,r-rmarkdown)
19716 ("pandoc-citeproc" ,pandoc-citeproc)))
19717 (home-page "https://github.com/andreyshabalin/filematrix")
19718 (synopsis "File-backed matrix class with convenient read and write access")
19719 (description
19720 "This package provides an interface for working with large matrices
19721 stored in files, not in computer memory. It supports multiple non-character
19722 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
19723 byte real values). Access to parts of the matrix is done by indexing, exactly
19724 as with usual R matrices. It supports very large matrices; the package has
19725 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
19726 columns, ad allows for quick addition of extra columns to a filematrix.")
19727 (license license:lgpl3)))
19728
19729 (define-public r-acmeeqtl
19730 (package
19731 (name "r-acmeeqtl")
19732 (version "1.6")
19733 (source
19734 (origin
19735 (method url-fetch)
19736 (uri (cran-uri "ACMEeqtl" version))
19737 (sha256
19738 (base32
19739 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
19740 (properties `((upstream-name . "ACMEeqtl")))
19741 (build-system r-build-system)
19742 (propagated-inputs
19743 `(("r-filematrix" ,r-filematrix)))
19744 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
19745 (synopsis "Estimation of interpretable eQTL effect sizes")
19746 (description
19747 "This package provides a non-linear model, termed ACME, that reflects a
19748 parsimonious biological model for allelic contributions of cis-acting eQTLs.
19749 With non-linear least-squares algorithm the maximum likelihood parameters can
19750 be estimated. The ACME model provides interpretable effect size estimates and
19751 p-values with well controlled Type-I error.")
19752 (license license:lgpl3)))
19753
19754 (define-public r-acmer
19755 (package
19756 (name "r-acmer")
19757 (version "1.1.0")
19758 (source
19759 (origin
19760 (method url-fetch)
19761 (uri (cran-uri "acmeR" version))
19762 (sha256
19763 (base32
19764 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
19765 (properties `((upstream-name . "acmeR")))
19766 (build-system r-build-system)
19767 (propagated-inputs `(("r-foreign" ,r-foreign)))
19768 (home-page "https://cran.r-project.org/web/packages/acmeR/")
19769 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
19770 (description
19771 "This package provides an implementation of the ACME estimator, described
19772 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
19773 Mortality at Wind Turbines. Unlike most other models, this estimator supports
19774 decreasing-hazard Weibull model for persistence; decreasing search proficiency
19775 as carcasses age; variable bleed-through at successive searches; and interval
19776 mortality estimates. The package provides, based on search data, functions
19777 for estimating the mortality inflation factor in Frequentist and Bayesian
19778 settings.")
19779 (license license:expat)))
19780
19781 (define-public r-r-huge
19782 (package
19783 (name "r-r-huge")
19784 (version "0.9.0")
19785 (source
19786 (origin
19787 (method url-fetch)
19788 (uri (cran-uri "R.huge" version))
19789 (sha256
19790 (base32
19791 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
19792 (properties `((upstream-name . "R.huge")))
19793 (build-system r-build-system)
19794 (propagated-inputs
19795 `(("r-r-methodss3" ,r-r-methodss3)
19796 ("r-r-oo" ,r-r-oo)
19797 ("r-r-utils" ,r-r-utils)))
19798 (home-page "https://github.com/HenrikBengtsson/R.huge")
19799 (synopsis "Methods for accessing huge amounts of data")
19800 (description
19801 "This is a deprecated package for accessing huge amounts of data.
19802 Cross-platform alternatives are the following packages: bigmemory (CRAN),
19803 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
19804 the @code{aroma.affymetrix} package.")
19805 (license license:lgpl2.1+)))
19806
19807 (define-public r-r-filesets
19808 (package
19809 (name "r-r-filesets")
19810 (version "2.14.0")
19811 (source
19812 (origin
19813 (method url-fetch)
19814 (uri (cran-uri "R.filesets" version))
19815 (sha256
19816 (base32
19817 "08xv8b3c81nf54viyr3w912al18483k5gfnjpg7bxbdfk70dfzbh"))))
19818 (properties `((upstream-name . "R.filesets")))
19819 (build-system r-build-system)
19820 (propagated-inputs
19821 `(("r-digest" ,r-digest)
19822 ("r-r-cache" ,r-r-cache)
19823 ("r-r-methodss3" ,r-r-methodss3)
19824 ("r-r-oo" ,r-r-oo)
19825 ("r-r-utils" ,r-r-utils)))
19826 (home-page "https://github.com/HenrikBengtsson/R.filesets")
19827 (synopsis "Easy handling of and access to files")
19828 (description
19829 "This package provides classes and methods to locate, setup, subset,
19830 navigate and iterate file sets, i.e. sets of files located in one or more
19831 directories on the file system. The API is designed such that these classes
19832 can be extended via inheritance to provide a richer API for special file
19833 formats. Moreover, a specific name format is defined such that filenames and
19834 directories can be considered to have full names which consists of a name
19835 followed by comma-separated tags. This adds additional flexibility to
19836 identify file sets and individual files.")
19837 (license license:lgpl2.1+)))
19838
19839 (define-public r-r-devices
19840 (package
19841 (name "r-r-devices")
19842 (version "2.17.0")
19843 (source
19844 (origin
19845 (method url-fetch)
19846 (uri (cran-uri "R.devices" version))
19847 (sha256
19848 (base32
19849 "1djz6vm1b7sjvx1q319dl47gbnz9kvipaxcz9i0spyp094lv3m62"))))
19850 (properties `((upstream-name . "R.devices")))
19851 (build-system r-build-system)
19852 (propagated-inputs
19853 `(("r-base64enc" ,r-base64enc)
19854 ("r-r-methodss3" ,r-r-methodss3)
19855 ("r-r-oo" ,r-r-oo)
19856 ("r-r-utils" ,r-r-utils)))
19857 (home-page "https://github.com/HenrikBengtsson/R.devices")
19858 (synopsis "Unified handling of graphics devices")
19859 (description
19860 "This package provides functions for creating plots and image files in a
19861 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
19862 Default device options as well as scales and aspect ratios are controlled in a
19863 uniform way across all device types. Switching output format requires minimal
19864 changes in code. This package is ideal for large-scale batch processing,
19865 because it will never leave open graphics devices or incomplete image files
19866 behind, even on errors or user interrupts.")
19867 (license license:lgpl2.1+)))
19868
19869 (define-public r-acnr
19870 (package
19871 (name "r-acnr")
19872 (version "1.0.0")
19873 (source
19874 (origin
19875 (method url-fetch)
19876 (uri (cran-uri "acnr" version))
19877 (sha256
19878 (base32
19879 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
19880 (properties `((upstream-name . "acnr")))
19881 (build-system r-build-system)
19882 (home-page "https://github.com/mpierrejean/acnr")
19883 (synopsis "Annotated copy-number regions")
19884 (description
19885 "This package provides SNP array data from different types of copy-number
19886 regions. These regions were identified manually by the authors of the package
19887 and may be used to generate realistic data sets with known truth.")
19888 (license license:lgpl2.1+)))
19889
19890 (define-public r-acopula
19891 (package
19892 (name "r-acopula")
19893 (version "0.9.3")
19894 (source
19895 (origin
19896 (method url-fetch)
19897 (uri (cran-uri "acopula" version))
19898 (sha256
19899 (base32
19900 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
19901 (properties `((upstream-name . "acopula")))
19902 (build-system r-build-system)
19903 (home-page "https://cran.r-project.org/web/packages/acopula/")
19904 (synopsis "Modelling dependence with multivariate Archimax copulas")
19905 (description
19906 "Archimax copulas are a mixture of Archimedean and EV copulas. This
19907 package provides definitions of several parametric families of generator and
19908 dependence function, computes CDF and PDF, estimates parameters, tests for
19909 goodness of fit, generates random sample and checks copula properties for
19910 custom constructs. In the 2-dimensional case explicit formulas for density
19911 are used, contrary to higher dimensions when all derivatives are linearly
19912 approximated. Several non-archimax families (normal, FGM, Plackett) are
19913 provided as well.")
19914 (license license:gpl2)))
19915
19916 (define-public r-tuner
19917 (package
19918 (name "r-tuner")
19919 (version "1.3.3")
19920 (source
19921 (origin
19922 (method url-fetch)
19923 (uri (cran-uri "tuneR" version))
19924 (sha256
19925 (base32
19926 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
19927 (properties `((upstream-name . "tuneR")))
19928 (build-system r-build-system)
19929 (propagated-inputs `(("r-signal" ,r-signal)))
19930 (home-page "https://cran.r-project.org/web/packages/tuneR/")
19931 (synopsis "Analysis of music and speech")
19932 (description
19933 "This is a package for the analysis of music and speech. Analyze music
19934 and speech, extract features like MFCCs, handle wave files and their
19935 representation in various ways, read MP3, read MIDI, perform steps of a
19936 transcription, ...")
19937 ;; Either of these versions.
19938 (license (list license:gpl2 license:gpl3))))
19939
19940 (define-public r-seewave
19941 (package
19942 (name "r-seewave")
19943 (version "2.1.6")
19944 (source
19945 (origin
19946 (method url-fetch)
19947 (uri (cran-uri "seewave" version))
19948 (sha256
19949 (base32
19950 "123h3q0gps0vy9sikr7gjphnv9m3l4h4mykiydjllmrpaw1s1844"))))
19951 (properties `((upstream-name . "seewave")))
19952 (build-system r-build-system)
19953 (inputs
19954 `(("libsndfile" ,libsndfile)))
19955 (propagated-inputs
19956 `(("r-tuner" ,r-tuner)))
19957 (home-page "http://rug.mnhn.fr/seewave")
19958 (synopsis "Sound analysis and synthesis")
19959 (description
19960 "This package provides functions for analysing, manipulating, displaying,
19961 editing and synthesizing time waves (particularly sound). This package
19962 processes time analysis (oscillograms and envelopes), spectral content,
19963 resonance quality factor, entropy, cross correlation and autocorrelation,
19964 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
19965 and 3D spectrograms and many other analyses.")
19966 (license license:gpl2+)))
19967
19968 (define-public r-acousticndlcoder
19969 (package
19970 (name "r-acousticndlcoder")
19971 (version "1.0.2")
19972 (source
19973 (origin
19974 (method url-fetch)
19975 (uri (cran-uri "AcousticNDLCodeR" version))
19976 (sha256
19977 (base32
19978 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
19979 (properties
19980 `((upstream-name . "AcousticNDLCodeR")))
19981 (build-system r-build-system)
19982 (propagated-inputs
19983 `(("r-seewave" ,r-seewave)
19984 ("r-tuner" ,r-tuner)
19985 ("r-zoo" ,r-zoo)))
19986 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
19987 (synopsis "Coding sound files for use with NDL")
19988 (description
19989 "Make acoustic cues to use with the R package @code{ndl}.
19990 The package implements functions used in the PLoS ONE paper \"Words from
19991 spontaneous conversational speech can be recognized with human-like accuracy
19992 by an error-driven learning algorithm that discriminates between meanings
19993 straight from smart acoustic features, bypassing the phoneme as recognition
19994 unit.\" @url{doi:10.1371/journal.pone.0174623}")
19995 (license license:gpl2+)))
19996
19997 (define-public r-acp
19998 (package
19999 (name "r-acp")
20000 (version "2.1")
20001 (source
20002 (origin
20003 (method url-fetch)
20004 (uri (cran-uri "acp" version))
20005 (sha256
20006 (base32
20007 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
20008 (properties `((upstream-name . "acp")))
20009 (build-system r-build-system)
20010 (propagated-inputs
20011 `(("r-quantmod" ,r-quantmod)
20012 ("r-tseries" ,r-tseries)))
20013 (home-page "https://cran.r-project.org/web/packages/acp/")
20014 (synopsis "Autoregressive conditional Poisson")
20015 (description
20016 "This package supports the analysis of count data exhibiting
20017 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
20018 model (ACP(p,q)) proposed by Heinen (2003).")
20019 (license license:gpl2)))
20020
20021 (define-public r-ada
20022 (package
20023 (name "r-ada")
20024 (version "2.0-5")
20025 (source
20026 (origin
20027 (method url-fetch)
20028 (uri (cran-uri "ada" version))
20029 (sha256
20030 (base32
20031 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
20032 (properties `((upstream-name . "ada")))
20033 (build-system r-build-system)
20034 (propagated-inputs `(("r-rpart" ,r-rpart)))
20035 (home-page "https://cran.r-project.org/web/packages/ada/")
20036 (synopsis "Stochastic boosting")
20037 (description
20038 "This package provides a straightforward, well-documented, and broad
20039 boosting routine for classification, ideally suited for small to
20040 moderate-sized data sets. It performs discrete, real, and gentle boost under
20041 both exponential and logistic loss on a given data set.")
20042 ;; Any version of the GPL.
20043 (license (list license:gpl2+ license:gpl3+))))
20044
20045 (define-public r-genalg
20046 (package
20047 (name "r-genalg")
20048 (version "0.2.0")
20049 (source
20050 (origin
20051 (method url-fetch)
20052 (uri (cran-uri "genalg" version))
20053 (sha256
20054 (base32
20055 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
20056 (properties `((upstream-name . "genalg")))
20057 (build-system r-build-system)
20058 (home-page "https://github.com/egonw/genalg")
20059 (synopsis "R based genetic algorithm")
20060 (description
20061 "This package provides an R based genetic algorithm for binary and
20062 floating point chromosomes.")
20063 (license license:gpl2)))
20064
20065 (define-public r-kernelfactory
20066 (package
20067 (name "r-kernelfactory")
20068 (version "0.3.0")
20069 (source
20070 (origin
20071 (method url-fetch)
20072 (uri (cran-uri "kernelFactory" version))
20073 (sha256
20074 (base32
20075 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
20076 (properties `((upstream-name . "kernelFactory")))
20077 (build-system r-build-system)
20078 (propagated-inputs
20079 `(("r-auc" ,r-auc)
20080 ("r-genalg" ,r-genalg)
20081 ("r-kernlab" ,r-kernlab)
20082 ("r-randomforest" ,r-randomforest)))
20083 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
20084 (synopsis "Ensemble of kernel machines")
20085 (description
20086 "Kernel factory is an ensemble method where each base classifier (random
20087 forest) is fit on the kernel matrix of a subset of the training data.")
20088 (license license:gpl2+)))
20089
20090 (define-public r-dummies
20091 (package
20092 (name "r-dummies")
20093 (version "1.5.6")
20094 (source
20095 (origin
20096 (method url-fetch)
20097 (uri (cran-uri "dummies" version))
20098 (sha256
20099 (base32
20100 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
20101 (properties `((upstream-name . "dummies")))
20102 (build-system r-build-system)
20103 (home-page "https://decisionpatterns.com")
20104 (synopsis "Create dummy/indicator variables flexibly and efficiently")
20105 (description
20106 "This package lets you expand factors, characters and other eligible
20107 classes into dummy/indicator variables.")
20108 (license license:gpl2+)))
20109
20110 (define-public r-acrm
20111 (package
20112 (name "r-acrm")
20113 (version "0.1.1")
20114 (source
20115 (origin
20116 (method url-fetch)
20117 (uri (cran-uri "aCRM" version))
20118 (sha256
20119 (base32
20120 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
20121 (properties `((upstream-name . "aCRM")))
20122 (build-system r-build-system)
20123 (propagated-inputs
20124 `(("r-ada" ,r-ada)
20125 ("r-dummies" ,r-dummies)
20126 ("r-kernelfactory" ,r-kernelfactory)
20127 ("r-randomforest" ,r-randomforest)))
20128 (home-page "https://cran.r-project.org/web/packages/aCRM/")
20129 (synopsis "Convenience functions for analytical customer relationship management")
20130 (description
20131 "This package provides convenience functions for data preparation and
20132 modeling often used in @dfn{analytical customer relationship
20133 management} (aCRM).")
20134 (license license:gpl2+)))
20135
20136 (define-public r-treeclust
20137 (package
20138 (name "r-treeclust")
20139 (version "1.1-7")
20140 (source
20141 (origin
20142 (method url-fetch)
20143 (uri (cran-uri "treeClust" version))
20144 (sha256
20145 (base32
20146 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
20147 (properties `((upstream-name . "treeClust")))
20148 (build-system r-build-system)
20149 (propagated-inputs
20150 `(("r-cluster" ,r-cluster)
20151 ("r-rpart" ,r-rpart)))
20152 (home-page "https://cran.r-project.org/web/packages/treeClust/")
20153 (synopsis "Cluster distances through trees")
20154 (description
20155 "This package provides tools to create a measure of inter-point
20156 dissimilarity useful for clustering mixed data, and, optionally, perform the
20157 clustering.")
20158 (license license:gpl2+)))
20159
20160 (define-public r-acrosstic
20161 (package
20162 (name "r-acrosstic")
20163 (version "1.0-3")
20164 (source
20165 (origin
20166 (method url-fetch)
20167 (uri (cran-uri "AcrossTic" version))
20168 (sha256
20169 (base32
20170 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
20171 (properties `((upstream-name . "AcrossTic")))
20172 (build-system r-build-system)
20173 (propagated-inputs
20174 `(("r-lpsolve" ,r-lpsolve)
20175 ("r-treeclust" ,r-treeclust)))
20176 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
20177 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
20178 (description
20179 "This is a package for constructing minimum-cost regular spanning
20180 subgraph as part of a non-parametric two-sample test for equality of
20181 distribution.")
20182 (license license:gpl2+)))
20183
20184 (define-public r-acrt
20185 (package
20186 (name "r-acrt")
20187 (version "1.0.1")
20188 (source
20189 (origin
20190 (method url-fetch)
20191 (uri (cran-uri "acrt" version))
20192 (sha256
20193 (base32
20194 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
20195 (properties `((upstream-name . "acrt")))
20196 (build-system r-build-system)
20197 (propagated-inputs
20198 `(("r-rcpp" ,r-rcpp)
20199 ("r-rcppeigen" ,r-rcppeigen)
20200 ("r-sandwich" ,r-sandwich)))
20201 (home-page "https://cran.r-project.org/web/packages/acrt/")
20202 (synopsis "Autocorrelation robust testing")
20203 (description
20204 "This package provides functions for testing affine hypotheses on the
20205 regression coefficient vector in regression models with autocorrelated
20206 errors.")
20207 (license license:gpl2)))
20208
20209 (define-public r-acs
20210 (package
20211 (name "r-acs")
20212 (version "2.1.4")
20213 (source
20214 (origin
20215 (method url-fetch)
20216 (uri (cran-uri "acs" version))
20217 (sha256
20218 (base32
20219 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
20220 (properties `((upstream-name . "acs")))
20221 (build-system r-build-system)
20222 (propagated-inputs
20223 `(("r-httr" ,r-httr)
20224 ("r-plyr" ,r-plyr)
20225 ("r-rcpp" ,r-rcpp)
20226 ("r-stringr" ,r-stringr)
20227 ("r-xml" ,r-xml)))
20228 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
20229 (synopsis "Work with data from the US Census")
20230 (description
20231 "This package provides a general toolkit for downloading, managing,
20232 analyzing, and presenting data from the
20233 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
20234 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
20235 American Community Survey (ACS). Confidence intervals provided with ACS data
20236 are converted to standard errors to be bundled with estimates in complex
20237 @code{acs} objects. The package provides new methods to conduct standard
20238 operations on @code{acs} objects and present/plot data in statistically
20239 appropriate ways.")
20240 (license license:gpl3)))
20241
20242 (define-public r-acss-data
20243 (package
20244 (name "r-acss-data")
20245 (version "1.0")
20246 (source
20247 (origin
20248 (method url-fetch)
20249 (uri (cran-uri "acss.data" version))
20250 (sha256
20251 (base32
20252 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
20253 (properties `((upstream-name . "acss.data")))
20254 (build-system r-build-system)
20255 (home-page "http://complexitycalculator.com/methodology.html")
20256 (synopsis "Data for algorithmic complexity of short strings")
20257 (description
20258 "This is a data only package providing the algorithmic complexity of
20259 short strings, computed using the coding theorem method. For a given set of
20260 symbols in a string, all possible or a large number of random samples of
20261 Turing machines with a given number of states (e.g., 5) and number of symbols
20262 corresponding to the number of symbols in the strings were simulated until
20263 they reached a halting state or failed to end. This package contains data on
20264 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
20265 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
20266 distribution of the halting states.")
20267 (license license:gpl2+)))
20268
20269 (define-public r-acss
20270 (package
20271 (name "r-acss")
20272 (version "0.2-5")
20273 (source
20274 (origin
20275 (method url-fetch)
20276 (uri (cran-uri "acss" version))
20277 (sha256
20278 (base32
20279 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
20280 (properties `((upstream-name . "acss")))
20281 (build-system r-build-system)
20282 (propagated-inputs
20283 `(("r-acss-data" ,r-acss-data)
20284 ("r-zoo" ,r-zoo)))
20285 (home-page "http://complexitycalculator.com/methodology.html")
20286 (synopsis "Algorithmic complexity for short strings")
20287 (description
20288 "The main purpose of this package is to provide the algorithmic
20289 complexity for short strings, an approximation of the Kolmogorov Complexity of
20290 a short string using the coding theorem method. While the database containing
20291 the complexity is provided in the data only package @code{acss.data}, this
20292 package provides functions accessing the data such as @code{prob_random}
20293 returning the posterior probability that a given string was produced by a
20294 random process. In addition, two traditional (but problematic) measures of
20295 complexity are also provided: entropy and change complexity.")
20296 (license license:gpl2+)))
20297
20298 (define-public r-acswr
20299 (package
20300 (name "r-acswr")
20301 (version "1.0")
20302 (source
20303 (origin
20304 (method url-fetch)
20305 (uri (cran-uri "ACSWR" version))
20306 (sha256
20307 (base32
20308 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
20309 (properties `((upstream-name . "ACSWR")))
20310 (build-system r-build-system)
20311 (propagated-inputs
20312 `(("r-mass" ,r-mass)))
20313 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
20314 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
20315 (description
20316 "This is a companion package for the book \"A Course in Statistics with
20317 R\" (ISBN 978-1-119-15272-9.)")
20318 (license license:gpl2)))
20319
20320 (define-public r-alabama
20321 (package
20322 (name "r-alabama")
20323 (version "2015.3-1")
20324 (source
20325 (origin
20326 (method url-fetch)
20327 (uri (cran-uri "alabama" version))
20328 (sha256
20329 (base32
20330 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
20331 (properties `((upstream-name . "alabama")))
20332 (build-system r-build-system)
20333 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
20334 (home-page "https://cran.r-project.org/web/packages/alabama/")
20335 (synopsis "Constrained nonlinear optimization")
20336 (description
20337 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
20338 Algorithm; it is used for optimizing smooth nonlinear objective functions with
20339 constraints. Linear or nonlinear equality and inequality constraints are
20340 allowed.")
20341 (license license:gpl2+)))
20342
20343 (define-public r-gdina
20344 (package
20345 (name "r-gdina")
20346 (version "2.8.0")
20347 (source
20348 (origin
20349 (method url-fetch)
20350 (uri (cran-uri "GDINA" version))
20351 (sha256
20352 (base32
20353 "0chxnhp37xfd78gafkgwqrmc0jf3pvpdyrkc438kl0l53fb7dld7"))))
20354 (properties `((upstream-name . "GDINA")))
20355 (build-system r-build-system)
20356 (propagated-inputs
20357 `(("r-alabama" ,r-alabama)
20358 ("r-ggplot2" ,r-ggplot2)
20359 ("r-mass" ,r-mass)
20360 ("r-nloptr" ,r-nloptr)
20361 ("r-numderiv" ,r-numderiv)
20362 ("r-rcpp" ,r-rcpp)
20363 ("r-rcpparmadillo" ,r-rcpparmadillo)
20364 ("r-rsolnp" ,r-rsolnp)
20365 ("r-shiny" ,r-shiny)
20366 ("r-shinydashboard" ,r-shinydashboard)))
20367 (native-inputs
20368 `(("r-knitr" ,r-knitr)))
20369 (home-page "https://github.com/Wenchao-Ma/GDINA")
20370 (synopsis "Generalized DINA model framework")
20371 (description
20372 "This package provides a set of psychometric tools for cognitive
20373 diagnosis modeling based on the generalized deterministic inputs, noisy and
20374 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
20375 and its extensions, including the sequential G-DINA model by Ma and de la
20376 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
20377 polytomous G-DINA model by Chen and de la Torre
20378 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
20379 distribution can be independent, saturated, higher-order, loglinear smoothed
20380 or structured. Q-matrix validation, item and model fit statistics, model
20381 comparison at test and item level and differential item functioning can also
20382 be conducted. A graphical user interface is also provided.")
20383 (license license:gpl3)))
20384
20385 (define-public r-actcd
20386 (package
20387 (name "r-actcd")
20388 (version "1.2-0")
20389 (source
20390 (origin
20391 (method url-fetch)
20392 (uri (cran-uri "ACTCD" version))
20393 (sha256
20394 (base32
20395 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
20396 (properties `((upstream-name . "ACTCD")))
20397 (build-system r-build-system)
20398 (propagated-inputs
20399 `(("r-gdina" ,r-gdina)
20400 ("r-r-methodss3" ,r-r-methodss3)))
20401 (native-inputs
20402 `(("gfortran" ,gfortran)))
20403 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
20404 (synopsis "Asymptotic classification theory for cognitive diagnosis")
20405 (description
20406 "This is a package supporting cluster analysis for cognitive diagnosis
20407 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
20408 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
20409 sum-scores, cluster analysis techniques can be used to classify examinees into
20410 latent classes based on their attribute patterns. In addition to the
20411 algorithms used to classify data, three labeling approaches are proposed to
20412 label clusters so that examinees' attribute profiles can be obtained.")
20413 (license license:gpl2+)))
20414
20415 (define-public r-ineq
20416 (package
20417 (name "r-ineq")
20418 (version "0.2-13")
20419 (source
20420 (origin
20421 (method url-fetch)
20422 (uri (cran-uri "ineq" version))
20423 (sha256
20424 (base32
20425 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
20426 (properties `((upstream-name . "ineq")))
20427 (build-system r-build-system)
20428 (home-page "https://cran.r-project.org/web/packages/ineq/")
20429 (synopsis "Measuring inequality, concentration, and poverty")
20430 (description
20431 "This package provides tools for measuring inequality, concentration, and
20432 poverty measures. It provides both empirical and theoretical Lorenz curves.")
20433 ;; Either of these two versions.
20434 (license (list license:gpl2 license:gpl3))))
20435
20436 (define-public r-actfrag
20437 (package
20438 (name "r-actfrag")
20439 (version "0.1.1")
20440 (source
20441 (origin
20442 (method url-fetch)
20443 (uri (cran-uri "ActFrag" version))
20444 (sha256
20445 (base32
20446 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
20447 (properties `((upstream-name . "ActFrag")))
20448 (build-system r-build-system)
20449 (propagated-inputs
20450 `(("r-accelerometry" ,r-accelerometry)
20451 ("r-dplyr" ,r-dplyr)
20452 ("r-ineq" ,r-ineq)
20453 ("r-survival" ,r-survival)
20454 ("r-tidyr" ,r-tidyr)))
20455 (home-page "https://github.com/junruidi/ActFrag")
20456 (synopsis "Activity fragmentation metrics extraction")
20457 (description
20458 "This package provides functions to extract commonly used fragmentation
20459 metrics to quantify time accumulation strategies based on minute level
20460 actigraphy-measured activity counts data.")
20461 (license license:gpl3)))
20462
20463 (define-public r-ash
20464 (package
20465 (name "r-ash")
20466 (version "1.0-15")
20467 (source
20468 (origin
20469 (method url-fetch)
20470 (uri (cran-uri "ash" version))
20471 (sha256
20472 (base32
20473 "1ay2a2agdmiz7zzvn26mli0x0iwk09g5pp4yy1r23knhkp1pn2lb"))))
20474 (properties `((upstream-name . "ash")))
20475 (build-system r-build-system)
20476 (native-inputs `(("gfortran" ,gfortran)))
20477 (home-page "https://cran.r-project.org/web/packages/ash/")
20478 (synopsis "David Scott's ASH routines")
20479 (description
20480 "This package provides David Scott's ASH routines ported from S-PLUS to
20481 R.")
20482 (license license:gpl2+)))
20483
20484 (define-public r-hdrcde
20485 (package
20486 (name "r-hdrcde")
20487 (version "3.4")
20488 (source
20489 (origin
20490 (method url-fetch)
20491 (uri (cran-uri "hdrcde" version))
20492 (sha256
20493 (base32
20494 "16qlk44cjvn2s0vzaf915df65ksdx20dbxhy7fpdqins46hccha3"))))
20495 (properties `((upstream-name . "hdrcde")))
20496 (build-system r-build-system)
20497 (propagated-inputs
20498 `(("r-ash" ,r-ash)
20499 ("r-ggplot2" ,r-ggplot2)
20500 ("r-kernsmooth" ,r-kernsmooth)
20501 ("r-ks" ,r-ks)
20502 ("r-locfit" ,r-locfit)
20503 ("r-rcolorbrewer" ,r-rcolorbrewer)))
20504 (native-inputs `(("gfortran" ,gfortran)))
20505 (home-page "http://pkg.robjhyndman.com/hdrcde")
20506 (synopsis "Highest density regions and conditional density estimation")
20507 (description
20508 "This is a package for the computation of highest density regions in one
20509 and two dimensions, kernel estimation of univariate density functions
20510 conditional on one covariate, and multimodal regression.")
20511 (license license:gpl3)))
20512
20513 (define-public r-rainbow
20514 (package
20515 (name "r-rainbow")
20516 (version "3.6")
20517 (source
20518 (origin
20519 (method url-fetch)
20520 (uri (cran-uri "rainbow" version))
20521 (sha256
20522 (base32
20523 "11vfcck17d2xjc049ci5i8l1nqv345anmd110gdz7654i1pj9lb3"))))
20524 (properties `((upstream-name . "rainbow")))
20525 (build-system r-build-system)
20526 (propagated-inputs
20527 `(("r-cluster" ,r-cluster)
20528 ("r-colorspace" ,r-colorspace)
20529 ("r-hdrcde" ,r-hdrcde)
20530 ("r-ks" ,r-ks)
20531 ("r-mass" ,r-mass)
20532 ("r-pcapp" ,r-pcapp)))
20533 (home-page "https://cran.r-project.org/web/packages/rainbow/")
20534 (synopsis "Bagplots, boxplots and rainbow plots for functional data")
20535 (description
20536 "This is a package for visualizing functional data and identifying
20537 functional outliers with bagplots, boxplots and rainbow plots.")
20538 (license license:gpl3)))
20539
20540 (define-public r-fds
20541 (package
20542 (name "r-fds")
20543 (version "1.8")
20544 (source
20545 (origin
20546 (method url-fetch)
20547 (uri (cran-uri "fds" version))
20548 (sha256
20549 (base32
20550 "1284vncixrzrz9x6b52gslrbrbia07sd0xac7nwdqhp5f5v5wfi0"))))
20551 (properties `((upstream-name . "fds")))
20552 (build-system r-build-system)
20553 (propagated-inputs
20554 `(("r-rainbow" ,r-rainbow)
20555 ("r-rcurl" ,r-rcurl)))
20556 (home-page "https://cran.r-project.org/web/packages/fds/")
20557 (synopsis "Functional data sets")
20558 (description "This package contains a list of functional time series,
20559 sliced functional time series, and functional data sets. Functional time
20560 series is a special type of functional data observed over time. Sliced
20561 functional time series is a special type of functional time series with a time
20562 variable observed over time.")
20563 (license license:gpl2+)))
20564
20565 (define-public r-fda
20566 (package
20567 (name "r-fda")
20568 (version "5.1.9")
20569 (source
20570 (origin
20571 (method url-fetch)
20572 (uri (cran-uri "fda" version))
20573 (sha256
20574 (base32
20575 "0yjrjsv55bcwqn2yxjgj3hn17wfvjvgngfw9xv3w802i52yz9gf8"))))
20576 (properties `((upstream-name . "fda")))
20577 (build-system r-build-system)
20578 (propagated-inputs
20579 `(("r-fds" ,r-fds)
20580 ("r-matrix" ,r-matrix)))
20581 (home-page "https://www.functionaldata.org")
20582 (synopsis "Functional data analysis")
20583 (description
20584 "These functions were developed to support functional data analysis as
20585 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
20586 Analysis. The package includes data sets and script files working many
20587 examples.")
20588 (license license:gpl2+)))
20589
20590 (define-public r-actigraphy
20591 (package
20592 (name "r-actigraphy")
20593 (version "1.4.0")
20594 (source
20595 (origin
20596 (method url-fetch)
20597 (uri (cran-uri "Actigraphy" version))
20598 (sha256
20599 (base32
20600 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
20601 (properties `((upstream-name . "Actigraphy")))
20602 (build-system r-build-system)
20603 (propagated-inputs
20604 `(("r-fda" ,r-fda)))
20605 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
20606 (synopsis "Actigraphy data analysis")
20607 (description
20608 "This package provides tools for functional linear modeling and analysis
20609 of actigraphy data.")
20610 (license license:asl2.0)))
20611
20612 (define-public r-activedriver
20613 (package
20614 (name "r-activedriver")
20615 (version "1.0.0")
20616 (source
20617 (origin
20618 (method url-fetch)
20619 (uri (cran-uri "ActiveDriver" version))
20620 (sha256
20621 (base32
20622 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
20623 (properties `((upstream-name . "ActiveDriver")))
20624 (build-system r-build-system)
20625 (propagated-inputs
20626 `(("r-mass" ,r-mass)))
20627 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
20628 (synopsis "Tools for finding cancer driver proteins")
20629 (description
20630 "This package provides a mutation analysis tool that discovers cancer
20631 driver genes with frequent mutations in protein signalling sites such as
20632 post-translational modifications (phosphorylation, ubiquitination, etc). The
20633 Poisson generalized linear regression model identifies genes where cancer
20634 mutations in signalling sites are more frequent than expected from the
20635 sequence of the entire gene. Integration of mutations with signalling
20636 information helps find new driver genes and propose candidate mechanisms to
20637 known drivers.")
20638 (license license:gpl2+)))
20639
20640 (define-public r-activitycounts
20641 (package
20642 (name "r-activitycounts")
20643 (version "0.1.2")
20644 (source
20645 (origin
20646 (method url-fetch)
20647 (uri (cran-uri "activityCounts" version))
20648 (sha256
20649 (base32
20650 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
20651 (properties
20652 `((upstream-name . "activityCounts")))
20653 (build-system r-build-system)
20654 (propagated-inputs
20655 `(("r-lubridate" ,r-lubridate)
20656 ("r-magrittr" ,r-magrittr)
20657 ("r-seewave" ,r-seewave)
20658 ("r-signal" ,r-signal)
20659 ("r-tibble" ,r-tibble)))
20660 (home-page "https://github.com/walkabillylab/activityCounts")
20661 (synopsis "Generate ActiLife counts")
20662 (description
20663 "ActiLife generates activity counts from data collected by Actigraph
20664 accelerometers. Actigraph is one of the most common research-grade
20665 accelerometers. There is considerable research validating and developing
20666 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
20667 counts are proprietary and difficult to implement if researchers use different
20668 accelerometer brands. The code creates ActiLife counts from raw acceleration
20669 data for different accelerometer brands.")
20670 (license license:gpl3)))
20671
20672 (define-public r-activityindex
20673 (package
20674 (name "r-activityindex")
20675 (version "0.3.7")
20676 (source
20677 (origin
20678 (method url-fetch)
20679 (uri (cran-uri "ActivityIndex" version))
20680 (sha256
20681 (base32
20682 "1zj2b6x31a1kxl80rarmkrlm7ack4154mrkbqs3fpi48zpmjbgd5"))))
20683 (properties `((upstream-name . "ActivityIndex")))
20684 (build-system r-build-system)
20685 (propagated-inputs
20686 `(("r-data-table" ,r-data-table)
20687 ("r-matrixstats" ,r-matrixstats)
20688 ("r-r-utils" ,r-r-utils)))
20689 (native-inputs
20690 `(("r-knitr" ,r-knitr)))
20691 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
20692 (synopsis "Activity Index calculation using raw accelerometry data")
20693 (description
20694 "This is a package to read raw accelerometry from GT3X+ accelerometry
20695 data and plain table data to calculate the Activity Index from Bai et
20696 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
20697 (license license:gpl3)))
20698
20699 (define-public r-activpal
20700 (package
20701 (name "r-activpal")
20702 (version "0.1.3")
20703 (source
20704 (origin
20705 (method url-fetch)
20706 (uri (cran-uri "activPAL" version))
20707 (sha256
20708 (base32
20709 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
20710 (properties `((upstream-name . "activPAL")))
20711 (build-system r-build-system)
20712 (propagated-inputs
20713 `(("r-devtools" ,r-devtools)
20714 ("r-dplyr" ,r-dplyr)
20715 ("r-ggplot2" ,r-ggplot2)
20716 ("r-lubridate" ,r-lubridate)
20717 ("r-magrittr" ,r-magrittr)
20718 ("r-tidyr" ,r-tidyr)))
20719 (home-page "https://cran.r-project.org/web/packages/activPAL")
20720 (synopsis "Processing and chart generation from activPAL events files")
20721 (description
20722 "This package contains functions to generate pre-defined summary
20723 statistics from activPAL events files. The package also contains functions to
20724 produce informative graphics that visualize physical activity behaviour and
20725 trends. This includes generating graphs that align physical activity
20726 behaviour with additional time based observations described by other data
20727 sets, such as sleep diaries and continuous glucose monitoring data.")
20728 (license license:gpl3)))
20729
20730 (define-public r-activpalprocessing
20731 (package
20732 (name "r-activpalprocessing")
20733 (version "1.0.2")
20734 (source
20735 (origin
20736 (method url-fetch)
20737 (uri (cran-uri "activpalProcessing" version))
20738 (sha256
20739 (base32
20740 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
20741 (properties
20742 `((upstream-name . "activpalProcessing")))
20743 (build-system r-build-system)
20744 (propagated-inputs
20745 `(("r-chron" ,r-chron)))
20746 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
20747 (synopsis "Process activPAL events files")
20748 (description
20749 "This package performs estimation of physical activity and sedentary
20750 behavior variables from activPAL events files.")
20751 ;; Either version of the GPL.
20752 (license (list license:gpl2 license:gpl3))))
20753
20754 (define-public r-actogrammr
20755 (package
20756 (name "r-actogrammr")
20757 (version "0.2.3")
20758 (source
20759 (origin
20760 (method url-fetch)
20761 (uri (cran-uri "actogrammr" version))
20762 (sha256
20763 (base32
20764 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
20765 (properties `((upstream-name . "actogrammr")))
20766 (build-system r-build-system)
20767 (propagated-inputs
20768 `(("r-dplyr" ,r-dplyr)
20769 ("r-ggplot2" ,r-ggplot2)
20770 ("r-lubridate" ,r-lubridate)
20771 ("r-readr" ,r-readr)
20772 ("r-tidyr" ,r-tidyr)))
20773 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
20774 (synopsis "Read in activity data and plot actograms")
20775 (description
20776 "Read in activity measurements from standard file formats used by
20777 circadian rhythm researchers, currently only ClockLab format, and process and
20778 plot the data. The central type of plot is the actogram, as first described
20779 in \"Activity and distribution of certain wild mice in relation to biotic
20780 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
20781 (license license:gpl3)))
20782
20783 (define-public r-expint
20784 (package
20785 (name "r-expint")
20786 (version "0.1-6")
20787 (source
20788 (origin
20789 (method url-fetch)
20790 (uri (cran-uri "expint" version))
20791 (sha256
20792 (base32
20793 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
20794 (properties `((upstream-name . "expint")))
20795 (build-system r-build-system)
20796 (home-page "https://gitlab.com/vigou3/expint")
20797 (synopsis "Exponential integral and incomplete Gamma function")
20798 (description
20799 "This package provides the exponential integrals @code{E_1(x)},
20800 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
20801 function @code{G(a, x)} defined for negative values of its first argument.
20802 The package also gives easy access to the underlying C routines through an
20803 API; see the package vignette for details.")
20804 (license license:gpl2+)))
20805
20806 (define-public r-actuar
20807 (package
20808 (name "r-actuar")
20809 (version "3.1-1")
20810 (source
20811 (origin
20812 (method url-fetch)
20813 (uri (cran-uri "actuar" version))
20814 (sha256
20815 (base32
20816 "0sxn1mskh7x164f1vbrqnadgxnq7y2p3a9mlmqc0sp6cqkw9lhp9"))))
20817 (properties `((upstream-name . "actuar")))
20818 (build-system r-build-system)
20819 (propagated-inputs `(("r-expint" ,r-expint)))
20820 (home-page "https://gitlab.com/vigou3/actuar")
20821 (synopsis "Actuarial functions and heavy tailed distributions")
20822 (description
20823 "This package provides functions and data sets for actuarial science:
20824 modeling of loss distributions; risk theory and ruin theory; simulation of
20825 compound models, discrete mixtures and compound hierarchical models;
20826 credibility theory. It boasts support for many additional probability
20827 distributions to model insurance loss amounts and loss frequency: 19
20828 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
20829 distribution; zero-truncated and zero-modified extensions of the standard
20830 discrete distributions. It also supports phase-type distributions commonly
20831 used to compute ruin probabilities.")
20832 (license license:gpl2+)))
20833
20834 (define-public r-bmp
20835 (package
20836 (name "r-bmp")
20837 (version "0.3")
20838 (source
20839 (origin
20840 (method url-fetch)
20841 (uri (cran-uri "bmp" version))
20842 (sha256
20843 (base32
20844 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
20845 (properties `((upstream-name . "bmp")))
20846 (build-system r-build-system)
20847 (home-page "https://cran.r-project.org/web/packages/bmp/")
20848 (synopsis "Read Bitmap (BMP) images")
20849 (description
20850 "This package provides pure R tools to read BMP format images. It is
20851 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
20852 (license license:gpl2+)))
20853
20854 (define-public r-readbitmap
20855 (package
20856 (name "r-readbitmap")
20857 (version "0.1.5")
20858 (source
20859 (origin
20860 (method url-fetch)
20861 (uri (cran-uri "readbitmap" version))
20862 (sha256
20863 (base32
20864 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
20865 (properties `((upstream-name . "readbitmap")))
20866 (build-system r-build-system)
20867 (inputs
20868 `(("libjpeg" ,libjpeg-turbo)
20869 ("libpng" ,libpng)))
20870 (propagated-inputs
20871 `(("r-bmp" ,r-bmp)
20872 ("r-jpeg" ,r-jpeg)
20873 ("r-png" ,r-png)
20874 ("r-tiff" ,r-tiff)))
20875 (home-page "https://github.com/jefferis/readbitmap")
20876 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
20877 (description
20878 "This package provides tools to identify and read BMP, JPEG, PNG, and
20879 TIFF format bitmap images. Identification defaults to the use of the magic
20880 number embedded in the file rather than the file extension.")
20881 (license license:gpl2+)))
20882
20883 (define-public r-imager
20884 (package
20885 (name "r-imager")
20886 (version "0.42.7")
20887 (source
20888 (origin
20889 (method url-fetch)
20890 (uri (cran-uri "imager" version))
20891 (sha256
20892 (base32
20893 "1dq0rblnrmnk689bcdmml179gk9lff8x92s2npkjllgjq5q2vfpd"))))
20894 (properties `((upstream-name . "imager")))
20895 (build-system r-build-system)
20896 (inputs
20897 `(("fftw" ,fftw)
20898 ("libtiff" ,libtiff)
20899 ("libx11" ,libx11)
20900 ("zlib" ,zlib)))
20901 (propagated-inputs
20902 `(("r-downloader" ,r-downloader)
20903 ("r-igraph" ,r-igraph)
20904 ("r-jpeg" ,r-jpeg)
20905 ("r-magrittr" ,r-magrittr)
20906 ("r-png" ,r-png)
20907 ("r-purrr" ,r-purrr)
20908 ("r-rcpp" ,r-rcpp)
20909 ("r-readbitmap" ,r-readbitmap)
20910 ("r-stringr" ,r-stringr)))
20911 (native-inputs
20912 `(("pkg-config" ,pkg-config)
20913 ("r-knitr" ,r-knitr)))
20914 (home-page "https://dahtah.github.io/imager/")
20915 (synopsis "Image processing library")
20916 (description
20917 "This is a package for fast image processing for images in up to 4
20918 dimensions (two spatial dimensions, one time/depth dimension, one color
20919 dimension). It provides most traditional image processing tools (filtering,
20920 morphology, transformations, etc.) as well as various functions for easily
20921 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
20922 simple, modern C++ library for image processing.")
20923 (license license:lgpl3)))
20924
20925 (define-public r-acuityview
20926 (package
20927 (name "r-acuityview")
20928 (version "0.1")
20929 (source
20930 (origin
20931 (method url-fetch)
20932 (uri (cran-uri "AcuityView" version))
20933 (sha256
20934 (base32
20935 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
20936 (properties `((upstream-name . "AcuityView")))
20937 (build-system r-build-system)
20938 (propagated-inputs
20939 `(("r-fftwtools" ,r-fftwtools)
20940 ("r-imager" ,r-imager)
20941 ("r-plotrix" ,r-plotrix)))
20942 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
20943 (synopsis "Display scenes as seen by an animal with less acute vision")
20944 (description
20945 "This package provides a simple method for representing a visual scene as
20946 it may be seen by an animal with less acute vision.")
20947 (license license:gpl2+)))
20948
20949 (define-public r-caret
20950 (package
20951 (name "r-caret")
20952 (version "6.0-86")
20953 (source
20954 (origin
20955 (method url-fetch)
20956 (uri (cran-uri "caret" version))
20957 (sha256
20958 (base32
20959 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
20960 (build-system r-build-system)
20961 (propagated-inputs
20962 `(("r-foreach" ,r-foreach)
20963 ("r-ggplot2" ,r-ggplot2)
20964 ("r-lattice" ,r-lattice)
20965 ("r-modelmetrics" ,r-modelmetrics)
20966 ("r-nlme" ,r-nlme)
20967 ("r-plyr" ,r-plyr)
20968 ("r-proc" ,r-proc)
20969 ("r-recipes" ,r-recipes)
20970 ("r-reshape2" ,r-reshape2)
20971 ("r-withr" ,r-withr)))
20972 (native-inputs
20973 `(("r-knitr" ,r-knitr)))
20974 (home-page "https://github.com/topepo/caret")
20975 (synopsis "Classification and regression training")
20976 (description
20977 "This package provides miscellaneous functions for training and plotting
20978 classification and regression models.")
20979 (license license:gpl2+)))
20980
20981 (define-public r-adabag
20982 (package
20983 (name "r-adabag")
20984 (version "4.2")
20985 (source
20986 (origin
20987 (method url-fetch)
20988 (uri (cran-uri "adabag" version))
20989 (sha256
20990 (base32
20991 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
20992 (properties `((upstream-name . "adabag")))
20993 (build-system r-build-system)
20994 (propagated-inputs
20995 `(("r-caret" ,r-caret)
20996 ("r-doparallel" ,r-doparallel)
20997 ("r-foreach" ,r-foreach)
20998 ("r-rpart" ,r-rpart)))
20999 (home-page "https://cran.r-project.org/web/packages/adabag/")
21000 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
21001 (description
21002 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
21003 Breiman's Bagging algorithm using classification trees as individual
21004 classifiers. Once these classifiers have been trained, they can be used to
21005 predict on new data. Also, cross validation estimation of the error can be
21006 done.")
21007 (license license:gpl2+)))
21008
21009 (define-public r-adagio
21010 (package
21011 (name "r-adagio")
21012 (version "0.7.1")
21013 (source
21014 (origin
21015 (method url-fetch)
21016 (uri (cran-uri "adagio" version))
21017 (sha256
21018 (base32
21019 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
21020 (properties `((upstream-name . "adagio")))
21021 (build-system r-build-system)
21022 (native-inputs `(("gfortran" ,gfortran)))
21023 (home-page "https://cran.r-project.org/web/packages/adagio/")
21024 (synopsis "Discrete and global optimization routines")
21025 (description
21026 "This package provides methods and algorithms for discrete optimization,
21027 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
21028 Hooke-Jeeves minimization, and some (evolutionary) global optimization
21029 functions.")
21030 (license license:gpl3+)))
21031
21032 (define-public r-univoutl
21033 (package
21034 (name "r-univoutl")
21035 (version "0.2")
21036 (source
21037 (origin
21038 (method url-fetch)
21039 (uri (cran-uri "univOutl" version))
21040 (sha256
21041 (base32
21042 "0rlc3w7cx2hfxacpjs9kmjzv5p8v9wxnlpxi3rh276wiy5zdr91v"))))
21043 (properties `((upstream-name . "univOutl")))
21044 (build-system r-build-system)
21045 (propagated-inputs
21046 `(("r-hmisc" ,r-hmisc)
21047 ("r-robustbase" ,r-robustbase)))
21048 (home-page "https://github.com/marcellodo/univOutl")
21049 (synopsis "Detection of univariate outliers")
21050 (description
21051 "This package provides well-known outlier detection techniques in the
21052 univariate case. Methods to deal with skewed distribution are included too.
21053 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
21054 historical data is implemented as well. When available, survey weights can be
21055 used in outliers detection.")
21056 (license license:gpl2+)))
21057
21058 (define-public r-tolerance
21059 (package
21060 (name "r-tolerance")
21061 (version "2.0.0")
21062 (source
21063 (origin
21064 (method url-fetch)
21065 (uri (cran-uri "tolerance" version))
21066 (sha256
21067 (base32
21068 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
21069 (properties `((upstream-name . "tolerance")))
21070 (build-system r-build-system)
21071 (propagated-inputs
21072 `(("r-mass" ,r-mass)
21073 ("r-rgl" ,r-rgl)))
21074 (home-page "https://cran.r-project.org/web/packages/tolerance/")
21075 (synopsis "Statistical tolerance intervals and regions")
21076 (description
21077 "This package provides functions for estimating tolerance
21078 limits (intervals) for various univariate distributions (binomial, Cauchy,
21079 discrete Pareto, exponential, two-parameter exponential, extreme value,
21080 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
21081 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
21082 Bayesian normal tolerance limits, multivariate normal tolerance regions,
21083 nonparametric tolerance intervals, tolerance bands for regression
21084 settings (linear regression, nonlinear regression, nonparametric regression,
21085 and multivariate regression), and analysis of variance tolerance intervals.
21086 Visualizations are also available for most of these settings.")
21087 (license license:gpl2+)))
21088
21089 (define-public r-additivitytests
21090 (package
21091 (name "r-additivitytests")
21092 (version "1.1-4")
21093 (source
21094 (origin
21095 (method url-fetch)
21096 (uri (cran-uri "additivityTests" version))
21097 (sha256
21098 (base32
21099 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
21100 (properties
21101 `((upstream-name . "additivityTests")))
21102 (build-system r-build-system)
21103 (home-page "https://github.com/simecek/additivityTests")
21104 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
21105 (description
21106 "This package provides an implementation of the Tukey, Mandel,
21107 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
21108 (license license:gpl3)))
21109
21110 (define-public r-flexclust
21111 (package
21112 (name "r-flexclust")
21113 (version "1.4-0")
21114 (source
21115 (origin
21116 (method url-fetch)
21117 (uri (cran-uri "flexclust" version))
21118 (sha256
21119 (base32
21120 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
21121 (properties `((upstream-name . "flexclust")))
21122 (build-system r-build-system)
21123 (propagated-inputs
21124 `(("r-class" ,r-class)
21125 ("r-lattice" ,r-lattice)
21126 ("r-modeltools" ,r-modeltools)))
21127 (home-page "https://cran.r-project.org/web/packages/flexclust/")
21128 (synopsis "Flexible cluster algorithms")
21129 (description
21130 "The main function @code{kcca} implements a general framework for
21131 k-centroids cluster analysis supporting arbitrary distance measures and
21132 centroid computation. Further cluster methods include hard competitive
21133 learning, neural gas, and QT clustering. There are numerous visualization
21134 methods for cluster results (neighborhood graphs, convex cluster hulls,
21135 barcharts of centroids, ...), and bootstrap methods for the analysis of
21136 cluster stability.")
21137 (license license:gpl2)))
21138
21139 (define-public r-biclust
21140 (package
21141 (name "r-biclust")
21142 (version "2.0.2")
21143 (source
21144 (origin
21145 (method url-fetch)
21146 (uri (cran-uri "biclust" version))
21147 (sha256
21148 (base32
21149 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
21150 (properties `((upstream-name . "biclust")))
21151 (build-system r-build-system)
21152 (propagated-inputs
21153 `(("r-additivitytests" ,r-additivitytests)
21154 ("r-colorspace" ,r-colorspace)
21155 ("r-flexclust" ,r-flexclust)
21156 ("r-ggplot2" ,r-ggplot2)
21157 ("r-lattice" ,r-lattice)
21158 ("r-mass" ,r-mass)
21159 ("r-tidyr" ,r-tidyr)))
21160 (home-page "https://cran.r-project.org/web/packages/biclust/")
21161 (synopsis "BiCluster algorithms")
21162 (description
21163 "The main function @code{biclust()} provides several algorithms to find
21164 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
21165 In addition, the package provides methods for data
21166 preprocessing (normalization and discretization), visualization, and
21167 validation of bicluster solutions.")
21168 (license license:gpl3)))
21169
21170 (define-public r-icge
21171 (package
21172 (name "r-icge")
21173 (version "0.3")
21174 (source
21175 (origin
21176 (method url-fetch)
21177 (uri (cran-uri "ICGE" version))
21178 (sha256
21179 (base32
21180 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
21181 (properties `((upstream-name . "ICGE")))
21182 (build-system r-build-system)
21183 (propagated-inputs
21184 `(("r-cluster" ,r-cluster)
21185 ("r-mass" ,r-mass)))
21186 (home-page "https://cran.r-project.org/web/packages/ICGE/")
21187 (synopsis "Cluster estimation and identification of atypical units")
21188 (description
21189 "ICGE is a package that helps to estimate the number of real clusters in
21190 data as well as to identify atypical units. The underlying methods are based
21191 on distances rather than on unit x variables.")
21192 (license license:gpl2+)))
21193
21194 (define-public r-depth
21195 (package
21196 (name "r-depth")
21197 (version "2.1-1.1")
21198 (source
21199 (origin
21200 (method url-fetch)
21201 (uri (cran-uri "depth" version))
21202 (sha256
21203 (base32
21204 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
21205 (properties `((upstream-name . "depth")))
21206 (build-system r-build-system)
21207 (propagated-inputs
21208 `(("r-abind" ,r-abind)
21209 ("r-circular" ,r-circular)
21210 ("r-rgl" ,r-rgl)))
21211 (native-inputs
21212 `(("gfortran" ,gfortran)))
21213 (home-page "https://cran.r-project.org/web/packages/depth/")
21214 (synopsis "Nonparametric depth functions for multivariate analysis")
21215 (description
21216 "This package provides tools for depth functions methodology applied to
21217 multivariate analysis. Besides allowing calculation of depth values and
21218 depth-based location estimators, the package includes functions or drawing
21219 contour plots and perspective plots of depth functions. Euclidean and
21220 spherical depths are supported.")
21221 (license license:gpl2)))
21222
21223 (define-public r-archetypes
21224 (package
21225 (name "r-archetypes")
21226 (version "2.2-0.1")
21227 (source
21228 (origin
21229 (method url-fetch)
21230 (uri (cran-uri "archetypes" version))
21231 (sha256
21232 (base32
21233 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
21234 (properties `((upstream-name . "archetypes")))
21235 (build-system r-build-system)
21236 (propagated-inputs
21237 `(("r-modeltools" ,r-modeltools)
21238 ("r-nnls" ,r-nnls)))
21239 (home-page "https://cran.r-project.org/web/packages/archetypes")
21240 (synopsis "Archetypal analysis")
21241 (description
21242 "The main function @code{archetypes} implements a framework for
21243 archetypal analysis supporting arbitrary problem solving mechanisms for the
21244 different conceptual parts of the algorithm.")
21245 (license license:gpl2+)))
21246
21247 (define-public r-shapes
21248 (package
21249 (name "r-shapes")
21250 (version "1.2.5")
21251 (source
21252 (origin
21253 (method url-fetch)
21254 (uri (cran-uri "shapes" version))
21255 (sha256
21256 (base32
21257 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
21258 (properties `((upstream-name . "shapes")))
21259 (build-system r-build-system)
21260 (propagated-inputs
21261 `(("r-mass" ,r-mass)
21262 ("r-minpack-lm" ,r-minpack-lm)
21263 ("r-rgl" ,r-rgl)
21264 ("r-scatterplot3d" ,r-scatterplot3d)))
21265 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
21266 (synopsis "Statistical shape analysis")
21267 (description
21268 "This package provides routines for the statistical analysis of landmark
21269 shapes, including Procrustes analysis, graphical displays, principal
21270 components analysis, permutation and bootstrap tests, thin-plate spline
21271 transformation grids and comparing covariance matrices. See Dryden, I.L. and
21272 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
21273 Edition), John Wiley and Sons.")
21274 (license license:gpl2)))
21275
21276 (define-public r-anthropometry
21277 (package
21278 (name "r-anthropometry")
21279 (version "1.14")
21280 (source
21281 (origin
21282 (method url-fetch)
21283 (uri (cran-uri "Anthropometry" version))
21284 (sha256
21285 (base32
21286 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
21287 (properties `((upstream-name . "Anthropometry")))
21288 (build-system r-build-system)
21289 (propagated-inputs
21290 `(("r-archetypes" ,r-archetypes)
21291 ("r-biclust" ,r-biclust)
21292 ("r-cluster" ,r-cluster)
21293 ("r-depth" ,r-depth)
21294 ("r-fnn" ,r-fnn)
21295 ("r-icge" ,r-icge)
21296 ("r-nnls" ,r-nnls)
21297 ("r-rgl" ,r-rgl)
21298 ("r-shapes" ,r-shapes)))
21299 (native-inputs
21300 `(("r-knitr" ,r-knitr)))
21301 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
21302 (synopsis "Statistical methods for anthropometric data")
21303 (description
21304 "This package provides statistical methods especially developed to
21305 analyze anthropometric data. These methods are aimed at providing effective
21306 solutions to some commons problems related to Ergonomics and Anthropometry.
21307 They are based on clustering, the statistical concept of data depth,
21308 statistical shape analysis and archetypal analysis.")
21309 (license license:gpl2+)))
21310
21311 (define-public r-adamethods
21312 (package
21313 (name "r-adamethods")
21314 (version "1.2.1")
21315 (source
21316 (origin
21317 (method url-fetch)
21318 (uri (cran-uri "adamethods" version))
21319 (sha256
21320 (base32
21321 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
21322 (properties `((upstream-name . "adamethods")))
21323 (build-system r-build-system)
21324 (propagated-inputs
21325 `(("r-anthropometry" ,r-anthropometry)
21326 ("r-archetypes" ,r-archetypes)
21327 ("r-fnn" ,r-fnn)
21328 ("r-foreach" ,r-foreach)
21329 ("r-nnls" ,r-nnls)
21330 ("r-tolerance" ,r-tolerance)
21331 ("r-univoutl" ,r-univoutl)))
21332 (home-page "https://cran.r-project.org/web/packages/adamethods/")
21333 (synopsis "Archetypoid algorithms and anomaly detection")
21334 (description
21335 "This package is a collection of several algorithms to obtain
21336 archetypoids with small and large databases and with both classical
21337 multivariate data and functional data (univariate and multivariate). Some of
21338 these algorithms also detect anomalies (outliers).")
21339 (license license:gpl2+)))
21340
21341 (define-public r-idpmisc
21342 (package
21343 (name "r-idpmisc")
21344 (version "1.1.20")
21345 (source
21346 (origin
21347 (method url-fetch)
21348 (uri (cran-uri "IDPmisc" version))
21349 (sha256
21350 (base32
21351 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
21352 (properties `((upstream-name . "IDPmisc")))
21353 (build-system r-build-system)
21354 (propagated-inputs
21355 `(("r-lattice" ,r-lattice)))
21356 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
21357 (synopsis "Functions for data analyses and visualization")
21358 (description
21359 "This package provides different high-level graphics functions for
21360 displaying large datasets, displaying circular data in a very flexible way,
21361 finding local maxima, brewing color ramps, drawing nice arrows, zooming
21362 2D-plots, creating figures with differently colored margin and plot region.
21363 In addition, the package contains auxiliary functions for data manipulation
21364 like omitting observations with irregular values or selecting data by logical
21365 vectors, which include NAs. Other functions are especially useful in
21366 spectroscopy and analyses of environmental data: robust baseline fitting,
21367 finding peaks in spectra, converting humidity measures.")
21368 (license license:gpl3+)))
21369
21370 (define-public r-qqman
21371 (package
21372 (name "r-qqman")
21373 (version "0.1.4")
21374 (source
21375 (origin
21376 (method url-fetch)
21377 (uri (cran-uri "qqman" version))
21378 (sha256
21379 (base32
21380 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
21381 (properties `((upstream-name . "qqman")))
21382 (build-system r-build-system)
21383 (propagated-inputs
21384 `(("r-calibrate" ,r-calibrate)))
21385 (home-page "https://cran.r-project.org/web/packages/qqman/")
21386 (synopsis "Q-Q and Manhattan plots for GWAS data")
21387 (description
21388 "This package allows you to create Q-Q and Manhattan plots for GWAS data
21389 from PLINK results.")
21390 (license license:gpl3)))
21391
21392 (define-public r-ggplot-multistats
21393 (package
21394 (name "r-ggplot-multistats")
21395 (version "1.0.0")
21396 (source
21397 (origin
21398 (method url-fetch)
21399 (uri (cran-uri "ggplot.multistats" version))
21400 (sha256
21401 (base32
21402 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
21403 (properties
21404 `((upstream-name . "ggplot.multistats")))
21405 (build-system r-build-system)
21406 (propagated-inputs
21407 `(("r-ggplot2" ,r-ggplot2)
21408 ("r-hexbin" ,r-hexbin)
21409 ("r-rlang" ,r-rlang)
21410 ("r-scales" ,r-scales)))
21411 (home-page "https://github.com/flying-sheep/ggplot.multistats")
21412 (synopsis "Multiple summary statistics for binned stats/geometries")
21413 (description
21414 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
21415 which functions similar to its singular form, but allows the use of multiple
21416 statistics per bin. Those statistics can be mapped to multiple bin
21417 aesthetics.")
21418 (license license:gpl3)))
21419
21420 (define-public r-knn-covertree
21421 (package
21422 (name "r-knn-covertree")
21423 (version "1.0")
21424 (source
21425 (origin
21426 (method url-fetch)
21427 (uri (cran-uri "knn.covertree" version))
21428 (sha256
21429 (base32
21430 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
21431 (properties `((upstream-name . "knn.covertree")))
21432 (build-system r-build-system)
21433 (propagated-inputs
21434 `(("r-matrix" ,r-matrix)
21435 ("r-rcpp" ,r-rcpp)
21436 ("r-rcppeigen" ,r-rcppeigen)))
21437 (home-page "https://github.com/flying-sheep/knn.covertree")
21438 (synopsis "Accurate kNN Implementation with multiple distance measures")
21439 (description
21440 "Similarly to the FNN package, this package allows calculation of the k
21441 nearest neighbors (kNN) of a data matrix. The implementation is based on
21442 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
21443 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
21444 (license license:agpl3+)))
21445
21446 (define-public r-poibin
21447 (package
21448 (name "r-poibin")
21449 (version "1.5")
21450 (source
21451 (origin
21452 (method url-fetch)
21453 (uri (cran-uri "poibin" version))
21454 (sha256
21455 (base32
21456 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
21457 (properties `((upstream-name . "poibin")))
21458 (build-system r-build-system)
21459 (home-page "https://cran.r-project.org/web/packages/poibin/")
21460 (synopsis "Poisson binomial distribution")
21461 (description
21462 "This package provides an implementation of both the exact and
21463 approximation methods for computing the @dfn{cumulative distribution
21464 function} (CDF) of the Poisson binomial distribution. It also provides the
21465 @dfn{probability mass function} (PMF), quantile function, and random number
21466 generation for the Poisson binomial distribution.")
21467 (license license:gpl2)))
21468
21469 (define-public r-diagram
21470 (package
21471 (name "r-diagram")
21472 (version "1.6.5")
21473 (source
21474 (origin
21475 (method url-fetch)
21476 (uri (cran-uri "diagram" version))
21477 (sha256
21478 (base32
21479 "1r3lyl0h7mk9cfg8smr3jydfkjdawaphnxibkxfjqa7029vkxh79"))))
21480 (properties `((upstream-name . "diagram")))
21481 (build-system r-build-system)
21482 (propagated-inputs
21483 `(("r-shape" ,r-shape)))
21484 (home-page "https://cran.r-project.org/web/packages/diagram/")
21485 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
21486 (description
21487 "This package provides tools to visualize simple graphs (networks) based
21488 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
21489 electrical networks, etc. It also includes supporting material for the book
21490 \"A practical guide to ecological modelling - using R as a simulation
21491 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
21492 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
21493 Francesca Mazzia (2012).")
21494 (license license:gpl2+)))
21495
21496 (define-public r-lim
21497 (package
21498 (name "r-lim")
21499 (version "1.4.6")
21500 (source
21501 (origin
21502 (method url-fetch)
21503 (uri (cran-uri "LIM" version))
21504 (sha256
21505 (base32
21506 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
21507 (properties `((upstream-name . "LIM")))
21508 (build-system r-build-system)
21509 (propagated-inputs
21510 `(("r-diagram" ,r-diagram)
21511 ("r-limsolve" ,r-limsolve)))
21512 (home-page "https://cran.r-project.org/web/packages/LIM/")
21513 (synopsis "Linear inverse model examples and solution methods")
21514 (description
21515 "This package provides functions that read and solve linear inverse
21516 problems (food web problems, linear programming problems).")
21517 (license license:gpl2+)))
21518
21519 (define-public r-shinycssloaders
21520 (package
21521 (name "r-shinycssloaders")
21522 (version "1.0.0")
21523 (source
21524 (origin
21525 (method url-fetch)
21526 (uri (cran-uri "shinycssloaders" version))
21527 (sha256
21528 (base32
21529 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
21530 (properties
21531 `((upstream-name . "shinycssloaders")))
21532 (build-system r-build-system)
21533 (propagated-inputs
21534 `(("r-digest" ,r-digest)
21535 ("r-glue" ,r-glue)
21536 ("r-shiny" ,r-shiny)))
21537 (home-page "https://github.com/andrewsali/shinycssloaders")
21538 (synopsis "Add CSS loading animations to Shiny outputs")
21539 (description
21540 "This package provides tools to create a lightweight Shiny wrapper for
21541 the css-loaders created by Luke Hass
21542 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
21543 automatically show a loader when the output is (re)calculating.")
21544 (license license:gpl3)))
21545
21546 (define-public r-rsvg
21547 (package
21548 (name "r-rsvg")
21549 (version "2.1")
21550 (source
21551 (origin
21552 (method url-fetch)
21553 (uri (cran-uri "rsvg" version))
21554 (sha256
21555 (base32
21556 "0bxnwa9sbzx6jlxrzh3ymjq81vkxil2qx7kk7wp13a0cql7dhxcn"))))
21557 (properties `((upstream-name . "rsvg")))
21558 (build-system r-build-system)
21559 (inputs
21560 `(("librsvg" ,librsvg)
21561 ("zlib" ,zlib)))
21562 (native-inputs
21563 `(("pkg-config" ,pkg-config)
21564 ("r-knitr" ,r-knitr)))
21565 (home-page "https://github.com/jeroen/rsvg#readme")
21566 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
21567 (description
21568 "This package allows you to render vector-based SVG images into
21569 high-quality custom-size bitmap arrays using the librsvg2 library. The
21570 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
21571 addition, the package can convert images directly to various formats such as
21572 PDF or PostScript.")
21573 (license license:expat)))
21574
21575 (define-public r-influencer
21576 (package
21577 (name "r-influencer")
21578 (version "0.1.0")
21579 (source
21580 (origin
21581 (method url-fetch)
21582 (uri (cran-uri "influenceR" version))
21583 (sha256
21584 (base32
21585 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
21586 (properties `((upstream-name . "influenceR")))
21587 (build-system r-build-system)
21588 (propagated-inputs
21589 `(("r-igraph" ,r-igraph)
21590 ("r-matrix" ,r-matrix)))
21591 (home-page "https://github.com/rcc-uchicago/influenceR")
21592 (synopsis "Tools to quantify structural importance of nodes in a network")
21593 (description
21594 "This package provides functionality to compute various node centrality
21595 measures on networks. Included are functions to compute betweenness
21596 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
21597 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
21598 algorithm to identify key players, and Valente's bridging metric. The
21599 betweenness, Key Players, and bridging implementations are parallelized with
21600 OpenMP.")
21601 (license license:gpl2)))
21602
21603 (define-public r-emplik
21604 (package
21605 (name "r-emplik")
21606 (version "1.1-1")
21607 (source
21608 (origin
21609 (method url-fetch)
21610 (uri (cran-uri "emplik" version))
21611 (sha256
21612 (base32
21613 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
21614 (properties `((upstream-name . "emplik")))
21615 (build-system r-build-system)
21616 (propagated-inputs
21617 `(("r-quantreg" ,r-quantreg)))
21618 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
21619 (synopsis "Empirical likelihood ratio for censored/truncated data")
21620 (description
21621 "This package provides empirical likelihood ratio tests for
21622 means/quantiles/hazards from possibly censored and/or truncated data. It also
21623 does regression.")
21624 (license license:gpl2+)))
21625
21626 (define-public r-imputeyn
21627 (package
21628 (name "r-imputeyn")
21629 (version "1.3")
21630 (source
21631 (origin
21632 (method url-fetch)
21633 (uri (cran-uri "imputeYn" version))
21634 (sha256
21635 (base32
21636 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
21637 (properties `((upstream-name . "imputeYn")))
21638 (build-system r-build-system)
21639 (propagated-inputs
21640 `(("r-boot" ,r-boot)
21641 ("r-emplik" ,r-emplik)
21642 ("r-mvtnorm" ,r-mvtnorm)
21643 ("r-quadprog" ,r-quadprog)
21644 ("r-survival" ,r-survival)))
21645 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
21646 (synopsis "Impute last largest censored observation under weighted least squares")
21647 (description
21648 "This package allows for the imputation of the last largest censored
21649 observantions. This method brings less bias and more efficient estimates for
21650 AFT models.")
21651 (license license:gpl2)))
21652
21653 (define-public r-adapenetclass
21654 (package
21655 (name "r-adapenetclass")
21656 (version "1.2")
21657 (source
21658 (origin
21659 (method url-fetch)
21660 (uri (cran-uri "AdapEnetClass" version))
21661 (sha256
21662 (base32
21663 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
21664 (properties `((upstream-name . "AdapEnetClass")))
21665 (build-system r-build-system)
21666 (propagated-inputs
21667 `(("r-glmnet" ,r-glmnet)
21668 ("r-imputeyn" ,r-imputeyn)
21669 ("r-lars" ,r-lars)
21670 ("r-quadprog" ,r-quadprog)))
21671 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
21672 (synopsis "Class of adaptive elastic net methods for censored data")
21673 (description
21674 "This package provides methods for variable selection for AFT models.")
21675 (license license:gpl2)))
21676
21677 (define-public r-flock
21678 (package
21679 (name "r-flock")
21680 (version "0.7")
21681 (source
21682 (origin
21683 (method url-fetch)
21684 (uri (cran-uri "flock" version))
21685 (sha256
21686 (base32
21687 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
21688 (properties `((upstream-name . "flock")))
21689 (build-system r-build-system)
21690 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
21691 (home-page "https://cran.r-project.org/web/packages/flock/")
21692 (synopsis "Process synchronization using file locks")
21693 (description
21694 "This package implements synchronization between R processes (spawned by
21695 using the @code{parallel} package for instance) using file locks. It supports
21696 both exclusive and shared locking.")
21697 (license license:asl2.0)))
21698
21699 (define-public r-archivist
21700 (package
21701 (name "r-archivist")
21702 (version "2.3.5")
21703 (source
21704 (origin
21705 (method url-fetch)
21706 (uri (cran-uri "archivist" version))
21707 (sha256
21708 (base32
21709 "0sk16bcafgswrvwh39ysbgm6jvsg20yil4pdsg3wsp81nnsrb43k"))))
21710 (properties `((upstream-name . "archivist")))
21711 (build-system r-build-system)
21712 (propagated-inputs
21713 `(("r-dbi" ,r-dbi)
21714 ("r-digest" ,r-digest)
21715 ("r-flock" ,r-flock)
21716 ("r-httr" ,r-httr)
21717 ("r-lubridate" ,r-lubridate)
21718 ("r-magrittr" ,r-magrittr)
21719 ("r-rcurl" ,r-rcurl)
21720 ("r-rsqlite" ,r-rsqlite)))
21721 (native-inputs
21722 `(("r-knitr" ,r-knitr)))
21723 (home-page "https://pbiecek.github.io/archivist/")
21724 (synopsis "Tools for storing, restoring and searching for R objects")
21725 (description
21726 "Data exploration and modelling is a process in which a lot of data
21727 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
21728 statistical models, different versions of data sets and different versions of
21729 results. Archivist helps to store and manage artifacts created in R. It
21730 allows you to store selected artifacts as binary files together with their
21731 metadata and relations. Archivist allows sharing artifacts with others. It
21732 can look for already created artifacts by using its class, name, date of the
21733 creation or other properties. It also makes it easy to restore such
21734 artifacts.")
21735 (license license:gpl2)))
21736
21737 (define-public r-versions
21738 (package
21739 (name "r-versions")
21740 (version "0.3")
21741 (source
21742 (origin
21743 (method url-fetch)
21744 (uri (cran-uri "versions" version))
21745 (sha256
21746 (base32
21747 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
21748 (properties `((upstream-name . "versions")))
21749 (build-system r-build-system)
21750 (home-page "https://cran.r-project.org/web/packages/versions/")
21751 (synopsis "Query and install specific versions of CRAN packages")
21752 (description
21753 "This package allows you to install specified versions of R packages
21754 hosted on CRAN and provides functions to list available versions and the
21755 versions of currently installed packages.")
21756 (license license:bsd-3)))
21757
21758 (define-public r-adapr
21759 (package
21760 (name "r-adapr")
21761 (version "2.0.0")
21762 (source
21763 (origin
21764 (method url-fetch)
21765 (uri (cran-uri "adapr" version))
21766 (sha256
21767 (base32
21768 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
21769 (properties `((upstream-name . "adapr")))
21770 (build-system r-build-system)
21771 (propagated-inputs
21772 `(("r-archivist" ,r-archivist)
21773 ("r-devtools" ,r-devtools)
21774 ("r-digest" ,r-digest)
21775 ("r-doparallel" ,r-doparallel)
21776 ("r-gdata" ,r-gdata)
21777 ("r-ggplot2" ,r-ggplot2)
21778 ("r-git2r" ,r-git2r)
21779 ("r-igraph" ,r-igraph)
21780 ("r-knitr" ,r-knitr)
21781 ("r-plotly" ,r-plotly)
21782 ("r-plyr" ,r-plyr)
21783 ("r-rmarkdown" ,r-rmarkdown)
21784 ("r-shiny" ,r-shiny)
21785 ("r-shinydashboard" ,r-shinydashboard)
21786 ("r-versions" ,r-versions)))
21787 (home-page "https://cran.r-project.org/web/packages/adapr/")
21788 (synopsis "Implementation of an accountable data analysis process")
21789 (description
21790 "This package tracks reading and writing within R scripts that are
21791 organized into a directed acyclic graph. It contains an interactive Shiny
21792 application @code{adaprApp()}. It uses Git and file hashes to track version
21793 histories of inputs and outputs.")
21794 (license license:lgpl2.0)))
21795
21796 (define-public r-adapsamp
21797 (package
21798 (name "r-adapsamp")
21799 (version "1.1.1")
21800 (source
21801 (origin
21802 (method url-fetch)
21803 (uri (cran-uri "AdapSamp" version))
21804 (sha256
21805 (base32
21806 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
21807 (properties `((upstream-name . "AdapSamp")))
21808 (build-system r-build-system)
21809 (propagated-inputs `(("r-pracma" ,r-pracma)))
21810 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
21811 (synopsis "Adaptive sampling algorithms")
21812 (description
21813 "For distributions whose probability density functions are log-concave,
21814 the adaptive rejection sampling algorithm can be used to build envelope
21815 functions for sampling. For others, the modified adaptive rejection sampling
21816 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
21817 adaptive slice sampling algorithm can be used. This R package mainly includes
21818 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
21819 @code{rASS()}. These functions can realize sampling based on the algorithms
21820 above.")
21821 (license license:gpl2)))
21822
21823 (define-public r-adaptalint
21824 (package
21825 (name "r-adaptalint")
21826 (version "0.2.4")
21827 (source
21828 (origin
21829 (method url-fetch)
21830 (uri (cran-uri "adaptalint" version))
21831 (sha256
21832 (base32
21833 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
21834 (properties `((upstream-name . "adaptalint")))
21835 (build-system r-build-system)
21836 (propagated-inputs
21837 `(("r-dplyr" ,r-dplyr)
21838 ("r-lintr" ,r-lintr)
21839 ("r-purrr" ,r-purrr)))
21840 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
21841 (synopsis "Check R code style")
21842 (description
21843 "This package provides tools to infer the code style (which style rules
21844 are followed and which ones are not) from one package and use it to check
21845 another. This makes it easier to find and correct the most important problems
21846 first.")
21847 (license license:gpl3)))
21848
21849 (define-public r-fracdiff
21850 (package
21851 (name "r-fracdiff")
21852 (version "1.5-1")
21853 (source
21854 (origin
21855 (method url-fetch)
21856 (uri (cran-uri "fracdiff" version))
21857 (sha256
21858 (base32
21859 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
21860 (properties `((upstream-name . "fracdiff")))
21861 (build-system r-build-system)
21862 (home-page "https://github.com/mmaechler/fracdiff")
21863 (synopsis
21864 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
21865 (description
21866 "This package provides tools for the maximum likelihood estimation of the
21867 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
21868 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
21869 (license license:gpl2+)))
21870
21871 (define-public r-forecast
21872 (package
21873 (name "r-forecast")
21874 (version "8.14")
21875 (source
21876 (origin
21877 (method url-fetch)
21878 (uri (cran-uri "forecast" version))
21879 (sha256
21880 (base32
21881 "12bfw029xb1dndcjyn2r7a51i7hnkkbdilp69k97sz2v8b7v1y3s"))))
21882 (properties `((upstream-name . "forecast")))
21883 (build-system r-build-system)
21884 (propagated-inputs
21885 `(("r-colorspace" ,r-colorspace)
21886 ("r-fracdiff" ,r-fracdiff)
21887 ("r-ggplot2" ,r-ggplot2)
21888 ("r-lmtest" ,r-lmtest)
21889 ("r-magrittr" ,r-magrittr)
21890 ("r-nnet" ,r-nnet)
21891 ("r-rcpp" ,r-rcpp)
21892 ("r-rcpparmadillo" ,r-rcpparmadillo)
21893 ("r-timedate" ,r-timedate)
21894 ("r-tseries" ,r-tseries)
21895 ("r-urca" ,r-urca)
21896 ("r-zoo" ,r-zoo)))
21897 (native-inputs
21898 `(("r-knitr" ,r-knitr))) ; needed for vignettes
21899 (home-page "https://pkg.robjhyndman.com/forecast/")
21900 (synopsis "Forecasting functions for time series and linear models")
21901 (description
21902 "This package provides methods and tools for displaying and analysing
21903 univariate time series forecasts including exponential smoothing via state
21904 space models and automatic ARIMA modelling.")
21905 (license license:gpl3)))
21906
21907 (define-public r-xmisc
21908 (package
21909 (name "r-xmisc")
21910 (version "0.2.1")
21911 (source
21912 (origin
21913 (method url-fetch)
21914 (uri (cran-uri "Xmisc" version))
21915 (sha256
21916 (base32
21917 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
21918 (properties `((upstream-name . "Xmisc")))
21919 (build-system r-build-system)
21920 (home-page "https://cran.r-project.org/package=Xmisc")
21921 (synopsis
21922 "Xiaobei's miscellaneous classes and functions")
21923 (description
21924 "This package provides Xiaobei's miscellaneous classes and functions,
21925 which are useful when developing R packages for @dfn{object oriented
21926 programming} (OOP) using R Reference Class.")
21927 (license license:gpl2+)))
21928
21929 (define-public r-proxyc
21930 (package
21931 (name "r-proxyc")
21932 (version "0.1.5")
21933 (source
21934 (origin
21935 (method url-fetch)
21936 (uri (cran-uri "proxyC" version))
21937 (sha256
21938 (base32
21939 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
21940 (properties `((upstream-name . "proxyC")))
21941 (build-system r-build-system)
21942 (propagated-inputs
21943 `(("r-matrix" ,r-matrix)
21944 ("r-rcpp" ,r-rcpp)
21945 ("r-rcpparmadillo" ,r-rcpparmadillo)
21946 ("r-rcppparallel" ,r-rcppparallel)))
21947 (home-page "https://cran.r-project.org/package=proxyC")
21948 (synopsis "Compute proximity in large sparse matrices")
21949 (description
21950 "This package provides efficient tools to compute the proximity between
21951 rows or columns of large matrices. Functions are optimised for large sparse
21952 matrices using the Armadillo and Intel TBB libraries. Among several built-in
21953 similarity/distance measures, computation of correlation, cosine similarity
21954 and Euclidean distance is particularly fast.")
21955 (license license:gpl3)))
21956
21957 (define-public r-isocodes
21958 (package
21959 (name "r-isocodes")
21960 (version "2021.02.24")
21961 (source
21962 (origin
21963 (method url-fetch)
21964 (uri (cran-uri "ISOcodes" version))
21965 (sha256
21966 (base32
21967 "19irnn2yi1bzhf03g666la84kj8040f5913kfrmd16dfnjy6j9qm"))))
21968 (properties `((upstream-name . "ISOcodes")))
21969 (build-system r-build-system)
21970 (home-page "https://cran.r-project.org/package=ISOcodes")
21971 (synopsis "Selected ISO codes")
21972 (description
21973 "This package provides ISO language, territory, currency, script and
21974 character codes. It provides ISO 639 language codes, ISO 3166 territory
21975 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
21976 character codes as well as the UN M.49 area codes.")
21977 (license license:gpl2)))
21978
21979 (define-public r-stopwords
21980 (package
21981 (name "r-stopwords")
21982 (version "2.2")
21983 (source
21984 (origin
21985 (method url-fetch)
21986 (uri (cran-uri "stopwords" version))
21987 (sha256
21988 (base32
21989 "1f862y30c4r0phamlp7shzkpxg0vh3i410xy0336w310hv3wqsxn"))))
21990 (properties `((upstream-name . "stopwords")))
21991 (build-system r-build-system)
21992 (propagated-inputs
21993 `(("r-isocodes" ,r-isocodes)))
21994 (home-page "https://github.com/quanteda/stopwords")
21995 (synopsis "Multilingual stopword lists")
21996 (description
21997 "This package provides multiple sources of stopwords, for use in text
21998 analysis and natural language processing.")
21999 (license license:expat)))
22000
22001 (define-public r-spacyr
22002 (package
22003 (name "r-spacyr")
22004 (version "1.2.1")
22005 (source
22006 (origin
22007 (method url-fetch)
22008 (uri (cran-uri "spacyr" version))
22009 (sha256
22010 (base32
22011 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
22012 (properties `((upstream-name . "spacyr")))
22013 (build-system r-build-system)
22014 (propagated-inputs
22015 `(("r-data-table" ,r-data-table)
22016 ("r-reticulate" ,r-reticulate)))
22017 (home-page "https://spacyr.quanteda.io")
22018 (synopsis "R wrapper for the spaCy NLP library")
22019 (description
22020 "This package provides an R wrapper to the Python @dfn{natural language
22021 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
22022 (license license:gpl3)))
22023
22024 (define-public r-snowballc
22025 (package
22026 (name "r-snowballc")
22027 (version "0.7.0")
22028 (source
22029 (origin
22030 (method url-fetch)
22031 (uri (cran-uri "SnowballC" version))
22032 (sha256
22033 (base32
22034 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
22035 (properties `((upstream-name . "SnowballC")))
22036 (build-system r-build-system)
22037 (home-page "https://r-forge.r-project.org/projects/r-temis/")
22038 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
22039 (description
22040 "This package provides an R interface to the C @code{libstemmer} library
22041 that implements Porter's word stemming algorithm for collapsing words to a
22042 common root to aid comparison of vocabulary. Currently supported languages
22043 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
22044 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
22045 (license license:bsd-3)))
22046
22047 (define-public r-quanteda
22048 (package
22049 (name "r-quanteda")
22050 (version "2.1.2")
22051 (source
22052 (origin
22053 (method url-fetch)
22054 (uri (cran-uri "quanteda" version))
22055 (sha256
22056 (base32
22057 "13rjwgmg5v1dbryrs9ifyy76s5ib6wrbrm2y5af44vhf1h6p9cvy"))))
22058 (properties `((upstream-name . "quanteda")))
22059 (build-system r-build-system)
22060 (propagated-inputs
22061 `(("r-data-table" ,r-data-table)
22062 ("r-digest" ,r-digest)
22063 ("r-extrafont" ,r-extrafont)
22064 ("r-fastmatch" ,r-fastmatch)
22065 ("r-ggplot2" ,r-ggplot2)
22066 ("r-ggrepel" ,r-ggrepel)
22067 ("r-jsonlite" ,r-jsonlite)
22068 ("r-magrittr" ,r-magrittr)
22069 ("r-matrix" ,r-matrix)
22070 ("r-network" ,r-network)
22071 ("r-proxyc" ,r-proxyc)
22072 ("r-rcpp" ,r-rcpp)
22073 ("r-rcpparmadillo" ,r-rcpparmadillo)
22074 ("r-rcppparallel" ,r-rcppparallel)
22075 ("r-sna" ,r-sna)
22076 ("r-snowballc" ,r-snowballc)
22077 ("r-stopwords" ,r-stopwords)
22078 ("r-stringi" ,r-stringi)
22079 ("r-xml2" ,r-xml2)
22080 ("r-yaml" ,r-yaml)))
22081 (native-inputs
22082 `(("r-knitr" ,r-knitr)))
22083 (home-page "https://quanteda.io")
22084 (synopsis "Quantitative analysis of textual data")
22085 (description
22086 "This package provides a fast, flexible, and comprehensive framework for
22087 quantitative text analysis in R. It provides functionality for corpus
22088 management, creating and manipulating tokens and ngrams, exploring keywords in
22089 context, forming and manipulating sparse matrices of documents by features and
22090 feature co-occurrences, analyzing keywords, computing feature similarities and
22091 distances, applying content dictionaries, applying supervised and unsupervised
22092 machine learning, visually representing text and text analyses, and more.")
22093 (license license:gpl3)))
22094
22095 (define-public r-topicmodels
22096 (package
22097 (name "r-topicmodels")
22098 (version "0.2-12")
22099 (source
22100 (origin
22101 (method url-fetch)
22102 (uri (cran-uri "topicmodels" version))
22103 (sha256
22104 (base32
22105 "1d6iizmn042b59q2y6qc82z19wq3xm0zvgkf8iqf8fdzh51kmn5g"))))
22106 (properties `((upstream-name . "topicmodels")))
22107 (build-system r-build-system)
22108 (inputs
22109 `(("gsl" ,gsl)))
22110 (propagated-inputs
22111 `(("r-modeltools" ,r-modeltools)
22112 ("r-slam" ,r-slam)
22113 ("r-tm" ,r-tm)))
22114 (home-page "https://cran.r-project.org/package=topicmodels")
22115 (synopsis "Topic models")
22116 (description
22117 "This package provides an interface to the C code for @dfn{Latent
22118 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
22119 David M. Blei and co-authors and the C++ code for fitting LDA models using
22120 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
22121 (license license:gpl2)))
22122
22123 (define-public r-stm
22124 (package
22125 (name "r-stm")
22126 (version "1.3.6")
22127 (source
22128 (origin
22129 (method url-fetch)
22130 (uri (cran-uri "stm" version))
22131 (sha256
22132 (base32
22133 "0qwq4nin2n9fjd06852r8k7arvcgh46kcfb3lm21swgx6j8bgrhb"))))
22134 (properties `((upstream-name . "stm")))
22135 (build-system r-build-system)
22136 (propagated-inputs
22137 `(("r-data-table" ,r-data-table)
22138 ("r-glmnet" ,r-glmnet)
22139 ("r-lda" ,r-lda)
22140 ("r-matrix" ,r-matrix)
22141 ("r-matrixstats" ,r-matrixstats)
22142 ("r-quadprog" ,r-quadprog)
22143 ("r-quanteda" ,r-quanteda)
22144 ("r-rcpp" ,r-rcpp)
22145 ("r-rcpparmadillo" ,r-rcpparmadillo)
22146 ("r-slam" ,r-slam)
22147 ("r-stringr" ,r-stringr)))
22148 (home-page "http://www.structuraltopicmodel.com/")
22149 (synopsis "Estimation of the Structural Topic Model")
22150 (description
22151 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
22152 topic models with document-level covariates. The package also includes tools
22153 for model selection, visualization, and estimation of topic-covariate
22154 regressions.")
22155 (license license:expat)))
22156
22157 (define-public r-polycor
22158 (package
22159 (name "r-polycor")
22160 (version "0.7-10")
22161 (source
22162 (origin
22163 (method url-fetch)
22164 (uri (cran-uri "polycor" version))
22165 (sha256
22166 (base32
22167 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
22168 (properties `((upstream-name . "polycor")))
22169 (build-system r-build-system)
22170 (propagated-inputs
22171 `(("r-matrix" ,r-matrix)
22172 ("r-mvtnorm" ,r-mvtnorm)))
22173 (home-page "https://r-forge.r-project.org/projects/polycor/")
22174 (synopsis "Polychoric and polyserial correlations")
22175 (description
22176 "This package provides tools to compute polychoric and polyserial
22177 correlations by quick \"two-step\" methods or ML, optionally with standard
22178 errors; tetrachoric and biserial correlations are special cases.")
22179 (license license:gpl2+)))
22180
22181 (define-public r-msm
22182 (package
22183 (name "r-msm")
22184 (version "1.6.8")
22185 (source
22186 (origin
22187 (method url-fetch)
22188 (uri (cran-uri "msm" version))
22189 (sha256
22190 (base32
22191 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
22192 (properties `((upstream-name . "msm")))
22193 (build-system r-build-system)
22194 (propagated-inputs
22195 `(("r-expm" ,r-expm)
22196 ("r-mvtnorm" ,r-mvtnorm)
22197 ("r-survival" ,r-survival)))
22198 (home-page "https://github.com/chjackson/msm")
22199 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
22200 (description
22201 "This package provides functions for fitting continuous-time Markov and
22202 hidden Markov multi-state models to longitudinal data. It was designed for
22203 processes observed at arbitrary times in continuous time (panel data) but some
22204 other observation schemes are supported. Both Markov transition rates and the
22205 hidden Markov output process can be modelled in terms of covariates, which may
22206 be constant or piecewise-constant in time.")
22207 (license license:gpl2+)))
22208
22209 (define-public r-ltm
22210 (package
22211 (name "r-ltm")
22212 (version "1.1-1")
22213 (source
22214 (origin
22215 (method url-fetch)
22216 (uri (cran-uri "ltm" version))
22217 (sha256
22218 (base32
22219 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
22220 (properties `((upstream-name . "ltm")))
22221 (build-system r-build-system)
22222 (propagated-inputs
22223 `(("r-mass" ,r-mass)
22224 ("r-msm" ,r-msm)
22225 ("r-polycor" ,r-polycor)))
22226 (home-page "https://github.com/drizopoulos/ltm")
22227 (synopsis "Latent trait models under IRT")
22228 (description
22229 "This is a package supporting the analysis of multivariate dichotomous
22230 and polytomous data using latent trait models under the Item Response Theory
22231 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
22232 Three-Parameter, the Graded Response, and the Generalized Partial Credit
22233 Models.")
22234 (license license:gpl2+)))
22235
22236 (define-public r-mi
22237 (package
22238 (name "r-mi")
22239 (version "1.0")
22240 (source
22241 (origin
22242 (method url-fetch)
22243 (uri (cran-uri "mi" version))
22244 (sha256
22245 (base32
22246 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
22247 (properties `((upstream-name . "mi")))
22248 (build-system r-build-system)
22249 (propagated-inputs
22250 `(("r-arm" ,r-arm)
22251 ("r-matrix" ,r-matrix)))
22252 (home-page "http://www.stat.columbia.edu/~gelman/")
22253 (synopsis "Missing data imputation and model checking")
22254 (description
22255 "This package provides functions for data manipulation, imputing missing
22256 values in an approximate Bayesian framework, diagnostics of the models used to
22257 generate the imputations, confidence-building mechanisms to validate some of
22258 the assumptions of the imputation algorithm, and functions to analyze multiply
22259 imputed data sets with the appropriate degree of sampling uncertainty.")
22260 (license license:gpl2+)))
22261
22262 (define-public r-matrixcalc
22263 (package
22264 (name "r-matrixcalc")
22265 (version "1.0-3")
22266 (source
22267 (origin
22268 (method url-fetch)
22269 (uri (cran-uri "matrixcalc" version))
22270 (sha256
22271 (base32
22272 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
22273 (properties `((upstream-name . "matrixcalc")))
22274 (build-system r-build-system)
22275 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
22276 (synopsis "Collection of functions for matrix calculations")
22277 (description
22278 "This package provides a collection of functions to support matrix
22279 calculations for probability, econometric and numerical analysis. There are
22280 additional functions that are comparable to APL functions which are useful for
22281 actuarial models such as pension mathematics.")
22282 (license license:gpl2+)))
22283
22284 (define-public r-sem
22285 (package
22286 (name "r-sem")
22287 (version "3.1-11")
22288 (source
22289 (origin
22290 (method url-fetch)
22291 (uri (cran-uri "sem" version))
22292 (sha256
22293 (base32
22294 "03j3ig6fy34pi6nwfq9w8f5m555lilw5skr1vn6ay4yvjmvavc9k"))))
22295 (properties `((upstream-name . "sem")))
22296 (build-system r-build-system)
22297 (propagated-inputs
22298 `(("r-boot" ,r-boot)
22299 ("r-mass" ,r-mass)
22300 ("r-matrixcalc" ,r-matrixcalc)
22301 ("r-mi" ,r-mi)))
22302 (home-page "https://cran.r-project.org/package=sem")
22303 (synopsis "Structural equation models")
22304 (description
22305 "This package provides functions for fitting general linear structural
22306 equation models (with observed and latent variables) using the RAM approach,
22307 and for fitting structural equations in observed-variable models by two-stage
22308 least squares.")
22309 (license license:gpl2+)))
22310
22311 (define-public r-semtools
22312 (package
22313 (name "r-semtools")
22314 (version "0.5-4")
22315 (source
22316 (origin
22317 (method url-fetch)
22318 (uri (cran-uri "semTools" version))
22319 (sha256
22320 (base32
22321 "15kban4ds2mssxqslm126b89p8biya14c9m68sqk61vzvx5dm2vq"))))
22322 (properties `((upstream-name . "semTools")))
22323 (build-system r-build-system)
22324 (propagated-inputs
22325 `(("r-lavaan" ,r-lavaan)))
22326 (home-page "https://github.com/simsem/semTools/wiki")
22327 (synopsis "Useful tools for structural equation modeling")
22328 (description
22329 "This package provides useful tools for structural equation modeling.")
22330 (license license:gpl2+)))
22331
22332 (define-public r-regsem
22333 (package
22334 (name "r-regsem")
22335 (version "1.6.2")
22336 (source
22337 (origin
22338 (method url-fetch)
22339 (uri (cran-uri "regsem" version))
22340 (sha256
22341 (base32
22342 "14nrzyrkrijdrr4jwkri5zra2wh36w68wy6xs600l2z1633h2lmn"))))
22343 (properties `((upstream-name . "regsem")))
22344 (build-system r-build-system)
22345 (propagated-inputs
22346 `(("r-lavaan" ,r-lavaan)
22347 ("r-rcpp" ,r-rcpp)
22348 ("r-rcpparmadillo" ,r-rcpparmadillo)
22349 ("r-rsolnp" ,r-rsolnp)))
22350 (native-inputs
22351 `(("r-knitr" ,r-knitr)))
22352 (home-page "https://cran.r-project.org/package=regsem")
22353 (synopsis "Regularized structural equation modeling")
22354 (description
22355 "This package uses both ridge and lasso penalties (and extensions) to
22356 penalize specific parameters in structural equation models. The package
22357 offers additional cost functions, cross validation, and other extensions
22358 beyond traditional structural equation models. It also contains a function to
22359 perform @dfn{exploratory mediation} (XMed).")
22360 (license license:gpl2+)))
22361
22362 (define-public r-stanheaders
22363 (package
22364 (name "r-stanheaders")
22365 (version "2.21.0-7")
22366 (source
22367 (origin
22368 (method url-fetch)
22369 (uri (cran-uri "StanHeaders" version))
22370 (sha256
22371 (base32
22372 "0srkyawyiykn3p5lw1z3zf18s4ax4iasv1ci3l1px40f9w36wm17"))))
22373 (properties `((upstream-name . "StanHeaders")))
22374 (build-system r-build-system)
22375 (inputs `(("pandoc" ,pandoc)))
22376 (propagated-inputs
22377 `(("r-rcppeigen" ,r-rcppeigen)
22378 ("r-rcppparallel" ,r-rcppparallel)))
22379 (native-inputs
22380 `(("gfortran" ,gfortran)
22381 ("r-knitr" ,r-knitr))) ; for vignettes
22382 (home-page "https://mc-stan.org/")
22383 (synopsis "C++ header files for Stan")
22384 (description
22385 "The C++ header files of the Stan project are provided by this package.
22386 There is a shared object containing part of the @code{CVODES} library, but it
22387 is not accessible from R. @code{r-stanheaders} is only useful for developers
22388 who want to utilize the @code{LinkingTo} directive of their package's
22389 DESCRIPTION file to build on the Stan library without incurring unnecessary
22390 dependencies.
22391
22392 The Stan project develops a probabilistic programming language that implements
22393 full or approximate Bayesian statistical inference via Markov Chain Monte
22394 Carlo or variational methods and implements (optionally penalized) maximum
22395 likelihood estimation via optimization. The Stan library includes an advanced
22396 automatic differentiation scheme, templated statistical and linear algebra
22397 functions that can handle the automatically differentiable scalar types (and
22398 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
22399 package provides user-facing R functions to parse, compile, test, estimate,
22400 and analyze Stan models.")
22401 (license license:bsd-3)))
22402
22403 (define-public r-rpf
22404 (package
22405 (name "r-rpf")
22406 (version "1.0.5")
22407 (source
22408 (origin
22409 (method url-fetch)
22410 (uri (cran-uri "rpf" version))
22411 (sha256
22412 (base32
22413 "0kz7i7g3l16irz6bxgnkxdmmd931m1fk6rl72dvs21ir5brr010l"))))
22414 (properties `((upstream-name . "rpf")))
22415 (build-system r-build-system)
22416 (propagated-inputs
22417 `(("r-lifecycle" ,r-lifecycle)
22418 ("r-mvtnorm" ,r-mvtnorm)
22419 ("r-rcpp" ,r-rcpp)
22420 ("r-rcppeigen" ,r-rcppeigen)))
22421 (native-inputs
22422 `(("r-knitr" ,r-knitr)))
22423 (home-page "https://github.com/jpritikin/rpf")
22424 (synopsis "Response probability functions")
22425 (description
22426 "The purpose of this package is to factor out logic and math common to
22427 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
22428 core support code suitable for more specialized IRT packages to build upon.
22429 Complete access to optimized C functions is made available with
22430 @code{R_RegisterCCallable()}.")
22431 (license license:gpl3+)))
22432
22433 (define-public r-openmx
22434 (package
22435 (name "r-openmx")
22436 (version "2.19.1")
22437 (source
22438 (origin
22439 (method url-fetch)
22440 (uri (cran-uri "OpenMx" version))
22441 (sha256
22442 (base32
22443 "0fbndmwb3krypsavgm3blqkhh8blmi3p186yxmvgv3a9m6r154rj"))))
22444 (properties `((upstream-name . "OpenMx")))
22445 (build-system r-build-system)
22446 (propagated-inputs
22447 `(("r-bh" ,r-bh)
22448 ("r-digest" ,r-digest)
22449 ("r-lifecycle" ,r-lifecycle)
22450 ("r-mass" ,r-mass)
22451 ("r-matrix" ,r-matrix)
22452 ("r-rcpp" ,r-rcpp)
22453 ("r-rcppeigen" ,r-rcppeigen)
22454 ("r-rpf" ,r-rpf)
22455 ("r-stanheaders" ,r-stanheaders)))
22456 (native-inputs `(("gfortran" ,gfortran)))
22457 (home-page "http://openmx.ssri.psu.edu")
22458 (synopsis "Extended structural equation modelling")
22459 (description
22460 "This package allows for the estimation of a wide variety of advanced
22461 multivariate statistical models. It consists of a library of functions and
22462 optimizers that allow you to quickly and flexibly define an SEM model and
22463 estimate parameters given observed data.")
22464 (license license:asl2.0)))
22465
22466 (define-public r-kutils
22467 (package
22468 (name "r-kutils")
22469 (version "1.70")
22470 (source
22471 (origin
22472 (method url-fetch)
22473 (uri (cran-uri "kutils" version))
22474 (sha256
22475 (base32
22476 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
22477 (properties `((upstream-name . "kutils")))
22478 (build-system r-build-system)
22479 (propagated-inputs
22480 `(("r-foreign" ,r-foreign)
22481 ("r-openxlsx" ,r-openxlsx)
22482 ("r-plyr" ,r-plyr)
22483 ("r-runit" ,r-runit)
22484 ("r-xtable" ,r-xtable)))
22485 (home-page "https://cran.r-project.org/package=kutils")
22486 (synopsis "Project management tools")
22487 (description
22488 "This package provides tools for data importation, recoding, and
22489 inspection. There are functions to create new project folders, R code
22490 templates, create uniquely named output directories, and to quickly obtain a
22491 visual summary for each variable in a data frame. The main feature here is
22492 the systematic implementation of the \"variable key\" framework for data
22493 importation and recoding.")
22494 (license license:gpl2)))
22495
22496 (define-public r-rockchalk
22497 (package
22498 (name "r-rockchalk")
22499 (version "1.8.144")
22500 (source
22501 (origin
22502 (method url-fetch)
22503 (uri (cran-uri "rockchalk" version))
22504 (sha256
22505 (base32
22506 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
22507 (properties `((upstream-name . "rockchalk")))
22508 (build-system r-build-system)
22509 (propagated-inputs
22510 `(("r-cardata" ,r-cardata)
22511 ("r-kutils" ,r-kutils)
22512 ("r-lme4" ,r-lme4)
22513 ("r-mass" ,r-mass)))
22514 (home-page "https://cran.r-project.org/package=rockchalk")
22515 (synopsis "Regression estimation and presentation")
22516 (description
22517 "This package provides a collection of functions for interpretation and
22518 presentation of regression analysis. These functions are used to produce the
22519 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
22520 includes regression diagnostics, regression tables, and plots of interactions
22521 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
22522 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
22523 fairly comprehensive overview.")
22524 (license license:gpl3+)))
22525
22526 (define-public r-lisreltor
22527 (package
22528 (name "r-lisreltor")
22529 (version "0.1.4")
22530 (source
22531 (origin
22532 (method url-fetch)
22533 (uri (cran-uri "lisrelToR" version))
22534 (sha256
22535 (base32
22536 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
22537 (properties `((upstream-name . "lisrelToR")))
22538 (build-system r-build-system)
22539 (home-page "https://cran.r-project.org/package=lisrelToR")
22540 (synopsis "Import output from LISREL into R")
22541 (description
22542 "This is an unofficial package aimed at automating the import of LISREL
22543 output in R.")
22544 (license license:gpl2)))
22545
22546 (define-public r-bdgraph
22547 (package
22548 (name "r-bdgraph")
22549 (version "2.63")
22550 (source
22551 (origin
22552 (method url-fetch)
22553 (uri (cran-uri "BDgraph" version))
22554 (sha256
22555 (base32
22556 "05q6dbvdnxmh7myvw60zqcqx16f80i8d6qa4y7xnfkx02l9lwiyc"))))
22557 (properties `((upstream-name . "BDgraph")))
22558 (build-system r-build-system)
22559 (propagated-inputs
22560 `(("r-igraph" ,r-igraph)))
22561 (home-page "https://www.uva.nl/profile/a.mohammadi")
22562 (synopsis "Bayesian structure learning in graphical models")
22563 (description
22564 "This package provides statistical tools for Bayesian structure learning
22565 in undirected graphical models for continuous, discrete, and mixed data. It
22566 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
22567 on a continuous-time birth-death process.")
22568 (license license:gpl2+)))
22569
22570 (define-public r-d3network
22571 (package
22572 (name "r-d3network")
22573 (version "0.5.2.1")
22574 (source
22575 (origin
22576 (method url-fetch)
22577 (uri (cran-uri "d3Network" version))
22578 (sha256
22579 (base32
22580 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
22581 (properties `((upstream-name . "d3Network")))
22582 (build-system r-build-system)
22583 (propagated-inputs
22584 `(("r-plyr" ,r-plyr)
22585 ("r-rjson" ,r-rjson)
22586 ("r-whisker" ,r-whisker)))
22587 (home-page "http://christophergandrud.github.io/d3Network/")
22588 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
22589 (description
22590 "This package is intended to make it easy to create D3 JavaScript
22591 network, tree, dendrogram, and Sankey graphs from R using data frames.")
22592 (license license:gpl3+)))
22593
22594 (define-public r-qgraph
22595 (package
22596 (name "r-qgraph")
22597 (version "1.6.9")
22598 (source
22599 (origin
22600 (method url-fetch)
22601 (uri (cran-uri "qgraph" version))
22602 (sha256
22603 (base32
22604 "153bqfmsrghkg7598nfr57r3cxv6dn6ir084njl2sqq5np0sj9di"))))
22605 (properties `((upstream-name . "qgraph")))
22606 (build-system r-build-system)
22607 (propagated-inputs
22608 `(("r-abind" ,r-abind)
22609 ("r-colorspace" ,r-colorspace)
22610 ("r-corpcor" ,r-corpcor)
22611 ("r-dplyr" ,r-dplyr)
22612 ("r-fdrtool" ,r-fdrtool)
22613 ("r-ggplot2" ,r-ggplot2)
22614 ("r-glasso" ,r-glasso)
22615 ("r-gtools" ,r-gtools)
22616 ("r-hmisc" ,r-hmisc)
22617 ("r-igraph" ,r-igraph)
22618 ("r-jpeg" ,r-jpeg)
22619 ("r-lavaan" ,r-lavaan)
22620 ("r-matrix" ,r-matrix)
22621 ("r-pbapply" ,r-pbapply)
22622 ("r-plyr" ,r-plyr)
22623 ("r-png" ,r-png)
22624 ("r-psych" ,r-psych)
22625 ("r-rcpp" ,r-rcpp)
22626 ("r-reshape2" ,r-reshape2)))
22627 (home-page "http://sachaepskamp.com/qgraph/")
22628 (synopsis "Weighted network visualization and analysis")
22629 (description
22630 "This package implements tools for weighted network visualization and
22631 analysis, as well as Gaussian graphical model computation. It contains graph
22632 plotting methods, and tools for psychometric data visualization and graphical
22633 model estimation. See Epskamp et al. (2012)
22634 @url{doi:10.18637/jss.v048.i04}.")
22635 (license license:gpl2)))
22636
22637 (define-public r-semplot
22638 (package
22639 (name "r-semplot")
22640 (version "1.1.2")
22641 (source
22642 (origin
22643 (method url-fetch)
22644 (uri (cran-uri "semPlot" version))
22645 (sha256
22646 (base32
22647 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
22648 (properties `((upstream-name . "semPlot")))
22649 (build-system r-build-system)
22650 (propagated-inputs
22651 `(("r-colorspace" ,r-colorspace)
22652 ("r-corpcor" ,r-corpcor)
22653 ("r-igraph" ,r-igraph)
22654 ("r-lavaan" ,r-lavaan)
22655 ("r-lisreltor" ,r-lisreltor)
22656 ("r-openmx" ,r-openmx)
22657 ("r-plyr" ,r-plyr)
22658 ("r-qgraph" ,r-qgraph)
22659 ("r-regsem" ,r-regsem)
22660 ("r-rockchalk" ,r-rockchalk)
22661 ("r-sem" ,r-sem)
22662 ("r-xml" ,r-xml)))
22663 (home-page "https://github.com/SachaEpskamp/semPlot")
22664 (synopsis "Unified visualizations of structural equation models")
22665 (description
22666 "Structural equation modeling (SEM) has a long history of representing
22667 models graphically as path diagrams. The semPlot package for R fills the gap
22668 between advanced, but time-consuming, graphical software and the limited
22669 graphics produced automatically by SEM software. In addition, semPlot offers
22670 more functionality than drawing path diagrams: it can act as a common ground
22671 for importing SEM results into R. Any result usable as input to semPlot can
22672 also be represented in any of the three popular SEM frame-works, as well as
22673 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
22674 (license license:gpl2)))
22675
22676 (define-public r-cdm
22677 (package
22678 (name "r-cdm")
22679 (version "7.5-15")
22680 (source
22681 (origin
22682 (method url-fetch)
22683 (uri (cran-uri "CDM" version))
22684 (sha256
22685 (base32
22686 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
22687 (properties `((upstream-name . "CDM")))
22688 (build-system r-build-system)
22689 (propagated-inputs
22690 `(("r-mvtnorm" ,r-mvtnorm)
22691 ("r-polycor" ,r-polycor)
22692 ("r-rcpp" ,r-rcpp)
22693 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22694 (home-page
22695 "https://github.com/alexanderrobitzsch/CDM")
22696 (synopsis "Cognitive diagnosis modeling")
22697 (description
22698 "This package provides functions for cognitive diagnosis modeling and
22699 multidimensional item response modeling for dichotomous and polytomous item
22700 responses. It enables the estimation of the DINA and DINO model, the multiple
22701 group (polytomous) GDINA model, the multiple choice DINA model, the general
22702 diagnostic model (GDM), the structured latent class model (SLCA), and
22703 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
22704 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
22705 estimation and the package structure. For tutorials on how to use the CDM
22706 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
22707 well as Ravand and Robitzsch (2015).")
22708 (license license:gpl2+)))
22709
22710 (define-public r-tam
22711 (package
22712 (name "r-tam")
22713 (version "3.5-19")
22714 (source
22715 (origin
22716 (method url-fetch)
22717 (uri (cran-uri "TAM" version))
22718 (sha256
22719 (base32
22720 "1x1pdy0hrk4c3x5l4gcslpvyb0sv2zgly4n3a7y8j6yrzajx0sg7"))))
22721 (properties `((upstream-name . "TAM")))
22722 (build-system r-build-system)
22723 (propagated-inputs
22724 `(("r-cdm" ,r-cdm)
22725 ("r-rcpp" ,r-rcpp)
22726 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22727 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
22728 (synopsis "Test analysis modules")
22729 (description
22730 "This package includes tools for marginal maximum likelihood estimation
22731 and joint maximum likelihood estimation for unidimensional and
22732 multidimensional item response models. The package functionality covers the
22733 Rasch model, 2PL model, 3PL model, generalized partial credit model,
22734 multi-faceted Rasch model, nominal item response model, structured latent
22735 class model, mixture distribution IRT models, and located latent class models.
22736 Latent regression models and plausible value imputation are also supported.")
22737 (license license:gpl2+)))
22738
22739 (define-public r-erm
22740 (package
22741 (name "r-erm")
22742 (version "1.0-2")
22743 (source
22744 (origin
22745 (method url-fetch)
22746 (uri (cran-uri "eRm" version))
22747 (sha256
22748 (base32
22749 "0smym010kswc5vx90qr3x1vl16xj1x1i54rvrj006dc4agc1vmlk"))))
22750 (properties `((upstream-name . "eRm")))
22751 (build-system r-build-system)
22752 (propagated-inputs
22753 `(("r-colorspace" ,r-colorspace)
22754 ("r-lattice" ,r-lattice)
22755 ("r-mass" ,r-mass)
22756 ("r-matrix" ,r-matrix)
22757 ("r-psych" ,r-psych)))
22758 (native-inputs `(("gfortran" ,gfortran)))
22759 (home-page "https://cran.r-project.org/package=eRm")
22760 (synopsis "Extended Rasch modeling")
22761 (description
22762 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
22763 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
22764 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
22765 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
22766 data matrix. Additional features are the ML estimation of the person
22767 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
22768 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
22769 infit and outfit measures, ICC and other plots, automated stepwise item
22770 elimination, and a simulation module for various binary data matrices.")
22771 (license license:gpl3)))
22772
22773 (define-public r-irtoys
22774 (package
22775 (name "r-irtoys")
22776 (version "0.2.1")
22777 (source
22778 (origin
22779 (method url-fetch)
22780 (uri (cran-uri "irtoys" version))
22781 (sha256
22782 (base32
22783 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
22784 (properties `((upstream-name . "irtoys")))
22785 (build-system r-build-system)
22786 (propagated-inputs
22787 `(("r-ltm" ,r-ltm)
22788 ("r-sm" ,r-sm)))
22789 (home-page "https://cran.r-project.org/package=irtoys")
22790 (synopsis "Collection of functions related to Item Response Theory (IRT)")
22791 (description
22792 "This package provides a collection of functions useful in learning and
22793 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
22794 programs. It provides basic CTT analysis, a simple common interface to the
22795 estimation of item parameters in IRT models for binary responses with three
22796 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
22797 EAP, WLE, plausible values), item and person fit statistics, scaling
22798 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
22799 array of parametric and non-parametric (kernel) plots. It estimates and plots
22800 Haberman's interaction model when all items are dichotomously scored.")
22801 (license license:gpl2+)))
22802
22803 (define-public r-iheatmapr
22804 (package
22805 (name "r-iheatmapr")
22806 (version "0.5.1")
22807 (source
22808 (origin
22809 (method url-fetch)
22810 (uri (cran-uri "iheatmapr" version))
22811 (sha256
22812 (base32
22813 "1pwkwh7ljlpr6zyz6j8knpz3iw60xzkw8amc98x4pc2mw148jvzx"))))
22814 (properties `((upstream-name . "iheatmapr")))
22815 (build-system r-build-system)
22816 (propagated-inputs
22817 `(("r-fastcluster" ,r-fastcluster)
22818 ("r-ggdendro" ,r-ggdendro)
22819 ("r-htmlwidgets" ,r-htmlwidgets)
22820 ("r-jsonlite" ,r-jsonlite)
22821 ("r-knitr" ,r-knitr)
22822 ("r-magrittr" ,r-magrittr)
22823 ("r-rcolorbrewer" ,r-rcolorbrewer)
22824 ("r-scales" ,r-scales)))
22825 (native-inputs
22826 `(("r-knitr" ,r-knitr)))
22827 (home-page "https://docs.ropensci.org/iheatmapr")
22828 (synopsis "Interactive, Complex Heatmaps")
22829 (description
22830 "iheatmapr is an R package for building complex, interactive heatmaps
22831 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
22832 subplots along the rows or columns of the main heatmap add more information
22833 about each row or column. For example, a one column additional heatmap may
22834 indicate what group a particular row or column belongs to. Complex heatmaps
22835 may also include multiple side by side heatmaps which show different types of
22836 data for the same conditions. Interactivity can improve complex heatmaps by
22837 providing tooltips with information about each cell and enabling zooming into
22838 interesting features. iheatmapr uses the plotly library for interactivity.")
22839 (license license:expat)))
22840
22841 (define-public r-packrat
22842 (package
22843 (name "r-packrat")
22844 (version "0.5.0")
22845 (source
22846 (origin
22847 (method url-fetch)
22848 (uri (cran-uri "packrat" version))
22849 (sha256
22850 (base32
22851 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
22852 (properties `((upstream-name . "packrat")))
22853 (build-system r-build-system)
22854 (home-page "https://github.com/rstudio/packrat/")
22855 (synopsis "Dependency management R projects")
22856 (description
22857 "This package provides a dependency manager for R projects that allows
22858 you to manage the R packages your project depends on in an isolated, portable,
22859 and reproducible way.")
22860 (license license:gpl2)))
22861
22862 (define-public r-rsconnect
22863 (package
22864 (name "r-rsconnect")
22865 (version "0.8.16")
22866 (source
22867 (origin
22868 (method url-fetch)
22869 (uri (cran-uri "rsconnect" version))
22870 (sha256
22871 (base32
22872 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
22873 (properties `((upstream-name . "rsconnect")))
22874 (build-system r-build-system)
22875 (propagated-inputs
22876 `(("r-curl" ,r-curl)
22877 ("r-digest" ,r-digest)
22878 ("r-jsonlite" ,r-jsonlite)
22879 ("r-openssl" ,r-openssl)
22880 ("r-packrat" ,r-packrat)
22881 ("r-rstudioapi" ,r-rstudioapi)
22882 ("r-yaml" ,r-yaml)))
22883 (home-page "https://github.com/rstudio/rsconnect")
22884 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
22885 (description
22886 "This package provides a programmatic deployment interface for RPubs,
22887 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
22888 documents, Shiny applications, Plumber APIs, plots, and static web content.")
22889 (license license:gpl2)))
22890
22891 ;; This package includes minified JavaScript files. When upgrading please
22892 ;; check that there are no new minified JavaScript files.
22893 (define-public r-dygraphs
22894 (package
22895 (name "r-dygraphs")
22896 (version "1.1.1.6")
22897 (source
22898 (origin
22899 (method url-fetch)
22900 (uri (cran-uri "dygraphs" version))
22901 (sha256
22902 (base32
22903 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
22904 (properties `((upstream-name . "dygraphs")))
22905 (build-system r-build-system)
22906 (arguments
22907 `(#:modules ((guix build utils)
22908 (guix build r-build-system)
22909 (srfi srfi-1)
22910 (ice-9 popen))
22911 #:phases
22912 (modify-phases %standard-phases
22913 (add-after 'unpack 'process-javascript
22914 (lambda* (#:key inputs #:allow-other-keys)
22915 (with-directory-excursion "inst/htmlwidgets/lib/"
22916 (call-with-values
22917 (lambda ()
22918 (unzip2
22919 `(("dygraphs/dygraph-combined-dev.js"
22920 "dygraph-combined.js")
22921 (,(assoc-ref inputs "js-jquery")
22922 "jquery/jquery.min.js")
22923 (,(assoc-ref inputs "js-fquarter")
22924 "fquarter/moment-fquarter.min.js"))))
22925 (lambda (sources targets)
22926 (for-each (lambda (source target)
22927 (format #t "Processing ~a --> ~a~%"
22928 source target)
22929 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
22930 (call-with-output-file target
22931 (lambda (port)
22932 (dump-port minified port)))))
22933 sources targets))))
22934 #t)))))
22935 (native-inputs
22936 `(("uglify-js" ,uglify-js)
22937 ;; They actually use version 1.11.1, but this more recent version
22938 ;; should be just fine.
22939 ("js-jquery"
22940 ,(origin
22941 (method url-fetch)
22942 (uri "https://code.jquery.com/jquery-1.12.4.js")
22943 (sha256
22944 (base32
22945 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
22946 ("js-fquarter"
22947 ,(origin
22948 (method url-fetch)
22949 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
22950 "moment-fquarter/1.0.1/moment-fquarter.js"))
22951 (sha256
22952 (base32
22953 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
22954 (propagated-inputs
22955 `(("r-htmltools" ,r-htmltools)
22956 ("r-htmlwidgets" ,r-htmlwidgets)
22957 ("r-magrittr" ,r-magrittr)
22958 ("r-xts" ,r-xts)
22959 ("r-zoo" ,r-zoo)))
22960 (home-page "https://github.com/rstudio/dygraphs")
22961 (synopsis "Interface to Dygraphs interactive time series charting library")
22962 (description
22963 "This package provides an R interface to the dygraphs JavaScript charting
22964 library (a copy of which is included in the package). It provides rich
22965 facilities for charting time-series data in R, including highly configurable
22966 series- and axis-display and interactive features like zoom/pan and
22967 series/point highlighting.")
22968 (license license:expat)))
22969
22970 (define-public r-shinystan
22971 (package
22972 (name "r-shinystan")
22973 (version "2.5.0")
22974 (source
22975 (origin
22976 (method url-fetch)
22977 (uri (cran-uri "shinystan" version))
22978 (sha256
22979 (base32
22980 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
22981 (properties `((upstream-name . "shinystan")))
22982 (build-system r-build-system)
22983 (propagated-inputs
22984 `(("r-bayesplot" ,r-bayesplot)
22985 ("r-colourpicker" ,r-colourpicker)
22986 ("r-dt" ,r-dt)
22987 ("r-dygraphs" ,r-dygraphs)
22988 ("r-ggplot2" ,r-ggplot2)
22989 ("r-gridextra" ,r-gridextra)
22990 ("r-gtools" ,r-gtools)
22991 ("r-markdown" ,r-markdown)
22992 ("r-reshape2" ,r-reshape2)
22993 ("r-rsconnect" ,r-rsconnect)
22994 ("r-rstan" ,r-rstan)
22995 ("r-shiny" ,r-shiny)
22996 ("r-shinyjs" ,r-shinyjs)
22997 ("r-shinythemes" ,r-shinythemes)
22998 ("r-threejs" ,r-threejs)
22999 ("r-xtable" ,r-xtable)
23000 ("r-xts" ,r-xts)))
23001 (home-page "https://mc-stan.org/")
23002 (synopsis "Interactive visual and numerical analysis for Bayesian models")
23003 (description
23004 "This package provides a graphical user interface for interactive
23005 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
23006 for analyzing a posterior sample. The interface is powered by the Shiny web
23007 application framework and works with the output of MCMC programs written in
23008 any programming language (and has extended functionality for Stan models fit
23009 using the @code{rstan} and @code{rstanarm} packages).")
23010 (license license:gpl3+)))
23011
23012 (define-public r-rstantools
23013 (package
23014 (name "r-rstantools")
23015 (version "2.1.1")
23016 (source
23017 (origin
23018 (method url-fetch)
23019 (uri (cran-uri "rstantools" version))
23020 (sha256
23021 (base32
23022 "0b9x8rzj3dr4m7yjx476nn42z22xd1xnw85m9frfwxy5ivg1any9"))))
23023 (properties `((upstream-name . "rstantools")))
23024 (build-system r-build-system)
23025 (inputs `(("pandoc" ,pandoc)))
23026 (propagated-inputs
23027 `(("r-desc" ,r-desc)
23028 ("r-rcpp" ,r-rcpp)
23029 ("r-rcppparallel" ,r-rcppparallel)))
23030 (native-inputs
23031 `(("r-knitr" ,r-knitr)))
23032 (home-page "https://mc-stan.org/rstantools/")
23033 (synopsis "Tools for developing R packages interfacing with Stan")
23034 (description
23035 "This package provides various tools for developers of R packages
23036 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
23037 up the required package structure, S3 generics and default methods to unify
23038 function naming across Stan-based R packages, and vignettes with
23039 recommendations for developers.")
23040 (license license:gpl3+)))
23041
23042 (define-public r-loo
23043 (package
23044 (name "r-loo")
23045 (version "2.4.1")
23046 (source
23047 (origin
23048 (method url-fetch)
23049 (uri (cran-uri "loo" version))
23050 (sha256
23051 (base32 "0l2v8zpashqbnck3qx5lp1gqjcfphzky8mxyw5gfk9wk99mzn8dw"))))
23052 (properties `((upstream-name . "loo")))
23053 (build-system r-build-system)
23054 (inputs
23055 `(("pandoc" ,pandoc)
23056 ("pandoc-citeproc" ,pandoc-citeproc)))
23057 (propagated-inputs
23058 `(("r-checkmate" ,r-checkmate)
23059 ("r-matrixstats" ,r-matrixstats)))
23060 (native-inputs
23061 `(("r-knitr" ,r-knitr)))
23062 (home-page "https://mc-stan.org/loo/")
23063 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
23064 (description
23065 "This package provides an implementation of efficient approximate
23066 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
23067 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
23068 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
23069 procedure for regularizing importance weights. As a byproduct of the
23070 calculations, we also obtain approximate standard errors for estimated
23071 predictive errors and for the comparison of predictive errors between models.
23072 The package also provides methods for using stacking and other model weighting
23073 techniques to average Bayesian predictive distributions.")
23074 (license license:gpl3+)))
23075
23076 (define-public r-rstan
23077 (package
23078 (name "r-rstan")
23079 (version "2.21.2")
23080 (source
23081 (origin
23082 (method url-fetch)
23083 (uri (cran-uri "rstan" version))
23084 (sha256
23085 (base32
23086 "0jh58qfrksd2j9w2zy4bajryivgp36m3xdb9mjrjqbk1ib9h83p3"))))
23087 (properties `((upstream-name . "rstan")))
23088 (build-system r-build-system)
23089 (arguments
23090 `(#:phases
23091 (modify-phases %standard-phases
23092 (add-before 'install 'set-timezone
23093 ;; This package is picky about timezones.
23094 (lambda* (#:key inputs #:allow-other-keys)
23095 (setenv "TZ" "UTC+1")
23096 (setenv "TZDIR"
23097 (string-append (assoc-ref inputs "tzdata")
23098 "/share/zoneinfo"))
23099 #t)))))
23100 (native-inputs
23101 `(("tzdata" ,tzdata-for-tests)
23102 ("pandoc" ,pandoc)
23103 ("r-knitr" ,r-knitr)))
23104 (propagated-inputs
23105 `(("r-bh" ,r-bh)
23106 ("r-ggplot2" ,r-ggplot2)
23107 ("r-gridextra" ,r-gridextra)
23108 ("r-inline" ,r-inline)
23109 ("r-loo" ,r-loo)
23110 ("r-pkgbuild" ,r-pkgbuild)
23111 ("r-rcpp" ,r-rcpp)
23112 ("r-rcppeigen" ,r-rcppeigen)
23113 ("r-rcppparallel" ,r-rcppparallel)
23114 ("r-stanheaders" ,r-stanheaders)
23115 ("r-v8" ,r-v8)
23116 ("r-withr" ,r-withr)))
23117 (home-page "https://discourse.mc-stan.org/")
23118 (synopsis "R interface to Stan")
23119 (description
23120 "User-facing R functions are provided to parse, compile, test, estimate,
23121 and analyze Stan models by accessing the header-only Stan library provided by
23122 the StanHeaders package. The Stan project develops a probabilistic
23123 programming language that implements full Bayesian statistical inference via
23124 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
23125 approximation, and (optionally penalized) maximum likelihood estimation via
23126 optimization. In all three cases, automatic differentiation is used to
23127 quickly and accurately evaluate gradients without burdening the user with the
23128 need to derive the partial derivatives.")
23129 (license license:gpl3+)))
23130
23131 (define-public r-rstanarm
23132 (package
23133 (name "r-rstanarm")
23134 (version "2.21.1")
23135 (source
23136 (origin
23137 (method url-fetch)
23138 (uri (cran-uri "rstanarm" version))
23139 (sha256
23140 (base32
23141 "04ggzak3f7jaxza3dxyrmxp5b48qcgyspy22ykbhr03g4hzp7jk8"))))
23142 (properties `((upstream-name . "rstanarm")))
23143 (build-system r-build-system)
23144 (inputs
23145 `(("pandoc" ,pandoc)
23146 ("pandoc-citeproc" ,pandoc-citeproc)))
23147 (propagated-inputs
23148 `(("r-bayesplot" ,r-bayesplot)
23149 ("r-bh" ,r-bh)
23150 ("r-ggplot2" ,r-ggplot2)
23151 ("r-lme4" ,r-lme4)
23152 ("r-loo" ,r-loo)
23153 ("r-matrix" ,r-matrix)
23154 ("r-nlme" ,r-nlme)
23155 ("r-rcpp" ,r-rcpp)
23156 ("r-rcppeigen" ,r-rcppeigen)
23157 ("r-rcppparallel" ,r-rcppparallel)
23158 ("r-rstan" ,r-rstan)
23159 ("r-rstantools" ,r-rstantools)
23160 ("r-shinystan" ,r-shinystan)
23161 ("r-stanheaders" ,r-stanheaders)
23162 ("r-survival" ,r-survival)))
23163 (native-inputs
23164 `(("r-knitr" ,r-knitr)))
23165 (home-page "https://mc-stan.org/rstanarm/")
23166 (synopsis "Bayesian applied regression modeling via Stan")
23167 (description
23168 "This package estimates previously compiled regression models using the
23169 @code{rstan} package, which provides the R interface to the Stan C++ library
23170 for Bayesian estimation. Users specify models via the customary R syntax with
23171 a formula and @code{data.frame} plus some additional arguments for priors.")
23172 (license license:gpl3+)))
23173
23174 (define-public r-kendall
23175 (package
23176 (name "r-kendall")
23177 (version "2.2")
23178 (source
23179 (origin
23180 (method url-fetch)
23181 (uri (cran-uri "Kendall" version))
23182 (sha256
23183 (base32
23184 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
23185 (properties `((upstream-name . "Kendall")))
23186 (build-system r-build-system)
23187 (propagated-inputs
23188 `(("r-boot" ,r-boot)))
23189 (native-inputs
23190 `(("gfortran" ,gfortran)))
23191 (home-page "https://cran.r-project.org/web/packages/Kendall/")
23192 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
23193 (description
23194 "This package computes the Kendall rank correlation and Mann-Kendall
23195 trend test.")
23196 (license license:gpl2+)))
23197
23198 (define-public r-keyring
23199 (package
23200 (name "r-keyring")
23201 (version "1.1.0")
23202 (source
23203 (origin
23204 (method url-fetch)
23205 (uri (cran-uri "keyring" version))
23206 (sha256
23207 (base32
23208 "1hpfd4hbx43i39l995rg86kfxi7wlyla1gv8mwcdr4xx7z122zzq"))))
23209 (properties `((upstream-name . "keyring")))
23210 (build-system r-build-system)
23211 (propagated-inputs
23212 `(("r-assertthat" ,r-assertthat)
23213 ("r-filelock" ,r-filelock)
23214 ("r-getpass" ,r-getpass)
23215 ("r-openssl" ,r-openssl)
23216 ("r-r6" ,r-r6)
23217 ("r-rappdirs" ,r-rappdirs)
23218 ("r-sodium" ,r-sodium)
23219 ("r-yaml" ,r-yaml)))
23220 (native-inputs `(("pkg-config" ,pkg-config)))
23221 (home-page "https://github.com/r-lib/keyring")
23222 (synopsis "Access the system credential store from R")
23223 (description
23224 "This package provides a platform-independent API to access the operating
23225 system's credential store. It currently supports Keychain on macOS,
23226 Credential Store on Windows, the Secret Service API on GNU/Linux, and a
23227 simple, platform independent store implemented with environment variables.
23228 Additional storage back-ends can be added easily.")
23229 (license license:expat)))
23230
23231 (define-public r-zyp
23232 (package
23233 (name "r-zyp")
23234 (version "0.10-1.1")
23235 (source
23236 (origin
23237 (method url-fetch)
23238 (uri (cran-uri "zyp" version))
23239 (sha256
23240 (base32
23241 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
23242 (properties `((upstream-name . "zyp")))
23243 (build-system r-build-system)
23244 (propagated-inputs
23245 `(("r-kendall" ,r-kendall)))
23246 (home-page "https://cran.r-project.org/web/packages/zyp/")
23247 (synopsis "Zhang + Yue-Pilon Trends Package")
23248 (description
23249 "This package contains an efficient implementation of Sen's slope
23250 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
23251 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
23252 climate data.")
23253 (license license:lgpl2.1)))
23254
23255 (define-public r-rlinsolve
23256 (package
23257 (name "r-rlinsolve")
23258 (version "0.3.1")
23259 (source
23260 (origin
23261 (method url-fetch)
23262 (uri (cran-uri "Rlinsolve" version))
23263 (sha256
23264 (base32
23265 "1x02xxbkchcwwfa2123n9yqfzinfi0zba8zxhp977czzwysy75cc"))))
23266 (properties `((upstream-name . "Rlinsolve")))
23267 (build-system r-build-system)
23268 (propagated-inputs
23269 `(("r-matrix" ,r-matrix)
23270 ("r-rcpp" ,r-rcpp)
23271 ("r-rcpparmadillo" ,r-rcpparmadillo)
23272 ("r-rdpack" ,r-rdpack)))
23273 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
23274 (synopsis "Iterative solvers for (sparse) linear system of equations")
23275 (description
23276 "Solving a system of linear equations is one of the most fundamental
23277 computational problems for many fields of mathematical studies, such as
23278 regression problems from statistics or numerical partial differential
23279 equations. This package provides basic stationary iterative solvers such as
23280 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
23281 Nonstationary, also known as Krylov subspace methods are also provided.
23282 Sparse matrix computation is also supported in that solving large and sparse
23283 linear systems can be manageable using the @code{Matrix} package along with
23284 @code{RcppArmadillo}.")
23285 (license license:gpl3+)))
23286
23287 (define-public r-zvcv
23288 (package
23289 (name "r-zvcv")
23290 (version "2.1.0")
23291 (source
23292 (origin
23293 (method url-fetch)
23294 (uri (cran-uri "ZVCV" version))
23295 (sha256
23296 (base32
23297 "0np6h6x74kz1x13wmbkkm1wq43d8bnn2khzjc80prqdi6n0m9v8r"))))
23298 (properties `((upstream-name . "ZVCV")))
23299 (build-system r-build-system)
23300 (propagated-inputs
23301 `(("r-abind" ,r-abind)
23302 ("r-bh" ,r-bh)
23303 ("r-dplyr" ,r-dplyr)
23304 ("r-glmnet" ,r-glmnet)
23305 ("r-magrittr" ,r-magrittr)
23306 ("r-mvtnorm" ,r-mvtnorm)
23307 ("r-rcpp" ,r-rcpp)
23308 ("r-rcpparmadillo" ,r-rcpparmadillo)
23309 ("r-rlinsolve" ,r-rlinsolve)))
23310 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
23311 (synopsis "Zero-Variance Control Variates")
23312 (description
23313 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
23314 to reduce the variance of Monte Carlo estimators of expectations using the
23315 derivatives of the log target. Once the derivatives are available, the only
23316 additional computational effort is in solving a linear regression problem.
23317 This method has been extended to higher dimensions using regularisation. This
23318 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
23319 samples, derivatives and function evaluations are available. Additional
23320 functions for applying ZV-CV to two estimators for the normalising constant of
23321 the posterior distribution in Bayesian statistics are also supplied.")
23322 (license license:gpl2+)))
23323
23324 (define-public r-ztype
23325 (package
23326 (name "r-ztype")
23327 (version "0.1.0")
23328 (source
23329 (origin
23330 (method url-fetch)
23331 (uri (cran-uri "ztype" version))
23332 (sha256
23333 (base32
23334 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
23335 (properties `((upstream-name . "ztype")))
23336 (build-system r-build-system)
23337 (propagated-inputs
23338 `(("r-assertthat" ,r-assertthat)
23339 ("r-dplyr" ,r-dplyr)
23340 ("r-ggplot2" ,r-ggplot2)
23341 ("r-lubridate" ,r-lubridate)
23342 ("r-magrittr" ,r-magrittr)
23343 ("r-rvest" ,r-rvest)
23344 ("r-stringr" ,r-stringr)))
23345 (home-page "https://cran.r-project.org/web/packages/ztype/")
23346 (synopsis "Run a Ztype game loaded with R functions")
23347 (description
23348 "How fast can you type R functions on your keyboard? Find out by running
23349 a @code{zty.pe} game: export R functions as instructions to type to destroy
23350 opponents' vessels.")
23351 (license license:gpl3)))
23352
23353 (define-public r-zseq
23354 (package
23355 (name "r-zseq")
23356 (version "0.2.0")
23357 (source
23358 (origin
23359 (method url-fetch)
23360 (uri (cran-uri "Zseq" version))
23361 (sha256
23362 (base32
23363 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
23364 (properties `((upstream-name . "Zseq")))
23365 (build-system r-build-system)
23366 (propagated-inputs
23367 `(("r-gmp" ,r-gmp)))
23368 (home-page "https://cran.r-project.org/web/packages/Zseq/")
23369 (synopsis "Integer sequence generator")
23370 (description
23371 "This package generates well-known integer sequences. The @code{gmp}
23372 package is adopted for computing with arbitrarily large numbers. Every
23373 function has a hyperlink to its corresponding item in the @dfn{On-Line
23374 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
23375 (license license:gpl3+)))
23376
23377 (define-public r-isoband
23378 (package
23379 (name "r-isoband")
23380 (version "0.2.4")
23381 (source
23382 (origin
23383 (method url-fetch)
23384 (uri (cran-uri "isoband" version))
23385 (sha256
23386 (base32
23387 "0z1qpxcl8b6fi691fbdr3vrb19mn4pas1iff62zl1bafzbdvpmcn"))))
23388 (properties `((upstream-name . "isoband")))
23389 (build-system r-build-system)
23390 (native-inputs
23391 `(("r-knitr" ,r-knitr)))
23392 (home-page "https://github.com/wilkelab/isoband")
23393 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
23394 (description
23395 "This package provides a fast C++ implementation to generate contour
23396 lines (isolines) and contour polygons (isobands) from regularly spaced grids
23397 containing elevation data.")
23398 (license license:expat)))
23399
23400 (define-public r-ppcor
23401 (package
23402 (name "r-ppcor")
23403 (version "1.1")
23404 (source
23405 (origin
23406 (method url-fetch)
23407 (uri (cran-uri "ppcor" version))
23408 (sha256
23409 (base32
23410 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
23411 (properties `((upstream-name . "ppcor")))
23412 (build-system r-build-system)
23413 (propagated-inputs
23414 `(("r-mass" ,r-mass)))
23415 (home-page "https://cran.r-project.org/web/packages/ppcor/")
23416 (synopsis "Partial and semi-partial correlation")
23417 (description
23418 "This package provides users not only with a function to readily
23419 calculate the higher-order partial and semi-partial correlations but also with
23420 statistics and p-values of the correlation coefficients.")
23421 (license license:gpl2)))
23422
23423 (define-public r-hrbrthemes
23424 (package
23425 (name "r-hrbrthemes")
23426 (version "0.8.0")
23427 (source
23428 (origin
23429 (method url-fetch)
23430 (uri (cran-uri "hrbrthemes" version))
23431 (sha256
23432 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
23433 (properties `((upstream-name . "hrbrthemes")))
23434 (build-system r-build-system)
23435 (propagated-inputs
23436 `(("r-extrafont" ,r-extrafont)
23437 ("r-gdtools" ,r-gdtools)
23438 ("r-ggplot2" ,r-ggplot2)
23439 ("r-htmltools" ,r-htmltools)
23440 ("r-knitr" ,r-knitr)
23441 ("r-magrittr" ,r-magrittr)
23442 ("r-rmarkdown" ,r-rmarkdown)
23443 ("r-scales" ,r-scales)))
23444 (native-inputs
23445 `(("r-knitr" ,r-knitr)))
23446 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
23447 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
23448 (description
23449 "This package provides a compilation of extra @code{ggplot2} themes,
23450 scales and utilities, including a spell check function for plot label fields
23451 and an overall emphasis on typography.")
23452 (license license:expat)))
23453
23454 (define-public r-crochet
23455 (package
23456 (name "r-crochet")
23457 (version "2.3.0")
23458 (source
23459 (origin
23460 (method url-fetch)
23461 (uri (cran-uri "crochet" version))
23462 (sha256
23463 (base32
23464 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
23465 (build-system r-build-system)
23466 (native-inputs
23467 `(("r-knitr" ,r-knitr)))
23468 (home-page "https://github.com/agrueneberg/crochet")
23469 (synopsis "Implementation Helper for Matrix-Like Types")
23470 (description
23471 "Functions to help implement the extraction / subsetting / indexing
23472 function @code{[} and replacement function @code{[<-} of custom matrix-like
23473 types (based on S3, S4, etc.), modeled as closely to the base matrix class
23474 as possible (with tests to prove it).")
23475 (license license:expat)))
23476
23477 (define-public r-boa
23478 (package
23479 (name "r-boa")
23480 (version "1.1.8-2")
23481 (source
23482 (origin
23483 (method url-fetch)
23484 (uri (cran-uri "boa" version))
23485 (sha256
23486 (base32
23487 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
23488 (properties `((upstream-name . "boa")))
23489 (build-system r-build-system)
23490 (home-page "https://www.jstatsoft.org/v21/i11")
23491 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
23492 (description
23493 "This package provides a menu-driven program and library of functions for
23494 carrying out convergence diagnostics and statistical and graphical analysis of
23495 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
23496 (license license:gpl2+)))
23497
23498 (define-public r-httpcode
23499 (package
23500 (name "r-httpcode")
23501 (version "0.3.0")
23502 (source (origin
23503 (method url-fetch)
23504 (uri (cran-uri "httpcode" version))
23505 (sha256
23506 (base32
23507 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
23508 (build-system r-build-system)
23509 (home-page "https://github.com/sckott/httpcode")
23510 (synopsis "HTTP status code helper")
23511 (description "@code{httpcode} provides functionality for finding and
23512 explaining the meaning of @code{HTTP} status codes. Functions are included for
23513 searching for codes by full or partial number, by message, and to get
23514 appropriate dog and cat images for many status codes.")
23515 (license license:expat)))
23516
23517 (define-public r-latex2exp
23518 (package
23519 (name "r-latex2exp")
23520 (version "0.4.0")
23521 (source (origin
23522 (method url-fetch)
23523 (uri (cran-uri "latex2exp" version))
23524 (sha256
23525 (base32
23526 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
23527 (build-system r-build-system)
23528 (propagated-inputs
23529 `(("r-stringr" ,r-stringr)
23530 ("r-magrittr" ,r-magrittr)))
23531 (home-page "https://github.com/stefano-meschiari/latex2exp/")
23532 (synopsis "Use LaTeX expressions in plots")
23533 (description "@code{latex2exp} parses and converts LaTeX math formulas to
23534 R's plotmath expressions, used to enter mathematical formulas and symbols to be
23535 rendered as text, axis labels, etc. throughout R's plotting system.")
23536 (license license:expat)))
23537
23538 (define-public r-oai
23539 (package
23540 (name "r-oai")
23541 (version "0.3.0")
23542 (source (origin
23543 (method url-fetch)
23544 (uri (cran-uri "oai" version))
23545 (sha256
23546 (base32
23547 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
23548 (build-system r-build-system)
23549 (propagated-inputs
23550 `(("r-xml2" ,r-xml2)
23551 ("r-httr" ,r-httr)
23552 ("r-plyr" ,r-plyr)
23553 ("r-stringr" ,r-stringr)
23554 ("r-tibble" ,r-tibble)))
23555 (home-page "https://github.com/ropensci/oai/")
23556 (synopsis "General purpose OAI-PMH services client")
23557 (description "@code{oai} provides a general purpose client to work with
23558 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
23559 service. Functions are provided to work with the OAI-PMH verbs:
23560 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
23561 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
23562 (license license:expat)))
23563
23564 (define-public r-argon2
23565 (package
23566 (name "r-argon2")
23567 (version "0.2-0")
23568 (source
23569 (origin
23570 (method url-fetch)
23571 (uri (cran-uri "argon2" version))
23572 (sha256
23573 (base32
23574 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
23575 (properties `((upstream-name . "argon2")))
23576 (build-system r-build-system)
23577 (home-page "https://github.com/wrathematics/argon2")
23578 (synopsis "Secure password hashing based on the argon2 algorithm")
23579 (description
23580 "This package provides utilities for secure password hashing via the
23581 argon2 algorithm.")
23582 (license license:bsd-2)))
23583
23584 (define-public r-getpass
23585 (package
23586 (name "r-getpass")
23587 (version "0.2-2")
23588 (source
23589 (origin
23590 (method url-fetch)
23591 (uri (cran-uri "getPass" version))
23592 (sha256
23593 (base32
23594 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
23595 (properties `((upstream-name . "getPass")))
23596 (build-system r-build-system)
23597 (propagated-inputs
23598 `(("r-rstudioapi" ,r-rstudioapi)))
23599 (home-page "https://github.com/wrathematics/getPass")
23600 (synopsis "Masked user input")
23601 (description
23602 "This package provides a micro-package for reading \"passwords\", i.e.
23603 reading user input with masking, so that the input is not displayed as it is
23604 typed. Currently, RStudio, the command line (every OS), and any platform
23605 where tcltk is present are supported.")
23606 (license license:bsd-2)))
23607
23608 (define-public r-remoter
23609 (package
23610 (name "r-remoter")
23611 (version "0.4-0")
23612 (source
23613 (origin
23614 (method url-fetch)
23615 (uri (cran-uri "remoter" version))
23616 (sha256
23617 (base32
23618 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
23619 (properties `((upstream-name . "remoter")))
23620 (build-system r-build-system)
23621 (propagated-inputs
23622 `(("r-argon2" ,r-argon2)
23623 ("r-getpass" ,r-getpass)
23624 ("r-pbdzmq" ,r-pbdzmq)
23625 ("r-png" ,r-png)))
23626 (home-page "https://github.com/RBigData/remoter")
23627 (synopsis "Control a remote R session from a local one")
23628 (description
23629 "This package provides a set of utilities for client/server computing
23630 with R, controlling a remote R session (the server) from a local one (the
23631 client).")
23632 (license license:bsd-2)))
23633
23634 (define-public r-asd
23635 (package
23636 (name "r-asd")
23637 (version "2.2")
23638 (source
23639 (origin
23640 (method url-fetch)
23641 (uri (cran-uri "asd" version))
23642 (sha256
23643 (base32
23644 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
23645 (properties `((upstream-name . "asd")))
23646 (build-system r-build-system)
23647 (propagated-inputs
23648 `(("r-mvtnorm" ,r-mvtnorm)))
23649 (home-page "https://cran.r-project.org/web/packages/asd")
23650 (synopsis "Simulations for Adaptive Seamless Designs")
23651 (description
23652 "This package provdes means to run simulations for adaptive seamless
23653 designs with and without early outcomes for treatment selection and
23654 subpopulation type designs.")
23655 (license license:gpl3)))
23656
23657 (define-public r-nbconvertr
23658 (package
23659 (name "r-nbconvertr")
23660 (version "1.3.2")
23661 (source
23662 (origin
23663 (method url-fetch)
23664 (uri (cran-uri "nbconvertR" version))
23665 (sha256
23666 (base32
23667 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
23668 (properties `((upstream-name . "nbconvertR")))
23669 (build-system r-build-system)
23670 (inputs
23671 `(("jupyter" ,python-nbconvert)
23672 ("pandoc" ,pandoc)))
23673 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
23674 (synopsis "Vignette engine wrapping Jupyter notebooks")
23675 (description
23676 "This package calls the Jupyter script @code{nbconvert} to create
23677 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
23678 containing rich text, code, and its output. Code cells can be edited and
23679 evaluated interactively.")
23680 (license license:gpl3)))
23681
23682 (define-public r-bridgesampling
23683 (package
23684 (name "r-bridgesampling")
23685 (version "1.0-0")
23686 (source
23687 (origin
23688 (method url-fetch)
23689 (uri (cran-uri "bridgesampling" version))
23690 (sha256
23691 (base32
23692 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
23693 (properties
23694 `((upstream-name . "bridgesampling")))
23695 (build-system r-build-system)
23696 (propagated-inputs
23697 `(("r-brobdingnag" ,r-brobdingnag)
23698 ("r-coda" ,r-coda)
23699 ("r-matrix" ,r-matrix)
23700 ("r-mvtnorm" ,r-mvtnorm)
23701 ("r-scales" ,r-scales)
23702 ("r-stringr" ,r-stringr)))
23703 (native-inputs
23704 `(("r-knitr" ,r-knitr)))
23705 (home-page "https://github.com/quentingronau/bridgesampling")
23706 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
23707 (description
23708 "This package provides functions for estimating marginal likelihoods,
23709 Bayes factors, posterior model probabilities, and normalizing constants in
23710 general, via different versions of bridge sampling.")
23711 (license license:gpl2+)))
23712
23713 (define-public r-tea
23714 (package
23715 (name "r-tea")
23716 (version "1.1")
23717 (source
23718 (origin
23719 (method url-fetch)
23720 (uri (cran-uri "tea" version))
23721 (sha256
23722 (base32
23723 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
23724 (properties
23725 `((upstream-name . "tea")))
23726 (build-system r-build-system)
23727 (propagated-inputs
23728 `(("r-matrix" ,r-matrix)))
23729 (home-page "https://cran.r-project.org/web/packages/tea/")
23730 (synopsis "Threshold estimation approaches")
23731 (description
23732 "This package provides different approaches for selecting the threshold
23733 in generalized Pareto distributions. Most of them are based on minimizing the
23734 AMSE-criterion or at least by reducing the bias of the assumed GPD-model.
23735 Others are heuristically motivated by searching for stable sample paths, i.e.
23736 a nearly constant region of the tail index estimator with respect to k, which
23737 is the number of data in the tail. The third class is motivated by graphical
23738 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
23739 is also implemented here.")
23740 (license license:gpl3)))
23741
23742 (define-public r-awsmethods
23743 (package
23744 (name "r-awsmethods")
23745 (version "1.1-1")
23746 (source
23747 (origin
23748 (method url-fetch)
23749 (uri (cran-uri "awsMethods" version))
23750 (sha256
23751 (base32
23752 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
23753 (properties
23754 `((upstream-name . "awsMethods")))
23755 (build-system r-build-system)
23756 (home-page "http://www.wias-berlin.de/software/imaging/")
23757 (synopsis "Class and methods definitions")
23758 (description
23759 "This package defines the generic method @code{extract} and provides
23760 @code{openMP} support as needed in several packages like
23761 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
23762 (license license:gpl2+)))
23763
23764 (define-public r-aws
23765 (package
23766 (name "r-aws")
23767 (version "2.5-1")
23768 (source
23769 (origin
23770 (method url-fetch)
23771 (uri (cran-uri "aws" version))
23772 (sha256
23773 (base32
23774 "1fhm87iax6bkvd4vszvjbcqw3b2drs11rjxr7zf2w4sgc72svaz8"))))
23775 (properties
23776 `((upstream-name . "aws")))
23777 (build-system r-build-system)
23778 (propagated-inputs
23779 `(("r-awsmethods" ,r-awsmethods)
23780 ("r-gsl" ,r-gsl)))
23781 (native-inputs
23782 `(("gfortran" ,gfortran)))
23783 (home-page "https://cran.r-project.org/web/packages/aws/")
23784 (synopsis "Adaptive weights smoothing")
23785 (description
23786 "This package provides a collection of R-functions implementing adaptive
23787 smoothing procedures in 1D, 2D and 3D. This includes the
23788 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
23789 Confidence Intervals} (ICI), variational approaches, and a non-local means
23790 filter.")
23791 (license license:gpl2+)))
23792
23793 (define-public r-sgloptim
23794 (package
23795 (name "r-sgloptim")
23796 (version "1.3.8")
23797 (source
23798 (origin
23799 (method url-fetch)
23800 (uri (cran-uri "sglOptim" version))
23801 (sha256
23802 (base32
23803 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
23804 (properties
23805 `((upstream-name . "sglOptim")))
23806 (build-system r-build-system)
23807 (propagated-inputs
23808 `(("r-bh" ,r-bh)
23809 ("r-doparallel" ,r-doparallel)
23810 ("r-foreach" ,r-foreach)
23811 ("r-matrix" ,r-matrix)
23812 ("r-rcpp" ,r-rcpp)
23813 ("r-rcpparmadillo" ,r-rcpparmadillo)
23814 ("r-rcppprogress" ,r-rcppprogress)))
23815 (native-inputs
23816 `(("r-knitr" ,r-knitr)))
23817 (home-page "https://github.com/nielsrhansen/sglOptim")
23818 (synopsis "Generic sparse group Lasso solver")
23819 (description
23820 "This package provides a fast generic solver for sparse group lasso
23821 optimization problems. The loss (objective) function must be defined in a C++
23822 module. The optimization problem is solved using a coordinate gradient
23823 descent algorithm. Convergence of the algorithm is established and the
23824 algorithm is applicable to a broad class of loss functions. Use of parallel
23825 computing for cross validation and subsampling is supported through the
23826 @code{foreach} and @code{doParallel} packages.")
23827 (license license:gpl2+)))
23828
23829 (define-public r-grouped
23830 (package
23831 (name "r-grouped")
23832 (version "0.6-0")
23833 (source
23834 (origin
23835 (method url-fetch)
23836 (uri (cran-uri "grouped" version))
23837 (sha256
23838 (base32
23839 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
23840 (properties
23841 `((upstream-name . "grouped")))
23842 (build-system r-build-system)
23843 (propagated-inputs
23844 `(("r-mass" ,r-mass)))
23845 (home-page "https://cran.r-project.org/web/packages/grouped/")
23846 (synopsis "Regression analysis of grouped and coarse data")
23847 (description
23848 "This package provides regression models for grouped and coarse data,
23849 under the coarsened at random assumption.")
23850 (license license:gpl2+)))
23851
23852 (define-public r-stam
23853 (package
23854 (name "r-stam")
23855 (version "0.0-1")
23856 (source
23857 (origin
23858 (method url-fetch)
23859 (uri (cran-uri "stam" version))
23860 (sha256
23861 (base32
23862 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
23863 (properties
23864 `((upstream-name . "stam")))
23865 (build-system r-build-system)
23866 (propagated-inputs
23867 `(("r-np" ,r-np)
23868 ("r-sp" ,r-sp)))
23869 (home-page "https://cran.r-project.org/web/packages/stam")
23870 (synopsis "Spatio-temporal analysis and modelling")
23871 (description
23872 "This package provides various methods to conduct Spatio-Temporal
23873 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
23874 Inferred Spatio-Temporal Modelling.")
23875 (license license:gpl2+)))
23876
23877 (define-public r-dcv
23878 (package
23879 (name "r-dcv")
23880 (version "0.1.1")
23881 (source
23882 (origin
23883 (method url-fetch)
23884 (uri (cran-uri "dcv" version))
23885 (sha256
23886 (base32
23887 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
23888 (properties
23889 `((upstream-name . "dcv")))
23890 (build-system r-build-system)
23891 (propagated-inputs
23892 `(("r-lmtest" ,r-lmtest)))
23893 (home-page "https://cran.r-project.org/web/packages/dcv/")
23894 (synopsis "Conventional cross-validation statistics for climate-growth model")
23895 (description
23896 "This package performs several conventional cross-validation statistical
23897 methods for climate-growth model in the climate reconstruction from tree
23898 rings, including Sign Test statistic, Reduction of Error statistic, Product
23899 Mean Test, Durbin-Watson statistic etc.")
23900 (license license:gpl2)))
23901
23902 (define-public r-rcdd
23903 (package
23904 (name "r-rcdd")
23905 (version "1.2-2")
23906 (source
23907 (origin
23908 (method url-fetch)
23909 (uri (cran-uri "rcdd" version))
23910 (sha256
23911 (base32
23912 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
23913 (properties
23914 `((upstream-name . "rcdd")))
23915 (build-system r-build-system)
23916 (inputs
23917 `(("gmp" ,gmp)))
23918 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
23919 (synopsis "Computational geometry")
23920 (description
23921 "This package converts back and forth between two representations of a
23922 convex polytope: as solution of a set of linear equalities and inequalities
23923 and as convex hull of set of points and rays. Also does linear programming
23924 and redundant generator elimination. All functions can use exact
23925 infinite-precision rational arithmetic.")
23926 (license license:gpl2)))
23927
23928 (define-public r-rxnat
23929 (package
23930 (name "r-rxnat")
23931 (version "1.0.14")
23932 (source
23933 (origin
23934 (method url-fetch)
23935 (uri (cran-uri "Rxnat" version))
23936 (sha256
23937 (base32
23938 "00fl68pa0c2vy4xlny67pn41lzgm7b97wgg3dwm6z35izca62l11"))))
23939 (properties
23940 `((upstream-name . "Rxnat")))
23941 (build-system r-build-system)
23942 (propagated-inputs
23943 `(("r-dplyr" ,r-dplyr)
23944 ("r-httr" ,r-httr)
23945 ("r-rcurl" ,r-rcurl)
23946 ("r-tibble" ,r-tibble)))
23947 (native-inputs
23948 `(("r-knitr" ,r-knitr)))
23949 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
23950 (synopsis "Queries and extracts images from neuroimaging datasets")
23951 (description
23952 "This package allows communication with the Extensible Neuroimaging
23953 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
23954 download images.")
23955 (license license:gpl2)))
23956
23957 (define-public r-rserve
23958 (package
23959 (name "r-rserve")
23960 (version "1.8-6")
23961 (source
23962 (origin
23963 (method url-fetch)
23964 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
23965 version ".tar.gz"))
23966 (sha256
23967 (base32
23968 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
23969 (build-system r-build-system)
23970 (arguments
23971 `(#:phases
23972 (modify-phases %standard-phases
23973 (add-before 'install 'install-server-binary
23974 ;; Makevars tries to install to R's store directory.
23975 (lambda* (#:key outputs #:allow-other-keys)
23976 (let* ((out (assoc-ref outputs "out"))
23977 (bin (string-append out "/bin")))
23978 (substitute* "src/Makevars.in"
23979 (("\\$\\(R_HOME\\)") out))
23980 (mkdir-p bin)))))))
23981 (propagated-inputs
23982 `(("r-checkmate" ,r-checkmate)
23983 ("r-mime" ,r-mime)
23984 ("r-jsonlite" ,r-jsonlite)
23985 ("r-knitr" ,r-knitr)
23986 ("r-r6" ,r-r6)
23987 ("r-rcpp" ,r-rcpp)
23988 ("r-uuid" ,r-uuid)))
23989 (inputs
23990 `(("openssl" ,openssl)
23991 ("zlib" ,zlib)))
23992 (home-page "https://github.com/s-u/Rserve")
23993 (synopsis
23994 "Server providing access to R from many languages and systems")
23995 (description
23996 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
23997 binary requests to be sent to R. Every connection has a separate workspace
23998 and working directory. Client-side implementations are available for popular
23999 languages such as C/C++ and Java, allowing any application to use facilities
24000 of R without the need of linking to R code. Rserve supports remote
24001 connection, user authentication and file transfer. A simple R client is
24002 included in this package as well.")
24003 (license license:gpl2)))
24004
24005 (define-public r-gamm4
24006 (package
24007 (name "r-gamm4")
24008 (version "0.2-6")
24009 (source
24010 (origin
24011 (method url-fetch)
24012 (uri (cran-uri "gamm4" version))
24013 (sha256
24014 (base32
24015 "128c725y9s07c1m9cvd9hgi9hldrymcs5divd8pw7bdjh9jvdiap"))))
24016 (properties `((upstream-name . "gamm4")))
24017 (build-system r-build-system)
24018 (propagated-inputs
24019 `(("r-lme4" ,r-lme4)
24020 ("r-matrix" ,r-matrix)
24021 ("r-mgcv" ,r-mgcv)))
24022 (home-page "https://cran.r-project.org/web/packages/gamm4/")
24023 (synopsis "Generalized additive mixed models using mgcv and lme4")
24024 (description
24025 "Estimate generalized additive mixed models via a version of function
24026 @code{gamm} from the @code{mgcv} package, using the @code{lme4} packagefor
24027 estimation.")
24028 (license license:gpl2+)))
24029
24030 (define-public r-optimx
24031 (package
24032 (name "r-optimx")
24033 (version "2020-4.2")
24034 (source
24035 (origin
24036 (method url-fetch)
24037 (uri (cran-uri "optimx" version))
24038 (sha256
24039 (base32
24040 "00bi2sr2hr7x6cfwlsn7hz2r56lcyv9naa8vmfcgr1r269fc50b3"))))
24041 (properties `((upstream-name . "optimx")))
24042 (build-system r-build-system)
24043 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
24044 (native-inputs `(("r-knitr" ,r-knitr)))
24045 (home-page "https://cran.r-project.org/web/packages/optimx/")
24046 (synopsis "Expanded replacement and extension of the optim function")
24047 (description
24048 "This package provides a replacement and extension of the @code{optim}
24049 function to call to several function minimization codes in R in a single
24050 statement. These methods handle smooth, possibly box constrained functions of
24051 several or many parameters. Note that the function @code{optimr} was prepared
24052 to simplify the incorporation of minimization codes going forward. This
24053 package also implements some utility codes and some extra solvers, including
24054 safeguarded Newton methods. Many methods previously separate are now included
24055 here.")
24056 (license license:gpl2)))
24057
24058 (define-public r-projpred
24059 (package
24060 (name "r-projpred")
24061 (version "2.0.2")
24062 (source
24063 (origin
24064 (method url-fetch)
24065 (uri (cran-uri "projpred" version))
24066 (sha256
24067 (base32
24068 "0nx514mrfh3gv854pr71w5x3zgdnn0kinf5nh7z90q3h7ysry2mg"))))
24069 (properties `((upstream-name . "projpred")))
24070 (build-system r-build-system)
24071 (propagated-inputs
24072 `(("r-dplyr" ,r-dplyr)
24073 ("r-gamm4" ,r-gamm4)
24074 ("r-ggplot2" ,r-ggplot2)
24075 ("r-lme4" ,r-lme4)
24076 ("r-loo" ,r-loo)
24077 ("r-magrittr" ,r-magrittr)
24078 ("r-mass" ,r-mass)
24079 ("r-mgcv" ,r-mgcv)
24080 ("r-optimx" ,r-optimx)
24081 ("r-rcpp" ,r-rcpp)
24082 ("r-rcpparmadillo" ,r-rcpparmadillo)
24083 ("r-rngtools" ,r-rngtools)
24084 ("r-rstantools" ,r-rstantools)
24085 ("r-tidyverse" ,r-tidyverse)))
24086 (native-inputs `(("r-knitr" ,r-knitr)))
24087 (home-page "https://mc-stan.org/projpred/")
24088 (synopsis "Projection predictive feature selection")
24089 (description
24090 "This package performs projection predictive feature selection for
24091 generalized linear models and generalized linear and additive multilevel
24092 models. The package is compatible with the @code{rstanarm} and @code{brms}
24093 packages, but other reference models can also be used. See the package
24094 vignette for more information and examples.")
24095 (license license:gpl3)))
24096
24097 (define-public r-brms
24098 (package
24099 (name "r-brms")
24100 (version "2.15.0")
24101 (source
24102 (origin
24103 (method url-fetch)
24104 (uri (cran-uri "brms" version))
24105 (sha256
24106 (base32
24107 "0byc3fyvf9qbvvgwf55ih5d4br1nnxlbaidq9fvr11bmv38h25y1"))))
24108 (properties `((upstream-name . "brms")))
24109 (build-system r-build-system)
24110 (propagated-inputs
24111 `(("r-abind" ,r-abind)
24112 ("r-backports" ,r-backports)
24113 ("r-bayesplot" ,r-bayesplot)
24114 ("r-bridgesampling" ,r-bridgesampling)
24115 ("r-coda" ,r-coda)
24116 ("r-future" ,r-future)
24117 ("r-ggplot2" ,r-ggplot2)
24118 ("r-glue" ,r-glue)
24119 ("r-loo" ,r-loo)
24120 ("r-matrix" ,r-matrix)
24121 ("r-matrixstats" ,r-matrixstats)
24122 ("r-mgcv" ,r-mgcv)
24123 ("r-nleqslv" ,r-nleqslv)
24124 ("r-nlme" ,r-nlme)
24125 ("r-projpred" ,r-projpred)
24126 ("r-rcpp" ,r-rcpp)
24127 ("r-rstan" ,r-rstan)
24128 ("r-rstantools" ,r-rstantools)
24129 ("r-shinystan" ,r-shinystan)))
24130 (native-inputs `(("r-knitr" ,r-knitr)))
24131 (home-page
24132 "https://github.com/paul-buerkner/brms")
24133 (synopsis
24134 "Bayesian Regression Models using 'Stan'")
24135 (description
24136 "Fit Bayesian generalized (non-)linear multivariate multilevel models
24137 using 'Stan' for full Bayesian inference. A wide range of distributions and
24138 link functions are supported, allowing users to fit -- among others -- linear,
24139 robust linear, count data, survival, response times, ordinal, zero-inflated,
24140 hurdle, and even self-defined mixture models all in a multilevel context.
24141 Further modeling options include non-linear and smooth terms, auto-correlation
24142 structures, censored data, meta-analytic standard errors, and quite a few
24143 more. In addition, all parameters of the response distribution can be
24144 predicted in order to perform distributional regression. Prior specifications
24145 are flexible and explicitly encourage users to apply prior distributions that
24146 actually reflect their beliefs. Model fit can easily be assessed and compared
24147 with posterior predictive checks and leave-one-out cross-validation.")
24148 (license license:gpl2)))
24149
24150 (define-public r-mstate
24151 (package
24152 (name "r-mstate")
24153 (version "0.3.1")
24154 (source
24155 (origin
24156 (method url-fetch)
24157 (uri (cran-uri "mstate" version))
24158 (sha256
24159 (base32
24160 "11i3p7fph8nbnfis1m7rdrq32qryaajv2wrkxk1x6k17zkh4rq6i"))))
24161 (properties `((upstream-name . "mstate")))
24162 (build-system r-build-system)
24163 (propagated-inputs
24164 `(("r-data-table" ,r-data-table)
24165 ("r-lattice" ,r-lattice)
24166 ("r-magrittr" ,r-magrittr)
24167 ("r-rcolorbrewer" ,r-rcolorbrewer)
24168 ("r-rlang" ,r-rlang)
24169 ("r-survival" ,r-survival)
24170 ("r-viridis" ,r-viridis)))
24171 (native-inputs
24172 `(("r-knitr" ,r-knitr)))
24173 (home-page
24174 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
24175 (synopsis
24176 "Data Preparation, Estimation and Prediction in Multi-State Models")
24177 (description
24178 "Contains functions for data preparation, descriptives, hazard estimation
24179 and prediction with Aalen-Johansen or simulation in competing risks and
24180 multi-state models.")
24181 (license license:gpl2+)))
24182
24183 (define-public r-scatterpie
24184 (package
24185 (name "r-scatterpie")
24186 (version "0.1.5")
24187 (source
24188 (origin
24189 (method url-fetch)
24190 (uri (cran-uri "scatterpie" version))
24191 (sha256
24192 (base32
24193 "0h48l0699lpfagv09f53yismir84945m56qwzk52lc7wxyvkfcp1"))))
24194 (properties `((upstream-name . "scatterpie")))
24195 (build-system r-build-system)
24196 (propagated-inputs
24197 `(("r-ggforce" ,r-ggforce)
24198 ("r-ggplot2" ,r-ggplot2)
24199 ("r-rlang" ,r-rlang)
24200 ("r-rvcheck" ,r-rvcheck)
24201 ("r-tidyr" ,r-tidyr)))
24202 (native-inputs
24203 `(("r-knitr" ,r-knitr)))
24204 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
24205 (synopsis "Scatter pie plot")
24206 (description
24207 "This package creates scatterpie plots, especially useful for plotting
24208 pies on a map.")
24209 (license license:artistic2.0)))
24210
24211 (define-public r-scrypt
24212 (package
24213 (name "r-scrypt")
24214 (version "0.1.3")
24215 (source
24216 (origin
24217 (method url-fetch)
24218 (uri (cran-uri "scrypt" version))
24219 (sha256
24220 (base32
24221 "14iblgbp9v2by8fjbrpsd59iknp5babcz7j3yv1yxxzcwyb6wrrm"))))
24222 (properties `((upstream-name . "scrypt")))
24223 (build-system r-build-system)
24224 (propagated-inputs
24225 `(("r-rcpp" ,r-rcpp)))
24226 (home-page "https://github.com/rstudio/rscrypt")
24227 (synopsis "Key derivation functions for R based on Scrypt")
24228 (description
24229 "This package provides functions for working with the scrypt key
24230 derivation functions. Scrypt is a password-based key derivation function
24231 created by Colin Percival. The algorithm was specifically designed to make it
24232 costly to perform large-scale custom hardware attacks by requiring large
24233 amounts of memory.")
24234 (license license:bsd-2)))
24235
24236 (define-public r-boruta
24237 (package
24238 (name "r-boruta")
24239 (version "7.0.0")
24240 (source
24241 (origin
24242 (method url-fetch)
24243 (uri (cran-uri "Boruta" version))
24244 (sha256
24245 (base32
24246 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
24247 (properties `((upstream-name . "Boruta")))
24248 (build-system r-build-system)
24249 (propagated-inputs `(("r-ranger" ,r-ranger)))
24250 (home-page "https://gitlab.com/mbq/Boruta/")
24251 (synopsis "Wrapper algorithm for all relevant feature selection")
24252 (description
24253 "This package provides an all relevant feature selection wrapper
24254 algorithm. It finds relevant features by comparing original attributes'
24255 importance with importance achievable at random, estimated using their
24256 permuted copies (shadows).")
24257 (license license:gpl2+)))
24258
24259 (define-public r-directlabels
24260 (package
24261 (name "r-directlabels")
24262 (version "2021.1.13")
24263 (source
24264 (origin
24265 (method url-fetch)
24266 (uri (cran-uri "directlabels" version))
24267 (sha256
24268 (base32
24269 "0415kh9k2qzdwi8zb32fh2icl5wf5335kyj11cyfdmfxji39zv2w"))))
24270 (build-system r-build-system)
24271 (propagated-inputs
24272 `(("r-quadprog" ,r-quadprog)))
24273 (native-inputs
24274 `(("r-knitr" ,r-knitr)))
24275 (home-page "http://directlabels.r-forge.r-project.org/")
24276 (synopsis "Direct labels for multicolor plots")
24277 (description
24278 "This package provides an extensible framework for automatically placing
24279 direct labels onto multicolor plots. Label positions are described using
24280 positioning methods that can be re-used across several different plots. There
24281 are heuristics for examining @code{trellis} and @code{ggplot} objects and
24282 inferring an appropriate positioning method.")
24283 (license license:gpl3)))
24284
24285 (define-public r-lsd
24286 (package
24287 (name "r-lsd")
24288 (version "4.1-0")
24289 (source
24290 (origin
24291 (method url-fetch)
24292 (uri (cran-uri "LSD" version))
24293 (sha256
24294 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
24295 (properties `((upstream-name . "LSD")))
24296 (build-system r-build-system)
24297 (home-page "https://cran.r-project.org/web/packages/LSD/")
24298 (synopsis "Lots of superior depictions tool creates colorful plots")
24299 (description
24300 "This package creates lots of colorful plots in a multitude of variations.
24301 Try a demo of the LSD by running @code{demotour()}.")
24302 ;; Either version
24303 (license (list license:gpl2 license:gpl3))))
24304
24305 (define-public r-phylogram
24306 (package
24307 (name "r-phylogram")
24308 (version "2.1.0")
24309 (source
24310 (origin
24311 (method url-fetch)
24312 (uri (cran-uri "phylogram" version))
24313 (sha256
24314 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
24315 (properties `((upstream-name . "phylogram")))
24316 (build-system r-build-system)
24317 (propagated-inputs `(("r-ape" ,r-ape)))
24318 (home-page "https://github.com/ropensci/phylogram/")
24319 (synopsis "Dendrograms for evolutionary analysis")
24320 (description
24321 "The @code{r-phylogram} package is a tool for for developing phylogenetic
24322 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
24323 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
24324 as well as several tools for command-line tree manipulation and import/export
24325 via Newick parenthetic text. This improves accessibility to the comprehensive
24326 range of object-specific analytical and tree-visualization functions found
24327 across a wide array of bioinformatic R packages.")
24328 (license license:gpl3)))
24329
24330 (define-public r-kmer
24331 (package
24332 (name "r-kmer")
24333 (version "1.1.2")
24334 (source
24335 (origin
24336 (method url-fetch)
24337 (uri (cran-uri "kmer" version))
24338 (sha256
24339 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
24340 (properties `((upstream-name . "kmer")))
24341 (build-system r-build-system)
24342 (propagated-inputs
24343 `(("r-openssl" ,r-openssl)
24344 ("r-phylogram" ,r-phylogram)
24345 ("r-rcpp" ,r-rcpp)))
24346 (home-page "https://github.com/shaunpwilkinson/kmer/")
24347 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
24348 (description
24349 "@code{r-kmer} is an R package for rapidly computing distance matrices
24350 and clustering large sequence datasets using fast alignment-free k-mer
24351 counting and recursive k-means partitioning.")
24352 (license license:gpl3)))
24353
24354 (define-public r-hardhat
24355 (package
24356 (name "r-hardhat")
24357 (version "0.1.5")
24358 (source
24359 (origin
24360 (method url-fetch)
24361 (uri (cran-uri "hardhat" version))
24362 (sha256
24363 (base32
24364 "1b7f9i9fy39j9n03g40vd6nzgq9fgq914xg3svf84najlknvjzly"))))
24365 (properties `((upstream-name . "hardhat")))
24366 (build-system r-build-system)
24367 (propagated-inputs
24368 `(("r-glue" ,r-glue)
24369 ("r-rlang" ,r-rlang)
24370 ("r-tibble" ,r-tibble)
24371 ("r-vctrs" ,r-vctrs)))
24372 (native-inputs
24373 `(("r-knitr" ,r-knitr)))
24374 (home-page "https://github.com/tidymodels/hardhat")
24375 (synopsis "Construct modeling packages")
24376 (description
24377 "Building modeling packages is hard. A large amount of effort generally
24378 goes into providing an implementation for a new method that is efficient,
24379 fast, and correct, but often less emphasis is put on the user interface. A
24380 good interface requires specialized knowledge about S3 methods and formulas,
24381 which the average package developer might not have. The goal of
24382 @code{hardhat} is to reduce the burden around building new modeling packages
24383 by providing functionality for preprocessing, predicting, and validating
24384 input.")
24385 (license license:expat)))
24386
24387 (define-public r-lightgbm
24388 (package
24389 (name "r-lightgbm")
24390 (version "3.1.1")
24391 (source
24392 (origin
24393 (method url-fetch)
24394 (uri (cran-uri "lightgbm" version))
24395 (sha256
24396 (base32
24397 "1pwsh6j9ksahh58b15j5ij56bsc6syy3z4k4a5zhy5n7829rz555"))))
24398 (properties `((upstream-name . "lightgbm")))
24399 (build-system r-build-system)
24400 (propagated-inputs
24401 `(("r-data-table" ,r-data-table)
24402 ("r-jsonlite" ,r-jsonlite)
24403 ("r-matrix" ,r-matrix)
24404 ("r-r6" ,r-r6)))
24405 (home-page "https://github.com/Microsoft/LightGBM")
24406 (synopsis "Light gradient boosting machine")
24407 (description
24408 "Tree based algorithms can be improved by introducing boosting
24409 frameworks. LightGBM is one such framework, based on Ke, Guolin et
24410 al. (2017). This package offers an R interface to work with it. It is
24411 designed to be distributed and efficient with the following goals:
24412
24413 @enumerate
24414 @item Faster training speed and higher efficiency;
24415 @item lower memory usage;
24416 @item better accuracy;
24417 @item parallel learning supported; and
24418 @item capable of handling large-scale data.
24419 @end enumerate
24420 ")
24421 (license license:expat)))
24422
24423 (define-public r-shapforxgboost
24424 (package
24425 (name "r-shapforxgboost")
24426 (version "0.1.0")
24427 (source
24428 (origin
24429 (method url-fetch)
24430 (uri (cran-uri "SHAPforxgboost" version))
24431 (sha256
24432 (base32
24433 "0jgyss9bawl7sf4dwa75sn7ld3mvrrr0z2074lbkq3f5qb9gwsly"))))
24434 (properties
24435 `((upstream-name . "SHAPforxgboost")))
24436 (build-system r-build-system)
24437 (propagated-inputs
24438 `(("r-bbmisc" ,r-bbmisc)
24439 ("r-data-table" ,r-data-table)
24440 ("r-ggextra" ,r-ggextra)
24441 ("r-ggforce" ,r-ggforce)
24442 ("r-ggplot2" ,r-ggplot2)
24443 ("r-ggpubr" ,r-ggpubr)
24444 ("r-lightgbm" ,r-lightgbm)
24445 ("r-rcolorbrewer" ,r-rcolorbrewer)
24446 ("r-xgboost" ,r-xgboost)))
24447 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
24448 (synopsis "SHAP Plots for XGBoost")
24449 (description
24450 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
24451 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
24452 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
24453 and force plot. It relies on the @code{XGBoost} package to produce SHAP
24454 values.")
24455 (license license:expat)))
24456
24457 (define-public r-rismed
24458 (package
24459 (name "r-rismed")
24460 (version "2.2")
24461 (source
24462 (origin
24463 (method url-fetch)
24464 (uri (cran-uri "RISmed" version))
24465 (sha256
24466 (base32
24467 "0nwixhngi4r2f73362salivsmsf7l52bm13jqvhdq8mfiigm80vd"))))
24468 (properties `((upstream-name . "RISmed")))
24469 (build-system r-build-system)
24470 (home-page "https://cran.r-project.org/web/packages/RISmed")
24471 (synopsis "Download content from NCBI databases")
24472 (description
24473 "This package provides a set of tools to extract bibliographic
24474 content from the National Center for Biotechnology Information (NCBI)
24475 databases, including PubMed. The name RISmed is a portmanteau of
24476 RIS (for Research Information Systems, a common tag format for
24477 bibliographic data) and PubMed.")
24478 (license license:gpl2+)))
24479
24480 (define-public r-semver
24481 (package
24482 (name "r-semver")
24483 (version "0.2.0")
24484 (source
24485 (origin
24486 (method url-fetch)
24487 (uri (cran-uri "semver" version))
24488 (sha256
24489 (base32
24490 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
24491 (properties `((upstream-name . "semver")))
24492 (build-system r-build-system)
24493 (propagated-inputs
24494 `(("r-assertthat" ,r-assertthat)
24495 ("r-rcpp" ,r-rcpp)))
24496 (native-inputs `(("r-knitr" ,r-knitr)))
24497 (home-page "https://github.com/johndharrison/semver")
24498 (synopsis "Parser for Semantic Versioning 2.0.0")
24499 (description
24500 "This package provides tools and functions for parsing, rendering and
24501 operating on semantic version strings. Semantic versioning is a simple set of
24502 rules and requirements that dictate how version numbers are assigned and
24503 incremented as outlined at @url{http://semver.org}.")
24504 (license license:expat)))
24505
24506 (define-public r-binman
24507 (package
24508 (name "r-binman")
24509 (version "0.1.2")
24510 (source
24511 (origin
24512 (method url-fetch)
24513 (uri (cran-uri "binman" version))
24514 (sha256
24515 (base32
24516 "00l7m98h41r67gf0qxqis3vx63j7wylnk9vlgcyk41szkrz8ikkc"))))
24517 (properties `((upstream-name . "binman")))
24518 (build-system r-build-system)
24519 (propagated-inputs
24520 `(("r-assertthat" ,r-assertthat)
24521 ("r-httr" ,r-httr)
24522 ("r-jsonlite" ,r-jsonlite)
24523 ("r-rappdirs" ,r-rappdirs)
24524 ("r-semver" ,r-semver)
24525 ("r-xml2" ,r-xml2)
24526 ("r-yaml" ,r-yaml)))
24527 (native-inputs `(("r-knitr" ,r-knitr)))
24528 (home-page "https://github.com/ropensci/binman")
24529 (synopsis "Binary download manager")
24530 (description
24531 "This package provides tools and functions for managing the download of
24532 binary files. Binary repositories are defined in the YAML format. Defining
24533 new pre-download, download and post-download templates allow additional
24534 repositories to be added.")
24535 (license license:expat)))
24536
24537 (define-public r-wdman
24538 (package
24539 (name "r-wdman")
24540 (version "0.2.5")
24541 (source
24542 (origin
24543 (method url-fetch)
24544 (uri (cran-uri "wdman" version))
24545 (sha256
24546 (base32
24547 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
24548 (properties `((upstream-name . "wdman")))
24549 (build-system r-build-system)
24550 (propagated-inputs
24551 `(("r-assertthat" ,r-assertthat)
24552 ("r-binman" ,r-binman)
24553 ("r-processx" ,r-processx)
24554 ("r-semver" ,r-semver)
24555 ("r-yaml" ,r-yaml)))
24556 (native-inputs `(("r-knitr" ,r-knitr)))
24557 (home-page "https://docs.ropensci.org/wdman/")
24558 (synopsis "Webdriver/Selenium binary manager")
24559 (description
24560 "There are a number of binary files associated with the
24561 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
24562 @url{https://sites.google.com/a/chromium.org/chromedriver/},
24563 @url{https://github.com/mozilla/geckodriver},
24564 @url{http://phantomjs.org/download.html}, and
24565 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
24566 more information). This package provides functions to download these binaries
24567 and to manage processes involving them.")
24568 (license license:expat)))
24569
24570 (define-public r-rselenium
24571 (package
24572 (name "r-rselenium")
24573 (version "1.7.7")
24574 (source
24575 (origin
24576 (method url-fetch)
24577 (uri (cran-uri "RSelenium" version))
24578 (sha256
24579 (base32
24580 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
24581 (properties `((upstream-name . "RSelenium")))
24582 (build-system r-build-system)
24583 (propagated-inputs
24584 `(("r-binman" ,r-binman)
24585 ("r-catools" ,r-catools)
24586 ("r-httr" ,r-httr)
24587 ("r-openssl" ,r-openssl)
24588 ("r-wdman" ,r-wdman)
24589 ("r-xml" ,r-xml)))
24590 (native-inputs `(("r-knitr" ,r-knitr)))
24591 (home-page "https://docs.ropensci.org/RSelenium/")
24592 (synopsis "R bindings for Selenium WebDriver")
24593 (description
24594 "This package provides a set of R bindings for the Selenium 2.0
24595 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
24596 information) using the @code{JsonWireProtocol} (see
24597 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
24598 information). Selenium 2.0 WebDriver allows driving a web browser natively as
24599 a user would either locally or on a remote machine using the Selenium server
24600 it marks a leap forward in terms of web browser automation. Selenium
24601 automates web browsers (commonly referred to as browsers). Using RSelenium
24602 you can automate browsers locally or remotely.")
24603 (license license:agpl3+)))
24604
24605 (define-public r-conquer
24606 (package
24607 (name "r-conquer")
24608 (version "1.0.2")
24609 (source
24610 (origin
24611 (method url-fetch)
24612 (uri (cran-uri "conquer" version))
24613 (sha256
24614 (base32
24615 "1zvlsrbmrij011mcdi3qngs1al2lhrdiyknxnk0w1zhzrra62bsl"))))
24616 (properties `((upstream-name . "conquer")))
24617 (build-system r-build-system)
24618 (propagated-inputs
24619 `(("r-matrix" ,r-matrix)
24620 ("r-matrixstats" ,r-matrixstats)
24621 ("r-rcpp" ,r-rcpp)
24622 ("r-rcpparmadillo" ,r-rcpparmadillo)))
24623 (home-page "https://github.com/XiaoouPan/conquer")
24624 (synopsis "Convolution-type smoothed quantile regression")
24625 (description
24626 "This package provides fast and accurate convolution-type smoothed
24627 quantile regression, implemented using Barzilai-Borwein gradient descent with
24628 a Huber regression warm start. Confidence intervals for regression
24629 coefficients are constructed using multiplier bootstrap.")
24630 (license license:gpl3)))
24631
24632 (define-public r-fastshap
24633 (package
24634 (name "r-fastshap")
24635 (version "0.0.5")
24636 (source
24637 (origin
24638 (method url-fetch)
24639 (uri (cran-uri "fastshap" version))
24640 (sha256
24641 (base32
24642 "08f25ib5mry6h8lvj0g3clc9kfl5g2wdd8x8bw455wwmbcm6x5vg"))))
24643 (properties `((upstream-name . "fastshap")))
24644 (build-system r-build-system)
24645 (propagated-inputs
24646 `(("r-abind" ,r-abind)
24647 ("r-ggplot2" ,r-ggplot2)
24648 ("r-gridextra" ,r-gridextra)
24649 ("r-matrixstats" ,r-matrixstats)
24650 ("r-plyr" ,r-plyr)
24651 ("r-rcpp" ,r-rcpp)
24652 ("r-rcpparmadillo" ,r-rcpparmadillo)
24653 ("r-tibble" ,r-tibble)))
24654 (home-page "https://github.com/bgreenwell/fastshap")
24655 (synopsis "Fast approximate Shapley values")
24656 (description
24657 "This package computes fast (relative to other implementations)
24658 approximate Shapley values for any supervised learning model. Shapley values
24659 help to explain the predictions from any black box model using ideas from game
24660 theory; see @url{Strumbel and Kononenko (2014),
24661 doi.org/10.1007/s10115-013-0679-x} for details.")
24662 (license license:gpl2+)))
24663
24664 (define-public r-metrics
24665 (package
24666 (name "r-metrics")
24667 (version "0.1.4")
24668 (source
24669 (origin
24670 (method url-fetch)
24671 (uri (cran-uri "Metrics" version))
24672 (sha256
24673 (base32
24674 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
24675 (properties `((upstream-name . "Metrics")))
24676 (build-system r-build-system)
24677 (home-page "https://github.com/mfrasco/Metrics")
24678 (synopsis "Evaluation metrics for machine learning")
24679 (description
24680 "This package provides an implementation of evaluation metrics in R that
24681 are commonly used in supervised machine learning. It implements metrics for
24682 regression, time series, binary classification, classification, and
24683 information retrieval problems. It has zero dependencies and a consistent,
24684 simple interface for all functions.")
24685 (license license:bsd-3)))
24686
24687 (define-public r-iml
24688 (package
24689 (name "r-iml")
24690 (version "0.10.0")
24691 (source
24692 (origin
24693 (method url-fetch)
24694 (uri (cran-uri "iml" version))
24695 (sha256
24696 (base32
24697 "0xm3q42qahq798ilgg050df0mahhbdfd3fx3i7cpx606h38si0x7"))))
24698 (properties `((upstream-name . "iml")))
24699 (build-system r-build-system)
24700 (propagated-inputs
24701 `(("r-checkmate" ,r-checkmate)
24702 ("r-data-table" ,r-data-table)
24703 ("r-formula" ,r-formula)
24704 ("r-future" ,r-future)
24705 ("r-future-apply" ,r-future-apply)
24706 ("r-ggplot2" ,r-ggplot2)
24707 ("r-gridextra" ,r-gridextra)
24708 ("r-metrics" ,r-metrics)
24709 ("r-prediction" ,r-prediction)
24710 ("r-r6" ,r-r6)))
24711 (native-inputs `(("r-knitr" ,r-knitr)))
24712 (home-page "https://github.com/christophM/iml")
24713 (synopsis "Interpretable machine learning")
24714 (description
24715 "This package provides interpretability methods to analyze the behavior
24716 and predictions of any machine learning model. Implemented methods are:
24717
24718 @itemize
24719 @item Feature importance described by Fisher et al. (2018),
24720 @item accumulated local effects plots described by Apley (2018),
24721 @item partial dependence plots described by Friedman (2001),
24722 @item individual conditional expectation ('ice') plots described by Goldstein
24723 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
24724 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
24725 @item the Shapley Value described by Strumbelj et. al (2014)
24726 @url{https://doi.org/10.1007/s10115-013-0679-x},
24727 @item feature interactions described by Friedman et. al
24728 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
24729 @end itemize
24730 ")
24731 (license license:expat)))
24732
24733 (define-public r-goftest
24734 (package
24735 (name "r-goftest")
24736 (version "1.2-2")
24737 (source
24738 (origin
24739 (method url-fetch)
24740 (uri (cran-uri "goftest" version))
24741 (sha256
24742 (base32
24743 "0ivnkqhv5xgiv05dm648nngacymd8x8g0fyppv3bc0mhcqk9k5z4"))))
24744 (properties `((upstream-name . "goftest")))
24745 (build-system r-build-system)
24746 (home-page "https://github.com/baddstats/goftest")
24747 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
24748 (description
24749 "This package provides Cramer-Von Mises and Anderson-Darling tests of
24750 goodness-of-fit for continuous univariate distributions, using efficient
24751 algorithms.")
24752 (license license:gpl2+)))
24753
24754 (define-public r-tensor
24755 (package
24756 (name "r-tensor")
24757 (version "1.5")
24758 (source
24759 (origin
24760 (method url-fetch)
24761 (uri (cran-uri "tensor" version))
24762 (sha256
24763 (base32
24764 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
24765 (properties `((upstream-name . "tensor")))
24766 (build-system r-build-system)
24767 (home-page "https://cran.r-project.org/web/packages/tensor/")
24768 (synopsis "Tensor product of arrays")
24769 (description
24770 "The tensor product of two arrays is notionally an outer product of the
24771 arrays collapsed in specific extents by summing along the appropriate
24772 diagonals. This package allows you to compute the tensor product of arrays.")
24773 (license license:gpl2+)))
24774
24775 (define-public r-spatstat-utils
24776 (package
24777 (name "r-spatstat-utils")
24778 (version "2.0-0")
24779 (source
24780 (origin
24781 (method url-fetch)
24782 (uri (cran-uri "spatstat.utils" version))
24783 (sha256
24784 (base32
24785 "1li0vksxpkvgyx3j2wi40kj5687vwakkfdix6icm6g01a0lb2m5d"))))
24786 (properties
24787 `((upstream-name . "spatstat.utils")))
24788 (build-system r-build-system)
24789 (home-page "http://www.spatstat.org")
24790 (synopsis "Utility functions for spatstat")
24791 (description
24792 "This package contains utility functions for the @code{spatstat} package
24793 which may also be useful for other purposes.")
24794 (license license:gpl2+)))
24795
24796 (define-public r-spatstat-sparse
24797 (package
24798 (name "r-spatstat-sparse")
24799 (version "1.2-1")
24800 (source
24801 (origin
24802 (method url-fetch)
24803 (uri (cran-uri "spatstat.sparse" version))
24804 (sha256
24805 (base32
24806 "1w312q7gxzchigxxzk9akscdsz66j5085lgjryamschjgp4f8yk2"))))
24807 (properties
24808 `((upstream-name . "spatstat.sparse")))
24809 (build-system r-build-system)
24810 (propagated-inputs
24811 `(("r-abind" ,r-abind)
24812 ("r-matrix" ,r-matrix)
24813 ("r-spatstat-utils" ,r-spatstat-utils)
24814 ("r-tensor" ,r-tensor)))
24815 (home-page "http://spatstat.org/")
24816 (synopsis "Sparse three-dimensional arrays and linear algebra utilities")
24817 (description
24818 "This package defines sparse three-dimensional arrays and supports
24819 standard operations on them. The package also includes utility functions for
24820 matrix calculations that are common in statistics, such as quadratic forms.")
24821 (license license:gpl2+)))
24822
24823 (define-public r-spatstat-data
24824 (package
24825 (name "r-spatstat-data")
24826 (version "2.0-0")
24827 (source
24828 (origin
24829 (method url-fetch)
24830 (uri (cran-uri "spatstat.data" version))
24831 (sha256
24832 (base32
24833 "1z1jb1yzb7qhfg55dhzcrdvn5x8hpg9xif0hpnapddbmhxd1hbb7"))))
24834 (properties `((upstream-name . "spatstat.data")))
24835 (build-system r-build-system)
24836 (propagated-inputs
24837 `(("r-matrix" ,r-matrix)
24838 ("r-spatstat-utils" ,r-spatstat-utils)))
24839 (home-page "http://www.spatstat.org")
24840 (synopsis "Datasets for spatstat")
24841 (description
24842 "This package contains all the datasets for the @code{spatstat}
24843 package.")
24844 (license license:gpl2+)))
24845
24846 (define-public r-spatstat-geom
24847 (package
24848 (name "r-spatstat-geom")
24849 (version "1.65-5")
24850 (source
24851 (origin
24852 (method url-fetch)
24853 (uri (cran-uri "spatstat.geom" version))
24854 (sha256
24855 (base32
24856 "0g0m5b3nbzpyblbp77n56k6aiw3fn23jkk72h9fhqlg1ydn2fzpk"))))
24857 (properties `((upstream-name . "spatstat.geom")))
24858 (build-system r-build-system)
24859 (propagated-inputs
24860 `(("r-deldir" ,r-deldir)
24861 ("r-polyclip" ,r-polyclip)
24862 ("r-spatstat-data" ,r-spatstat-data)
24863 ("r-spatstat-sparse" ,r-spatstat-sparse)
24864 ("r-spatstat-utils" ,r-spatstat-utils)))
24865 (home-page "http://spatstat.org/")
24866 (synopsis "Geometrical functionality of the spatstat package")
24867 (description
24868 "This is a subset of the original spatstat package, containing the
24869 user-level code from spatstat which performs geometrical operations, except
24870 for the geometry of linear networks.")
24871 (license license:gpl2+)))
24872
24873 (define-public r-spatstat-core
24874 (package
24875 (name "r-spatstat-core")
24876 (version "1.65-5")
24877 (source
24878 (origin
24879 (method url-fetch)
24880 (uri (cran-uri "spatstat.core" version))
24881 (sha256
24882 (base32
24883 "0wq61sd53hwyk3fzjdc2prrr66n67zbwb5i3ii7kvyhfwx0xikm3"))))
24884 (properties `((upstream-name . "spatstat.core")))
24885 (build-system r-build-system)
24886 (propagated-inputs
24887 `(("r-abind" ,r-abind)
24888 ("r-goftest" ,r-goftest)
24889 ("r-matrix" ,r-matrix)
24890 ("r-mgcv" ,r-mgcv)
24891 ("r-nlme" ,r-nlme)
24892 ("r-rpart" ,r-rpart)
24893 ("r-spatstat-data" ,r-spatstat-data)
24894 ("r-spatstat-geom" ,r-spatstat-geom)
24895 ("r-spatstat-sparse" ,r-spatstat-sparse)
24896 ("r-spatstat-utils" ,r-spatstat-utils)
24897 ("r-tensor" ,r-tensor)))
24898 (home-page "http://spatstat.org/")
24899 (synopsis "Core functionality of the spatstat package")
24900 (description
24901 "This is a subset of the original spatstat package, containing all of the
24902 user-level code from spatstat, except for the code for linear networks.")
24903 (license license:gpl2+)))
24904
24905 (define-public r-spatstat-linnet
24906 (package
24907 (name "r-spatstat-linnet")
24908 (version "1.65-3")
24909 (source
24910 (origin
24911 (method url-fetch)
24912 (uri (cran-uri "spatstat.linnet" version))
24913 (sha256
24914 (base32
24915 "1y088r26h5yv006ydgcb4iwpvnc7ql857gky0hbi7xqqciqr8wdv"))))
24916 (properties
24917 `((upstream-name . "spatstat.linnet")))
24918 (build-system r-build-system)
24919 (propagated-inputs
24920 `(("r-matrix" ,r-matrix)
24921 ("r-spatstat-core" ,r-spatstat-core)
24922 ("r-spatstat-data" ,r-spatstat-data)
24923 ("r-spatstat-geom" ,r-spatstat-geom)
24924 ("r-spatstat-utils" ,r-spatstat-utils)))
24925 (home-page "http://spatstat.org/")
24926 (synopsis "Linear networks functionality of the spatstat package")
24927 (description
24928 "This is a subset of the spatstat package, containing its functionality
24929 for spatial data on a linear network.")
24930 (license license:gpl2+)))
24931
24932 (define-public r-spatstat
24933 (package
24934 (name "r-spatstat")
24935 (version "2.0-1")
24936 (source
24937 (origin
24938 (method url-fetch)
24939 (uri (cran-uri "spatstat" version))
24940 (sha256
24941 (base32
24942 "1xq11ijc0d0lbixxb3wnvyr4gplfj2d2i64ynsa089xd525zzzbw"))))
24943 (properties `((upstream-name . "spatstat")))
24944 (build-system r-build-system)
24945 (propagated-inputs
24946 `(("r-spatstat-core" ,r-spatstat-core)
24947 ("r-spatstat-data" ,r-spatstat-data)
24948 ("r-spatstat-geom" ,r-spatstat-geom)
24949 ("r-spatstat-linnet" ,r-spatstat-linnet)
24950 ("r-spatstat-utils" ,r-spatstat-utils)))
24951 (home-page "http://www.spatstat.org")
24952 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
24953 (description
24954 "This package provides a comprehensive toolbox for analysing Spatial
24955 Point Patterns. It is focused mainly on two-dimensional point patterns,
24956 including multitype/marked points, in any spatial region. It also supports
24957 three-dimensional point patterns, space-time point patterns in any number of
24958 dimensions, point patterns on a linear network, and patterns of other
24959 geometrical objects. It supports spatial covariate data such as pixel images
24960 and contains over 2000 functions for plotting spatial data, exploratory data
24961 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
24962 formal inference.")
24963 (license license:gpl2+)))
24964
24965 (define-public r-gaston
24966 (package
24967 (name "r-gaston")
24968 (version "1.5.7")
24969 (source
24970 (origin
24971 (method url-fetch)
24972 (uri (cran-uri "gaston" version))
24973 (sha256
24974 (base32
24975 "14z94dpln4dvgrv2w7w9ik7h6rpvbf02qhq1hqzx8c2cndzxr21i"))))
24976 (properties `((upstream-name . "gaston")))
24977 (build-system r-build-system)
24978 (inputs `(("zlib" ,zlib)))
24979 (propagated-inputs
24980 `(("r-rcpp" ,r-rcpp)
24981 ("r-rcppeigen" ,r-rcppeigen)
24982 ("r-rcppparallel" ,r-rcppparallel)))
24983 (native-inputs `(("r-knitr" ,r-knitr)))
24984 (home-page "https://cran.r-project.org/web/packages/gaston/")
24985 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
24986 (description
24987 "This is a package for the manipulation of genetic data (SNPs).
24988 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
24989 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
24990 for linear mixed models (AIREML).")
24991 (license license:gpl3)))
24992
24993 (define-public r-cpp11
24994 (package
24995 (name "r-cpp11")
24996 (version "0.2.6")
24997 (source
24998 (origin
24999 (method url-fetch)
25000 (uri (cran-uri "cpp11" version))
25001 (sha256
25002 (base32
25003 "118i8s7978vl9xyhnb47wcbd6rcc6b958mq2w8s3rdsd4pxv62gz"))))
25004 (properties `((upstream-name . "cpp11")))
25005 (build-system r-build-system)
25006 (native-inputs `(("r-knitr" ,r-knitr)))
25007 (home-page "https://github.com/r-lib/cpp11")
25008 (synopsis "C++11 Interface for R's C Interface")
25009 (description
25010 "This package provides a header only, C++11 interface to R's C interface.
25011 Compared to other approaches @code{cpp11} strives to be safe against long
25012 jumps from the C API as well as C++ exceptions, conform to normal R function
25013 semantics and supports interaction with @code{ALTREP} vectors.")
25014 (license license:expat)))
25015
25016 (define-public r-rcppziggurat
25017 (package
25018 (name "r-rcppziggurat")
25019 (version "0.1.6")
25020 (source
25021 (origin
25022 (method url-fetch)
25023 (uri (cran-uri "RcppZiggurat" version))
25024 (sha256
25025 (base32
25026 "0wgd1v2p7zajnbrjf3hfi56p3pk3ld6iwkanbb04bjbnlif2ay4w"))))
25027 (properties `((upstream-name . "RcppZiggurat")))
25028 (build-system r-build-system)
25029 (propagated-inputs
25030 `(("r-rcpp" ,r-rcpp)
25031 ("r-rcppgsl" ,r-rcppgsl)))
25032 (native-inputs `(("r-knitr" ,r-knitr)))
25033 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
25034 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
25035 (description
25036 "The Ziggurat generator for normally distributed random numbers,
25037 originally proposed by Marsaglia and Tsang (2000,
25038 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
25039 times starting with Leong et al (2005,
25040 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
25041 aggregation for comparing different implementations in order to provide a
25042 'faster but good enough' alternative for use with R and C++ code.")
25043 (license license:gpl2+)))
25044
25045 (define-public r-rfast
25046 (package
25047 (name "r-rfast")
25048 (version "2.0.1")
25049 (source
25050 (origin
25051 (method url-fetch)
25052 (uri (cran-uri "Rfast" version))
25053 (sha256
25054 (base32
25055 "1cq3mcg49hsvqhwn6f4dgsx7f8ma4qnwr5n6s7m22qy57rg31958"))))
25056 (properties `((upstream-name . "Rfast")))
25057 (build-system r-build-system)
25058 (propagated-inputs
25059 `(("r-rcpp" ,r-rcpp)
25060 ("r-rcpparmadillo" ,r-rcpparmadillo)
25061 ("r-rcppziggurat" ,r-rcppziggurat)))
25062 (home-page "https://github.com/RfastOfficial/Rfast")
25063 (synopsis "Collection of efficient and fast R functions")
25064 (description
25065 "This package provides a collection of fast (utility) functions for data
25066 analysis. Column- and row- wise means, medians, variances, minimums,
25067 maximums, many t, F and G-square tests, many regressions (normal, logistic,
25068 Poisson), are some of the many fast functions.")
25069 (license license:gpl2+)))
25070
25071 (define-public r-clusterr
25072 (package
25073 (name "r-clusterr")
25074 (version "1.2.2")
25075 (source
25076 (origin
25077 (method url-fetch)
25078 (uri (cran-uri "ClusterR" version))
25079 (sha256
25080 (base32
25081 "1ky172bk15a78hky77vl60j7c81nq2495sxjrv53is25nkac7sjm"))))
25082 (properties `((upstream-name . "ClusterR")))
25083 (build-system r-build-system)
25084 (propagated-inputs
25085 `(("r-ggplot2" ,r-ggplot2)
25086 ("r-gmp" ,r-gmp)
25087 ("r-gtools" ,r-gtools)
25088 ("r-rcpp" ,r-rcpp)
25089 ("r-rcpparmadillo" ,r-rcpparmadillo)))
25090 (native-inputs `(("r-knitr" ,r-knitr)))
25091 (home-page "https://github.com/mlampros/ClusterR")
25092 (synopsis "Clustering")
25093 (description
25094 "This package provides Gaussian mixture models, k-means,
25095 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
25096 option to plot, validate, predict (new data) and estimate the optimal number
25097 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
25098 the computationally intensive parts of the functions. For more information,
25099 see
25100
25101 @enumerate
25102 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
25103 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
25104 @url{https://doi.org/10.18637/jss.v001.i04};
25105 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
25106 Library, @url{https://doi.org/10.1145/1772690.1772862};
25107 @item \"Armadillo: a template-based C++ library
25108 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
25109 Software, @url{https://doi.org/10.21105/joss.00026};
25110 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
25111 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
25112 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
25113 @end enumerate
25114 ")
25115 (license license:gpl3)))
25116
25117 (define-public r-spectrum
25118 (package
25119 (name "r-spectrum")
25120 (version "1.1")
25121 (source
25122 (origin
25123 (method url-fetch)
25124 (uri (cran-uri "Spectrum" version))
25125 (sha256
25126 (base32
25127 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
25128 (properties `((upstream-name . "Spectrum")))
25129 (build-system r-build-system)
25130 (propagated-inputs
25131 `(("r-clusterr" ,r-clusterr)
25132 ("r-diptest" ,r-diptest)
25133 ("r-ggplot2" ,r-ggplot2)
25134 ("r-rfast" ,r-rfast)))
25135 (native-inputs `(("r-knitr" ,r-knitr)))
25136 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
25137 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
25138 (description
25139 "This package provides a self-tuning spectral clustering method for
25140 single or multi-view data. Spectrum uses a new type of adaptive density aware
25141 kernel that strengthens connections in the graph based on common nearest
25142 neighbours. It uses a tensor product graph data integration and diffusion
25143 procedure to integrate different data sources and reduce noise. Spectrum uses
25144 either the eigengap or multimodality gap heuristics to determine the number of
25145 clusters. The method is sufficiently flexible so that a wide range of
25146 Gaussian and non-Gaussian structures can be clustered with automatic selection
25147 of K.")
25148 (license license:agpl3+)))
25149
25150 (define-public r-nabor
25151 (package
25152 (name "r-nabor")
25153 (version "0.5.0")
25154 (source
25155 (origin
25156 (method url-fetch)
25157 (uri (cran-uri "nabor" version))
25158 (sha256
25159 (base32
25160 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
25161 (properties `((upstream-name . "nabor")))
25162 (build-system r-build-system)
25163 (propagated-inputs
25164 `(("r-bh" ,r-bh)
25165 ("r-rcpp" ,r-rcpp)
25166 ("r-rcppeigen" ,r-rcppeigen)))
25167 (home-page "https://cran.r-project.org/web/packages/nabor/")
25168 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
25169 (description
25170 "This package provides an R wrapper for libnabo, an exact or approximate
25171 k nearest neighbour library which is optimised for low dimensional
25172 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
25173 designed as a drop-in replacement for the RANN function @code{nn2}. In
25174 addition, objects which include the k-d tree search structure can be returned
25175 to speed up repeated queries of the same set of target points.")
25176 (license license:bsd-3)))
25177
25178 (define-public r-muhaz
25179 (package
25180 (name "r-muhaz")
25181 (version "1.2.6.1")
25182 (source
25183 (origin
25184 (method url-fetch)
25185 (uri (cran-uri "muhaz" version))
25186 (sha256
25187 (base32
25188 "08qh43zx6h3yby44q2vxphfvmfdmqxpgyp0734yn341sy9n8pkkk"))))
25189 (properties `((upstream-name . "muhaz")))
25190 (build-system r-build-system)
25191 (propagated-inputs
25192 `(("r-survival" ,r-survival)))
25193 (native-inputs
25194 `(("gfortran" ,gfortran)))
25195 (home-page "https://cran.r-project.org/web/packages/muhaz/")
25196 (synopsis "Hazard function estimation in survival analysis")
25197 (description
25198 "This package produces a smooth estimate of the hazard function for
25199 censored data.")
25200 ;; Any version of the GPL.
25201 (license license:gpl3+)))
25202
25203 (define-public r-flexsurv
25204 (package
25205 (name "r-flexsurv")
25206 (version "2.0")
25207 (source
25208 (origin
25209 (method url-fetch)
25210 (uri (cran-uri "flexsurv" version))
25211 (sha256
25212 (base32
25213 "0vshsijqlzsz0xh426vsswpai1v5c990ggyniqqzsjbg3mn8dbl9"))))
25214 (properties `((upstream-name . "flexsurv")))
25215 (build-system r-build-system)
25216 (propagated-inputs
25217 `(("r-assertthat" ,r-assertthat)
25218 ("r-desolve" ,r-desolve)
25219 ("r-dplyr" ,r-dplyr)
25220 ("r-generics" ,r-generics)
25221 ("r-magrittr" ,r-magrittr)
25222 ("r-matrix" ,r-matrix)
25223 ("r-mstate" ,r-mstate)
25224 ("r-muhaz" ,r-muhaz)
25225 ("r-mvtnorm" ,r-mvtnorm)
25226 ("r-numderiv" ,r-numderiv)
25227 ("r-purrr" ,r-purrr)
25228 ("r-quadprog" ,r-quadprog)
25229 ("r-rcpp" ,r-rcpp)
25230 ("r-rlang" ,r-rlang)
25231 ("r-rstpm2" ,r-rstpm2)
25232 ("r-survival" ,r-survival)
25233 ("r-tibble" ,r-tibble)
25234 ("r-tidyr" ,r-tidyr)
25235 ("r-tidyselect" ,r-tidyselect)))
25236 (native-inputs
25237 `(("r-knitr" ,r-knitr)))
25238 (home-page "https://github.com/chjackson/flexsurv-dev")
25239 (synopsis "Flexible parametric survival and multi-state models")
25240 (description
25241 "This package provides flexible parametric models for time-to-event data,
25242 including the Royston-Parmar spline model, generalized gamma and generalized F
25243 distributions. Any user-defined parametric distribution can be fitted, given
25244 at least an R function defining the probability density or hazard. There are
25245 also tools for fitting and predicting from fully parametric multi-state
25246 models.")
25247 (license license:gpl2+)))
25248
25249 (define-public r-transphylo
25250 (package
25251 (name "r-transphylo")
25252 (version "1.4.4")
25253 (source
25254 (origin
25255 (method url-fetch)
25256 (uri (cran-uri "TransPhylo" version))
25257 (sha256
25258 (base32
25259 "1506c97y8dnhd0c38rgvmg70q0l3xmmn07mjglhnw7hi5n5y9mv9"))))
25260 (properties `((upstream-name . "TransPhylo")))
25261 (build-system r-build-system)
25262 (propagated-inputs
25263 `(("r-ape" ,r-ape)
25264 ("r-rcpp" ,r-rcpp)))
25265 (native-inputs
25266 `(("r-knitr" ,r-knitr)))
25267 (home-page "https://cran.r-project.org/web/packages/TransPhylo/")
25268 (synopsis "Inference of transmission tree from a dated phylogeny")
25269 (description
25270 "This is a package to infer transmission trees from a dated phylogeny.
25271 It includes methods to simulate and analyze outbreaks. The methodology is
25272 described in @url{https://doi.org/10.1093/molbev/msu121,Didelot et al. (2014)}
25273 and @url{https://doi.org/10.1093/molbev/msw275,Didelot et al. (2017)}.")
25274 (license license:gpl2+)))
25275
25276 (define-public r-km-ci
25277 (package
25278 (name "r-km-ci")
25279 (version "0.5-2")
25280 (source
25281 (origin
25282 (method url-fetch)
25283 (uri (cran-uri "km.ci" version))
25284 (sha256
25285 (base32
25286 "1l6kw8jppaa1802yc5pbfwwgac56nhwc9p076ivylhms4w7cdf8v"))))
25287 (properties `((upstream-name . "km.ci")))
25288 (build-system r-build-system)
25289 (propagated-inputs
25290 `(("r-survival" ,r-survival)))
25291 (home-page "https://cran.r-project.org/web/packages/km.ci/")
25292 (synopsis "Confidence intervals for the Kaplan-Meier estimator")
25293 (description
25294 "This package computes various @dfn{confidence intervals} (CI) for the
25295 Kaplan-Meier estimator, namely: Petos CI, Rothman CI, CIs based on Greenwoods
25296 variance, Thomas and Grunkemeier CI and the simultaneous confidence bands by
25297 Nair and Hall and Wellner.")
25298 (license license:gpl2+)))
25299
25300 (define-public r-kmsurv
25301 (package
25302 (name "r-kmsurv")
25303 (version "0.1-5")
25304 (source
25305 (origin
25306 (method url-fetch)
25307 (uri (cran-uri "KMsurv" version))
25308 (sha256
25309 (base32
25310 "0hi5vvk584rl70gbrr75w9hc775xmbxnaig0dd6hlpi4071pnqjm"))))
25311 (properties `((upstream-name . "KMsurv")))
25312 (build-system r-build-system)
25313 (home-page "https://cran.r-project.org/web/packages/KMsurv/")
25314 (synopsis "Data sets from Klein and Moeschberger (1997), Survival Analysis")
25315 (description
25316 "This package provides data sets and functions for Klein and Moeschberger
25317 (1997), \"Survival Analysis, Techniques for Censored and Truncated Data\",
25318 Springer.")
25319 (license license:gpl3+)))
25320
25321 (define-public r-survmisc
25322 (package
25323 (name "r-survmisc")
25324 (version "0.5.5")
25325 (source
25326 (origin
25327 (method url-fetch)
25328 (uri (cran-uri "survMisc" version))
25329 (sha256
25330 (base32
25331 "00nvvl8gz4477ab24rd0xvfksm8msv8h021b9ld5c9cizc41n2bm"))))
25332 (properties `((upstream-name . "survMisc")))
25333 (build-system r-build-system)
25334 (propagated-inputs
25335 `(("r-data-table" ,r-data-table)
25336 ("r-ggplot2" ,r-ggplot2)
25337 ("r-gridextra" ,r-gridextra)
25338 ("r-km-ci" ,r-km-ci)
25339 ("r-kmsurv" ,r-kmsurv)
25340 ("r-knitr" ,r-knitr)
25341 ("r-survival" ,r-survival)
25342 ("r-xtable" ,r-xtable)
25343 ("r-zoo" ,r-zoo)))
25344 (native-inputs
25345 `(("r-knitr" ,r-knitr)))
25346 (home-page "https://cran.r-project.org/web/packages/survMisc/")
25347 (synopsis "Miscellaneous functions for survival data")
25348 (description
25349 "This package provides a collection of functions to help in the analysis
25350 of right-censored survival data. These extend the methods available in
25351 the @code{survival} package.")
25352 (license license:gpl2)))
25353
25354 (define-public r-exactranktests
25355 (package
25356 (name "r-exactranktests")
25357 (version "0.8-31")
25358 (source
25359 (origin
25360 (method url-fetch)
25361 (uri (cran-uri "exactRankTests" version))
25362 (sha256
25363 (base32
25364 "1154dkcid3njhamdp87qs9bnx7l8bdqkcjsds9q9f2xmizs9x8gw"))))
25365 (properties
25366 `((upstream-name . "exactRankTests")))
25367 (build-system r-build-system)
25368 (home-page "https://cran.r-project.org/web/packages/exactRankTests/")
25369 (synopsis "Exact distributions for rank and permutation tests")
25370 (description
25371 "This package computes exact conditional p-values and quantiles using an
25372 implementation of the Shift-Algorithm by Streitberg & Roehmel.")
25373 (license license:gpl2+)))
25374
25375 (define-public r-maxstat
25376 (package
25377 (name "r-maxstat")
25378 (version "0.7-25")
25379 (source
25380 (origin
25381 (method url-fetch)
25382 (uri (cran-uri "maxstat" version))
25383 (sha256
25384 (base32
25385 "114z1rwxwvk05ijjhdppzm148n1h192fp0w12ky10zkrhf6kphbg"))))
25386 (properties `((upstream-name . "maxstat")))
25387 (build-system r-build-system)
25388 (propagated-inputs
25389 `(("r-exactranktests" ,r-exactranktests)
25390 ("r-mvtnorm" ,r-mvtnorm)))
25391 (home-page "https://cran.r-project.org/web/packages/maxstat/")
25392 (synopsis "Maximally selected rank statistics")
25393 (description
25394 "This package provides maximally selected rank statistics with several
25395 p-value approximations.")
25396 (license license:gpl2+)))
25397
25398 (define-public r-survminer
25399 (package
25400 (name "r-survminer")
25401 (version "0.4.9")
25402 (source
25403 (origin
25404 (method url-fetch)
25405 (uri (cran-uri "survminer" version))
25406 (sha256
25407 (base32
25408 "0byh0wxdbjfwdrzsnqv4xlmnik6lj0vkkzfxy7lssk8dv5zmj7nz"))))
25409 (properties `((upstream-name . "survminer")))
25410 (build-system r-build-system)
25411 (propagated-inputs
25412 `(("r-broom" ,r-broom)
25413 ("r-dplyr" ,r-dplyr)
25414 ("r-ggplot2" ,r-ggplot2)
25415 ("r-ggpubr" ,r-ggpubr)
25416 ("r-ggtext" ,r-ggtext)
25417 ("r-gridextra" ,r-gridextra)
25418 ("r-magrittr" ,r-magrittr)
25419 ("r-maxstat" ,r-maxstat)
25420 ("r-purrr" ,r-purrr)
25421 ("r-rlang" ,r-rlang)
25422 ("r-scales" ,r-scales)
25423 ("r-survival" ,r-survival)
25424 ("r-survmisc" ,r-survmisc)
25425 ("r-tibble" ,r-tibble)
25426 ("r-tidyr" ,r-tidyr)))
25427 (native-inputs
25428 `(("r-knitr" ,r-knitr)))
25429 (home-page "https://rpkgs.datanovia.com/survminer/index.html")
25430 (synopsis "Drawing survival curves using ggplot2")
25431 (description
25432 "This package contains the function @code{ggsurvplot()} for easily
25433 drawing beautiful and 'ready-to-publish' survival curves with the 'number at
25434 risk' table and 'censoring count plot'. Other functions are also available to
25435 plot adjusted curves for Cox model and to visually examine Cox model
25436 assumptions.")
25437 (license license:gpl2)))
25438
25439 (define-public r-forge
25440 (package
25441 (name "r-forge")
25442 (version "0.2.0")
25443 (source
25444 (origin
25445 (method url-fetch)
25446 (uri (cran-uri "forge" version))
25447 (sha256
25448 (base32
25449 "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
25450 (properties `((upstream-name . "forge")))
25451 (build-system r-build-system)
25452 (propagated-inputs
25453 `(("r-magrittr" ,r-magrittr)
25454 ("r-rlang" ,r-rlang)))
25455 (home-page "https://cran.r-project.org/web/packages/forge/")
25456 (synopsis "Cast values into shape")
25457 (description
25458 "This package provides helper functions with a consistent interface to
25459 coerce and verify the types and shapes of values for input checking.")
25460 (license license:asl2.0)))
25461
25462 (define-public r-config
25463 (package
25464 (name "r-config")
25465 (version "0.3.1")
25466 (source
25467 (origin
25468 (method url-fetch)
25469 (uri (cran-uri "config" version))
25470 (sha256
25471 (base32
25472 "0l2zp7v6qaz72dclcbjrlis633zlwp8rsi5azr7iw127iyz7i26l"))))
25473 (properties `((upstream-name . "config")))
25474 (build-system r-build-system)
25475 (propagated-inputs
25476 `(("r-yaml" ,r-yaml)))
25477 (native-inputs
25478 `(("r-knitr" ,r-knitr)))
25479 (home-page "https://github.com/rstudio/config")
25480 (synopsis "Manage environment specific configuration values")
25481 (description
25482 "This package lets you manage configuration values across multiple
25483 environments (e.g. development, test, production). It reads values using a
25484 function that determines the current environment and returns the appropriate
25485 value.")
25486 (license license:gpl3)))
25487
25488 (define-public r-adaptivesparsity
25489 (package
25490 (name "r-adaptivesparsity")
25491 (version "1.6")
25492 (source (origin
25493 (method url-fetch)
25494 (uri (cran-uri "AdaptiveSparsity" version))
25495 (sha256
25496 (base32
25497 "0imr5m8mll9j6n4icsv6z9rl5kbnwsp9wvzrg7n90nnmcxq2cz91"))))
25498 (properties
25499 `((upstream-name . "AdaptiveSparsity")))
25500 (build-system r-build-system)
25501 (arguments
25502 `(#:phases
25503 (modify-phases %standard-phases
25504 (add-after 'unpack 'link-against-armadillo
25505 (lambda _
25506 (substitute* "src/Makevars"
25507 (("PKG_LIBS=" prefix)
25508 (string-append prefix "-larmadillo")))
25509 #t)))))
25510 (propagated-inputs
25511 `(("r-mass" ,r-mass)
25512 ("r-matrix" ,r-matrix)
25513 ("r-rcpp" ,r-rcpp)
25514 ("r-rcpparmadillo" ,r-rcpparmadillo)))
25515 (inputs
25516 `(("armadillo" ,armadillo)))
25517 (home-page "https://cran.r-project.org/web/packages/AdaptiveSparsity")
25518 (synopsis "Adaptive sparsity models")
25519 (description
25520 "This package implements the Figueiredo machine learning algorithm for
25521 adaptive sparsity and the Wong algorithm for adaptively sparse Gaussian
25522 geometric models.")
25523 (license license:lgpl3+)))
25524
25525 (define-public r-diffusionmap
25526 (package
25527 (name "r-diffusionmap")
25528 (version "1.2.0")
25529 (source
25530 (origin
25531 (method url-fetch)
25532 (uri (cran-uri "diffusionMap" version))
25533 (sha256
25534 (base32
25535 "1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
25536 (properties `((upstream-name . "diffusionMap")))
25537 (build-system r-build-system)
25538 (propagated-inputs
25539 `(("r-igraph" ,r-igraph)
25540 ("r-matrix" ,r-matrix)
25541 ("r-scatterplot3d" ,r-scatterplot3d)))
25542 (home-page "https://www.r-project.org")
25543 (synopsis "Diffusion map")
25544 (description "This package implements the diffusion map method of data
25545 parametrization, including creation and visualization of diffusion maps,
25546 clustering with diffusion K-means and regression using the adaptive regression
25547 model.")
25548 (license license:gpl2)))
25549
25550 (define-public r-igraph
25551 (package
25552 (name "r-igraph")
25553 (version "1.2.6")
25554 (source
25555 (origin
25556 (method url-fetch)
25557 (uri (cran-uri "igraph" version))
25558 (sha256
25559 (base32
25560 "0vf7wrx77cdiav8724cw8gchrn0y9wvywphf5km4pa7xcqhsf3b4"))))
25561 (build-system r-build-system)
25562 (native-inputs
25563 `(("gfortran" ,gfortran)))
25564 (inputs
25565 `(("gmp" ,gmp)
25566 ("glpk" ,glpk)
25567 ("libxml2" ,libxml2)
25568 ("zlib" ,zlib)))
25569 (propagated-inputs
25570 `(("r-magrittr" ,r-magrittr)
25571 ("r-matrix" ,r-matrix)
25572 ("r-pkgconfig" ,r-pkgconfig)))
25573 (home-page "https://igraph.org")
25574 (synopsis "Network analysis and visualization")
25575 (description
25576 "This package provides routines for simple graphs and network analysis.
25577 It can handle large graphs very well and provides functions for generating
25578 random and regular graphs, graph visualization, centrality methods and much
25579 more.")
25580 (license license:gpl2+)))
25581
25582 (define-public r-workflows
25583 (package
25584 (name "r-workflows")
25585 (version "0.2.2")
25586 (source
25587 (origin
25588 (method url-fetch)
25589 (uri (cran-uri "workflows" version))
25590 (sha256
25591 (base32
25592 "19ipcxx4qfz28cjkgr1vny03yhmbd3m2v64v30gk5pf73nazvmaz"))))
25593 (properties `((upstream-name . "workflows")))
25594 (build-system r-build-system)
25595 (propagated-inputs
25596 `(("r-cli" ,r-cli)
25597 ("r-ellipsis" ,r-ellipsis)
25598 ("r-generics" ,r-generics)
25599 ("r-glue" ,r-glue)
25600 ("r-hardhat" ,r-hardhat)
25601 ("r-parsnip" ,r-parsnip)
25602 ("r-rlang" ,r-rlang)
25603 ("r-tidyselect" ,r-tidyselect)
25604 ("r-vctrs" ,r-vctrs)))
25605 (native-inputs
25606 `(("r-knitr" ,r-knitr)))
25607 (home-page "https://github.com/tidymodels/workflows")
25608 (synopsis "Modeling workflows")
25609 (description
25610 "A workflow is an object that can bundle together your pre-processing,
25611 modeling, and post-processing requests. For example, if you have a
25612 @code{recipe} and @code{parsnip} model, these can be combined into a
25613 workflow. The advantages are:
25614
25615 @enumerate
25616 @item You don’t have to keep track of separate objects in your workspace.
25617 @item The recipe prepping and model fitting can be executed using a single
25618 call to @code{fit()}.
25619 @item If you have custom tuning parameter settings, these can be defined using
25620 a simpler interface when combined with @code{tune}.
25621 @item In the future, workflows will be able to add post-processing operations,
25622 such as modifying the probability cutoff for two-class models.
25623 @end enumerate
25624 ")
25625 (license license:expat)))
25626
25627 (define-public r-gpfit
25628 (package
25629 (name "r-gpfit")
25630 (version "1.0-8")
25631 (source
25632 (origin
25633 (method url-fetch)
25634 (uri (cran-uri "GPfit" version))
25635 (sha256
25636 (base32
25637 "05mpiyi2vxv0wqp422n1mnxa8msc4daq40cwpnpngbcwqhlgqkby"))))
25638 (properties `((upstream-name . "GPfit")))
25639 (build-system r-build-system)
25640 (propagated-inputs
25641 `(("r-lattice" ,r-lattice)
25642 ("r-lhs" ,r-lhs)))
25643 (home-page "https://cran.r-project.org/web/packages/GPfit/")
25644 (synopsis "Gaussian Processes modeling")
25645 (description
25646 "This package provides a computationally stable approach of fitting a
25647 @dfn{Gaussian Process} (GP) model to a deterministic simulator.")
25648 (license license:gpl2)))
25649
25650 (define-public r-yardstick
25651 (package
25652 (name "r-yardstick")
25653 (version "0.0.7")
25654 (source
25655 (origin
25656 (method url-fetch)
25657 (uri (cran-uri "yardstick" version))
25658 (sha256
25659 (base32
25660 "1yrvlhn4gxyn9f20z5yv3xam0j0a8z362jwa32r33r0g0jk5z2fq"))))
25661 (properties `((upstream-name . "yardstick")))
25662 (build-system r-build-system)
25663 (propagated-inputs
25664 `(("r-dplyr" ,r-dplyr)
25665 ("r-generics" ,r-generics)
25666 ("r-proc" ,r-proc)
25667 ("r-rlang" ,r-rlang)
25668 ("r-tidyselect" ,r-tidyselect)))
25669 (native-inputs
25670 `(("r-knitr" ,r-knitr)))
25671 (home-page "https://github.com/tidymodels/yardstick")
25672 (synopsis "Tidy characterizations of model performance")
25673 (description
25674 "This package provides tidy tools for quantifying how well a model fits
25675 to a data set such as confusion matrices, class probability curve summaries,
25676 and regression metrics (e.g., RMSE).")
25677 (license license:gpl2)))
25678
25679 (define-public r-warp
25680 (package
25681 (name "r-warp")
25682 (version "0.2.0")
25683 (source
25684 (origin
25685 (method url-fetch)
25686 (uri (cran-uri "warp" version))
25687 (sha256
25688 (base32
25689 "0s0acddc5h14245hi1faycxp0fyvw6nlgaz2df7da4fpyd2f638f"))))
25690 (properties `((upstream-name . "warp")))
25691 (build-system r-build-system)
25692 (native-inputs `(("r-knitr" ,r-knitr)))
25693 (home-page "https://github.com/DavisVaughan/warp")
25694 (synopsis "Group dates")
25695 (description
25696 "This package provides tooling to group dates by a variety of periods
25697 including: yearly, monthly, by second, by week of the month, and more. The
25698 groups are defined in such a way that they also represent the distance between
25699 dates in terms of the period. This extracts valuable information that can be
25700 used in further calculations that rely on a specific temporal spacing between
25701 observations.")
25702 (license license:expat)))
25703
25704 (define-public r-slider
25705 (package
25706 (name "r-slider")
25707 (version "0.1.5")
25708 (source
25709 (origin
25710 (method url-fetch)
25711 (uri (cran-uri "slider" version))
25712 (sha256
25713 (base32
25714 "1x4jwfxam4czfkb1s5qds5krfw1h2p5a4rh6f5z4yvhsv0d81xck"))))
25715 (properties `((upstream-name . "slider")))
25716 (build-system r-build-system)
25717 (propagated-inputs
25718 `(("r-glue" ,r-glue)
25719 ("r-rlang" ,r-rlang)
25720 ("r-vctrs" ,r-vctrs)
25721 ("r-warp" ,r-warp)))
25722 (native-inputs `(("r-knitr" ,r-knitr)))
25723 (home-page "https://github.com/DavisVaughan/slider")
25724 (synopsis "Sliding window functions")
25725 (description
25726 "This package provides type-stable rolling window functions over any R
25727 data type. Cumulative and expanding windows are also supported. For more
25728 advanced usage, an index can be used as a secondary vector that defines how
25729 sliding windows are to be created.")
25730 (license license:expat)))
25731
25732 (define-public r-rsample
25733 (package
25734 (name "r-rsample")
25735 (version "0.0.9")
25736 (source
25737 (origin
25738 (method url-fetch)
25739 (uri (cran-uri "rsample" version))
25740 (sha256
25741 (base32
25742 "03qwsvylgmj2a2h764mzy0x57pgzmvjvl0ypmbn4lcf912bvrd2c"))))
25743 (properties `((upstream-name . "rsample")))
25744 (build-system r-build-system)
25745 (propagated-inputs
25746 `(("r-dplyr" ,r-dplyr)
25747 ("r-ellipsis" ,r-ellipsis)
25748 ("r-furrr" ,r-furrr)
25749 ("r-generics" ,r-generics)
25750 ("r-purrr" ,r-purrr)
25751 ("r-rlang" ,r-rlang)
25752 ("r-slider" ,r-slider)
25753 ("r-tibble" ,r-tibble)
25754 ("r-tidyr" ,r-tidyr)
25755 ("r-tidyselect" ,r-tidyselect)
25756 ("r-vctrs" ,r-vctrs)))
25757 (native-inputs
25758 `(("r-knitr" ,r-knitr)))
25759 (home-page "https://rsample.tidymodels.org")
25760 (synopsis "General resampling infrastructure")
25761 (description
25762 "This package provides classes and functions to create and summarize
25763 different types of resampling objects (e.g. bootstrap, cross-validation).")
25764 (license license:gpl2)))
25765
25766 (define-public r-dicedesign
25767 (package
25768 (name "r-dicedesign")
25769 (version "1.9")
25770 (source
25771 (origin
25772 (method url-fetch)
25773 (uri (cran-uri "DiceDesign" version))
25774 (sha256
25775 (base32
25776 "1a8ixa65xgyfri03cviic8qi2plbhdyz8m02bwif8w94w0q3ghlk"))))
25777 (properties `((upstream-name . "DiceDesign")))
25778 (build-system r-build-system)
25779 (home-page "http://dice.emse.fr/")
25780 (synopsis "Designs of computer experiments")
25781 (description
25782 "This package provides tools to create some specific @code{Space-Filling
25783 Design} (SFD) and to test their quality.")
25784 (license license:gpl3)))
25785
25786 (define-public r-dials
25787 (package
25788 (name "r-dials")
25789 (version "0.0.9")
25790 (source
25791 (origin
25792 (method url-fetch)
25793 (uri (cran-uri "dials" version))
25794 (sha256
25795 (base32
25796 "0g9wj2py4wz703rh4p7hk8qxqnkm7zyrypv4qz4vaqziazjsmxks"))))
25797 (properties `((upstream-name . "dials")))
25798 (build-system r-build-system)
25799 (propagated-inputs
25800 `(("r-dicedesign" ,r-dicedesign)
25801 ("r-dplyr" ,r-dplyr)
25802 ("r-glue" ,r-glue)
25803 ("r-purrr" ,r-purrr)
25804 ("r-rlang" ,r-rlang)
25805 ("r-scales" ,r-scales)
25806 ("r-tibble" ,r-tibble)
25807 ("r-vctrs" ,r-vctrs)
25808 ("r-withr" ,r-withr)))
25809 (native-inputs `(("r-knitr" ,r-knitr)))
25810 (home-page "https://dials.tidymodels.org/")
25811 (synopsis "Tools for creating tuning parameter values")
25812 (description
25813 "Many models contain tuning parameters (i.e. parameters that cannot be
25814 directly estimated from the data). These tools can be used to define objects
25815 for creating, simulating, or validating values for such parameters.")
25816 (license license:gpl2)))
25817
25818 (define-public r-tune
25819 (package
25820 (name "r-tune")
25821 (version "0.1.3")
25822 (source
25823 (origin
25824 (method url-fetch)
25825 (uri (cran-uri "tune" version))
25826 (sha256
25827 (base32
25828 "05r5jzg96g2z10a2w4w8wq1ysfaxr91acwrvn75pmcy4rmixf293"))))
25829 (properties `((upstream-name . "tune")))
25830 (build-system r-build-system)
25831 (propagated-inputs
25832 `(("r-cli" ,r-cli)
25833 ("r-dials" ,r-dials)
25834 ("r-dplyr" ,r-dplyr)
25835 ("r-foreach" ,r-foreach)
25836 ("r-generics" ,r-generics)
25837 ("r-ggplot2" ,r-ggplot2)
25838 ("r-glue" ,r-glue)
25839 ("r-gpfit" ,r-gpfit)
25840 ("r-parsnip" ,r-parsnip)
25841 ("r-purrr" ,r-purrr)
25842 ("r-recipes" ,r-recipes)
25843 ("r-rlang" ,r-rlang)
25844 ("r-rsample" ,r-rsample)
25845 ("r-tibble" ,r-tibble)
25846 ("r-tidyr" ,r-tidyr)
25847 ("r-vctrs" ,r-vctrs)
25848 ("r-workflows" ,r-workflows)
25849 ("r-yardstick" ,r-yardstick)))
25850 (home-page "https://github.com/tidymodels/tune")
25851 (synopsis "Tidy tuning tools")
25852 (description
25853 "The ability to tune models is important. @code{tune} contains functions
25854 and classes to be used in conjunction with other @code{tidymodels} packages
25855 for finding reasonable values of hyper-parameters in models, pre-processing
25856 methods, and post-processing steps.")
25857 (license license:expat)))
25858
25859 (define-public r-workflowsets
25860 (package
25861 (name "r-workflowsets")
25862 (version "0.0.1")
25863 (source
25864 (origin
25865 (method url-fetch)
25866 (uri (cran-uri "workflowsets" version))
25867 (sha256
25868 (base32
25869 "1q41isvj7hhbkx3y8k6kazpiygig92xannsz8dpklh0k3j9l3c2p"))))
25870 (properties `((upstream-name . "workflowsets")))
25871 (build-system r-build-system)
25872 (propagated-inputs
25873 `(("r-cli" ,r-cli)
25874 ("r-dplyr" ,r-dplyr)
25875 ("r-ggplot2" ,r-ggplot2)
25876 ("r-prettyunits" ,r-prettyunits)
25877 ("r-purrr" ,r-purrr)
25878 ("r-rlang" ,r-rlang)
25879 ("r-rsample" ,r-rsample)
25880 ("r-tibble" ,r-tibble)
25881 ("r-tidyr" ,r-tidyr)
25882 ("r-tune" ,r-tune)
25883 ("r-vctrs" ,r-vctrs)
25884 ("r-withr" ,r-withr)
25885 ("r-workflows" ,r-workflows)))
25886 (native-inputs
25887 `(("r-knitr" ,r-knitr)))
25888 (home-page "https://github.com/tidymodels/workflowsets")
25889 (synopsis "Create a collection of tidymodels workflows")
25890 (description
25891 "A workflow is a combination of a model and preprocessors (e.g, a
25892 formula, recipe, etc.). In order to try different combinations of these, an
25893 object can be created that contains many workflows. There are functions to
25894 create workflows en masse as well as training them and visualizing the
25895 results.")
25896 (license license:expat)))
25897
25898 (define-public r-tidyposterior
25899 (package
25900 (name "r-tidyposterior")
25901 (version "0.0.3")
25902 (source
25903 (origin
25904 (method url-fetch)
25905 (uri (cran-uri "tidyposterior" version))
25906 (sha256
25907 (base32
25908 "0wsv800w056ziqbnwal7ncmdy4li8cn5yrdx07w35b7j8kl4mwhg"))))
25909 (properties `((upstream-name . "tidyposterior")))
25910 (build-system r-build-system)
25911 (propagated-inputs
25912 `(("r-dplyr" ,r-dplyr)
25913 ("r-generics" ,r-generics)
25914 ("r-ggplot2" ,r-ggplot2)
25915 ("r-lifecycle" ,r-lifecycle)
25916 ("r-purrr" ,r-purrr)
25917 ("r-rlang" ,r-rlang)
25918 ("r-rsample" ,r-rsample)
25919 ("r-rstanarm" ,r-rstanarm)
25920 ("r-tibble" ,r-tibble)
25921 ("r-tidyr" ,r-tidyr)
25922 ("r-vctrs" ,r-vctrs)))
25923 (native-inputs
25924 `(("r-knitr" ,r-knitr)))
25925 (home-page "https://tidyposterior.tidymodels.org")
25926 (synopsis "Bayesian analysis to compare models using resampling statistics")
25927 (description
25928 "This package can be used to conduct post hoc analyses of resampling
25929 results generated by models. For example, if two models are evaluated with
25930 the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
25931 are 10 paired statistics. These can be used to make comparisons between
25932 models without involving a test set.")
25933 (license license:gpl2)))
25934
25935 (define-public r-tidypredict
25936 (package
25937 (name "r-tidypredict")
25938 (version "0.4.8")
25939 (source
25940 (origin
25941 (method url-fetch)
25942 (uri (cran-uri "tidypredict" version))
25943 (sha256
25944 (base32
25945 "0fff349pkksss8h1k2qza78l81ha6avx63pxziv6dfa8h62qmrdy"))))
25946 (properties `((upstream-name . "tidypredict")))
25947 (build-system r-build-system)
25948 (propagated-inputs
25949 `(("r-dplyr" ,r-dplyr)
25950 ("r-generics" ,r-generics)
25951 ("r-knitr" ,r-knitr)
25952 ("r-purrr" ,r-purrr)
25953 ("r-rlang" ,r-rlang)
25954 ("r-stringr" ,r-stringr)
25955 ("r-tibble" ,r-tibble)
25956 ("r-tidyr" ,r-tidyr)))
25957 (native-inputs
25958 `(("r-knitr" ,r-knitr)))
25959 (home-page "https://tidypredict.tidymodels.org")
25960 (synopsis "Run predictions inside the database")
25961 (description
25962 "This package parses a fitted R model object, and returns a formula in
25963 Tidy Eval code that calculates the predictions. It works with several
25964 database backends because it leverages @code{dplyr} and @code{dbplyr} for the
25965 final SQL translation of the algorithm. It currently supports @code{lm()},
25966 @code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
25967 @code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
25968 (license license:gpl3)))
25969
25970 (define-public r-janeaustenr
25971 (package
25972 (name "r-janeaustenr")
25973 (version "0.1.5")
25974 (source
25975 (origin
25976 (method url-fetch)
25977 (uri (cran-uri "janeaustenr" version))
25978 (sha256
25979 (base32
25980 "1wyn4qc28a3sval8shmyi2d7s4nl3jh96s8pzq871brxcmrncbwr"))))
25981 (properties `((upstream-name . "janeaustenr")))
25982 (build-system r-build-system)
25983 (home-page "https://github.com/juliasilge/janeaustenr")
25984 (synopsis "Jane Austen's complete novels")
25985 (description
25986 "This package provides the full texts for Jane Austen's six completed
25987 novels, ready for text analysis. These novels are \"Sense and Sensibility\",
25988 \"Pride and Prejudice\", \"Mansfield Park\", \"Emma\", \"Northanger Abbey\",
25989 and \"Persuasion\".")
25990 (license license:expat)))
25991
25992 (define-public r-tokenizers
25993 (package
25994 (name "r-tokenizers")
25995 (version "0.2.1")
25996 (source
25997 (origin
25998 (method url-fetch)
25999 (uri (cran-uri "tokenizers" version))
26000 (sha256
26001 (base32
26002 "006xf1vdrmp9skhpss9ldhmk4cwqk512cjp1pxm2gxfybpf7qq98"))))
26003 (properties `((upstream-name . "tokenizers")))
26004 (build-system r-build-system)
26005 (propagated-inputs
26006 `(("r-rcpp" ,r-rcpp)
26007 ("r-snowballc" ,r-snowballc)
26008 ("r-stringi" ,r-stringi)))
26009 (native-inputs
26010 `(("r-knitr" ,r-knitr)))
26011 (home-page "https://lincolnmullen.com/software/tokenizers/")
26012 (synopsis "Fast, consistent tokenization of natural language text")
26013 (description
26014 "This is a package for converting natural language text into tokens.
26015 It includes tokenizers for shingled n-grams, skip n-grams, words, word stems,
26016 sentences, paragraphs, characters, shingled characters, lines, tweets, Penn
26017 Treebank, regular expressions, as well as functions for counting characters,
26018 words, and sentences, and a function for splitting longer texts into separate
26019 documents, each with the same number of words. The tokenizers have a
26020 consistent interface, and the package is built on the @code{stringi} and
26021 @code{Rcpp} packages for fast yet correct tokenization in UTF-8 encoding.")
26022 (license license:expat)))
26023
26024 (define-public r-hunspell
26025 (package
26026 (name "r-hunspell")
26027 (version "3.0.1")
26028 (source
26029 (origin
26030 (method url-fetch)
26031 (uri (cran-uri "hunspell" version))
26032 (sha256
26033 (base32
26034 "0ql6y05d4xxpm468rslb0wxdp1x9l3flxzmb5w6pjg617f8vpv8z"))))
26035 (properties `((upstream-name . "hunspell")))
26036 (build-system r-build-system)
26037 (propagated-inputs
26038 `(("r-digest" ,r-digest)
26039 ("r-rcpp" ,r-rcpp)))
26040 (native-inputs
26041 `(("r-knitr" ,r-knitr)))
26042 (home-page "https://github.com/ropensci/hunspell#readme")
26043 (synopsis "High-performance stemmer, tokenizer, and spell checker")
26044 (description
26045 "This package provides a low-level spell checker and morphological
26046 analyzer based on the famous @code{hunspell} library. The package can analyze
26047 or check individual words as well as parse text, LaTeX, HTML or XML documents.
26048 For a more user-friendly interface use the @code{spelling} package which
26049 builds on this package to automate checking of files, documentation and
26050 vignettes in all common formats.")
26051 ;; The hunspell library itself is available under one of GPL2, LGPL2.1, or
26052 ;; MPL; in addition to these licenses the rest of the R wrapper is also
26053 ;; available under the Expat license.
26054 (license (list license:gpl2
26055 license:lgpl2.1
26056 license:mpl1.1
26057 license:expat))))
26058
26059 (define-public r-tidytext
26060 (package
26061 (name "r-tidytext")
26062 (version "0.3.0")
26063 (source
26064 (origin
26065 (method url-fetch)
26066 (uri (cran-uri "tidytext" version))
26067 (sha256
26068 (base32
26069 "1icbfw4zkbs9sp6vk814mw2zzm0bc0d7af92vhriqxaga0gbwdkx"))))
26070 (properties `((upstream-name . "tidytext")))
26071 (build-system r-build-system)
26072 (propagated-inputs
26073 `(("r-dplyr" ,r-dplyr)
26074 ("r-generics" ,r-generics)
26075 ("r-hunspell" ,r-hunspell)
26076 ("r-janeaustenr" ,r-janeaustenr)
26077 ("r-lifecycle" ,r-lifecycle)
26078 ("r-matrix" ,r-matrix)
26079 ("r-purrr" ,r-purrr)
26080 ("r-rlang" ,r-rlang)
26081 ("r-stringr" ,r-stringr)
26082 ("r-tibble" ,r-tibble)
26083 ("r-tokenizers" ,r-tokenizers)
26084 ("r-vctrs" ,r-vctrs)))
26085 (native-inputs
26086 `(("r-knitr" ,r-knitr)))
26087 (home-page "https://github.com/juliasilge/tidytext")
26088 (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
26089 (description
26090 "This is a package for text mining for word processing and sentiment
26091 analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
26092 (license license:expat)))
26093
26094 (define-public r-parsnip
26095 (package
26096 (name "r-parsnip")
26097 (version "0.1.5")
26098 (source
26099 (origin
26100 (method url-fetch)
26101 (uri (cran-uri "parsnip" version))
26102 (sha256
26103 (base32
26104 "0c12lyfxqsdprqlcmgy421py38z28h88d68pxb1c4fw14v1c2d06"))))
26105 (properties `((upstream-name . "parsnip")))
26106 (build-system r-build-system)
26107 (propagated-inputs
26108 `(("r-dplyr" ,r-dplyr)
26109 ("r-generics" ,r-generics)
26110 ("r-globals" ,r-globals)
26111 ("r-glue" ,r-glue)
26112 ("r-magrittr" ,r-magrittr)
26113 ("r-prettyunits" ,r-prettyunits)
26114 ("r-purrr" ,r-purrr)
26115 ("r-rlang" ,r-rlang)
26116 ("r-tibble" ,r-tibble)
26117 ("r-tidyr" ,r-tidyr)
26118 ("r-vctrs" ,r-vctrs)))
26119 (native-inputs
26120 `(("r-knitr" ,r-knitr)))
26121 (home-page "https://parsnip.tidymodels.org")
26122 (synopsis "Common API to modeling and analysis functions")
26123 (description
26124 "This package provides a common interface to allow users to specify a
26125 model without having to remember the different argument names across different
26126 functions or computational engines (e.g. R, Spark, Stan, etc).")
26127 (license license:gpl2)))
26128
26129 (define-public r-infer
26130 (package
26131 (name "r-infer")
26132 (version "0.5.4")
26133 (source
26134 (origin
26135 (method url-fetch)
26136 (uri (cran-uri "infer" version))
26137 (sha256
26138 (base32
26139 "0wvvgqjhyv7ql98cjzqad61wbmk7xrqd1ybk894jr5cmza13c8w2"))))
26140 (properties `((upstream-name . "infer")))
26141 (build-system r-build-system)
26142 (propagated-inputs
26143 `(("r-dplyr" ,r-dplyr)
26144 ("r-ggplot2" ,r-ggplot2)
26145 ("r-glue" ,r-glue)
26146 ("r-magrittr" ,r-magrittr)
26147 ("r-purrr" ,r-purrr)
26148 ("r-rlang" ,r-rlang)
26149 ("r-tibble" ,r-tibble)))
26150 (native-inputs
26151 `(("r-knitr" ,r-knitr)))
26152 (home-page "https://github.com/tidymodels/infer")
26153 (synopsis "Tidy statistical inference")
26154 (description
26155 "The objective of this package is to perform inference using an
26156 expressive statistical grammar that coheres with the Tidy design framework.")
26157 (license license:cc0)))
26158
26159 (define-public r-modeldata
26160 (package
26161 (name "r-modeldata")
26162 (version "0.1.0")
26163 (source
26164 (origin
26165 (method url-fetch)
26166 (uri (cran-uri "modeldata" version))
26167 (sha256
26168 (base32
26169 "0lbvmicvhw560jn9qk5dywrl6mgj1rf7zh7p86lf97c6bmz0zp2r"))))
26170 (properties `((upstream-name . "modeldata")))
26171 (build-system r-build-system)
26172 (home-page "https://modeldata.tidymodels.org")
26173 (synopsis "Data sets useful for modeling packages")
26174 (description
26175 "This package provides data sets used for demonstrating or testing
26176 model-related packages.")
26177 (license license:expat)))
26178
26179 (define-public r-tidymodels
26180 (package
26181 (name "r-tidymodels")
26182 (version "0.1.2")
26183 (source
26184 (origin
26185 (method url-fetch)
26186 (uri (cran-uri "tidymodels" version))
26187 (sha256
26188 (base32
26189 "09njrl655sh82xrzckgg56a6ndfrjla5fy8675wj4jsj14jpv0fw"))))
26190 (properties `((upstream-name . "tidymodels")))
26191 (build-system r-build-system)
26192 (propagated-inputs
26193 `(("r-broom" ,r-broom)
26194 ("r-cli" ,r-cli)
26195 ("r-dials" ,r-dials)
26196 ("r-dplyr" ,r-dplyr)
26197 ("r-ggplot2" ,r-ggplot2)
26198 ("r-infer" ,r-infer)
26199 ("r-magrittr" ,r-magrittr)
26200 ("r-modeldata" ,r-modeldata)
26201 ("r-parsnip" ,r-parsnip)
26202 ("r-purrr" ,r-purrr)
26203 ("r-recipes" ,r-recipes)
26204 ("r-rlang" ,r-rlang)
26205 ("r-rsample" ,r-rsample)
26206 ("r-rstudioapi" ,r-rstudioapi)
26207 ("r-tibble" ,r-tibble)
26208 ("r-tidyr" ,r-tidyr)
26209 ("r-tune" ,r-tune)
26210 ("r-workflows" ,r-workflows)
26211 ("r-yardstick" ,r-yardstick)))
26212 (native-inputs
26213 `(("r-knitr" ,r-knitr)
26214 ("r-rmarkdown" ,r-rmarkdown)
26215 ("pandoc" ,pandoc)
26216 ("pandoc-citeproc" ,pandoc-citeproc))) ; for vignettes
26217 (home-page "https://github.com/tidymodels/tidymodels")
26218 (synopsis "Tidy collection for modeling and statistical analysis")
26219 (description
26220 "The tidy modeling \"verse\" is a collection of packages for modeling and
26221 statistical analysis that share the underlying design philosophy, grammar, and
26222 data structures of the tidyverse.")
26223 (license license:gpl3)))
26224
26225 (define-public r-lsa
26226 (package
26227 (name "r-lsa")
26228 (version "0.73.2")
26229 (source
26230 (origin
26231 (method url-fetch)
26232 (uri (cran-uri "lsa" version))
26233 (sha256
26234 (base32
26235 "1a33irqa6qvbc02z12rgbgv8kxq2gmahy7j5bg8b23lvvaxif06b"))))
26236 (properties `((upstream-name . "lsa")))
26237 (build-system r-build-system)
26238 (propagated-inputs
26239 `(("r-snowballc" ,r-snowballc)))
26240 (home-page "https://cran.r-project.org/package=lsa")
26241 (synopsis "Latent semantic analysis")
26242 (description
26243 "The basic idea of latent semantic analysis (LSA) is, that text do have a
26244 higher order (=latent semantic) structure which, however, is obscured by word
26245 usage (e.g. through the use of synonyms or polysemy). By using conceptual
26246 indices that are derived statistically via a truncated singular value
26247 decomposition (a two-mode factor analysis) over a given document-term matrix,
26248 this variability problem can be overcome.")
26249 (license license:gpl2+)))
26250
26251 (define-public r-mlecens
26252 (package
26253 (name "r-mlecens")
26254 (version "0.1-4")
26255 (source
26256 (origin
26257 (method url-fetch)
26258 (uri (cran-uri "MLEcens" version))
26259 (sha256
26260 (base32
26261 "0zlmrcjraypscgs2v0w4s4hm7qccsmaz4hjsgqpn0058vx622945"))))
26262 (properties `((upstream-name . "MLEcens")))
26263 (build-system r-build-system)
26264 (home-page "http://stat.ethz.ch/~maathuis/")
26265 (synopsis "Computation of the MLE for bivariate (interval) censored data")
26266 (description
26267 "This package contains functions to compute the nonparametric
26268 @dfn{maximum likelihood estimator} (MLE) for the bivariate distribution of
26269 @code{(X,Y)}, when realizations of @code{(X,Y)} cannot be observed directly.
26270 To be more precise, we consider the situation where we observe a set of
26271 rectangles that are known to contain the unobservable realizations of (X,Y).
26272 We compute the MLE based on such a set of rectangles. The methods can also be
26273 used for univariate censored data (see data set @code{cosmesis}), and for
26274 censored data with competing risks (see data set @code{menopause}). The
26275 package also provides functions to visualize the observed data and the MLE.")
26276 (license license:gpl2+)))
26277
26278 (define-public r-metafor
26279 (package
26280 (name "r-metafor")
26281 (version "2.4-0")
26282 (source
26283 (origin
26284 (method url-fetch)
26285 (uri (cran-uri "metafor" version))
26286 (sha256
26287 (base32
26288 "1b599fxk7s0brkchmx698fr5k4g1kzkia2rnlvhg349ffs5nfjmn"))))
26289 (properties `((upstream-name . "metafor")))
26290 (build-system r-build-system)
26291 (propagated-inputs
26292 `(("r-matrix" ,r-matrix)
26293 ("r-nlme" ,r-nlme)))
26294 (home-page "https://cran.r-project.org/web/packages/metafor/")
26295 (synopsis "Meta-analysis package for R")
26296 (description
26297 "This package provides a comprehensive collection of functions for
26298 conducting meta-analyses in R. The package includes functions to calculate
26299 various effect sizes or outcome measures, fit fixed-, random-, and
26300 mixed-effects models to such data, carry out moderator and meta-regression
26301 analyses, and create various types of meta-analytical plots (e.g., forest,
26302 funnel, radial, L'Abbe, Baujat, GOSH plots). For meta-analyses of binomial
26303 and person-time data, the package also provides functions that implement
26304 specialized methods, including the Mantel-Haenszel method, Peto's method, and
26305 a variety of suitable generalized linear (mixed-effects) models (i.e.
26306 mixed-effects logistic and Poisson regression models). Finally, the package
26307 provides functionality for fitting meta-analytic multivariate/multilevel
26308 models that account for non-independent sampling errors and/or true
26309 effects (e.g. due to the inclusion of multiple treatment studies, multiple
26310 endpoints, or other forms of clustering). Network meta-analyses and
26311 meta-analyses accounting for known correlation structures (e.g. due to
26312 phylogenetic relatedness) can also be conducted.")
26313 (license license:gpl2+)))
26314
26315 (define-public r-altmeta
26316 (package
26317 (name "r-altmeta")
26318 (version "3.2")
26319 (source
26320 (origin
26321 (method url-fetch)
26322 (uri (cran-uri "altmeta" version))
26323 (sha256
26324 (base32
26325 "0z252lbsknqp33i0b0xf5r7spr535iq47bv40vgip6nsqhgrl7b0"))))
26326 (properties `((upstream-name . "altmeta")))
26327 (build-system r-build-system)
26328 (propagated-inputs
26329 `(("r-coda" ,r-coda)
26330 ("r-lme4" ,r-lme4)
26331 ("r-matrix" ,r-matrix)
26332 ("r-metafor" ,r-metafor)
26333 ("r-rjags" ,r-rjags)))
26334 (home-page "https://cran.r-project.org/web/packages/altmeta/")
26335 (synopsis "Alternative meta-analysis methods")
26336 (description
26337 "This package provides alternative statistical methods for meta-analysis,
26338 including:
26339
26340 @enumerate
26341 @item bivariate generalized linear mixed models for synthesizing odds ratios,
26342 relative risks, and risk differences
26343 @item heterogeneity tests and measures that are robust to outliers;
26344 @item measures, tests, and visualization tools for publication bias or
26345 small-study effects;
26346 @item meta-analysis of diagnostic tests for synthesizing sensitivities,
26347 specificities, etc.;
26348 @item meta-analysis methods for synthesizing proportions;
26349 @item models for multivariate meta-analysis.
26350 @end enumerate
26351 ")
26352 (license license:gpl2+)))
26353
26354 (define-public r-perm
26355 (package
26356 (name "r-perm")
26357 (version "1.0-0.0")
26358 (source
26359 (origin
26360 (method url-fetch)
26361 (uri (cran-uri "perm" version))
26362 (sha256
26363 (base32
26364 "0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
26365 (properties `((upstream-name . "perm")))
26366 (build-system r-build-system)
26367 (home-page "https://cran.r-project.org/web/packages/perm/")
26368 (synopsis "Exact or asymptotic permutation tests")
26369 (description
26370 "This package provides several methods for performing permutation tests.
26371 It has three main functions, to perform linear permutation tests. These tests
26372 are tests where the test statistic is the sum of the product of a
26373 covariate (usually group indicator) and the scores.")
26374 ;; Any version of the GPL
26375 (license license:gpl2+)))
26376
26377 (define-public r-qtl
26378 (package
26379 (name "r-qtl")
26380 (version "1.47-9")
26381 (source
26382 (origin
26383 (method url-fetch)
26384 (uri (cran-uri "qtl" version))
26385 (sha256
26386 (base32
26387 "0hffirsvw9j82cdx6l7vhqn3a7ab52claqjlinv3lswl1nsfg93b"))))
26388 (build-system r-build-system)
26389 (home-page "https://rqtl.org/")
26390 (synopsis "R package for analyzing QTL experiments in genetics")
26391 (description "R/qtl is an extension library for the R statistics system.
26392 It is used to analyze experimental crosses for identifying genes contributing
26393 to variation in quantitative traits (so-called quantitative trait loci, QTLs).
26394
26395 Using a hidden Markov model, R/qtl estimates genetic maps, to identify
26396 genotyping errors, and to perform single-QTL and two-QTL, two-dimensional
26397 genome scans.")
26398 (license license:gpl3)))
26399
26400 (define-public r-qtl2
26401 (package
26402 (name "r-qtl2")
26403 (version "0.24")
26404 (source (origin
26405 (method url-fetch)
26406 (uri (cran-uri "qtl2" version))
26407 (sha256
26408 (base32 "1558khh0zkwm0rdk87krv9836krvwv5h7ymlz9bsrgcvypyr9186"))))
26409 (build-system r-build-system)
26410 (propagated-inputs
26411 `(("r-data-table" ,r-data-table)
26412 ("r-jsonlite" ,r-jsonlite)
26413 ("r-rcpp" ,r-rcpp)
26414 ("r-rcppeigen" ,r-rcppeigen)
26415 ("r-rsqlite" ,r-rsqlite)
26416 ("r-yaml" ,r-yaml)))
26417 (home-page "https://kbroman.org/qtl2/")
26418 (synopsis "Quantitative Trait Locus Mapping in Experimental Crosses")
26419 (description
26420 "This package provides a set of tools to perform @dfn{Quantitative Trait
26421 Locus} (QTL) analysis in experimental crosses. It is a reimplementation of the
26422 @code{R/qtl} package to better handle high-dimensional data and complex cross
26423 designs. Broman et al. (2018) <doi:10.1534/genetics.118.301595>.")
26424 (license license:gpl3)))
26425
26426 (define-public r-seqminer
26427 (package
26428 (name "r-seqminer")
26429 (version "8.0")
26430 (source
26431 (origin
26432 (method url-fetch)
26433 (uri (cran-uri "seqminer" version))
26434 (sha256
26435 (base32
26436 "00jzj8mwb0zaiwlifd41b26mrq9mzigj18nc29dydi0r42hxg16i"))))
26437 (build-system r-build-system)
26438 (inputs
26439 `(("zlib" ,zlib)))
26440 (home-page "http://seqminer.genomic.codes")
26441 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
26442 (description
26443 "This package provides tools to integrate nucleotide sequencing
26444 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
26445 ;; Any version of the GPL is acceptable
26446 (license (list license:gpl2+ license:gpl3+))))
26447
26448 (define-public r-maldiquant
26449 (package
26450 (name "r-maldiquant")
26451 (version "1.19.3")
26452 (source
26453 (origin
26454 (method url-fetch)
26455 (uri (cran-uri "MALDIquant" version))
26456 (sha256
26457 (base32
26458 "0b7kdz3x4sdq413h1q09l1qhcvdnnwv6fqsqwllks1cd3xy34c57"))))
26459 (properties `((upstream-name . "MALDIquant")))
26460 (build-system r-build-system)
26461 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
26462 (synopsis "Quantitative analysis of mass spectrometry data")
26463 (description
26464 "This package provides a complete analysis pipeline for matrix-assisted
26465 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
26466 two-dimensional mass spectrometry data. In addition to commonly used plotting
26467 and processing methods it includes distinctive features, namely baseline
26468 subtraction methods such as morphological filters (TopHat) or the
26469 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
26470 alignment using warping functions, handling of replicated measurements as well
26471 as allowing spectra with different resolutions.")
26472 (license license:gpl3+)))
26473
26474 (define-public r-scattermore
26475 (package
26476 (name "r-scattermore")
26477 (version "0.7")
26478 (source
26479 (origin
26480 (method url-fetch)
26481 (uri (cran-uri "scattermore" version))
26482 (sha256
26483 (base32
26484 "18nzlprmphkvjg946h10h2qq0wbkmv2526p8di6k2xl4gccq0qpk"))))
26485 (properties `((upstream-name . "scattermore")))
26486 (build-system r-build-system)
26487 (propagated-inputs
26488 `(("r-ggplot2" ,r-ggplot2)
26489 ("r-scales" ,r-scales)))
26490 (home-page "https://github.com/exaexa/scattermore")
26491 (synopsis "Scatterplots with more points")
26492 (description
26493 "This package provides C-based tools for converting large scatterplot
26494 data to rasters. It speeds up plotting of data with millions of points.")
26495 (license license:gpl3+)))
26496
26497 (define-public r-seuratobject
26498 (package
26499 (name "r-seuratobject")
26500 (version "4.0.0")
26501 (source
26502 (origin
26503 (method url-fetch)
26504 (uri (cran-uri "SeuratObject" version))
26505 (sha256
26506 (base32
26507 "03k27z7g76wy7mfja2cpxq183xk0906k9gxb2j6p1zw341gv4gii"))))
26508 (properties `((upstream-name . "SeuratObject")))
26509 (build-system r-build-system)
26510 (propagated-inputs
26511 `(("r-matrix" ,r-matrix)
26512 ("r-rcpp" ,r-rcpp)
26513 ("r-rcppeigen" ,r-rcppeigen)
26514 ("r-rlang" ,r-rlang)
26515 ("r-sctransform" ,r-sctransform)))
26516 (home-page "https://satijalab.org/seurat")
26517 (synopsis "Data structures for single cell data")
26518 (description
26519 "This package defines S4 classes for single-cell genomic data and
26520 associated information, such as dimensionality reduction embeddings,
26521 nearest-neighbor graphs, and spatially-resolved coordinates. It provides data
26522 access methods and R-native hooks to ensure the Seurat object is familiar to
26523 other R users.")
26524 (license license:gpl3)))
26525
26526 (define-public r-seurat
26527 (package
26528 (name "r-seurat")
26529 (version "4.0.1")
26530 (source (origin
26531 (method url-fetch)
26532 (uri (cran-uri "Seurat" version))
26533 (sha256
26534 (base32
26535 "17cmp9mimvykb8ny796dn1zwmvg0pwwjw1zcixyamc5q1lwnxi3p"))))
26536 (properties `((upstream-name . "Seurat")))
26537 (build-system r-build-system)
26538 (propagated-inputs
26539 `(("r-cluster" ,r-cluster)
26540 ("r-cowplot" ,r-cowplot)
26541 ("r-fitdistrplus" ,r-fitdistrplus)
26542 ("r-future" ,r-future)
26543 ("r-future-apply" ,r-future-apply)
26544 ("r-ggplot2" ,r-ggplot2)
26545 ("r-ggrepel" ,r-ggrepel)
26546 ("r-ggridges" ,r-ggridges)
26547 ("r-httr" ,r-httr)
26548 ("r-ica" ,r-ica)
26549 ("r-igraph" ,r-igraph)
26550 ("r-irlba" ,r-irlba)
26551 ("r-jsonlite" ,r-jsonlite)
26552 ("r-kernsmooth" ,r-kernsmooth)
26553 ("r-leiden" ,r-leiden)
26554 ("r-lmtest" ,r-lmtest)
26555 ("r-mass" ,r-mass)
26556 ("r-matrix" ,r-matrix)
26557 ("r-matrixstats" ,r-matrixstats)
26558 ("r-miniui" ,r-miniui)
26559 ("r-patchwork" ,r-patchwork)
26560 ("r-pbapply" ,r-pbapply)
26561 ("r-plotly" ,r-plotly)
26562 ("r-png" ,r-png)
26563 ("r-rann" ,r-rann)
26564 ("r-rcolorbrewer" ,r-rcolorbrewer)
26565 ("r-rcpp" ,r-rcpp)
26566 ("r-rcppannoy" ,r-rcppannoy)
26567 ("r-rcppeigen" ,r-rcppeigen)
26568 ("r-rcppprogress" ,r-rcppprogress)
26569 ("r-reticulate" ,r-reticulate)
26570 ("r-rlang" ,r-rlang)
26571 ("r-rocr" ,r-rocr)
26572 ("r-rtsne" ,r-rtsne)
26573 ("r-scales" ,r-scales)
26574 ("r-scattermore" ,r-scattermore)
26575 ("r-sctransform" ,r-sctransform)
26576 ("r-seuratobject" ,r-seuratobject)
26577 ("r-shiny" ,r-shiny)
26578 ("r-spatstat-core" ,r-spatstat-core)
26579 ("r-spatstat-geom" ,r-spatstat-geom)
26580 ("r-tibble" ,r-tibble)
26581 ("r-uwot" ,r-uwot)))
26582 (home-page "http://www.satijalab.org/seurat")
26583 (synopsis "Seurat is an R toolkit for single cell genomics")
26584 (description
26585 "This package is an R package designed for QC, analysis, and
26586 exploration of single cell RNA-seq data. It easily enables widely-used
26587 analytical techniques, including the identification of highly variable genes,
26588 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
26589 algorithms; density clustering, hierarchical clustering, k-means, and the
26590 discovery of differentially expressed genes and markers.")
26591 (license license:gpl3)))
26592
26593 (define-public r-phangorn
26594 (package
26595 (name "r-phangorn")
26596 (version "2.5.5")
26597 (source
26598 (origin
26599 (method url-fetch)
26600 (uri (cran-uri "phangorn" version))
26601 (sha256
26602 (base32
26603 "0ihkaykqjmf80d8wrk3saphxvnv58zma6pd13633bd3cwanc33f5"))))
26604 (build-system r-build-system)
26605 (propagated-inputs
26606 `(("r-ape" ,r-ape)
26607 ("r-fastmatch" ,r-fastmatch)
26608 ("r-igraph" ,r-igraph)
26609 ("r-magrittr" ,r-magrittr)
26610 ("r-matrix" ,r-matrix)
26611 ("r-quadprog" ,r-quadprog)
26612 ("r-rcpp" ,r-rcpp)))
26613 (home-page "https://github.com/KlausVigo/phangorn")
26614 (synopsis "Phylogenetic analysis in R")
26615 (description
26616 "Phangorn is a package for phylogenetic analysis in R. It supports
26617 estimation of phylogenetic trees and networks using Maximum Likelihood,
26618 Maximum Parsimony, distance methods and Hadamard conjugation.")
26619 (license license:gpl2+)))
26620
26621 (define-public r-diversitree
26622 (package
26623 (name "r-diversitree")
26624 (version "0.9-15")
26625 (source
26626 (origin
26627 (method url-fetch)
26628 (uri (cran-uri "diversitree" version))
26629 (sha256
26630 (base32
26631 "1sk3sgn5hi04978s5s7gy6pzp28g3v9rglmiamlgs96c9wyyyff7"))))
26632 (build-system r-build-system)
26633 (native-inputs
26634 `(("gfortran" ,gfortran)))
26635 (inputs `(("fftw" ,fftw) ("gsl" ,gsl)))
26636 (propagated-inputs
26637 `(("r-ape" ,r-ape)
26638 ("r-desolve" ,r-desolve)
26639 ("r-rcpp" ,r-rcpp)
26640 ("r-subplex" ,r-subplex)))
26641 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
26642 (synopsis "Comparative 'phylogenetic' analyses of diversification")
26643 (description "This package contains a number of comparative \"phylogenetic\"
26644 methods, mostly focusing on analysing diversification and character evolution.
26645 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
26646 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
26647 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
26648 include Markov models of discrete and continuous trait evolution and constant
26649 rate speciation and extinction.")
26650 (license license:gpl2+)))
26651
26652 (define-public r-calculus
26653 (package
26654 (name "r-calculus")
26655 (version "0.3.0")
26656 (source
26657 (origin
26658 (method url-fetch)
26659 (uri (cran-uri "calculus" version))
26660 (sha256
26661 (base32
26662 "1wa5ap89cfcp0ancj9ivx5s2y0wqr2vmp9y115g7f6g772jwhscj"))))
26663 (properties `((upstream-name . "calculus")))
26664 (build-system r-build-system)
26665 (propagated-inputs
26666 `(("r-rcpp" ,r-rcpp)))
26667 (native-inputs
26668 `(("r-knitr" ,r-knitr)))
26669 (home-page "https://github.com/eguidotti/calculus")
26670 (synopsis "High dimensional numerical and symbolic calculus")
26671 (description
26672 "Efficient C++ optimized functions for numerical and symbolic calculus.
26673 It includes basic symbolic arithmetic, tensor calculus, Einstein summing
26674 convention, fast computation of the Levi-Civita symbol and generalized
26675 Kronecker delta, Taylor series expansion, multivariate Hermite polynomials,
26676 accurate high-order derivatives, differential operators (Gradient, Jacobian,
26677 Hessian, Divergence, Curl, Laplacian) and numerical integration in arbitrary
26678 orthogonal coordinate systems: cartesian, polar, spherical, cylindrical,
26679 parabolic or user defined by custom scale factors.")
26680 (license license:gpl3)))
26681
26682 (define-public r-decon
26683 (package
26684 (name "r-decon")
26685 (version "1.2-4")
26686 (source
26687 (origin
26688 (method url-fetch)
26689 (uri (cran-uri "decon" version))
26690 (sha256
26691 (base32
26692 "1v4l0xq29rm8mks354g40g9jxn0didzlxg3g7z08m0gvj29zdj7s"))))
26693 (properties `((upstream-name . "decon")))
26694 (build-system r-build-system)
26695 (native-inputs
26696 `(("gfortran" ,gfortran)))
26697 (home-page
26698 "https://cran.r-project.org/web/packages/decon/")
26699 (synopsis "Deconvolution Estimation in Measurement Error Models")
26700 (description
26701 "This package contains a collection of functions to deal with
26702 nonparametric measurement error problems using deconvolution
26703 kernel methods. We focus two measurement error models in the
26704 package: (1) an additive measurement error model, where the
26705 goal is to estimate the density or distribution function from
26706 contaminated data; (2) nonparametric regression model with
26707 errors-in-variables. The R functions allow the measurement errors
26708 to be either homoscedastic or heteroscedastic. To make the
26709 deconvolution estimators computationally more efficient in R,
26710 we adapt the \"Fast Fourier Transform\" (FFT) algorithm for
26711 density estimation with error-free data to the deconvolution
26712 kernel estimation. Several methods for the selection of the
26713 data-driven smoothing parameter are also provided in the package.
26714 See details in: Wang, X.F. and Wang, B. (2011). Deconvolution
26715 estimation in measurement error models: The R package decon.
26716 Journal of Statistical Software, 39(10), 1-24.")
26717 (license license:gpl3+)))
26718
26719 (define-public r-locpol
26720 (package
26721 (name "r-locpol")
26722 (version "0.7-0")
26723 (source
26724 (origin
26725 (method url-fetch)
26726 (uri (cran-uri "locpol" version))
26727 (sha256
26728 (base32
26729 "1p915n0l09kbwkly627074jslxl01yssp1rf0c7sygvsw6sgy5lm"))))
26730 (properties `((upstream-name . "locpol")))
26731 (build-system r-build-system)
26732 (home-page
26733 "https://cran.r-project.org/web/packages/locpol/")
26734 (synopsis "Kernel Local Polynomial Regression")
26735 (description
26736 "Computes local polynomial estimators for the regression and
26737 also density. It comprises several different utilities to handle
26738 kernel estimators.")
26739 (license license:gpl2+)))
26740
26741 (define-public r-lpme
26742 (package
26743 (name "r-lpme")
26744 (version "1.1.1")
26745 (source
26746 (origin
26747 (method url-fetch)
26748 (uri (cran-uri "lpme" version))
26749 (sha256
26750 (base32
26751 "0si90nkgl8bqk8yvd2igdsrngiwqh8891072pfpzipifnd0f5448"))))
26752 (properties `((upstream-name . "lpme")))
26753 (build-system r-build-system)
26754 (propagated-inputs
26755 `(("r-decon" ,r-decon)
26756 ("r-flexmix" ,r-flexmix)
26757 ("r-locpol" ,r-locpol)
26758 ("r-rcpp" ,r-rcpp)
26759 ("r-rcpparmadillo" ,r-rcpparmadillo)))
26760 (home-page
26761 "https://cran.r-project.org/web/packages/lpme/")
26762 (synopsis "Nonparametric Estimation of Measurement Error Models")
26763 (description
26764 "Provide nonparametric methods for mean regression model,
26765 modal regression and conditional density estimation in the
26766 presence/absence of measurement error. Bandwidth selection is
26767 also provided for each method.")
26768 (license license:gpl2+)))
26769
26770 (define-public r-aws-signature
26771 (package
26772 (name "r-aws-signature")
26773 (version "0.6.0")
26774 (source
26775 (origin
26776 (method url-fetch)
26777 (uri (cran-uri "aws.signature" version))
26778 (sha256
26779 (base32
26780 "15llpcnrdq4y6jsn7079yjmgbr5d1wgy2ymsm3jj3gkrd5l4zzpp"))))
26781 (properties `((upstream-name . "aws.signature")))
26782 (build-system r-build-system)
26783 (propagated-inputs
26784 `(("r-base64enc" ,r-base64enc)
26785 ("r-digest" ,r-digest)))
26786 (home-page "https://github.com/cloudyr/aws.signature")
26787 (synopsis "Amazon Web Services Request Signatures")
26788 (description
26789 "This package generates version 2 and 4 request signatures for Amazon Web
26790 Services (AWS) and provides a mechanism for retrieving credentials from
26791 environment variables, AWS credentials files, and EC2 instance metadata. For
26792 use on EC2 instances, the package 'aws.ec2metadata' is suggested.")
26793 (license license:gpl2+)))
26794
26795 (define-public r-aws-s3
26796 (package
26797 (name "r-aws-s3")
26798 (version "0.3.21")
26799 (source
26800 (origin
26801 (method url-fetch)
26802 (uri (cran-uri "aws.s3" version))
26803 (sha256
26804 (base32
26805 "132cczq0ml7lpp2yl6l4p99dn1zihrncnpa6wyad4m9mnr50a8dx"))))
26806 (properties `((upstream-name . "aws.s3")))
26807 (build-system r-build-system)
26808 (propagated-inputs
26809 `(("r-aws-signature" ,r-aws-signature)
26810 ("r-base64enc" ,r-base64enc)
26811 ("r-curl" ,r-curl)
26812 ("r-digest" ,r-digest)
26813 ("r-httr" ,r-httr)
26814 ("r-xml2" ,r-xml2)))
26815 (home-page "https://github.com/cloudyr/aws.s3")
26816 (synopsis "AWS S3 Client Package")
26817 (description
26818 "This package provides a simple client package for the Amazon Web
26819 Services (AWS) Simple Storage Service (S3) REST API.")
26820 (license license:gpl2+)))
26821
26822 (define-public r-lgr
26823 (package
26824 (name "r-lgr")
26825 (version "0.4.2")
26826 (source (origin
26827 (method url-fetch)
26828 (uri (cran-uri "lgr" version))
26829 (sha256
26830 (base32
26831 "0k4kacjk7swm3gmdpha1rg44xb29vzvhvx48jhpb78glj5c9phyr"))))
26832 (build-system r-build-system)
26833 (propagated-inputs
26834 `(("r-r6" ,r-r6)))
26835 (native-inputs
26836 `(("r-knitr" ,r-knitr)))
26837 (home-page "https://s-fleck.github.io/lgr/")
26838 (synopsis "Fully featured logging framework")
26839 (description "This package offers a flexible, feature-rich yet
26840 light-weight logging framework based on @code{R6} classes. It supports
26841 hierarchical loggers, custom log levels, arbitrary data fields in log events,
26842 logging to plaintext, JSON, (rotating) files, memory buffers, and databases, as
26843 well as email and push notifications.")
26844 (license license:expat)))
26845
26846 (define-public r-mlr3measures
26847 (package
26848 (name "r-mlr3measures")
26849 (version "0.3.1")
26850 (source (origin
26851 (method url-fetch)
26852 (uri (cran-uri "mlr3measures" version))
26853 (sha256
26854 (base32
26855 "18jk4kdj9771r16smz7xhmmiilcdg1qlavln5hrpvkx780zh3hj6"))))
26856 (build-system r-build-system)
26857 (propagated-inputs
26858 `(("r-checkmate" ,r-checkmate)
26859 ("r-prroc" ,r-prroc)))
26860 (home-page "https://mlr3measures.mlr-org.com/")
26861 (synopsis "Performance measures for mlr3")
26862 (description "This package implements multiple performance measures for
26863 supervised learning. It includes over 40 measures for regression and
26864 classification. Additionally, meta information about the performance measures
26865 can be queried, e.g. what the best and worst possible performances scores
26866 are.")
26867 (license license:lgpl3)))
26868
26869 (define-public r-mlr3misc
26870 (package
26871 (name "r-mlr3misc")
26872 (version "0.7.0")
26873 (source (origin
26874 (method url-fetch)
26875 (uri (cran-uri "mlr3misc" version))
26876 (sha256
26877 (base32
26878 "19k3l2d6wnqvdng0m7p54rrlvwl5457lcy7bg82m2bbpqxi8qch3"))))
26879 (build-system r-build-system)
26880 (propagated-inputs
26881 `(("r-backports" ,r-backports)
26882 ("r-checkmate" ,r-checkmate)
26883 ("r-data-table" ,r-data-table)
26884 ("r-r6" ,r-r6)))
26885 (home-page "https://mlr3misc.mlr-org.com/")
26886 (synopsis "Helper functions for mlr3")
26887 (description "@code{mlr3misc} provides frequently used helper functions
26888 and assertions used in @code{mlr3} and its companion packages. It comes with
26889 helper functions for functional programming, for printing, to work with
26890 @code{data.table}, as well as some generally useful @code{R6} classes. This
26891 package also supersedes the package @code{BBmisc}.")
26892 (license license:lgpl3)))
26893
26894 (define-public r-paradox
26895 (package
26896 (name "r-paradox")
26897 (version "0.7.1")
26898 (source (origin
26899 (method url-fetch)
26900 (uri (cran-uri "paradox" version))
26901 (sha256
26902 (base32
26903 "1difp0bzsfxcmbm1snahh3i6417k1a2w4mnjx65p20n2yiclmrgs"))))
26904 (build-system r-build-system)
26905 (propagated-inputs
26906 `(("r-backports" ,r-backports)
26907 ("r-checkmate" ,r-checkmate)
26908 ("r-data-table" ,r-data-table)
26909 ("r-mlr3misc" ,r-mlr3misc)
26910 ("r-r6" ,r-r6)))
26911 (home-page "https://paradox.mlr-org.com/")
26912 (synopsis "Define and work with parameter spaces for complex algorithms")
26913 (description "With this package it is possible to define parameter spaces,
26914 constraints and dependencies for arbitrary algorithms, and to program on such
26915 spaces. It also includes statistical designs and random samplers. Objects are
26916 implemented as @code{R6} classes.")
26917 (license license:lgpl3)))
26918
26919 (define-public r-mlr3
26920 (package
26921 (name "r-mlr3")
26922 (version "0.11.0")
26923 (source (origin
26924 (method url-fetch)
26925 (uri (cran-uri "mlr3" version))
26926 (sha256
26927 (base32
26928 "0qh9vdac1als2123wf51bwa7spdqk33iydlawi5n5dpci892iahl"))))
26929 (build-system r-build-system)
26930 (propagated-inputs
26931 `(("r-r6" ,r-r6)
26932 ("r-backports" ,r-backports)
26933 ("r-checkmate" ,r-checkmate)
26934 ("r-data-table" ,r-data-table)
26935 ("r-digest" ,r-digest)
26936 ("r-future-apply" ,r-future-apply)
26937 ("r-lgr" ,r-lgr)
26938 ("r-mlbench" ,r-mlbench)
26939 ("r-mlr3measures" ,r-mlr3measures)
26940 ("r-mlr3misc" ,r-mlr3misc)
26941 ("r-palmerpenguins" ,r-palmerpenguins)
26942 ("r-paradox" ,r-paradox)
26943 ("r-parallelly" ,r-parallelly)
26944 ("r-uuid" ,r-uuid)))
26945 (home-page "https://mlr3.mlr-org.com/")
26946 (synopsis "Machine Learning in R - Next Generation")
26947 (description "@code{mlr3} enables efficient, object-oriented programming
26948 on the building blocks of machine learning. It provides @code{R6} objects for
26949 tasks, learners, resamplings, and measures. The package is geared towards
26950 scalability and larger datasets by supporting parallelization and out-of-memory
26951 data-backends like databases. While @code{mlr3} focuses on the core
26952 computational operations, add-on packages provide additional functionality.")
26953 (license license:lgpl3)))
26954
26955 (define-public r-mlr3learners
26956 (package
26957 (name "r-mlr3learners")
26958 (version "0.4.3")
26959 (source (origin
26960 (method url-fetch)
26961 (uri (cran-uri "mlr3learners" version))
26962 (sha256
26963 (base32
26964 "1wxlpzz3hpkn77n4ag1v868dmp140j1pmrhynsv5xfgk9fg0w7ri"))))
26965 (build-system r-build-system)
26966 (propagated-inputs
26967 `(("r-data-table" ,r-data-table)
26968 ("r-mlr3" ,r-mlr3)
26969 ("r-mlr3misc" ,r-mlr3misc)
26970 ("r-paradox" ,r-paradox)
26971 ("r-r6" ,r-r6)))
26972 (home-page "https://mlr3learners.mlr-org.com/")
26973 (synopsis "Recommended Learners for @code{mlr3}")
26974 (description "@code{mlr3learners} extends @code{mlr3} and @code{mlr3proba}
26975 with interfaces to essential machine learning packages on CRAN. This includes,
26976 but is not limited to: (penalized) linear and logistic regression, linear and
26977 quadratic discriminant analysis, k-nearest neighbors, naive Bayes, support
26978 vector machines, and gradient boosting.")
26979 (license license:lgpl3)))
26980
26981 (define-public r-bbotk
26982 (package
26983 (name "r-bbotk")
26984 (version "0.3.1")
26985 (source
26986 (origin
26987 (method url-fetch)
26988 (uri (cran-uri "bbotk" version))
26989 (sha256
26990 (base32
26991 "1f29wxnxr73c4yp5afk05jqggpm7k1z8wiak8xsyw68h7xflq550"))))
26992 (properties `((upstream-name . "bbotk")))
26993 (build-system r-build-system)
26994 (propagated-inputs
26995 `(("r-checkmate" ,r-checkmate)
26996 ("r-data-table" ,r-data-table)
26997 ("r-lgr" ,r-lgr)
26998 ("r-mlr3misc" ,r-mlr3misc)
26999 ("r-paradox" ,r-paradox)
27000 ("r-r6" ,r-r6)))
27001 (native-inputs
27002 `(("r-knitr" ,r-knitr)))
27003 (home-page "https://bbotk.mlr-org.com")
27004 (synopsis "Black-Box Optimization Toolkit")
27005 (description "This package provides a common framework for optimization of
27006 black-box functions for other packages, e.g. @code{mlr3}. It offers various
27007 optimization methods e.g. grid search, random search and generalized simulated
27008 annealing.")
27009 (license license:lgpl3)))
27010
27011 (define-public r-mlr3tuning
27012 (package
27013 (name "r-mlr3tuning")
27014 (version "0.8.0")
27015 (source (origin
27016 (method url-fetch)
27017 (uri (cran-uri "mlr3tuning" version))
27018 (sha256
27019 (base32
27020 "16rvsf0jf06yvalydbs7zzn2994hvvyfw975ydiyv3wy1qzgr8bv"))))
27021 (build-system r-build-system)
27022 (propagated-inputs
27023 `(("r-bbotk" ,r-bbotk)
27024 ("r-checkmate" ,r-checkmate)
27025 ("r-data-table" ,r-data-table)
27026 ("r-lgr" ,r-lgr)
27027 ("r-mlr3" ,r-mlr3)
27028 ("r-mlr3misc" ,r-mlr3misc)
27029 ("r-paradox" ,r-paradox)
27030 ("r-r6" ,r-r6)))
27031 (home-page "https://mlr3tuning.mlr-org.com/")
27032 (synopsis "Tuning for @code{mlr3}")
27033 (description "@code{mlr3tuning} implements methods for hyperparameter
27034 tuning, e.g. Grid Search, Random Search, or Simulated Annealing. Various
27035 termination criteria can be set and combined. The class @code{AutoTuner} provides a
27036 convenient way to perform nested resampling in combination with @code{mlr3}.")
27037 (license license:lgpl3)))
27038
27039 (define-public r-fontliberation
27040 (package
27041 (name "r-fontliberation")
27042 (version "0.1.0")
27043 (source
27044 (origin
27045 (method url-fetch)
27046 (uri (cran-uri "fontLiberation" version))
27047 (sha256
27048 (base32
27049 "1w1rl0g4ayyp8lwppmz9yzj9cizg7i50g07216jkm1q5w0is9pmc"))))
27050 (properties
27051 `((upstream-name . "fontLiberation")))
27052 (build-system r-build-system)
27053 (home-page "https://cran.r-project.org/package=fontLiberation")
27054 (synopsis "Liberation fonts")
27055 (description
27056 "This package provides a placeholder for the Liberation fontset intended
27057 for the fontquiver package. This fontset covers the 12 combinations of
27058 families (sans, serif, mono) and faces (plain, bold, italic, bold italic)
27059 supported in R graphics devices.")
27060 (license license:silofl1.1)))
27061
27062 (define-public r-fontbitstreamvera
27063 (package
27064 (name "r-fontbitstreamvera")
27065 (version "0.1.1")
27066 (source
27067 (origin
27068 (method url-fetch)
27069 (uri (cran-uri "fontBitstreamVera" version))
27070 (sha256
27071 (base32
27072 "0nipdlmhjv1wr3aidcl97nk6mppdkd65krgwqnhdsnv0jpfv761j"))))
27073 (properties
27074 `((upstream-name . "fontBitstreamVera")))
27075 (build-system r-build-system)
27076 (home-page "https://cran.r-project.org/package=fontBitstreamVera")
27077 (synopsis "Fonts for fontquiver")
27078 (description
27079 "This package is a placeholder for the Bitstream Vera font. It is
27080 intended for the fontquiver package.")
27081 (license
27082 (license:fsdg-compatible
27083 "https://www.gnome.org/fonts/#Final_Bitstream_Vera_Fonts"
27084 "The Font Software may be sold as part of a larger software package but
27085 no copy of one or more of the Font Software typefaces may be sold by
27086 itself."))))
27087
27088 (define-public r-fontquiver
27089 (package
27090 (name "r-fontquiver")
27091 (version "0.2.1")
27092 (source
27093 (origin
27094 (method url-fetch)
27095 (uri (cran-uri "fontquiver" version))
27096 (sha256
27097 (base32
27098 "0qv3i9hch7cygl9983s3w68wfh5qvym2jkm52pp06p6mq8a1i1wm"))))
27099 (properties `((upstream-name . "fontquiver")))
27100 (build-system r-build-system)
27101 (propagated-inputs
27102 `(("r-fontbitstreamvera" ,r-fontbitstreamvera)
27103 ("r-fontliberation" ,r-fontliberation)))
27104 (home-page "https://cran.r-project.org/package=fontquiver")
27105 (synopsis "Set of installed fonts")
27106 (description
27107 "This package provides a set of fonts. This is useful when you want to
27108 avoid system fonts to make sure your outputs are reproducible.")
27109 (license license:gpl3)))
27110
27111 (define-public r-freetypeharfbuzz
27112 (package
27113 (name "r-freetypeharfbuzz")
27114 (version "0.2.6")
27115 (source
27116 (origin
27117 (method url-fetch)
27118 (uri (cran-uri "freetypeharfbuzz" version))
27119 (sha256
27120 (base32
27121 "0r3icgnq3jk4fm6z92cmhzdmflbk5df8zsmjg0dzpc4y48xafnk7"))))
27122 (properties
27123 `((upstream-name . "freetypeharfbuzz")))
27124 (build-system r-build-system)
27125 (arguments
27126 `(#:phases
27127 (modify-phases %standard-phases
27128 (add-after 'unpack 'prepare-static-libraries
27129 (lambda* (#:key inputs #:allow-other-keys)
27130 (mkdir-p "src/target/include")
27131 (let ((freetype (assoc-ref inputs "static-freetype"))
27132 (harfbuzz (assoc-ref inputs "static-harfbuzz")))
27133 (substitute* "src/Makevars.in"
27134 (("include @MK_FILE@") "") ; do not build static libs
27135 (("^HB_STATIC_LIB =.*")
27136 (string-append "HB_STATIC_LIB = " harfbuzz "/lib/libharfbuzz.a\n"))
27137 (("^FT_STATIC_LIB =.*")
27138 (string-append "FT_STATIC_LIB = " freetype "/lib/libfreetype.a\n")))
27139 (copy-recursively (string-append freetype "/include")
27140 "src/target/include")
27141 (copy-recursively (string-append harfbuzz "/include")
27142 "src/target/include")))))))
27143 (propagated-inputs
27144 `(("r-fontquiver" ,r-fontquiver)))
27145 ;; This may defeat the purpose of this package as our versions of freetype
27146 ;; and harfbuzz obviously differ from the tarballs offered by this
27147 ;; project. On the other hand, Guix arguably does a better job at
27148 ;; "ensur[ing] deterministic computation".
27149 (native-inputs
27150 `(("static-freetype"
27151 ,(package
27152 (inherit (static-package freetype))
27153 (arguments
27154 `(#:configure-flags
27155 (list "--enable-static=yes"
27156 "--with-pic=yes"
27157 "--without-zlib"
27158 "--without-bzip2"
27159 "--without-png"
27160 "--without-harfbuzz")))))
27161 ("static-harfbuzz"
27162 ,(package
27163 (inherit (static-package harfbuzz))
27164 (arguments
27165 `(#:tests? #false ; fail because shared library is disabled
27166 #:configure-flags
27167 (list "--enable-static=yes"
27168 "--enable-shared=no"
27169 "--with-pic=yes"
27170 "--with-freetype=yes"
27171 "--without-icu"
27172 "--without-cairo"
27173 "--without-fontconfig"
27174 "--without-glib")))))))
27175 (inputs
27176 `(("zlib" ,zlib)))
27177 (home-page "https://cran.r-project.org/package=freetypeharfbuzz")
27178 (synopsis "Deterministic computation of text box metrics")
27179 (description
27180 "Unlike other tools that dynamically link to the Cairo stack,
27181 freetypeharfbuzz is statically linked to specific versions of the FreeType and
27182 harfbuzz libraries. This ensures deterministic computation of text box
27183 extents for situations where reproducible results are crucial (for instance
27184 unit tests of graphics).")
27185 (license license:gpl3)))
27186
27187 (define-public r-vdiffr
27188 (package
27189 (name "r-vdiffr")
27190 (version "0.3.3")
27191 (source
27192 (origin
27193 (method url-fetch)
27194 (uri (cran-uri "vdiffr" version))
27195 (sha256
27196 (base32
27197 "0i0xdr8dakbkkgrhp0zvlnv3rxhc8h5naqq416mr5zv9q8i4p8jc"))
27198 (snippet
27199 '(begin
27200 (delete-file "inst/htmlwidgets/lib/jquery.min.js")))))
27201 (properties `((upstream-name . "vdiffr")))
27202 (build-system r-build-system)
27203 (arguments
27204 `(#:phases
27205 (modify-phases %standard-phases
27206 (add-after 'unpack 'process-javascript
27207 (lambda* (#:key inputs #:allow-other-keys)
27208 (with-directory-excursion "inst/htmlwidgets/lib/"
27209 (let ((source (assoc-ref inputs "js-jquery"))
27210 (target "jquery.min.js"))
27211 (format #true "Processing ~a --> ~a~%"
27212 source target)
27213 (invoke "esbuild" source "--minify"
27214 (string-append "--outfile=" target)))))))))
27215 (inputs
27216 `(("freetype" ,freetype)
27217 ("harfbuzz" ,harfbuzz)))
27218 (propagated-inputs
27219 `(("r-bh" ,r-bh)
27220 ("r-devtools" ,r-devtools)
27221 ("r-diffobj" ,r-diffobj)
27222 ("r-fontquiver" ,r-fontquiver)
27223 ("r-freetypeharfbuzz" ,r-freetypeharfbuzz)
27224 ("r-gdtools" ,r-gdtools)
27225 ("r-glue" ,r-glue)
27226 ("r-htmltools" ,r-htmltools)
27227 ("r-htmlwidgets" ,r-htmlwidgets)
27228 ("r-purrr" ,r-purrr)
27229 ("r-r6" ,r-r6)
27230 ("r-rcpp" ,r-rcpp)
27231 ("r-rlang" ,r-rlang)
27232 ("r-shiny" ,r-shiny)
27233 ("r-testthat" ,r-testthat)
27234 ("r-usethis" ,r-usethis)
27235 ("r-xml2" ,r-xml2)))
27236 (native-inputs
27237 `(("esbuild" ,esbuild)
27238 ("js-jquery"
27239 ,(origin
27240 (method url-fetch)
27241 (uri "https://code.jquery.com/jquery-1.12.4.js")
27242 (sha256
27243 (base32
27244 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))))
27245 (home-page "https://github.com/r-lib/vdiffr")
27246 (synopsis "Visual regression testing and graphical diffing")
27247 (description
27248 "This package is an extension to the testthat package that makes it easy
27249 to add graphical unit tests. It provides a Shiny application to manage the
27250 test cases.")
27251 (license license:gpl3)))
27252
27253 (define-public r-highlight
27254 (package
27255 (name "r-highlight")
27256 (version "0.5.0")
27257 (source
27258 (origin
27259 (method url-fetch)
27260 (uri (cran-uri "highlight" version))
27261 (sha256
27262 (base32
27263 "1shar4y07wyixg0ichdrn2xhgwkl3mv2pxkalqzisc69w605b3hf"))))
27264 (properties `((upstream-name . "highlight")))
27265 (build-system r-build-system)
27266 (home-page "https://github.com/hadley/highlight")
27267 (synopsis "Syntax highlighter for R code")
27268 (description
27269 "This package provides a syntax highlighter for R code based on the
27270 results of the R parser. It supports rendering in HTML and LaTeX markup. It
27271 includes a custom Sweave driver performing syntax highlighting of R code
27272 chunks.")
27273 (license license:gpl3+)))
27274
27275 (define-public r-clustree
27276 (package
27277 (name "r-clustree")
27278 (version "0.4.3")
27279 (source
27280 (origin
27281 (method url-fetch)
27282 (uri (cran-uri "clustree" version))
27283 (sha256
27284 (base32
27285 "0lxydy2f83qqd5dhlp2l546jax759l43b29j6g82079yzg1szwsz"))))
27286 (properties `((upstream-name . "clustree")))
27287 (build-system r-build-system)
27288 (propagated-inputs
27289 `(("r-checkmate" ,r-checkmate)
27290 ("r-dplyr" ,r-dplyr)
27291 ("r-ggplot2" ,r-ggplot2)
27292 ("r-ggraph" ,r-ggraph)
27293 ("r-ggrepel" ,r-ggrepel)
27294 ("r-igraph" ,r-igraph)
27295 ("r-rlang" ,r-rlang)
27296 ("r-tidygraph" ,r-tidygraph)
27297 ("r-viridis" ,r-viridis)))
27298 (native-inputs
27299 `(("r-knitr" ,r-knitr)))
27300 (home-page "https://github.com/lazappi/clustree")
27301 (synopsis "Visualize clusterings at different resolutions")
27302 (description
27303 "Deciding what resolution to use can be a difficult question when
27304 approaching a clustering analysis. One way to approach this problem is to
27305 look at how samples move as the number of clusters increases. This package
27306 allows you to produce clustering trees, a visualization for interrogating
27307 clusterings as resolution increases.")
27308 (license license:gpl3)))
27309
27310 (define-public r-textshaping
27311 (package
27312 (name "r-textshaping")
27313 (version "0.3.2")
27314 (source
27315 (origin
27316 (method url-fetch)
27317 (uri (cran-uri "textshaping" version))
27318 (sha256
27319 (base32
27320 "0fqh4z505b2qriqcj70g2hhdgiawd3w2rs9rqxdwizz5vk8jjygx"))))
27321 (properties `((upstream-name . "textshaping")))
27322 (build-system r-build-system)
27323 (inputs
27324 `(("freetype" ,freetype)
27325 ("fribidi" ,fribidi)
27326 ("harfbuzz" ,harfbuzz)
27327 ("zlib" ,zlib)))
27328 (propagated-inputs
27329 `(("r-cpp11" ,r-cpp11)
27330 ("r-systemfonts" ,r-systemfonts)))
27331 (native-inputs
27332 `(("pkg-config" ,pkg-config)
27333 ("r-knitr" ,r-knitr)))
27334 (home-page "https://github.com/r-lib/textshaping")
27335 (synopsis "Bindings to the HarfBuzz and Fribidi libraries for text shaping")
27336 (description
27337 "This package provides access to the text shaping functionality in the
27338 HarfBuzz library and the bidirectional algorithm in the Fribidi library. This
27339 is a low-level utility package mainly for graphic devices that expands upon
27340 the font tool-set provided by the @code{systemfonts} package.")
27341 (license license:expat)))
27342
27343 (define-public r-ragg
27344 (package
27345 (name "r-ragg")
27346 (version "1.1.1")
27347 (source
27348 (origin
27349 (method url-fetch)
27350 (uri (cran-uri "ragg" version))
27351 (sha256
27352 (base32
27353 "0nh1xxrxgdbq9anzkc6k3n519czp9hqyiizakm3m2gl4l4w0vp0q"))))
27354 (properties `((upstream-name . "ragg")))
27355 (build-system r-build-system)
27356 (inputs
27357 `(("freetype" ,freetype)
27358 ("libjpeg" ,libjpeg-turbo)
27359 ("libpng" ,libpng)
27360 ("libtiff" ,libtiff)
27361 ("zlib" ,zlib)))
27362 (propagated-inputs
27363 `(("r-systemfonts" ,r-systemfonts)
27364 ("r-textshaping" ,r-textshaping)))
27365 (native-inputs
27366 `(("pkg-config" ,pkg-config)))
27367 (home-page "https://ragg.r-lib.org")
27368 (synopsis "Graphic devices based on AGG")
27369 (description
27370 "Anti-Grain Geometry (AGG) is a high-quality and high-performance 2D
27371 drawing library. The ragg package provides a set of graphic devices based on
27372 AGG to use as alternative to the raster devices provided through the
27373 @code{grDevices} package.")
27374 (license license:expat)))
27375
27376 (define-public r-downlit
27377 (package
27378 (name "r-downlit")
27379 (version "0.2.1")
27380 (source
27381 (origin
27382 (method url-fetch)
27383 (uri (cran-uri "downlit" version))
27384 (sha256
27385 (base32
27386 "0z4fz7c9kyd9v72wl3iqs2wxspi975d6b0rgjr9lvg8a18maa9z6"))))
27387 (properties `((upstream-name . "downlit")))
27388 (build-system r-build-system)
27389 (propagated-inputs
27390 `(("r-brio" ,r-brio)
27391 ("r-digest" ,r-digest)
27392 ("r-evaluate" ,r-evaluate)
27393 ("r-fansi" ,r-fansi)
27394 ("r-rlang" ,r-rlang)
27395 ("r-vctrs" ,r-vctrs)
27396 ("r-yaml" ,r-yaml)))
27397 (home-page "https://downlit.r-lib.org/")
27398 (synopsis "Syntax highlighting and automatic linking")
27399 (description
27400 "This package provides syntax highlighting of R code, specifically
27401 designed for the needs of RMarkdown packages like @code{pkgdown},
27402 @code{hugodown}, and @code{bookdown}. It includes linking of function calls
27403 to their documentation on the web, and automatic translation of ANSI escapes
27404 in output to the equivalent HTML.")
27405 (license license:expat)))
27406
27407 (define-public r-pkgdown
27408 (package
27409 (name "r-pkgdown")
27410 (version "1.6.1")
27411 (source
27412 (origin
27413 (method url-fetch)
27414 (uri (cran-uri "pkgdown" version))
27415 (sha256
27416 (base32
27417 "1k31biyvxkv3xjc1yy3nzb9wfza3vbx97fv17nly5a6vlv7zqbs4"))))
27418 (properties `((upstream-name . "pkgdown")))
27419 (build-system r-build-system)
27420 (inputs `(("pandoc" ,pandoc)))
27421 (propagated-inputs
27422 `(("r-callr" ,r-callr)
27423 ("r-crayon" ,r-crayon)
27424 ("r-desc" ,r-desc)
27425 ("r-digest" ,r-digest)
27426 ("r-downlit" ,r-downlit)
27427 ("r-fs" ,r-fs)
27428 ("r-httr" ,r-httr)
27429 ("r-magrittr" ,r-magrittr)
27430 ("r-memoise" ,r-memoise)
27431 ("r-openssl" ,r-openssl)
27432 ("r-purrr" ,r-purrr)
27433 ("r-ragg" ,r-ragg)
27434 ("r-rematch2" ,r-rematch2)
27435 ("r-rlang" ,r-rlang)
27436 ("r-rmarkdown" ,r-rmarkdown)
27437 ("r-tibble" ,r-tibble)
27438 ("r-whisker" ,r-whisker)
27439 ("r-withr" ,r-withr)
27440 ("r-xml2" ,r-xml2)
27441 ("r-yaml" ,r-yaml)))
27442 (native-inputs
27443 `(("r-knitr" ,r-knitr)))
27444 (home-page "https://pkgdown.r-lib.org")
27445 (synopsis "Make static HTML documentation for an R package")
27446 (description
27447 "The goal of this package is to generate an attractive and useful website
27448 from a source package. @code{pkgdown} converts your documentation, vignettes,
27449 README file, and more to HTML making it easy to share information about your
27450 package online.")
27451 (license license:expat)))
27452
27453 (define-public r-prereg
27454 (package
27455 (name "r-prereg")
27456 (version "0.5.0")
27457 (source
27458 (origin
27459 (method url-fetch)
27460 (uri (cran-uri "prereg" version))
27461 (sha256
27462 (base32
27463 "0bck13iiaxwpqh0rd45mp1s5d8z62ggg0wa7rmyi8a65aywiypsi"))))
27464 (properties `((upstream-name . "prereg")))
27465 (build-system r-build-system)
27466 (propagated-inputs
27467 `(("r-rmarkdown" ,r-rmarkdown)))
27468 (home-page "https://github.com/crsh/prereg")
27469 (synopsis
27470 "R Markdown Templates to preregister Scientific Studies")
27471 (description
27472 "This package provides a collection of templates to author
27473 preregistration documents for scientific studies in PDF format.")
27474 (license license:gpl3)))
27475
27476 (define-public r-ez
27477 (package
27478 (name "r-ez")
27479 (version "4.4-0")
27480 (source
27481 (origin
27482 (method url-fetch)
27483 (uri (cran-uri "ez" version))
27484 (sha256
27485 (base32
27486 "0a58s94x576dfz7wcbivrr2hmdh5x1vy16zwkqp9fmdzqx38pagq"))))
27487 (properties `((upstream-name . "ez")))
27488 (build-system r-build-system)
27489 (propagated-inputs
27490 `(("r-car" ,r-car)
27491 ("r-ggplot2" ,r-ggplot2)
27492 ("r-lme4" ,r-lme4)
27493 ("r-mass" ,r-mass)
27494 ("r-matrix" ,r-matrix)
27495 ("r-mgcv" ,r-mgcv)
27496 ("r-plyr" ,r-plyr)
27497 ("r-reshape2" ,r-reshape2)
27498 ("r-scales" ,r-scales)
27499 ("r-stringr" ,r-stringr)))
27500 (home-page "https://github.com/mike-lawrence/ez")
27501 (synopsis "Easy Analysis and Visualization of Factorial Experiments")
27502 (description
27503 "Facilitates easy analysis of factorial experiments, including purely
27504 within-Ss designs (a.k.a. \"repeated measures\"), purely between-Ss designs,
27505 and mixed within-and-between-Ss designs. The functions in this package aim to
27506 provide simple, intuitive and consistent specification of data analysis and
27507 visualization. Visualization functions also include design visualization for
27508 pre-analysis data auditing, and correlation matrix visualization. Finally,
27509 this package includes functions for non-parametric analysis, including
27510 permutation tests and bootstrap resampling. The bootstrap function obtains
27511 predictions either by cell means or by more advanced/powerful mixed effects
27512 models, yielding predictions and confidence intervals that may be easily
27513 visualized at any level of the experiment's design.")
27514 (license license:gpl2+)))
27515
27516 (define-public r-qdapregex
27517 (package
27518 (name "r-qdapregex")
27519 (version "0.7.2")
27520 (source
27521 (origin
27522 (method url-fetch)
27523 (uri (cran-uri "qdapRegex" version))
27524 (sha256
27525 (base32
27526 "1xa8q1way3gjadrjh3mv3xr4c6b4h16nd2c6lgl969difplpfz9p"))))
27527 (properties `((upstream-name . "qdapRegex")))
27528 (build-system r-build-system)
27529 (propagated-inputs `(("r-stringi" ,r-stringi)))
27530 (home-page
27531 "https://trinker.github.com/qdapRegex/")
27532 (synopsis
27533 "Regular Expression Removal, Extraction, and Replacement Tools")
27534 (description
27535 "This package provides a collection of regular expression tools
27536 associated with the @code{qdap} package that may be useful outside of the
27537 context of discourse analysis. Tools include removal/extraction/replacement of
27538 abbreviations, dates, dollar amounts, email addresses, hash tags, numbers,
27539 percentages, citations, person tags, phone numbers, times, and zip codes.")
27540 (license license:gpl2)))
27541
27542 (define-public r-mgsub
27543 (package
27544 (name "r-mgsub")
27545 (version "1.7.2")
27546 (source
27547 (origin
27548 (method url-fetch)
27549 (uri (cran-uri "mgsub" version))
27550 (sha256
27551 (base32
27552 "02l1b96zv36ia0c97wgcwfhi037mbn3wy9c64hcw0n0w67yj77rr"))))
27553 (properties `((upstream-name . "mgsub")))
27554 (build-system r-build-system)
27555 (native-inputs `(("r-knitr" ,r-knitr)))
27556 (home-page
27557 "https://cran.r-project.org/package=mgsub")
27558 (synopsis
27559 "Safe, Multiple, Simultaneous String Substitution")
27560 (description
27561 "Designed to enable simultaneous substitution in strings in a safe
27562 fashion. Safe means it does not rely on placeholders (which can cause errors
27563 in same length matches).")
27564 (license license:expat)))
27565
27566 (define-public r-textshape
27567 (package
27568 (name "r-textshape")
27569 (version "1.7.1")
27570 (source
27571 (origin
27572 (method url-fetch)
27573 (uri (cran-uri "textshape" version))
27574 (sha256
27575 (base32
27576 "02111kj3kka84mpx7s19bjna9cas8diw5fxz51v5ggz0ldswa5pa"))))
27577 (properties `((upstream-name . "textshape")))
27578 (build-system r-build-system)
27579 (propagated-inputs
27580 `(("r-data-table" ,r-data-table)
27581 ("r-slam" ,r-slam)
27582 ("r-stringi" ,r-stringi)))
27583 (home-page "https://github.com/trinker/textshape")
27584 (synopsis "Tools for Reshaping Text")
27585 (description
27586 "Tools that can be used to reshape and restructure text data.")
27587 (license license:gpl2)))
27588
27589 (define-public r-syuzhet
27590 (package
27591 (name "r-syuzhet")
27592 (version "1.0.6")
27593 (source
27594 (origin
27595 (method url-fetch)
27596 (uri (cran-uri "syuzhet" version))
27597 (sha256
27598 (base32
27599 "16iccqdbw02iw82nah6kwz3gwfghi864j2y698n4b9dyc386ijzv"))))
27600 (properties `((upstream-name . "syuzhet")))
27601 (build-system r-build-system)
27602 (propagated-inputs
27603 `(("r-dplyr" ,r-dplyr)
27604 ("r-dtt" ,r-dtt)
27605 ("r-nlp" ,r-nlp)
27606 ("r-rlang" ,r-rlang)
27607 ("r-textshape" ,r-textshape)
27608 ("r-tidyr" ,r-tidyr)
27609 ("r-zoo" ,r-zoo)))
27610 (native-inputs `(("r-knitr" ,r-knitr)))
27611 (home-page "https://github.com/mjockers/syuzhet")
27612 (synopsis
27613 "Extracts Sentiment and Sentiment-Derived Plot Arcs from Text")
27614 (description
27615 "Extracts sentiment and sentiment-derived plot arcs from text using a
27616 variety of sentiment dictionaries conveniently packaged for consumption by R
27617 users. Implemented dictionaries include @dfn{syuzhet} (default) developed in the
27618 Nebraska Literary Lab, @dfn{afinn} developed by Finn Arup Nielsen, @dfn{bing}
27619 developed by Minqing Hu and Bing Liu, and @dfn{nrc} developed by Mohammad, Saif
27620 M. and Turney, Peter D. Applicable references are available in
27621 @file{README.md} and in the documentation for the @code{get_sentiment}
27622 function. The package also provides a hack for implementing Stanford's coreNLP
27623 sentiment parser. The package provides several methods for plot arc
27624 normalization.")
27625 (license license:gpl3)))
27626
27627 (define-public r-lexicon
27628 (package
27629 (name "r-lexicon")
27630 (version "1.2.1")
27631 (source
27632 (origin
27633 (method url-fetch)
27634 (uri (cran-uri "lexicon" version))
27635 (sha256
27636 (base32
27637 "0x7rscsh6par2lj11sby7bmz41cxn63iiw51lgh29z09cg8j606c"))))
27638 (properties `((upstream-name . "lexicon")))
27639 (build-system r-build-system)
27640 (propagated-inputs
27641 `(("r-data-table" ,r-data-table)
27642 ("r-syuzhet" ,r-syuzhet)))
27643 (home-page "https://github.com/trinker/lexicon")
27644 (synopsis "Lexicons for Text Analysis")
27645 (description
27646 "This package provides a collection of lexical hash tables, dictionaries,
27647 and word lists.")
27648 (license license:gpl3)))
27649
27650 (define-public r-english
27651 (package
27652 (name "r-english")
27653 (version "1.2-5")
27654 (source
27655 (origin
27656 (method url-fetch)
27657 (uri (cran-uri "english" version))
27658 (sha256
27659 (base32
27660 "0d6rin40wy2y6k75x8d5qvf03rfy139f309wrl8xwbdb1h8fjkd1"))))
27661 (properties `((upstream-name . "english")))
27662 (build-system r-build-system)
27663 (native-inputs `(("r-knitr" ,r-knitr)))
27664 (home-page
27665 "https://cran.r-project.org/package=english")
27666 (synopsis "Translate Integers into English")
27667 (description
27668 "Allow numbers to be presented in an English language version, one, two,
27669 three, ... Ordinals are also available, first, second, third, ... and
27670 indefinite article choice, \"a\" or \"an\".")
27671 (license license:gpl2)))
27672
27673 (define-public r-textclean
27674 (package
27675 (name "r-textclean")
27676 (version "0.9.3")
27677 (source
27678 (origin
27679 (method url-fetch)
27680 (uri (cran-uri "textclean" version))
27681 (sha256
27682 (base32
27683 "0kgjh6c4f14qkjc4fds7q7rpf4nkma3p0igm54fplmm3p853nvrz"))))
27684 (properties `((upstream-name . "textclean")))
27685 (build-system r-build-system)
27686 (propagated-inputs
27687 `(("r-data-table" ,r-data-table)
27688 ("r-english" ,r-english)
27689 ("r-glue" ,r-glue)
27690 ("r-lexicon" ,r-lexicon)
27691 ("r-mgsub" ,r-mgsub)
27692 ("r-qdapregex" ,r-qdapregex)
27693 ("r-stringi" ,r-stringi)
27694 ("r-textshape" ,r-textshape)))
27695 (home-page
27696 "https://github.com/trinker/textclean")
27697 (synopsis "Text Cleaning Tools")
27698 (description
27699 "Tools to clean and process text. Tools are geared at checking for
27700 substrings that are not optimal for analysis and replacing or removing them
27701 (normalizing) with more analysis friendly substrings (see Sproat, Black, Chen,
27702 Kumar, Ostendorf, & Richards (2001) @url{doi:10.1006/csla.2001.0169}) or
27703 extracting them into new variables. For example, emoticons are often used in
27704 text but not always easily handled by analysis algorithms. The
27705 @code{replace_emoticon()} function replaces emoticons with word equivalents.")
27706 (license license:gpl2)))
27707
27708 (define-public r-striprtf
27709 (package
27710 (name "r-striprtf")
27711 (version "0.5.2")
27712 (source
27713 (origin
27714 (method url-fetch)
27715 (uri (cran-uri "striprtf" version))
27716 (sha256
27717 (base32
27718 "1ra6aalalig6drsj26z9s24lmb10zssagqrvgqqi4358zbm8gwcd"))))
27719 (properties `((upstream-name . "striprtf")))
27720 (build-system r-build-system)
27721 (propagated-inputs
27722 `(("r-magrittr" ,r-magrittr)
27723 ("r-rcpp" ,r-rcpp)
27724 ("r-stringr" ,r-stringr)))
27725 (home-page "https://github.com/kota7/striprtf")
27726 (synopsis "Extract Text from RTF File")
27727 (description
27728 "Extracts plain text from @dfn{Rich Text Format} (RTF) file.")
27729 (license license:expat)))
27730
27731 (define-public r-ndjson
27732 (package
27733 (name "r-ndjson")
27734 (version "0.8.0")
27735 (source
27736 (origin
27737 (method url-fetch)
27738 (uri (cran-uri "ndjson" version))
27739 (sha256
27740 (base32
27741 "0lvzbgfi1sg4kya1mvv67z14qk3vz9q57x22qh57xq8ampdkg812"))
27742 (modules '((guix build utils)))
27743 (snippet
27744 '(begin
27745 ;; unvendor gzstream
27746 (for-each delete-file '("src/gzstream.cpp" "src/gzstream.h"))
27747 #t))))
27748 (properties `((upstream-name . "ndjson")))
27749 (build-system r-build-system)
27750 (arguments
27751 '(#:phases
27752 (modify-phases %standard-phases
27753 (add-after 'unpack 'use-system-gzstream
27754 (lambda* (#:key inputs #:allow-other-keys)
27755 (substitute* "src/Makevars"
27756 (("PKG_LIBS = " all)
27757 (string-append all "-lgzstream ")))
27758 #t)))))
27759 (inputs `(("zlib" ,zlib) ("gzstream" ,gzstream)))
27760 (propagated-inputs
27761 `(("r-data-table" ,r-data-table)
27762 ("r-rcpp" ,r-rcpp)
27763 ("r-tibble" ,r-tibble)))
27764 (home-page "https://gitlab.com/hrbrmstr/ndjson")
27765 (synopsis
27766 "Wicked-Fast @dfn{Streaming JSON} (ndjson) Reader")
27767 (description
27768 "@dfn{Streaming JSON} (ndjson) has one JSON record per-line and many
27769 modern ndjson files contain large numbers of records. These constructs may not
27770 be columnar in nature, but it is often useful to read in these files and
27771 \"flatten\" the structure out to enable working with the data in an R
27772 @code{data.frame}-like context. Functions are provided that make it possible
27773 to read in plain ndjson files or compressed (@code{gz}) ndjson files and either
27774 validate the format of the records or create \"flat\" @code{data.table}
27775 structures from them.")
27776 (license license:expat)))
27777
27778 (define-public r-streamr
27779 (package
27780 (name "r-streamr")
27781 (version "0.4.5")
27782 (source
27783 (origin
27784 (method url-fetch)
27785 (uri (cran-uri "streamR" version))
27786 (sha256
27787 (base32
27788 "1clx3b0j2515r1nmnl6ki7qw5n54q3x2jvqv3zrc00kq71mlj7ix"))))
27789 (properties `((upstream-name . "streamR")))
27790 (build-system r-build-system)
27791 (propagated-inputs
27792 `(("r-ndjson" ,r-ndjson)
27793 ("r-rcurl" ,r-rcurl)
27794 ("r-rjson" ,r-rjson)))
27795 (home-page
27796 "https://cran.r-project.org/package=streamR")
27797 (synopsis
27798 "Access to Twitter Streaming API via R")
27799 (description
27800 "This package provides functions to access Twitter's filter, sample, and
27801 user streams, and to parse the output into data frames.")
27802 (license license:gpl2)))
27803
27804 (define-public r-readods
27805 (package
27806 (name "r-readods")
27807 (version "1.7.0")
27808 (source
27809 (origin
27810 (method url-fetch)
27811 (uri (cran-uri "readODS" version))
27812 (sha256
27813 (base32
27814 "1hi217ab7hp15jsbzi5ak57cqf8jn2rv78bnn74q72gn9mrfra7n"))))
27815 (properties `((upstream-name . "readODS")))
27816 (build-system r-build-system)
27817 (propagated-inputs
27818 `(("r-cellranger" ,r-cellranger)
27819 ("r-readr" ,r-readr)
27820 ("r-stringi" ,r-stringi)
27821 ("r-xml2" ,r-xml2)))
27822 (native-inputs `(("r-knitr" ,r-knitr)))
27823 (home-page
27824 "https://cran.r-project.org/package=readODS")
27825 (synopsis "Read and Write ODS Files")
27826 (description
27827 "Import @dfn{OpenDocument Spreadsheet} (ODS) into R as a data frame.
27828 Also support writing data frame into ODS file.")
27829 (license license:gpl3)))
27830
27831 (define-public r-qpdf
27832 (package
27833 (name "r-qpdf")
27834 (version "1.1")
27835 (source
27836 (origin
27837 (method url-fetch)
27838 (uri (cran-uri "qpdf" version))
27839 (sha256
27840 (base32
27841 "03lnfncw8qd1fwfyqh1mjvnsjr3b63wxbah0wp5g7z7gba90dwbi"))
27842 (modules '((guix build utils)))
27843 (snippet
27844 '(begin
27845 ;; unvendor libqpdf
27846 (delete-file-recursively "src/libqpdf")
27847 (delete-file-recursively "src/include/qpdf")
27848 #t))))
27849 (properties `((upstream-name . "qpdf")))
27850 (build-system r-build-system)
27851 (arguments
27852 '(#:phases
27853 (modify-phases %standard-phases
27854 (add-after 'unpack 'configure
27855 (lambda _
27856 (setenv "EXTERNAL_QPDF" "1")
27857 #t)))))
27858 (inputs
27859 `(("zlib" ,zlib)
27860 ("qpdf" ,qpdf)))
27861 (propagated-inputs
27862 `(("r-askpass" ,r-askpass)
27863 ("r-curl" ,r-curl)
27864 ("r-rcpp" ,r-rcpp)))
27865 (native-inputs `(("pkg-config" ,pkg-config)))
27866 (home-page "https://github.com/ropensci/qpdf")
27867 (synopsis
27868 "Split, Combine and Compress PDF Files")
27869 (description
27870 "Content-preserving transformations transformations of PDF files such as
27871 split, combine, and compress. This package interfaces directly to the
27872 @code{qpdf} C++ API and does not require any command line utilities. Note that
27873 @code{qpdf} does not read actual content from PDF files: to extract text and
27874 data you need the @code{pdftools} package.")
27875 (license license:asl2.0)))
27876
27877 (define-public r-pdftools
27878 (package
27879 (name "r-pdftools")
27880 (version "2.3.1")
27881 (source
27882 (origin
27883 (method url-fetch)
27884 (uri (cran-uri "pdftools" version))
27885 (sha256
27886 (base32
27887 "01i5g2mjkshis0zlm7lrvi7kkzl4dn3if1hzwkgzf9n2mi33ndsx"))))
27888 (properties `((upstream-name . "pdftools")))
27889 (build-system r-build-system)
27890 (inputs
27891 `(("zlib" ,zlib)
27892 ("poppler" ,poppler)))
27893 (propagated-inputs
27894 `(("r-qpdf" ,r-qpdf) ("r-rcpp" ,r-rcpp)))
27895 (native-inputs `(("pkg-config" ,pkg-config)))
27896 (home-page
27897 "https://docs.ropensci.org/pdftools/")
27898 (synopsis
27899 "Text Extraction, Rendering and Converting of PDF Documents")
27900 (description
27901 "Utilities based on @code{libpoppler} for extracting text, fonts,
27902 attachments and metadata from a PDF file. Also supports high quality rendering
27903 of PDF documents into PNG, JPEG, TIFF format, or into raw bitmap vectors for
27904 further processing in R.")
27905 (license license:expat)))
27906
27907 (define-public r-antiword
27908 (package
27909 (name "r-antiword")
27910 (version "1.3")
27911 (source
27912 (origin
27913 (method url-fetch)
27914 (uri (cran-uri "antiword" version))
27915 (sha256
27916 (base32
27917 "034znb0g9wwb8gi1r3z75v3sbb4mh83qrc4y8mbfx5lbgh8zhj6j"))
27918 (modules '((guix build utils)))
27919 (snippet
27920 '(begin
27921 ;; unvendor libantiword
27922 (delete-file-recursively "src")
27923 #t))))
27924 (properties `((upstream-name . "antiword")))
27925 (build-system r-build-system)
27926 (arguments
27927 '(#:phases
27928 (modify-phases %standard-phases
27929 (add-after 'unpack 'use-system-antiword
27930 (lambda* (#:key inputs #:allow-other-keys)
27931 (substitute* "R/antiword.R"
27932 (("system.file\\(\"bin\", package = \"antiword\"\\)")
27933 (string-append "\"" (assoc-ref inputs "antiword") "/bin\"")))
27934 #t)))))
27935 (inputs `(("antiword" ,antiword)))
27936 (propagated-inputs `(("r-sys" ,r-sys)))
27937 (home-page
27938 "https://github.com/ropensci/antiword#readme")
27939 (synopsis
27940 "Extract Text from Microsoft Word Documents")
27941 (description
27942 "Wraps the @code{AntiWord} utility to extract text from Microsoft Word
27943 documents. The utility only supports the old @code{doc} format, not the new
27944 xml based @code{docx} format. Use the @code{xml2} package to read the
27945 latter.")
27946 (license license:gpl2)))
27947
27948 (define-public r-readtext
27949 (package
27950 (name "r-readtext")
27951 (version "0.80")
27952 (source
27953 (origin
27954 (method url-fetch)
27955 (uri (cran-uri "readtext" version))
27956 (sha256
27957 (base32
27958 "0q8ajnp99fwvh14ppkm2z3gqwdwmjrvxvsfb4q7ad0dhkqric05y"))))
27959 (properties `((upstream-name . "readtext")))
27960 (build-system r-build-system)
27961 (propagated-inputs
27962 `(("r-antiword" ,r-antiword)
27963 ("r-data-table" ,r-data-table)
27964 ("r-digest" ,r-digest)
27965 ("r-httr" ,r-httr)
27966 ("r-jsonlite" ,r-jsonlite)
27967 ("r-pdftools" ,r-pdftools)
27968 ("r-readods" ,r-readods)
27969 ("r-readxl" ,r-readxl)
27970 ("r-streamr" ,r-streamr)
27971 ("r-stringi" ,r-stringi)
27972 ("r-striprtf" ,r-striprtf)
27973 ("r-tibble" ,r-tibble)
27974 ("r-xml2" ,r-xml2)))
27975 (native-inputs `(("r-knitr" ,r-knitr)))
27976 (home-page
27977 "https://github.com/quanteda/readtext")
27978 (synopsis
27979 "Import and Handling for Plain and Formatted Text Files")
27980 (description
27981 "This package provides functions for importing and handling text files
27982 and formatted text files with additional meta-data, such including @code{.csv},
27983 @code{.tab}, @code{.json}, @code{.xml}, @code{.html}, @code{.pdf}, @code{.doc},
27984 @code{.docx}, @code{.rtf}, @code{.xls}, @code{.xlsx}, and others.")
27985 (license license:gpl3)))
27986
27987 (define-public r-packcircles
27988 (package
27989 (name "r-packcircles")
27990 (version "0.3.4")
27991 (source
27992 (origin
27993 (method url-fetch)
27994 (uri (cran-uri "packcircles" version))
27995 (sha256
27996 (base32
27997 "05pv5c4k4njkr0xw6i6ksiy34hcyx2lbiqpv5gxw81yrkm0rxfyk"))))
27998 (properties `((upstream-name . "packcircles")))
27999 (build-system r-build-system)
28000 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
28001 (native-inputs `(("r-knitr" ,r-knitr)))
28002 (home-page
28003 "https://github.com/mbedward/packcircles")
28004 (synopsis "Circle Packing")
28005 (description
28006 "Algorithms to find arrangements of non-overlapping circles.")
28007 (license license:expat)))
28008
28009 ;; Cannot unbundle liblwgeom, because PostGIS does not support building it on
28010 ;; its own.
28011 (define-public r-lwgeom
28012 (package
28013 (name "r-lwgeom")
28014 (version "0.2-5")
28015 (source
28016 (origin
28017 (method url-fetch)
28018 (uri (cran-uri "lwgeom" version))
28019 (sha256
28020 (base32
28021 "0byhjqa2acns8mznl1ngnfygxxxyszvnq66qfg0smhhhdkwr67aa"))))
28022 (properties `((upstream-name . "lwgeom")))
28023 (build-system r-build-system)
28024 (inputs `(("geos" ,geos) ("proj" ,proj) ("sqlite" ,sqlite)))
28025 (propagated-inputs
28026 `(("r-rcpp" ,r-rcpp)
28027 ("r-sf" ,r-sf)
28028 ("r-units" ,r-units)))
28029 (native-inputs `(("pkg-config" ,pkg-config)))
28030 (home-page
28031 "https://github.com/r-spatial/lwgeom/")
28032 (synopsis
28033 "Bindings to Selected 'liblwgeom' Functions for Simple Features")
28034 (description
28035 "Access to selected functions found in
28036 @url{https://github.com/postgis/postgis/tree/master/liblwgeom,liblwgeom}, the
28037 light-weight geometry library used by @url{http://postgis.net/,PostGIS}.")
28038 (license license:gpl2)))
28039
28040 (define-public r-stars
28041 (package
28042 (name "r-stars")
28043 (version "0.5-1")
28044 (source
28045 (origin
28046 (method url-fetch)
28047 (uri (cran-uri "stars" version))
28048 (sha256
28049 (base32
28050 "0ybk899rc0rpf2cv5kwk78fvis5xnr255hfcy5khdxsxdqgl0m9j"))))
28051 (properties `((upstream-name . "stars")))
28052 (build-system r-build-system)
28053 (propagated-inputs
28054 `(("r-abind" ,r-abind)
28055 ("r-classint" ,r-classint)
28056 ("r-lwgeom" ,r-lwgeom)
28057 ("r-rlang" ,r-rlang)
28058 ("r-sf" ,r-sf)
28059 ("r-units" ,r-units)))
28060 (native-inputs `(("r-knitr" ,r-knitr)))
28061 (home-page "https://r-spatial.github.io/stars/")
28062 (synopsis
28063 "Spatiotemporal Arrays, Raster and Vector Data Cubes")
28064 (description
28065 "Reading, manipulating, writing and plotting spatiotemporal arrays
28066 (raster and vector data cubes) in @code{R}, using @code{GDAL} bindings provided
28067 by @code{sf}, and @code{NetCDF} bindings by @code{ncmeta} and @code{RNetCDF}.")
28068 (license license:asl2.0)))
28069
28070 (define-public r-tmaptools
28071 (package
28072 (name "r-tmaptools")
28073 (version "3.1-1")
28074 (source
28075 (origin
28076 (method url-fetch)
28077 (uri (cran-uri "tmaptools" version))
28078 (sha256
28079 (base32
28080 "0bal3czrdr93qig8s5cf5szld5vjbbks67rismfhlkmlgw6wp2gx"))))
28081 (properties `((upstream-name . "tmaptools")))
28082 (build-system r-build-system)
28083 (propagated-inputs
28084 `(("r-dichromat" ,r-dichromat)
28085 ("r-lwgeom" ,r-lwgeom)
28086 ("r-magrittr" ,r-magrittr)
28087 ("r-rcolorbrewer" ,r-rcolorbrewer)
28088 ("r-sf" ,r-sf)
28089 ("r-stars" ,r-stars)
28090 ("r-units" ,r-units)
28091 ("r-viridislite" ,r-viridislite)
28092 ("r-xml" ,r-xml)))
28093 (home-page
28094 "https://github.com/mtennekes/tmaptools")
28095 (synopsis "Thematic Map Tools")
28096 (description
28097 "Set of tools for reading and processing spatial data. The aim is to
28098 supply the workflow to create thematic maps. This package also facilitates
28099 @code{tmap}, the package for visualizing thematic maps.")
28100 (license license:gpl3)))
28101
28102 (define-public r-rworldmap
28103 (package
28104 (name "r-rworldmap")
28105 (version "1.3-6")
28106 (source
28107 (origin
28108 (method url-fetch)
28109 (uri (cran-uri "rworldmap" version))
28110 (sha256
28111 (base32
28112 "1q1h0n9qr0m5pdx10swrh9ddsvdj8kv5nqngrf3lnx9rg9iwivjk"))))
28113 (properties `((upstream-name . "rworldmap")))
28114 (build-system r-build-system)
28115 (propagated-inputs
28116 `(("r-fields" ,r-fields)
28117 ("r-maptools" ,r-maptools)
28118 ("r-sp" ,r-sp)))
28119 (home-page
28120 "https://github.com/AndySouth/rworldmap/")
28121 (synopsis "Mapping Global Data")
28122 (description
28123 "Enables mapping of country level and gridded user datasets.")
28124 (license license:gpl2+)))
28125
28126 (define-public r-rtweet
28127 (package
28128 (name "r-rtweet")
28129 (version "0.7.0")
28130 (source
28131 (origin
28132 (method url-fetch)
28133 (uri (cran-uri "rtweet" version))
28134 (sha256
28135 (base32
28136 "05pbvxm2vmf6935b9s6663k3aifnkr3m52wh2jvnplmrwyrfpn9n"))))
28137 (properties `((upstream-name . "rtweet")))
28138 (build-system r-build-system)
28139 (propagated-inputs
28140 `(("r-httpuv" ,r-httpuv)
28141 ("r-httr" ,r-httr)
28142 ("r-jsonlite" ,r-jsonlite)
28143 ("r-magrittr" ,r-magrittr)
28144 ("r-progress" ,r-progress)
28145 ("r-rcpp" ,r-rcpp)
28146 ("r-tibble" ,r-tibble)))
28147 (native-inputs `(("r-knitr" ,r-knitr)))
28148 (home-page
28149 "https://docs.ropensci.org/rtweet/")
28150 (synopsis "Collecting Twitter Data")
28151 (description
28152 "An implementation of calls designed to collect and organize Twitter data
28153 via @url{https://developer.twitter.com/en/docs,Twitter's REST and stream
28154 Application Program Interfaces (API)}.")
28155 (license license:expat)))
28156
28157 (define-public r-intervals
28158 (package
28159 (name "r-intervals")
28160 (version "0.15.2")
28161 (source
28162 (origin
28163 (method url-fetch)
28164 (uri (cran-uri "intervals" version))
28165 (sha256
28166 (base32
28167 "0mvwfwc03ifb30a3dzbmkv9adwqb8ajxhcw24d8xip8px063plhb"))))
28168 (properties `((upstream-name . "intervals")))
28169 (build-system r-build-system)
28170 (home-page "https://github.com/edzer/intervals")
28171 (synopsis
28172 "Tools for Working with Points and Intervals")
28173 (description
28174 "Tools for working with and comparing sets of points and intervals.")
28175 (license license:artistic2.0)))
28176
28177 (define-public r-eyelinker
28178 (package
28179 (name "r-eyelinker")
28180 (version "0.2.0")
28181 (source
28182 (origin
28183 (method url-fetch)
28184 (uri (cran-uri "eyelinker" version))
28185 (sha256
28186 (base32
28187 "14rfcdxad9iazwd46q6bm8gg1ryh6s8kf7arj00hhb7xz3gvk9c2"))))
28188 (properties `((upstream-name . "eyelinker")))
28189 (build-system r-build-system)
28190 (propagated-inputs
28191 `(("r-intervals" ,r-intervals)
28192 ("r-readr" ,r-readr)
28193 ("r-stringi" ,r-stringi)
28194 ("r-stringr" ,r-stringr)
28195 ("r-tibble" ,r-tibble)))
28196 (native-inputs `(("r-knitr" ,r-knitr)))
28197 (home-page
28198 "https://github.com/a-hurst/eyelinker")
28199 (synopsis
28200 "Import ASC Files from EyeLink Eye Trackers")
28201 (description
28202 "Imports plain-text ASC data files from EyeLink eye trackers into
28203 (relatively) tidy data frames for analysis and visualization.")
28204 (license license:gpl3)))
28205
28206 (define-public r-btm
28207 (package
28208 (name "r-btm")
28209 (version "0.3.5")
28210 (source
28211 (origin
28212 (method url-fetch)
28213 (uri (cran-uri "BTM" version))
28214 (sha256
28215 (base32
28216 "1x6bncb7r97z8bdyxnn2frdi9kyawfy6c2041mv9f42zdrfzm6jb"))))
28217 (properties `((upstream-name . "BTM")))
28218 (build-system r-build-system)
28219 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
28220 (home-page "https://github.com/bnosac/BTM")
28221 (synopsis "Biterm Topic Models for Short Text")
28222 (description
28223 "Biterm Topic Models find topics in collections of short texts. It is a
28224 word co-occurrence based topic model that learns topics by modeling word-word
28225 co-occurrences patterns which are called biterms. This in contrast to
28226 traditional topic models like Latent Dirichlet Allocation and Probabilistic
28227 Latent Semantic Analysis which are word-document co-occurrence topic models. A
28228 biterm consists of two words co-occurring in the same short text window. This
28229 context window can for example be a twitter message, a short answer on a
28230 survey, a sentence of a text or a document identifier. The techniques are
28231 explained in detail in the paper 'A Biterm Topic Model For Short Text' by
28232 Xiaohui Yan, Jiafeng Guo, Yanyan Lan, Xueqi Cheng (2013)
28233 @url{https://github.com/xiaohuiyan/xiaohuiyan.github.io/blob/master/paper/\
28234 BTM-WWW13.pdf}.")
28235 (license license:asl2.0)))
28236
28237 (define-public r-textplot
28238 (package
28239 (name "r-textplot")
28240 (version "0.1.4")
28241 (source
28242 (origin
28243 (method url-fetch)
28244 (uri (cran-uri "textplot" version))
28245 (sha256
28246 (base32
28247 "1sgkndy2cxk8c76h8hwajn6f78w5jj2n8vsmaxh9kj931crzn8cy"))))
28248 (properties `((upstream-name . "textplot")))
28249 (build-system r-build-system)
28250 (propagated-inputs
28251 `(("r-data-table" ,r-data-table)
28252 ("r-lattice" ,r-lattice)
28253 ("r-matrix" ,r-matrix)))
28254 (native-inputs `(("r-knitr" ,r-knitr)))
28255 (home-page "https://github.com/bnosac/textplot")
28256 (synopsis "Text Plots")
28257 (description
28258 "Visualise complex relations in texts. This is done by providing
28259 functionalities for displaying text co-occurrence networks, text correlation
28260 networks, dependency relationships as well as text clustering. Feel free to
28261 join the effort of providing interesting text visualisations.")
28262 (license license:gpl2)))
28263
28264 (define-public r-gsa
28265 (package
28266 (name "r-gsa")
28267 (version "1.03.1")
28268 (source
28269 (origin
28270 (method url-fetch)
28271 (uri (cran-uri "GSA" version))
28272 (sha256
28273 (base32
28274 "05x9wspah1cdznjpncqam1iawsxdiigyl8v2anyhss2k7wwd94p1"))))
28275 (properties `((upstream-name . "GSA")))
28276 (build-system r-build-system)
28277 (home-page "https://statweb.stanford.edu/~tibs/GSA/")
28278 (synopsis "Gene set analysis")
28279 (description "This package lets you determine the significance of
28280 pre-defined sets of genes with respect to an outcome variable, such as a group
28281 indicator, a quantitative variable or a survival time.")
28282 ;; Any version of the LGPL
28283 (license license:lgpl3+)))
28284
28285 (define-public r-samr
28286 (package
28287 (name "r-samr")
28288 (version "3.0")
28289 (source
28290 (origin
28291 (method url-fetch)
28292 (uri (cran-uri "samr" version))
28293 (sha256
28294 (base32
28295 "01km0f7qgm73x19vbvsxl083hs1dq4dj8qm5h64cxbf20b08my15"))))
28296 (properties `((upstream-name . "samr")))
28297 (build-system r-build-system)
28298 (propagated-inputs
28299 `(("r-gsa" ,r-gsa)
28300 ("r-impute" ,r-impute)
28301 ("r-matrixstats" ,r-matrixstats)
28302 ("r-openxlsx" ,r-openxlsx)
28303 ("r-shiny" ,r-shiny)
28304 ("r-shinyfiles" ,r-shinyfiles)))
28305 (native-inputs `(("gfortran" ,gfortran)))
28306 (home-page "https://statweb.stanford.edu/~tibs/SAM/")
28307 (synopsis "Significance analysis of Microarrays")
28308 (description
28309 "This is a package for significance analysis of Microarrays for
28310 differential expression analysis, RNAseq data and related problems.")
28311 ;; Any version of the LGPL
28312 (license license:lgpl3+)))