gnu: r-xfun: Update to 0.17.
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 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 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 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 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 ;;;
33 ;;; This file is part of GNU Guix.
34 ;;;
35 ;;; GNU Guix is free software; you can redistribute it and/or modify it
36 ;;; under the terms of the GNU General Public License as published by
37 ;;; the Free Software Foundation; either version 3 of the License, or (at
38 ;;; your option) any later version.
39 ;;;
40 ;;; GNU Guix is distributed in the hope that it will be useful, but
41 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
42 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43 ;;; GNU General Public License for more details.
44 ;;;
45 ;;; You should have received a copy of the GNU General Public License
46 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
47
48 (define-module (gnu packages cran)
49 #:use-module ((guix licenses) #:prefix license:)
50 #:use-module (guix packages)
51 #:use-module (guix download)
52 #:use-module (guix git-download)
53 #:use-module (guix utils)
54 #:use-module (guix build-system r)
55 #:use-module (gnu packages)
56 #:use-module (gnu packages algebra)
57 #:use-module (gnu packages autotools)
58 #:use-module (gnu packages base)
59 #:use-module (gnu packages bioinformatics)
60 #:use-module (gnu packages c)
61 #:use-module (gnu packages compression)
62 #:use-module (gnu packages curl)
63 #:use-module (gnu packages databases)
64 #:use-module (gnu packages fontutils)
65 #:use-module (gnu packages gcc)
66 #:use-module (gnu packages geo)
67 #:use-module (gnu packages ghostscript)
68 #:use-module (gnu packages gl)
69 #:use-module (gnu packages gnome)
70 #:use-module (gnu packages graph)
71 #:use-module (gnu packages gtk)
72 #:use-module (gnu packages haskell-xyz)
73 #:use-module (gnu packages icu4c)
74 #:use-module (gnu packages image)
75 #:use-module (gnu packages imagemagick)
76 #:use-module (gnu packages java)
77 #:use-module (gnu packages javascript)
78 #:use-module (gnu packages libevent)
79 #:use-module (gnu packages lisp-xyz)
80 #:use-module (gnu packages machine-learning)
81 #:use-module (gnu packages maths)
82 #:use-module (gnu packages mpi)
83 #:use-module (gnu packages multiprecision)
84 #:use-module (gnu packages networking)
85 #:use-module (gnu packages node)
86 #:use-module (gnu packages pcre)
87 #:use-module (gnu packages perl)
88 #:use-module (gnu packages pkg-config)
89 #:use-module (gnu packages pulseaudio) ;libsndfile
90 #:use-module (gnu packages python)
91 #:use-module (gnu packages python-xyz)
92 #:use-module (gnu packages statistics)
93 #:use-module (gnu packages tcl)
94 #:use-module (gnu packages tls)
95 #:use-module (gnu packages web)
96 #:use-module (gnu packages xml)
97 #:use-module (gnu packages xorg))
98
99 (define-public r-rticles
100 (package
101 (name "r-rticles")
102 (version "0.15")
103 (source
104 (origin
105 (method url-fetch)
106 (uri (cran-uri "rticles" version))
107 (sha256
108 (base32
109 "0svh2bcqnlqdxdpw5afz1b980i2q13k8cxpq6flfqbi3dlwf3h8l"))))
110 (properties `((upstream-name . "rticles")))
111 (build-system r-build-system)
112 (propagated-inputs
113 `(("r-knitr" ,r-knitr)
114 ("r-rmarkdown" ,r-rmarkdown)
115 ("r-tinytex" ,r-tinytex)
116 ("r-xfun" ,r-xfun)
117 ("r-yaml" ,r-yaml)))
118 (home-page "https://github.com/rstudio/rticles")
119 (synopsis "Article formats for R Markdown")
120 (description
121 "This package provides a suite of custom R Markdown formats and templates
122 for authoring journal articles and conference submissions.")
123 (license license:gpl3)))
124
125 (define-public r-bezier
126 (package
127 (name "r-bezier")
128 (version "1.1.2")
129 (source (origin
130 (method url-fetch)
131 (uri (cran-uri "bezier" version))
132 (sha256
133 (base32
134 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
135 (build-system r-build-system)
136 (home-page "https://cran.r-project.org/web/packages/bezier/")
137 (synopsis "Bezier curve and spline toolkit")
138 (description
139 "This package is a toolkit for working with Bezier curves and splines.
140 The package provides functions for point generation, arc length estimation,
141 degree elevation and curve fitting.")
142 (license license:gpl2+)))
143
144 (define-public r-v8
145 (package
146 (name "r-v8")
147 (version "3.2.0")
148 (source
149 (origin
150 (method url-fetch)
151 (uri (cran-uri "V8" version))
152 (sha256
153 (base32
154 "0z0dwa538lkggawiwrlplz698xznzlgv9fwhdslm7g7gdxyf0xgm"))))
155 (properties `((upstream-name . "V8")))
156 (build-system r-build-system)
157 (arguments
158 `(#:phases
159 (modify-phases %standard-phases
160 (add-after 'unpack 'find-v8
161 (lambda* (#:key inputs #:allow-other-keys)
162 (substitute* "configure"
163 (("^PKG_LIBS=.*")
164 (string-append "PKG_LIBS="
165 (assoc-ref inputs "node")
166 "/lib/libnode.so.64\n")))
167 (setenv "INCLUDE_DIR"
168 (string-append
169 (assoc-ref inputs "node")
170 "/include/node"))
171 (setenv "LIB_DIR"
172 (string-append
173 (assoc-ref inputs "node") "/lib"))
174 #t)))))
175 (inputs
176 `(("node" ,libnode)))
177 (propagated-inputs
178 `(("r-curl" ,r-curl)
179 ("r-jsonlite" ,r-jsonlite)
180 ("r-rcpp" ,r-rcpp)))
181 (native-inputs
182 `(("r-knitr" ,r-knitr)))
183 (home-page "https://jeroen.cran.dev/V8")
184 (synopsis "Embedded JavaScript and WebAssembly engine for R")
185 (description
186 "This package provides an R interface to V8: Google's JavaScript and
187 WebAssembly engine.")
188 (license license:expat)))
189
190 (define-public r-dot
191 (package
192 (name "r-dot")
193 (version "0.1")
194 (source
195 (origin
196 (method url-fetch)
197 (uri (cran-uri "DOT" version))
198 (sha256
199 (base32
200 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
201 (properties `((upstream-name . "DOT")))
202 (build-system r-build-system)
203 (propagated-inputs
204 `(("r-v8" ,r-v8)))
205 (home-page "http://haghish.com/dot")
206 (synopsis "Render and Export DOT Graphs in R")
207 (description
208 "This package provides tools to render DOT diagram markup language in R
209 and also provides the possibility to export the graphs in PostScript and
210 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
211 programming packages such as @code{knitr} and @code{rmarkdown}.")
212 (license license:expat)))
213
214 (define-public r-clipr
215 (package
216 (name "r-clipr")
217 (version "0.7.0")
218 (source
219 (origin
220 (method url-fetch)
221 (uri (cran-uri "clipr" version))
222 (sha256
223 (base32
224 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
225 (build-system r-build-system)
226 (home-page "https://github.com/mdlincoln/clipr")
227 (synopsis "Read and write from the system clipboard")
228 (description
229 "This package provides simple utility functions to read from and write to
230 the system clipboards.")
231 (license license:gpl3)))
232
233 (define-public r-zoo
234 (package
235 (name "r-zoo")
236 (version "1.8-8")
237 (source (origin
238 (method url-fetch)
239 (uri (cran-uri "zoo" version))
240 (sha256
241 (base32
242 "1rrw431jwaxd9xljp73f15rhcxvwc0xlyrmr0ghi5fj7a03c932f"))))
243 (build-system r-build-system)
244 (propagated-inputs
245 `(("r-lattice" ,r-lattice)))
246 (home-page "http://zoo.R-Forge.R-project.org/")
247 (synopsis "S3 infrastructure for regular and irregular time series")
248 (description "This package contains an S3 class with methods for totally
249 ordered indexed observations. It is particularly aimed at irregular time
250 series of numeric vectors/matrices and factors.")
251 (license license:gpl2+)))
252
253 (define-public r-ggpmisc
254 (package
255 (name "r-ggpmisc")
256 (version "0.3.6")
257 (source (origin
258 (method url-fetch)
259 (uri (cran-uri "ggpmisc" version))
260 (sha256
261 (base32
262 "05i81q9rg8zf35vgcxhn3yhkc9dlvcpwpxncq1q3zs0rxhfkf208"))))
263 (build-system r-build-system)
264 (propagated-inputs
265 `(("r-broom" ,r-broom)
266 ("r-dplyr" ,r-dplyr)
267 ("r-glue" ,r-glue)
268 ("r-ggplot2" ,r-ggplot2)
269 ("r-gridextra" ,r-gridextra)
270 ("r-lubridate" ,r-lubridate)
271 ("r-magrittr" ,r-magrittr)
272 ("r-mass" ,r-mass)
273 ("r-plyr" ,r-plyr)
274 ("r-polynom" ,r-polynom)
275 ("r-rlang" ,r-rlang)
276 ("r-scales" ,r-scales)
277 ("r-splus2r" ,r-splus2r)
278 ("r-stringr" ,r-stringr)
279 ("r-tibble" ,r-tibble)
280 ("r-xts" ,r-xts)
281 ("r-zoo" ,r-zoo)))
282 (native-inputs
283 `(("r-knitr" ,r-knitr)))
284 (home-page "https://www.r4photobiology.info/")
285 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
286 (description "This package provides extensions to @code{ggplot2},
287 respecting the grammar of its graphics paradigm.")
288 (license license:gpl2+)))
289
290 (define-public r-gprofiler
291 (package
292 (name "r-gprofiler")
293 (version "0.7.0")
294 (source
295 (origin
296 (method url-fetch)
297 (uri (cran-uri "gProfileR" version))
298 (sha256
299 (base32
300 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
301 (properties `((upstream-name . "gProfileR")))
302 (build-system r-build-system)
303 (propagated-inputs
304 `(("r-plyr" ,r-plyr)
305 ("r-rcurl" ,r-rcurl)))
306 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
307 (synopsis "Interface to the g:Profiler toolkit")
308 (description
309 "This package provides tools for functional enrichment analysis,
310 gene identifier conversion and mapping homologous genes across related
311 organisms via the @code{g:Profiler} toolkit.")
312 (license license:gpl2+)))
313
314 (define-public r-gprofiler2
315 (package
316 (name "r-gprofiler2")
317 (version "0.2.0")
318 (source
319 (origin
320 (method url-fetch)
321 (uri (cran-uri "gprofiler2" version))
322 (sha256
323 (base32
324 "0q8hl3gdxy34c0181ql405fdklz82nfvmwdcafd5mzf935rjpyjg"))))
325 (properties `((upstream-name . "gprofiler2")))
326 (build-system r-build-system)
327 (propagated-inputs
328 `(("r-crosstalk" ,r-crosstalk)
329 ("r-dplyr" ,r-dplyr)
330 ("r-ggplot2" ,r-ggplot2)
331 ("r-gridextra" ,r-gridextra)
332 ("r-jsonlite" ,r-jsonlite)
333 ("r-plotly" ,r-plotly)
334 ("r-rcurl" ,r-rcurl)
335 ("r-tidyr" ,r-tidyr)
336 ("r-viridislite" ,r-viridislite)))
337 (native-inputs `(("r-knitr" ,r-knitr)))
338 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
339 (synopsis "Interface to the g:Profiler toolset")
340 (description
341 "This package provides a toolset for functional enrichment analysis and
342 visualization, gene/protein/SNP identifier conversion and mapping orthologous
343 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
344 The main tools are:
345
346 @enumerate
347 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
348 lists;
349 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
350 various namespaces;
351 @item @code{g:Orth}, orthology search across species;
352 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
353 genes and variant effects.
354 @end enumerate
355
356 This package is an R interface corresponding to the 2019 update of
357 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
358 higher.")
359 (license license:gpl2+)))
360
361 (define-public r-oenb
362 (package
363 (name "r-oenb")
364 (version "0.0.1")
365 (source
366 (origin
367 (method url-fetch)
368 (uri (cran-uri "oenb" version))
369 (sha256
370 (base32
371 "1x1jlqp6r27c4gb7wafzpmh5rq6yq61a2d395r5lsmv2g5jb4biz"))))
372 (properties `((upstream-name . "oenb")))
373 (build-system r-build-system)
374 (propagated-inputs
375 `(("r-dplyr" ,r-dplyr)
376 ("r-xml" ,r-xml)))
377 (native-inputs `(("r-knitr" ,r-knitr)))
378 (home-page "https://github.com/franzmohr/oenb")
379 (synopsis "Tools for the OeNB Data Web Service")
380 (description
381 "Tools to access data from the data web service of the
382 @acronym{OeNB, Oesterreichische Nationalbank},
383 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
384 (license license:gpl2+)))
385
386 (define-public r-scales
387 (package
388 (name "r-scales")
389 (version "1.1.1")
390 (source
391 (origin
392 (method url-fetch)
393 (uri (cran-uri "scales" version))
394 (sha256
395 (base32 "019ps0njjc0rzrjygqiyn8b9vp0c3c0jd56h1yi19wzi49jvdcj0"))))
396 (build-system r-build-system)
397 (propagated-inputs
398 `(("r-farver" ,r-farver)
399 ("r-labeling" ,r-labeling)
400 ("r-lifecycle" ,r-lifecycle)
401 ("r-munsell" ,r-munsell)
402 ("r-rcolorbrewer" ,r-rcolorbrewer)
403 ("r-r6" ,r-r6)
404 ("r-viridislite" ,r-viridislite)))
405 (home-page "https://github.com/hadley/scales")
406 (synopsis "Scale functions for visualization")
407 (description
408 "This package provides graphical scales that map data to aesthetics, and
409 provides methods for automatically determining breaks and labels for axes and
410 legends.")
411 (license license:expat)))
412
413 (define-public r-pheatmap
414 (package
415 (name "r-pheatmap")
416 (version "1.0.12")
417 (source
418 (origin
419 (method url-fetch)
420 (uri (cran-uri "pheatmap" version))
421 (sha256
422 (base32
423 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
424 (build-system r-build-system)
425 (propagated-inputs
426 `(("r-gtable" ,r-gtable)
427 ("r-rcolorbrewer" ,r-rcolorbrewer)
428 ("r-scales" ,r-scales)))
429 (home-page "https://cran.r-project.org/web/packages/pheatmap")
430 (synopsis "Pretty heatmaps")
431 (description
432 "This package provides an implementation of heatmaps that offers more
433 control over dimensions and appearance.")
434 (license license:gpl2+)))
435
436 (define-public r-ecp
437 (package
438 (name "r-ecp")
439 (version "3.1.2")
440 (source (origin
441 (method url-fetch)
442 (uri (cran-uri "ecp" version))
443 (sha256
444 (base32
445 "11f9p869xr0zg779i46gmflxlq4xclk9wxbab0nj2fan26pn4sfy"))))
446 (build-system r-build-system)
447 (propagated-inputs
448 `(("r-rcpp" ,r-rcpp)))
449 (home-page "https://cran.r-project.org/web/packages/ecp/")
450 (synopsis "Multiple change-point analysis of multivariate data")
451 (description
452 "This package implements various procedures for finding multiple
453 change-points. Two methods make use of dynamic programming and pruning, with
454 no distributional assumptions other than the existence of certain absolute
455 moments in one method. Hierarchical and exact search methods are included.
456 All methods return the set of estimated change-points as well as other summary
457 information.")
458 (license license:gpl2+)))
459
460 (define-public r-ellipsis
461 (package
462 (name "r-ellipsis")
463 (version "0.3.1")
464 (source
465 (origin
466 (method url-fetch)
467 (uri (cran-uri "ellipsis" version))
468 (sha256
469 (base32
470 "1nvmkcca57d9067rcggw1gby80ibx5hplk2myz0cs9zwilaib2jg"))))
471 (build-system r-build-system)
472 (propagated-inputs
473 `(("r-rlang" ,r-rlang)))
474 (home-page "https://github.com/hadley/ellipsis")
475 (synopsis "Tools for working with additional arguments")
476 (description
477 "In S3 generics, it's useful to take @code{...} so that methods can have
478 additional arguments. But this flexibility comes at a cost: misspelled
479 arguments will be silently ignored. The @code{ellipsis} package is an
480 experiment that allows a generic to warn if any arguments passed in @code{...}
481 are not used.")
482 (license license:gpl3)))
483
484 (define-public r-grr
485 (package
486 (name "r-grr")
487 (version "0.9.5")
488 (source
489 (origin
490 (method url-fetch)
491 (uri (cran-uri "grr" version))
492 (sha256
493 (base32
494 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
495 (build-system r-build-system)
496 (home-page "https://cran.r-project.org/web/packages/grr")
497 (synopsis "Alternative implementations of base R functions")
498 (description
499 "This package provides alternative implementations of some base R
500 functions, including @code{sort}, @code{order}, and @code{match}. The
501 functions are simplified but can be faster or have other advantages.")
502 (license license:gpl3)))
503
504 (define-public r-matrix-utils
505 (package
506 (name "r-matrix-utils")
507 (version "0.9.8")
508 (source
509 (origin
510 (method url-fetch)
511 (uri (cran-uri "Matrix.utils" version))
512 (sha256
513 (base32
514 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
515 (properties `((upstream-name . "Matrix.utils")))
516 (build-system r-build-system)
517 (propagated-inputs
518 `(("r-grr" ,r-grr)
519 ("r-matrix" ,r-matrix)))
520 (home-page "https://github.com/cvarrichio/Matrix.utils")
521 (synopsis
522 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
523 (description
524 "This package implements data manipulation methods such as @code{cast},
525 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
526 objects.")
527 (license license:gpl3)))
528
529 (define-public r-mboost
530 (package
531 (name "r-mboost")
532 (version "2.9-3")
533 (source (origin
534 (method url-fetch)
535 (uri (cran-uri "mboost" version))
536 (sha256
537 (base32
538 "1qp5c43kc0939sss5w3hhn794lbi69wgfsa31sq4c8vzh35pjqmf"))))
539 (build-system r-build-system)
540 (propagated-inputs
541 `(("r-lattice" ,r-lattice)
542 ("r-matrix" ,r-matrix)
543 ("r-nnls" ,r-nnls)
544 ("r-partykit" ,r-partykit)
545 ("r-quadprog" ,r-quadprog)
546 ("r-stabs" ,r-stabs)
547 ("r-survival" ,r-survival)))
548 (home-page "https://github.com/boost-R/mboost")
549 (synopsis "Model-based boosting")
550 (description
551 "This package provides a functional gradient descent algorithm (boosting)
552 for optimizing general risk functions utilizing component-wise (penalised)
553 least squares estimates or regression trees as base-learners for fitting
554 generalized linear, additive and interaction models to potentially
555 high-dimensional data.")
556 (license license:gpl2)))
557
558 (define-public r-sys
559 (package
560 (name "r-sys")
561 (version "3.4")
562 (source
563 (origin
564 (method url-fetch)
565 (uri (cran-uri "sys" version))
566 (sha256
567 (base32
568 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
569 (build-system r-build-system)
570 (home-page "https://github.com/jeroen/sys")
571 (synopsis "Powerful and reliable tools for running system commands in R")
572 (description
573 "This package provides drop-in replacements for the base @code{system2()}
574 function with fine control and consistent behavior across platforms. It
575 supports clean interruption, timeout, background tasks, and streaming STDIN /
576 STDOUT / STDERR over binary or text connections. The package also provides
577 functions for evaluating expressions inside a temporary fork. Such
578 evaluations have no side effects on the main R process, and support reliable
579 interrupts and timeouts. This provides the basis for a sandboxing
580 mechanism.")
581 (license license:expat)))
582
583 (define-public r-askpass
584 (package
585 (name "r-askpass")
586 (version "1.1")
587 (source
588 (origin
589 (method url-fetch)
590 (uri (cran-uri "askpass" version))
591 (sha256
592 (base32
593 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
594 (build-system r-build-system)
595 (propagated-inputs `(("r-sys" ,r-sys)))
596 (home-page "https://github.com/jeroen/askpass")
597 (synopsis "Safe password entry for R")
598 (description
599 "This package provides cross-platform utilities for prompting the user
600 for credentials or a passphrase, for example to authenticate with a server or
601 read a protected key.")
602 (license license:expat)))
603
604 (define-public r-vegan
605 (package
606 (name "r-vegan")
607 (version "2.5-6")
608 (source
609 (origin
610 (method url-fetch)
611 (uri (cran-uri "vegan" version))
612 (sha256
613 (base32
614 "0g60rgn1i7wqf9pf5m1yki1m45gcp7i5hmjic0ci0f6vng70mh5k"))))
615 (build-system r-build-system)
616 (native-inputs
617 `(("gfortran" ,gfortran)))
618 (propagated-inputs
619 `(("r-cluster" ,r-cluster)
620 ("r-knitr" ,r-knitr) ; needed for vignettes
621 ("r-lattice" ,r-lattice)
622 ("r-mass" ,r-mass)
623 ("r-mgcv" ,r-mgcv)
624 ("r-permute" ,r-permute)))
625 (home-page "https://cran.r-project.org/web/packages/vegan")
626 (synopsis "Functions for community ecology")
627 (description
628 "The vegan package provides tools for descriptive community ecology. It
629 has most basic functions of diversity analysis, community ordination and
630 dissimilarity analysis. Most of its multivariate tools can be used for other
631 data types as well.")
632 (license license:gpl2+)))
633
634 (define-public r-tidyverse
635 (package
636 (name "r-tidyverse")
637 (version "1.3.0")
638 (source
639 (origin
640 (method url-fetch)
641 (uri (cran-uri "tidyverse" version))
642 (sha256
643 (base32
644 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
645 (build-system r-build-system)
646 (propagated-inputs
647 `(("r-broom" ,r-broom)
648 ("r-cli" ,r-cli)
649 ("r-crayon" ,r-crayon)
650 ("r-dbplyr" ,r-dbplyr)
651 ("r-dplyr" ,r-dplyr)
652 ("r-forcats" ,r-forcats)
653 ("r-ggplot2" ,r-ggplot2)
654 ("r-haven" ,r-haven)
655 ("r-hms" ,r-hms)
656 ("r-httr" ,r-httr)
657 ("r-jsonlite" ,r-jsonlite)
658 ("r-lubridate" ,r-lubridate)
659 ("r-magrittr" ,r-magrittr)
660 ("r-modelr" ,r-modelr)
661 ("r-pillar" ,r-pillar)
662 ("r-purrr" ,r-purrr)
663 ("r-readr" ,r-readr)
664 ("r-readxl" ,r-readxl)
665 ("r-reprex" ,r-reprex)
666 ("r-rlang" ,r-rlang)
667 ("r-rstudioapi" ,r-rstudioapi)
668 ("r-rvest" ,r-rvest)
669 ("r-stringr" ,r-stringr)
670 ("r-tibble" ,r-tibble)
671 ("r-tidyr" ,r-tidyr)
672 ("r-xml2" ,r-xml2)))
673 (home-page "https://tidyverse.tidyverse.org")
674 (synopsis "Install and load packages from the \"Tidyverse\"")
675 (description
676 "The @code{tidyverse} is a set of packages that work in harmony because
677 they share common data representations and API design. This package is
678 designed to make it easy to install and load multiple tidyverse packages in a
679 single step.")
680 (license license:gpl3)))
681
682 (define-public r-rvest
683 (package
684 (name "r-rvest")
685 (version "0.3.6")
686 (source
687 (origin
688 (method url-fetch)
689 (uri (cran-uri "rvest" version))
690 (sha256
691 (base32 "1yh2p429a0zr8pqmlw5rzf6m797j20j5w6xwxlqq0wrdbnif6bka"))))
692 (build-system r-build-system)
693 (propagated-inputs
694 `(("r-httr" ,r-httr)
695 ("r-magrittr" ,r-magrittr)
696 ("r-selectr" ,r-selectr)
697 ("r-xml2" ,r-xml2)))
698 (native-inputs
699 `(("r-knitr" ,r-knitr)))
700 (home-page "https://github.com/hadley/rvest")
701 (synopsis "Simple web scraping for R")
702 (description
703 "@code{r-rvest} helps you scrape information from web pages. It is
704 designed to work with @code{magrittr} to make it easy to express common web
705 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
706 (license license:gpl3)))
707
708 (define-public r-selectr
709 (package
710 (name "r-selectr")
711 (version "0.4-2")
712 (source
713 (origin
714 (method url-fetch)
715 (uri (cran-uri "selectr" version))
716 (sha256
717 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
718 (build-system r-build-system)
719 (propagated-inputs
720 `(("r-stringr" ,r-stringr)
721 ("r-r6" ,r-r6)))
722 (home-page "https://sjp.co.nz/projects/selectr/")
723 (synopsis "Translate CSS selectors to XPath expressions")
724 (description
725 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
726 expression. This allows you to use CSS selectors when working with the XML
727 package as it can only evaluate XPath expressions. Also provided are
728 convenience functions useful for using CSS selectors on XML nodes. This
729 package is a port of the Python package @code{cssselect}.")
730 (license license:bsd-3)))
731
732 (define-public r-reprex
733 (package
734 (name "r-reprex")
735 (version "0.3.0")
736 (source
737 (origin
738 (method url-fetch)
739 (uri (cran-uri "reprex" version))
740 (sha256
741 (base32
742 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
743 (build-system r-build-system)
744 (propagated-inputs
745 `(("r-callr" ,r-callr)
746 ("r-clipr" ,r-clipr)
747 ("r-fs" ,r-fs)
748 ("r-rlang" ,r-rlang)
749 ("r-rmarkdown" ,r-rmarkdown)
750 ("r-whisker" ,r-whisker)
751 ("r-withr" ,r-withr)))
752 (home-page "https://github.com/tidyverse/reprex")
753 (synopsis "Prepare reproducible R code examples for sharing")
754 (description
755 "This package provides a convenience wrapper that uses the
756 @code{rmarkdown} package to render small snippets of code to target formats
757 that include both code and output. The goal is to encourage the sharing of
758 small, reproducible, and runnable examples on code-oriented websites or email.
759 @code{reprex} also extracts clean, runnable R code from various common formats,
760 such as copy/paste from an R session.")
761 (license license:expat)))
762
763 (define-public r-reordercluster
764 (package
765 (name "r-reordercluster")
766 (version "1.0")
767 (source (origin
768 (method url-fetch)
769 (uri (cran-uri "ReorderCluster" version))
770 (sha256
771 (base32
772 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
773 (build-system r-build-system)
774 (propagated-inputs
775 `(("r-gplots" ,r-gplots)
776 ("r-rcpp" ,r-rcpp)))
777 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
778 (synopsis "Reordering the dendrogram according to the class labels")
779 (description "This package provides tools for performing the leaf reordering
780 for the dendrogram that preserves the hierarchical clustering result and at the
781 same time tries to group instances from the same class together.")
782 (license license:gpl3+)))
783
784 (define-public r-callr
785 (package
786 (name "r-callr")
787 (version "3.4.4")
788 (source
789 (origin
790 (method url-fetch)
791 (uri (cran-uri "callr" version))
792 (sha256
793 (base32
794 "1hgc4mfwv83104fh93v8g2srpwzjayq7krgzi9r0apq784r61642"))))
795 (build-system r-build-system)
796 (propagated-inputs
797 `(("r-r6" ,r-r6)
798 ("r-processx" ,r-processx)))
799 (home-page "https://github.com/r-lib/callr#readme")
800 (synopsis "Call R from R")
801 (description
802 "It is sometimes useful to perform a computation in a separate R process,
803 without affecting the current R process at all. This package does exactly
804 that.")
805 (license license:expat)))
806
807 (define-public r-readxl
808 (package
809 (name "r-readxl")
810 (version "1.3.1")
811 (source
812 (origin
813 (method url-fetch)
814 (uri (cran-uri "readxl" version))
815 (sha256
816 (base32
817 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
818 (build-system r-build-system)
819 (propagated-inputs
820 `(("r-cellranger" ,r-cellranger)
821 ("r-progress" ,r-progress)
822 ("r-rcpp" ,r-rcpp)
823 ("r-tibble" ,r-tibble)))
824 (home-page "https://readxl.tidyverse.org")
825 (synopsis "Read Excel files")
826 (description
827 "This package lets you import Excel files into R. It supports
828 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
829 the embedded @code{RapidXML} C++ library.")
830 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
831 ;; 'rapidxml' which is Boost.
832 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
833
834 (define-public r-modelr
835 (package
836 (name "r-modelr")
837 (version "0.1.8")
838 (source
839 (origin
840 (method url-fetch)
841 (uri (cran-uri "modelr" version))
842 (sha256
843 (base32
844 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
845 (build-system r-build-system)
846 (propagated-inputs
847 `(("r-broom" ,r-broom)
848 ("r-magrittr" ,r-magrittr)
849 ("r-purrr" ,r-purrr)
850 ("r-rlang" ,r-rlang)
851 ("r-tibble" ,r-tibble)
852 ("r-tidyr" ,r-tidyr)
853 ("r-tidyselect" ,r-tidyselect)
854 ("r-vctrs" ,r-vctrs)))
855 (home-page "https://github.com/tidyverse/modelr")
856 (synopsis "Helper functions for modelling in pipelines")
857 (description
858 "Functions for modelling that help you seamlessly integrate modelling
859 into a pipeline of data manipulation and visualisation.")
860 (license license:gpl3)))
861
862 (define-public r-httpuv
863 (package
864 (name "r-httpuv")
865 (version "1.5.4")
866 (source (origin
867 (method url-fetch)
868 (uri (cran-uri "httpuv" version))
869 (sha256
870 (base32
871 "066rprqvz9qln6xd85x1yh1wbbmzd157xjl8zq1zbgr8l6347inm"))
872 ;; Unvendor bundled libraries. As of 1.5.4 the vendored libuv
873 ;; only contains fixes for building on Solaris.
874 (patches (search-patches "r-httpuv-1.5.4-unvendor-libuv.patch"))
875 (modules '((guix build utils)
876 (ice-9 ftw)
877 (srfi srfi-1)))
878 (snippet
879 `(begin
880 (delete-file-recursively "src/libuv")
881 ;; Cannot unbundle http-parser, because it contains local
882 ;; modifications.
883 #t))))
884 (build-system r-build-system)
885 (arguments
886 `(#:phases
887 (modify-phases %standard-phases
888 (add-after 'unpack 'unbundle-libuv
889 (lambda* (#:key outputs #:allow-other-keys)
890 (substitute* (find-files "src" "\\.cpp$|\\.h$")
891 (("\"libuv/include/uv\\.h\"")
892 "<uv.h>"))
893 ;; Fix https://github.com/rstudio/httpuv/issues/282
894 (substitute* "src/http.cpp"
895 (("uv_pipe_init\\(pLoop, &pSocket->handle\\.pipe, true\\);")
896 "uv_pipe_init(pLoop, &pSocket->handle.pipe, 0);"))
897 #t)))))
898 (inputs
899 `(("libuv" ,libuv)))
900 (propagated-inputs
901 `(("r-bh" ,r-bh)
902 ("r-later" ,r-later)
903 ("r-promises" ,r-promises)
904 ("r-r6" ,r-r6)
905 ("r-rcpp" ,r-rcpp)))
906 (home-page "https://github.com/rstudio/httpuv")
907 (synopsis "HTTP and WebSocket server library for R")
908 (description
909 "The httpuv package provides low-level socket and protocol support for
910 handling HTTP and WebSocket requests directly from within R. It is primarily
911 intended as a building block for other packages, rather than making it
912 particularly easy to create complete web applications using httpuv alone.")
913 ;; This package includes third-party code that was originally released
914 ;; under various non-copyleft licenses. Full licensing information can be
915 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
916 (license license:gpl3+)))
917
918 (define-public r-jsonlite
919 (package
920 (name "r-jsonlite")
921 (version "1.7.1")
922 (source (origin
923 (method url-fetch)
924 (uri (cran-uri "jsonlite" version))
925 (sha256
926 (base32
927 "1wygpnycmyf339x92hwapqk7nc1gs9cadx890b809a9spjhah41a"))))
928 (build-system r-build-system)
929 (native-inputs
930 `(("r-knitr" ,r-knitr)))
931 (home-page "https://arxiv.org/abs/1403.2805")
932 (synopsis "Robust, high performance JSON parser and generator for R")
933 (description
934 "The jsonlite package provides a fast JSON parser and generator optimized
935 for statistical data and the web. It offers flexible, robust, high
936 performance tools for working with JSON in R and is particularly powerful for
937 building pipelines and interacting with a web API. In addition to converting
938 JSON data from/to R objects, jsonlite contains functions to stream, validate,
939 and prettify JSON data. The unit tests included with the package verify that
940 all edge cases are encoded and decoded consistently for use with dynamic data
941 in systems and applications.")
942 (license license:expat)))
943
944 (define-public r-servr
945 (package
946 (name "r-servr")
947 (version "0.18")
948 (source (origin
949 (method url-fetch)
950 (uri (cran-uri "servr" version))
951 (sha256
952 (base32
953 "0xfbf1a1w34hbsx4jrdr4rqf22v7gf1p37ngknglv1dyxih7ipja"))))
954 (build-system r-build-system)
955 (propagated-inputs
956 `(("r-httpuv" ,r-httpuv)
957 ("r-jsonlite" ,r-jsonlite)
958 ("r-mime" ,r-mime)
959 ("r-xfun" ,r-xfun)))
960 (home-page "https://github.com/yihui/servr")
961 (synopsis "Simple HTTP server to serve static files or dynamic documents")
962 (description
963 "Servr provides an HTTP server in R to serve static files, or dynamic
964 documents that can be converted to HTML files (e.g., R Markdown) under a given
965 directory.")
966 (license license:expat)))
967
968 (define-public r-htmltools
969 (package
970 (name "r-htmltools")
971 (version "0.5.0")
972 (source (origin
973 (method url-fetch)
974 (uri (cran-uri "htmltools" version))
975 (sha256
976 (base32
977 "07fjznax5sin563ddnzlb7iwc8b39wzf7ymjn66pbmxgskijq2pz"))))
978 (build-system r-build-system)
979 (propagated-inputs
980 `(("r-base64enc" ,r-base64enc)
981 ("r-digest" ,r-digest)
982 ("r-rlang" ,r-rlang)))
983 (home-page "https://cran.r-project.org/web/packages/htmltools")
984 (synopsis "R tools for HTML")
985 (description
986 "This package provides tools for HTML generation and output in R.")
987 (license license:expat)))
988
989 (define-public r-htmlwidgets
990 (package
991 (name "r-htmlwidgets")
992 (version "1.5.1")
993 (source (origin
994 (method url-fetch)
995 (uri (cran-uri "htmlwidgets" version))
996 (sha256
997 (base32
998 "10fp306l1nybkah6jrlrqwwdb6zvklbddp8i3w9v9naj8la5jbnl"))))
999 (build-system r-build-system)
1000 (propagated-inputs
1001 `(("r-htmltools" ,r-htmltools)
1002 ("r-jsonlite" ,r-jsonlite)
1003 ("r-yaml" ,r-yaml)))
1004 (home-page "https://github.com/ramnathv/htmlwidgets")
1005 (synopsis "HTML Widgets for R")
1006 (description
1007 "HTML widgets is a framework for creating HTML widgets that render in
1008 various contexts including the R console, R Markdown documents, and Shiny web
1009 applications.")
1010 (license license:expat)))
1011
1012 (define-public r-htmltable
1013 (package
1014 (name "r-htmltable")
1015 (version "2.0.1")
1016 (source
1017 (origin
1018 (method url-fetch)
1019 (uri (cran-uri "htmlTable" version))
1020 (sha256
1021 (base32 "0ma52kajzxfg9w811d6ldhghzn9xhyr8bh7k5v265k82bzx7rac6"))))
1022 (properties `((upstream-name . "htmlTable")))
1023 (build-system r-build-system)
1024 (propagated-inputs
1025 `(("r-checkmate" ,r-checkmate)
1026 ("r-htmltools" ,r-htmltools)
1027 ("r-htmlwidgets" ,r-htmlwidgets)
1028 ("r-knitr" ,r-knitr)
1029 ("r-magrittr" ,r-magrittr)
1030 ("r-rstudioapi" ,r-rstudioapi)
1031 ("r-stringr" ,r-stringr)))
1032 (native-inputs
1033 `(("r-knitr" ,r-knitr)))
1034 (home-page "http://gforge.se/packages/")
1035 (synopsis "Advanced tables for Markdown/HTML")
1036 (description
1037 "This package provides functions to build tables with advanced layout
1038 elements such as row spanners, column spanners, table spanners, zebra
1039 striping, and more. While allowing advanced layout, the underlying
1040 CSS-structure is simple in order to maximize compatibility with word
1041 processors such as LibreOffice. The package also contains a few text
1042 formatting functions that help outputting text compatible with HTML or
1043 LaTeX.")
1044 (license license:gpl3+)))
1045
1046 (define-public r-curl
1047 (package
1048 (name "r-curl")
1049 (version "4.3")
1050 (source (origin
1051 (method url-fetch)
1052 (uri (cran-uri "curl" version))
1053 (sha256
1054 (base32
1055 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
1056 (build-system r-build-system)
1057 (arguments
1058 `(#:phases
1059 (modify-phases %standard-phases
1060 ;; The environment variable CURL_CA_BUNDLE is only respected when
1061 ;; running Windows, so we disable the platform checks.
1062 ;; This can be removed once the libcurl has been patched.
1063 (add-after 'unpack 'allow-CURL_CA_BUNDLE
1064 (lambda _
1065 (substitute* "R/onload.R"
1066 (("if \\(!grepl\\(\"mingw\".*")
1067 "if (FALSE)\n"))
1068 (substitute* "src/handle.c"
1069 (("/\\* Only set" m)
1070 (string-append "\
1071 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
1072 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
1073 " m)))
1074 #t)))))
1075 (inputs
1076 `(("libcurl" ,curl)
1077 ("zlib" ,zlib)))
1078 (native-inputs
1079 `(("pkg-config" ,pkg-config)))
1080 (home-page "https://github.com/jeroenooms/curl")
1081 (synopsis "HTTP client for R")
1082 (description
1083 "The @code{curl()} and @code{curl_download()} functions provide highly
1084 configurable drop-in replacements for base @code{url()} and
1085 @code{download.file()} with better performance, support for encryption, gzip
1086 compression, authentication, and other @code{libcurl} goodies. The core of
1087 the package implements a framework for performing fully customized requests
1088 where data can be processed either in memory, on disk, or streaming via the
1089 callback or connection interfaces.")
1090 (license license:expat)))
1091
1092 (define-public r-hwriter
1093 (package
1094 (name "r-hwriter")
1095 (version "1.3.2")
1096 (source
1097 (origin
1098 (method url-fetch)
1099 (uri (cran-uri "hwriter" version))
1100 (sha256
1101 (base32
1102 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
1103 (build-system r-build-system)
1104 (home-page "https://cran.r-project.org/web/packages/hwriter")
1105 (synopsis "Output R objects in HTML format")
1106 (description
1107 "This package provides easy-to-use and versatile functions to output R
1108 objects in HTML format.")
1109 (license license:lgpl2.1+)))
1110
1111 (define-public r-rjson
1112 (package
1113 (name "r-rjson")
1114 (version "0.2.20")
1115 (source
1116 (origin
1117 (method url-fetch)
1118 (uri (cran-uri "rjson" version))
1119 (sha256
1120 (base32
1121 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
1122 (build-system r-build-system)
1123 (home-page "https://cran.r-project.org/web/packages/rjson")
1124 (synopsis "JSON library for R")
1125 (description
1126 "This package provides functions to convert R objects into JSON objects
1127 and vice-versa.")
1128 (license license:gpl2+)))
1129
1130 (define-public r-fastmap
1131 (package
1132 (name "r-fastmap")
1133 (version "1.0.1")
1134 (source
1135 (origin
1136 (method url-fetch)
1137 (uri (cran-uri "fastmap" version))
1138 (sha256
1139 (base32
1140 "1v7sp56xiha0bh78g3w92k52p9vkp7ryzpw0z66nyddxzrfv0y27"))))
1141 (properties `((upstream-name . "fastmap")))
1142 (build-system r-build-system)
1143 (home-page "https://r-lib.github.io/fastmap/")
1144 (synopsis "Fast implementation of a key-value store")
1145 (description
1146 "This package provides a fast implementation of a key-value store.
1147 Environments are commonly used as key-value stores, but every time a new key
1148 is used, it is added to R's global symbol table, causing a small amount of
1149 memory leakage. This can be problematic in cases where many different keys
1150 are used. Fastmap avoids this memory leak issue by implementing the map using
1151 data structures in C++.")
1152 (license license:expat)))
1153
1154 (define-public r-shiny
1155 (package
1156 (name "r-shiny")
1157 (version "1.4.0.2")
1158 (source
1159 (origin
1160 (method git-fetch)
1161 (uri (git-reference
1162 (url "https://github.com/rstudio/shiny")
1163 (commit (string-append "v" version))))
1164 (file-name (git-file-name name version))
1165 (sha256
1166 (base32
1167 "005wgcxq7f2q9g6wvfk29n2nms262w0abpz93sfvx79yv6qxppzs"))))
1168 (build-system r-build-system)
1169 (arguments
1170 `(#:modules ((guix build r-build-system)
1171 (guix build minify-build-system)
1172 (guix build utils)
1173 (ice-9 match))
1174 #:imported-modules (,@%r-build-system-modules
1175 (guix build minify-build-system))
1176 #:phases
1177 (modify-phases (@ (guix build r-build-system) %standard-phases)
1178 (add-after 'unpack 'replace-bundled-minified-JavaScript
1179 (lambda* (#:key inputs #:allow-other-keys)
1180 (let ((replace-file (lambda (old new)
1181 (format #t "replacing ~a with ~a\n" old new)
1182 (delete-file old)
1183 (symlink new old))))
1184 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
1185 ;; contain just data. They are not minified code, so we don't
1186 ;; replace them.
1187 (with-directory-excursion "inst/www/shared"
1188 (replace-file "bootstrap/shim/respond.min.js"
1189 (string-append (assoc-ref inputs "js-respond")
1190 "/share/javascript/respond.min.js"))
1191 (replace-file "bootstrap/shim/html5shiv.min.js"
1192 (string-append (assoc-ref inputs "js-html5shiv")
1193 "/share/javascript/html5shiv.min.js"))
1194 (replace-file "json2-min.js"
1195 (string-append (assoc-ref inputs "js-json2")
1196 "/share/javascript/json2-min.js"))
1197 (replace-file "strftime/strftime-min.js"
1198 (string-append (assoc-ref inputs "js-strftime")
1199 "/share/javascript/strftime.min.js"))
1200 (replace-file "highlight/highlight.pack.js"
1201 (string-append (assoc-ref inputs "js-highlight")
1202 "/share/javascript/highlight.min.js"))
1203 (replace-file "datatables/js/jquery.dataTables.min.js"
1204 (string-append (assoc-ref inputs "js-datatables")
1205 "/share/javascript/jquery.dataTables.min.js"))
1206 (replace-file "selectize/js/selectize.min.js"
1207 (string-append (assoc-ref inputs "js-selectize")
1208 "/share/javascript/selectize.min.js"))
1209 (replace-file "selectize/js/es5-shim.min.js"
1210 (string-append (assoc-ref inputs "js-es5-shim")
1211 "/share/javascript/es5-shim.min.js"))
1212 (for-each (match-lambda
1213 ((source . target)
1214 (delete-file target)
1215 (minify source #:target target)))
1216 '(("jqueryui/jquery-ui.js" .
1217 "jqueryui/jquery-ui.min.js")
1218 ("datepicker/js/bootstrap-datepicker.js" .
1219 "datepicker/js/bootstrap-datepicker.min.js")
1220 ("ionrangeslider/js/ion.rangeSlider.js" .
1221 "ionrangeslider/js/ion.rangeSlider.min.js")
1222 ("bootstrap/js/bootstrap.js" .
1223 "bootstrap/js/bootstrap.min.js")
1224 ("shiny.js" .
1225 "shiny.min.js")
1226 ("jquery.js" .
1227 "jquery.min.js")
1228 ("legacy/jquery.js" .
1229 "legacy/jquery.min.js")
1230 ("showdown/src/showdown.js" .
1231 "showdown/compressed/showdown.js")))))
1232 #t)))))
1233 (propagated-inputs
1234 `(("r-crayon" ,r-crayon)
1235 ("r-digest" ,r-digest)
1236 ("r-fastmap" ,r-fastmap)
1237 ("r-htmltools" ,r-htmltools)
1238 ("r-httpuv" ,r-httpuv)
1239 ("r-jsonlite" ,r-jsonlite)
1240 ("r-later" ,r-later)
1241 ("r-mime" ,r-mime)
1242 ("r-promises" ,r-promises)
1243 ("r-r6" ,r-r6)
1244 ("r-rlang" ,r-rlang)
1245 ("r-sourcetools" ,r-sourcetools)
1246 ("r-withr" ,r-withr)
1247 ("r-xtable" ,r-xtable)))
1248 (inputs
1249 `(("js-datatables" ,js-datatables)
1250 ("js-html5shiv" ,js-html5shiv)
1251 ("js-json2" ,js-json2)
1252 ("js-respond" ,js-respond)
1253 ("js-selectize" ,js-selectize)
1254 ("js-strftime" ,js-strftime)
1255 ("js-highlight" ,js-highlight)
1256 ("js-es5-shim" ,js-es5-shim)))
1257 (native-inputs
1258 `(("uglify-js" ,uglify-js)
1259 ("gfortran" ,gfortran)))
1260 (home-page "http://shiny.rstudio.com")
1261 (synopsis "Easy interactive web applications with R")
1262 (description
1263 "Makes it incredibly easy to build interactive web applications
1264 with R. Automatic \"reactive\" binding between inputs and outputs and
1265 extensive prebuilt widgets make it possible to build beautiful,
1266 responsive, and powerful applications with minimal effort.")
1267 (license license:artistic2.0)))
1268
1269 ;; This package includes minified JavaScript files. When upgrading please
1270 ;; check that there are no new minified JavaScript files.
1271 (define-public r-shinytree
1272 (package
1273 (name "r-shinytree")
1274 (version "0.2.7")
1275 (source
1276 (origin
1277 (method url-fetch)
1278 (uri (cran-uri "shinyTree" version))
1279 (sha256
1280 (base32
1281 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
1282 (modules '((guix build utils)))
1283 (snippet
1284 '(begin
1285 ;; Delete minified JavaScript
1286 (for-each delete-file
1287 '("inst/www/jsTree-3.3.7/libs/require.js"
1288 "inst/www/jsTree-3.3.7/libs/jquery.js"
1289 "inst/www/jsTree-3.3.7/jstree.min.js"))
1290 #t))))
1291 (properties `((upstream-name . "shinyTree")))
1292 (build-system r-build-system)
1293 (arguments
1294 `(#:modules ((guix build utils)
1295 (guix build r-build-system)
1296 (srfi srfi-1)
1297 (ice-9 popen))
1298 #:phases
1299 (modify-phases %standard-phases
1300 (add-after 'unpack 'replace-minified-javascript
1301 (lambda* (#:key inputs #:allow-other-keys)
1302 (with-directory-excursion "inst/www/jsTree-3.3.7/"
1303 (symlink (string-append (assoc-ref inputs "js-requirejs")
1304 "/share/javascript/require.min.js")
1305 "libs/require.js")
1306 (call-with-values
1307 (lambda ()
1308 (unzip2
1309 `((,(assoc-ref inputs "js-jquery")
1310 "libs/jquery.js")
1311 ("jstree.js"
1312 "jstree.min.js"))))
1313 (lambda (sources targets)
1314 (for-each (lambda (source target)
1315 (format #t "Processing ~a --> ~a~%"
1316 source target)
1317 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1318 (call-with-output-file target
1319 (lambda (port)
1320 (dump-port minified port)))))
1321 sources targets))))
1322 #t)))))
1323 (propagated-inputs
1324 `(("r-htmlwidgets" ,r-htmlwidgets)
1325 ("r-jsonlite" ,r-jsonlite)
1326 ("r-promises" ,r-promises)
1327 ("r-shiny" ,r-shiny)
1328 ("r-stringr" ,r-stringr)))
1329 (inputs
1330 `(("js-requirejs" ,js-requirejs)))
1331 (native-inputs
1332 `(("uglify-js" ,uglify-js)
1333 ("js-jquery"
1334 ,(origin
1335 (method url-fetch)
1336 (uri "https://code.jquery.com/jquery-3.3.1.js")
1337 (sha256
1338 (base32
1339 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
1340 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
1341 (synopsis "jsTree bindings for Shiny")
1342 (description
1343 "This package exposes R bindings to jsTree, a JavaScript library that
1344 supports interactive trees, to enable rich, editable trees in Shiny.")
1345 (license license:expat)))
1346
1347 (define-public r-shinydashboard
1348 (package
1349 (name "r-shinydashboard")
1350 (version "0.7.1")
1351 (source (origin
1352 (method url-fetch)
1353 (uri (cran-uri "shinydashboard" version))
1354 (sha256
1355 (base32
1356 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
1357 (build-system r-build-system)
1358 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
1359 ;; Regenerate it from the included sources.
1360 (arguments
1361 `(#:modules ((guix build utils)
1362 (guix build r-build-system)
1363 (ice-9 popen))
1364 #:phases
1365 (modify-phases %standard-phases
1366 (add-after 'unpack 'generate-minified-javascript
1367 (lambda _
1368 (with-directory-excursion "inst/AdminLTE"
1369 (delete-file "app.min.js")
1370 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1371 (call-with-output-file "app.min.js"
1372 (lambda (port)
1373 (dump-port minified port))))))))))
1374 (propagated-inputs
1375 `(("r-htmltools" ,r-htmltools)
1376 ("r-promises" ,r-promises)
1377 ("r-shiny" ,r-shiny)))
1378 (native-inputs
1379 `(("uglify-js" ,uglify-js)))
1380 (home-page "https://rstudio.github.io/shinydashboard/")
1381 (synopsis "Create dashboards with shiny")
1382 (description "This package provides an extension to the Shiny web
1383 application framework for R, making it easy to create attractive dashboards.")
1384 ;; This package includes software that was released under the Expat
1385 ;; license, but the whole package is released under GPL version 2 or
1386 ;; later.
1387 (license license:gpl2+)))
1388
1389 (define-public r-shinyfiles
1390 (package
1391 (name "r-shinyfiles")
1392 (version "0.8.0")
1393 (source
1394 (origin
1395 (method url-fetch)
1396 (uri (cran-uri "shinyFiles" version))
1397 (sha256
1398 (base32 "0gwyx37f2r86cldsyknws9pafpj8g5mg3mchlyl9ymgnk5f4b88w"))))
1399 (properties `((upstream-name . "shinyFiles")))
1400 (build-system r-build-system)
1401 (propagated-inputs
1402 `(("r-fs" ,r-fs)
1403 ("r-htmltools" ,r-htmltools)
1404 ("r-jsonlite" ,r-jsonlite)
1405 ("r-shiny" ,r-shiny)
1406 ("r-tibble" ,r-tibble)))
1407 (home-page "https://github.com/thomasp85/shinyFiles")
1408 (synopsis "Server-side file system viewer for Shiny")
1409 (description
1410 "This package provides functionality for client-side navigation of the
1411 server side file system in shiny apps. In case the app is running locally
1412 this gives the user direct access to the file system without the need to
1413 \"download\" files to a temporary location. Both file and folder selection as
1414 well as file saving is available.")
1415 (license license:gpl2+)))
1416
1417 (define-public r-shinythemes
1418 (package
1419 (name "r-shinythemes")
1420 (version "1.1.2")
1421 (source
1422 (origin
1423 (method url-fetch)
1424 (uri (cran-uri "shinythemes" version))
1425 (sha256
1426 (base32
1427 "12miz44n2zxfswnia7p8dirxj3miw0aqn4pkx2111ikz67ax84rf"))))
1428 (properties `((upstream-name . "shinythemes")))
1429 (build-system r-build-system)
1430 (propagated-inputs `(("r-shiny" ,r-shiny)))
1431 (home-page "https://rstudio.github.io/shinythemes/")
1432 (synopsis "Themes for Shiny")
1433 (description
1434 "This package provides themes for use with Shiny. It includes several
1435 Bootstrap themes, which are packaged for use with Shiny applications.")
1436 ;; The package is released under version 3 of the GPL, but it includes
1437 ;; source files that are covered by the Expat license. It also includes
1438 ;; fonts under SIL or the ASL.
1439 (license (list license:gpl3 license:expat
1440 license:silofl1.1 license:asl2.0))))
1441
1442 ;; The package sources include minified variants of d3.js and non-minified
1443 ;; source code of d3-jetpack.
1444 (define-public r-d3r
1445 (package
1446 (name "r-d3r")
1447 (version "0.9.0")
1448 (source
1449 (origin
1450 (method url-fetch)
1451 (uri (cran-uri "d3r" version))
1452 (sha256
1453 (base32
1454 "0vd1qk8yr18xdfkv5ybhqvf0mmccpi721wqa7c881nzm9nnlzc4y"))))
1455 (build-system r-build-system)
1456 (arguments
1457 `(#:modules ((guix build utils)
1458 (guix build r-build-system)
1459 (srfi srfi-1)
1460 (ice-9 popen))
1461 #:phases
1462 (modify-phases %standard-phases
1463 (add-after 'unpack 'process-javascript
1464 (lambda* (#:key inputs #:allow-other-keys)
1465 (with-directory-excursion "inst/www/d3/"
1466 (call-with-values
1467 (lambda ()
1468 (unzip2
1469 `((,(assoc-ref inputs "d3.v3.js")
1470 "v3/dist/d3.min.js")
1471 (,(assoc-ref inputs "d3.v4.js")
1472 "v4/dist/d3.min.js")
1473 (,(assoc-ref inputs "d3.v5.js")
1474 "v5/dist/d3.min.js"))))
1475 (lambda (sources targets)
1476 (for-each (lambda (source target)
1477 (format #t "Processing ~a --> ~a~%"
1478 source target)
1479 (delete-file target)
1480 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1481 (call-with-output-file target
1482 (lambda (port)
1483 (dump-port minified port)))))
1484 sources targets))))
1485 #t)))))
1486 (propagated-inputs
1487 `(("r-dplyr" ,r-dplyr)
1488 ("r-htmltools" ,r-htmltools)
1489 ("r-rlang" ,r-rlang)
1490 ("r-tidyr" ,r-tidyr)))
1491 (native-inputs
1492 `(("uglify-js" ,uglify-js)
1493 ("d3.v3.js"
1494 ,(origin
1495 (method url-fetch)
1496 (uri "https://d3js.org/d3.v3.js")
1497 (sha256
1498 (base32
1499 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1500 ("d3.v4.js"
1501 ,(origin
1502 (method url-fetch)
1503 (uri "https://d3js.org/d3.v4.js")
1504 (sha256
1505 (base32
1506 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1507 ("d3.v5.js"
1508 ,(origin
1509 (method url-fetch)
1510 (uri "https://d3js.org/d3.v5.js")
1511 (sha256
1512 (base32
1513 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
1514 (home-page "https://github.com/timelyportfolio/d3r")
1515 (synopsis "d3.js utilities for R")
1516 (description
1517 "This package provides a suite of functions to help ease the use of the
1518 d3.js visualization library in R. These helpers include
1519 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1520 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1521 R objects into the JSON format that the d3.js library expects.")
1522 (license license:bsd-3)))
1523
1524 ;; We use the latest commit here because the last release was in 2016 while
1525 ;; the latest commit was in 2018.
1526 (define-public r-sankeyd3
1527 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1528 (revision "1"))
1529 (package
1530 (name "r-sankeyd3")
1531 (version (git-version "0.3.2" revision commit))
1532 (source
1533 (origin
1534 (method git-fetch)
1535 (uri (git-reference
1536 (url "https://github.com/fbreitwieser/sankeyD3")
1537 (commit commit)))
1538 (file-name (git-file-name name version))
1539 (sha256
1540 (base32
1541 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1542 (build-system r-build-system)
1543 (propagated-inputs
1544 `(("r-d3r" ,r-d3r)
1545 ("r-htmlwidgets" ,r-htmlwidgets)
1546 ("r-shiny" ,r-shiny)
1547 ("r-magrittr" ,r-magrittr)))
1548 (home-page "https://github.com/fbreitwieser/sankeyD3")
1549 (synopsis "Sankey network graphs from R")
1550 (description
1551 "This package provides an R library to generate Sankey network graphs
1552 in R and Shiny via the D3 visualization library.")
1553 ;; The R code is licensed under GPLv3+. It includes the non-minified
1554 ;; JavaScript source code of d3-sankey, which is released under the
1555 ;; 3-clause BSD license.
1556 (license (list license:gpl3+ license:bsd-3)))))
1557
1558 (define-public r-crosstalk
1559 (package
1560 (name "r-crosstalk")
1561 (version "1.1.0.1")
1562 (source
1563 (origin
1564 (method url-fetch)
1565 (uri (cran-uri "crosstalk" version))
1566 (sha256
1567 (base32
1568 "03ihj7cimkklrbad9zic78xsrfcisygmgy859hqnx0hiph80p9rn"))))
1569 (build-system r-build-system)
1570 (propagated-inputs
1571 `(("r-htmltools" ,r-htmltools)
1572 ("r-jsonlite" ,r-jsonlite)
1573 ("r-lazyeval" ,r-lazyeval)
1574 ("r-r6" ,r-r6)))
1575 (home-page "https://rstudio.github.io/crosstalk/")
1576 (synopsis "Inter-widget interactivity for HTML widgets")
1577 (description
1578 "This package provides building blocks for allowing HTML widgets to
1579 communicate with each other, with Shiny or without (i.e. static @code{.html}
1580 files). It currently supports linked brushing and filtering.")
1581 (license license:expat)))
1582
1583 (define-public r-rook
1584 (package
1585 (name "r-rook")
1586 (version "1.1-1")
1587 (source
1588 (origin
1589 (method url-fetch)
1590 (uri (cran-uri "Rook" version))
1591 (sha256
1592 (base32
1593 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1594 (properties `((upstream-name . "Rook")))
1595 (build-system r-build-system)
1596 (propagated-inputs `(("r-brew" ,r-brew)))
1597 (home-page "https://cran.r-project.org/web/packages/Rook")
1598 (synopsis "Web server interface for R")
1599 (description
1600 "This package contains the Rook specification and convenience software
1601 for building and running Rook applications. A Rook application is an R
1602 reference class object that implements a @code{call} method or an R closure
1603 that takes exactly one argument, an environment, and returns a list with three
1604 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1605 (license license:gpl2)))
1606
1607 (define-public r-miniui
1608 (package
1609 (name "r-miniui")
1610 (version "0.1.1.1")
1611 (source
1612 (origin
1613 (method url-fetch)
1614 (uri (cran-uri "miniUI" version))
1615 (sha256
1616 (base32
1617 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1618 (properties `((upstream-name . "miniUI")))
1619 (build-system r-build-system)
1620 (propagated-inputs
1621 `(("r-htmltools" ,r-htmltools)
1622 ("r-shiny" ,r-shiny)))
1623 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1624 (synopsis "Shiny UI widgets for small screens")
1625 (description
1626 "This package provides UI widget and layout functions for writing Shiny apps that
1627 work well on small screens.")
1628 (license license:gpl3)))
1629
1630 (define-public r-feather
1631 (package
1632 (name "r-feather")
1633 (version "0.3.5")
1634 (source
1635 (origin
1636 (method url-fetch)
1637 (uri (cran-uri "feather" version))
1638 (sha256
1639 (base32
1640 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
1641 (build-system r-build-system)
1642 (propagated-inputs
1643 `(("r-hms" ,r-hms)
1644 ("r-rcpp" ,r-rcpp)
1645 ("r-tibble" ,r-tibble)))
1646 (home-page "https://github.com/wesm/feather")
1647 (synopsis "R Bindings to the Feather API")
1648 (description "Read and write feather files, a lightweight binary columnar
1649 data store designed for maximum speed.")
1650 (license license:asl2.0)))
1651
1652 (define-public r-maps
1653 (package
1654 (name "r-maps")
1655 (version "3.3.0")
1656 (source
1657 (origin
1658 (method url-fetch)
1659 (uri (cran-uri "maps" version))
1660 (sha256
1661 (base32
1662 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1663 (build-system r-build-system)
1664 (home-page "https://cran.r-project.org/web/packages/maps")
1665 (synopsis "Draw geographical maps")
1666 (description "This package provides an R module for display of maps.
1667 Projection code and larger maps are in separate packages (@code{mapproj} and
1668 @code{mapdata}).")
1669 (license license:gpl2)))
1670
1671 (define-public r-mapproj
1672 (package
1673 (name "r-mapproj")
1674 (version "1.2.7")
1675 (source
1676 (origin
1677 (method url-fetch)
1678 (uri (cran-uri "mapproj" version))
1679 (sha256
1680 (base32
1681 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
1682 (build-system r-build-system)
1683 (propagated-inputs `(("r-maps" ,r-maps)))
1684 (home-page "https://cran.r-project.org/web/packages/mapproj")
1685 (synopsis "Map projection in R")
1686 (description "This package converts latitude/longitude into projected
1687 coordinates.")
1688 (license (list license:gpl2 ; The R interface
1689 (license:non-copyleft ; The C code
1690 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1691 "Lucent Public License Version 1.02")))))
1692
1693 (define-public r-rgooglemaps
1694 (package
1695 (name "r-rgooglemaps")
1696 (version "1.4.5.3")
1697 (source
1698 (origin
1699 (method url-fetch)
1700 (uri (cran-uri "RgoogleMaps" version))
1701 (sha256
1702 (base32
1703 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
1704 (properties `((upstream-name . "RgoogleMaps")))
1705 (build-system r-build-system)
1706 (propagated-inputs
1707 `(("r-png" ,r-png)
1708 ("r-sp" ,r-sp)))
1709 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1710 (synopsis "Use Google Maps in R")
1711 (description "This package serves two purposes:
1712 @enumerate
1713 @item Provide a comfortable R interface to query the Google server for static
1714 maps, and
1715 @item Use the map as a background image to overlay plots within R. This
1716 requires proper coordinate scaling.
1717 @end enumerate\n")
1718 (license license:gpl2+)))
1719
1720 (define-public r-geosphere
1721 (package
1722 (name "r-geosphere")
1723 (version "1.5-10")
1724 (source
1725 (origin
1726 (method url-fetch)
1727 (uri (cran-uri "geosphere" version))
1728 (sha256
1729 (base32
1730 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1731 (build-system r-build-system)
1732 (propagated-inputs `(("r-sp" ,r-sp)))
1733 (home-page "https://cran.r-project.org/web/packages/geosphere")
1734 (synopsis "Spherical trigonometry")
1735 (description "This package computes spherical trigonometry for geographic
1736 applications. That is, compute distances and related measures for angular
1737 (longitude/latitude) locations.")
1738 (license license:gpl3+)))
1739
1740 (define-public r-jpeg
1741 (package
1742 (name "r-jpeg")
1743 (version "0.1-8.1")
1744 (source
1745 (origin
1746 (method url-fetch)
1747 (uri (cran-uri "jpeg" version))
1748 (sha256
1749 (base32
1750 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
1751 (build-system r-build-system)
1752 (inputs `(("libjpeg" ,libjpeg-turbo)))
1753 (home-page "https://www.rforge.net/jpeg/")
1754 (synopsis "Read and write JPEG images with R")
1755 (description "This package provides a way to read, write and display
1756 bitmap images stored in the JPEG format with R. It can read and write both
1757 files and in-memory raw vectors.")
1758 (license license:gpl2+)))
1759
1760 (define-public r-ggmap
1761 (package
1762 (name "r-ggmap")
1763 (version "3.0.0")
1764 (source
1765 (origin
1766 (method url-fetch)
1767 (uri (cran-uri "ggmap" version))
1768 (sha256
1769 (base32
1770 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1771 (build-system r-build-system)
1772 (propagated-inputs
1773 `(("r-bitops" ,r-bitops)
1774 ("r-digest" ,r-digest)
1775 ("r-dplyr" ,r-dplyr)
1776 ("r-ggplot2" ,r-ggplot2)
1777 ("r-glue" ,r-glue)
1778 ("r-httr" ,r-httr)
1779 ("r-jpeg" ,r-jpeg)
1780 ("r-magrittr" ,r-magrittr)
1781 ("r-plyr" ,r-plyr)
1782 ("r-png" ,r-png)
1783 ("r-purrr" ,r-purrr)
1784 ("r-rgooglemaps" ,r-rgooglemaps)
1785 ("r-rjson" ,r-rjson)
1786 ("r-scales" ,r-scales)
1787 ("r-stringr" ,r-stringr)
1788 ("r-tibble" ,r-tibble)
1789 ("r-tidyr" ,r-tidyr)))
1790 (home-page "https://github.com/dkahle/ggmap")
1791 (synopsis "Spatial visualization with ggplot2")
1792 (description "This package provides a collection of functions to visualize
1793 spatial data and models on top of static maps from various online sources (e.g
1794 Google Maps and Stamen Maps). It includes tools common to those tasks,
1795 including functions for geolocation and routing.")
1796 (license license:gpl2)))
1797
1798 (define-public r-haven
1799 (package
1800 (name "r-haven")
1801 (version "2.3.1")
1802 (source
1803 (origin
1804 (method url-fetch)
1805 (uri (cran-uri "haven" version))
1806 (sha256
1807 (base32
1808 "03cypgqhdkrfbfpl1yx2wb7flczrbak1w654wkicmd5ajwr9zvkf"))))
1809 (build-system r-build-system)
1810 (inputs
1811 `(("zlib" ,zlib)))
1812 (native-inputs
1813 `(("r-knitr" ,r-knitr)))
1814 (propagated-inputs
1815 `(("r-forcats" ,r-forcats)
1816 ("r-hms" ,r-hms)
1817 ("r-rcpp" ,r-rcpp)
1818 ("r-rlang" ,r-rlang)
1819 ("r-readr" ,r-readr)
1820 ("r-tibble" ,r-tibble)
1821 ("r-tidyselect" ,r-tidyselect)
1822 ("r-vctrs" ,r-vctrs)))
1823 (home-page "https://haven.tidyverse.org")
1824 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1825 (description
1826 "This package lets you mport foreign statistical formats into R via the
1827 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1828 (license license:expat)))
1829
1830 (define-public r-amap
1831 (package
1832 (name "r-amap")
1833 (version "0.8-18")
1834 (source (origin
1835 (method url-fetch)
1836 (uri (cran-uri "amap" version))
1837 (sha256
1838 (base32
1839 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
1840 (build-system r-build-system)
1841 (native-inputs
1842 `(("gfortran" ,gfortran)))
1843 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1844 (synopsis "Another multidimensional analysis package")
1845 (description "This package provides tools for clustering and principal
1846 component analysis (with robust methods, and parallelized functions).")
1847 (license license:gpl2+)))
1848
1849 (define-public r-ape
1850 (package
1851 (name "r-ape")
1852 (version "5.4-1")
1853 (source
1854 (origin
1855 (method url-fetch)
1856 (uri (cran-uri "ape" version))
1857 (sha256
1858 (base32
1859 "1r7fwyz30ippcl1ibqiv1xryf44x5crcks5kx19h146ffj76qcgh"))))
1860 (build-system r-build-system)
1861 (propagated-inputs
1862 `(("r-lattice" ,r-lattice)
1863 ("r-nlme" ,r-nlme)
1864 ("r-rcpp" ,r-rcpp)))
1865 (home-page "http://ape-package.ird.fr/")
1866 (synopsis "Analyses of phylogenetics and evolution")
1867 (description
1868 "This package provides functions for reading, writing, plotting, and
1869 manipulating phylogenetic trees, analyses of comparative data in a
1870 phylogenetic framework, ancestral character analyses, analyses of
1871 diversification and macroevolution, computing distances from DNA sequences,
1872 and several other tools.")
1873 (license license:gpl2+)))
1874
1875 (define-public r-abbyyr
1876 (package
1877 (name "r-abbyyr")
1878 (version "0.5.5")
1879 (source
1880 (origin
1881 (method url-fetch)
1882 (uri (cran-uri "abbyyR" version))
1883 (sha256
1884 (base32
1885 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1886 (properties `((upstream-name . "abbyyR")))
1887 (build-system r-build-system)
1888 (propagated-inputs
1889 `(("r-curl" ,r-curl)
1890 ("r-httr" ,r-httr)
1891 ("r-plyr" ,r-plyr)
1892 ("r-progress" ,r-progress)
1893 ("r-readr" ,r-readr)
1894 ("r-xml" ,r-xml)))
1895 (home-page "https://github.com/soodoku/abbyyR")
1896 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1897 (description
1898 "This package provides tools to get text from images of text using Abbyy
1899 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1900 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1901 passports and get the results in a variety of formats including plain text and
1902 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1903 (license license:expat)))
1904
1905 (define-public r-colorspace
1906 (package
1907 (name "r-colorspace")
1908 (version "1.4-1")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (cran-uri "colorspace" version))
1913 (sha256
1914 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1915 (build-system r-build-system)
1916 (home-page "https://cran.r-project.org/web/packages/colorspace")
1917 (synopsis "Color space manipulation")
1918 (description
1919 "This package carries out a mapping between assorted color spaces
1920 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1921 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1922 colors are provided.")
1923 (license license:bsd-3)))
1924
1925 (define-public r-glue
1926 (package
1927 (name "r-glue")
1928 (version "1.4.2")
1929 (source
1930 (origin
1931 (method url-fetch)
1932 (uri (cran-uri "glue" version))
1933 (sha256
1934 (base32
1935 "1bgpirdvjrf0da734clrixawvpdap4lpda4g89vais96589m8wwz"))))
1936 (build-system r-build-system)
1937 ;; knitr depends on glue, so we can't add knitr here to build the
1938 ;; vignettes.
1939 #;
1940 (native-inputs
1941 `(("r-knitr" ,r-knitr)))
1942 (home-page "https://github.com/tidyverse/glue")
1943 (synopsis "Interpreted string literals")
1944 (description
1945 "This package provides an implementation of interpreted string literals,
1946 inspired by Python's Literal String Interpolation (PEP-0498) and
1947 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1948 (license license:expat)))
1949
1950 (define-public r-pastecs
1951 (package
1952 (name "r-pastecs")
1953 (version "1.3.21")
1954 (source (origin
1955 (method url-fetch)
1956 (uri (cran-uri "pastecs" version))
1957 (sha256
1958 (base32
1959 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1960 (build-system r-build-system)
1961 (propagated-inputs
1962 `(("r-boot" ,r-boot)))
1963 (home-page "http://www.sciviews.org/pastecs")
1964 (synopsis "Analysis of space-time ecological series")
1965 (description
1966 "This package provides functions for regulation, decomposition and analysis
1967 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1968 initiative to bring PASSTEC 2000 functionalities to R.")
1969 (license license:gpl2+)))
1970
1971 (define-public r-partykit
1972 (package
1973 (name "r-partykit")
1974 (version "1.2-9")
1975 (source (origin
1976 (method url-fetch)
1977 (uri (cran-uri "partykit" version))
1978 (sha256
1979 (base32
1980 "18nc6vvj1cy8ly2hqixg544sbg8vbpzwsr1cdlzrqfykd0pzgkvf"))))
1981 (build-system r-build-system)
1982 (propagated-inputs
1983 `(("r-formula" ,r-formula)
1984 ("r-inum" ,r-inum)
1985 ("r-libcoin" ,r-libcoin)
1986 ("r-mvtnorm" ,r-mvtnorm)
1987 ("r-rpart" ,r-rpart)
1988 ("r-survival" ,r-survival)))
1989 (home-page "http://partykit.R-Forge.R-project.org/partykit")
1990 (synopsis "Toolkit for recursive partytioning")
1991 (description
1992 "This package provides a toolkit with infrastructure for representing,
1993 summarizing, and visualizing tree-structured regression and classification
1994 models.")
1995 (license license:gpl2+)))
1996
1997 (define-public r-plogr
1998 (package
1999 (name "r-plogr")
2000 (version "0.2.0")
2001 (source
2002 (origin
2003 (method url-fetch)
2004 (uri (cran-uri "plogr" version))
2005 (sha256
2006 (base32
2007 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
2008 (build-system r-build-system)
2009 (home-page "https://github.com/krlmlr/plogr")
2010 (synopsis "R bindings for the plog C++ logging library")
2011 (description
2012 "This package provides the header files for a stripped-down version of
2013 the plog header-only C++ logging library, and a method to log to R's standard
2014 error stream.")
2015 (license license:expat)))
2016
2017 (define-public r-pls
2018 (package
2019 (name "r-pls")
2020 (version "2.7-3")
2021 (source
2022 (origin
2023 (method url-fetch)
2024 (uri (cran-uri "pls" version))
2025 (sha256
2026 (base32 "0b3ls12w19wc4xkhnsgmb333y9lyzwq3syjc3k8zs1agnw59c7cg"))))
2027 (build-system r-build-system)
2028 (home-page "https://mevik.net/work/software/pls.html")
2029 (synopsis "Partial Least Squares and Principal Component Regression")
2030 (description
2031 "The pls package implements multivariate regression methods: Partial Least
2032 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
2033 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
2034
2035 @itemize
2036 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
2037 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
2038 @item multi-response models (or @dfn{PLS2})
2039 @item flexible cross-validation
2040 @item Jackknife variance estimates of regression coefficients
2041 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
2042 (R)MSEP, R², and correlation loadings
2043 @item formula interface, modelled after @code{lm()}, with methods for predict,
2044 print, summary, plot, update, etc.
2045 @item extraction functions for coefficients, scores, and loadings
2046 @item MSEP, RMSEP, and R² estimates
2047 @item multiplicative scatter correction (@dfn{MSC})
2048 @end itemize\n")
2049 (license license:gpl2)))
2050
2051 (define-public r-ps
2052 (package
2053 (name "r-ps")
2054 (version "1.3.4")
2055 (source
2056 (origin
2057 (method url-fetch)
2058 (uri (cran-uri "ps" version))
2059 (sha256
2060 (base32 "1cxfhnff22fbsr9vynhql0rhhrqfxvkb6kv11h2m740r9scwcs44"))))
2061 (build-system r-build-system)
2062 (home-page "https://ps.r-lib.org")
2063 (synopsis "List, query, and manipulate system processes")
2064 (description
2065 "The ps package implements an API to list, query, and manipulate system
2066 processes. Most of its code is based on the @code{psutil} Python package.")
2067 (license license:bsd-3)))
2068
2069 (define-public r-pkgbuild
2070 (package
2071 (name "r-pkgbuild")
2072 (version "1.1.0")
2073 (source
2074 (origin
2075 (method url-fetch)
2076 (uri (cran-uri "pkgbuild" version))
2077 (sha256
2078 (base32 "1gdbrjq4kiwm45c6pb23mp327qyjvslhyf72ca4zhlzwc5vgp6xk"))))
2079 (build-system r-build-system)
2080 (propagated-inputs
2081 `(("r-callr" ,r-callr)
2082 ("r-cli" ,r-cli)
2083 ("r-crayon" ,r-crayon)
2084 ("r-desc" ,r-desc)
2085 ("r-prettyunits" ,r-prettyunits)
2086 ("r-r6" ,r-r6)
2087 ("r-rprojroot" ,r-rprojroot)
2088 ("r-withr" ,r-withr)))
2089 (home-page "https://github.com/r-pkgs/pkgbuild")
2090 (synopsis "Find tools needed to build R packages")
2091 (description
2092 "This package provides functions used to build R packages. It locates
2093 compilers needed to build R packages on various platforms and ensures the PATH
2094 is configured appropriately so R can use them.")
2095 (license license:gpl3)))
2096
2097 (define-public r-pkgload
2098 (package
2099 (name "r-pkgload")
2100 (version "1.1.0")
2101 (source
2102 (origin
2103 (method url-fetch)
2104 (uri (cran-uri "pkgload" version))
2105 (sha256
2106 (base32
2107 "03bv8xq4s6s7m34y1kjs99jzlb95vwrfi76mbnhmzcx2pc6ld78q"))))
2108 (build-system r-build-system)
2109 (propagated-inputs
2110 `(("r-cli" ,r-cli)
2111 ("r-crayon" ,r-crayon)
2112 ("r-desc" ,r-desc)
2113 ("r-pkgbuild" ,r-pkgbuild)
2114 ("r-rlang" ,r-rlang)
2115 ("r-rprojroot" ,r-rprojroot)
2116 ("r-rstudioapi" ,r-rstudioapi)
2117 ("r-withr" ,r-withr)))
2118 (home-page "https://github.com/r-lib/pkgload")
2119 (synopsis "Simulate package installation and attach")
2120 (description
2121 "This package simulates the process of installing a package and then
2122 attaching it. This is a key part of the @code{devtools} package as it allows
2123 you to rapidly iterate while developing a package.")
2124 (license license:gpl3)))
2125
2126 (define-public r-rcpp
2127 (package
2128 (name "r-rcpp")
2129 (version "1.0.5")
2130 (source
2131 (origin
2132 (method url-fetch)
2133 (uri (cran-uri "Rcpp" version))
2134 (sha256
2135 (base32 "012wbj446k1wz6bp6bpf6h77ypvcsw69xvnax6qf6vyc7dj2qimq"))))
2136 (build-system r-build-system)
2137 (home-page "http://www.rcpp.org")
2138 (synopsis "Seamless R and C++ integration")
2139 (description
2140 "The Rcpp package provides R functions as well as C++ classes which offer
2141 a seamless integration of R and C++. Many R data types and objects can be
2142 mapped back and forth to C++ equivalents which facilitates both writing of new
2143 code as well as easier integration of third-party libraries. Documentation
2144 about Rcpp is provided by several vignettes included in this package, via the
2145 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
2146 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
2147 @code{citation(\"Rcpp\")} for details on these last two.")
2148 (license license:gpl2+)))
2149
2150 (define-public r-bindr
2151 (package
2152 (name "r-bindr")
2153 (version "0.1.1")
2154 (source
2155 (origin
2156 (method url-fetch)
2157 (uri (cran-uri "bindr" version))
2158 (sha256
2159 (base32
2160 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
2161 (build-system r-build-system)
2162 (home-page "https://github.com/krlmlr/bindr")
2163 (synopsis "Parametrized active bindings")
2164 (description
2165 "This package provides a simple interface for creating active bindings
2166 where the bound function accepts additional arguments.")
2167 (license license:expat)))
2168
2169 (define-public r-bindrcpp
2170 (package
2171 (name "r-bindrcpp")
2172 (version "0.2.2")
2173 (source
2174 (origin
2175 (method url-fetch)
2176 (uri (cran-uri "bindrcpp" version))
2177 (sha256
2178 (base32
2179 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
2180 (build-system r-build-system)
2181 (propagated-inputs
2182 `(("r-bindr" ,r-bindr)
2183 ("r-plogr" ,r-plogr)
2184 ("r-rcpp" ,r-rcpp)))
2185 (home-page "https://github.com/krlmlr/bindrcpp")
2186 (synopsis "Rcpp interface to active bindings")
2187 (description
2188 "This package provides an easy way to fill an environment with active
2189 bindings that call a C++ function.")
2190 (license license:expat)))
2191
2192 (define-public r-bisquerna
2193 (package
2194 (name "r-bisquerna")
2195 (version "1.0.4")
2196 (source (origin
2197 (method url-fetch)
2198 (uri (cran-uri "BisqueRNA" version))
2199 (sha256
2200 (base32
2201 "01g34n87ml7n3pck77497ddgbv3rr5p4153ac8ninpgjijlm3jw2"))))
2202 (properties `((upstream-name . "BisqueRNA")))
2203 (build-system r-build-system)
2204 (propagated-inputs
2205 `(("r-biobase" ,r-biobase)
2206 ("r-limsolve" ,r-limsolve)))
2207 (home-page "https://www.biorxiv.org/content/10.1101/669911v1")
2208 (synopsis "Decomposition of bulk expression with single-cell sequencing")
2209 (description "This package provides tools to accurately estimate cell type
2210 abundances from heterogeneous bulk expression. A reference-based method
2211 utilizes single-cell information to generate a signature matrix and
2212 transformation of bulk expression for accurate regression based estimates.
2213 A marker-based method utilizes known cell-specific marker genes to measure
2214 relative abundances across samples.")
2215 (license license:gpl3)))
2216
2217 (define-public r-auc
2218 (package
2219 (name "r-auc")
2220 (version "0.3.0")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (cran-uri "AUC" version))
2225 (sha256
2226 (base32
2227 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
2228 (properties `((upstream-name . "AUC")))
2229 (build-system r-build-system)
2230 (home-page "https://cran.r-project.org/web/packages/AUC")
2231 (synopsis "Compute the area under the curve of selected measures")
2232 (description
2233 "This package includes functions to compute the area under the curve of
2234 selected measures: the area under the sensitivity curve (AUSEC), the area
2235 under the specificity curve (AUSPC), the area under the accuracy
2236 curve (AUACC), and the area under the receiver operating characteristic
2237 curve (AUROC). The curves can also be visualized. Support for partial areas
2238 is provided.")
2239 (license license:gpl2+)))
2240
2241 (define-public r-calibrate
2242 (package
2243 (name "r-calibrate")
2244 (version "1.7.7")
2245 (source
2246 (origin
2247 (method url-fetch)
2248 (uri (cran-uri "calibrate" version))
2249 (sha256
2250 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
2251 (build-system r-build-system)
2252 (propagated-inputs
2253 `(("r-mass" ,r-mass)))
2254 (home-page "https://cran.r-project.org/web/packages/calibrate")
2255 (synopsis "Calibration of scatterplot and biplot axes")
2256 (description
2257 "This is a package for drawing calibrated scales with tick marks
2258 on (non-orthogonal) variable vectors in scatterplots and biplots.")
2259 (license license:gpl2)))
2260
2261 (define-public r-shape
2262 (package
2263 (name "r-shape")
2264 (version "1.4.5")
2265 (source
2266 (origin
2267 (method url-fetch)
2268 (uri (cran-uri "shape" version))
2269 (sha256
2270 (base32
2271 "17qqhjyfhxv9la07ykaslb50c8g4d0cgfypx4y91h9i2yjw7jjh9"))))
2272 (build-system r-build-system)
2273 (home-page "https://cran.r-project.org/web/packages/shape")
2274 (synopsis "Functions for plotting graphical shapes")
2275 (description
2276 "This package provides functions for plotting graphical shapes such as
2277 ellipses, circles, cylinders, arrows, ...")
2278 (license license:gpl3+)))
2279
2280 (define-public r-globaloptions
2281 (package
2282 (name "r-globaloptions")
2283 (version "0.1.2")
2284 (source
2285 (origin
2286 (method url-fetch)
2287 (uri (cran-uri "GlobalOptions" version))
2288 (sha256
2289 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
2290 (properties `((upstream-name . "GlobalOptions")))
2291 (build-system r-build-system)
2292 (native-inputs
2293 `(("r-knitr" ,r-knitr)))
2294 (home-page "https://github.com/jokergoo/GlobalOptions")
2295 (synopsis "Generate functions to get or set global options")
2296 (description
2297 "This package provides more controls on the option values such as
2298 validation and filtering on the values, making options invisible or private.")
2299 (license license:gpl2+)))
2300
2301 (define-public r-circlize
2302 (package
2303 (name "r-circlize")
2304 (version "0.4.10")
2305 (source
2306 (origin
2307 (method url-fetch)
2308 (uri (cran-uri "circlize" version))
2309 (sha256
2310 (base32
2311 "1xb1jq3mg4kw1513zv1i09vhn7rj7f8vp0bnms2qml74s47wxsgk"))))
2312 (build-system r-build-system)
2313 (propagated-inputs
2314 `(("r-colorspace" ,r-colorspace)
2315 ("r-globaloptions" ,r-globaloptions)
2316 ("r-shape" ,r-shape)))
2317 (native-inputs
2318 `(("r-knitr" ,r-knitr)))
2319 (home-page "https://github.com/jokergoo/circlize")
2320 (synopsis "Circular visualization")
2321 (description
2322 "Circular layout is an efficient way to visualise huge amounts of
2323 information. This package provides an implementation of circular layout
2324 generation in R as well as an enhancement of available software. Its
2325 flexibility is based on the usage of low-level graphics functions such that
2326 self-defined high-level graphics can be easily implemented by users for
2327 specific purposes. Together with the seamless connection between the powerful
2328 computational and visual environment in R, it gives users more convenience and
2329 freedom to design figures for better understanding complex patterns behind
2330 multi-dimensional data.")
2331 (license license:gpl2+)))
2332
2333 (define-public r-powerlaw
2334 (package
2335 (name "r-powerlaw")
2336 (version "0.70.6")
2337 (source
2338 (origin
2339 (method url-fetch)
2340 (uri (cran-uri "poweRlaw" version))
2341 (sha256
2342 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
2343 (properties `((upstream-name . "poweRlaw")))
2344 (build-system r-build-system)
2345 (propagated-inputs
2346 `(("r-pracma" ,r-pracma)))
2347 (native-inputs
2348 `(("r-knitr" ,r-knitr)))
2349 (home-page "https://github.com/csgillespie/poweRlaw")
2350 (synopsis "Tools for the analysis of heavy tailed distributions")
2351 (description
2352 "This package provides an implementation of maximum likelihood estimators
2353 for a variety of heavy tailed distributions, including both the discrete and
2354 continuous power law distributions. Additionally, a goodness-of-fit based
2355 approach is used to estimate the lower cut-off for the scaling region.")
2356 ;; Any of these GPL versions.
2357 (license (list license:gpl2 license:gpl3))))
2358
2359 (define-public r-compare
2360 (package
2361 (name "r-compare")
2362 (version "0.2-6")
2363 (source
2364 (origin
2365 (method url-fetch)
2366 (uri (cran-uri "compare" version))
2367 (sha256
2368 (base32
2369 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
2370 (build-system r-build-system)
2371 (home-page "https://cran.r-project.org/web/packages/compare")
2372 (synopsis "Comparing objects for differences")
2373 (description
2374 "This package provides functions to compare a model object to a
2375 comparison object. If the objects are not identical, the functions can be
2376 instructed to explore various modifications of the objects (e.g., sorting
2377 rows, dropping names) to see if the modified versions are identical.")
2378 (license license:gpl2+)))
2379
2380 (define-public r-dendextend
2381 (package
2382 (name "r-dendextend")
2383 (version "1.14.0")
2384 (source
2385 (origin
2386 (method url-fetch)
2387 (uri (cran-uri "dendextend" version))
2388 (sha256
2389 (base32
2390 "0n3qg76apgbqbvxv2yp5qwpy6nx03xmmc9mdfyq4dqblqhdld29p"))))
2391 (build-system r-build-system)
2392 (propagated-inputs
2393 `(("r-ggplot2" ,r-ggplot2)
2394 ("r-magrittr" ,r-magrittr)
2395 ("r-viridis" ,r-viridis)))
2396 (native-inputs
2397 `(("r-knitr" ,r-knitr)))
2398 (home-page "https://cran.r-project.org/web/packages/dendextend")
2399 (synopsis "Extending 'dendrogram' functionality in R")
2400 (description
2401 "This package offers a set of functions for extending @code{dendrogram}
2402 objects in R, letting you visualize and compare trees of hierarchical
2403 clusterings. You can adjust a tree's graphical parameters (the color, size,
2404 type, etc of its branches, nodes and labels) and visually and statistically
2405 compare different dendrograms to one another.")
2406 ;; Any of these versions
2407 (license (list license:gpl2 license:gpl3))))
2408
2409 (define-public r-getoptlong
2410 (package
2411 (name "r-getoptlong")
2412 (version "1.0.2")
2413 (source
2414 (origin
2415 (method url-fetch)
2416 (uri (cran-uri "GetoptLong" version))
2417 (sha256
2418 (base32
2419 "1p89v2qzqfxyrmqzkv245716n9i4bllnq77a6gw811mgdhxbd51l"))))
2420 (properties `((upstream-name . "GetoptLong")))
2421 (build-system r-build-system)
2422 (inputs
2423 `(("perl" ,perl)))
2424 (propagated-inputs
2425 `(("r-crayon" ,r-crayon)
2426 ("r-globaloptions" ,r-globaloptions)
2427 ("r-rjson" ,r-rjson)))
2428 (native-inputs
2429 `(("r-knitr" ,r-knitr)))
2430 (home-page "https://github.com/jokergoo/GetoptLong")
2431 (synopsis "Parsing command-line arguments and variable interpolation")
2432 (description
2433 "This is yet another command-line argument parser which wraps the
2434 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
2435 use in R. It also provides a simple way for variable interpolation in R.")
2436 (license license:gpl2+)))
2437
2438 (define-public r-fastmatch
2439 (package
2440 (name "r-fastmatch")
2441 (version "1.1-0")
2442 (source
2443 (origin
2444 (method url-fetch)
2445 (uri (cran-uri "fastmatch" version))
2446 (sha256
2447 (base32
2448 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
2449 (build-system r-build-system)
2450 (home-page "https://www.rforge.net/fastmatch")
2451 (synopsis "Fast match function")
2452 (description
2453 "This package provides a fast @code{match} replacement for cases that
2454 require repeated look-ups. It is slightly faster that R's built-in
2455 @code{match} function on first match against a table, but extremely fast on
2456 any subsequent lookup as it keeps the hash table in memory.")
2457 (license license:gpl2)))
2458
2459 (define-public r-ff
2460 (package
2461 (name "r-ff")
2462 (version "4.0.2")
2463 (source
2464 (origin
2465 (method url-fetch)
2466 (uri (cran-uri "ff" version))
2467 (sha256
2468 (base32
2469 "1qbfmhk4v76q145yalqaiaffklvkfs615b5m0imxyjyjcvx1nbn0"))))
2470 (build-system r-build-system)
2471 (propagated-inputs `(("r-bit" ,r-bit)))
2472 (home-page "http://ff.r-forge.r-project.org/")
2473 (synopsis "Memory-efficient storage of large data on disk and access functions")
2474 (description
2475 "This package provides data structures that are stored on disk but
2476 behave (almost) as if they were in RAM by transparently mapping only a section
2477 in main memory.")
2478 ;; error Architecture not supported.
2479 (supported-systems (delete "aarch64-linux" %supported-systems))
2480 (license license:gpl2)))
2481
2482 (define-public r-ffbase
2483 (package
2484 (name "r-ffbase")
2485 (version "0.13.1")
2486 (source
2487 (origin
2488 (method url-fetch)
2489 (uri (cran-uri "ffbase" version))
2490 (sha256
2491 (base32
2492 "0knl0vnh8w4q3ry24gp4fd55ipnaj9hb1rwm31fs119kgmh3gd8x"))))
2493 (build-system r-build-system)
2494 (propagated-inputs
2495 `(("r-bit" ,r-bit)
2496 ("r-fastmatch" ,r-fastmatch)
2497 ("r-ff" ,r-ff)))
2498 (home-page "https://github.com/edwindj/ffbase")
2499 (synopsis "Basic statistical functions for package 'ff'")
2500 (description
2501 "This package extends the out of memory vectors of @code{ff} with
2502 statistical functions and other utilities to ease their usage.")
2503 (license license:gpl3)))
2504
2505 (define-public r-prettyunits
2506 (package
2507 (name "r-prettyunits")
2508 (version "1.1.1")
2509 (source
2510 (origin
2511 (method url-fetch)
2512 (uri (cran-uri "prettyunits" version))
2513 (sha256
2514 (base32
2515 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
2516 (build-system r-build-system)
2517 (home-page "https://github.com/gaborcsardi/prettyunits")
2518 (synopsis "Pretty, human readable formatting of quantities")
2519 (description
2520 "This package provides tools for pretty, human readable formatting of
2521 quantities.")
2522 (license license:expat)))
2523
2524 (define-public r-reshape
2525 (package
2526 (name "r-reshape")
2527 (version "0.8.8")
2528 (source
2529 (origin
2530 (method url-fetch)
2531 (uri (cran-uri "reshape" version))
2532 (sha256
2533 (base32
2534 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
2535 (build-system r-build-system)
2536 (propagated-inputs
2537 `(("r-plyr" ,r-plyr)
2538 ("r-rcpp" ,r-rcpp)))
2539 (home-page "http://had.co.nz/reshape")
2540 (synopsis "Flexibly reshape data")
2541 (description
2542 "Flexibly restructure and aggregate data using just two functions:
2543 @code{melt} and @code{cast}. This package provides them.")
2544 (license license:expat)))
2545
2546 (define-public r-progress
2547 (package
2548 (name "r-progress")
2549 (version "1.2.2")
2550 (source
2551 (origin
2552 (method url-fetch)
2553 (uri (cran-uri "progress" version))
2554 (sha256
2555 (base32
2556 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
2557 (build-system r-build-system)
2558 (propagated-inputs
2559 `(("r-crayon" ,r-crayon)
2560 ("r-hms" ,r-hms)
2561 ("r-prettyunits" ,r-prettyunits)
2562 ("r-r6" ,r-r6)))
2563 (home-page "https://github.com/gaborcsardi/progress")
2564 (synopsis "Terminal progress bars")
2565 (description
2566 "This package provides configurable progress bars. They may include
2567 percentage, elapsed time, and/or the estimated completion time. They work in
2568 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
2569 package also provides a C++ API, that works with or without Rcpp.")
2570 (license license:expat)))
2571
2572 (define-public r-ggally
2573 (package
2574 (name "r-ggally")
2575 (version "2.0.0")
2576 (source
2577 (origin
2578 (method url-fetch)
2579 (uri (cran-uri "GGally" version))
2580 (sha256
2581 (base32
2582 "1gkmpzh1yvwvypkw0nwqv3gsf6za3220wig3rfv8g23kss60rl1s"))))
2583 (properties `((upstream-name . "GGally")))
2584 (build-system r-build-system)
2585 (inputs
2586 `(("libressl" ,libressl)))
2587 (propagated-inputs
2588 `(("r-ggplot2" ,r-ggplot2)
2589 ("r-gtable" ,r-gtable)
2590 ("r-lifecycle" ,r-lifecycle)
2591 ("r-plyr" ,r-plyr)
2592 ("r-progress" ,r-progress)
2593 ("r-rcolorbrewer" ,r-rcolorbrewer)
2594 ("r-reshape" ,r-reshape)
2595 ("r-rlang" ,r-rlang)
2596 ("r-scales" ,r-scales)))
2597 (home-page "https://ggobi.github.io/ggally")
2598 (synopsis "Extension to ggplot2")
2599 (description
2600 "The R package ggplot2 is a plotting system based on the grammar of
2601 graphics. GGally extends ggplot2 by adding several functions to reduce the
2602 complexity of combining geometric objects with transformed data. Some of
2603 these functions include a pairwise plot matrix, a two group pairwise plot
2604 matrix, a parallel coordinates plot, a survival plot, and several functions to
2605 plot networks.")
2606 (license license:gpl2+)))
2607
2608 (define-public r-proxy
2609 (package
2610 (name "r-proxy")
2611 (version "0.4-24")
2612 (source
2613 (origin
2614 (method url-fetch)
2615 (uri (cran-uri "proxy" version))
2616 (sha256
2617 (base32
2618 "0z4wdnpv5x135nssxnmkkba7fivd5xgbpaabqjkl2na76vq9pzwc"))))
2619 (build-system r-build-system)
2620 (home-page "https://cran.r-project.org/web/packages/proxy")
2621 (synopsis "Distance and similarity measures")
2622 (description
2623 "This package provides an extensible framework for the efficient
2624 calculation of auto- and cross-proximities, along with implementations of the
2625 most popular ones.")
2626 (license license:gpl2)))
2627
2628 (define-public r-sp
2629 (package
2630 (name "r-sp")
2631 (version "1.4-2")
2632 (source
2633 (origin
2634 (method url-fetch)
2635 (uri (cran-uri "sp" version))
2636 (sha256
2637 (base32 "02jxsd30apzjbdbssirysq70d4svdwzn931jhxr0ladl72g9bqvk"))))
2638 (build-system r-build-system)
2639 (propagated-inputs
2640 `(("r-lattice" ,r-lattice)))
2641 (home-page "https://cran.r-project.org/web/packages/sp")
2642 (synopsis "Classes and methods for spatial data")
2643 (description
2644 "This package provides classes and methods for spatial data; the classes
2645 document where the spatial location information resides, for 2D or 3D data.
2646 Utility functions are provided, e.g. for plotting data as maps, spatial
2647 selection, as well as methods for retrieving coordinates, for subsetting,
2648 print, summary, etc.")
2649 (license license:gpl2+)))
2650
2651 (define-public r-laplacesdemon
2652 (package
2653 (name "r-laplacesdemon")
2654 (version "16.1.4")
2655 (source
2656 (origin
2657 (method url-fetch)
2658 (uri (cran-uri "LaplacesDemon" version))
2659 (sha256
2660 (base32 "1nv1kx86cg8f2s8q15pzskc0lg94bb250p0fhybrx5sjqv1s2lj1"))))
2661 (properties `((upstream-name . "LaplacesDemon")))
2662 (build-system r-build-system)
2663 (home-page "https://github.com/LaplacesDemonR/LaplacesDemon")
2664 (synopsis "Complete environment for Bayesian inference")
2665 (description
2666 "This package provides a complete environment for Bayesian inference using
2667 a variety of different samplers.")
2668 (license license:expat)))
2669
2670 (define-public r-rmtstat
2671 (package
2672 (name "r-rmtstat")
2673 (version "0.3")
2674 (source
2675 (origin
2676 (method url-fetch)
2677 (uri (cran-uri "RMTstat" version))
2678 (sha256
2679 (base32
2680 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2681 (properties `((upstream-name . "RMTstat")))
2682 (build-system r-build-system)
2683 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2684 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2685 (description
2686 "This package provides functions for working with the Tracy-Widom laws
2687 and other distributions related to the eigenvalues of large Wishart
2688 matrices.")
2689 (license license:bsd-3)))
2690
2691 (define-public r-rmpi
2692 (package
2693 (name "r-rmpi")
2694 (version "0.6-9")
2695 (source (origin
2696 (method url-fetch)
2697 (uri (cran-uri "Rmpi" version))
2698 (sha256
2699 (base32
2700 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2701 (properties `((upstream-name . "Rmpi")))
2702 (build-system r-build-system)
2703 (arguments
2704 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2705 #:phases (modify-phases %standard-phases
2706 (add-before 'install 'mpi-setup
2707 ,%openmpi-setup))))
2708 (inputs
2709 `(("openmpi" ,openmpi)))
2710 (native-inputs
2711 `(("pkg-config" ,pkg-config)))
2712 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2713 (synopsis "R interface to message-passing interface (MPI)")
2714 (description
2715 "This package provides an interface (wrapper) to MPI APIs. It also
2716 provides an interactive R manager and worker environment.")
2717 (license license:gpl2+)))
2718
2719 (define-public r-lmoments
2720 (package
2721 (name "r-lmoments")
2722 (version "1.3-1")
2723 (source
2724 (origin
2725 (method url-fetch)
2726 (uri (cran-uri "Lmoments" version))
2727 (sha256
2728 (base32
2729 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2730 (properties `((upstream-name . "Lmoments")))
2731 (build-system r-build-system)
2732 (propagated-inputs
2733 `(("r-rcpp" ,r-rcpp)
2734 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2735 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2736 (synopsis "L-moments and quantile mixtures")
2737 (description
2738 "This package contains functions to estimate L-moments and trimmed
2739 L-moments from the data. It also contains functions to estimate the
2740 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2741 quantile mixture from L-moments and trimmed L-moments.")
2742 (license license:gpl2)))
2743
2744 (define-public r-distillery
2745 (package
2746 (name "r-distillery")
2747 (version "1.1")
2748 (source
2749 (origin
2750 (method url-fetch)
2751 (uri (cran-uri "distillery" version))
2752 (sha256
2753 (base32
2754 "15qhvhg6wmvlxrvvw70sk8pv76z5pd04vyasgczvxa0599ih7bzh"))))
2755 (build-system r-build-system)
2756 (home-page "https://ral.ucar.edu/staff/ericg/")
2757 (synopsis "Functions for confidence intervals and object information")
2758 (description
2759 "This package provides some very simple method functions for confidence
2760 interval calculation and to distill pertinent information from a potentially
2761 complex object; primarily used in common with the packages extRemes and
2762 SpatialVx.")
2763 (license license:gpl2+)))
2764
2765 (define-public r-extremes
2766 (package
2767 (name "r-extremes")
2768 (version "2.0-12")
2769 (source
2770 (origin
2771 (method url-fetch)
2772 (uri (cran-uri "extRemes" version))
2773 (sha256
2774 (base32
2775 "0wldzvj1h93jksq31dw9zgnr1wrqwmfr9qwmg7qk7nznsn2yy1h2"))))
2776 (properties `((upstream-name . "extRemes")))
2777 (build-system r-build-system)
2778 (propagated-inputs
2779 `(("r-distillery" ,r-distillery)
2780 ("r-lmoments" ,r-lmoments)))
2781 (home-page "https://www.assessment.ucar.edu/toolkit/")
2782 (synopsis "Extreme value analysis")
2783 (description
2784 "ExtRemes is a suite of functions for carrying out analyses on the
2785 extreme values of a process of interest; be they block maxima over long blocks
2786 or excesses over a high threshold.")
2787 (license license:gpl2+)))
2788
2789 (define-public r-lmtest
2790 (package
2791 (name "r-lmtest")
2792 (version "0.9-38")
2793 (source
2794 (origin
2795 (method url-fetch)
2796 (uri (cran-uri "lmtest" version))
2797 (sha256
2798 (base32
2799 "0sr19bmw2cpagfvwg772m79wvl1i2hww1xfr69bzr3rr8pm2r8ij"))))
2800 (build-system r-build-system)
2801 (propagated-inputs
2802 `(("r-zoo" ,r-zoo)))
2803 (native-inputs
2804 `(("gfortran" ,gfortran)))
2805 (home-page "https://cran.r-project.org/web/packages/lmtest")
2806 (synopsis "Testing linear regression models")
2807 (description
2808 "This package provides a collection of tests, data sets, and examples for
2809 diagnostic checking in linear regression models. Furthermore, some generic
2810 tools for inference in parametric models are provided.")
2811 ;; Either version is okay
2812 (license (list license:gpl2 license:gpl3))))
2813
2814 (define-public r-idr
2815 (package
2816 (name "r-idr")
2817 (version "1.2")
2818 (source (origin
2819 (method url-fetch)
2820 (uri (cran-uri "idr" version))
2821 (sha256
2822 (base32
2823 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2824 (build-system r-build-system)
2825 (home-page "https://cran.r-project.org/web/packages/idr/")
2826 (synopsis "Irreproducible discovery rate")
2827 (description
2828 "This is a package for estimating the copula mixture model and plotting
2829 correspondence curves in \"Measuring reproducibility of high-throughput
2830 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2831 by Li, Brown, Huang, and Bickel")
2832 (license license:gpl2+)))
2833
2834 (define-public r-inline
2835 (package
2836 (name "r-inline")
2837 (version "0.3.16")
2838 (source (origin
2839 (method url-fetch)
2840 (uri (cran-uri "inline" version))
2841 (sha256
2842 (base32
2843 "0x9m2hwin6anfhkf61cnsbqn4qp1pr2gy1pbwbdgbdz2cmns85nj"))))
2844 (build-system r-build-system)
2845 (home-page "https://cran.r-project.org/web/packages/inline")
2846 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2847 (description
2848 "This package provides functionality to dynamically define R functions
2849 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2850 @code{.Call} calling conventions.")
2851 ;; Any version of the LGPL.
2852 (license license:lgpl3+)))
2853
2854 (define-public r-inum
2855 (package
2856 (name "r-inum")
2857 (version "1.0-1")
2858 (source (origin
2859 (method url-fetch)
2860 (uri (cran-uri "inum" version))
2861 (sha256
2862 (base32
2863 "16d09391l65w557dkzhhx1aqn1ljamcmjj3yh42pwq037k0r8brw"))))
2864 (build-system r-build-system)
2865 (propagated-inputs
2866 `(("r-libcoin" ,r-libcoin)))
2867 (home-page "https://cran.r-project.org/web/packages/inum/")
2868 (synopsis "Interval and enum-type representation of vectors")
2869 (description
2870 "This package provides an enum-type representation of vectors and
2871 representation of intervals, including a method of coercing variables
2872 in data frames.")
2873 (license license:gpl2)))
2874
2875 (define-public r-bdsmatrix
2876 (package
2877 (name "r-bdsmatrix")
2878 (version "1.3-4")
2879 (source
2880 (origin
2881 (method url-fetch)
2882 (uri (cran-uri "bdsmatrix" version))
2883 (sha256
2884 (base32
2885 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
2886 (properties `((upstream-name . "bdsmatrix")))
2887 (build-system r-build-system)
2888 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
2889 (synopsis "Routines for block diagonal symmetric matrices")
2890 (description
2891 "This package provides procedures to work with block diagonal symmetric
2892 matrices, a special case of sparse matrices.")
2893 (license license:lgpl2.0)))
2894
2895 (define-public r-bbmle
2896 (package
2897 (name "r-bbmle")
2898 (version "1.0.23.1")
2899 (source
2900 (origin
2901 (method url-fetch)
2902 (uri (cran-uri "bbmle" version))
2903 (sha256
2904 (base32
2905 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
2906 (build-system r-build-system)
2907 (propagated-inputs
2908 `(("r-bdsmatrix" ,r-bdsmatrix)
2909 ("r-lattice" ,r-lattice)
2910 ("r-mass" ,r-mass)
2911 ("r-matrix" ,r-matrix)
2912 ("r-mvtnorm" ,r-mvtnorm)
2913 ("r-numderiv" ,r-numderiv)))
2914 (home-page "https://cran.r-project.org/web/packages/bbmle")
2915 (synopsis "Tools for General Maximum Likelihood Estimation")
2916 (description
2917 "This package provides methods and functions for fitting maximum
2918 likelihood models in R. This package modifies and extends the @code{mle}
2919 classes in the @code{stats4} package.")
2920 ;; Any version of the GPL
2921 (license license:gpl2+)))
2922
2923 (define-public r-emdbook
2924 (package
2925 (name "r-emdbook")
2926 (version "1.3.12")
2927 (source
2928 (origin
2929 (method url-fetch)
2930 (uri (cran-uri "emdbook" version))
2931 (sha256
2932 (base32
2933 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
2934 (build-system r-build-system)
2935 (propagated-inputs
2936 `(("r-bbmle" ,r-bbmle)
2937 ("r-coda" ,r-coda)
2938 ("r-lattice" ,r-lattice)
2939 ("r-mass" ,r-mass)
2940 ("r-plyr" ,r-plyr)))
2941 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2942 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2943 (description
2944 "This package provides auxiliary functions and data sets for \"Ecological
2945 Models and Data\", a book presenting maximum likelihood estimation and related
2946 topics for ecologists (ISBN 978-0-691-12522-0).")
2947 ;; Any GPL version
2948 (license (list license:gpl2 license:gpl3))))
2949
2950 (define-public r-lpsolve
2951 (package
2952 (name "r-lpsolve")
2953 (version "5.6.15")
2954 (source
2955 (origin
2956 (method url-fetch)
2957 (uri (cran-uri "lpSolve" version))
2958 (sha256
2959 (base32
2960 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
2961 (properties `((upstream-name . "lpSolve")))
2962 (build-system r-build-system)
2963 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2964 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2965 (description
2966 "Lp_solve is software for solving linear, integer and mixed integer
2967 programs. This implementation supplies a \"wrapper\" function in C and some R
2968 functions that solve general linear/integer problems, assignment problems, and
2969 transportation problems.")
2970 (license license:lgpl2.0)))
2971
2972 (define-public r-limsolve
2973 (package
2974 (name "r-limsolve")
2975 (version "1.5.6")
2976 (source
2977 (origin
2978 (method url-fetch)
2979 (uri (cran-uri "limSolve" version))
2980 (sha256
2981 (base32
2982 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
2983 (properties `((upstream-name . "limSolve")))
2984 (build-system r-build-system)
2985 (propagated-inputs
2986 `(("r-lpsolve" ,r-lpsolve)
2987 ("r-mass" ,r-mass)
2988 ("r-quadprog" ,r-quadprog)))
2989 (native-inputs `(("gfortran" ,gfortran)))
2990 (home-page "https://cran.r-project.org/web/packages/limSolve")
2991 (synopsis "Solving linear inverse models")
2992 (description
2993 "This package provides functions that:
2994
2995 @enumerate
2996 @item find the minimum/maximum of a linear or quadratic function,
2997 @item sample an underdetermined or overdetermined system,
2998 @item solve a linear system Ax=B for the unknown x.
2999 @end enumerate
3000
3001 It includes banded and tridiagonal linear systems. The package calls Fortran
3002 functions from LINPACK.")
3003 ;; Any GPL version.
3004 (license (list license:gpl2+ license:gpl3+))))
3005
3006 (define-public r-fitdistrplus
3007 (package
3008 (name "r-fitdistrplus")
3009 (version "1.1-1")
3010 (source
3011 (origin
3012 (method url-fetch)
3013 (uri (cran-uri "fitdistrplus" version))
3014 (sha256
3015 (base32
3016 "1rnfnwmxa495fql7q0h9018cnwygwhj8gfh6ryz1vbf474570vjl"))))
3017 (build-system r-build-system)
3018 (propagated-inputs
3019 `(("r-mass" ,r-mass)
3020 ("r-survival" ,r-survival)))
3021 (native-inputs
3022 `(("r-knitr" ,r-knitr)))
3023 (home-page "http://riskassessment.r-forge.r-project.org")
3024 (synopsis "Fitting a parametric distribution from data")
3025 (description
3026 "This package extends the @code{fitdistr} function of the MASS package
3027 with several functions to help the fit of a parametric distribution to
3028 non-censored or censored data. Censored data may contain left-censored,
3029 right-censored and interval-censored values, with several lower and upper
3030 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
3031 provides moment matching (MME), quantile matching (QME) and maximum
3032 goodness-of-fit estimation (MGE) methods (available only for non-censored
3033 data). Weighted versions of MLE, MME and QME are available.")
3034 (license license:gpl2+)))
3035
3036 (define-public r-energy
3037 (package
3038 (name "r-energy")
3039 (version "1.7-7")
3040 (source
3041 (origin
3042 (method url-fetch)
3043 (uri (cran-uri "energy" version))
3044 (sha256
3045 (base32
3046 "13wnx5nwk7nsv7vf5sxhz4y0rxrnzm76ldgywk1bxrz67srqzf37"))))
3047 (build-system r-build-system)
3048 (propagated-inputs
3049 `(("r-boot" ,r-boot)
3050 ("r-rcpp" ,r-rcpp)))
3051 (home-page "https://cran.r-project.org/web/packages/energy")
3052 (synopsis "Multivariate inference via the energy of data")
3053 (description
3054 "This package provides e-statistics (energy) tests and statistics for
3055 multivariate and univariate inference, including distance correlation,
3056 one-sample, two-sample, and multi-sample tests for comparing multivariate
3057 distributions, are implemented. Measuring and testing multivariate
3058 independence based on distance correlation, partial distance correlation,
3059 multivariate goodness-of-fit tests, clustering based on energy distance,
3060 testing for multivariate normality, distance components (disco) for
3061 non-parametric analysis of structured data, and other energy
3062 statistics/methods are implemented.")
3063 (license license:gpl2+)))
3064
3065 (define-public r-suppdists
3066 (package
3067 (name "r-suppdists")
3068 (version "1.1-9.5")
3069 (source
3070 (origin
3071 (method url-fetch)
3072 (uri (cran-uri "SuppDists" version))
3073 (sha256
3074 (base32
3075 "01j6p94m1g363nph2158fq2rmd6z3h5dvcv6aidh2d6syw131xak"))))
3076 (properties `((upstream-name . "SuppDists")))
3077 (build-system r-build-system)
3078 (home-page "https://cran.r-project.org/web/packages/SuppDists")
3079 (synopsis "Supplementary distributions")
3080 (description
3081 "This package provides ten distributions supplementing those built into
3082 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
3083 Spearman's rho, maximum F ratio, the Pearson product moment correlation
3084 coefficient, Johnson distributions, normal scores and generalized
3085 hypergeometric distributions. In addition two random number generators of
3086 George Marsaglia are included.")
3087 (license license:gpl2+)))
3088
3089 (define-public r-ksamples
3090 (package
3091 (name "r-ksamples")
3092 (version "1.2-9")
3093 (source
3094 (origin
3095 (method url-fetch)
3096 (uri (cran-uri "kSamples" version))
3097 (sha256
3098 (base32
3099 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
3100 (properties `((upstream-name . "kSamples")))
3101 (build-system r-build-system)
3102 (propagated-inputs
3103 `(("r-suppdists" ,r-suppdists)))
3104 (home-page "https://cran.r-project.org/web/packages/kSamples")
3105 (synopsis "K-Sample rank tests and their combinations")
3106 (description
3107 "This package provides tools to compares k samples using the
3108 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
3109 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
3110 test. It computes asymptotic, simulated or (limited) exact P-values, all
3111 valid under randomization, with or without ties, or conditionally under random
3112 sampling from populations, given the observed tie pattern. Except for Steel's
3113 test and the JT test it also combines these tests across several blocks of
3114 samples.")
3115 (license license:gpl2+)))
3116
3117 (define-public r-cvst
3118 (package
3119 (name "r-cvst")
3120 (version "0.2-2")
3121 (source
3122 (origin
3123 (method url-fetch)
3124 (uri (cran-uri "CVST" version))
3125 (sha256
3126 (base32
3127 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
3128 (properties `((upstream-name . "CVST")))
3129 (build-system r-build-system)
3130 (propagated-inputs
3131 `(("r-kernlab" ,r-kernlab)
3132 ("r-matrix" ,r-matrix)))
3133 (home-page "https://cran.r-project.org/web/packages/CVST")
3134 (synopsis "Fast cross-validation via sequential testing")
3135 (description
3136 "This package implements the fast cross-validation via sequential
3137 testing (CVST) procedure. CVST is an improved cross-validation procedure
3138 which uses non-parametric testing coupled with sequential analysis to
3139 determine the best parameter set on linearly increasing subsets of the data.
3140 Additionally to the CVST the package contains an implementation of the
3141 ordinary k-fold cross-validation with a flexible and powerful set of helper
3142 objects and methods to handle the overall model selection process. The
3143 implementations of the Cochran's Q test with permutations and the sequential
3144 testing framework of Wald are generic and can therefore also be used in other
3145 contexts.")
3146 (license license:gpl2+)))
3147
3148 (define-public r-squarem
3149 (package
3150 (name "r-squarem")
3151 (version "2020.4")
3152 (source
3153 (origin
3154 (method url-fetch)
3155 (uri (cran-uri "SQUAREM" version))
3156 (sha256
3157 (base32
3158 "1r2yxfiqbpwy5ccg94r7f6sz7lh5aq0xjpf632s42wgmml1dvlzb"))))
3159 (properties `((upstream-name . "SQUAREM")))
3160 (build-system r-build-system)
3161 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
3162 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
3163 (description
3164 "This package provides algorithms for accelerating the convergence of
3165 slow, monotone sequences from smooth, contraction mapping such as the EM
3166 algorithm. It can be used to accelerate any smooth, linearly convergent
3167 acceleration scheme. A tutorial style introduction to this package is
3168 available in a vignette.")
3169 (license license:gpl2+)))
3170
3171 (define-public r-lava
3172 (package
3173 (name "r-lava")
3174 (version "1.6.7")
3175 (source
3176 (origin
3177 (method url-fetch)
3178 (uri (cran-uri "lava" version))
3179 (sha256
3180 (base32
3181 "0ffzxbb8pvfh1m6j61az4ga37snyhylq2941fyc76w7w9i2sixv3"))))
3182 (build-system r-build-system)
3183 (propagated-inputs
3184 `(("r-numderiv" ,r-numderiv)
3185 ("r-squarem" ,r-squarem)
3186 ("r-survival" ,r-survival)))
3187 (home-page "https://github.com/kkholst/lava")
3188 (synopsis "Latent variable models")
3189 (description
3190 "This package provides tools for the estimation and simulation of latent
3191 variable models.")
3192 (license license:gpl3)))
3193
3194 (define-public r-drr
3195 (package
3196 (name "r-drr")
3197 (version "0.0.4")
3198 (source
3199 (origin
3200 (method url-fetch)
3201 (uri (cran-uri "DRR" version))
3202 (sha256
3203 (base32
3204 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
3205 (properties `((upstream-name . "DRR")))
3206 (build-system r-build-system)
3207 (propagated-inputs
3208 `(("r-cvst" ,r-cvst)
3209 ("r-kernlab" ,r-kernlab)
3210 ("r-matrix" ,r-matrix)))
3211 (home-page "https://cran.r-project.org/web/packages/DRR")
3212 (synopsis "Dimensionality reduction via regression")
3213 (description
3214 "This package provides an implementation of dimensionality reduction via
3215 regression using Kernel Ridge Regression.")
3216 (license license:gpl3)))
3217
3218 (define-public r-prodlim
3219 (package
3220 (name "r-prodlim")
3221 (version "2019.11.13")
3222 (source
3223 (origin
3224 (method url-fetch)
3225 (uri (cran-uri "prodlim" version))
3226 (sha256
3227 (base32
3228 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
3229 (build-system r-build-system)
3230 (propagated-inputs
3231 `(("r-kernsmooth" ,r-kernsmooth)
3232 ("r-lava" ,r-lava)
3233 ("r-rcpp" ,r-rcpp)
3234 ("r-survival" ,r-survival)))
3235 (home-page "https://cran.r-project.org/web/packages/prodlim")
3236 (synopsis "Product-limit estimation for censored event history analysis")
3237 (description
3238 "This package provides a fast and user-friendly implementation of
3239 nonparametric estimators for censored event history (survival) analysis with
3240 the Kaplan-Meier and Aalen-Johansen methods.")
3241 (license license:gpl2+)))
3242
3243 (define-public r-dimred
3244 (package
3245 (name "r-dimred")
3246 (version "0.2.3")
3247 (source
3248 (origin
3249 (method url-fetch)
3250 (uri (cran-uri "dimRed" version))
3251 (sha256
3252 (base32
3253 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
3254 (properties `((upstream-name . "dimRed")))
3255 (build-system r-build-system)
3256 (propagated-inputs
3257 `(("r-drr" ,r-drr)
3258 ("r-magrittr" ,r-magrittr)))
3259 (home-page "https://github.com/gdkrmr/dimRed")
3260 (synopsis "Framework for dimensionality reduction")
3261 (description
3262 "This package provides a collection of dimensionality reduction
3263 techniques from R packages and provides a common interface for calling the
3264 methods.")
3265 (license license:gpl3)))
3266
3267 (define-public r-timedate
3268 (package
3269 (name "r-timedate")
3270 (version "3043.102")
3271 (source
3272 (origin
3273 (method url-fetch)
3274 (uri (cran-uri "timeDate" version))
3275 (sha256
3276 (base32
3277 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
3278 (properties `((upstream-name . "timeDate")))
3279 (build-system r-build-system)
3280 (home-page "https://www.rmetrics.org")
3281 (synopsis "Chronological and calendar objects")
3282 (description
3283 "This package provides an environment for teaching \"Financial
3284 Engineering and Computational Finance\" and for managing chronological and
3285 calendar objects.")
3286 (license license:gpl2+)))
3287
3288 (define-public r-magic
3289 (package
3290 (name "r-magic")
3291 (version "1.5-9")
3292 (source
3293 (origin
3294 (method url-fetch)
3295 (uri (cran-uri "magic" version))
3296 (sha256
3297 (base32
3298 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
3299 (build-system r-build-system)
3300 (propagated-inputs
3301 `(("r-abind" ,r-abind)))
3302 (home-page "https://github.com/RobinHankin/magic.git")
3303 (synopsis "Create and investigate magic squares")
3304 (description
3305 "This package provides a collection of efficient, vectorized algorithms
3306 for the creation and investigation of magic squares and hypercubes, including
3307 a variety of functions for the manipulation and analysis of arbitrarily
3308 dimensioned arrays.")
3309 (license license:gpl2)))
3310
3311 (define-public r-rmysql
3312 (package
3313 (name "r-rmysql")
3314 (version "0.10.20")
3315 (source
3316 (origin
3317 (method url-fetch)
3318 (uri (cran-uri "RMySQL" version))
3319 (sha256
3320 (base32
3321 "0lv9m6zpm8dgv7yixr6xhw379vbq45d7n7gkrmjrppdj8vcih77i"))))
3322 (properties `((upstream-name . "RMySQL")))
3323 (build-system r-build-system)
3324 (inputs
3325 `(("mariadb" ,mariadb "lib")
3326 ("mariadb-dev" ,mariadb "dev")
3327 ("zlib" ,zlib)))
3328 (propagated-inputs
3329 `(("r-dbi" ,r-dbi)))
3330 (home-page "https://github.com/r-dbi/RMySQL")
3331 (synopsis "Database interface and MySQL driver for R")
3332 (description
3333 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
3334 package contains an old implementation based on legacy code from S-PLUS which
3335 is being phased out. A modern MySQL client based on Rcpp is available from
3336 the RMariaDB package.")
3337 (license license:gpl2)))
3338
3339 (define-public r-rpostgresql
3340 (package
3341 (name "r-rpostgresql")
3342 (version "0.6-2")
3343 (source
3344 (origin
3345 (method url-fetch)
3346 (uri (cran-uri "RPostgreSQL" version))
3347 (sha256
3348 (base32
3349 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
3350 (properties `((upstream-name . "RPostgreSQL")))
3351 (build-system r-build-system)
3352 (inputs
3353 `(("postgresql" ,postgresql)))
3354 (propagated-inputs
3355 `(("r-dbi" ,r-dbi)))
3356 (home-page "https://github.com/tomoakin/RPostgreSQL")
3357 (synopsis "R interface to the PostgreSQL database system")
3358 (description
3359 "This package provides a Database Interface (DBI) compliant driver for R
3360 to access PostgreSQL database systems.")
3361 ;; The whole package is released under GPL version 2. It includes code
3362 ;; under the PostgreSQL license.
3363 (license license:gpl2)))
3364
3365 (define-public r-linprog
3366 (package
3367 (name "r-linprog")
3368 (version "0.9-2")
3369 (source
3370 (origin
3371 (method url-fetch)
3372 (uri (cran-uri "linprog" version))
3373 (sha256
3374 (base32
3375 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
3376 (build-system r-build-system)
3377 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
3378 (home-page "http://linprog.r-forge.r-project.org/")
3379 (synopsis "Linear programming and optimization")
3380 (description
3381 "This package can be used to solve Linear Programming / Linear
3382 Optimization problems by using the simplex algorithm.")
3383 (license license:gpl2+)))
3384
3385 (define-public r-geometry
3386 (package
3387 (name "r-geometry")
3388 (version "0.4.5")
3389 (source
3390 (origin
3391 (method url-fetch)
3392 (uri (cran-uri "geometry" version))
3393 (sha256
3394 (base32
3395 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
3396 (build-system r-build-system)
3397 (propagated-inputs
3398 `(("r-magic" ,r-magic)
3399 ("r-linprog" ,r-linprog)
3400 ("r-lpsolve" ,r-lpsolve)
3401 ("r-rcpp" ,r-rcpp)
3402 ("r-rcppprogress" ,r-rcppprogress)))
3403 (home-page "http://geometry.r-forge.r-project.org/")
3404 (synopsis "Mesh generation and surface tesselation")
3405 (description
3406 "This package makes the qhull library available in R, in a similar manner
3407 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
3408 intersections about a point, Voronoi diagrams, furthest-site Delaunay
3409 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
3410 and higher dimensions. It implements the Quickhull algorithm for computing
3411 the convex hull. Qhull does not support constrained Delaunay triangulations,
3412 or mesh generation of non-convex objects, but the package does include some R
3413 functions that allow for this. Currently the package only gives access to
3414 Delaunay triangulation and convex hull computation.")
3415 ;; The Qhull sources are included and are distributed under a custom
3416 ;; non-copyleft license. The R sources are released under GPL version 2.
3417 (license (list license:gpl2
3418 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
3419
3420 (define-public r-ddalpha
3421 (package
3422 (name "r-ddalpha")
3423 (version "1.3.11")
3424 (source
3425 (origin
3426 (method url-fetch)
3427 (uri (cran-uri "ddalpha" version))
3428 (sha256
3429 (base32
3430 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
3431 (build-system r-build-system)
3432 (propagated-inputs
3433 `(("r-bh" ,r-bh)
3434 ("r-class" ,r-class)
3435 ("r-geometry" ,r-geometry)
3436 ("r-mass" ,r-mass)
3437 ("r-rcpp" ,r-rcpp)
3438 ("r-robustbase" ,r-robustbase)
3439 ("r-sfsmisc" ,r-sfsmisc)))
3440 (native-inputs
3441 `(("gfortran" ,gfortran)))
3442 (home-page "https://cran.r-project.org/web/packages/ddalpha")
3443 (synopsis "Depth-Based classification and calculation of data depth")
3444 (description
3445 "This package contains procedures for depth-based supervised learning,
3446 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
3447 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
3448 statistical depth function to a compact low-dimensional space, where the final
3449 classification is done. It also offers an extension to functional data and
3450 routines for calculating certain notions of statistical depth functions. 50
3451 multivariate and 5 functional classification problems are included.")
3452 (license license:gpl2)))
3453
3454 (define-public r-gower
3455 (package
3456 (name "r-gower")
3457 (version "0.2.2")
3458 (source
3459 (origin
3460 (method url-fetch)
3461 (uri (cran-uri "gower" version))
3462 (sha256
3463 (base32
3464 "0c9n921wn4hhlvjq96r4nkk96s5788376cbldr7y7bwz348200iz"))))
3465 (build-system r-build-system)
3466 (home-page "https://github.com/markvanderloo/gower")
3467 (synopsis "Gower's distance")
3468 (description
3469 "This package provides tools to compute Gower's distance (or similarity)
3470 coefficient between records, and to compute the top-n matches between records.
3471 Core algorithms are executed in parallel on systems supporting OpenMP.")
3472 (license license:gpl3)))
3473
3474 (define-public r-rcpproll
3475 (package
3476 (name "r-rcpproll")
3477 (version "0.3.0")
3478 (source
3479 (origin
3480 (method url-fetch)
3481 (uri (cran-uri "RcppRoll" version))
3482 (sha256
3483 (base32
3484 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
3485 (properties `((upstream-name . "RcppRoll")))
3486 (build-system r-build-system)
3487 (propagated-inputs
3488 `(("r-rcpp" ,r-rcpp)))
3489 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
3490 (synopsis "Efficient rolling and windowed operations")
3491 (description
3492 "This package provides fast and efficient routines for common rolling /
3493 windowed operations. Routines for the efficient computation of windowed mean,
3494 median, sum, product, minimum, maximum, standard deviation and variance are
3495 provided.")
3496 (license license:gpl2+)))
3497
3498 (define-public r-ipred
3499 (package
3500 (name "r-ipred")
3501 (version "0.9-9")
3502 (source
3503 (origin
3504 (method url-fetch)
3505 (uri (cran-uri "ipred" version))
3506 (sha256
3507 (base32
3508 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
3509 (build-system r-build-system)
3510 (propagated-inputs
3511 `(("r-class" ,r-class)
3512 ("r-mass" ,r-mass)
3513 ("r-nnet" ,r-nnet)
3514 ("r-prodlim" ,r-prodlim)
3515 ("r-rpart" ,r-rpart)
3516 ("r-survival" ,r-survival)))
3517 (home-page "https://cran.r-project.org/web/packages/ipred")
3518 (synopsis "Improved predictors")
3519 (description
3520 "This package provides improved predictive models by indirect
3521 classification and bagging for classification, regression and survival
3522 problems as well as resampling based estimators of prediction error.")
3523 (license license:gpl2+)))
3524
3525 (define-public r-psych
3526 (package
3527 (name "r-psych")
3528 (version "2.0.8")
3529 (source
3530 (origin
3531 (method url-fetch)
3532 (uri (cran-uri "psych" version))
3533 (sha256
3534 (base32
3535 "0ymds7ql2dv994m73h68dnhbsws8bl09p2rqvl6xsq6c6xr0yryg"))))
3536 (build-system r-build-system)
3537 (propagated-inputs
3538 `(("r-lattice" ,r-lattice)
3539 ("r-mnormt" ,r-mnormt)
3540 ("r-nlme" ,r-nlme)))
3541 (home-page "https://cran.r-project.org/web/packages/psych/")
3542 (synopsis "Procedures for psychological, psychometric, and personality research")
3543 (description
3544 "This package provides a general purpose toolbox for personality,
3545 psychometric theory and experimental psychology. Functions are primarily for
3546 multivariate analysis and scale construction using factor analysis, principal
3547 component analysis, cluster analysis and reliability analysis, although others
3548 provide basic descriptive statistics. Item Response Theory is done using
3549 factor analysis of tetrachoric and polychoric correlations. Functions for
3550 analyzing data at multiple levels include within and between group statistics,
3551 including correlations and factor analysis. Functions for simulating and
3552 testing particular item and test structures are included. Several functions
3553 serve as a useful front end for structural equation modeling. Graphical
3554 displays of path diagrams, factor analysis and structural equation models are
3555 created using basic graphics.")
3556 (license license:gpl2+)))
3557
3558 (define-public r-generics
3559 (package
3560 (name "r-generics")
3561 (version "0.0.2")
3562 (source
3563 (origin
3564 (method url-fetch)
3565 (uri (cran-uri "generics" version))
3566 (sha256
3567 (base32
3568 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
3569 (build-system r-build-system)
3570 (home-page "https://github.com/r-lib/generics")
3571 (synopsis "Common S3 generics not provided by base R methods")
3572 (description
3573 "In order to reduce potential package dependencies and conflicts,
3574 generics provides a number of commonly used S3 generics that are not provided
3575 by base R methods related to model fitting.")
3576 (license license:gpl2)))
3577
3578 (define-public r-broom
3579 (package
3580 (name "r-broom")
3581 (version "0.7.0")
3582 (source
3583 (origin
3584 (method url-fetch)
3585 (uri (cran-uri "broom" version))
3586 (sha256
3587 (base32
3588 "0bq8w1ckrladzck2g0mgiyjdrzi06kbqalk5q3pfvj1607fdv3d5"))))
3589 (build-system r-build-system)
3590 (propagated-inputs
3591 `(("r-backports" ,r-backports)
3592 ("r-dplyr" ,r-dplyr)
3593 ("r-ellipsis" ,r-ellipsis)
3594 ("r-generics" ,r-generics)
3595 ("r-glue" ,r-glue)
3596 ("r-purrr" ,r-purrr)
3597 ("r-rlang" ,r-rlang)
3598 ("r-stringr" ,r-stringr)
3599 ("r-tibble" ,r-tibble)
3600 ("r-tidyr" ,r-tidyr)))
3601 (native-inputs
3602 `(("r-knitr" ,r-knitr)))
3603 (home-page "https://github.com/tidyverse/broom")
3604 (synopsis "Convert statistical analysis objects into tidy data frames")
3605 (description
3606 "This package provides tools to convert statistical analysis objects from
3607 R into tidy data frames, so that they can more easily be combined, reshaped
3608 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
3609 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
3610 summarizes a model's statistical findings such as coefficients of a
3611 regression; @code{augment}, which adds columns to the original data such as
3612 predictions, residuals and cluster assignments; and @code{glance}, which
3613 provides a one-row summary of model-level statistics.")
3614 (license license:expat)))
3615
3616 (define-public r-recipes
3617 (package
3618 (name "r-recipes")
3619 (version "0.1.13")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (cran-uri "recipes" version))
3624 (sha256
3625 (base32
3626 "1d3pmprkiz60w7lq5q4lpl5zlwf7fg7qghf7sq6xs1294w54gzbs"))))
3627 (build-system r-build-system)
3628 (propagated-inputs
3629 `(("r-dplyr" ,r-dplyr)
3630 ("r-generics" ,r-generics)
3631 ("r-glue" ,r-glue)
3632 ("r-gower" ,r-gower)
3633 ("r-ipred" ,r-ipred)
3634 ("r-lifecycle" ,r-lifecycle)
3635 ("r-lubridate" ,r-lubridate)
3636 ("r-magrittr" ,r-magrittr)
3637 ("r-matrix" ,r-matrix)
3638 ("r-purrr" ,r-purrr)
3639 ("r-rlang" ,r-rlang)
3640 ("r-tibble" ,r-tibble)
3641 ("r-tidyr" ,r-tidyr)
3642 ("r-tidyselect" ,r-tidyselect)
3643 ("r-timedate" ,r-timedate)
3644 ("r-withr" ,r-withr)))
3645 (native-inputs
3646 `(("r-knitr" ,r-knitr)))
3647 (home-page "https://github.com/topepo/recipes")
3648 (synopsis "Preprocessing tools to create design matrices")
3649 (description
3650 "Recipes is an extensible framework to create and preprocess design
3651 matrices. Recipes consist of one or more data manipulation and analysis
3652 \"steps\". Statistical parameters for the steps can be estimated from an
3653 initial data set and then applied to other data sets. The resulting design
3654 matrices can then be used as inputs into statistical or machine learning
3655 models.")
3656 (license license:gpl2)))
3657
3658 (define-public r-pdist
3659 (package
3660 (name "r-pdist")
3661 (version "1.2")
3662 (source
3663 (origin
3664 (method url-fetch)
3665 (uri (cran-uri "pdist" version))
3666 (sha256
3667 (base32
3668 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
3669 (build-system r-build-system)
3670 (home-page "https://github.com/jeffwong/pdist")
3671 (synopsis "Partitioned distance function")
3672 (description
3673 "Pdist computes the euclidean distance between rows of a matrix X and
3674 rows of another matrix Y. Previously, this could be done by binding the two
3675 matrices together and calling @code{dist}, but this creates unnecessary
3676 computation by computing the distances between a row of X and another row of
3677 X, and likewise for Y. Pdist strictly computes distances across the two
3678 matrices, not within the same matrix, making computations significantly faster
3679 for certain use cases.")
3680 (license license:gpl3+)))
3681
3682 (define-public r-ggrepel
3683 (package
3684 (name "r-ggrepel")
3685 (version "0.8.2")
3686 (source
3687 (origin
3688 (method url-fetch)
3689 (uri (cran-uri "ggrepel" version))
3690 (sha256
3691 (base32
3692 "1qaifn3dazdqbqlii210xhw7yf142iw7g9p2axmmxbz90p0by08d"))))
3693 (build-system r-build-system)
3694 (propagated-inputs
3695 `(("r-ggplot2" ,r-ggplot2)
3696 ("r-rcpp" ,r-rcpp)
3697 ("r-scales" ,r-scales)))
3698 (native-inputs
3699 `(("r-knitr" ,r-knitr))) ; for vignettes
3700 (home-page "https://github.com/slowkow/ggrepel")
3701 (synopsis "Repulsive text and label geometries for ggplot2")
3702 (description
3703 "This package provides text and label geometries for ggplot2 that help to
3704 avoid overlapping text labels. Labels repel away from each other and away
3705 from the data points.")
3706 (license license:gpl3)))
3707
3708 (define-public r-corrplot
3709 (package
3710 (name "r-corrplot")
3711 (version "0.84")
3712 (source
3713 (origin
3714 (method url-fetch)
3715 (uri (cran-uri "corrplot" version))
3716 (sha256
3717 (base32
3718 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
3719 (build-system r-build-system)
3720 (home-page "https://github.com/taiyun/corrplot")
3721 (synopsis "Visualization of a correlation matrix")
3722 (description
3723 "This package provides a graphical display of a correlation matrix or
3724 general matrix. It also contains some algorithms to do matrix reordering. In
3725 addition, corrplot is good at details, including choosing color, text labels,
3726 color labels, layout, etc.")
3727 ;; Any version of the GPL
3728 (license license:gpl2+)))
3729
3730 (define-public r-stringdist
3731 (package
3732 (name "r-stringdist")
3733 (version "0.9.6")
3734 (source
3735 (origin
3736 (method url-fetch)
3737 (uri (cran-uri "stringdist" version))
3738 (sha256
3739 (base32 "0nb3iwpl4f3xxirns1frwvarpyrl4i5f74h8r6h80cg0a4mpdgcb"))))
3740 (build-system r-build-system)
3741 (home-page "https://github.com/markvanderloo/stringdist")
3742 (synopsis "Approximate string matching and string distance functions")
3743 (description
3744 "This package implements an approximate string matching version of R's
3745 native @code{match} function. It can calculate various string distances based
3746 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
3747 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3748 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3749 can be computed between character vectors while taking proper care of encoding
3750 or between integer vectors representing generic sequences.")
3751 (license license:gpl3+)))
3752
3753 (define-public r-ucminf
3754 (package
3755 (name "r-ucminf")
3756 (version "1.1-4")
3757 (source
3758 (origin
3759 (method url-fetch)
3760 (uri (cran-uri "ucminf" version))
3761 (sha256
3762 (base32
3763 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3764 (build-system r-build-system)
3765 (native-inputs `(("gfortran" ,gfortran)))
3766 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3767 (synopsis "General-purpose unconstrained non-linear optimization")
3768 (description
3769 "This package provides an implementation of an algorithm for
3770 general-purpose unconstrained non-linear optimization. The algorithm is of
3771 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3772 search with a trust region type monitoring of the input to the line search
3773 algorithm. The interface of @code{ucminf} is designed for easy interchange
3774 with the package @code{optim}.")
3775 (license license:gpl2+)))
3776
3777 (define-public r-useful
3778 (package
3779 (name "r-useful")
3780 (version "1.2.6")
3781 (source (origin
3782 (method url-fetch)
3783 (uri (cran-uri "useful" version))
3784 (sha256
3785 (base32
3786 "0n50v1q75k518sq23id14jphwla35q4sasahrnrnllwrachl67v1"))))
3787 (properties `((upstream-name . "useful")))
3788 (build-system r-build-system)
3789 (propagated-inputs
3790 `(("r-assertthat" ,r-assertthat)
3791 ("r-dplyr" ,r-dplyr)
3792 ("r-ggplot2" ,r-ggplot2)
3793 ("r-magrittr" ,r-magrittr)
3794 ("r-matrix" ,r-matrix)
3795 ("r-plyr" ,r-plyr)
3796 ("r-purrr" ,r-purrr)
3797 ("r-scales" ,r-scales)))
3798 (home-page "https://github.com/jaredlander/useful")
3799 (synopsis "Collection of handy, useful functions")
3800 (description "This package provides a set of little functions that have been
3801 found useful to do little odds and ends such as plotting the results of K-means
3802 clustering, substituting special text characters, viewing parts of a
3803 @code{data.frame}, constructing formulas from text and building design and
3804 response matrices.")
3805 (license license:bsd-3)))
3806
3807 (define-public r-ordinal
3808 (package
3809 (name "r-ordinal")
3810 (version "2019.12-10")
3811 (source
3812 (origin
3813 (method url-fetch)
3814 (uri (cran-uri "ordinal" version))
3815 (sha256
3816 (base32
3817 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
3818 (build-system r-build-system)
3819 (propagated-inputs
3820 `(("r-mass" ,r-mass)
3821 ("r-matrix" ,r-matrix)
3822 ("r-numderiv" ,r-numderiv)
3823 ("r-ucminf" ,r-ucminf)))
3824 (home-page "https://github.com/runehaubo/ordinal")
3825 (synopsis "Regression models for ordinal data")
3826 (description
3827 "This package provides an implementation of cumulative link (mixed)
3828 models also known as ordered regression models, proportional odds models,
3829 proportional hazards models for grouped survival times and ordered models.
3830 Estimation is via maximum likelihood and mixed models are fitted with the
3831 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3832 (license license:gpl2+)))
3833
3834 (define-public r-jomo
3835 (package
3836 (name "r-jomo")
3837 (version "2.7-2")
3838 (source
3839 (origin
3840 (method url-fetch)
3841 (uri (cran-uri "jomo" version))
3842 (sha256
3843 (base32
3844 "1sbcpacxnxbzwa8rr9x2bq7hh0s3sw6yznr90dkp43n6xk5xaqir"))))
3845 (build-system r-build-system)
3846 (propagated-inputs
3847 `(("r-lme4" ,r-lme4)
3848 ("r-mass" ,r-mass)
3849 ("r-ordinal" ,r-ordinal)
3850 ("r-survival" ,r-survival)))
3851 (home-page "https://cran.r-project.org/web/packages/jomo/")
3852 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3853 (description
3854 "Similarly to Schafer's package pan, jomo is a package for multilevel
3855 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3856 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3857 possibility of handling binary and categorical data through latent normal
3858 variables, the option to use cluster-specific covariance matrices and to
3859 impute compatibly with the substantive model.")
3860 (license license:gpl2)))
3861
3862 (define-public r-pan
3863 (package
3864 (name "r-pan")
3865 (version "1.6")
3866 (source
3867 (origin
3868 (method url-fetch)
3869 (uri (cran-uri "pan" version))
3870 (sha256
3871 (base32
3872 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3873 (build-system r-build-system)
3874 (native-inputs `(("gfortran" ,gfortran)))
3875 (home-page "https://cran.r-project.org/web/packages/pan/")
3876 (synopsis "Multiple imputation for multivariate panel or clustered data")
3877 (description
3878 "This package implements multiple imputation for multivariate panel or
3879 clustered data.")
3880 (license license:gpl3)))
3881
3882 (define-public r-mitml
3883 (package
3884 (name "r-mitml")
3885 (version "0.3-7")
3886 (source
3887 (origin
3888 (method url-fetch)
3889 (uri (cran-uri "mitml" version))
3890 (sha256
3891 (base32
3892 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3893 (build-system r-build-system)
3894 (propagated-inputs
3895 `(("r-haven" ,r-haven)
3896 ("r-jomo" ,r-jomo)
3897 ("r-pan" ,r-pan)))
3898 (home-page "https://cran.r-project.org/web/packages/mitml/")
3899 (synopsis "Tools for multiple imputation in multilevel modeling")
3900 (description
3901 "This package provides tools for multiple imputation of missing data in
3902 multilevel modeling. It includes a user-friendly interface to the packages
3903 pan and jomo, and several functions for visualization, data management and the
3904 analysis of multiply imputed data sets.")
3905 (license license:gpl2+)))
3906
3907 (define-public r-mice
3908 (package
3909 (name "r-mice")
3910 (version "3.11.0")
3911 (source
3912 (origin
3913 (method url-fetch)
3914 (uri (cran-uri "mice" version))
3915 (sha256
3916 (base32
3917 "1gawccw32l00rcriyxys0mzbxh44x04rziy0cbycc3i1qm39d4fq"))))
3918 (build-system r-build-system)
3919 (propagated-inputs
3920 `(("r-broom" ,r-broom)
3921 ("r-dplyr" ,r-dplyr)
3922 ("r-generics" ,r-generics)
3923 ("r-lattice" ,r-lattice)
3924 ("r-rcpp" ,r-rcpp)
3925 ("r-tidyr" ,r-tidyr)))
3926 (home-page "https://cran.r-project.org/web/packages/mice/")
3927 (synopsis "Multivariate imputation by chained equations")
3928 (description
3929 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3930 implemented by the MICE algorithm as described in @url{Van Buuren and
3931 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3932 variable has its own imputation model. Built-in imputation models are
3933 provided for continuous data (predictive mean matching, normal), binary
3934 data (logistic regression), unordered categorical data (polytomous logistic
3935 regression) and ordered categorical data (proportional odds). MICE can also
3936 impute continuous two-level data (normal model, pan, second-level variables).
3937 Passive imputation can be used to maintain consistency between variables.
3938 Various diagnostic plots are available to inspect the quality of the
3939 imputations.")
3940 ;; Any of these two versions.
3941 (license (list license:gpl2 license:gpl3))))
3942
3943 (define-public r-truncnorm
3944 (package
3945 (name "r-truncnorm")
3946 (version "1.0-8")
3947 (source
3948 (origin
3949 (method url-fetch)
3950 (uri (cran-uri "truncnorm" version))
3951 (sha256
3952 (base32
3953 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3954 (build-system r-build-system)
3955 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3956 (synopsis "Truncated normal distribution")
3957 (description "This package provides functions for the truncated normal
3958 distribution with mean equal to @code{mean} and standard deviation equal to
3959 @code{sd}. It includes density, distribution, quantile, and expected value
3960 functions, as well as a random generation function.")
3961 (license license:gpl2)))
3962
3963 (define-public r-rsolnp
3964 (package
3965 (name "r-rsolnp")
3966 (version "1.16")
3967 (source
3968 (origin
3969 (method url-fetch)
3970 (uri (cran-uri "Rsolnp" version))
3971 (sha256
3972 (base32
3973 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3974 (properties `((upstream-name . "Rsolnp")))
3975 (build-system r-build-system)
3976 (propagated-inputs
3977 `(("r-truncnorm" ,r-truncnorm)))
3978 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3979 (synopsis "General non-linear optimization")
3980 (description "The Rsolnp package implements a general non-linear augmented
3981 Lagrange multiplier method solver, a @dfn{sequential quadratic
3982 programming} (SQP) based solver).")
3983 ;; Any version of the GPL.
3984 (license license:gpl2+)))
3985
3986 (define-public r-hardyweinberg
3987 (package
3988 (name "r-hardyweinberg")
3989 (version "1.6.6")
3990 (source
3991 (origin
3992 (method url-fetch)
3993 (uri (cran-uri "HardyWeinberg" version))
3994 (sha256
3995 (base32
3996 "1qn1bbzfk4w3mqrzisshw5xx7x249sgmj6qdi39lkqb58a4mf4kh"))))
3997 (properties `((upstream-name . "HardyWeinberg")))
3998 (build-system r-build-system)
3999 (propagated-inputs
4000 `(("r-mice" ,r-mice)
4001 ("r-rcpp" ,r-rcpp)
4002 ("r-rsolnp" ,r-rsolnp)))
4003 (home-page "https://cran.r-project.org/package=HardyWeinberg")
4004 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
4005 (description
4006 "This package contains tools for exploring Hardy-Weinberg equilibrium for
4007 diallelic genetic marker data. All classical tests (chi-square, exact,
4008 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
4009 included in the package, as well as functions for power computation and for
4010 the simulation of marker data under equilibrium and disequilibrium. Routines
4011 for dealing with markers on the X-chromosome are included. Functions for
4012 testing equilibrium in the presence of missing data by using multiple
4013 imputation are also provided. Implements several graphics for exploring the
4014 equilibrium status of a large set of diallelic markers: ternary plots with
4015 acceptance regions, log-ratio plots and Q-Q plots.")
4016 (license license:gpl2+)))
4017
4018 (define-public r-sm
4019 (package
4020 (name "r-sm")
4021 (version "2.2-5.6")
4022 (source
4023 (origin
4024 (method url-fetch)
4025 (uri (cran-uri "sm" version))
4026 (sha256
4027 (base32
4028 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
4029 (build-system r-build-system)
4030 (native-inputs `(("gfortran" ,gfortran)))
4031 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
4032 (synopsis "Smoothing methods for nonparametric regression and density estimation")
4033 (description
4034 "This is software accompanying the book 'Applied Smoothing Techniques for
4035 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
4036 University Press. It provides smoothing methods for nonparametric regression
4037 and density estimation")
4038 (license license:gpl2+)))
4039
4040 (define-public r-venndiagram
4041 (package
4042 (name "r-venndiagram")
4043 (version "1.6.20")
4044 (source (origin
4045 (method url-fetch)
4046 (uri (cran-uri "VennDiagram" version))
4047 (sha256
4048 (base32
4049 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
4050 (properties `((upstream-name . "VennDiagram")))
4051 (build-system r-build-system)
4052 (propagated-inputs
4053 `(("r-futile-logger" ,r-futile-logger)))
4054 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
4055 (synopsis "Generate High-Resolution Venn and Euler Plots")
4056 (description
4057 "This package provides a set of functions to generate high-resolution
4058 Venn and Euler plots. It includes handling for several special cases,
4059 including two-case scaling, and extensive customization of plot shape and
4060 structure.")
4061 (license license:gpl2+)))
4062
4063 (define-public r-vioplot
4064 (package
4065 (name "r-vioplot")
4066 (version "0.3.5")
4067 (source
4068 (origin
4069 (method url-fetch)
4070 (uri (cran-uri "vioplot" version))
4071 (sha256
4072 (base32
4073 "0aiy615kn9lpr2cs757g3pklg81n01yhqh0wrwv111fn3cy86r0v"))))
4074 (build-system r-build-system)
4075 (propagated-inputs
4076 `(("r-sm" ,r-sm)
4077 ("r-zoo" ,r-zoo)))
4078 (native-inputs
4079 `(("r-knitr" ,r-knitr)))
4080 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
4081 (synopsis "Violin plot")
4082 (description
4083 "This package provides a violin plot, which is a combination of a box
4084 plot and a kernel density plot.")
4085 (license license:bsd-3)))
4086
4087 (define-public r-rsofia
4088 (package
4089 (name "r-rsofia")
4090 (version "1.1")
4091 (source (origin
4092 (method url-fetch)
4093 ;; This package has been removed from CRAN, so we can
4094 ;; only fetch it from the archives.
4095 (uri (string-append "https://cran.r-project.org/src/"
4096 "contrib/Archive/RSofia/RSofia_"
4097 version ".tar.gz"))
4098 (sha256
4099 (base32
4100 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
4101 (properties `((upstream-name . "RSofia")))
4102 (build-system r-build-system)
4103 (propagated-inputs
4104 `(("r-rcpp" ,r-rcpp)))
4105 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
4106 (synopsis "Port of sofia-ml to R")
4107 (description "This package is a port of sofia-ml to R. Sofia-ml is a
4108 suite of fast incremental algorithms for machine learning that can be used for
4109 training models for classification or ranking.")
4110 (license license:asl2.0)))
4111
4112 (define-public r-xts
4113 (package
4114 (name "r-xts")
4115 (version "0.12.1")
4116 (source
4117 (origin
4118 (method url-fetch)
4119 (uri (cran-uri "xts" version))
4120 (sha256
4121 (base32
4122 "0b6a7mpyk9aw6axas7nz01gadczprwwfhii01fz31z26z555i06n"))))
4123 (build-system r-build-system)
4124 (propagated-inputs `(("r-zoo" ,r-zoo)))
4125 (home-page "https://github.com/joshuaulrich/xts")
4126 (synopsis "Extensible time series")
4127 (description
4128 "This package provides for uniform handling of R's different time-based
4129 data classes by extending @code{zoo}, maximizing native format information
4130 preservation and allowing for user-level customization and extension, while
4131 simplifying cross-class interoperability.")
4132 (license license:gpl2+)))
4133
4134 (define-public r-performanceanalytics
4135 (package
4136 (name "r-performanceanalytics")
4137 (version "2.0.4")
4138 (source
4139 (origin
4140 (method url-fetch)
4141 (uri (cran-uri "PerformanceAnalytics" version))
4142 (sha256
4143 (base32
4144 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
4145 (properties
4146 `((upstream-name . "PerformanceAnalytics")))
4147 (build-system r-build-system)
4148 (propagated-inputs
4149 `(("r-quadprog" ,r-quadprog)
4150 ("r-xts" ,r-xts)
4151 ("r-zoo" ,r-zoo)))
4152 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
4153 (synopsis "Econometric tools for performance and risk analysis")
4154 (description "This is a collection of econometric functions for
4155 performance and risk analysis. This package aims to aid practitioners and
4156 researchers in utilizing the latest research in analysis of non-normal return
4157 streams. In general, it is most tested on return (rather than price) data on
4158 a regular scale, but most functions will work with irregular return data as
4159 well, and increasing numbers of functions will work with P&L or price data
4160 where possible.")
4161 ;; Either version may be picked.
4162 (license (list license:gpl2 license:gpl3))))
4163
4164 (define-public r-laeken
4165 (package
4166 (name "r-laeken")
4167 (version "0.5.1")
4168 (source
4169 (origin
4170 (method url-fetch)
4171 (uri (cran-uri "laeken" version))
4172 (sha256
4173 (base32
4174 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
4175 (build-system r-build-system)
4176 (propagated-inputs
4177 `(("r-boot" ,r-boot)
4178 ("r-mass" ,r-mass)))
4179 (home-page "https://cran.r-project.org/web/packages/laeken/")
4180 (synopsis "Estimation of indicators on social exclusion and poverty")
4181 (description "This package provides tools for the estimation of indicators
4182 on social exclusion and poverty, as well as an implementation of Pareto tail
4183 modeling for empirical income distributions.")
4184 (license license:gpl2+)))
4185
4186 (define-public r-vcd
4187 (package
4188 (name "r-vcd")
4189 (version "1.4-7")
4190 (source
4191 (origin
4192 (method url-fetch)
4193 (uri (cran-uri "vcd" version))
4194 (sha256
4195 (base32
4196 "16aj688nhlcvdxzfsqh4s375v8f8vl8997dl8h1xg29b42nv52gc"))))
4197 (build-system r-build-system)
4198 (propagated-inputs
4199 `(("r-colorspace" ,r-colorspace)
4200 ("r-lmtest" ,r-lmtest)
4201 ("r-mass" ,r-mass)))
4202 (home-page "https://cran.r-project.org/web/packages/vcd/")
4203 (synopsis "Visualizing categorical data")
4204 (description "This package provides visualization techniques, data sets,
4205 summary and inference procedures aimed particularly at categorical data.
4206 Special emphasis is given to highly extensible grid graphics. The package was
4207 originally inspired by the book \"Visualizing Categorical Data\" by Michael
4208 Friendly and is now the main support package for a new book, \"Discrete Data
4209 Analysis with R\" by Michael Friendly and David Meyer (2015).")
4210 (license license:gpl2)))
4211
4212 (define-public r-ica
4213 (package
4214 (name "r-ica")
4215 (version "1.0-2")
4216 (source
4217 (origin
4218 (method url-fetch)
4219 (uri (cran-uri "ica" version))
4220 (sha256
4221 (base32
4222 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
4223 (build-system r-build-system)
4224 (home-page "https://cran.r-project.org/web/packages/ica/")
4225 (synopsis "Independent component analysis")
4226 (description "This package provides tools for @dfn{Independent Component
4227 Analysis} (ICA) using various algorithms: FastICA,
4228 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
4229 of Eigenmatrices} (JADE).")
4230 (license license:gpl2+)))
4231
4232 (define-public r-dtw
4233 (package
4234 (name "r-dtw")
4235 (version "1.21-3")
4236 (source
4237 (origin
4238 (method url-fetch)
4239 (uri (cran-uri "dtw" version))
4240 (sha256
4241 (base32
4242 "02hyhx1sy5h3vzh9zixy18a7d47df4k5d0wyflcvlcbsbcl6p90s"))))
4243 (build-system r-build-system)
4244 (propagated-inputs `(("r-proxy" ,r-proxy)))
4245 (home-page "http://dtw.r-forge.r-project.org/")
4246 (synopsis "Dynamic Time Warping Algorithms")
4247 (description "This package provides a comprehensive implementation of
4248 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
4249 optimal (least cumulative distance) alignment between points of two time
4250 series. Common DTW variants covered include local (slope) and global (window)
4251 constraints, subsequence matches, arbitrary distance definitions,
4252 normalizations, minimum variance matching, and so on.")
4253 (license license:gpl2+)))
4254
4255 (define-public r-sdmtools
4256 (package
4257 (name "r-sdmtools")
4258 (version "1.1-221.2")
4259 (source
4260 (origin
4261 (method url-fetch)
4262 (uri (cran-uri "SDMTools" version))
4263 (sha256
4264 (base32
4265 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
4266 (properties `((upstream-name . "SDMTools")))
4267 (build-system r-build-system)
4268 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
4269 (home-page "https://www.rforge.net/SDMTools/")
4270 (synopsis "Species distribution modelling tools")
4271 (description "This package provides a set of tools for post processing
4272 the outcomes of species distribution modeling exercises. It includes novel
4273 methods for comparing models and tracking changes in distributions through
4274 time. It further includes methods for visualizing outcomes, selecting
4275 thresholds, calculating measures of accuracy and landscape fragmentation
4276 statistics, etc.")
4277 (license license:gpl3+)))
4278
4279 (define-public r-scatterplot3d
4280 (package
4281 (name "r-scatterplot3d")
4282 (version "0.3-41")
4283 (source
4284 (origin
4285 (method url-fetch)
4286 (uri (cran-uri "scatterplot3d" version))
4287 (sha256
4288 (base32
4289 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
4290 (build-system r-build-system)
4291 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
4292 (synopsis "3D scatter plot")
4293 (description "This package provides an implementation of scatter plots for
4294 plotting. a three dimensional point cloud.")
4295 (license license:gpl2)))
4296
4297 (define-public r-ggridges
4298 (package
4299 (name "r-ggridges")
4300 (version "0.5.2")
4301 (source
4302 (origin
4303 (method url-fetch)
4304 (uri (cran-uri "ggridges" version))
4305 (sha256
4306 (base32
4307 "03pz257aw0mkh5k75rby9givkc1ky3n5scvhjhjiz9vry9fpffmh"))))
4308 (build-system r-build-system)
4309 (propagated-inputs
4310 `(("r-ggplot2" ,r-ggplot2)
4311 ("r-plyr" ,r-plyr)
4312 ("r-scales" ,r-scales)
4313 ("r-withr" ,r-withr)))
4314 (home-page "https://github.com/clauswilke/ggridges")
4315 (synopsis "Ridgeline plots in ggplot2")
4316 (description
4317 "Ridgeline plots provide a convenient way of visualizing changes in
4318 distributions over time or space. This package enables the creation of such
4319 plots in @code{ggplot2}.")
4320 (license license:gpl2)))
4321
4322 (define-public r-ggjoy
4323 (package
4324 (name "r-ggjoy")
4325 (version "0.4.1")
4326 (source
4327 (origin
4328 (method url-fetch)
4329 (uri (cran-uri "ggjoy" version))
4330 (sha256
4331 (base32
4332 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
4333 (build-system r-build-system)
4334 (propagated-inputs
4335 `(("r-ggplot2" ,r-ggplot2)
4336 ("r-ggridges" ,r-ggridges)))
4337 (home-page "https://github.com/clauswilke/ggjoy")
4338 (synopsis "Joyplots in ggplot2")
4339 (description "Joyplots provide a convenient way of visualizing changes in
4340 distributions over time or space. This package enables the creation of such
4341 plots in @code{ggplot2}.")
4342 (license license:gpl2)))
4343
4344 (define-public r-cli
4345 (package
4346 (name "r-cli")
4347 (version "2.0.2")
4348 (source
4349 (origin
4350 (method url-fetch)
4351 (uri (cran-uri "cli" version))
4352 (sha256
4353 (base32
4354 "1dhkah6jvr96k4h4agcc2rfls75bpjb0j58fzaz3dc0fp3jk8229"))))
4355 (build-system r-build-system)
4356 (propagated-inputs
4357 `(("r-assertthat" ,r-assertthat)
4358 ("r-crayon" ,r-crayon)
4359 ("r-fansi" ,r-fansi)
4360 ("r-glue" ,r-glue)))
4361 (home-page "https://github.com/r-lib/cli#readme")
4362 (synopsis "Helpers for developing command line interfaces")
4363 (description "This package provides a suite of tools designed to build
4364 attractive command line interfaces (CLIs). It includes tools for drawing
4365 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
4366 (license license:expat)))
4367
4368 (define-public r-argparser
4369 (package
4370 (name "r-argparser")
4371 (version "0.6")
4372 (source
4373 (origin
4374 (method url-fetch)
4375 (uri (cran-uri "argparser" version))
4376 (sha256
4377 (base32
4378 "1pxiz9jlhlnpzqn1lz349r07i7glw708w202x6dlnxp112fg7k4x"))))
4379 (build-system r-build-system)
4380 (home-page "https://bitbucket.org/djhshih/argparser")
4381 (synopsis "Command-line argument parser")
4382 (description
4383 "This package provides a cross-platform command-line argument parser
4384 written purely in R with no external dependencies. It is useful with the
4385 Rscript front-end and facilitates turning an R script into an executable
4386 script.")
4387 (license license:gpl3+)))
4388
4389 (define-public r-debugme
4390 (package
4391 (name "r-debugme")
4392 (version "1.1.0")
4393 (source
4394 (origin
4395 (method url-fetch)
4396 (uri (cran-uri "debugme" version))
4397 (sha256
4398 (base32
4399 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
4400 (build-system r-build-system)
4401 (propagated-inputs `(("r-crayon" ,r-crayon)))
4402 (home-page "https://github.com/r-lib/debugme#readme")
4403 (synopsis "Debug R packages")
4404 (description
4405 "This package allows the user to specify debug messages as special string
4406 constants, and control debugging of packages via environment variables.")
4407 (license license:expat)))
4408
4409 (define-public r-processx
4410 (package
4411 (name "r-processx")
4412 (version "3.4.4")
4413 (source
4414 (origin
4415 (method url-fetch)
4416 (uri (cran-uri "processx" version))
4417 (sha256
4418 (base32 "0as8lzfpbz5rcpcpczvrrgd67whngkmw12q33r2yn3k7lq80z95a"))))
4419 (build-system r-build-system)
4420 (propagated-inputs
4421 `(("r-ps" ,r-ps)
4422 ("r-r6" ,r-r6)))
4423 (home-page "https://github.com/r-lib/processx3")
4424 (synopsis "Execute and control system processes")
4425 (description
4426 "This package provides portable tools to run system processes in the
4427 background. It can check if a background process is running; wait on a
4428 background process to finish; get the exit status of finished processes; kill
4429 background processes and their children; restart processes. It can read the
4430 standard output and error of the processes, using non-blocking connections.
4431 @code{processx} can poll a process for standard output or error, with a
4432 timeout. It can also poll several processes at once.")
4433 (license license:expat)))
4434
4435 (define-public r-tsp
4436 (package
4437 (name "r-tsp")
4438 (version "1.1-10")
4439 (source
4440 (origin
4441 (method url-fetch)
4442 (uri (cran-uri "TSP" version))
4443 (sha256
4444 (base32
4445 "0z1v6m0vqjzxc4az3zyjaayygx0jr3mdmc56jjd421iqh0b9z5s4"))))
4446 (properties `((upstream-name . "TSP")))
4447 (build-system r-build-system)
4448 (propagated-inputs `(("r-foreach" ,r-foreach)))
4449 (home-page "https://cran.r-project.org/web/packages/TSP/")
4450 (synopsis "Traveling salesperson problem (TSP)")
4451 (description "This package provides basic infrastructure and some
4452 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
4453 traveling salesman problem).")
4454 (license license:gpl3)))
4455
4456 (define-public r-qap
4457 (package
4458 (name "r-qap")
4459 (version "0.1-1")
4460 (source
4461 (origin
4462 (method url-fetch)
4463 (uri (cran-uri "qap" version))
4464 (sha256
4465 (base32
4466 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
4467 (build-system r-build-system)
4468 (native-inputs `(("gfortran" ,gfortran)))
4469 (home-page "https://cran.r-project.org/web/packages/qap/")
4470 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
4471 (description "This package implements heuristics for the @dfn{quadratic
4472 assignment problem} (QAP). Currently only a simulated annealing heuristic is
4473 available.")
4474 (license license:gpl3)))
4475
4476 (define-public r-gclus
4477 (package
4478 (name "r-gclus")
4479 (version "1.3.2")
4480 (source
4481 (origin
4482 (method url-fetch)
4483 (uri (cran-uri "gclus" version))
4484 (sha256
4485 (base32
4486 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
4487 (build-system r-build-system)
4488 (propagated-inputs `(("r-cluster" ,r-cluster)))
4489 (home-page "https://cran.r-project.org/web/packages/gclus/")
4490 (synopsis "Clustering graphics")
4491 (description "This package orders panels in scatterplot matrices and
4492 parallel coordinate displays by some merit index. It contains various indices
4493 of merit, ordering functions, and enhanced versions of @code{pairs} and
4494 @code{parcoord} which color panels according to their merit level.")
4495 (license license:gpl2+)))
4496
4497 (define-public r-webshot
4498 (package
4499 (name "r-webshot")
4500 (version "0.5.2")
4501 (source
4502 (origin
4503 (method url-fetch)
4504 (uri (cran-uri "webshot" version))
4505 (sha256
4506 (base32
4507 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
4508 (build-system r-build-system)
4509 (propagated-inputs
4510 `(("r-callr" ,r-callr)
4511 ("r-jsonlite" ,r-jsonlite)
4512 ("r-magrittr" ,r-magrittr)))
4513 (home-page "https://github.com/wch/webshot/")
4514 (synopsis "Take screenshots of web pages")
4515 (description
4516 "Webshot makes it easy to take screenshots of web pages from within R.
4517 It can also run Shiny applications locally and take screenshots of the
4518 application; and it can render and screenshot static as well as interactive R
4519 Markdown documents.")
4520 (license license:gpl2)))
4521
4522 (define-public r-seriation
4523 (package
4524 (name "r-seriation")
4525 (version "1.2-8")
4526 (source
4527 (origin
4528 (method url-fetch)
4529 (uri (cran-uri "seriation" version))
4530 (sha256
4531 (base32
4532 "1zbdxq0s5rc5v307b69fw9k52m0654ls7pf22lh35ggirig6lwsk"))))
4533 (build-system r-build-system)
4534 (propagated-inputs
4535 `(("r-cluster" ,r-cluster)
4536 ("r-colorspace" ,r-colorspace)
4537 ("r-dendextend" ,r-dendextend)
4538 ("r-gclus" ,r-gclus)
4539 ("r-gplots" ,r-gplots)
4540 ("r-mass" ,r-mass)
4541 ("r-qap" ,r-qap)
4542 ("r-registry" ,r-registry)
4543 ("r-tsp" ,r-tsp)))
4544 (native-inputs `(("gfortran" ,gfortran)))
4545 (home-page "https://s2.smu.edu/IDA/seriation/")
4546 (synopsis "Infrastructure for ordering objects using seriation")
4547 (description
4548 "This package provides infrastructure for seriation with an
4549 implementation of several seriation/sequencing techniques to reorder matrices,
4550 dissimilarity matrices, and dendrograms. It also provides (optimally)
4551 reordered heatmaps, color images and clustering visualizations like
4552 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
4553 iVAT).")
4554 (license license:gpl3)))
4555
4556 (define-public r-xfun
4557 (package
4558 (name "r-xfun")
4559 (version "0.17")
4560 (source
4561 (origin
4562 (method url-fetch)
4563 (uri (cran-uri "xfun" version))
4564 (sha256
4565 (base32 "1zd5qi1rrz3b1lpisapa2yscanz39ghaamf28g7aq3z9ai2a2ymj"))))
4566 (build-system r-build-system)
4567 ;; knitr itself depends on xfun
4568 #;
4569 (native-inputs
4570 `(("r-knitr" ,r-knitr)))
4571 (home-page "https://github.com/yihui/xfun")
4572 (synopsis "Miscellaneous functions")
4573 (description
4574 "This package provides miscellaneous functions commonly used in other
4575 packages maintained by Yihui Xie.")
4576 (license license:expat)))
4577
4578 (define-public r-utf8
4579 (package
4580 (name "r-utf8")
4581 (version "1.1.4")
4582 (source
4583 (origin
4584 (method url-fetch)
4585 (uri (cran-uri "utf8" version))
4586 (sha256
4587 (base32
4588 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
4589 (build-system r-build-system)
4590 (home-page "https://github.com/patperry/r-utf8")
4591 (synopsis "Unicode text processing")
4592 (description
4593 "This package provides tools to process and print UTF-8 encoded
4594 international text (Unicode). Input, validate, normalize, encode, format, and
4595 display.")
4596 (license license:asl2.0)))
4597
4598 (define-public r-zeallot
4599 (package
4600 (name "r-zeallot")
4601 (version "0.1.0")
4602 (source
4603 (origin
4604 (method url-fetch)
4605 (uri (cran-uri "zeallot" version))
4606 (sha256
4607 (base32
4608 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
4609 (build-system r-build-system)
4610 (home-page "https://github.com/nteetor/zeallot")
4611 (synopsis "Multiple, unpacking, and destructuring assignment")
4612 (description
4613 "This package provides a @code{%<-%} operator to perform multiple,
4614 unpacking, and destructuring assignment in R. The operator unpacks the
4615 right-hand side of an assignment into multiple values and assigns these values
4616 to variables on the left-hand side of the assignment.")
4617 (license license:expat)))
4618
4619 (define-public r-vctrs
4620 (package
4621 (name "r-vctrs")
4622 (version "0.3.4")
4623 (source
4624 (origin
4625 (method url-fetch)
4626 (uri (cran-uri "vctrs" version))
4627 (sha256
4628 (base32
4629 "0xvqgc36zhd9y1xsm7kwrbr5sxwnd3jbr9qrb1gma2lqkqf42izb"))))
4630 (build-system r-build-system)
4631 (propagated-inputs
4632 `(("r-digest" ,r-digest)
4633 ("r-ellipsis" ,r-ellipsis)
4634 ("r-glue" ,r-glue)
4635 ("r-rlang" ,r-rlang)))
4636 (native-inputs
4637 `(("r-knitr" ,r-knitr)))
4638 (home-page "https://github.com/r-lib/vctrs")
4639 (synopsis "Vector helpers")
4640 (description
4641 "There are three main goals to the @code{vctrs} package:
4642
4643 @enumerate
4644 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4645 @code{length()} and @code{class()}. These definitions are paired with a
4646 framework for type-coercion and size-recycling.
4647 @item To define type- and size-stability as desirable function properties, use
4648 them to analyse existing base function, and to propose better alternatives.
4649 This work has been particularly motivated by thinking about the ideal
4650 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4651 @item To provide a new @code{vctr} base class that makes it easy to create new
4652 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4653 a few new @code{vctrs} generics, making implementation considerably simpler
4654 and more robust.
4655 @end enumerate\n")
4656 (license license:gpl3)))
4657
4658 (define-public r-pillar
4659 (package
4660 (name "r-pillar")
4661 (version "1.4.6")
4662 (source
4663 (origin
4664 (method url-fetch)
4665 (uri (cran-uri "pillar" version))
4666 (sha256
4667 (base32
4668 "01ck8ziqzjc9ibbj3g88siz1iw263dgl8jx6ryw2v50rjrr3y7fj"))))
4669 (build-system r-build-system)
4670 (propagated-inputs
4671 `(("r-cli" ,r-cli)
4672 ("r-crayon" ,r-crayon)
4673 ("r-ellipsis" ,r-ellipsis)
4674 ("r-fansi" ,r-fansi)
4675 ("r-lifecycle" ,r-lifecycle)
4676 ("r-rlang" ,r-rlang)
4677 ("r-utf8" ,r-utf8)
4678 ("r-vctrs" ,r-vctrs)))
4679 (home-page "https://github.com/r-lib/pillar")
4680 (synopsis "Coloured formatting for columns")
4681 (description
4682 "This package provides a @code{pillar} generic designed for formatting
4683 columns of data using the full range of colours provided by modern
4684 terminals.")
4685 (license license:gpl3)))
4686
4687 (define-public r-uuid
4688 (package
4689 (name "r-uuid")
4690 (version "0.1-4")
4691 (source
4692 (origin
4693 (method url-fetch)
4694 (uri (cran-uri "uuid" version))
4695 (sha256
4696 (base32
4697 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
4698 (build-system r-build-system)
4699 (home-page "https://www.rforge.net/uuid")
4700 (synopsis "Tools for generating and handling of UUIDs")
4701 (description
4702 "This package provides tools for generating and handling of
4703 @dfn{Universally Unique Identifiers} (UUIDs).")
4704 (license license:expat)))
4705
4706 (define-public r-tinytex
4707 (package
4708 (name "r-tinytex")
4709 (version "0.25")
4710 (source
4711 (origin
4712 (method url-fetch)
4713 (uri (cran-uri "tinytex" version))
4714 (sha256
4715 (base32
4716 "0zbhzxxjlkdj9byxyab477p7cnws5y87nyg989lkzarxdc7dglza"))))
4717 (build-system r-build-system)
4718 (propagated-inputs
4719 `(("r-xfun" ,r-xfun)))
4720 (home-page "https://github.com/yihui/tinytex")
4721 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4722 (description
4723 "This package provides helper functions to install and maintain the LaTeX
4724 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4725 easy-to-maintain version of TeX Live. This package also contains helper
4726 functions to compile LaTeX documents, and install missing LaTeX packages
4727 automatically.")
4728 (license license:expat)))
4729
4730 (define-public r-network
4731 (package
4732 (name "r-network")
4733 (version "1.16.0")
4734 (source
4735 (origin
4736 (method url-fetch)
4737 (uri (cran-uri "network" version))
4738 (sha256
4739 (base32
4740 "0dnf1wl3za2lhx2lwd8smhlijl1cfhckgr8zz9piiirrfi2m2kx2"))))
4741 (build-system r-build-system)
4742 (propagated-inputs
4743 `(("r-magrittr" ,r-magrittr)
4744 ("r-tibble" ,r-tibble)))
4745 (home-page "https://statnet.org/")
4746 (synopsis "Classes for relational data")
4747 (description
4748 "This package provides tools to create and modify network objects. The
4749 @code{network} class can represent a range of relational data types, and
4750 supports arbitrary vertex/edge/graph attributes.")
4751 (license license:gpl2+)))
4752
4753 (define-public r-stabs
4754 (package
4755 (name "r-stabs")
4756 (version "0.6-3")
4757 (source
4758 (origin
4759 (method url-fetch)
4760 (uri (cran-uri "stabs" version))
4761 (sha256
4762 (base32
4763 "17sa0sjxf6h7gx1ga1pxhv17yrz3qisaivbf5cbc3asvshhswqg9"))))
4764 (build-system r-build-system)
4765 (home-page "https://github.com/hofnerb/stabs")
4766 (synopsis "Stability selection with error control")
4767 (description
4768 "This package provides resampling procedures to assess the stability of
4769 selected variables with additional finite sample error control for
4770 high-dimensional variable selection procedures such as Lasso or boosting.
4771 Both, standard stability selection (Meinshausen & Buhlmann, 2010) and
4772 complementary pairs stability selection with improved error bounds
4773 (Shah & Samworth, 2013) are implemented. The package can be combined with
4774 arbitrary user specified variable selection approaches.")
4775 (license license:gpl2)))
4776
4777 (define-public r-statnet-common
4778 (package
4779 (name "r-statnet-common")
4780 (version "4.3.0")
4781 (source
4782 (origin
4783 (method url-fetch)
4784 (uri (cran-uri "statnet.common" version))
4785 (sha256
4786 (base32
4787 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4788 (properties
4789 `((upstream-name . "statnet.common")))
4790 (build-system r-build-system)
4791 (propagated-inputs
4792 `(("r-coda" ,r-coda)))
4793 (home-page "https://statnet.org")
4794 (synopsis "R scripts and utilities used by the Statnet software")
4795 (description "This package provides non-statistical utilities used by the
4796 software developed by the Statnet Project.")
4797 (license license:gpl3)))
4798
4799 (define-public r-statcheck
4800 (package
4801 (name "r-statcheck")
4802 (version "1.3.0")
4803 (source
4804 (origin
4805 (method url-fetch)
4806 (uri (cran-uri "statcheck" version))
4807 (sha256
4808 (base32
4809 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
4810 (build-system r-build-system)
4811 (propagated-inputs
4812 `(("r-ggplot2" ,r-ggplot2)
4813 ("r-plyr" ,r-plyr)
4814 ("r-rmarkdown" ,r-rmarkdown)))
4815 (home-page "https://cran.r-project.org/web/packages/statcheck/")
4816 (synopsis "Extract statistics from articles and recompute p-values")
4817 (description "This package can automatically extract statistical
4818 null-hypothesis significant testing (NHST) results from articles and recompute
4819 the p-values based on the reported test statistic and degrees of freedom to
4820 detect possible inconsistencies.")
4821 (license license:gpl2)))
4822
4823 (define-public r-sna
4824 (package
4825 (name "r-sna")
4826 (version "2.5")
4827 (source
4828 (origin
4829 (method url-fetch)
4830 (uri (cran-uri "sna" version))
4831 (sha256
4832 (base32
4833 "1j3i6300m686qqfmyvadim377cd3mplzgj6mandygw8brg50id8k"))))
4834 (build-system r-build-system)
4835 (propagated-inputs
4836 `(("r-network" ,r-network)
4837 ("r-statnet-common" ,r-statnet-common)))
4838 (home-page "https://statnet.org")
4839 (synopsis "Tools for social network analysis")
4840 (description
4841 "This package provides a range of tools for social network analysis,
4842 including node and graph-level indices, structural distance and covariance
4843 methods, structural equivalence detection, network regression, random graph
4844 generation, and 2D/3D network visualization.")
4845 (license license:gpl2+)))
4846
4847 (define-public r-tfisher
4848 (package
4849 (name "r-tfisher")
4850 (version "0.2.0")
4851 (source
4852 (origin
4853 (method url-fetch)
4854 (uri (cran-uri "TFisher" version))
4855 (sha256
4856 (base32
4857 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
4858 (properties `((upstream-name . "TFisher")))
4859 (build-system r-build-system)
4860 (propagated-inputs
4861 `(("r-matrix" ,r-matrix)
4862 ("r-mvtnorm" ,r-mvtnorm)
4863 ("r-sn" ,r-sn)))
4864 (home-page "https://cran.r-project.org/web/packages/TFisher/")
4865 (synopsis "Optimal thresholding Fisher's p-value combination method")
4866 (description
4867 "This package provides the @dfn{cumulative distribution function} (CDF),
4868 quantile, and statistical power calculator for a collection of thresholding
4869 Fisher's p-value combination methods, including Fisher's p-value combination
4870 method, truncated product method and, in particular, soft-thresholding
4871 Fisher's p-value combination method which is proven to be optimal in some
4872 context of signal detection. The p-value calculator for the omnibus version
4873 of these tests are also included.")
4874 (license license:gpl2)))
4875
4876 (define-public r-ttr
4877 (package
4878 (name "r-ttr")
4879 (version "0.24.2")
4880 (source
4881 (origin
4882 (method url-fetch)
4883 (uri (cran-uri "TTR" version))
4884 (sha256
4885 (base32
4886 "06vicgbhwpsww09hhha5mbcd0cwip6cvkfbhjjhp950rv64bk1r5"))))
4887 (properties `((upstream-name . "TTR")))
4888 (build-system r-build-system)
4889 (propagated-inputs
4890 `(("r-curl" ,r-curl)
4891 ("r-xts" ,r-xts)
4892 ("r-zoo" ,r-zoo)))
4893 (home-page "https://github.com/joshuaulrich/TTR")
4894 (synopsis "Technical trading rules")
4895 (description
4896 "This package provides functions and data to construct technical trading
4897 rules with R.")
4898 (license license:gpl2)))
4899
4900 (define-public r-leaps
4901 (package
4902 (name "r-leaps")
4903 (version "3.1")
4904 (source
4905 (origin
4906 (method url-fetch)
4907 (uri (cran-uri "leaps" version))
4908 (sha256
4909 (base32
4910 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
4911 (build-system r-build-system)
4912 (native-inputs `(("gfortran" ,gfortran)))
4913 (home-page "https://cran.r-project.org/web/packages/leaps/")
4914 (synopsis "Regression subset selection")
4915 (description
4916 "This package provides tools for regression subset selection, including
4917 exhaustive search.")
4918 (license license:gpl2+)))
4919
4920 (define-public r-splus2r
4921 (package
4922 (name "r-splus2r")
4923 (version "1.2-2")
4924 (source
4925 (origin
4926 (method url-fetch)
4927 (uri (cran-uri "splus2R" version))
4928 (sha256
4929 (base32
4930 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4931 (properties `((upstream-name . "splus2R")))
4932 (build-system r-build-system)
4933 (native-inputs `(("gfortran" ,gfortran)))
4934 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4935 (synopsis "Supplemental S-PLUS functionality in R")
4936 (description
4937 "Currently there are many functions in S-PLUS that are missing in R. To
4938 facilitate the conversion of S-PLUS packages to R packages, this package
4939 provides some missing S-PLUS functionality in R.")
4940 (license license:gpl2)))
4941
4942 (define-public r-ifultools
4943 (package
4944 (name "r-ifultools")
4945 (version "2.0-5")
4946 (source
4947 (origin
4948 (method url-fetch)
4949 (uri (cran-uri "ifultools" version))
4950 (sha256
4951 (base32
4952 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4953 (build-system r-build-system)
4954 (propagated-inputs
4955 `(("r-mass" ,r-mass)
4956 ("r-splus2r" ,r-splus2r)))
4957 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4958 (synopsis "Insightful research tools")
4959 (description "This package provides C code used by the wmtsa, fractal, and
4960 sapa R packages.")
4961 (license license:gpl2)))
4962
4963 (define-public r-sapa
4964 (package
4965 (name "r-sapa")
4966 (version "2.0-2")
4967 (source
4968 (origin
4969 (method url-fetch)
4970 (uri (cran-uri "sapa" version))
4971 (sha256
4972 (base32
4973 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4974 (build-system r-build-system)
4975 (propagated-inputs
4976 `(("r-ifultools" ,r-ifultools)
4977 ("r-splus2r" ,r-splus2r)))
4978 (home-page "https://cran.r-project.org/web/packages/sapa/")
4979 (synopsis "Spectral analysis for physical applications")
4980 (description "This package provides software for the book Spectral
4981 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4982 Cambridge University Press, 1993.")
4983 (license license:gpl2)))
4984
4985 (define-public r-aggregation
4986 (package
4987 (name "r-aggregation")
4988 (version "1.0.1")
4989 (source
4990 (origin
4991 (method url-fetch)
4992 (uri (cran-uri "aggregation" version))
4993 (sha256
4994 (base32
4995 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4996 (build-system r-build-system)
4997 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4998 (synopsis "Methods for p-value aggregation")
4999 (description
5000 "This package contains functionality for performing the following methods
5001 of p-value aggregation: Fisher's method, the Lancaster method (weighted
5002 Fisher's method), and Sidak correction.")
5003 (license license:gpl3)))
5004
5005 (define-public r-quantmod
5006 (package
5007 (name "r-quantmod")
5008 (version "0.4.17")
5009 (source
5010 (origin
5011 (method url-fetch)
5012 (uri (cran-uri "quantmod" version))
5013 (sha256
5014 (base32
5015 "1ss441rwlr88kz212m0wgx0hwgwi41rhy1jncg2lgqzqfvr5dzqa"))))
5016 (build-system r-build-system)
5017 (propagated-inputs
5018 `(("r-curl" ,r-curl)
5019 ("r-ttr" ,r-ttr)
5020 ("r-xts" ,r-xts)
5021 ("r-zoo" ,r-zoo)))
5022 (home-page "https://cran.r-project.org/web/packages/quantmod/")
5023 (synopsis "Quantitative financial modelling framework")
5024 (description "This package provides a quantitative financial modelling
5025 framework to allow users to specify, build, trade, and analyse quantitative
5026 financial trading strategies.")
5027 (license license:gpl3)))
5028
5029 (define-public r-tseries
5030 (package
5031 (name "r-tseries")
5032 (version "0.10-47")
5033 (source
5034 (origin
5035 (method url-fetch)
5036 (uri (cran-uri "tseries" version))
5037 (sha256
5038 (base32
5039 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
5040 (build-system r-build-system)
5041 (propagated-inputs
5042 `(("r-quadprog" ,r-quadprog)
5043 ("r-quantmod" ,r-quantmod)
5044 ("r-zoo" ,r-zoo)))
5045 (native-inputs
5046 `(("gfortran" ,gfortran)))
5047 (home-page "https://cran.r-project.org/web/packages/tseries/")
5048 (synopsis "Time series analysis and computational finance")
5049 (description
5050 "This package provides functions relating to time series analysis and
5051 computational finance.")
5052 (license license:gpl2)))
5053
5054 (define-public r-wmtsa
5055 (package
5056 (name "r-wmtsa")
5057 (version "2.0-3")
5058 (source
5059 (origin
5060 (method url-fetch)
5061 (uri (cran-uri "wmtsa" version))
5062 (sha256
5063 (base32
5064 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
5065 (build-system r-build-system)
5066 (propagated-inputs
5067 `(("r-ifultools" ,r-ifultools)
5068 ("r-mass" ,r-mass)
5069 ("r-splus2r" ,r-splus2r)))
5070 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
5071 (synopsis "Wavelet methods for time series analysis")
5072 (description
5073 "This package provides software to accompany the book \"Wavelet Methods
5074 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
5075 University Press, 2000.")
5076 (license license:gpl2)))
5077
5078 (define-public r-tsa
5079 (package
5080 (name "r-tsa")
5081 (version "1.2")
5082 (source
5083 (origin
5084 (method url-fetch)
5085 (uri (cran-uri "TSA" version))
5086 (sha256
5087 (base32
5088 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
5089 (properties `((upstream-name . "TSA")))
5090 (build-system r-build-system)
5091 (propagated-inputs
5092 `(("r-leaps" ,r-leaps)
5093 ("r-locfit" ,r-locfit)
5094 ("r-mgcv" ,r-mgcv)))
5095 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
5096 (synopsis "Time series analysis")
5097 (description
5098 "This package contains R functions and datasets detailed in the book
5099 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
5100 Cryer and Kung-Sik Chan.")
5101 (license license:gpl2+)))
5102
5103 (define-public r-extradistr
5104 (package
5105 (name "r-extradistr")
5106 (version "1.8.11")
5107 (source
5108 (origin
5109 (method url-fetch)
5110 (uri (cran-uri "extraDistr" version))
5111 (sha256
5112 (base32
5113 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
5114 (properties `((upstream-name . "extraDistr")))
5115 (build-system r-build-system)
5116 (propagated-inputs
5117 `(("r-rcpp" ,r-rcpp)))
5118 (home-page "https://github.com/twolodzko/extraDistr")
5119 (synopsis "Additional univariate and multivariate distributions")
5120 (description
5121 "This package implements density, distribution functions, quantile
5122 functions and random generation functions for a large number of univariate and
5123 multivariate distributions.")
5124 (license license:gpl2)))
5125
5126 (define-public r-fractal
5127 (package
5128 (name "r-fractal")
5129 (version "2.0-4")
5130 (source
5131 (origin
5132 (method url-fetch)
5133 (uri (cran-uri "fractal" version))
5134 (sha256
5135 (base32
5136 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
5137 (build-system r-build-system)
5138 (propagated-inputs
5139 `(("r-ifultools" ,r-ifultools)
5140 ("r-mass" ,r-mass)
5141 ("r-sapa" ,r-sapa)
5142 ("r-scatterplot3d" ,r-scatterplot3d)
5143 ("r-splus2r" ,r-splus2r)
5144 ("r-wmtsa" ,r-wmtsa)))
5145 (home-page "https://cran.r-project.org/web/packages/fractal/")
5146 (synopsis "Fractal time series modeling and analysis")
5147 (description
5148 "This package provides tools for stochastic fractal and deterministic
5149 chaotic time series analysis.")
5150 (license license:gpl2)))
5151
5152 (define-public r-urca
5153 (package
5154 (name "r-urca")
5155 (version "1.3-0")
5156 (source
5157 (origin
5158 (method url-fetch)
5159 (uri (cran-uri "urca" version))
5160 (sha256
5161 (base32
5162 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
5163 (build-system r-build-system)
5164 (propagated-inputs `(("r-nlme" ,r-nlme)))
5165 (native-inputs `(("gfortran" ,gfortran)))
5166 (home-page "https://cran.r-project.org/web/packages/urca/")
5167 (synopsis "Unit root and cointegration tests for time series data")
5168 (description
5169 "This package provides unit root and cointegration tests encountered in
5170 applied econometric analysis.")
5171 (license license:gpl2+)))
5172
5173 (define-public r-cubature
5174 (package
5175 (name "r-cubature")
5176 (version "2.0.4.1")
5177 (source
5178 (origin
5179 (method url-fetch)
5180 (uri (cran-uri "cubature" version))
5181 (sha256
5182 (base32
5183 "006la36gxdikvmdnq4ny7ik7r30id4z3b3fqsl57dpqwkpsbsgrq"))))
5184 (build-system r-build-system)
5185 (propagated-inputs
5186 `(("r-rcpp" ,r-rcpp)))
5187 (native-inputs
5188 `(("r-knitr" ,r-knitr)))
5189 (home-page "https://github.com/bnaras/cubature")
5190 (synopsis "Adaptive multivariate integration over hypercubes")
5191 (description
5192 "This package is an R wrapper around the cubature C library for adaptive
5193 multivariate integration over hypercubes. This version provides both
5194 @code{hcubature} and @code{pcubature} routines in addition to a vector
5195 interface.")
5196 ;; The included cubature C library is released under GPLv2+, but the
5197 ;; wrapper declares the license to be GPLv3+.
5198 (license (list license:gpl2+ license:gpl3+))))
5199
5200 (define-public r-trend
5201 (package
5202 (name "r-trend")
5203 (version "1.1.3")
5204 (source
5205 (origin
5206 (method url-fetch)
5207 (uri (cran-uri "trend" version))
5208 (sha256
5209 (base32
5210 "0bj40acr1sc7vfxdcsdja3g28xsmrclmgb3n94p89gfjcgp8nv1d"))))
5211 (build-system r-build-system)
5212 (propagated-inputs
5213 `(("r-extradistr" ,r-extradistr)))
5214 (native-inputs
5215 `(("gfortran" ,gfortran)))
5216 (home-page "https://cran.r-project.org/web/packages/trend/")
5217 (synopsis "Non-parametric trend tests and change-point detection")
5218 (description
5219 "The analysis of environmental data often requires the detection of
5220 trends and change-points. This package includes tests for trend
5221 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
5222 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
5223 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
5224 correlation trend test), change-point detection (Lanzante's test procedures,
5225 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
5226 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
5227 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
5228 sample Robust Rank-Order Distributional Test.")
5229 (license license:gpl3)))
5230
5231 (define-public r-expm
5232 (package
5233 (name "r-expm")
5234 (version "0.999-5")
5235 (source
5236 (origin
5237 (method url-fetch)
5238 (uri (cran-uri "expm" version))
5239 (sha256
5240 (base32
5241 "0y98ya8rhy891nysjlzzy7kcm13dsz8gvxwzvbkmcp1xx0vicxc7"))))
5242 (build-system r-build-system)
5243 (propagated-inputs `(("r-matrix" ,r-matrix)))
5244 (native-inputs `(("gfortran" ,gfortran)))
5245 (home-page "https://r-forge.r-project.org/projects/expm/")
5246 (synopsis "Tools for matrix exponentials and related quantities")
5247 (description
5248 "This package provides tools for the computation of the matrix
5249 exponential, logarithm, square root, and related quantities.")
5250 (license license:gpl2+)))
5251
5252 (define-public r-complexplus
5253 (package
5254 (name "r-complexplus")
5255 (version "2.1")
5256 (source
5257 (origin
5258 (method url-fetch)
5259 (uri (cran-uri "complexplus" version))
5260 (sha256
5261 (base32
5262 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
5263 (build-system r-build-system)
5264 (propagated-inputs
5265 `(("r-expm" ,r-expm)
5266 ("r-matrix" ,r-matrix)))
5267 (home-page "https://cran.r-project.org/web/packages/complexplus/")
5268 (synopsis "Functions of complex or real variables")
5269 (description
5270 "This package extends several functions to the complex domain, including
5271 the matrix exponential and logarithm, and the determinant.")
5272 (license license:gpl2)))
5273
5274 (define-public r-phontools
5275 (package
5276 (name "r-phontools")
5277 (version "0.2-2.1")
5278 (source
5279 (origin
5280 (method url-fetch)
5281 (uri (cran-uri "phonTools" version))
5282 (sha256
5283 (base32
5284 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
5285 (properties `((upstream-name . "phonTools")))
5286 (build-system r-build-system)
5287 (home-page "http://www.santiagobarreda.com/rscripts.html")
5288 (synopsis "Tools for phonetic and acoustic analyses")
5289 (description
5290 "This package contains tools for the organization, display, and analysis
5291 of the sorts of data frequently encountered in phonetics research and
5292 experimentation, including the easy creation of IPA vowel plots, and the
5293 creation and manipulation of WAVE audio files.")
5294 (license license:bsd-2)))
5295
5296 (define-public r-np
5297 (package
5298 (name "r-np")
5299 (version "0.60-10")
5300 (source
5301 (origin
5302 (method url-fetch)
5303 (uri (cran-uri "np" version))
5304 (sha256
5305 (base32
5306 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
5307 (build-system r-build-system)
5308 (propagated-inputs
5309 `(("r-boot" ,r-boot)
5310 ("r-cubature" ,r-cubature)
5311 ("r-quadprog" ,r-quadprog)
5312 ("r-quantreg" ,r-quantreg)))
5313 (home-page "https://github.com/JeffreyRacine/R-Package-np")
5314 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
5315 (description "This package provides non-parametric (and semi-parametric)
5316 kernel methods that seamlessly handle a mix of continuous, unordered, and
5317 ordered factor data types.")
5318 ;; Any version of the GPL.
5319 (license license:gpl3+)))
5320
5321 (define-public r-powerplus
5322 (package
5323 (name "r-powerplus")
5324 (version "3.1")
5325 (source
5326 (origin
5327 (method url-fetch)
5328 (uri (cran-uri "powerplus" version))
5329 (sha256
5330 (base32
5331 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
5332 (build-system r-build-system)
5333 (propagated-inputs
5334 `(("r-complexplus" ,r-complexplus)
5335 ("r-expm" ,r-expm)
5336 ("r-mass" ,r-mass)
5337 ("r-matrix" ,r-matrix)
5338 ("r-phontools" ,r-phontools)))
5339 (home-page "https://cran.r-project.org/web/packages/powerplus/")
5340 (synopsis "Exponentiation operations")
5341 (description
5342 "This package provides tools for the computation of matrix and scalar
5343 exponentiation.")
5344 (license license:gpl2)))
5345
5346 (define-public r-egg
5347 (package
5348 (name "r-egg")
5349 (version "0.4.5")
5350 (source
5351 (origin
5352 (method url-fetch)
5353 (uri (cran-uri "egg" version))
5354 (sha256
5355 (base32
5356 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
5357 (properties `((upstream-name . "egg")))
5358 (build-system r-build-system)
5359 (propagated-inputs
5360 `(("r-ggplot2" ,r-ggplot2)
5361 ("r-gridextra" ,r-gridextra)
5362 ("r-gtable" ,r-gtable)))
5363 (home-page "https://cran.r-project.org/web/packages/egg")
5364 (synopsis "Extensions for ggplot2")
5365 (description
5366 "This package provides miscellaneous functions to help customize ggplot2
5367 objects. High-level functions are provided to post-process ggplot2 layouts
5368 and allow alignment between plot panels, as well as setting panel sizes to
5369 fixed values. Other functions include a custom @code{geom}, and helper
5370 functions to enforce symmetric scales or add tags to facetted plots.")
5371 (license license:gpl3)))
5372
5373 (define-public r-heatmaply
5374 (package
5375 (name "r-heatmaply")
5376 (version "1.1.1")
5377 (source
5378 (origin
5379 (method url-fetch)
5380 (uri (cran-uri "heatmaply" version))
5381 (sha256
5382 (base32
5383 "02fv66h61y55bn5wrnlvhj7v6xwqs3pddyp3jgk554s1zv4qs2fr"))))
5384 (build-system r-build-system)
5385 (propagated-inputs
5386 `(("r-assertthat" ,r-assertthat)
5387 ("r-colorspace" ,r-colorspace)
5388 ("r-dendextend" ,r-dendextend)
5389 ("r-egg" ,r-egg)
5390 ("r-ggplot2" ,r-ggplot2)
5391 ("r-htmlwidgets" ,r-htmlwidgets)
5392 ("r-magrittr" ,r-magrittr)
5393 ("r-plotly" ,r-plotly)
5394 ("r-rcolorbrewer" ,r-rcolorbrewer)
5395 ("r-reshape2" ,r-reshape2)
5396 ("r-scales" ,r-scales)
5397 ("r-seriation" ,r-seriation)
5398 ("r-viridis" ,r-viridis)
5399 ("r-webshot" ,r-webshot)))
5400 (native-inputs
5401 `(("r-knitr" ,r-knitr)))
5402 (home-page "https://cran.r-project.org/package=heatmaply")
5403 (synopsis "Interactive cluster heat maps using plotly")
5404 (description
5405 "This package enables you to create interactive cluster heatmaps that can
5406 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
5407 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
5408 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
5409 a popular graphical method for visualizing high-dimensional data, in which a
5410 table of numbers is encoded as a grid of colored cells. The rows and columns
5411 of the matrix are ordered to highlight patterns and are often accompanied by
5412 dendrograms.")
5413 ;; Either version of the license.
5414 (license (list license:gpl2 license:gpl3))))
5415
5416 (define-public r-h5
5417 (package
5418 (name "r-h5")
5419 (version "0.9.9")
5420 (source
5421 (origin
5422 (method url-fetch)
5423 (uri (cran-uri "h5" version))
5424 (sha256
5425 (base32
5426 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
5427 (build-system r-build-system)
5428 (inputs
5429 `(("zlib" ,zlib)
5430 ("hdf5" ,hdf5)))
5431 (native-inputs
5432 `(("which" ,which)))
5433 (propagated-inputs
5434 `(("r-rcpp" ,r-rcpp)))
5435 (home-page "https://github.com/mannau/h5")
5436 (synopsis "Interface to the HDF5 Library")
5437 (description
5438 "This package provides an S4 interface to the HDF5 library supporting
5439 fast storage and retrieval of R-objects like vectors, matrices and arrays to
5440 binary files in a language independent format. The HDF5 format can therefore
5441 be used as an alternative to R's save/load mechanism. Since h5 is able to
5442 access only subsets of stored data it can also handle data sets which do not
5443 fit into memory.")
5444 (license license:bsd-2)))
5445
5446 (define-public r-cgdsr
5447 (package
5448 (name "r-cgdsr")
5449 (version "1.3.0")
5450 (source
5451 (origin
5452 (method url-fetch)
5453 (uri (cran-uri "cgdsr" version))
5454 (sha256
5455 (base32
5456 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
5457 (build-system r-build-system)
5458 (propagated-inputs
5459 `(("r-httr" ,r-httr)
5460 ("r-r-methodss3" ,r-r-methodss3)
5461 ("r-r-oo" ,r-r-oo)))
5462 (home-page "https://github.com/cBioPortal/cgdsr")
5463 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
5464 (description
5465 "This package provides a basic set of R functions for querying the Cancer
5466 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
5467 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
5468 (license license:lgpl3)))
5469
5470 (define-public r-import
5471 (package
5472 (name "r-import")
5473 (version "1.1.0")
5474 (source
5475 (origin
5476 (method url-fetch)
5477 (uri (cran-uri "import" version))
5478 (sha256
5479 (base32
5480 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
5481 (build-system r-build-system)
5482 (home-page "https://github.com/smbache/import")
5483 (synopsis "Import mechanism for R")
5484 (description
5485 "This is an alternative mechanism for importing objects from packages.
5486 The syntax allows for importing multiple objects from a package with a single
5487 command in an expressive way. The import package bridges some of the gap
5488 between using @code{library} (or @code{require}) and direct (single-object)
5489 imports. Furthermore the imported objects are not placed in the current
5490 environment. It is also possible to import objects from stand-alone @code{.R}
5491 files.")
5492 (license license:expat)))
5493
5494 (define-public r-shinyace
5495 (package
5496 (name "r-shinyace")
5497 (version "0.4.1")
5498 (source
5499 (origin
5500 (method url-fetch)
5501 (uri (cran-uri "shinyAce" version))
5502 (sha256
5503 (base32
5504 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
5505 (properties `((upstream-name . "shinyAce")))
5506 (build-system r-build-system)
5507 (propagated-inputs
5508 `(("r-shiny" ,r-shiny)
5509 ("r-jsonlite" ,r-jsonlite)))
5510 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
5511 (synopsis "Ace editor bindings for Shiny")
5512 (description
5513 "This package provides Ace editor bindings to enable a rich text editing
5514 environment within Shiny.")
5515 (license license:expat)))
5516
5517 (define-public r-randomizr
5518 (package
5519 (name "r-randomizr")
5520 (version "0.20.0")
5521 (source
5522 (origin
5523 (method url-fetch)
5524 (uri (cran-uri "randomizr" version))
5525 (sha256
5526 (base32
5527 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
5528 (properties `((upstream-name . "randomizr")))
5529 (build-system r-build-system)
5530 (native-inputs
5531 `(("r-knitr" ,r-knitr)))
5532 (home-page "https://declaredesign.org/r/randomizr/")
5533 (synopsis "Tools for common forms of random assignment and sampling")
5534 (description
5535 "This package provides tools for generating random assignments for common
5536 experimental designs and random samples for common sampling designs.")
5537 (license license:expat)))
5538
5539 (define-public r-base64url
5540 (package
5541 (name "r-base64url")
5542 (version "1.4")
5543 (source
5544 (origin
5545 (method url-fetch)
5546 (uri (cran-uri "base64url" version))
5547 (sha256
5548 (base32
5549 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
5550 (build-system r-build-system)
5551 (propagated-inputs
5552 `(("r-backports" ,r-backports)))
5553 (home-page "https://github.com/mllg/base64url")
5554 (synopsis "Fast and URL-safe base64 encoder and decoder")
5555 (description
5556 "This package provides a URL-safe base64 encoder and decoder. In
5557 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
5558 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
5559 encoder does not fill the string with trailing @code{=}. The resulting
5560 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
5561 and thus are safe to use in URLs or for file names. The package also comes
5562 with a simple base32 encoder/decoder suited for case insensitive file
5563 systems.")
5564 (license license:gpl3)))
5565
5566 (define-public r-radiant-data
5567 (package
5568 (name "r-radiant-data")
5569 (version "1.3.10")
5570 (source
5571 (origin
5572 (method url-fetch)
5573 (uri (cran-uri "radiant.data" version))
5574 (sha256
5575 (base32
5576 "09a3wn3gl1zjq5zsc5zaxyq71dg5qnpk57bmwd6qy8w99g2clm8c"))
5577 (modules '((guix build utils)))
5578 (snippet
5579 '(begin
5580 ;; Delete files that are under CC-NC-SA.
5581 (delete-file-recursively "inst/app/tools/help")
5582 #t))))
5583 (properties `((upstream-name . "radiant.data")))
5584 (build-system r-build-system)
5585 (propagated-inputs
5586 `(("r-base64enc" ,r-base64enc)
5587 ("r-broom" ,r-broom)
5588 ("r-car" ,r-car)
5589 ("r-curl" ,r-curl)
5590 ("r-dplyr" ,r-dplyr)
5591 ("r-dt" ,r-dt)
5592 ("r-glue" ,r-glue)
5593 ("r-ggplot2" ,r-ggplot2)
5594 ("r-import" ,r-import)
5595 ("r-jsonlite" ,r-jsonlite)
5596 ("r-knitr" ,r-knitr)
5597 ("r-lubridate" ,r-lubridate)
5598 ("r-magrittr" ,r-magrittr)
5599 ("r-markdown" ,r-markdown)
5600 ("r-mass" ,r-mass)
5601 ("r-patchwork" ,r-patchwork)
5602 ("r-plotly" ,r-plotly)
5603 ("r-psych" ,r-psych)
5604 ("r-randomizr" ,r-randomizr)
5605 ("r-readr" ,r-readr)
5606 ("r-readxl" ,r-readxl)
5607 ("r-rlang" ,r-rlang)
5608 ("r-rmarkdown" ,r-rmarkdown)
5609 ("r-rstudioapi" ,r-rstudioapi)
5610 ("r-scales" ,r-scales)
5611 ("r-shiny" ,r-shiny)
5612 ("r-shinyfiles" ,r-shinyfiles)
5613 ("r-shinyace" ,r-shinyace)
5614 ("r-stringi" ,r-stringi)
5615 ("r-tibble" ,r-tibble)
5616 ("r-tidyr" ,r-tidyr)
5617 ("r-writexl" ,r-writexl)))
5618 (home-page "https://github.com/radiant-rstats/radiant.data")
5619 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
5620 (description
5621 "The Radiant Data menu includes interfaces for loading, saving, viewing,
5622 visualizing, summarizing, transforming, and combining data. It also contains
5623 functionality to generate reproducible reports of the analyses conducted in
5624 the application.")
5625 (license license:agpl3)))
5626
5627 (define-public r-algdesign
5628 (package
5629 (name "r-algdesign")
5630 (version "1.2.0")
5631 (source
5632 (origin
5633 (method url-fetch)
5634 (uri (cran-uri "AlgDesign" version))
5635 (sha256
5636 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
5637 (properties `((upstream-name . "AlgDesign")))
5638 (build-system r-build-system)
5639 (home-page "https://github.com/jvbraun/AlgDesign")
5640 (synopsis "Algorithmic experimental design")
5641 (description
5642 "This package provides tools to calculate exact and approximate theory
5643 experimental designs for D, A, and I criteria. Very large designs may be
5644 created. Experimental designs may be blocked or blocked designs created from
5645 a candidate list, using several criteria. The blocking can be done when whole
5646 and within plot factors interact.")
5647 (license license:gpl2+)))
5648
5649 (define-public r-signal
5650 (package
5651 (name "r-signal")
5652 (version "0.7-6")
5653 (source
5654 (origin
5655 (method url-fetch)
5656 (uri (cran-uri "signal" version))
5657 (sha256
5658 (base32
5659 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
5660 (build-system r-build-system)
5661 (propagated-inputs `(("r-mass" ,r-mass)))
5662 (native-inputs `(("gfortran" ,gfortran)))
5663 (home-page "https://cran.r-project.org/web/packages/signal/")
5664 (synopsis "Signal processing")
5665 (description
5666 "This package provides a set of signal processing functions originally
5667 written for Matlab and GNU Octave. It includes filter generation utilities,
5668 filtering functions, resampling routines, and visualization of filter models.
5669 It also includes interpolation functions.")
5670 (license license:gpl2)))
5671
5672 (define-public r-gsubfn
5673 (package
5674 (name "r-gsubfn")
5675 (version "0.7")
5676 (source
5677 (origin
5678 (method url-fetch)
5679 (uri (cran-uri "gsubfn" version))
5680 (sha256
5681 (base32
5682 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
5683 (build-system r-build-system)
5684 (propagated-inputs `(("r-proto" ,r-proto)))
5685 (home-page "https://code.google.com/archive/p/gsubfn/")
5686 (synopsis "Utilities for strings and function arguments.")
5687 (description
5688 "This package provides @code{gsubfn} which is like @code{gsub} but can
5689 take a replacement function or certain other objects instead of the
5690 replacement string. Matches and back references are input to the replacement
5691 function and replaced by the function output. @code{gsubfn} can be used to
5692 split strings based on content rather than delimiters and for quasi-perl-style
5693 string interpolation. The package also has facilities for translating
5694 formulas to functions and allowing such formulas in function calls instead of
5695 functions.")
5696 (license license:gpl2+)))
5697
5698 (define-public r-sqldf
5699 (package
5700 (name "r-sqldf")
5701 (version "0.4-11")
5702 (source
5703 (origin
5704 (method url-fetch)
5705 (uri (cran-uri "sqldf" version))
5706 (sha256
5707 (base32
5708 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
5709 (build-system r-build-system)
5710 (propagated-inputs
5711 `(("r-chron" ,r-chron)
5712 ("r-dbi" ,r-dbi)
5713 ("r-gsubfn" ,r-gsubfn)
5714 ("r-proto" ,r-proto)
5715 ("r-rsqlite" ,r-rsqlite)))
5716 (home-page "https://github.com/ggrothendieck/sqldf")
5717 (synopsis "Manipulate R data frames using SQL")
5718 (description
5719 "The @code{sqldf} function is typically passed a single argument which is
5720 an SQL select statement where the table names are ordinary R data frame names.
5721 @code{sqldf} transparently sets up a database, imports the data frames into
5722 that database, performs the SQL statement and returns the result using a
5723 heuristic to determine which class to assign to each column of the returned
5724 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
5725 used to read filtered files into R even if the original files are larger than
5726 R itself can handle.")
5727 (license license:gpl2)))
5728
5729 (define-public r-abind
5730 (package
5731 (name "r-abind")
5732 (version "1.4-5")
5733 (source
5734 (origin
5735 (method url-fetch)
5736 (uri (cran-uri "abind" version))
5737 (sha256
5738 (base32
5739 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5740 (build-system r-build-system)
5741 (home-page "https://cran.r-project.org/web/packages/abind/")
5742 (synopsis "Combine multidimensional arrays")
5743 (description
5744 "This package provides tools to combine multidimensional arrays into a
5745 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5746 works with vectors, matrices, and higher-dimensional arrays. It also provides
5747 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5748 extracting and replacing data in arrays.")
5749 (license license:lgpl2.0+)))
5750
5751 (define-public r-prroc
5752 (package
5753 (name "r-prroc")
5754 (version "1.3.1")
5755 (source
5756 (origin
5757 (method url-fetch)
5758 (uri (cran-uri "PRROC" version))
5759 (sha256
5760 (base32
5761 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5762 (properties `((upstream-name . "PRROC")))
5763 (build-system r-build-system)
5764 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5765 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5766 (description
5767 "This package computes the areas under the @dfn{precision-recall} (PR)
5768 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5769 contrast to other implementations, the interpolation between points of the PR
5770 curve is done by a non-linear piecewise function. In addition to the areas
5771 under the curves, the curves themselves can also be computed and plotted by a
5772 specific S3-method.")
5773 (license license:gpl3)))
5774
5775 (define-public r-vim
5776 (package
5777 (name "r-vim")
5778 (version "6.0.0")
5779 (source
5780 (origin
5781 (method url-fetch)
5782 (uri (cran-uri "VIM" version))
5783 (sha256
5784 (base32
5785 "0ddhca4v912q82rjpf1qld6i6g2c381g0v5b4hbnygr3lm6a7wiv"))))
5786 (properties `((upstream-name . "VIM")))
5787 (build-system r-build-system)
5788 (propagated-inputs
5789 `(("r-car" ,r-car)
5790 ("r-colorspace" ,r-colorspace)
5791 ("r-data-table" ,r-data-table)
5792 ("r-e1071" ,r-e1071)
5793 ("r-laeken" ,r-laeken)
5794 ("r-magrittr" ,r-magrittr)
5795 ("r-mass" ,r-mass)
5796 ("r-nnet" ,r-nnet)
5797 ("r-ranger" ,r-ranger)
5798 ("r-rcpp" ,r-rcpp)
5799 ("r-robustbase" ,r-robustbase)
5800 ("r-sp" ,r-sp)
5801 ("r-vcd" ,r-vcd)))
5802 (native-inputs
5803 `(("r-knitr" ,r-knitr)))
5804 (home-page "https://github.com/alexkowa/VIM")
5805 (synopsis "Visualization and imputation of missing values")
5806 (description
5807 "This package provides tools for the visualization of missing and/or
5808 imputed values are introduced, which can be used for exploring the data and
5809 the structure of the missing and/or imputed values. Depending on this
5810 structure of the missing values, the corresponding methods may help to
5811 identify the mechanism generating the missing values and allows to explore the
5812 data including missing values. In addition, the quality of imputation can be
5813 visually explored using various univariate, bivariate, multiple and
5814 multivariate plot methods.")
5815 (license license:gpl2+)))
5816
5817 (define-public r-fnn
5818 (package
5819 (name "r-fnn")
5820 (version "1.1.3")
5821 (source
5822 (origin
5823 (method url-fetch)
5824 (uri (cran-uri "FNN" version))
5825 (sha256
5826 (base32
5827 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5828 (properties `((upstream-name . "FNN")))
5829 (build-system r-build-system)
5830 (home-page "https://cran.r-project.org/web/packages/FNN")
5831 (synopsis "Fast nearest neighbor search algorithms and applications")
5832 (description
5833 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5834 search algorithms. Related applications including KNN classification,
5835 regression and information measures are implemented.")
5836 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5837 ;; later can be used.
5838 (license license:gpl2+)))
5839
5840 (define-public r-smoother
5841 (package
5842 (name "r-smoother")
5843 (version "1.1")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (cran-uri "smoother" version))
5848 (sha256
5849 (base32
5850 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5851 (build-system r-build-system)
5852 (propagated-inputs
5853 `(("r-ttr" ,r-ttr)))
5854 (home-page "https://cran.r-project.org/web/packages/smoother")
5855 (synopsis "Functions relating to the smoothing of numerical data")
5856 (description
5857 "This package provides a collection of methods for smoothing numerical
5858 data, commencing with a port of the Matlab gaussian window smoothing function.
5859 In addition, several functions typically used in smoothing of financial data
5860 are included.")
5861 (license license:gpl2)))
5862
5863 (define-public r-riverplot
5864 (package
5865 (name "r-riverplot")
5866 (version "0.6")
5867 (source
5868 (origin
5869 (method url-fetch)
5870 (uri (cran-uri "riverplot" version))
5871 (sha256
5872 (base32
5873 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5874 (build-system r-build-system)
5875 (home-page "https://logfc.wordpress.com")
5876 (synopsis "Sankey or ribbon plots")
5877 (description
5878 "Sankey plots are a type of diagram that is convenient to illustrate how
5879 flow of information, resources etc. separates and joins, much like observing
5880 how rivers split and merge. For example, they can be used to compare
5881 different clusterings. This package provides an implementation of Sankey
5882 plots for R.")
5883 (license license:gpl2+)))
5884
5885 (define-public r-dyn
5886 (package
5887 (name "r-dyn")
5888 (version "0.2-9.6")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (cran-uri "dyn" version))
5893 (sha256
5894 (base32
5895 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5896 (build-system r-build-system)
5897 (propagated-inputs
5898 `(("r-zoo" ,r-zoo)))
5899 (home-page "https://cran.r-project.org/web/packages/dyn")
5900 (synopsis "Time series regression")
5901 (description
5902 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5903 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5904 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5905 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5906 @code{randomForest::randomForest()} and other regression functions, allowing
5907 those functions to be used with time series including specifications that may
5908 contain lags, diffs and missing values.")
5909 ;; Any GPL version.
5910 (license license:gpl2+)))
5911
5912 (define-public r-catdap
5913 (package
5914 (name "r-catdap")
5915 (version "1.3.5")
5916 (source
5917 (origin
5918 (method url-fetch)
5919 (uri (cran-uri "catdap" version))
5920 (sha256
5921 (base32
5922 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
5923 (build-system r-build-system)
5924 (native-inputs
5925 `(("gfortran" ,gfortran)))
5926 (home-page "https://cran.r-project.org/web/packages/catdap/")
5927 (synopsis "Tools for categorical data analysis")
5928 (description
5929 "This package provides functions for analyzing multivariate data.
5930 Dependencies of the distribution of the specified variable (response
5931 variable) to other variables (explanatory variables) are derived and
5932 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5933 (license license:gpl2+)))
5934
5935 (define-public r-arules
5936 (package
5937 (name "r-arules")
5938 (version "1.6-6")
5939 (source
5940 (origin
5941 (method url-fetch)
5942 (uri (cran-uri "arules" version))
5943 (sha256
5944 (base32
5945 "1pk3jjizn2m5rwi7qkdkbq9f07acgpy0qdzzqmx0agg47cwahlkm"))))
5946 (build-system r-build-system)
5947 (propagated-inputs
5948 `(("r-matrix" ,r-matrix)))
5949 (home-page "https://github.com/mhahsler/arules")
5950 (synopsis "Mining association rules and frequent itemsets")
5951 (description
5952 "This package provides an infrastructure for representing, manipulating
5953 and analyzing transaction data and patterns (frequent itemsets and association rules).
5954 It also provides C implementations of the association mining algorithms Apriori
5955 and Eclat.")
5956 (license license:gpl3)))
5957
5958 (define-public r-parsedate
5959 (package
5960 (name "r-parsedate")
5961 (version "1.2.0")
5962 (source
5963 (origin
5964 (method url-fetch)
5965 (uri (cran-uri "parsedate" version))
5966 (sha256
5967 (base32
5968 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5969 (build-system r-build-system)
5970 (propagated-inputs
5971 `(("r-rematch2" ,r-rematch2)))
5972 (home-page "https://github.com/gaborcsardi/parsedate")
5973 (synopsis
5974 "Recognize and parse dates in various formats")
5975 (description
5976 "This package provides three functions for dealing with dates:
5977 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5978 time formats, @code{parse_date} parses dates in unspecified formats,
5979 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5980 (license license:gpl2)))
5981
5982 (define-public r-abc-data
5983 (package
5984 (name "r-abc-data")
5985 (version "1.0")
5986 (source
5987 (origin
5988 (method url-fetch)
5989 (uri (cran-uri "abc.data" version))
5990 (sha256
5991 (base32
5992 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5993 (properties `((upstream-name . "abc.data")))
5994 (build-system r-build-system)
5995 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5996 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5997 (description
5998 "This package contains data which are used by functions of the abc
5999 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
6000 algorithms for performing parameter estimation, model selection, and
6001 goodness-of-fit.")
6002 (license license:gpl3+)))
6003
6004 (define-public r-abc
6005 (package
6006 (name "r-abc")
6007 (version "2.1")
6008 (source
6009 (origin
6010 (method url-fetch)
6011 (uri (cran-uri "abc" version))
6012 (sha256
6013 (base32
6014 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
6015 (build-system r-build-system)
6016 (propagated-inputs
6017 `(("r-abc-data" ,r-abc-data)
6018 ("r-locfit" ,r-locfit)
6019 ("r-mass" ,r-mass)
6020 ("r-nnet" ,r-nnet)
6021 ("r-quantreg" ,r-quantreg)))
6022 (home-page "https://cran.r-project.org/web/packages/abc/")
6023 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
6024 (description
6025 "This package implements several @dfn{Approximate Bayesian
6026 Computation} (ABC) algorithms for performing parameter estimation, model
6027 selection, and goodness-of-fit. Cross-validation tools are also available for
6028 measuring the accuracy of ABC estimates, and to calculate the
6029 misclassification probabilities of different models.")
6030 (license license:gpl3+)))
6031
6032 (define-public r-zip
6033 (package
6034 (name "r-zip")
6035 (version "2.1.1")
6036 (source
6037 (origin
6038 (method url-fetch)
6039 (uri (cran-uri "zip" version))
6040 (sha256
6041 (base32
6042 "0b3wmbx5v0i1scylgk4nli2ljg4p12wx7a1sqljklv9969wl3p8i"))))
6043 (build-system r-build-system)
6044 (home-page "https://github.com/gaborcsardi/zip")
6045 (synopsis "Cross-platform Zip compression")
6046 (description
6047 "This package provides a cross-platform Zip compression library for R.
6048 It is a replacement for the @code{zip} function, that does not require any
6049 additional external tools on any platform.")
6050 (license license:cc0)))
6051
6052 (define-public r-openxlsx
6053 (package
6054 (name "r-openxlsx")
6055 (version "4.1.5")
6056 (source
6057 (origin
6058 (method url-fetch)
6059 (uri (cran-uri "openxlsx" version))
6060 (sha256
6061 (base32
6062 "0wkpa3wsd8rs0pib7cp67iv0s6jn99frcrw7clypqxmvvdwyb9kq"))))
6063 (build-system r-build-system)
6064 (propagated-inputs
6065 `(("r-rcpp" ,r-rcpp)
6066 ("r-stringi" ,r-stringi)
6067 ("r-zip" ,r-zip)))
6068 (native-inputs
6069 `(("r-knitr" ,r-knitr)))
6070 (home-page "https://github.com/awalker89/openxlsx")
6071 (synopsis "Read, write and edit XLSX files")
6072 (description
6073 "This package simplifies the creation of Excel @code{.xlsx} files by
6074 providing a high level interface to writing, styling and editing worksheets.
6075 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
6076 and @code{XLConnect} packages with the added benefit of removing the
6077 dependency on Java.")
6078 (license license:gpl3)))
6079
6080 (define-public r-rio
6081 (package
6082 (name "r-rio")
6083 (version "0.5.16")
6084 (source
6085 (origin
6086 (method url-fetch)
6087 (uri (cran-uri "rio" version))
6088 (sha256
6089 (base32
6090 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
6091 (build-system r-build-system)
6092 (propagated-inputs
6093 `(("r-curl" ,r-curl)
6094 ("r-data-table" ,r-data-table)
6095 ("r-foreign" ,r-foreign)
6096 ("r-haven" ,r-haven)
6097 ("r-openxlsx" ,r-openxlsx)
6098 ("r-readxl" ,r-readxl)
6099 ("r-tibble" ,r-tibble)))
6100 (home-page "https://github.com/leeper/rio")
6101 (synopsis "Swiss-army knife for data I/O")
6102 (description
6103 "This package provides streamlined data import and export infrastructure
6104 by making assumptions that the user is probably willing to make: @code{import}
6105 and @code{export} determine the data structure from the file extension,
6106 reasonable defaults are used for data import and export (e.g.,
6107 @code{stringsAsFactors=FALSE}), web-based import is natively
6108 supported (including from SSL/HTTPS), compressed files can be read directly
6109 without explicit decompression, and fast import packages are used where
6110 appropriate. An additional convenience function, @code{convert}, provides a
6111 simple method for converting between file types.")
6112 (license license:gpl2)))
6113
6114 (define-public r-maptools
6115 (package
6116 (name "r-maptools")
6117 (version "1.0-2")
6118 (source
6119 (origin
6120 (method url-fetch)
6121 (uri (cran-uri "maptools" version))
6122 (sha256
6123 (base32
6124 "0jgf3wg47jdnznxb3ncv4is9ackwviy4lzcyggqwzw3wh6jnvb6s"))))
6125 (build-system r-build-system)
6126 (propagated-inputs
6127 `(("r-foreign" ,r-foreign)
6128 ("r-lattice" ,r-lattice)
6129 ("r-sp" ,r-sp)))
6130 (home-page "https://r-forge.r-project.org/projects/maptools/")
6131 (synopsis "Tools for reading and handling spatial objects")
6132 (description
6133 "This package provides a set of tools for manipulating and reading
6134 geographic data, in particular ESRI Shapefiles. It includes binary access to
6135 GSHHG shoreline files. The package also provides interface wrappers for
6136 exchanging spatial objects with other R packages.")
6137 ;; The C source files from shapelib are released under the Expat license.
6138 ;; The R code is released under GPL version 2 or later.
6139 (license (list license:gpl2+
6140 license:expat))))
6141
6142 (define-public r-later
6143 (package
6144 (name "r-later")
6145 (version "1.1.0.1")
6146 (source
6147 (origin
6148 (method url-fetch)
6149 (uri (cran-uri "later" version))
6150 (sha256
6151 (base32
6152 "1k9n2j7zxw9gfclnx8zfqp6w64c5d6apn7g02yhkajkpmszagfki"))))
6153 (build-system r-build-system)
6154 (propagated-inputs
6155 `(("r-bh" ,r-bh)
6156 ("r-rcpp" ,r-rcpp)
6157 ("r-rlang" ,r-rlang)))
6158 (native-inputs
6159 `(("r-knitr" ,r-knitr)))
6160 (home-page "https://github.com/r-lib/later")
6161 (synopsis "Utilities for delaying function execution")
6162 (description
6163 "This package provides tools to execute arbitrary R or C functions some
6164 time after the current time, after the R execution stack has emptied.")
6165 (license license:gpl2+)))
6166
6167 (define-public r-promises
6168 (package
6169 (name "r-promises")
6170 (version "1.1.1")
6171 (source
6172 (origin
6173 (method url-fetch)
6174 (uri (cran-uri "promises" version))
6175 (sha256
6176 (base32
6177 "002qkhcn3ri6a3w5fizjvdvrjgvqiw8i7rl9jglcnqik5kmwc61p"))))
6178 (build-system r-build-system)
6179 (propagated-inputs
6180 `(("r-later" ,r-later)
6181 ("r-magrittr" ,r-magrittr)
6182 ("r-r6" ,r-r6)
6183 ("r-rcpp" ,r-rcpp)
6184 ("r-rlang" ,r-rlang)))
6185 (native-inputs
6186 `(("r-knitr" ,r-knitr)))
6187 (home-page "https://rstudio.github.io/promises")
6188 (synopsis "Abstractions for promise-based asynchronous programming")
6189 (description
6190 "This package provides fundamental abstractions for doing asynchronous
6191 programming in R using promises. Asynchronous programming is useful for
6192 allowing a single R process to orchestrate multiple tasks in the background
6193 while also attending to something else. Semantics are similar to JavaScript
6194 promises, but with a syntax that is idiomatic R.")
6195 (license license:expat)))
6196
6197 (define-public r-dosnow
6198 (package
6199 (name "r-dosnow")
6200 (version "1.0.18")
6201 (source
6202 (origin
6203 (method url-fetch)
6204 (uri (cran-uri "doSNOW" version))
6205 (sha256
6206 (base32
6207 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
6208 (properties `((upstream-name . "doSNOW")))
6209 (build-system r-build-system)
6210 (propagated-inputs
6211 `(("r-foreach" ,r-foreach)
6212 ("r-iterators" ,r-iterators)
6213 ("r-snow" ,r-snow)))
6214 (home-page "https://cran.r-project.org/web/packages/doSNOW")
6215 (synopsis "Foreach parallel adaptor for the snow package")
6216 (description
6217 "This package provides a parallel backend for the @code{%dopar%} function
6218 using the @code{snow} package.")
6219 (license license:gpl2)))
6220
6221 (define-public r-snowfall
6222 (package
6223 (name "r-snowfall")
6224 (version "1.84-6.1")
6225 (source (origin
6226 (method url-fetch)
6227 (uri (cran-uri "snowfall" version))
6228 (sha256
6229 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
6230 (build-system r-build-system)
6231 (propagated-inputs
6232 `(("r-snow" ,r-snow)))
6233 (home-page "https://cran.r-project.org/web/packages/snowfall/")
6234 (synopsis "Easier cluster computing")
6235 (description "This package is a usability wrapper around snow for easier
6236 development of parallel R programs. This package offers e.g. extended error
6237 checks, and additional functions. All functions work in sequential mode, too,
6238 if no cluster is present or wished. The package is also designed as connector
6239 to the cluster management tool @code{sfCluster}, but can also used without
6240 it.")
6241 (license license:gpl2+)))
6242
6243 (define-public r-rappdirs
6244 (package
6245 (name "r-rappdirs")
6246 (version "0.3.1")
6247 (source
6248 (origin
6249 (method url-fetch)
6250 (uri (cran-uri "rappdirs" version))
6251 (sha256
6252 (base32
6253 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
6254 (build-system r-build-system)
6255 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
6256 (synopsis "Determine where to save data, caches, and logs")
6257 (description
6258 "This package provides an easy way to determine which directories on the
6259 user's computer should be used to save data, caches and logs. It is a port of
6260 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
6261 (license license:expat)))
6262
6263 (define-public r-renv
6264 (package
6265 (name "r-renv")
6266 (version "0.12.0")
6267 (source
6268 (origin
6269 (method url-fetch)
6270 (uri (cran-uri "renv" version))
6271 (sha256
6272 (base32
6273 "1jwm1ik600xswb53i1swjsnfrjjdffmmyk5k9hjc7kc8nlfl0ay5"))))
6274 (properties `((upstream-name . "renv")))
6275 (build-system r-build-system)
6276 (native-inputs
6277 `(("r-knitr" ,r-knitr)))
6278 (home-page "https://rstudio.github.io/renv")
6279 (synopsis "Project environments")
6280 (description
6281 "This package provides a dependency management toolkit for R. Using
6282 renv, you can create and manage project-local R libraries, save the state of
6283 these libraries to a lockfile, and later restore your library as required.
6284 Together, these tools can help make your projects more isolated, portable, and
6285 reproducible.")
6286 (license license:expat)))
6287
6288 (define-public r-learnr
6289 (package
6290 (name "r-learnr")
6291 (version "0.10.1")
6292 (source
6293 (origin
6294 (method url-fetch)
6295 (uri (cran-uri "learnr" version))
6296 (sha256
6297 (base32
6298 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
6299 (build-system r-build-system)
6300 (propagated-inputs
6301 `(("r-checkmate" ,r-checkmate)
6302 ("r-ellipsis" ,r-ellipsis)
6303 ("r-evaluate" ,r-evaluate)
6304 ("r-htmltools" ,r-htmltools)
6305 ("r-htmlwidgets" ,r-htmlwidgets)
6306 ("r-jsonlite" ,r-jsonlite)
6307 ("r-knitr" ,r-knitr)
6308 ("r-markdown" ,r-markdown)
6309 ("r-rappdirs" ,r-rappdirs)
6310 ("r-renv" ,r-renv)
6311 ("r-rmarkdown" ,r-rmarkdown)
6312 ("r-rprojroot" ,r-rprojroot)
6313 ("r-shiny" ,r-shiny)
6314 ("r-withr" ,r-withr)))
6315 (home-page "https://rstudio.github.io/learnr/")
6316 (synopsis "Interactive tutorials for R")
6317 (description
6318 "This package provides tools to create interactive tutorials using R
6319 Markdown. Use a combination of narrative, figures, videos, exercises, and
6320 quizzes to create self-paced tutorials for learning about R and R packages.")
6321 (license license:asl2.0)))
6322
6323 (define-public r-analytics
6324 (package
6325 (name "r-analytics")
6326 (version "3.0")
6327 (source
6328 (origin
6329 (method url-fetch)
6330 (uri (cran-uri "analytics" version))
6331 (sha256
6332 (base32
6333 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
6334 (build-system r-build-system)
6335 (propagated-inputs
6336 `(("r-car" ,r-car)
6337 ("r-cluster" ,r-cluster)
6338 ("r-fractal" ,r-fractal)
6339 ("r-lmtest" ,r-lmtest)
6340 ("r-mass" ,r-mass)
6341 ("r-np" ,r-np)
6342 ("r-powerplus" ,r-powerplus)
6343 ("r-robust" ,r-robust)
6344 ("r-trend" ,r-trend)
6345 ("r-tsa" ,r-tsa)
6346 ("r-urca" ,r-urca)
6347 ("r-vim" ,r-vim)))
6348 (home-page "https://cran.r-project.org/web/packages/analytics/")
6349 (synopsis "Collection of data analysis tools")
6350 (description
6351 "This package is a collection of data analysis tools. It includes tools
6352 for regression outlier detection in a fitted linear model, stationary
6353 bootstrap using a truncated geometric distribution, a comprehensive test for
6354 weak stationarity, column means by group, weighted biplots, and a heuristic to
6355 obtain a better initial configuration in non-metric MDS.")
6356 (license license:gpl2)))
6357
6358 (define-public r-reticulate
6359 (package
6360 (name "r-reticulate")
6361 (version "1.16")
6362 (source
6363 (origin
6364 (method url-fetch)
6365 (uri (cran-uri "reticulate" version))
6366 (sha256
6367 (base32
6368 "0ddx3xrlw55d8d3w7pxap618w2c5pd1n2jw4xsa185s8mf1zifkl"))))
6369 (build-system r-build-system)
6370 (inputs `(("python" ,python)))
6371 (propagated-inputs
6372 `(("r-rappdirs" ,r-rappdirs)
6373 ("r-jsonlite" ,r-jsonlite)
6374 ("r-matrix" ,r-matrix)
6375 ("r-rcpp" ,r-rcpp)))
6376 (native-inputs
6377 `(("r-knitr" ,r-knitr)))
6378 (home-page "https://github.com/rstudio/reticulate")
6379 (synopsis "R interface to Python")
6380 (description
6381 "This package provides an interface from R to Python modules, classes,
6382 and functions. When calling into Python, R data types are automatically
6383 converted to their equivalent Python types. When values are returned from
6384 Python to R they are converted back to R types.")
6385 (license license:asl2.0)))
6386
6387 (define-public r-bibtex
6388 (package
6389 (name "r-bibtex")
6390 (version "0.4.2.2")
6391 (source
6392 (origin
6393 (method url-fetch)
6394 (uri (cran-uri "bibtex" version))
6395 (sha256
6396 (base32
6397 "140hkjzdp3033cvji861rd06z1ixgpnn4n5amygqsmhnixk8ff07"))))
6398 (build-system r-build-system)
6399 (propagated-inputs `(("r-stringr" ,r-stringr)))
6400 (home-page "https://github.com/romainfrancois/bibtex")
6401 (synopsis "Bibtex parser")
6402 (description "This package provides a utility for R to parse a bibtex
6403 file.")
6404 (license license:gpl2+)))
6405
6406 (define-public r-ggseqlogo
6407 (package
6408 (name "r-ggseqlogo")
6409 (version "0.1")
6410 (source
6411 (origin
6412 (method url-fetch)
6413 (uri (cran-uri "ggseqlogo" version))
6414 (sha256
6415 (base32
6416 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
6417 (build-system r-build-system)
6418 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
6419 (home-page "https://github.com/omarwagih/ggseqlogo")
6420 (synopsis "ggplot2 extension for drawing genetic sequence logos")
6421 (description
6422 "The range of functions provided by this package makes it possible to
6423 draw highly versatile genomic sequence logos. Features include, but are not
6424 limited to, modifying colour schemes and fonts used to draw the logo,
6425 generating multiple logo plots, and aiding the visualisation with annotations.
6426 Sequence logos can easily be combined with other ggplot2 plots.")
6427 ;; Unspecified version of the LGPL.
6428 (license license:lgpl3+)))
6429
6430 (define-public r-ggsci
6431 (package
6432 (name "r-ggsci")
6433 (version "2.9")
6434 (source
6435 (origin
6436 (method url-fetch)
6437 (uri (cran-uri "ggsci" version))
6438 (sha256
6439 (base32
6440 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
6441 (build-system r-build-system)
6442 (propagated-inputs
6443 `(("r-ggplot2" ,r-ggplot2)
6444 ("r-scales" ,r-scales)))
6445 (home-page "https://nanx.me/ggsci/")
6446 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
6447 (description
6448 "This package provides a collection of ggplot2 color palettes inspired by
6449 plots in scientific journals, data visualization libraries, science fiction
6450 movies, and TV shows.")
6451 (license license:gpl3)))
6452
6453 (define-public r-ggsignif
6454 (package
6455 (name "r-ggsignif")
6456 (version "0.6.0")
6457 (source
6458 (origin
6459 (method url-fetch)
6460 (uri (cran-uri "ggsignif" version))
6461 (sha256
6462 (base32
6463 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
6464 (build-system r-build-system)
6465 (native-inputs
6466 `(("r-knitr" ,r-knitr)))
6467 (propagated-inputs
6468 `(("r-ggplot2" ,r-ggplot2)))
6469 (home-page "https://github.com/const-ae/ggsignif")
6470 (synopsis "Significance brackets for ggplot2")
6471 (description
6472 "Enrich your ggplots with group-wise comparisons. This package provides
6473 an easy way to indicate if two groups are significantly different. Commonly
6474 this is shown by a bracket on top connecting the groups of interest which
6475 itself is annotated with the level of significance. The package provides a
6476 single layer that takes the groups for comparison and the test as arguments
6477 and adds the annotation to the plot.")
6478 (license license:gpl3)))
6479
6480 (define-public r-rstatix
6481 (package
6482 (name "r-rstatix")
6483 (version "0.6.0")
6484 (source
6485 (origin
6486 (method url-fetch)
6487 (uri (cran-uri "rstatix" version))
6488 (sha256
6489 (base32
6490 "0nwwvxwr4z3j4n9z8cnvwghppc836g47n0ia98chk272qwh8xcpb"))))
6491 (properties `((upstream-name . "rstatix")))
6492 (build-system r-build-system)
6493 (propagated-inputs
6494 `(("r-broom" ,r-broom)
6495 ("r-car" ,r-car)
6496 ("r-corrplot" ,r-corrplot)
6497 ("r-dplyr" ,r-dplyr)
6498 ("r-generics" ,r-generics)
6499 ("r-magrittr" ,r-magrittr)
6500 ("r-purrr" ,r-purrr)
6501 ("r-rlang" ,r-rlang)
6502 ("r-tibble" ,r-tibble)
6503 ("r-tidyr" ,r-tidyr)
6504 ("r-tidyselect" ,r-tidyselect)))
6505 (home-page "https://rpkgs.datanovia.com/rstatix/")
6506 (synopsis "Pipe-friendly framework for basic statistical tests")
6507 (description
6508 "This package provides a simple and intuitive pipe-friendly framework,
6509 coherent with the @code{tidyverse} design philosophy, for performing basic
6510 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
6511 correlation analyses. The output of each test is automatically transformed
6512 into a tidy data frame to facilitate visualization. Additional functions are
6513 available for reshaping, reordering, manipulating and visualizing correlation
6514 matrix.")
6515 (license license:gpl2)))
6516
6517 (define-public r-ggpubr
6518 (package
6519 (name "r-ggpubr")
6520 (version "0.4.0")
6521 (source
6522 (origin
6523 (method url-fetch)
6524 (uri (cran-uri "ggpubr" version))
6525 (sha256
6526 (base32
6527 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
6528 (build-system r-build-system)
6529 (propagated-inputs
6530 `(("r-cowplot" ,r-cowplot)
6531 ("r-dplyr" ,r-dplyr)
6532 ("r-ggplot2" ,r-ggplot2)
6533 ("r-ggrepel" ,r-ggrepel)
6534 ("r-ggsci" ,r-ggsci)
6535 ("r-ggsignif" ,r-ggsignif)
6536 ("r-glue" ,r-glue)
6537 ("r-gridextra" ,r-gridextra)
6538 ("r-magrittr" ,r-magrittr)
6539 ("r-polynom" ,r-polynom)
6540 ("r-purrr" ,r-purrr)
6541 ("r-rlang" ,r-rlang)
6542 ("r-scales" ,r-scales)
6543 ("r-rstatix" ,r-rstatix)
6544 ("r-tibble" ,r-tibble)
6545 ("r-tidyr" ,r-tidyr)))
6546 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
6547 (synopsis "ggplot2-based publication-ready plots")
6548 (description
6549 "The ggplot2 package is an excellent and flexible package for elegant
6550 data visualization in R. However the default generated plots require some
6551 formatting before we can send them for publication. The ggpubr package
6552 provides some easy-to-use functions for creating and customizing ggplot2-based
6553 publication-ready plots.")
6554 (license license:gpl2)))
6555
6556 (define-public r-ellipse
6557 (package
6558 (name "r-ellipse")
6559 (version "0.4.2")
6560 (source
6561 (origin
6562 (method url-fetch)
6563 (uri (cran-uri "ellipse" version))
6564 (sha256
6565 (base32
6566 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
6567 (build-system r-build-system)
6568 (home-page "https://cran.r-project.org/web/packages/ellipse/")
6569 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
6570 (description
6571 "This package contains various routines for drawing ellipses and
6572 ellipse-like confidence regions, implementing the plots described in Murdoch
6573 and Chow (1996), A graphical display of large correlation matrices, The
6574 American Statistician 50, 178-180. There are also routines implementing the
6575 profile plots described in Bates and Watts (1988), Nonlinear Regression
6576 Analysis and its Applications.")
6577 (license license:gpl2+)))
6578
6579 (define-public r-flashclust
6580 (package
6581 (name "r-flashclust")
6582 (version "1.01-2")
6583 (source
6584 (origin
6585 (method url-fetch)
6586 (uri (cran-uri "flashClust" version))
6587 (sha256
6588 (base32
6589 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
6590 (properties `((upstream-name . "flashClust")))
6591 (build-system r-build-system)
6592 (native-inputs `(("gfortran" ,gfortran)))
6593 (home-page "https://cran.r-project.org/web/packages/flashClust/")
6594 (synopsis "Implementation of optimal hierarchical clustering")
6595 (description
6596 "This package provides a fast implementation of hierarchical
6597 clustering.")
6598 (license license:gpl2+)))
6599
6600 (define-public r-factominer
6601 (package
6602 (name "r-factominer")
6603 (version "2.3")
6604 (source
6605 (origin
6606 (method url-fetch)
6607 (uri (cran-uri "FactoMineR" version))
6608 (sha256
6609 (base32
6610 "0ldgf3daksh6lpblhqys67m4mxqx3q9s9n5plfam6dwshfik0ky6"))))
6611 (properties `((upstream-name . "FactoMineR")))
6612 (build-system r-build-system)
6613 (propagated-inputs
6614 `(("r-car" ,r-car)
6615 ("r-cluster" ,r-cluster)
6616 ("r-ellipse" ,r-ellipse)
6617 ("r-flashclust" ,r-flashclust)
6618 ("r-ggplot2" ,r-ggplot2)
6619 ("r-ggrepel" ,r-ggrepel)
6620 ("r-lattice" ,r-lattice)
6621 ("r-leaps" ,r-leaps)
6622 ("r-mass" ,r-mass)
6623 ("r-scatterplot3d" ,r-scatterplot3d)))
6624 (home-page "http://factominer.free.fr")
6625 (synopsis "Multivariate exploratory data analysis and data mining")
6626 (description
6627 "This package provides exploratory data analysis methods to summarize,
6628 visualize and describe datasets. The main principal component methods are
6629 available, those with the largest potential in terms of applications:
6630 principal component analysis (PCA) when variables are quantitative,
6631 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
6632 variables are categorical, Multiple Factor Analysis when variables are
6633 structured in groups, etc. and hierarchical cluster analysis.")
6634 (license license:gpl2+)))
6635
6636 (define-public r-factoextra
6637 (package
6638 (name "r-factoextra")
6639 (version "1.0.7")
6640 (source
6641 (origin
6642 (method url-fetch)
6643 (uri (cran-uri "factoextra" version))
6644 (sha256
6645 (base32
6646 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
6647 (build-system r-build-system)
6648 (propagated-inputs
6649 `(("r-abind" ,r-abind)
6650 ("r-cluster" ,r-cluster)
6651 ("r-dendextend" ,r-dendextend)
6652 ("r-factominer" ,r-factominer)
6653 ("r-ggplot2" ,r-ggplot2)
6654 ("r-ggpubr" ,r-ggpubr)
6655 ("r-ggrepel" ,r-ggrepel)
6656 ("r-reshape2" ,r-reshape2)
6657 ("r-tidyr" ,r-tidyr)))
6658 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
6659 (synopsis "Extract and visualize the results of multivariate data analyses")
6660 (description
6661 "This package provides some easy-to-use functions to extract and
6662 visualize the output of multivariate data analyses, including
6663 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
6664 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
6665 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
6666 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
6667 packages. It contains also functions for simplifying some clustering analysis
6668 steps and provides ggplot2-based elegant data visualization.")
6669 (license license:gpl2)))
6670
6671 (define-public r-fansi
6672 (package
6673 (name "r-fansi")
6674 (version "0.4.1")
6675 (source
6676 (origin
6677 (method url-fetch)
6678 (uri (cran-uri "fansi" version))
6679 (sha256
6680 (base32
6681 "028ywjy538psnmdnddvy5jr3idzffr4hikzr4x97x0m30g4fws9w"))))
6682 (build-system r-build-system)
6683 (native-inputs
6684 `(("r-knitr" ,r-knitr))) ; for vignettes
6685 (home-page "https://github.com/brodieG/fansi")
6686 (synopsis "ANSI control sequence aware string functions")
6687 (description
6688 "This package provides counterparts to R string manipulation functions
6689 that account for the effects of ANSI text formatting control sequences.")
6690 (license license:gpl2+)))
6691
6692 (define-public r-nbclust
6693 (package
6694 (name "r-nbclust")
6695 (version "3.0")
6696 (source
6697 (origin
6698 (method url-fetch)
6699 (uri (cran-uri "NbClust" version))
6700 (sha256
6701 (base32
6702 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
6703 (properties `((upstream-name . "NbClust")))
6704 (build-system r-build-system)
6705 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
6706 (synopsis "Determine the best number of clusters in a data set")
6707 (description
6708 "NbClust provides 30 indexes for determining the optimal number of
6709 clusters in a data set and offers the best clustering scheme from different
6710 results to the user.")
6711 (license license:gpl2)))
6712
6713 (define-public r-hdf5r
6714 (package
6715 (name "r-hdf5r")
6716 (version "1.3.3")
6717 (source
6718 (origin
6719 (method url-fetch)
6720 (uri (cran-uri "hdf5r" version))
6721 (sha256
6722 (base32
6723 "0i8m4yjxggrs05slq2afvz2ckl1yc9wq7gd1s7dq2gjn46zkry50"))))
6724 (build-system r-build-system)
6725 (inputs
6726 `(("hdf5" ,hdf5)
6727 ("zlib" ,zlib)))
6728 (propagated-inputs
6729 `(("r-bit64" ,r-bit64)
6730 ("r-r6" ,r-r6)))
6731 (native-inputs
6732 `(("r-knitr" ,r-knitr)))
6733 (home-page "https://hhoeflin.github.io/hdf5r")
6734 (synopsis "Interface to the HDF5 binary data format")
6735 (description
6736 "HDF5 is a data model, library and file format for storing and managing
6737 large amounts of data. This package provides a nearly feature complete,
6738 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
6739 functionality is added so that HDF5 objects behave very similar to their
6740 corresponding R counterparts.")
6741 (license license:asl2.0)))
6742
6743 (define-public r-itertools
6744 (package
6745 (name "r-itertools")
6746 (version "0.1-3")
6747 (source
6748 (origin
6749 (method url-fetch)
6750 (uri (cran-uri "itertools" version))
6751 (sha256
6752 (base32
6753 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
6754 (build-system r-build-system)
6755 (propagated-inputs
6756 `(("r-iterators" ,r-iterators)))
6757 (home-page "https://cran.r-project.org/web/packages/itertools/")
6758 (synopsis "Iterator tools")
6759 (description
6760 "This package provides various tools for creating iterators, many
6761 patterned after functions in the Python @code{itertools} module, and others
6762 patterned after functions in the snow package.")
6763 (license license:gpl2)))
6764
6765 (define-public r-polynom
6766 (package
6767 (name "r-polynom")
6768 (version "1.4-0")
6769 (source
6770 (origin
6771 (method url-fetch)
6772 (uri (cran-uri "polynom" version))
6773 (sha256
6774 (base32
6775 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
6776 (build-system r-build-system)
6777 (home-page "https://cran.r-project.org/web/packages/polynom/")
6778 (synopsis "Functions for univariate polynomial manipulations")
6779 (description
6780 "This package provides a collection of functions to implement a class for
6781 univariate polynomial manipulations.")
6782 (license license:gpl2)))
6783
6784 (define-public r-gbrd
6785 (package
6786 (name "r-gbrd")
6787 (version "0.4-11")
6788 (source
6789 (origin
6790 (method url-fetch)
6791 (uri (cran-uri "gbRd" version))
6792 (sha256
6793 (base32
6794 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6795 (properties `((upstream-name . "gbRd")))
6796 (build-system r-build-system)
6797 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6798 (synopsis "Utilities for processing Rd objects and files")
6799 (description
6800 "This package provides utilities for processing Rd objects and files.
6801 Extract argument descriptions and other parts of the help pages of
6802 functions.")
6803 (license license:gpl2+)))
6804
6805 (define-public r-rjags
6806 (package
6807 (name "r-rjags")
6808 (version "4-10")
6809 (source
6810 (origin
6811 (method url-fetch)
6812 (uri (cran-uri "rjags" version))
6813 (sha256
6814 (base32
6815 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6816 (build-system r-build-system)
6817 (propagated-inputs
6818 `(("r-coda" ,r-coda)))
6819 (inputs
6820 `(("jags" ,jags)))
6821 (native-inputs
6822 `(("pkg-config" ,pkg-config)))
6823 (home-page "http://mcmc-jags.sourceforge.net")
6824 (synopsis "Bayesian graphical models using MCMC")
6825 (description
6826 "This package provides an R interface to the JAGS MCMC library. JAGS is
6827 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6828 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6829 (license license:gpl2)))
6830
6831 (define-public r-rdpack
6832 (package
6833 (name "r-rdpack")
6834 (version "1.0.0")
6835 (source
6836 (origin
6837 (method url-fetch)
6838 (uri (cran-uri "Rdpack" version))
6839 (sha256
6840 (base32
6841 "069yh9h57z3gjl5ih1r6wyiwmgmfzkpjxrpxg8mfq7y6zr1mynsw"))))
6842 (properties `((upstream-name . "Rdpack")))
6843 (build-system r-build-system)
6844 (propagated-inputs
6845 `(("r-bibtex" ,r-bibtex)
6846 ("r-gbrd" ,r-gbrd)))
6847 (home-page "https://github.com/GeoBosh/Rdpack")
6848 (synopsis "Update and manipulate Rd documentation objects")
6849 (description
6850 "This package provides functions for manipulation of R documentation
6851 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6852 updating Rd documentation for functions, methods and classes; it also includes
6853 Rd macros for citations and import of references from bibtex files for use in
6854 Rd files and roxygen2 comments, as well as many functions for manipulation of
6855 references and Rd files.")
6856 (license license:gpl2+)))
6857
6858 (define-public r-officer
6859 (package
6860 (name "r-officer")
6861 (version "0.3.13")
6862 (source
6863 (origin
6864 (method url-fetch)
6865 (uri (cran-uri "officer" version))
6866 (sha256
6867 (base32
6868 "15v5dishdsrw95nj6f7x23llzla3sgbvw35ibdk8ld3miwzxb2kr"))))
6869 (build-system r-build-system)
6870 (propagated-inputs
6871 `(("r-magrittr" ,r-magrittr)
6872 ("r-r6" ,r-r6)
6873 ("r-uuid" ,r-uuid)
6874 ("r-xml2" ,r-xml2)
6875 ("r-zip" ,r-zip)))
6876 (native-inputs
6877 `(("r-knitr" ,r-knitr)))
6878 (home-page "https://davidgohel.github.io/officer")
6879 (synopsis "Manipulation of Word and PowerPoint documents")
6880 (description
6881 "This package provides tools to access and manipulate Word and PowerPoint
6882 documents from R. The package focuses on tabular and graphical reporting from
6883 R; it also provides two functions that let users get document content into
6884 data objects. A set of functions lets add and remove images, tables and
6885 paragraphs of text in new or existing documents. When working with PowerPoint
6886 presentations, slides can be added or removed; shapes inside slides can also
6887 be added or removed. When working with Word documents, a cursor can be used
6888 to help insert or delete content at a specific location in the document.")
6889 (license license:gpl3)))
6890
6891 (define-public r-profilemodel
6892 (package
6893 (name "r-profilemodel")
6894 (version "0.6.0")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (cran-uri "profileModel" version))
6899 (sha256
6900 (base32
6901 "0yq8hy43h62hlz8bbf9ila4a3xcwizi1if27b78xc5y857ncwad8"))))
6902 (properties `((upstream-name . "profileModel")))
6903 (build-system r-build-system)
6904 (home-page "https://github.com/ikosmidis/profileModel")
6905 (synopsis "Profiling inference functions for various model classes")
6906 (description
6907 "This package provides tools that can be used to calculate, evaluate,
6908 plot and use for inference the profiles of *arbitrary* inference functions for
6909 arbitrary @code{glm}-like fitted models with linear predictors. More information
6910 on the methods that are implemented can be found in Kosmidis (2008)
6911 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
6912 (license license:gpl2+)))
6913
6914 (define-public r-brglm
6915 (package
6916 (name "r-brglm")
6917 (version "0.6.2")
6918 (source
6919 (origin
6920 (method url-fetch)
6921 (uri (cran-uri "brglm" version))
6922 (sha256
6923 (base32
6924 "0c9ngscc6zlfm90fqyggnj04qfkhp5qgf5q3wnfpxwyc8cm47by2"))))
6925 (properties `((upstream-name . "brglm")))
6926 (build-system r-build-system)
6927 (propagated-inputs
6928 `(("r-profilemodel" ,r-profilemodel)))
6929 (home-page "https://github.com/ikosmidis/brglm")
6930 (synopsis "Bias reduction in binomial-response generalized linear models")
6931 (description
6932 "Fit generalized linear models with binomial responses using either an
6933 adjusted-score approach to bias reduction or maximum penalized likelihood
6934 where penalization is by Jeffreys invariant prior. These procedures return
6935 estimates with improved frequentist properties (bias, mean squared error) that
6936 are always finite even in cases where the maximum likelihood estimates are
6937 infinite (data separation). Fitting takes place by fitting generalized linear
6938 models on iteratively updated pseudo-data. The interface is essentially the
6939 same as @code{glm}. More flexibility is provided by the fact that custom
6940 pseudo-data representations can be specified and used for model fitting.
6941 Functions are provided for the construction of confidence intervals for the
6942 reduced-bias estimates.")
6943 (license license:gpl2+)))
6944
6945 (define-public r-entropy
6946 (package
6947 (name "r-entropy")
6948 (version "1.2.1")
6949 (source
6950 (origin
6951 (method url-fetch)
6952 (uri (cran-uri "entropy" version))
6953 (sha256
6954 (base32
6955 "10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"))))
6956 (properties `((upstream-name . "entropy")))
6957 (build-system r-build-system)
6958 (home-page "https://www.strimmerlab.org/software/entropy/")
6959 (synopsis "Estimation of entropy, mutual information and related quantities")
6960 (description
6961 "This package implements various estimators of entropy, such as the
6962 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
6963 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
6964 estimator. It also offers an R interface to the NSB estimator. Furthermore,
6965 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
6966 mutual information, and chi-squared statistic of independence. In addition
6967 there are functions for discretizing continuous random variables.")
6968 (license license:gpl3+)))
6969
6970 (define-public r-abn
6971 (package
6972 (name "r-abn")
6973 (version "2.2.2")
6974 (source
6975 (origin
6976 (method url-fetch)
6977 (uri (cran-uri "abn" version))
6978 (sha256
6979 (base32
6980 "1wwnzv5yir8cyl0f0arxagbsg9ndgs0799m42wbjkpr8cg9sfdhc"))))
6981 (build-system r-build-system)
6982 (inputs
6983 `(("gsl" ,gsl)))
6984 (propagated-inputs
6985 `(("r-boot" ,r-boot)
6986 ("r-brglm" ,r-brglm)
6987 ("r-entropy" ,r-entropy)
6988 ("r-lme4" ,r-lme4)
6989 ("r-mass" ,r-mass)
6990 ("r-moments" ,r-moments)
6991 ("r-nnet" ,r-nnet)
6992 ("r-rcpp" ,r-rcpp)
6993 ("r-rcpparmadillo" ,r-rcpparmadillo)
6994 ("r-rjags" ,r-rjags)))
6995 (home-page "https://r-bayesian-networks.org/")
6996 (synopsis "Modelling multivariate data with additive bayesian networks")
6997 (description
6998 "Bayesian network analysis is a form of probabilistic graphical models
6999 which derives from empirical data a directed acyclic graph, DAG, describing
7000 the dependency structure between random variables. An additive Bayesian
7001 network model consists of a form of a DAG where each node comprises a
7002 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
7003 equivalent to Bayesian multivariate regression using graphical modelling, they
7004 generalises the usual multivariable regression, GLM, to multiple dependent
7005 variables. This package provides routines to help determine optimal Bayesian
7006 network models for a given data set, where these models are used to identify
7007 statistical dependencies in messy, complex data.")
7008 (license license:gpl2+)))
7009
7010 (define-public r-acd
7011 (package
7012 (name "r-acd")
7013 (version "1.5.3")
7014 (source
7015 (origin
7016 (method url-fetch)
7017 (uri (cran-uri "ACD" version))
7018 (sha256
7019 (base32
7020 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
7021 (properties `((upstream-name . "ACD")))
7022 (build-system r-build-system)
7023 (home-page "https://cran.r-project.org/web/packages/ACD/")
7024 (synopsis "Categorical data analysis with complete or missing responses")
7025 (description
7026 "This package provides tools for categorical data analysis with complete
7027 or missing responses.")
7028 (license license:gpl2+)))
7029
7030 (define-public r-acdm
7031 (package
7032 (name "r-acdm")
7033 (version "1.0.4")
7034 (source
7035 (origin
7036 (method url-fetch)
7037 (uri (cran-uri "ACDm" version))
7038 (sha256
7039 (base32
7040 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
7041 (properties `((upstream-name . "ACDm")))
7042 (build-system r-build-system)
7043 (propagated-inputs
7044 `(("r-dplyr" ,r-dplyr)
7045 ("r-ggplot2" ,r-ggplot2)
7046 ("r-plyr" ,r-plyr)
7047 ("r-rsolnp" ,r-rsolnp)
7048 ("r-zoo" ,r-zoo)))
7049 (home-page "https://cran.r-project.org/web/packages/ACDm/")
7050 (synopsis "Tools for Autoregressive Conditional Duration Models")
7051 (description
7052 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
7053 and Russell, 1998) models. It creates trade, price or volume durations from
7054 transactions (tic) data, performs diurnal adjustments, fits various ACD models
7055 and tests them.")
7056 (license license:gpl2+)))
7057
7058 (define-public r-overlap
7059 (package
7060 (name "r-overlap")
7061 (version "0.3.3")
7062 (source
7063 (origin
7064 (method url-fetch)
7065 (uri (cran-uri "overlap" version))
7066 (sha256
7067 (base32
7068 "17cnr4qin1qy0df4k491267acna12gpbbps6w3gi8nccqxfrb1pd"))))
7069 (build-system r-build-system)
7070 (home-page "https://cran.r-project.org/web/packages/overlap/")
7071 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
7072 (description
7073 "This package provides functions to fit kernel density functions to data
7074 on temporal activity patterns of animals; estimate coefficients of overlapping
7075 of densities for two species; and calculate bootstrap estimates of confidence
7076 intervals.")
7077 (license license:gpl3+)))
7078
7079 (define-public r-snakecase
7080 (package
7081 (name "r-snakecase")
7082 (version "0.11.0")
7083 (source
7084 (origin
7085 (method url-fetch)
7086 (uri (cran-uri "snakecase" version))
7087 (sha256
7088 (base32
7089 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
7090 (build-system r-build-system)
7091 (propagated-inputs
7092 `(("r-stringi" ,r-stringi)
7093 ("r-stringr" ,r-stringr)))
7094 (home-page "https://github.com/Tazinho/snakecase")
7095 (synopsis "Convert strings into any case")
7096 (description
7097 "This package provides a consistent, flexible and easy to use tool to
7098 parse and convert strings into cases like snake or camel among others.")
7099 (license license:gpl3)))
7100
7101 (define-public r-prediction
7102 (package
7103 (name "r-prediction")
7104 (version "0.3.14")
7105 (source
7106 (origin
7107 (method url-fetch)
7108 (uri (cran-uri "prediction" version))
7109 (sha256
7110 (base32
7111 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
7112 (build-system r-build-system)
7113 (propagated-inputs
7114 `(("r-data-table" ,r-data-table)))
7115 (home-page "https://github.com/leeper/prediction")
7116 (synopsis "Tidy, type-safe prediction methods")
7117 (description
7118 "This package provides the @code{prediction()} function, a type-safe
7119 alternative to @code{predict()} that always returns a data frame. The package
7120 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
7121 from the @code{stats} package, as well as numerous other model classes from
7122 other add-on packages.")
7123 (license license:expat)))
7124
7125 (define-public r-insight
7126 (package
7127 (name "r-insight")
7128 (version "0.9.1")
7129 (source
7130 (origin
7131 (method url-fetch)
7132 (uri (cran-uri "insight" version))
7133 (sha256
7134 (base32
7135 "0d6yzg5s0mz07bzxwfc77rpv4l20jpzrnhviqgkp02qw6a4nrwa6"))))
7136 (build-system r-build-system)
7137 (native-inputs
7138 `(("r-knitr" ,r-knitr)))
7139 (home-page "https://easystats.github.io/insight/")
7140 (synopsis "Easy access to model information for various model objects")
7141 (description
7142 "This package provides a tool to provide an easy, intuitive and
7143 consistent access to information contained in various R models, like model
7144 formulas, model terms, information about random effects, data that was used to
7145 fit the model or data from response variables. The package mainly revolves
7146 around two types of functions: Functions that find (the names of) information,
7147 starting with @code{find_}, and functions that get the underlying data,
7148 starting with @code{get_}. The package has a consistent syntax and works with
7149 many different model objects, where otherwise functions to access these
7150 information are missing.")
7151 (license license:gpl3)))
7152
7153 (define-public r-sjlabelled
7154 (package
7155 (name "r-sjlabelled")
7156 (version "1.1.6")
7157 (source
7158 (origin
7159 (method url-fetch)
7160 (uri (cran-uri "sjlabelled" version))
7161 (sha256
7162 (base32
7163 "0xvb0yi7c7wiiqjbnbisyb2cjinm11i373jacfv1yzyc9cznzyzq"))))
7164 (build-system r-build-system)
7165 (propagated-inputs
7166 `(("r-insight" ,r-insight)))
7167 (native-inputs
7168 `(("r-knitr" ,r-knitr)))
7169 (home-page "https://github.com/strengejacke/sjlabelled")
7170 (synopsis "Labelled data utility functions")
7171 (description
7172 "This package provides a collection of functions dealing with labelled
7173 data, like reading and writing data between R and other statistical software
7174 packages. This includes easy ways to get, set or change value and variable
7175 label attributes, to convert labelled vectors into factors or numeric (and
7176 vice versa), or to deal with multiple declared missing values.")
7177 (license license:gpl3)))
7178
7179 (define-public r-sjmisc
7180 (package
7181 (name "r-sjmisc")
7182 (version "2.8.5")
7183 (source
7184 (origin
7185 (method url-fetch)
7186 (uri (cran-uri "sjmisc" version))
7187 (sha256
7188 (base32
7189 "0xl0s56d13bia89ai619rcr0fzbvc2k8f7hjxik4qp0g4v87zzlk"))))
7190 (build-system r-build-system)
7191 (propagated-inputs
7192 `(("r-dplyr" ,r-dplyr)
7193 ("r-insight" ,r-insight)
7194 ("r-magrittr" ,r-magrittr)
7195 ("r-purrr" ,r-purrr)
7196 ("r-rlang" ,r-rlang)
7197 ("r-sjlabelled" ,r-sjlabelled)
7198 ("r-tidyselect" ,r-tidyselect)))
7199 (native-inputs
7200 `(("r-knitr" ,r-knitr)))
7201 (home-page "https://github.com/strengejacke/sjmisc")
7202 (synopsis "Data and variable transformation functions")
7203 (description
7204 "This package is a collection of miscellaneous utility functions,
7205 supporting data transformation tasks like recoding, dichotomizing or grouping
7206 variables, setting and replacing missing values. The data transformation
7207 functions also support labelled data, and all integrate seamlessly into a
7208 tidyverse workflow.")
7209 (license license:gpl3)))
7210
7211 (define-public r-nortest
7212 (package
7213 (name "r-nortest")
7214 (version "1.0-4")
7215 (source
7216 (origin
7217 (method url-fetch)
7218 (uri (cran-uri "nortest" version))
7219 (sha256
7220 (base32
7221 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
7222 (build-system r-build-system)
7223 (home-page "https://cran.r-project.org/web/packages/nortest/")
7224 (synopsis "Tests for normality")
7225 (description
7226 "This package provides five omnibus tests for testing the composite
7227 hypothesis of normality.")
7228 (license license:gpl2+)))
7229
7230 (define-public r-moonbook
7231 (package
7232 (name "r-moonbook")
7233 (version "0.2.3")
7234 (source
7235 (origin
7236 (method url-fetch)
7237 (uri (cran-uri "moonBook" version))
7238 (sha256
7239 (base32
7240 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
7241 (properties `((upstream-name . "moonBook")))
7242 (build-system r-build-system)
7243 (propagated-inputs
7244 `(("r-magrittr" ,r-magrittr)
7245 ("r-nortest" ,r-nortest)
7246 ("r-purrr" ,r-purrr)
7247 ("r-sjmisc" ,r-sjmisc)
7248 ("r-stringr" ,r-stringr)
7249 ("r-survival" ,r-survival)))
7250 (home-page "https://github.com/cardiomoon/moonBook")
7251 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
7252 (description
7253 "This package provides several analysis-related functions for the book
7254 entitled \"R statistics and graph for medical articles\" (written in Korean),
7255 version 1, by Keon-Woong Moon with Korean demographic data with several plot
7256 functions.")
7257 (license license:gpl2)))
7258
7259 (define-public r-flextable
7260 (package
7261 (name "r-flextable")
7262 (version "0.5.10")
7263 (source
7264 (origin
7265 (method url-fetch)
7266 (uri (cran-uri "flextable" version))
7267 (sha256
7268 (base32
7269 "1j7yvjiavar21ywck6nyz0p6bd66fnj99bq8lljdz4rrl3314yb8"))))
7270 (build-system r-build-system)
7271 (propagated-inputs
7272 `(("r-base64enc" ,r-base64enc)
7273 ("r-data-table" ,r-data-table)
7274 ("r-gdtools" ,r-gdtools)
7275 ("r-htmltools" ,r-htmltools)
7276 ("r-knitr" ,r-knitr)
7277 ("r-officer" ,r-officer)
7278 ("r-rlang" ,r-rlang)
7279 ("r-rmarkdown" ,r-rmarkdown)
7280 ("r-uuid" ,r-uuid)
7281 ("r-xml2" ,r-xml2)))
7282 (home-page "https://davidgohel.github.io/flextable")
7283 (synopsis "Functions for tabular reporting")
7284 (description
7285 "This package provides tools to create pretty tables for HTML documents
7286 and other formats. Functions are provided to let users create tables, modify
7287 and format their content. It extends the @code{officer} package and can be
7288 used within R markdown documents when rendering to HTML and to Word
7289 documents.")
7290 (license license:gpl3)))
7291
7292 (define-public r-writexl
7293 (package
7294 (name "r-writexl")
7295 (version "1.3.1")
7296 (source
7297 (origin
7298 (method url-fetch)
7299 (uri (cran-uri "writexl" version))
7300 (sha256
7301 (base32
7302 "1njdhvh8605wd2j8glrbxfyc36p2n88prpq080jn44s9lgfmbgsb"))))
7303 (build-system r-build-system)
7304 (inputs `(("zlib" ,zlib)))
7305 (home-page "https://github.com/ropensci/writexl")
7306 (synopsis "Export data frames to xlsx format")
7307 (description
7308 "This package provides a data frame to xlsx exporter based on
7309 libxlsxwriter.")
7310 (license license:bsd-2)))
7311
7312 (define-public r-biasedurn
7313 (package
7314 (name "r-biasedurn")
7315 (version "1.07")
7316 (source
7317 (origin
7318 (method url-fetch)
7319 (uri (cran-uri "BiasedUrn" version))
7320 (sha256
7321 (base32
7322 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
7323 (properties `((upstream-name . "BiasedUrn")))
7324 (build-system r-build-system)
7325 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
7326 (synopsis "Biased Urn model distributions")
7327 (description
7328 "This package provides statistical models of biased sampling in the form
7329 of univariate and multivariate noncentral hypergeometric distributions,
7330 including Wallenius' noncentral hypergeometric distribution and Fisher's
7331 noncentral hypergeometric distribution (also called extended hypergeometric
7332 distribution).")
7333 (license license:gpl3)))
7334
7335 (define-public r-goplot
7336 (package
7337 (name "r-goplot")
7338 (version "1.0.2")
7339 (source
7340 (origin
7341 (method url-fetch)
7342 (uri (cran-uri "GOplot" version))
7343 (sha256
7344 (base32
7345 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
7346 (properties `((upstream-name . "GOplot")))
7347 (build-system r-build-system)
7348 (propagated-inputs
7349 `(("r-ggdendro" ,r-ggdendro)
7350 ("r-ggplot2" ,r-ggplot2)
7351 ("r-gridextra" ,r-gridextra)
7352 ("r-rcolorbrewer" ,r-rcolorbrewer)))
7353 (home-page "https://github.com/wencke/wencke.github.io")
7354 (synopsis "Visualization of functional analysis data")
7355 (description
7356 "This package provides an implementation of multilayered visualizations
7357 for enhanced graphical representation of functional analysis data. It
7358 combines and integrates omics data derived from expression and functional
7359 annotation enrichment analyses. Its plotting functions have been developed
7360 with an hierarchical structure in mind: starting from a general overview to
7361 identify the most enriched categories (modified bar plot, bubble plot) to a
7362 more detailed one displaying different types of relevant information for the
7363 molecules in a given set of categories (circle plot, chord plot, cluster plot,
7364 Venn diagram, heatmap).")
7365 (license license:gpl2)))
7366
7367 (define-public r-getopt
7368 (package
7369 (name "r-getopt")
7370 (version "1.20.3")
7371 (source
7372 (origin
7373 (method url-fetch)
7374 (uri (cran-uri "getopt" version))
7375 (sha256
7376 (base32
7377 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
7378 (build-system r-build-system)
7379 (home-page "https://github.com/trevorld/getopt")
7380 (synopsis "Command-line option processor for R")
7381 (description
7382 "This package is designed to be used with Rscript to write shebang
7383 scripts that accept short and long options. Many users will prefer to
7384 use the packages @code{optparse} or @code{argparse} which add extra
7385 features like automatically generated help options and usage texts,
7386 support for default values, positional argument support, etc.")
7387 (license license:gpl2+)))
7388
7389 (define-public r-findpython
7390 (package
7391 (name "r-findpython")
7392 (version "1.0.5")
7393 (source
7394 (origin
7395 (method url-fetch)
7396 (uri (cran-uri "findpython" version))
7397 (sha256
7398 (base32
7399 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
7400 (build-system r-build-system)
7401 (home-page "https://github.com/trevorld/findpython")
7402 (synopsis "Functions to find an acceptable Python binary")
7403 (description
7404 "This package was designed to find an acceptable Python binary that
7405 matches version and feature constraints.")
7406 (license license:expat)))
7407
7408 ;; This in not the same as "r-argparser"
7409 (define-public r-argparse
7410 (package
7411 (name "r-argparse")
7412 (version "2.0.1")
7413 (source
7414 (origin
7415 (method url-fetch)
7416 (uri (cran-uri "argparse" version))
7417 (sha256
7418 (base32
7419 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
7420 (build-system r-build-system)
7421 (inputs `(("python" ,python)))
7422 (propagated-inputs
7423 `(("r-findpython" ,r-findpython)
7424 ("r-jsonlite" ,r-jsonlite)
7425 ("r-r6" ,r-r6)))
7426 (home-page "https://github.com/trevorld/argparse")
7427 (synopsis "Command line optional and positional argument parser")
7428 (description
7429 "This package provides a command line parser to be used with Rscript to
7430 write shebang scripts that gracefully accept positional and optional arguments
7431 and automatically generate usage notices.")
7432 (license license:gpl2+)))
7433
7434 (define-public r-hash
7435 (package
7436 (name "r-hash")
7437 (version "2.2.6.1")
7438 (source
7439 (origin
7440 (method url-fetch)
7441 (uri (cran-uri "hash" version))
7442 (sha256
7443 (base32
7444 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
7445 (build-system r-build-system)
7446 (home-page "https://cran.r-project.org/web/packages/hash/")
7447 (synopsis "Implementation of hash/associated arrays/dictionaries")
7448 (description
7449 "This package implements a data structure similar to hashes in Perl and
7450 dictionaries in Python but with a purposefully R flavor. For objects of
7451 appreciable size, access using hashes outperforms native named lists and
7452 vectors.")
7453 (license license:gpl2+)))
7454
7455 (define-public r-orddom
7456 (package
7457 (name "r-orddom")
7458 (version "3.1")
7459 (source
7460 (origin
7461 (method url-fetch)
7462 (uri (cran-uri "orddom" version))
7463 (sha256
7464 (base32
7465 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
7466 (build-system r-build-system)
7467 (propagated-inputs `(("r-psych" ,r-psych)))
7468 (home-page "https://cran.r-project.org/web/packages/orddom/")
7469 (synopsis "Ordinal dominance statistics")
7470 (description
7471 "This package provides tools to compute ordinal, statistics and effect
7472 sizes as an alternative to mean comparison: Cliff's delta or success rate
7473 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
7474 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
7475 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
7476 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
7477 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
7478 Group (Non-)Overlap considerations.")
7479 (license license:gpl2)))
7480
7481 (define-public r-deriv
7482 (package
7483 (name "r-deriv")
7484 (version "4.0.1")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (cran-uri "Deriv" version))
7489 (sha256
7490 (base32
7491 "16rq65x1xhxvqwn4p427divay3b9fgam2lxccxb8529adnrxmw6p"))))
7492 (properties `((upstream-name . "Deriv")))
7493 (build-system r-build-system)
7494 (home-page "https://cran.r-project.org/web/packages/Deriv")
7495 (synopsis "Symbolic differentiation")
7496 (description
7497 "This package provides an R-based solution for symbolic differentiation.
7498 It admits user-defined functions as well as function substitution in arguments
7499 of functions to be differentiated. Some symbolic simplification is part of
7500 the work.")
7501 (license license:gpl3+)))
7502
7503 (define-public r-doby
7504 (package
7505 (name "r-doby")
7506 (version "4.6.7")
7507 (source
7508 (origin
7509 (method url-fetch)
7510 (uri (cran-uri "doBy" version))
7511 (sha256
7512 (base32
7513 "16vg1aa272sfzyqxfb63fyis9hv6g5m3nmxxa6mk1gy0irqnl3jk"))))
7514 (properties `((upstream-name . "doBy")))
7515 (build-system r-build-system)
7516 (propagated-inputs
7517 `(("r-broom" ,r-broom)
7518 ("r-deriv" ,r-deriv)
7519 ("r-dplyr" ,r-dplyr)
7520 ("r-ggplot2" ,r-ggplot2)
7521 ("r-magrittr" ,r-magrittr)
7522 ("r-mass" ,r-mass)
7523 ("r-matrix" ,r-matrix)
7524 ("r-pbkrtest" ,r-pbkrtest)
7525 ("r-tibble" ,r-tibble)))
7526 (native-inputs
7527 `(("r-knitr" ,r-knitr)))
7528 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
7529 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
7530 (description
7531 "This package contains:
7532
7533 @itemize
7534 @item facilities for working with grouped data: @code{do}
7535 something to data stratified @code{by} some variables.
7536 @item implementations of least-squares means, general linear contrasts, and
7537 @item miscellaneous other utilities.
7538 @end itemize\n")
7539 (license license:gpl2+)))
7540
7541 (define-public r-refgenome
7542 (package
7543 (name "r-refgenome")
7544 (version "1.7.7")
7545 (source
7546 (origin
7547 (method url-fetch)
7548 (uri (cran-uri "refGenome" version))
7549 (sha256
7550 (base32
7551 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
7552 (properties `((upstream-name . "refGenome")))
7553 (build-system r-build-system)
7554 (propagated-inputs
7555 `(("r-dbi" ,r-dbi)
7556 ("r-doby" ,r-doby)
7557 ("r-rsqlite" ,r-rsqlite)))
7558 (home-page "https://cran.r-project.org/web/packages/refGenome/")
7559 (synopsis
7560 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
7561 (description
7562 "This package contains functionality for importing and managing of
7563 downloaded genome annotation data from the Ensembl genome browser (European
7564 Bioinformatics Institute) and from the UCSC genome browser (University of
7565 California, Santa Cruz) and annotation routines for genomic positions and
7566 splice site positions.")
7567 (license license:gpl2)))
7568
7569 (define-public r-basix
7570 (package
7571 (name "r-basix")
7572 (version "1.1")
7573 (source
7574 (origin
7575 (method url-fetch)
7576 (uri (cran-uri "BASIX" version))
7577 (sha256
7578 (base32
7579 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
7580 (properties `((upstream-name . "BASIX")))
7581 (build-system r-build-system)
7582 (home-page "https://cran.r-project.org/web/packages/BASIX/")
7583 (synopsis "Efficient C/C++ toolset for R")
7584 (description
7585 "BASIX provides some efficient C/C++ implementations of native R
7586 procedures to speed up calculations in R.")
7587 (license license:gpl2)))
7588
7589 (define-public r-blockfest
7590 (package
7591 (name "r-blockfest")
7592 (version "1.6")
7593 (source
7594 (origin
7595 (method url-fetch)
7596 (uri (cran-uri "BlockFeST" version))
7597 (sha256
7598 (base32
7599 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
7600 (properties `((upstream-name . "BlockFeST")))
7601 (build-system r-build-system)
7602 (propagated-inputs `(("r-basix" ,r-basix)))
7603 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
7604 (synopsis "Bayesian calculation of region-specific fixation index")
7605 (description
7606 "This package provides an R implementation of an extension of the
7607 BayeScan software for codominant markers, adding the option to group
7608 individual SNPs into pre-defined blocks. A typical application of this new
7609 approach is the identification of genomic regions, genes, or gene sets
7610 containing one or more SNPs that evolved under directional selection.")
7611 (license license:gpl2)))
7612
7613 (define-public r-proc
7614 (package
7615 (name "r-proc")
7616 (version "1.16.2")
7617 (source
7618 (origin
7619 (method url-fetch)
7620 (uri (cran-uri "pROC" version))
7621 (sha256
7622 (base32
7623 "0apwa5zzqh74pjnvf5a1s5qf6i9r5h44jdllfrwymkd2v479d2xn"))))
7624 (properties `((upstream-name . "pROC")))
7625 (build-system r-build-system)
7626 (propagated-inputs
7627 `(("r-plyr" ,r-plyr)
7628 ("r-rcpp" ,r-rcpp)))
7629 (home-page "https://web.expasy.org/pROC/")
7630 (synopsis "Display and analyze ROC curves")
7631 (description
7632 "This package provides tools for visualizing, smoothing and comparing
7633 receiver operating characteristic (ROC curves). The area under the
7634 curve (AUC) can be compared with statistical tests based on U-statistics or
7635 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
7636 (license license:gpl3+)))
7637
7638 (define-public r-rootsolve
7639 (package
7640 (name "r-rootsolve")
7641 (version "1.8.2.1")
7642 (source
7643 (origin
7644 (method url-fetch)
7645 (uri (cran-uri "rootSolve" version))
7646 (sha256
7647 (base32
7648 "0c9hhgq1pgqdg80a6n2ssfbj5nyaf97y4iiya7j7l6b34qc53128"))))
7649 (properties `((upstream-name . "rootSolve")))
7650 (build-system r-build-system)
7651 (native-inputs `(("gfortran" ,gfortran)))
7652 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
7653 (synopsis "Tools for the analysis of ordinary differential equations")
7654 (description
7655 "This package provides routines to find the root of nonlinear functions,
7656 and to perform steady-state and equilibrium analysis of @dfn{ordinary
7657 differential equations} (ODE). It includes routines that:
7658
7659 @enumerate
7660 @item generate gradient and jacobian matrices (full and banded),
7661 @item find roots of non-linear equations by the Newton-Raphson method,
7662 @item estimate steady-state conditions of a system of (differential) equations
7663 in full, banded or sparse form, using the Newton-Raphson method, or by
7664 dynamically running,
7665 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
7666 and 3-D partial differential equations, that have been converted to ordinary
7667 differential equations by numerical differencing (using the method-of-lines
7668 approach).
7669 @end enumerate\n")
7670 (license license:gpl2+)))
7671
7672 (define-public r-abcanalysis
7673 (package
7674 (name "r-abcanalysis")
7675 (version "1.2.1")
7676 (source
7677 (origin
7678 (method url-fetch)
7679 (uri (cran-uri "ABCanalysis" version))
7680 (sha256
7681 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
7682 (properties `((upstream-name . "ABCanalysis")))
7683 (build-system r-build-system)
7684 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
7685 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
7686 (synopsis "Computed ABC Analysis")
7687 (description
7688 "Multivariate data sets often differ in several factors or derived statistical
7689 parameters, which have to be selected for a valid interpretation. Basing this
7690 selection on traditional statistical limits leads occasionally to the perception
7691 of losing information from a data set. This package provides tools to calculate
7692 these limits on the basis of the mathematical properties of the distribution of
7693 the analyzed items.")
7694 (license license:gpl3)))
7695
7696 (define-public r-slam
7697 (package
7698 (name "r-slam")
7699 (version "0.1-47")
7700 (source
7701 (origin
7702 (method url-fetch)
7703 (uri (cran-uri "slam" version))
7704 (sha256
7705 (base32 "12fggw2c7hz3bpvsaqm24g3r6lbpq6jgli24g7x5j859iak5cqv9"))))
7706 (build-system r-build-system)
7707 (home-page "https://cran.r-project.org/web/packages/slam/")
7708 (synopsis "Sparse lightweight arrays and matrices")
7709 (description
7710 "This package contains data structures and algorithms for sparse arrays and matrices,
7711 based on index arrays and simple triplet representations, respectively.")
7712 (license license:gpl2)))
7713
7714 (define-public r-manipulatewidget
7715 (package
7716 (name "r-manipulatewidget")
7717 (version "0.10.1")
7718 (source
7719 (origin
7720 (method url-fetch)
7721 (uri (cran-uri "manipulateWidget" version))
7722 (sha256
7723 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
7724 (properties
7725 `((upstream-name . "manipulateWidget")))
7726 (build-system r-build-system)
7727 (propagated-inputs
7728 `(("r-base64enc" ,r-base64enc)
7729 ("r-codetools" ,r-codetools)
7730 ("r-htmltools" ,r-htmltools)
7731 ("r-htmlwidgets" ,r-htmlwidgets)
7732 ("r-knitr" ,r-knitr)
7733 ("r-miniui" ,r-miniui)
7734 ("r-shiny" ,r-shiny)
7735 ("r-webshot" ,r-webshot)))
7736 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
7737 (synopsis "Add even more interactivity to interactive charts")
7738 (description
7739 "This package lets you create in just a few lines of R code a nice user interface to
7740 modify the data or the graphical parameters of one or multiple interactive
7741 charts. It is useful to quickly explore visually some data or for package
7742 developers to generate user interfaces easy to maintain.")
7743 (license license:gpl2+)))
7744
7745 (define-public r-a3
7746 (package
7747 (name "r-a3")
7748 (version "1.0.0")
7749 (source
7750 (origin
7751 (method url-fetch)
7752 (uri (cran-uri "A3" version))
7753 (sha256
7754 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
7755 (properties `((upstream-name . "A3")))
7756 (build-system r-build-system)
7757 (propagated-inputs
7758 `(("r-pbapply" ,r-pbapply)
7759 ("r-xtable" ,r-xtable)))
7760 (home-page "https://cran.r-project.org/web/packages/A3/")
7761 (synopsis "Error metrics for predictive models")
7762 (description
7763 "This package supplies tools for tabulating and analyzing the results of predictive
7764 models. The methods employed are applicable to virtually any predictive model
7765 and make comparisons between different methodologies straightforward.")
7766 (license license:gpl2+)))
7767
7768 (define-public r-infotheo
7769 (package
7770 (name "r-infotheo")
7771 (version "1.2.0")
7772 (source
7773 (origin
7774 (method url-fetch)
7775 (uri (cran-uri "infotheo" version))
7776 (sha256
7777 (base32
7778 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
7779 (build-system r-build-system)
7780 (home-page "http://homepage.meyerp.com/software")
7781 (synopsis "Information-theoretic measures")
7782 (description
7783 "This package implements various measures of information theory based on
7784 several entropy estimators.")
7785 (license license:gpl3+)))
7786
7787 (define-public r-abcoptim
7788 (package
7789 (name "r-abcoptim")
7790 (version "0.15.0")
7791 (source
7792 (origin
7793 (method url-fetch)
7794 (uri (cran-uri "ABCoptim" version))
7795 (sha256
7796 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
7797 (properties `((upstream-name . "ABCoptim")))
7798 (build-system r-build-system)
7799 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7800 (home-page "https://github.com/gvegayon/ABCoptim/")
7801 (synopsis "Optimization of Artificial Bee Colony algorithm")
7802 (description
7803 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
7804 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
7805 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
7806 algorithms, and uses only common control parameters such as colony size and
7807 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
7808 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
7809 This version is a work-in-progress and is written in R code.")
7810 (license license:expat)))
7811
7812 (define-public r-abcp2
7813 (package
7814 (name "r-abcp2")
7815 (version "1.2")
7816 (source
7817 (origin
7818 (method url-fetch)
7819 (uri (cran-uri "ABCp2" version))
7820 (sha256
7821 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
7822 (properties `((upstream-name . "ABCp2")))
7823 (build-system r-build-system)
7824 (propagated-inputs `(("r-mass" ,r-mass)))
7825 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
7826 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
7827 (description
7828 "This package tests the goodness of fit of a distribution of offspring to the Normal,
7829 Poisson, and Gamma distribution and estimates the proportional paternity of the
7830 second male (P2) based on the best fit distribution.")
7831 (license license:gpl2)))
7832
7833 (define-public r-abcrf
7834 (package
7835 (name "r-abcrf")
7836 (version "1.8.1")
7837 (source
7838 (origin
7839 (method url-fetch)
7840 (uri (cran-uri "abcrf" version))
7841 (sha256
7842 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
7843 (build-system r-build-system)
7844 (propagated-inputs
7845 `(("r-doparallel" ,r-doparallel)
7846 ("r-foreach" ,r-foreach)
7847 ("r-mass" ,r-mass)
7848 ("r-matrixstats" ,r-matrixstats)
7849 ("r-ranger" ,r-ranger)
7850 ("r-rcpp" ,r-rcpp)
7851 ("r-rcpparmadillo" ,r-rcpparmadillo)
7852 ("r-readr" ,r-readr)
7853 ("r-stringr" ,r-stringr)))
7854 (home-page "https://cran.r-project.org/web/packages/abcrf/")
7855 (synopsis "Approximate bayesian computation via random forests")
7856 (description
7857 "This package performs approximate bayesian computation (ABC) model choice and
7858 parameter inference via random forests. This machine learning tool named random
7859 forests (RF) can conduct selection among the highly complex models covered by
7860 ABC algorithms.")
7861 (license license:gpl2+)))
7862
7863 (define-public r-abctools
7864 (package
7865 (name "r-abctools")
7866 (version "1.1.3")
7867 (source
7868 (origin
7869 (method url-fetch)
7870 (uri (cran-uri "abctools" version))
7871 (sha256
7872 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
7873 (build-system r-build-system)
7874 (propagated-inputs
7875 `(("r-abc" ,r-abc)
7876 ("r-abind" ,r-abind)
7877 ("r-hmisc" ,r-hmisc)
7878 ("r-plyr" ,r-plyr)))
7879 (home-page "https://github.com/dennisprangle/abctools/")
7880 (synopsis "Tools for ABC analyses")
7881 (description
7882 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7883 including summary statistic selection and assessing coverage. This includes
7884 recent dimension reduction algorithms to tune the choice of summary statistics,
7885 and coverage methods to tune the choice of threshold.")
7886 (license license:gpl2+)))
7887
7888 (define-public r-ggstance
7889 (package
7890 (name "r-ggstance")
7891 (version "0.3.4")
7892 (source
7893 (origin
7894 (method url-fetch)
7895 (uri (cran-uri "ggstance" version))
7896 (sha256
7897 (base32 "0aqz3dn02cgij018a4sglqwrwr9dzzj12l8xr1064q7hfd4f64m1"))))
7898 (build-system r-build-system)
7899 (propagated-inputs
7900 `(("r-ggplot2" ,r-ggplot2)
7901 ("r-plyr" ,r-plyr)
7902 ("r-rlang" ,r-rlang)
7903 ("r-withr" ,r-withr)))
7904 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7905 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7906 (description
7907 "This package is a @code{r-ggplot2} extension that provides flipped components:
7908 @enumerate
7909 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7910 @item vertical versions of @code{r-ggplot2} positions.
7911 @end enumerate")
7912 (license license:gpl3)))
7913
7914 (define-public r-mosaiccore
7915 (package
7916 (name "r-mosaiccore")
7917 (version "0.6.0")
7918 (source
7919 (origin
7920 (method url-fetch)
7921 (uri (cran-uri "mosaicCore" version))
7922 (sha256
7923 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7924 (properties `((upstream-name . "mosaicCore")))
7925 (build-system r-build-system)
7926 (propagated-inputs
7927 `(("r-dplyr" ,r-dplyr)
7928 ("r-lazyeval" ,r-lazyeval)
7929 ("r-mass" ,r-mass)
7930 ("r-rlang" ,r-rlang)
7931 ("r-tidyr" ,r-tidyr)))
7932 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7933 (synopsis "Common utilities for mosaic family packages")
7934 (description
7935 "Common utilities used in other Mosaic family packages are collected here.")
7936 (license license:gpl2+)))
7937
7938 (define-public r-ggformula
7939 (package
7940 (name "r-ggformula")
7941 (version "0.9.4")
7942 (source
7943 (origin
7944 (method url-fetch)
7945 (uri (cran-uri "ggformula" version))
7946 (sha256
7947 (base32 "04vdhg1bbc1psrx9ggaphz7cx4fw5xsmhkqpqfcg2w4ba2bjy46f"))))
7948 (build-system r-build-system)
7949 (propagated-inputs
7950 `(("r-ggforce" ,r-ggforce)
7951 ("r-ggplot2" ,r-ggplot2)
7952 ("r-ggstance" ,r-ggstance)
7953 ("r-magrittr" ,r-magrittr)
7954 ("r-mosaiccore" ,r-mosaiccore)
7955 ("r-rlang" ,r-rlang)
7956 ("r-stringr" ,r-stringr)
7957 ("r-tibble" ,r-tibble)))
7958 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7959 (synopsis "Formula interface for the @code{r-ggplot2}")
7960 (description
7961 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7962 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7963 and extends the excellent simplicity of the lattice-graphics formula interface,
7964 while providing the intuitive capabilities of @code{r-ggplot2}.")
7965 (license license:expat)))
7966
7967 (define-public r-mosaicdata
7968 (package
7969 (name "r-mosaicdata")
7970 (version "0.18.0")
7971 (source
7972 (origin
7973 (method url-fetch)
7974 (uri (cran-uri "mosaicData" version))
7975 (sha256
7976 (base32 "0cx5dg26ha7nzkdyghkbbd6ikncj60qv1538az77lfgn2jylvkbz"))))
7977 (properties `((upstream-name . "mosaicData")))
7978 (build-system r-build-system)
7979 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7980 (synopsis "Data sets for project Mosaic")
7981 (description
7982 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7983 used to teach mathematics, statistics, computation and modeling.")
7984 (license license:gpl2+)))
7985
7986 (define-public r-raster
7987 (package
7988 (name "r-raster")
7989 (version "3.3-13")
7990 (source
7991 (origin
7992 (method url-fetch)
7993 (uri (cran-uri "raster" version))
7994 (sha256
7995 (base32
7996 "1s6457rq94qvm3s2lqscs2c2gn5kzcpxa13i8nhlgb1klx5kams7"))))
7997 (build-system r-build-system)
7998 (propagated-inputs
7999 `(("r-rcpp" ,r-rcpp)
8000 ("r-sp" ,r-sp)))
8001 (home-page "https://www.rspatial.org/")
8002 (synopsis "Geographic data analysis and modeling")
8003 (description
8004 "The package implements basic and high-level functions for reading,
8005 writing, manipulating, analyzing and modeling of gridded spatial data.
8006 Processing of very large files is supported.")
8007 (license license:gpl3+)))
8008
8009 (define-public r-mosaic
8010 (package
8011 (name "r-mosaic")
8012 (version "1.4.0")
8013 (source
8014 (origin
8015 (method url-fetch)
8016 (uri (cran-uri "mosaic" version))
8017 (sha256
8018 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
8019 (build-system r-build-system)
8020 (propagated-inputs
8021 `(("r-broom" ,r-broom)
8022 ("r-dplyr" ,r-dplyr)
8023 ("r-ggdendro" ,r-ggdendro)
8024 ("r-ggformula" ,r-ggformula)
8025 ("r-ggplot2" ,r-ggplot2)
8026 ("r-ggrepel" ,r-ggrepel)
8027 ("r-glue" ,r-glue)
8028 ("r-gridextra" ,r-gridextra)
8029 ("r-lattice" ,r-lattice)
8030 ("r-latticeextra" ,r-latticeextra)
8031 ("r-lazyeval" ,r-lazyeval)
8032 ("r-mass" ,r-mass)
8033 ("r-matrix" ,r-matrix)
8034 ("r-mosaiccore" ,r-mosaiccore)
8035 ("r-mosaicdata" ,r-mosaicdata)
8036 ("r-readr" ,r-readr)
8037 ("r-tidyr" ,r-tidyr)))
8038 (native-inputs
8039 `(("r-knitr" ,r-knitr)))
8040 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
8041 (synopsis "Mathematics, statistics, and computation teaching utilities")
8042 (description
8043 "This package contain data sets and utilities from
8044 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
8045 statistics, computation and modeling. Project MOSAIC is a community of
8046 educators working to tie together aspects of quantitative work that students
8047 in science, technology, engineering and mathematics will need in their
8048 professional lives, but which are usually taught in isolation, if at all.")
8049 (license license:gpl2+)))
8050
8051 (define-public r-abd
8052 (package
8053 (name "r-abd")
8054 (version "0.2-8")
8055 (source
8056 (origin
8057 (method url-fetch)
8058 (uri (cran-uri "abd" version))
8059 (sha256
8060 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
8061 (build-system r-build-system)
8062 (propagated-inputs
8063 `(("r-lattice" ,r-lattice)
8064 ("r-mosaic" ,r-mosaic)
8065 ("r-nlme" ,r-nlme)))
8066 (home-page "https://cran.r-project.org/web/packages/abd/")
8067 (synopsis "Analysis of biological data")
8068 (description
8069 "The @code{r-abd} package contains data sets and sample code for the Analysis of
8070 biological data by Michael Whitlock and Dolph Schluter.")
8071 (license license:gpl2)))
8072
8073 (define-public r-svgui
8074 (package
8075 (name "r-svgui")
8076 (version "1.0.0")
8077 (source
8078 (origin
8079 (method url-fetch)
8080 (uri (cran-uri "svGUI" version))
8081 (sha256
8082 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
8083 (properties `((upstream-name . "svGUI")))
8084 (build-system r-build-system)
8085 (home-page "https://github.com/SciViews/svGUI/")
8086 (synopsis "Functions for managing GUI clients in R")
8087 (description
8088 "The SciViews @code{svGUI} package eases the management of Graphical User
8089 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
8090 centralizes info about GUI elements currently used, and it dispatches GUI
8091 calls to the particular toolkits in use in function of the context.")
8092 (license license:gpl2)))
8093
8094 (define-public r-svdialogs
8095 (package
8096 (name "r-svdialogs")
8097 (version "1.0.0")
8098 (source
8099 (origin
8100 (method url-fetch)
8101 (uri (cran-uri "svDialogs" version))
8102 (sha256
8103 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
8104 (properties `((upstream-name . "svDialogs")))
8105 (build-system r-build-system)
8106 (inputs
8107 `(("yad" ,yad)
8108 ("zenity" ,zenity)))
8109 (propagated-inputs
8110 `(("r-rstudioapi" ,r-rstudioapi)
8111 ("r-svgui" ,r-svgui)))
8112 (home-page "https://github.com/SciViews/svDialogs/")
8113 (synopsis "Portable dialog boxes")
8114 (description
8115 "This package helps to construct standard dialog boxes for your GUI, including
8116 message boxes, input boxes, list, file or directory selection, and others. In
8117 case R cannot display GUI dialog boxes, a simpler command line version of these
8118 interactive elements is also provided as a fallback solution.")
8119 (license license:gpl2)))
8120
8121 (define-public r-abe
8122 (package
8123 (name "r-abe")
8124 (version "3.0.1")
8125 (source
8126 (origin
8127 (method url-fetch)
8128 (uri (cran-uri "abe" version))
8129 (sha256
8130 (base32
8131 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
8132 (build-system r-build-system)
8133 (home-page "https://cran.r-project.org/web/packages/abe/")
8134 (synopsis "Augmented backward elimination")
8135 (description
8136 "This package performs augmented backward elimination and checks the
8137 stability of the obtained model. Augmented backward elimination combines
8138 significance or information based criteria with the change in estimate to
8139 either select the optimal model for prediction purposes or to serve as a tool
8140 to obtain a practically sound, highly interpretable model.")
8141 (license license:gpl2+)))
8142
8143 (define-public r-abf2
8144 (package
8145 (name "r-abf2")
8146 (version "0.7-1")
8147 (source
8148 (origin
8149 (method url-fetch)
8150 (uri (cran-uri "abf2" version))
8151 (sha256
8152 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
8153 (build-system r-build-system)
8154 (home-page "https://cran.r-project.org/web/packages/abf2/")
8155 (synopsis "Load gap-free axon @code{r-abf2} files")
8156 (description
8157 "This package loads electrophysiology data from ABF2 files, as created by
8158 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
8159 mode are currently supported.")
8160 (license license:artistic2.0)))
8161
8162 (define-public r-abhgenotyper
8163 (package
8164 (name "r-abhgenotyper")
8165 (version "1.0.1")
8166 (source
8167 (origin
8168 (method url-fetch)
8169 (uri (cran-uri "ABHgenotypeR" version))
8170 (sha256
8171 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
8172 (properties `((upstream-name . "ABHgenotypeR")))
8173 (build-system r-build-system)
8174 (propagated-inputs
8175 `(("r-ggplot2" ,r-ggplot2)
8176 ("r-reshape2" ,r-reshape2)))
8177 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
8178 (synopsis "Visualize and manipulate ABH genotypes")
8179 (description
8180 "The @code{r-abhgenotyper} package provides simple imputation,
8181 error-correction and plotting capacities for genotype data. The package is
8182 supposed to serve as an intermediate but independent analysis tool between the
8183 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
8184 not found in either TASSEL or @code{r-qtl} in addition to visualization of
8185 genotypes as \"graphical genotypes\".")
8186 (license license:gpl3)))
8187
8188 (define-public r-furrr
8189 (package
8190 (name "r-furrr")
8191 (version "0.1.0")
8192 (source
8193 (origin
8194 (method url-fetch)
8195 (uri (cran-uri "furrr" version))
8196 (sha256
8197 (base32
8198 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
8199 (build-system r-build-system)
8200 (propagated-inputs
8201 `(("r-future" ,r-future)
8202 ("r-globals" ,r-globals)
8203 ("r-purrr" ,r-purrr)
8204 ("r-rlang" ,r-rlang)))
8205 (home-page "https://github.com/DavisVaughan/furrr")
8206 (synopsis "Apply mapping functions in parallel using futures")
8207 (description
8208 "This package provides implementations of the family of @code{map()}
8209 functions from the @code{purrr} package that can be resolved using any
8210 @code{future}-supported backend, e.g. parallel on the local machine or
8211 distributed on a compute cluster.")
8212 (license license:lgpl2.1+)))
8213
8214 (define-public r-abjutils
8215 (package
8216 (name "r-abjutils")
8217 (version "0.3.1")
8218 (source
8219 (origin
8220 (method url-fetch)
8221 (uri (cran-uri "abjutils" version))
8222 (sha256
8223 (base32 "18mmlkqsrjfclk8islfjdsp8sbw6dpjj5x45kqilxdiss69gg5zd"))))
8224 (build-system r-build-system)
8225 (propagated-inputs
8226 `(("r-dplyr" ,r-dplyr)
8227 ("r-magrittr" ,r-magrittr)
8228 ("r-purrr" ,r-purrr)
8229 ("r-rlang" ,r-rlang)
8230 ("r-rstudioapi" ,r-rstudioapi)
8231 ("r-stringi" ,r-stringi)
8232 ("r-stringr" ,r-stringr)
8233 ("r-tidyr" ,r-tidyr)))
8234 (home-page "https://github.com/abjur/abjutils/")
8235 (synopsis "Collection of tools for jurimetrical analysis")
8236 (description
8237 "This package implements general purpose tools, such as functions for
8238 sampling and basic manipulation of Brazilian lawsuits identification number.
8239 It also implements functions for text cleaning, such as accentuation
8240 removal.")
8241 (license license:expat)))
8242
8243 (define-public r-abnormality
8244 (package
8245 (name "r-abnormality")
8246 (version "0.1.0")
8247 (source
8248 (origin
8249 (method url-fetch)
8250 (uri (cran-uri "abnormality" version))
8251 (sha256
8252 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
8253 (build-system r-build-system)
8254 (propagated-inputs
8255 `(("r-mass" ,r-mass)
8256 ("r-matrix" ,r-matrix)))
8257 (home-page "https://cran.r-project.org/web/packages/abnormality/")
8258 (synopsis "Measure a subject's abnormality with respect to a reference population")
8259 (description
8260 "This package contains functions to implement the methodology and
8261 considerations laid out by Marks et al. in the article \"Measuring abnormality
8262 in high dimensional spaces: applications in biomechanical gait analysis\".
8263 Using high-dimensional datasets to measure a subject's overall level of
8264 abnormality as compared to a reference population is often needed in outcomes
8265 research.")
8266 (license license:expat)))
8267
8268 (define-public r-abodoutlier
8269 (package
8270 (name "r-abodoutlier")
8271 (version "0.1")
8272 (source
8273 (origin
8274 (method url-fetch)
8275 (uri (cran-uri "abodOutlier" version))
8276 (sha256
8277 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
8278 (properties `((upstream-name . "abodOutlier")))
8279 (build-system r-build-system)
8280 (propagated-inputs
8281 `(("r-cluster" ,r-cluster)))
8282 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
8283 (synopsis "Angle-based outlier detection")
8284 (description
8285 "This package performs angle-based outlier detection on a given data
8286 frame. It offers three methods to process data:
8287 @enumerate
8288 @item full but slow implementation using all the data that has cubic
8289 complexity;
8290 @item a fully randomized method;
8291 @item a method using k-nearest neighbours.
8292 @end enumerate
8293 These algorithms are well suited for high dimensional data outlier
8294 detection.")
8295 (license license:expat)))
8296
8297 (define-public r-abps
8298 (package
8299 (name "r-abps")
8300 (version "0.3")
8301 (source
8302 (origin
8303 (method url-fetch)
8304 (uri (cran-uri "ABPS" version))
8305 (sha256
8306 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
8307 (properties `((upstream-name . "ABPS")))
8308 (build-system r-build-system)
8309 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
8310 (home-page "https://cran.r-project.org/web/packages/ABPS/")
8311 (synopsis "Abnormal blood profile score to detect blood doping")
8312 (description
8313 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
8314 The ABPS is a part of the Athlete biological passport program of the World
8315 anti-doping agency, which combines several blood parameters into a single
8316 score in order to detect blood doping. The package also contains functions to
8317 calculate other scores used in anti-doping programs, such as the ratio of
8318 hemoglobin to reticulocytes (OFF-score), as well as example data.")
8319 (license license:gpl2+)))
8320
8321 (define-public r-parmigene
8322 (package
8323 (name "r-parmigene")
8324 (version "1.1.0")
8325 (source
8326 (origin
8327 (method url-fetch)
8328 (uri (cran-uri "parmigene" version))
8329 (sha256
8330 (base32
8331 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
8332 (build-system r-build-system)
8333 (home-page "https://cran.r-project.org/web/packages/parmigene/")
8334 (synopsis "Mutual information estimation for gene network reconstruction")
8335 (description
8336 "This package provides a parallel estimation of the mutual information
8337 based on entropy estimates from k-nearest neighbors distances and algorithms
8338 for the reconstruction of gene regulatory networks.")
8339 (license license:agpl3+)))
8340
8341 (define-public r-pscl
8342 (package
8343 (name "r-pscl")
8344 (version "1.5.5")
8345 (source
8346 (origin
8347 (method url-fetch)
8348 (uri (cran-uri "pscl" version))
8349 (sha256
8350 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
8351 (build-system r-build-system)
8352 (propagated-inputs
8353 `(("r-mass" ,r-mass)))
8354 (home-page "https://github.com/atahk/pscl/")
8355 (synopsis "Political science computational laboratory")
8356 (description
8357 "The @code{pscl} is an R package providing classes and methods for:
8358 @enumerate
8359 @item Bayesian analysis of roll call data (item-response models);
8360 @item elementary Bayesian statistics;
8361 @item maximum likelihood estimation of zero-inflated and hurdle models for count
8362 data;
8363 @item utility functions.
8364 @end enumerate")
8365 (license license:gpl2)))
8366
8367 (define-public r-accelmissing
8368 (package
8369 (name "r-accelmissing")
8370 (version "1.4")
8371 (source
8372 (origin
8373 (method url-fetch)
8374 (uri (cran-uri "accelmissing" version))
8375 (sha256
8376 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
8377 (build-system r-build-system)
8378 (propagated-inputs
8379 `(("r-mice" ,r-mice)
8380 ("r-pscl" ,r-pscl)))
8381 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
8382 (synopsis "Missing value imputation for accelerometer data")
8383 (description
8384 "This package provides a statistical method to impute the missing values in
8385 accelerometer data. The methodology includes both parametric and
8386 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
8387 model. It also provides multiple functions to preprocess the accelerometer data
8388 previous to the missing data imputation. These include detecting the wearing
8389 and the non-wearing time, selecting valid days and subjects, and creating plots.")
8390 (license license:gpl2+)))
8391
8392 (define-public r-mhsmm
8393 (package
8394 (name "r-mhsmm")
8395 (version "0.4.16")
8396 (source
8397 (origin
8398 (method url-fetch)
8399 (uri (cran-uri "mhsmm" version))
8400 (sha256
8401 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
8402 (build-system r-build-system)
8403 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8404 (home-page "https://github.com/jaredo/mhsmm/")
8405 (synopsis "Inference for hidden Markov and semi-Markov models")
8406 (description
8407 "The @code{r-mhsmm} package implements estimation and prediction methods for
8408 hidden Markov and semi-Markov models for multiple observation sequences. Such
8409 techniques are of interest when observed data is thought to be dependent on some
8410 unobserved (or hidden) state. Also, this package is suitable for equidistant
8411 time series data, with multivariate and/or missing data. Allows user defined
8412 emission distributions.")
8413 (license license:gpl2+)))
8414
8415 (define-public r-nleqslv
8416 (package
8417 (name "r-nleqslv")
8418 (version "3.3.2")
8419 (source
8420 (origin
8421 (method url-fetch)
8422 (uri (cran-uri "nleqslv" version))
8423 (sha256
8424 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
8425 (build-system r-build-system)
8426 (native-inputs `(("gfortran" ,gfortran)))
8427 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
8428 (synopsis "Solve systems of nonlinear equations")
8429 (description
8430 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
8431 Broyden or a Newton method with a choice of global strategies such as line
8432 search and trust region. There are options for using a numerical or user
8433 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
8434 singular or ill-conditioned Jacobian.")
8435 (license license:gpl2+)))
8436
8437 (define-public r-physicalactivity
8438 (package
8439 (name "r-physicalactivity")
8440 (version "0.2-2")
8441 (source
8442 (origin
8443 (method url-fetch)
8444 (uri (cran-uri "PhysicalActivity" version))
8445 (sha256
8446 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
8447 (properties
8448 `((upstream-name . "PhysicalActivity")))
8449 (build-system r-build-system)
8450 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
8451 (synopsis "Procesing accelerometer data for physical activity measurement")
8452 (description
8453 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
8454 for classification of monitor wear and nonwear time intervals in accelerometer
8455 data collected to assess physical activity. The package also contains functions
8456 for making plots of accelerometer data and obtaining the summary of various
8457 information including daily monitor wear time and the mean monitor wear time
8458 during valid days. The revised package version 0.2-1 improved the functions
8459 regarding speed, robustness and add better support for time zones and daylight
8460 saving. In addition, several functions were added:
8461 @enumerate
8462 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
8463 @item the @code{markPAI} can categorize physical activity intensity level based
8464 on user-defined cut-points of accelerometer counts.
8465 @end enumerate
8466 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
8467 @code{queryActigraph} functions.")
8468 (license license:gpl3+)))
8469
8470 (define-public r-acc
8471 (package
8472 (name "r-acc")
8473 (version "1.3.3")
8474 (source
8475 (origin
8476 (method url-fetch)
8477 (uri (cran-uri "acc" version))
8478 (sha256
8479 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
8480 (build-system r-build-system)
8481 (propagated-inputs
8482 `(("r-circlize" ,r-circlize)
8483 ("r-dbi" ,r-dbi)
8484 ("r-ggplot2" ,r-ggplot2)
8485 ("r-iterators" ,r-iterators)
8486 ("r-mhsmm" ,r-mhsmm)
8487 ("r-nleqslv" ,r-nleqslv)
8488 ("r-physicalactivity" ,r-physicalactivity)
8489 ("r-plyr" ,r-plyr)
8490 ("r-r-utils" ,r-r-utils)
8491 ("r-rcpp" ,r-rcpp)
8492 ("r-rcpparmadillo" ,r-rcpparmadillo)
8493 ("r-rsqlite" ,r-rsqlite)
8494 ("r-zoo" ,r-zoo)))
8495 (home-page "https://cran.r-project.org/web/packages/acc/")
8496 (synopsis "Exploring accelerometer data")
8497 (description
8498 "This package processes accelerometer data from uni-axial and tri-axial devices
8499 and generates data summaries. Also, includes functions to plot, analyze, and
8500 simulate accelerometer data.")
8501 (license license:gpl2+)))
8502
8503 (define-public r-rbenchmark
8504 (package
8505 (name "r-rbenchmark")
8506 (version "1.0.0")
8507 (source
8508 (origin
8509 (method url-fetch)
8510 (uri (cran-uri "rbenchmark" version))
8511 (sha256
8512 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
8513 (build-system r-build-system)
8514 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
8515 (synopsis "Benchmarking routine for R")
8516 (description
8517 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
8518 and is intended to facilitate benchmarking of arbitrary R code. The library
8519 consists of just one function, benchmark, which is a simple wrapper around
8520 system.time. Given a specification of the benchmarking process (counts of
8521 replications, evaluation environment) and an arbitrary number of expressions,
8522 benchmark evaluates each of the expressions in the specified environment,
8523 replicating the evaluation as many times as specified, and returning the results
8524 conveniently wrapped into a data frame.")
8525 (license license:gpl2+)))
8526
8527 (define-public r-mitools
8528 (package
8529 (name "r-mitools")
8530 (version "2.4")
8531 (source
8532 (origin
8533 (method url-fetch)
8534 (uri (cran-uri "mitools" version))
8535 (sha256
8536 (base32
8537 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
8538 (build-system r-build-system)
8539 (propagated-inputs `(("r-dbi" ,r-dbi)))
8540 (home-page "https://cran.r-project.org/web/packages/mitools/")
8541 (synopsis "Tools for multiple imputation of missing data")
8542 (description
8543 "This package provides tools to perform analyses and combine results from
8544 multiple-imputation datasets.")
8545 (license license:gpl2)))
8546
8547 (define-public r-magick
8548 (package
8549 (name "r-magick")
8550 (version "2.4.0")
8551 (source
8552 (origin
8553 (method url-fetch)
8554 (uri (cran-uri "magick" version))
8555 (sha256
8556 (base32
8557 "1y1p2blkg0h6061ay7mdwssxbswgrc25raffp6d8d9cqhdmsa72s"))))
8558 (build-system r-build-system)
8559 (inputs
8560 `(("imagemagick" ,imagemagick)
8561 ("zlib" ,zlib)))
8562 (propagated-inputs
8563 `(("r-curl" ,r-curl)
8564 ("r-magrittr" ,r-magrittr)
8565 ("r-rcpp" ,r-rcpp)))
8566 (native-inputs
8567 `(("pkg-config" ,pkg-config)
8568 ("r-knitr" ,r-knitr)))
8569 (home-page "https://github.com/ropensci/magick")
8570 (synopsis "Advanced graphics and image-processing in R")
8571 (description
8572 "This package provides bindings to ImageMagick, a comprehensive image
8573 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
8574 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
8575 operations are vectorized via the Magick++ STL meaning they operate either on
8576 a single frame or a series of frames for working with layers, collages, or
8577 animation. In RStudio, images are automatically previewed when printed to the
8578 console, resulting in an interactive editing environment.")
8579 (license license:expat)))
8580
8581 (define-public r-survey
8582 (package
8583 (name "r-survey")
8584 (version "4.0")
8585 (source
8586 (origin
8587 (method url-fetch)
8588 (uri (cran-uri "survey" version))
8589 (sha256
8590 (base32
8591 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
8592 (build-system r-build-system)
8593 (propagated-inputs
8594 `(("r-lattice" ,r-lattice)
8595 ("r-matrix" ,r-matrix)
8596 ("r-minqa" ,r-minqa)
8597 ("r-mitools" ,r-mitools)
8598 ("r-numderiv" ,r-numderiv)
8599 ("r-survival" ,r-survival)))
8600 (home-page "http://r-survey.r-forge.r-project.org/survey/")
8601 (synopsis "Analysis of complex survey samples")
8602 (description
8603 "This package provides tools for the analysis of complex survey samples.
8604 The provided features include: summary statistics, two-sample tests, rank
8605 tests, generalised linear models, cumulative link models, Cox models,
8606 loglinear models, and general maximum pseudolikelihood estimation for
8607 multistage stratified, cluster-sampled, unequally weighted survey samples;
8608 variances by Taylor series linearisation or replicate weights;
8609 post-stratification, calibration, and raking; two-phase subsampling designs;
8610 graphics; PPS sampling without replacement; principal components, and factor
8611 analysis.")
8612 ;; Either version of the GPL.
8613 (license (list license:gpl2 license:gpl3))))
8614
8615 (define-public r-gee
8616 (package
8617 (name "r-gee")
8618 (version "4.13-20")
8619 (source
8620 (origin
8621 (method url-fetch)
8622 (uri (cran-uri "gee" version))
8623 (sha256
8624 (base32
8625 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
8626 (properties `((upstream-name . "gee")))
8627 (build-system r-build-system)
8628 (native-inputs
8629 `(("gfortran" ,gfortran)))
8630 (home-page "https://cran.r-project.org/web/packages/gee/")
8631 (synopsis "Generalized estimation equation solver")
8632 (description
8633 "This package provides a solver for generalized estimation equations.")
8634 (license license:gpl2)))
8635
8636 (define-public r-tab
8637 (package
8638 (name "r-tab")
8639 (version "4.1.1")
8640 (source
8641 (origin
8642 (method url-fetch)
8643 (uri (cran-uri "tab" version))
8644 (sha256
8645 (base32
8646 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
8647 (properties `((upstream-name . "tab")))
8648 (build-system r-build-system)
8649 (propagated-inputs
8650 `(("r-dplyr" ,r-dplyr)
8651 ("r-gee" ,r-gee)
8652 ("r-knitr" ,r-knitr)
8653 ("r-mass" ,r-mass)
8654 ("r-survey" ,r-survey)
8655 ("r-survival" ,r-survival)
8656 ("r-xtable" ,r-xtable)))
8657 (home-page "https://cran.r-project.org/web/packages/tab/")
8658 (synopsis "Create summary tables for statistical reports")
8659 (description
8660 "This package contains functions for creating various types of summary
8661 tables, e.g. comparing characteristics across levels of a categorical variable
8662 and summarizing fitted generalized linear models, generalized estimating
8663 equations, and Cox proportional hazards models. Functions are available to
8664 handle data from simple random samples as well as complex surveys.")
8665 (license license:gpl3+)))
8666
8667 (define-public r-dvmisc
8668 (package
8669 (name "r-dvmisc")
8670 (version "1.1.4")
8671 (source
8672 (origin
8673 (method url-fetch)
8674 (uri (cran-uri "dvmisc" version))
8675 (sha256
8676 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
8677 (build-system r-build-system)
8678 (propagated-inputs
8679 `(("r-cubature" ,r-cubature)
8680 ("r-data-table" ,r-data-table)
8681 ("r-dplyr" ,r-dplyr)
8682 ("r-ggplot2" ,r-ggplot2)
8683 ("r-mass" ,r-mass)
8684 ("r-mvtnorm" ,r-mvtnorm)
8685 ("r-pracma" ,r-pracma)
8686 ("r-rbenchmark" ,r-rbenchmark)
8687 ("r-rcpp" ,r-rcpp)
8688 ("r-survey" ,r-survey)
8689 ("r-tab" ,r-tab)))
8690 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
8691 (synopsis "Faster computation of common statistics and miscellaneous functions")
8692 (description
8693 "This package implements faster versions of base R functions (e.g. mean, standard
8694 deviation, covariance, weighted mean), mostly written in C++, along with
8695 miscellaneous functions for various purposes (e.g. create the histogram with
8696 fitted probability density function or probability mass function curve, create
8697 the body mass index groups, assess the linearity assumption in logistic
8698 regression).")
8699 (license license:gpl2)))
8700
8701 (define-public r-accelerometry
8702 (package
8703 (name "r-accelerometry")
8704 (version "3.1.2")
8705 (source
8706 (origin
8707 (method url-fetch)
8708 (uri (cran-uri "accelerometry" version))
8709 (sha256
8710 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
8711 (build-system r-build-system)
8712 (propagated-inputs
8713 `(("r-dvmisc" ,r-dvmisc)
8714 ("r-rcpp" ,r-rcpp)))
8715 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
8716 (synopsis "Functions for processing accelerometer data")
8717 (description
8718 "This package provides a collection of functions that perform operations on
8719 time-series accelerometer data, such as identify the non-wear time, flag minutes
8720 that are part of an activity bout, and find the maximum 10-minute average count
8721 value. The functions are generally very flexible, allowing for a variety of
8722 algorithms to be implemented.")
8723 (license license:gpl3)))
8724
8725 (define-public r-absim
8726 (package
8727 (name "r-absim")
8728 (version "0.2.6")
8729 (source
8730 (origin
8731 (method url-fetch)
8732 (uri (cran-uri "AbSim" version))
8733 (sha256
8734 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
8735 (properties `((upstream-name . "AbSim")))
8736 (build-system r-build-system)
8737 (propagated-inputs
8738 `(("r-ape" ,r-ape)
8739 ("r-powerlaw" ,r-powerlaw)))
8740 (home-page "https://cran.r-project.org/web/packages/AbSim/")
8741 (synopsis "Time resolved simulations of antibody repertoires")
8742 (description
8743 "This package provides simulation methods for the evolution of antibody repertoires.
8744 The heavy and light chain variable region of both human and C57BL/6 mice can
8745 be simulated in a time-dependent fashion. Both single lineages using one set of
8746 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
8747 with an initial V-D-J recombination event, starting the first phylogenetic tree.
8748 Upon completion, the main loop of the algorithm begins, with each iteration
8749 representing one simulated time step. Various mutation events are possible at
8750 each time step, contributing to a diverse final repertoire.")
8751 (license license:gpl2)))
8752
8753 (define-public r-quic
8754 (package
8755 (name "r-quic")
8756 (version "1.1")
8757 (source
8758 (origin
8759 (method url-fetch)
8760 (uri (cran-uri "QUIC" version))
8761 (sha256
8762 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
8763 (properties `((upstream-name . "QUIC")))
8764 (build-system r-build-system)
8765 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
8766 (synopsis "Regularized sparse inverse covariance matrix estimation")
8767 (description
8768 "This package implements the regularized Gaussian maximum likelihood
8769 estimation of the inverse of a covariance matrix. It uses Newton's method and
8770 coordinate descent to solve the regularized inverse covariance matrix
8771 estimation problem.")
8772 ;; The project home page states that the release is under GPLv3 or later.
8773 ;; The CRAN page only says GPL-3.
8774 (license license:gpl3+)))
8775
8776 (define-public r-abundant
8777 (package
8778 (name "r-abundant")
8779 (version "1.1")
8780 (source
8781 (origin
8782 (method url-fetch)
8783 (uri (cran-uri "abundant" version))
8784 (sha256
8785 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
8786 (build-system r-build-system)
8787 (propagated-inputs
8788 `(("r-quic" ,r-quic)))
8789 (home-page "https://cran.r-project.org/web/packages/abundant/")
8790 (synopsis "Abundant regression and high-dimensional principal fitted components")
8791 (description
8792 "This package provides tools to fit and predict with the high-dimensional
8793 principal fitted components model. This model is described by Cook, Forzani,
8794 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
8795 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
8796 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
8797 (license license:gpl2+)))
8798
8799 (define-public r-ac3net
8800 (package
8801 (name "r-ac3net")
8802 (version "1.2.2")
8803 (source
8804 (origin
8805 (method url-fetch)
8806 (uri (cran-uri "Ac3net" version))
8807 (sha256
8808 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
8809 (properties `((upstream-name . "Ac3net")))
8810 (build-system r-build-system)
8811 (propagated-inputs
8812 `(("r-data-table" ,r-data-table)))
8813 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
8814 (synopsis "Inferring directional conservative causal core gene networks")
8815 (description "This package infers directional Conservative causal core
8816 (gene) networks (C3NET). This is a version of the algorithm C3NET with
8817 directional network.")
8818 (license license:gpl3+)))
8819
8820 (define-public r-aca
8821 (package
8822 (name "r-aca")
8823 (version "1.1")
8824 (source
8825 (origin
8826 (method url-fetch)
8827 (uri (cran-uri "ACA" version))
8828 (sha256
8829 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
8830 (properties `((upstream-name . "ACA")))
8831 (build-system r-build-system)
8832 (home-page "https://cran.r-project.org/web/packages/ACA/")
8833 (synopsis "Abrupt change-point or aberration detection in point series")
8834 (description
8835 "This package offers an interactive function for the detection of breakpoints in
8836 series.")
8837 ;; Any version of the GPL
8838 (license (list license:gpl2+ license:gpl3+))))
8839
8840 (define-public r-acceptancesampling
8841 (package
8842 (name "r-acceptancesampling")
8843 (version "1.0-6")
8844 (source
8845 (origin
8846 (method url-fetch)
8847 (uri (cran-uri "AcceptanceSampling" version))
8848 (sha256
8849 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
8850 (properties
8851 `((upstream-name . "AcceptanceSampling")))
8852 (build-system r-build-system)
8853 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
8854 (synopsis "Creation and evaluation of acceptance sampling plans")
8855 (description
8856 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
8857 acceptance sampling plans. Acceptance sampling is a methodology commonly used
8858 in quality control and improvement. International standards of acceptance
8859 sampling provide sampling plans for specific circumstances. The aim of this
8860 package is to provide an easy-to-use interface to visualize single, double or
8861 multiple sampling plans. In addition, methods have been provided to enable the
8862 user to assess sampling plans against pre-specified levels of performance, as
8863 measured by the probability of acceptance for a given level of quality in the
8864 lot.")
8865 (license license:gpl3+)))
8866
8867 (define-public r-acclma
8868 (package
8869 (name "r-acclma")
8870 (version "1.0")
8871 (source
8872 (origin
8873 (method url-fetch)
8874 (uri (cran-uri "ACCLMA" version))
8875 (sha256
8876 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
8877 (properties `((upstream-name . "ACCLMA")))
8878 (build-system r-build-system)
8879 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
8880 (synopsis "ACC & LMA graph plotting")
8881 (description
8882 "This package contains a function that imports data from a @acronym{CSV,
8883 Comma-Separated Values} file, or uses manually entered data from the format (x,
8884 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
8885 Curve} vs @acronym{LOI, Line of Independence} graph and
8886 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
8887 function is @code{plotLMA} (source file, header) that takes a data set and plots the
8888 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
8889 string) was passed, a manual data entry window is opened. The header parameter
8890 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
8891 a header row or not. The dataset should contain only one independent variable
8892 (x) and one dependent variable (y) and can contain a weight for each
8893 observation.")
8894 (license license:gpl2)))
8895
8896 (define-public r-aspi
8897 (package
8898 (name "r-aspi")
8899 (version "0.2.0")
8900 (source
8901 (origin
8902 (method url-fetch)
8903 (uri (cran-uri "aspi" version))
8904 (sha256
8905 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
8906 (build-system r-build-system)
8907 (home-page
8908 "https://cran.r-project.org/web/packages/aspi/")
8909 (synopsis
8910 "Analysis of symmetry of parasitic infections")
8911 (description
8912 "This package provides tools for the analysis and visualization of bilateral
8913 asymmetry in parasitic infections.")
8914 (license license:gpl3+)))
8915
8916 (define-public r-sandwich
8917 (package
8918 (name "r-sandwich")
8919 (version "2.5-1")
8920 (source
8921 (origin
8922 (method url-fetch)
8923 (uri (cran-uri "sandwich" version))
8924 (sha256
8925 (base32
8926 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8927 (build-system r-build-system)
8928 (propagated-inputs
8929 `(("r-zoo" ,r-zoo)))
8930 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8931 (synopsis "Robust Covariance Matrix Estimators")
8932 (description
8933 "This package provides model-robust standard error estimators for
8934 cross-sectional, time series, clustered, panel, and longitudinal data.")
8935 ;; Either version of the license.
8936 (license (list license:gpl2 license:gpl3))))
8937
8938 (define-public r-th-data
8939 (package
8940 (name "r-th-data")
8941 (version "1.0-10")
8942 (source
8943 (origin
8944 (method url-fetch)
8945 (uri (cran-uri "TH.data" version))
8946 (sha256
8947 (base32
8948 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8949 (properties `((upstream-name . "TH.data")))
8950 (build-system r-build-system)
8951 (propagated-inputs
8952 `(("r-mass" ,r-mass)
8953 ("r-survival" ,r-survival)))
8954 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8955 (synopsis "Shared data sets")
8956 (description
8957 "This package contains supporting data sets that are used in other
8958 packages maintained by Torsten Hothorn.")
8959 (license license:gpl3)))
8960
8961 (define-public r-multcomp
8962 (package
8963 (name "r-multcomp")
8964 (version "1.4-13")
8965 (source
8966 (origin
8967 (method url-fetch)
8968 (uri (cran-uri "multcomp" version))
8969 (sha256
8970 (base32
8971 "1nszi22rcc551yc75h9cdfkdqsxw1rz30vadazmpyzihp1bh63yk"))))
8972 (build-system r-build-system)
8973 (propagated-inputs
8974 `(("r-codetools" ,r-codetools)
8975 ("r-mvtnorm" ,r-mvtnorm)
8976 ("r-sandwich" ,r-sandwich)
8977 ("r-survival" ,r-survival)
8978 ("r-th-data" ,r-th-data)))
8979 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8980 (synopsis "Simultaneous inference in general parametric models")
8981 (description
8982 "Simultaneous tests and confidence intervals for general linear
8983 hypotheses in parametric models, including linear, generalized linear, linear
8984 mixed effects, and survival models. The package includes demos reproducing
8985 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8986 Hothorn, Westfall, 2010, CRC Press).")
8987 (license license:gpl2)))
8988
8989 (define-public r-emmeans
8990 (package
8991 (name "r-emmeans")
8992 (version "1.5.0")
8993 (source
8994 (origin
8995 (method url-fetch)
8996 (uri (cran-uri "emmeans" version))
8997 (sha256
8998 (base32
8999 "09nap4aazpbsswqzk0d4kjngwd8sib222s31yd08sd1sqw432c6k"))))
9000 (build-system r-build-system)
9001 (propagated-inputs
9002 `(("r-estimability" ,r-estimability)
9003 ("r-mvtnorm" ,r-mvtnorm)
9004 ("r-numderiv" ,r-numderiv)
9005 ("r-plyr" ,r-plyr)
9006 ("r-xtable" ,r-xtable)))
9007 (native-inputs
9008 `(("r-knitr" ,r-knitr)))
9009 (home-page "https://github.com/rvlenth/emmeans")
9010 (synopsis "Estimated marginal means, aka least-squares means")
9011 (description
9012 "This package provides tools to obtain @dfn{estimated marginal
9013 means} (EMMs) for many linear, generalized linear, and mixed models. It can
9014 be used to compute contrasts or linear functions of EMMs, trends, and
9015 comparisons of slopes.")
9016 ;; Either version of the license.
9017 (license (list license:gpl2 license:gpl3))))
9018
9019 (define-public r-pwr
9020 (package
9021 (name "r-pwr")
9022 (version "1.3-0")
9023 (source
9024 (origin
9025 (method url-fetch)
9026 (uri (cran-uri "pwr" version))
9027 (sha256
9028 (base32
9029 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
9030 (build-system r-build-system)
9031 (native-inputs
9032 `(("r-knitr" ,r-knitr)))
9033 (home-page "https://github.com/heliosdrm/pwr")
9034 (synopsis "Basic functions for power analysis")
9035 (description
9036 "This package provides power analysis functions along the lines of
9037 Cohen (1988).")
9038 (license license:gpl3+)))
9039
9040 (define-public r-libcoin
9041 (package
9042 (name "r-libcoin")
9043 (version "1.0-6")
9044 (source
9045 (origin
9046 (method url-fetch)
9047 (uri (cran-uri "libcoin" version))
9048 (sha256
9049 (base32 "0njfdbz4mkyasxm80p0fb0qibvzz7kdzddn8ybj2k6y8bx0w3bs8"))))
9050 (build-system r-build-system)
9051 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
9052 (home-page "https://cran.r-project.org/web/packages/libcoin")
9053 (synopsis "Linear test statistics for permutation inference")
9054 (description
9055 "This package provides basic infrastructure for linear test statistics
9056 and permutation inference in the framework of Strasser and Weber (1999).")
9057 (license license:gpl2)))
9058
9059 (define-public r-coin
9060 (package
9061 (name "r-coin")
9062 (version "1.3-1")
9063 (source
9064 (origin
9065 (method url-fetch)
9066 (uri (cran-uri "coin" version))
9067 (sha256
9068 (base32
9069 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
9070 (build-system r-build-system)
9071 (propagated-inputs
9072 `(("r-libcoin" ,r-libcoin)
9073 ("r-matrixstats" ,r-matrixstats)
9074 ("r-modeltools" ,r-modeltools)
9075 ("r-multcomp" ,r-multcomp)
9076 ("r-mvtnorm" ,r-mvtnorm)
9077 ("r-survival" ,r-survival)))
9078 (home-page "http://coin.r-forge.r-project.org")
9079 (synopsis "Conditional inference procedures in a permutation test framework")
9080 (description
9081 "This package provides conditional inference procedures for the general
9082 independence problem including two-sample, K-sample (non-parametric ANOVA),
9083 correlation, censored, ordered and multivariate problems.")
9084 (license license:gpl2)))
9085
9086 (define-public r-bayesplot
9087 (package
9088 (name "r-bayesplot")
9089 (version "1.7.2")
9090 (source
9091 (origin
9092 (method url-fetch)
9093 (uri (cran-uri "bayesplot" version))
9094 (sha256
9095 (base32
9096 "0aqy4bfjq1fmds0vpacsmqih528cp8wk4v4w0balzkph6zqzpwcl"))))
9097 (build-system r-build-system)
9098 (inputs
9099 `(("pandoc" ,pandoc)
9100 ("pandoc-citeproc" ,pandoc-citeproc)))
9101 (native-inputs
9102 `(("r-knitr" ,r-knitr)))
9103 (propagated-inputs
9104 `(("r-dplyr" ,r-dplyr)
9105 ("r-ggplot2" ,r-ggplot2)
9106 ("r-ggridges" ,r-ggridges)
9107 ("r-glue" ,r-glue)
9108 ("r-reshape2" ,r-reshape2)
9109 ("r-rlang" ,r-rlang)
9110 ("r-tibble" ,r-tibble)
9111 ("r-tidyselect" ,r-tidyselect)))
9112 (home-page "https://mc-stan.org/bayesplot")
9113 (synopsis "Plotting for Bayesian models")
9114 (description
9115 "This package provides plotting functions for posterior analysis, model
9116 checking, and MCMC diagnostics. The package is designed not only to provide
9117 convenient functionality for users, but also a common set of functions that
9118 can be easily used by developers working on a variety of R packages for
9119 Bayesian modeling.")
9120 (license license:gpl3+)))
9121
9122 (define-public r-tmb
9123 (package
9124 (name "r-tmb")
9125 (version "1.7.18")
9126 (source
9127 (origin
9128 (method url-fetch)
9129 (uri (cran-uri "TMB" version))
9130 (sha256
9131 (base32
9132 "0dbps92sni9rnynj31z9zhg6l0vbczxhzlw7gnhpxjlzfnsglp3y"))))
9133 (properties `((upstream-name . "TMB")))
9134 (build-system r-build-system)
9135 (propagated-inputs
9136 `(("r-matrix" ,r-matrix)
9137 ("r-rcppeigen" ,r-rcppeigen)))
9138 (home-page "http://tmb-project.org")
9139 (synopsis "Template model builder: a general random effect tool")
9140 (description
9141 "With this tool, a user should be able to quickly implement complex
9142 random effect models through simple C++ templates. The package combines
9143 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
9144 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
9145 from R) to obtain an efficient implementation of the applied Laplace
9146 approximation with exact derivatives. Key features are: Automatic sparseness
9147 detection, parallelism through BLAS and parallel user templates.")
9148 (license license:gpl2)))
9149
9150 (define-public r-sjstats
9151 (package
9152 (name "r-sjstats")
9153 (version "0.18.0")
9154 (source
9155 (origin
9156 (method url-fetch)
9157 (uri (cran-uri "sjstats" version))
9158 (sha256
9159 (base32 "17b1fcrhgjw66qa8zk2jj1bvz3vp5bnjn3p4y1wsg5ng5nxq8jz0"))))
9160 (build-system r-build-system)
9161 (propagated-inputs
9162 `(("r-bayestestr" ,r-bayestestr)
9163 ("r-broom" ,r-broom)
9164 ("r-dplyr" ,r-dplyr)
9165 ("r-effectsize" ,r-effectsize)
9166 ("r-emmeans" ,r-emmeans)
9167 ("r-insight" ,r-insight)
9168 ("r-lme4" ,r-lme4)
9169 ("r-magrittr" ,r-magrittr)
9170 ("r-mass" ,r-mass)
9171 ("r-modelr" ,r-modelr)
9172 ("r-parameters" ,r-parameters)
9173 ("r-performance" ,r-performance)
9174 ("r-purrr" ,r-purrr)
9175 ("r-rlang" ,r-rlang)
9176 ("r-sjlabelled" ,r-sjlabelled)
9177 ("r-sjmisc" ,r-sjmisc)
9178 ("r-tidyr" ,r-tidyr)))
9179 (home-page "https://github.com/strengejacke/sjstats")
9180 (synopsis "Functions for common statistical computations")
9181 (description
9182 "This package provides a collection of convenient functions for common
9183 statistical computations, which are not directly provided by R's @code{base}
9184 or @code{stats} packages. This package aims at providing, first, shortcuts
9185 for statistical measures, which otherwise could only be calculated with
9186 additional effort. Second, these shortcut functions are generic, and can be
9187 applied not only to vectors, but also to other objects as well. The focus of
9188 most functions lies on summary statistics or fit measures for regression
9189 models, including generalized linear models, mixed effects models and Bayesian
9190 models.")
9191 (license license:gpl3)))
9192
9193 (define-public r-glmmtmb
9194 (package
9195 (name "r-glmmtmb")
9196 (version "1.0.2.1")
9197 (source
9198 (origin
9199 (method url-fetch)
9200 (uri (cran-uri "glmmTMB" version))
9201 (sha256
9202 (base32
9203 "1a35hxcxz1cdm3zd5s7fyjaw2qs00hkacgr7h9130amygc1262ab"))))
9204 (properties `((upstream-name . "glmmTMB")))
9205 (build-system r-build-system)
9206 (propagated-inputs
9207 `(("r-lme4" ,r-lme4)
9208 ("r-matrix" ,r-matrix)
9209 ("r-nlme" ,r-nlme)
9210 ("r-rcppeigen" ,r-rcppeigen)
9211 ("r-tmb" ,r-tmb)))
9212 (native-inputs
9213 `(("r-knitr" ,r-knitr))) ; for vignettes
9214 (home-page "https://github.com/glmmTMB")
9215 (synopsis "Generalized linear mixed models")
9216 (description
9217 "Fit linear and generalized linear mixed models with various extensions,
9218 including zero-inflation. The models are fitted using maximum likelihood
9219 estimation via the Template Model Builder. Random effects are assumed to be
9220 Gaussian on the scale of the linear predictor and are integrated out using the
9221 Laplace approximation. Gradients are calculated using automatic
9222 differentiation.")
9223 (license license:agpl3+)))
9224
9225 (define-public r-bayestestr
9226 (package
9227 (name "r-bayestestr")
9228 (version "0.7.2")
9229 (source
9230 (origin
9231 (method url-fetch)
9232 (uri (cran-uri "bayestestR" version))
9233 (sha256
9234 (base32
9235 "1c82bpxg2ha93rna4sy9pdp422dnk6b378dcg8x04clfg0y0lsi2"))))
9236 (properties `((upstream-name . "bayestestR")))
9237 (build-system r-build-system)
9238 (propagated-inputs
9239 `(("r-insight" ,r-insight)))
9240 (native-inputs
9241 `(("r-knitr" ,r-knitr)))
9242 (home-page "https://github.com/easystats/bayestestR")
9243 (synopsis "Describe Bayesian models and posterior distributions")
9244 (description
9245 "This package provides utilities to understand and describe posterior
9246 distributions and Bayesian models. It includes point-estimates such as
9247 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
9248 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
9249 ROPE percentage and pd).")
9250 (license license:gpl3)))
9251
9252 (define-public r-performance
9253 (package
9254 (name "r-performance")
9255 (version "0.4.8")
9256 (source
9257 (origin
9258 (method url-fetch)
9259 (uri (cran-uri "performance" version))
9260 (sha256
9261 (base32
9262 "1gl3m1pw0wrj9m9cgd0vzbj9swfwjg4aa40gpliplb9y7dcmgi4l"))))
9263 (build-system r-build-system)
9264 (propagated-inputs
9265 `(("r-bayestestr" ,r-bayestestr)
9266 ("r-insight" ,r-insight)))
9267 (home-page "https://easystats.github.io/performance/")
9268 (synopsis "Assessment of regression models performance")
9269 (description
9270 "This package provides utilities for computing measures to assess model
9271 quality, which are not directly provided by R's @code{base} or @code{stats}
9272 packages. These include e.g. measures like r-squared, intraclass correlation
9273 coefficient, root mean squared error or functions to check models for
9274 overdispersion, singularity or zero-inflation and more. Functions apply to a
9275 large variety of regression models, including generalized linear models, mixed
9276 effects models and Bayesian models.")
9277 (license license:gpl3)))
9278
9279 (define-public r-ggeffects
9280 (package
9281 (name "r-ggeffects")
9282 (version "0.15.1")
9283 (source
9284 (origin
9285 (method url-fetch)
9286 (uri (cran-uri "ggeffects" version))
9287 (sha256
9288 (base32
9289 "12z58casz0yl1w7nfs64bz4miz0mmc300ap3rz4d2cc4z0rg0r47"))))
9290 (build-system r-build-system)
9291 (propagated-inputs
9292 `(("r-insight" ,r-insight)
9293 ("r-mass" ,r-mass)
9294 ("r-sjlabelled" ,r-sjlabelled)))
9295 (native-inputs
9296 `(("r-knitr" ,r-knitr)))
9297 (home-page "https://github.com/strengejacke/ggeffects")
9298 (synopsis "Create tidy data frames of marginal effects for ggplot")
9299 (description
9300 "This package provides tools to compute marginal effects from statistical
9301 models and return the result as tidy data frames. These data frames are ready
9302 to use with the @code{ggplot2} package. Marginal effects can be calculated
9303 for many different models. Interaction terms, splines and polynomial terms
9304 are also supported. The two main functions are @code{ggpredict()} and
9305 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
9306 results using @code{ggplot2}.")
9307 (license license:gpl3)))
9308
9309 (define-public r-effectsize
9310 (package
9311 (name "r-effectsize")
9312 (version "0.3.2")
9313 (source
9314 (origin
9315 (method url-fetch)
9316 (uri (cran-uri "effectsize" version))
9317 (sha256
9318 (base32
9319 "0h9f260gb8707pcssf8dq7dakpq1ggkxr5kpbrbl8sn8h3qbvws9"))))
9320 (properties `((upstream-name . "effectsize")))
9321 (build-system r-build-system)
9322 (propagated-inputs
9323 `(("r-bayestestr" ,r-bayestestr)
9324 ("r-insight" ,r-insight)
9325 ("r-parameters" ,r-parameters)))
9326 (native-inputs
9327 `(("r-knitr" ,r-knitr)))
9328 (home-page "https://github.com/easystats/effectsize")
9329 (synopsis "Indices of effect size and standardized parameters")
9330 (description
9331 "This package provides utilities to work with indices of effect size and
9332 standardized parameters for a wide variety of models, allowing computation and
9333 conversion of indices such as Cohen's d, r, odds, etc.")
9334 (license license:gpl3)))
9335
9336 (define-public r-sjplot
9337 (package
9338 (name "r-sjplot")
9339 (version "2.8.4")
9340 (source
9341 (origin
9342 (method url-fetch)
9343 (uri (cran-uri "sjPlot" version))
9344 (sha256
9345 (base32 "0b7k0mshkk8k26w11xbxkb5v0klhq279zn2xdz83cn8k791xkqyd"))))
9346 (properties `((upstream-name . "sjPlot")))
9347 (build-system r-build-system)
9348 (propagated-inputs
9349 `(("r-bayestestr" ,r-bayestestr)
9350 ("r-dplyr" ,r-dplyr)
9351 ("r-effectsize" ,r-effectsize)
9352 ("r-ggeffects" ,r-ggeffects)
9353 ("r-ggplot2" ,r-ggplot2)
9354 ("r-insight" ,r-insight)
9355 ("r-knitr" ,r-knitr)
9356 ("r-mass" ,r-mass)
9357 ("r-parameters" ,r-parameters)
9358 ("r-performance" ,r-performance)
9359 ("r-purrr" ,r-purrr)
9360 ("r-rlang" ,r-rlang)
9361 ("r-scales" ,r-scales)
9362 ("r-sjlabelled" ,r-sjlabelled)
9363 ("r-sjmisc" ,r-sjmisc)
9364 ("r-sjstats" ,r-sjstats)
9365 ("r-tidyr" ,r-tidyr)))
9366 (native-inputs
9367 `(("r-knitr" ,r-knitr)))
9368 (home-page "https://strengejacke.github.io/sjPlot/")
9369 (synopsis "Data visualization for statistics in social science")
9370 (description
9371 "This package represents a collection of plotting and table output
9372 functions for data visualization. Results of various statistical
9373 analyses (that are commonly used in social sciences) can be visualized using
9374 this package, including simple and cross tabulated frequencies, histograms,
9375 box plots, (generalized) linear models, mixed effects models, principal
9376 component analysis and correlation matrices, cluster analyses, scatter plots,
9377 stacked scales, effects plots of regression models (including interaction
9378 terms) and much more. This package supports labelled data.")
9379 (license license:gpl3)))
9380
9381 (define-public r-ini
9382 (package
9383 (name "r-ini")
9384 (version "0.3.1")
9385 (source
9386 (origin
9387 (method url-fetch)
9388 (uri (cran-uri "ini" version))
9389 (sha256
9390 (base32
9391 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
9392 (build-system r-build-system)
9393 (home-page "https://github.com/dvdscripter/ini")
9394 (synopsis "Read and write configuration files")
9395 (description
9396 "This package provides tools to parse simple @code{.ini} configuration
9397 files to an structured list. Users can manipulate this resulting list with
9398 @code{lapply()} functions. This same structured list can be used to write
9399 back to file after modifications.")
9400 (license license:gpl3)))
9401
9402 (define-public r-gh
9403 (package
9404 (name "r-gh")
9405 (version "1.1.0")
9406 (source
9407 (origin
9408 (method url-fetch)
9409 (uri (cran-uri "gh" version))
9410 (sha256
9411 (base32
9412 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
9413 (build-system r-build-system)
9414 (propagated-inputs
9415 `(("r-cli" ,r-cli)
9416 ("r-httr" ,r-httr)
9417 ("r-ini" ,r-ini)
9418 ("r-jsonlite" ,r-jsonlite)))
9419 (home-page "https://github.com/r-lib/gh#readme")
9420 (synopsis "Access the GitHub API via R")
9421 (description
9422 "This package provides a minimal R client to access the GitHub API.")
9423 (license license:expat)))
9424
9425 (define-public r-fs
9426 (package
9427 (name "r-fs")
9428 (version "1.5.0")
9429 (source
9430 (origin
9431 (method url-fetch)
9432 (uri (cran-uri "fs" version))
9433 (sha256
9434 (base32
9435 "15rqc3ljmcmgfvadj1j1kq7kvibagxic8sgplhlcdqqxax9idprn"))))
9436 (build-system r-build-system)
9437 (native-inputs
9438 `(("r-knitr" ,r-knitr)))
9439 (home-page "https://fs.r-lib.org")
9440 (synopsis "Cross-platform file system operations based on libuv")
9441 (description
9442 "This package provides a cross-platform interface to file system
9443 operations, built on top of the libuv C library.")
9444 (license license:gpl3)))
9445
9446 (define-public r-clisymbols
9447 (package
9448 (name "r-clisymbols")
9449 (version "1.2.0")
9450 (source
9451 (origin
9452 (method url-fetch)
9453 (uri (cran-uri "clisymbols" version))
9454 (sha256
9455 (base32
9456 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
9457 (build-system r-build-system)
9458 (home-page "https://github.com/gaborcsardi/clisymbols")
9459 (synopsis "Unicode symbols at the R prompt")
9460 (description
9461 "This package provides a small subset of Unicode symbols, that are useful
9462 when building command line applications. They fall back to alternatives on
9463 terminals that do not support Unicode.")
9464 (license license:expat)))
9465
9466 (define-public r-usethis
9467 (package
9468 (name "r-usethis")
9469 (version "1.6.1")
9470 (source
9471 (origin
9472 (method url-fetch)
9473 (uri (cran-uri "usethis" version))
9474 (sha256
9475 (base32
9476 "0vwxsnq615mwc706a4a71gyy0hmvnllbh249gzm7vl3ym5cr0cv0"))))
9477 (build-system r-build-system)
9478 (propagated-inputs
9479 `(("r-cli" ,r-cli)
9480 ("r-clipr" ,r-clipr)
9481 ("r-crayon" ,r-crayon)
9482 ("r-curl" ,r-curl)
9483 ("r-desc" ,r-desc)
9484 ("r-fs" ,r-fs)
9485 ("r-gh" ,r-gh)
9486 ("r-git2r" ,r-git2r)
9487 ("r-glue" ,r-glue)
9488 ("r-purrr" ,r-purrr)
9489 ("r-rematch2" ,r-rematch2)
9490 ("r-rlang" ,r-rlang)
9491 ("r-rprojroot" ,r-rprojroot)
9492 ("r-rstudioapi" ,r-rstudioapi)
9493 ("r-whisker" ,r-whisker)
9494 ("r-withr" ,r-withr)
9495 ("r-yaml" ,r-yaml)))
9496 (home-page "https://github.com/r-lib/usethis")
9497 (synopsis "Automate R package and project setup")
9498 (description
9499 "This package helps you to automate R package and project setup tasks
9500 that are otherwise performed manually. This includes setting up unit testing,
9501 test coverage, continuous integration, Git, GitHub integration, licenses,
9502 Rcpp, RStudio projects, and more.")
9503 (license license:gpl3)))
9504
9505 (define-public r-sessioninfo
9506 (package
9507 (name "r-sessioninfo")
9508 (version "1.1.1")
9509 (source
9510 (origin
9511 (method url-fetch)
9512 (uri (cran-uri "sessioninfo" version))
9513 (sha256
9514 (base32
9515 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
9516 (build-system r-build-system)
9517 (propagated-inputs
9518 `(("r-cli" ,r-cli)
9519 ("r-withr" ,r-withr)))
9520 (home-page "https://github.com/r-lib/sessioninfo#readme")
9521 (synopsis "R session information")
9522 (description
9523 "This package provides tools to query and print information about the
9524 current R session. It is similar to @code{utils::sessionInfo()}, but includes
9525 more information about packages, and where they were installed from.")
9526 (license license:gpl2)))
9527
9528 (define-public r-remotes
9529 (package
9530 (name "r-remotes")
9531 (version "2.2.0")
9532 (source
9533 (origin
9534 (method url-fetch)
9535 (uri (cran-uri "remotes" version))
9536 (sha256
9537 (base32
9538 "1f1kdw9j1wald3fs8b3n68x1kljy07j60g3aw1aarx26ikyk9whj"))))
9539 (build-system r-build-system)
9540 (native-inputs
9541 `(("r-knitr" ,r-knitr)))
9542 (home-page "https://github.com/r-lib/remotes#readme")
9543 (synopsis "R package installation from remote repositories")
9544 (description
9545 "Download and install R packages stored in GitHub, BitBucket, or plain
9546 subversion or git repositories. This package is a lightweight replacement of
9547 the @code{install_*} functions in the @code{devtools} package. Indeed most of
9548 the code was copied over from @code{devtools}.")
9549 (license license:gpl2+)))
9550
9551 (define-public r-xopen
9552 (package
9553 (name "r-xopen")
9554 (version "1.0.0")
9555 (source
9556 (origin
9557 (method url-fetch)
9558 (uri (cran-uri "xopen" version))
9559 (sha256
9560 (base32
9561 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
9562 (build-system r-build-system)
9563 (propagated-inputs
9564 `(("r-processx" ,r-processx)))
9565 (home-page "https://github.com/r-lib/xopen#readme")
9566 (synopsis "Open system files, URLs, anything")
9567 (description
9568 "This package provides a cross-platform solution to open files,
9569 directories or URLs with their associated programs.")
9570 (license license:expat)))
9571
9572 (define-public r-rcmdcheck
9573 (package
9574 (name "r-rcmdcheck")
9575 (version "1.3.3")
9576 (source
9577 (origin
9578 (method url-fetch)
9579 (uri (cran-uri "rcmdcheck" version))
9580 (sha256
9581 (base32
9582 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
9583 (build-system r-build-system)
9584 (propagated-inputs
9585 `(("r-callr" ,r-callr)
9586 ("r-cli" ,r-cli)
9587 ("r-crayon" ,r-crayon)
9588 ("r-desc" ,r-desc)
9589 ("r-digest" ,r-digest)
9590 ("r-pkgbuild" ,r-pkgbuild)
9591 ("r-prettyunits" ,r-prettyunits)
9592 ("r-r6" ,r-r6)
9593 ("r-rprojroot" ,r-rprojroot)
9594 ("r-sessioninfo" ,r-sessioninfo)
9595 ("r-withr" ,r-withr)
9596 ("r-xopen" ,r-xopen)))
9597 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
9598 (synopsis "Run R CMD check from R and capture results")
9599 (description
9600 "Run @code{R CMD check} from R programmatically, and capture the results
9601 of the individual checks.")
9602 (license license:expat)))
9603
9604 (define-public r-rapportools
9605 (package
9606 (name "r-rapportools")
9607 (version "1.0")
9608 (source
9609 (origin
9610 (method url-fetch)
9611 (uri (cran-uri "rapportools" version))
9612 (sha256
9613 (base32
9614 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
9615 (build-system r-build-system)
9616 (propagated-inputs
9617 `(("r-pander" ,r-pander)
9618 ("r-plyr" ,r-plyr)
9619 ("r-reshape" ,r-reshape)))
9620 (home-page "https://cran.r-project.org/web/packages/rapportools/")
9621 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
9622 (description
9623 "This package provides helper functions that act as wrappers to more
9624 advanced statistical methods with the advantage of having sane defaults for
9625 quick reporting.")
9626 (license license:agpl3+)))
9627
9628 (define-public r-pander
9629 (package
9630 (name "r-pander")
9631 (version "0.6.3")
9632 (source
9633 (origin
9634 (method url-fetch)
9635 (uri (cran-uri "pander" version))
9636 (sha256
9637 (base32
9638 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
9639 (build-system r-build-system)
9640 (propagated-inputs
9641 `(("r-digest" ,r-digest)
9642 ("r-rcpp" ,r-rcpp)))
9643 (home-page "https://rapporter.github.io/pander")
9644 (synopsis "Render R objects into Pandoc's markdown")
9645 (description
9646 "The main aim of the pander R package is to provide a minimal and easy
9647 tool for rendering R objects into Pandoc's markdown. The package is also
9648 capable of exporting/converting complex Pandoc documents (reports) in various
9649 ways.")
9650 ;; This package is licensed under either the AGPLv3+ or the very rarely
9651 ;; used OSL 3.0.
9652 (license license:agpl3+)))
9653
9654 (define-public r-summarytools
9655 (package
9656 (name "r-summarytools")
9657 (version "0.9.6")
9658 (source
9659 (origin
9660 (method url-fetch)
9661 (uri (cran-uri "summarytools" version))
9662 (sha256
9663 (base32
9664 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
9665 (build-system r-build-system)
9666 (propagated-inputs
9667 `(("r-base64enc" ,r-base64enc)
9668 ("r-checkmate" ,r-checkmate)
9669 ("r-dplyr" ,r-dplyr)
9670 ("r-htmltools" ,r-htmltools)
9671 ("r-lubridate" ,r-lubridate)
9672 ("r-magick" ,r-magick)
9673 ("r-matrixstats" ,r-matrixstats)
9674 ("r-pander" ,r-pander)
9675 ("r-pryr" ,r-pryr)
9676 ("r-rapportools" ,r-rapportools)
9677 ("r-tibble" ,r-tibble)
9678 ("r-tidyr" ,r-tidyr)))
9679 (home-page "https://github.com/dcomtois/summarytools")
9680 (synopsis "Tools to quickly and neatly summarize data")
9681 (description
9682 "This package provides tools for data frame summaries, cross-tabulations,
9683 weight-enabled frequency tables and common univariate statistics in concise
9684 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9685 good point-of-entry for exploring data, both for experienced and new R
9686 users.")
9687 (license license:gpl2)))
9688
9689 (define-public r-lsei
9690 (package
9691 (name "r-lsei")
9692 (version "1.2-0.1")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (cran-uri "lsei" version))
9697 (sha256
9698 (base32
9699 "1rvzdb33x9ykl5qfwxkps1iylxqzlf1qla3l88420nbq7pxp7m87"))))
9700 (build-system r-build-system)
9701 (native-inputs
9702 `(("gfortran" ,gfortran)))
9703 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9704 (synopsis "Solve regression problems under equality/inequality constraints")
9705 (description
9706 "It contains functions that solve least squares linear regression
9707 problems under linear equality/inequality constraints. Functions for solving
9708 quadratic programming problems are also available, which transform such
9709 problems into least squares ones first.")
9710 (license license:gpl2+)))
9711
9712 (define-public r-npsurv
9713 (package
9714 (name "r-npsurv")
9715 (version "0.4-0.1")
9716 (source
9717 (origin
9718 (method url-fetch)
9719 (uri (cran-uri "npsurv" version))
9720 (sha256
9721 (base32
9722 "09nxibp93bp9v8qcx0gnazk7fkvyh0fq9vlgxl639m6ndr7fwp88"))))
9723 (build-system r-build-system)
9724 (propagated-inputs
9725 `(("r-lsei" ,r-lsei)))
9726 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9727 (synopsis "Nonparametric survival analysis")
9728 (description
9729 "This package contains functions for non-parametric survival analysis of
9730 exact and interval-censored observations.")
9731 (license license:gpl2+)))
9732
9733 (define-public r-clusteval
9734 (package
9735 (name "r-clusteval")
9736 (version "0.1")
9737 (source
9738 (origin
9739 (method url-fetch)
9740 (uri (cran-uri "clusteval" version))
9741 (sha256
9742 (base32
9743 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9744 (build-system r-build-system)
9745 (propagated-inputs
9746 `(("r-mvtnorm" ,r-mvtnorm)
9747 ("r-rcpp" ,r-rcpp)))
9748 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9749 (synopsis "Evaluation of clustering algorithms")
9750 (description
9751 "This R package provides a suite of tools to evaluate clustering
9752 algorithms, clusterings, and individual clusters.")
9753 (license license:expat)))
9754
9755 (define-public r-tweedie
9756 (package
9757 (name "r-tweedie")
9758 (version "2.3.2")
9759 (source
9760 (origin
9761 (method url-fetch)
9762 (uri (cran-uri "tweedie" version))
9763 (sha256
9764 (base32
9765 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9766 (build-system r-build-system)
9767 (native-inputs `(("gfortran" ,gfortran)))
9768 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9769 (synopsis "Evaluation of Tweedie exponential family models")
9770 (description
9771 "Maximum likelihood computations for Tweedie families, including the
9772 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9773 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9774 and related methods.")
9775 (license license:gpl2+)))
9776
9777 (define-public r-rcppgsl
9778 (package
9779 (name "r-rcppgsl")
9780 (version "0.3.8")
9781 (source
9782 (origin
9783 (method url-fetch)
9784 (uri (cran-uri "RcppGSL" version))
9785 (sha256
9786 (base32 "17nlayy6gvwb3v6l5aiqm84i75yf4dfi3zclxrgpqwf3j9v09yvz"))))
9787 (properties `((upstream-name . "RcppGSL")))
9788 (build-system r-build-system)
9789 (propagated-inputs
9790 `(("r-rcpp" ,r-rcpp)
9791 ("gsl" ,gsl)))
9792 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9793 (synopsis "Rcpp integration for GSL vectors and matrices")
9794 (description
9795 "The GNU Scientific Library (or GSL) is a collection of numerical
9796 routines for scientific computing. It is particularly useful for C and C++
9797 programs as it provides a standard C interface to a wide range of mathematical
9798 routines. There are over 1000 functions in total with an extensive test
9799 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9800 structures and R using concepts from Rcpp which is itself a package that eases
9801 the interfaces between R and C++.")
9802 (license license:gpl2+)))
9803
9804 (define-public r-mvabund
9805 (package
9806 (name "r-mvabund")
9807 (version "4.1.3")
9808 (source
9809 (origin
9810 (method url-fetch)
9811 (uri (cran-uri "mvabund" version))
9812 (sha256
9813 (base32
9814 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9815 (build-system r-build-system)
9816 (propagated-inputs
9817 `(("r-mass" ,r-mass)
9818 ("r-rcpp" ,r-rcpp)
9819 ("r-rcppgsl" ,r-rcppgsl)
9820 ("r-statmod" ,r-statmod)
9821 ("r-tweedie" ,r-tweedie)))
9822 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9823 (synopsis "Statistical methods for analysing multivariate abundance data")
9824 (description
9825 "This package provides a set of tools for displaying, modeling and
9826 analysing multivariate abundance data in community ecology.")
9827 (license license:lgpl2.1+)))
9828
9829 (define-public r-afex
9830 (package
9831 (name "r-afex")
9832 (version "0.27-2")
9833 (source
9834 (origin
9835 (method url-fetch)
9836 (uri (cran-uri "afex" version))
9837 (sha256
9838 (base32
9839 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9840 (build-system r-build-system)
9841 (propagated-inputs
9842 `(("r-car" ,r-car)
9843 ("r-lme4" ,r-lme4)
9844 ("r-lmertest" ,r-lmertest)
9845 ("r-pbkrtest" ,r-pbkrtest)
9846 ("r-reshape2" ,r-reshape2)))
9847 (native-inputs
9848 `(("r-knitr" ,r-knitr)))
9849 (home-page "https://afex.singmann.science/")
9850 (synopsis "Analysis of factorial experiments")
9851 (description
9852 "This package provides convenience functions for analyzing factorial
9853 experiments using ANOVA or mixed models.")
9854 (license license:gpl2+)))
9855
9856 (define-public r-lmertest
9857 (package
9858 (name "r-lmertest")
9859 (version "3.1-2")
9860 (source
9861 (origin
9862 (method url-fetch)
9863 (uri (cran-uri "lmerTest" version))
9864 (sha256
9865 (base32
9866 "1qkdxx5sri65zgpb9gw4nkfkdam51kgy4hxclk5c40yk7y3p0n1q"))))
9867 (properties `((upstream-name . "lmerTest")))
9868 (build-system r-build-system)
9869 (propagated-inputs
9870 `(("r-ggplot2" ,r-ggplot2)
9871 ("r-lme4" ,r-lme4)
9872 ("r-mass" ,r-mass)
9873 ("r-numderiv" ,r-numderiv)))
9874 (home-page "https://github.com/runehaubo/lmerTestR")
9875 (synopsis "Tests in linear mixed effects models")
9876 (description
9877 "This package provides p-values in type I, II or III anova and summary
9878 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9879 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9880 package. Model selection methods include step, drop1 and anova-like tables
9881 for random effects (ranova). Methods for Least-Square means (LS-means) and
9882 tests of linear contrasts of fixed effects are also available.")
9883 (license license:gpl2+)))
9884
9885 (define-public r-r2glmm
9886 (package
9887 (name "r-r2glmm")
9888 (version "0.1.2")
9889 (source
9890 (origin
9891 (method url-fetch)
9892 (uri (cran-uri "r2glmm" version))
9893 (sha256
9894 (base32
9895 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9896 (build-system r-build-system)
9897 (propagated-inputs
9898 `(("r-afex" ,r-afex)
9899 ("r-data-table" ,r-data-table)
9900 ("r-dplyr" ,r-dplyr)
9901 ("r-ggplot2" ,r-ggplot2)
9902 ("r-gridextra" ,r-gridextra)
9903 ("r-lmertest" ,r-lmertest)
9904 ("r-mass" ,r-mass)
9905 ("r-matrix" ,r-matrix)
9906 ("r-mgcv" ,r-mgcv)
9907 ("r-pbkrtest" ,r-pbkrtest)))
9908 (home-page "https://github.com/bcjaeger/r2glmm")
9909 (synopsis "Compute R squared for mixed (multilevel) models")
9910 (description
9911 "This package computes model and semi partial R squared with confidence
9912 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9913 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9914 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9915 al. (2016)).")
9916 (license license:gpl2)))
9917
9918 (define-public r-weights
9919 (package
9920 (name "r-weights")
9921 (version "1.0.1")
9922 (source
9923 (origin
9924 (method url-fetch)
9925 (uri (cran-uri "weights" version))
9926 (sha256
9927 (base32
9928 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9929 (build-system r-build-system)
9930 (propagated-inputs
9931 `(("r-gdata" ,r-gdata)
9932 ("r-hmisc" ,r-hmisc)
9933 ("r-mice" ,r-mice)))
9934 (home-page
9935 "https://cran.r-project.org/web/packages/weights/")
9936 (synopsis "Weighting and weighted statistics")
9937 (description "This package Provides a variety of functions for producing
9938 simple weighted statistics, such as weighted Pearson's correlations, partial
9939 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9940 includes some software for quickly recoding survey data and plotting point
9941 estimates from interaction terms in regressions (and multiply imputed
9942 regressions). NOTE: Weighted partial correlation calculations pulled to
9943 address a bug.")
9944 (license license:gpl2+)))
9945
9946 (define-public r-rcppannoy
9947 (package
9948 (name "r-rcppannoy")
9949 (version "0.0.16")
9950 (source
9951 (origin
9952 (method url-fetch)
9953 (uri (cran-uri "RcppAnnoy" version))
9954 (sha256
9955 (base32
9956 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9957 (properties `((upstream-name . "RcppAnnoy")))
9958 (build-system r-build-system)
9959 (propagated-inputs
9960 `(("r-rcpp" ,r-rcpp)))
9961 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9962 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9963 (description
9964 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9965 for efficient memory usage as well an ability to load from and save to disk.
9966 This package provides an R interface.")
9967 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9968 ;; GPLv2+.
9969 (license (list license:gpl2+ license:asl2.0))))
9970
9971 (define-public r-rcpphnsw
9972 (package
9973 (name "r-rcpphnsw")
9974 (version "0.2.0")
9975 (source
9976 (origin
9977 (method url-fetch)
9978 (uri (cran-uri "RcppHNSW" version))
9979 (sha256
9980 (base32
9981 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9982 (properties `((upstream-name . "RcppHNSW")))
9983 (build-system r-build-system)
9984 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9985 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9986 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9987 (description
9988 "Hnswlib is a C++ library for approximate nearest neighbors. This
9989 package provides a minimal R interface by relying on the Rcpp package.")
9990 ;; hnswlib is released under Version 2.0 of the Apache License.
9991 (license (list license:gpl3 license:asl2.0))))
9992
9993 (define-public r-rcppparallel
9994 (package
9995 (name "r-rcppparallel")
9996 (version "5.0.2")
9997 (source
9998 (origin
9999 (method url-fetch)
10000 (uri (cran-uri "RcppParallel" version))
10001 (sha256
10002 (base32
10003 "10bg4fw38m64dhy543rwq2nnjjc9y24iggk343xslrb3ij8018lc"))))
10004 (properties `((upstream-name . "RcppParallel")))
10005 (build-system r-build-system)
10006 (home-page "https://rcppcore.github.io/RcppParallel/")
10007 (synopsis "Parallel programming tools for Rcpp")
10008 (description
10009 "This package provides high level functions for parallel programming with
10010 Rcpp. For example, the @code{parallelFor()} function can be used to convert
10011 the work of a standard serial @code{for} loop into a parallel one and the
10012 @code{parallelReduce()} function can be used for accumulating aggregates or
10013 other values.")
10014 (license license:gpl2)))
10015
10016 (define-public r-ncdf4
10017 (package
10018 (name "r-ncdf4")
10019 (version "1.17")
10020 (source
10021 (origin
10022 (method url-fetch)
10023 (uri (cran-uri "ncdf4" version))
10024 (sha256
10025 (base32
10026 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
10027 (build-system r-build-system)
10028 (inputs
10029 `(("netcdf" ,netcdf)
10030 ("zlib" ,zlib)))
10031 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
10032 (synopsis "R interface to Unidata netCDF format data files")
10033 (description
10034 "This package provides a high-level R interface to data files written
10035 using Unidata's netCDF library (version 4 or earlier), which are binary data
10036 files that are portable across platforms and include metadata information in
10037 addition to the data sets. Using this package, netCDF files can be opened and
10038 data sets read in easily. It is also easy to create new netCDF dimensions,
10039 variables, and files, in either version 3 or 4 format, and manipulate existing
10040 netCDF files.")
10041 (license license:gpl3+)))
10042
10043 (define-public r-biocmanager
10044 (package
10045 (name "r-biocmanager")
10046 (version "1.30.10")
10047 (source
10048 (origin
10049 (method url-fetch)
10050 (uri (cran-uri "BiocManager" version))
10051 (sha256
10052 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
10053 (properties `((upstream-name . "BiocManager")))
10054 (build-system r-build-system)
10055 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
10056 (synopsis "Access the Bioconductor project package repository")
10057 (description
10058 "This package provides a convenient tool to install and update
10059 Bioconductor packages.")
10060 (license license:artistic2.0)))
10061
10062 (define-public r-rgl
10063 (package
10064 (name "r-rgl")
10065 (version "0.100.54")
10066 (source
10067 (origin
10068 (method url-fetch)
10069 (uri (cran-uri "rgl" version))
10070 (sha256
10071 (base32
10072 "1mgs2d8igmcdzzymfwbqdrypmaidd4pra5n5gnhsn9pm6pqzidqp"))))
10073 (build-system r-build-system)
10074 (native-inputs
10075 `(("pkg-config" ,pkg-config)))
10076 (inputs
10077 `(("freetype" ,freetype)
10078 ("libpng" ,libpng)
10079 ("glu" ,glu)
10080 ("libx11" ,libx11)
10081 ("pandoc" ,pandoc)
10082 ("zlib" ,zlib)))
10083 (propagated-inputs
10084 `(("r-crosstalk" ,r-crosstalk)
10085 ("r-htmltools" ,r-htmltools)
10086 ("r-htmlwidgets" ,r-htmlwidgets)
10087 ("r-jsonlite" ,r-jsonlite)
10088 ("r-knitr" ,r-knitr)
10089 ("r-magrittr" ,r-magrittr)
10090 ("r-manipulatewidget" ,r-manipulatewidget)
10091 ("r-shiny" ,r-shiny)))
10092 (home-page "https://r-forge.r-project.org/projects/rgl/")
10093 (synopsis "3D visualization using OpenGL")
10094 (description
10095 "This package provides medium to high level functions for 3D interactive graphics,
10096 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
10097 as functions for constructing representations of geometric
10098 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
10099 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
10100 image formats, including PNG, Postscript, SVG, PGF.")
10101 ;; Any version of the GPL.
10102 (license (list license:gpl2+ license:gpl3+))))
10103
10104 (define-public r-multicool
10105 (package
10106 (name "r-multicool")
10107 (version "0.1-11")
10108 (source
10109 (origin
10110 (method url-fetch)
10111 (uri (cran-uri "multicool" version))
10112 (sha256
10113 (base32
10114 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
10115 (build-system r-build-system)
10116 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10117 (home-page "https://cran.r-project.org/web/packages/multicool/")
10118 (synopsis "Permutations of multisets in cool-lex order")
10119 (description
10120 "This package provides a set of tools to permute multisets without loops
10121 or hash tables and to generate integer partitions. Cool-lex order is similar
10122 to colexicographical order.")
10123 (license license:gpl2)))
10124
10125 (define-public r-misc3d
10126 (package
10127 (name "r-misc3d")
10128 (version "0.8-4")
10129 (source
10130 (origin
10131 (method url-fetch)
10132 (uri (cran-uri "misc3d" version))
10133 (sha256
10134 (base32
10135 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
10136 (build-system r-build-system)
10137 (home-page "https://cran.r-project.org/web/packages/misc3d/")
10138 (synopsis "Miscellaneous 3D Plots")
10139 (description
10140 "This package provides a collection of miscellaneous 3d plots, including
10141 isosurfaces.")
10142 ;; Any version of the GPL.
10143 (license (list license:gpl2+ license:gpl3+))))
10144
10145 (define-public r-ks
10146 (package
10147 (name "r-ks")
10148 (version "1.11.7")
10149 (source
10150 (origin
10151 (method url-fetch)
10152 (uri (cran-uri "ks" version))
10153 (sha256
10154 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
10155 (build-system r-build-system)
10156 (propagated-inputs
10157 `(("r-fnn" ,r-fnn)
10158 ("r-kernlab" ,r-kernlab)
10159 ("r-kernsmooth" ,r-kernsmooth)
10160 ("r-matrix" ,r-matrix)
10161 ("r-mclust" ,r-mclust)
10162 ("r-mgcv" ,r-mgcv)
10163 ("r-multicool" ,r-multicool)
10164 ("r-mvtnorm" ,r-mvtnorm)))
10165 (home-page "http://www.mvstat.net/tduong/")
10166 (synopsis "Kernel smoothing")
10167 (description
10168 "This package provides kernel smoothers for univariate and multivariate
10169 data, including density functions, density derivatives, cumulative
10170 distributions, modal clustering, discriminant analysis, and two-sample
10171 hypothesis testing.")
10172 ;; Either version of the GPL.
10173 (license (list license:gpl2 license:gpl3))))
10174
10175 (define-public r-feature
10176 (package
10177 (name "r-feature")
10178 (version "1.2.13")
10179 (source
10180 (origin
10181 (method url-fetch)
10182 (uri (cran-uri "feature" version))
10183 (sha256
10184 (base32
10185 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
10186 (build-system r-build-system)
10187 (propagated-inputs
10188 `(("r-ks" ,r-ks)
10189 ("r-misc3d" ,r-misc3d)
10190 ("r-rgl" ,r-rgl)))
10191 (home-page "http://www.mvstat.net/tduong/")
10192 (synopsis "Inferential feature significance for kernel density estimation")
10193 (description
10194 "The feature package contains functions to display and compute kernel
10195 density estimates, significant gradient and significant curvature regions.
10196 Significant gradient and/or curvature regions often correspond to significant
10197 features (e.g. local modes).")
10198 ;; Either version of the GPL.
10199 (license (list license:gpl2 license:gpl3))))
10200
10201 (define-public r-arm
10202 (package
10203 (name "r-arm")
10204 (version "1.11-2")
10205 (source
10206 (origin
10207 (method url-fetch)
10208 (uri (cran-uri "arm" version))
10209 (sha256
10210 (base32
10211 "1grb27vayr2vhyalzfqbhx6p278r7c3l4pzi5nrz3dmnyqrbx1c3"))))
10212 (build-system r-build-system)
10213 (propagated-inputs
10214 `(("r-abind" ,r-abind)
10215 ("r-coda" ,r-coda)
10216 ("r-hmisc" ,r-hmisc)
10217 ("r-lme4" ,r-lme4)
10218 ("r-mass" ,r-mass)
10219 ("r-matrix" ,r-matrix)
10220 ("r-nlme" ,r-nlme)))
10221 (home-page "https://cran.r-project.org/web/packages/arm/")
10222 (synopsis "Data analysis using regression and multilevel/hierarchical models")
10223 (description
10224 "This package provides functions to accompany A. Gelman and J. Hill,
10225 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
10226 University Press, 2007.")
10227 (license license:gpl3+)))
10228
10229 (define-public r-circular
10230 (package
10231 (name "r-circular")
10232 (version "0.4-93")
10233 (source
10234 (origin
10235 (method url-fetch)
10236 (uri (cran-uri "circular" version))
10237 (sha256
10238 (base32
10239 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
10240 (build-system r-build-system)
10241 (propagated-inputs
10242 `(("r-boot" ,r-boot)
10243 ("r-mvtnorm" ,r-mvtnorm)))
10244 (native-inputs
10245 `(("gfortran" ,gfortran)))
10246 (home-page "https://cran.r-project.org/web/packages/circular/")
10247 (synopsis "Circular statistics")
10248 (description
10249 "This package provides tools for circular statistics, from \"Topics in
10250 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
10251 Scientific.")
10252 (license license:gpl2+)))
10253
10254 (define-public r-activity
10255 (package
10256 (name "r-activity")
10257 (version "1.3")
10258 (source
10259 (origin
10260 (method url-fetch)
10261 (uri (cran-uri "activity" version))
10262 (sha256
10263 (base32
10264 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
10265 (build-system r-build-system)
10266 (propagated-inputs
10267 `(("r-circular" ,r-circular)
10268 ("r-insol" ,r-insol)
10269 ("r-pbapply" ,r-pbapply)))
10270 (home-page "https://cran.r-project.org/web/packages/activity/")
10271 (synopsis "Animal activity statistics")
10272 (description
10273 "This package provides functions to fit kernel density functions to
10274 animal activity time data; plot activity distributions; quantify overall
10275 levels of activity; statistically compare activity metrics through
10276 bootstrapping; and evaluate variation in linear variables with time (or other
10277 circular variables).")
10278 (license license:gpl3)))
10279
10280 (define-public r-ouch
10281 (package
10282 (name "r-ouch")
10283 (version "2.14-1")
10284 (source
10285 (origin
10286 (method url-fetch)
10287 (uri (cran-uri "ouch" version))
10288 (sha256
10289 (base32
10290 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
10291 (build-system r-build-system)
10292 (propagated-inputs `(("r-subplex" ,r-subplex)))
10293 (home-page "https://kingaa.github.io/ouch/")
10294 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
10295 (description
10296 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
10297 for evolution along a phylogenetic tree.")
10298 (license license:gpl2+)))
10299
10300 (define-public r-fmsb
10301 (package
10302 (name "r-fmsb")
10303 (version "0.7.0")
10304 (source
10305 (origin
10306 (method url-fetch)
10307 (uri (cran-uri "fmsb" version))
10308 (sha256
10309 (base32
10310 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
10311 (build-system r-build-system)
10312 (home-page "http://minato.sip21c.org/msb/")
10313 (synopsis "Functions for medical statistics book with demographic data")
10314 (description
10315 "This package provides several utility functions for the book entitled
10316 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
10317 Japan, 2007) with Japanese demographic data and some demographic analysis
10318 related functions.")
10319 (license license:gpl2+)))
10320
10321 (define-public r-stabledist
10322 (package
10323 (name "r-stabledist")
10324 (version "0.7-1")
10325 (source
10326 (origin
10327 (method url-fetch)
10328 (uri (cran-uri "stabledist" version))
10329 (sha256
10330 (base32
10331 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
10332 (build-system r-build-system)
10333 (home-page "https://www.rmetrics.org")
10334 (synopsis "Stable distribution functions")
10335 (description
10336 "This package provides density, probability and quantile functions, and
10337 random number generation for (skew) stable distributions, using the
10338 parametrizations of Nolan.")
10339 (license license:gpl2+)))
10340
10341 (define-public r-gsl
10342 (package
10343 (name "r-gsl")
10344 (version "2.1-6")
10345 (source
10346 (origin
10347 (method url-fetch)
10348 (uri (cran-uri "gsl" version))
10349 (sha256
10350 (base32
10351 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
10352 (build-system r-build-system)
10353 (inputs
10354 `(("gsl" ,gsl)))
10355 (home-page "https://cran.r-project.org/web/packages/gsl")
10356 (synopsis "Wrapper for the GNU Scientific Library")
10357 (description
10358 "This package provides an R wrapper for the special functions and quasi
10359 random number generators of the GNU Scientific Library.")
10360 (license license:gpl2+)))
10361
10362 (define-public r-adgoftest
10363 (package
10364 (name "r-adgoftest")
10365 (version "0.3")
10366 (source
10367 (origin
10368 (method url-fetch)
10369 (uri (cran-uri "ADGofTest" version))
10370 (sha256
10371 (base32
10372 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
10373 (properties `((upstream-name . "ADGofTest")))
10374 (build-system r-build-system)
10375 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
10376 (synopsis "Anderson-Darling GoF test")
10377 (description
10378 "This package provides an implementation of the Anderson-Darling GoF test
10379 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
10380 Anderson-Darling Distribution\".")
10381 ;; Any version of the GPL.
10382 (license license:gpl3+)))
10383
10384 (define-public r-softimpute
10385 (package
10386 (name "r-softimpute")
10387 (version "1.4")
10388 (source
10389 (origin
10390 (method url-fetch)
10391 (uri (cran-uri "softImpute" version))
10392 (sha256
10393 (base32
10394 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
10395 (properties `((upstream-name . "softImpute")))
10396 (build-system r-build-system)
10397 (propagated-inputs
10398 `(("r-matrix" ,r-matrix)))
10399 (native-inputs
10400 `(("gfortran" ,gfortran)))
10401 (home-page "https://cran.r-project.org/web/packages/softImpute")
10402 (synopsis "Matrix completion via iterative soft-thresholded SVD")
10403 (description
10404 "This package provides iterative methods for matrix completion that use
10405 nuclear-norm regularization. The package includes procedures for centering
10406 and scaling rows, columns or both, and for computing low-rank @dfn{single
10407 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
10408 components).")
10409 (license license:gpl2)))
10410
10411 (define-public r-fftwtools
10412 (package
10413 (name "r-fftwtools")
10414 (version "0.9-8")
10415 (source
10416 (origin
10417 (method url-fetch)
10418 (uri (cran-uri "fftwtools" version))
10419 (sha256
10420 (base32
10421 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
10422 (build-system r-build-system)
10423 (inputs `(("fftw" ,fftw)))
10424 (home-page "https://github.com/krahim/fftwtools")
10425 (synopsis "Wrapper for FFTW3")
10426 (description
10427 "This package provides a wrapper for several FFTW functions. It provides
10428 access to the two-dimensional FFT, the multivariate FFT, and the
10429 one-dimensional real to complex FFT using the FFTW3 library. The package
10430 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
10431 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
10432 The FFT functions have a parameter that allows them to not return the
10433 redundant complex conjugate when the input is real data.")
10434 (license license:gpl2+)))
10435
10436 (define-public r-tiff
10437 (package
10438 (name "r-tiff")
10439 (version "0.1-5")
10440 (source
10441 (origin
10442 (method url-fetch)
10443 (uri (cran-uri "tiff" version))
10444 (sha256
10445 (base32
10446 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
10447 (build-system r-build-system)
10448 (inputs
10449 `(("libtiff" ,libtiff)
10450 ("libjpeg" ,libjpeg-turbo)
10451 ("zlib" ,zlib)))
10452 (home-page "https://www.rforge.net/tiff/")
10453 (synopsis "Read and write TIFF images")
10454 (description
10455 "This package provides an easy and simple way to read, write and display
10456 bitmap images stored in the TIFF format. It can read and write both files and
10457 in-memory raw vectors.")
10458 ;; Either of these two license versions.
10459 (license (list license:gpl2 license:gpl3))))
10460
10461 (define-public r-nlp
10462 (package
10463 (name "r-nlp")
10464 (version "0.2-0")
10465 (source
10466 (origin
10467 (method url-fetch)
10468 (uri (cran-uri "NLP" version))
10469 (sha256
10470 (base32
10471 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
10472 (properties `((upstream-name . "NLP")))
10473 (build-system r-build-system)
10474 (home-page "https://cran.r-project.org/web/packages/NLP/")
10475 (synopsis "Natural language processing infrastructure")
10476 (description
10477 "This package provides basic classes and methods for Natural Language
10478 Processing.")
10479 (license license:gpl3)))
10480
10481 (define-public r-tm
10482 (package
10483 (name "r-tm")
10484 (version "0.7-7")
10485 (source
10486 (origin
10487 (method url-fetch)
10488 (uri (cran-uri "tm" version))
10489 (sha256
10490 (base32
10491 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
10492 (properties `((upstream-name . "tm")))
10493 (build-system r-build-system)
10494 (propagated-inputs
10495 `(("r-bh" ,r-bh)
10496 ("r-nlp" ,r-nlp)
10497 ("r-rcpp" ,r-rcpp)
10498 ("r-slam" ,r-slam)
10499 ("r-xml2" ,r-xml2)))
10500 (home-page "http://tm.r-forge.r-project.org/")
10501 (synopsis "Text mining package")
10502 (description
10503 "This package provides a framework for text mining applications within R.")
10504 (license license:gpl3)))
10505
10506 (define-public r-waveslim
10507 (package
10508 (name "r-waveslim")
10509 (version "1.8.2")
10510 (source
10511 (origin
10512 (method url-fetch)
10513 (uri (cran-uri "waveslim" version))
10514 (sha256
10515 (base32
10516 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
10517 (build-system r-build-system)
10518 (native-inputs
10519 `(("gfortran" ,gfortran)))
10520 (home-page "http://waveslim.blogspot.com")
10521 (synopsis "Basic wavelet routines for signal processing")
10522 (description
10523 "This package provides basic wavelet routines for time series (1D),
10524 image (2D) and array (3D) analysis. The code provided here is based on
10525 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
10526 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
10527 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
10528 pairs (Selesnick 2001, 2002).")
10529 (license license:bsd-3)))
10530
10531 (define-public r-wordcloud
10532 (package
10533 (name "r-wordcloud")
10534 (version "2.6")
10535 (source
10536 (origin
10537 (method url-fetch)
10538 (uri (cran-uri "wordcloud" version))
10539 (sha256
10540 (base32
10541 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
10542 (build-system r-build-system)
10543 (propagated-inputs
10544 `(("r-rcolorbrewer" ,r-rcolorbrewer)
10545 ("r-rcpp" ,r-rcpp)
10546 ;; The "tm" package is only "suggested" according to CRAN, but the
10547 ;; wordcloud package cannot be loaded without it.
10548 ("r-tm" ,r-tm)))
10549 (home-page "https://cran.r-project.org/web/packages/wordcloud")
10550 (synopsis "Word clouds")
10551 (description
10552 "This package provides functionality to create pretty word clouds,
10553 visualize differences and similarity between documents, and avoid
10554 over-plotting in scatter plots with text.")
10555 (license license:lgpl2.1)))
10556
10557 (define-public r-colorramps
10558 (package
10559 (name "r-colorramps")
10560 (version "2.3")
10561 (source
10562 (origin
10563 (method url-fetch)
10564 (uri (cran-uri "colorRamps" version))
10565 (sha256
10566 (base32
10567 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
10568 (properties `((upstream-name . "colorRamps")))
10569 (build-system r-build-system)
10570 (home-page "https://cran.r-project.org/web/packages/colorRamps")
10571 (synopsis "Build color tables")
10572 (description "This package provides features to build gradient color
10573 maps.")
10574 ;; Any version of the GPL
10575 (license license:gpl3+)))
10576
10577 (define-public r-tidytree
10578 (package
10579 (name "r-tidytree")
10580 (version "0.3.3")
10581 (source
10582 (origin
10583 (method url-fetch)
10584 (uri (cran-uri "tidytree" version))
10585 (sha256
10586 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
10587 (build-system r-build-system)
10588 (propagated-inputs
10589 `(("r-ape" ,r-ape)
10590 ("r-dplyr" ,r-dplyr)
10591 ("r-lazyeval" ,r-lazyeval)
10592 ("r-magrittr" ,r-magrittr)
10593 ("r-rlang" ,r-rlang)
10594 ("r-tibble" ,r-tibble)))
10595 (native-inputs
10596 `(("r-knitr" ,r-knitr)))
10597 (home-page "https://github.com/GuangchuangYu/tidytree")
10598 (synopsis "Tidy tool for phylogenetic tree data manipulation")
10599 (description
10600 "Phylogenetic trees generally contain multiple components including nodes,
10601 edges, branches and associated data. This package provides an approach to
10602 convert tree objects to tidy data frames. It also provides tidy interfaces to
10603 manipulate tree data.")
10604 (license license:artistic2.0)))
10605
10606 (define-public r-rvcheck
10607 (package
10608 (name "r-rvcheck")
10609 (version "0.1.8")
10610 (source
10611 (origin
10612 (method url-fetch)
10613 (uri (cran-uri "rvcheck" version))
10614 (sha256
10615 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
10616 (build-system r-build-system)
10617 (propagated-inputs
10618 `(("r-biocmanager" ,r-biocmanager)
10619 ("r-rlang" ,r-rlang)))
10620 (home-page "https://cran.r-project.org/web/packages/rvcheck")
10621 (synopsis "R package version check")
10622 (description
10623 "This package provides tools to check the latest release version of R and
10624 R packages (on CRAN, Bioconductor or Github).")
10625 (license license:artistic2.0)))
10626
10627 (define-public r-docopt
10628 (package
10629 (name "r-docopt")
10630 (version "0.7.1")
10631 (source
10632 (origin
10633 (method url-fetch)
10634 (uri (cran-uri "docopt" version))
10635 (sha256
10636 (base32
10637 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
10638 (build-system r-build-system)
10639 (home-page "https://github.com/docopt/docopt.R")
10640 (synopsis "Command-line interface specification language")
10641 (description
10642 "This package enables you to define a command-line interface by just
10643 giving it a description in the specific format.")
10644 (license license:expat)))
10645
10646 (define-public r-sparsesvd
10647 (package
10648 (name "r-sparsesvd")
10649 (version "0.2")
10650 (source
10651 (origin
10652 (method url-fetch)
10653 (uri (cran-uri "sparsesvd" version))
10654 (sha256
10655 (base32
10656 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
10657 (build-system r-build-system)
10658 (propagated-inputs `(("r-matrix" ,r-matrix)))
10659 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
10660 (synopsis "Sparse truncated singular value decomposition")
10661 (description
10662 "This package provides a Wrapper around the SVDLIBC library
10663 for (truncated) singular value decomposition of a sparse matrix. Currently,
10664 only sparse real matrices in Matrix package format are supported.")
10665 ;; SVDLIBC is released under BSD-2. The R interface is released under
10666 ;; BSD-3.
10667 (license (list license:bsd-3 license:bsd-2))))
10668
10669 (define-public r-speedglm
10670 (package
10671 (name "r-speedglm")
10672 (version "0.3-2")
10673 (source
10674 (origin
10675 (method url-fetch)
10676 (uri (cran-uri "speedglm" version))
10677 (sha256
10678 (base32
10679 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
10680 (build-system r-build-system)
10681 (propagated-inputs
10682 `(("r-mass" ,r-mass)
10683 ("r-matrix" ,r-matrix)))
10684 (home-page "https://cran.r-project.org/web/packages/speedglm")
10685 (synopsis "Fit linear and generalized linear models to large data sets")
10686 (description
10687 "This package provides tools for fitting linear models and generalized
10688 linear models to large data sets by updating algorithms.")
10689 ;; Any version of the GPL
10690 (license license:gpl2+)))
10691
10692 (define-public r-densityclust
10693 (package
10694 (name "r-densityclust")
10695 (version "0.3")
10696 (source
10697 (origin
10698 (method url-fetch)
10699 (uri (cran-uri "densityClust" version))
10700 (sha256
10701 (base32
10702 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10703 (properties `((upstream-name . "densityClust")))
10704 (build-system r-build-system)
10705 (propagated-inputs
10706 `(("r-fnn" ,r-fnn)
10707 ("r-ggplot2" ,r-ggplot2)
10708 ("r-ggrepel" ,r-ggrepel)
10709 ("r-gridextra" ,r-gridextra)
10710 ("r-rcolorbrewer" ,r-rcolorbrewer)
10711 ("r-rcpp" ,r-rcpp)
10712 ("r-rtsne" ,r-rtsne)))
10713 (home-page "https://cran.r-project.org/web/packages/densityClust")
10714 (synopsis "Clustering by fast search and find of density peaks")
10715 (description
10716 "This package provides an improved implementation (based on k-nearest
10717 neighbors) of the density peak clustering algorithm, originally described by
10718 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10719 large datasets (> 100,000 samples) very efficiently.")
10720 (license license:gpl2+)))
10721
10722 (define-public r-combinat
10723 (package
10724 (name "r-combinat")
10725 (version "0.0-8")
10726 (source
10727 (origin
10728 (method url-fetch)
10729 (uri (cran-uri "combinat" version))
10730 (sha256
10731 (base32
10732 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10733 (build-system r-build-system)
10734 (home-page "https://cran.r-project.org/web/packages/combinat")
10735 (synopsis "Combinatorics utilities")
10736 (description "This package provides assorted routines for combinatorics.")
10737 (license license:gpl2)))
10738
10739 (define-public r-qlcmatrix
10740 (package
10741 (name "r-qlcmatrix")
10742 (version "0.9.7")
10743 (source
10744 (origin
10745 (method url-fetch)
10746 (uri (cran-uri "qlcMatrix" version))
10747 (sha256
10748 (base32
10749 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10750 (properties `((upstream-name . "qlcMatrix")))
10751 (build-system r-build-system)
10752 (propagated-inputs
10753 `(("r-docopt" ,r-docopt)
10754 ("r-matrix" ,r-matrix)
10755 ("r-slam" ,r-slam)
10756 ("r-sparsesvd" ,r-sparsesvd)))
10757 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10758 (synopsis "Sparse matrix functions for quantitative language comparison")
10759 (description
10760 "This package provides an extension of the functionality of the Matrix
10761 package for using sparse matrices. Some of the functions are very general,
10762 while other are highly specific for the special data format used for
10763 @dfn{quantitative language comparison} (QLC).")
10764 (license license:gpl3)))
10765
10766 (define-public r-ddrtree
10767 (package
10768 (name "r-ddrtree")
10769 (version "0.1.5")
10770 (source
10771 (origin
10772 (method url-fetch)
10773 (uri (cran-uri "DDRTree" version))
10774 (sha256
10775 (base32
10776 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10777 (properties `((upstream-name . "DDRTree")))
10778 (build-system r-build-system)
10779 (propagated-inputs
10780 `(("r-bh" ,r-bh)
10781 ("r-irlba" ,r-irlba)
10782 ("r-rcpp" ,r-rcpp)
10783 ("r-rcppeigen" ,r-rcppeigen)))
10784 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10785 (synopsis "Learning principal graphs with DDRTree")
10786 (description
10787 "This package provides an implementation of the framework of
10788 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10789 dimensional space while constructs a principal tree which passes through the
10790 middle of the data simultaneously. DDRTree shows superiority to
10791 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10792 intrinsic structure of single cell genomics data. In general, it could be
10793 used to reconstruct the temporal progression as well as the bifurcation
10794 structure of any data type.")
10795 (license license:asl2.0)))
10796
10797 (define-public r-corpcor
10798 (package
10799 (name "r-corpcor")
10800 (version "1.6.9")
10801 (source
10802 (origin
10803 (method url-fetch)
10804 (uri (cran-uri "corpcor" version))
10805 (sha256
10806 (base32
10807 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10808 (build-system r-build-system)
10809 (home-page "http://strimmerlab.org/software/corpcor/")
10810 (synopsis "Efficient estimation of covariance and (partial) correlation")
10811 (description
10812 "This package implements a James-Stein-type shrinkage estimator for the
10813 covariance matrix, with separate shrinkage for variances and correlations.
10814 Furthermore, functions are available for fast singular value decomposition,
10815 for computing the pseudoinverse, and for checking the rank and positive
10816 definiteness of a matrix.")
10817 (license license:gpl3+)))
10818
10819 (define-public r-rspectra
10820 (package
10821 (name "r-rspectra")
10822 (version "0.16-0")
10823 (source
10824 (origin
10825 (method url-fetch)
10826 (uri (cran-uri "RSpectra" version))
10827 (sha256
10828 (base32
10829 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10830 (properties `((upstream-name . "RSpectra")))
10831 (build-system r-build-system)
10832 (propagated-inputs
10833 `(("r-matrix" ,r-matrix)
10834 ("r-rcpp" ,r-rcpp)
10835 ("r-rcppeigen" ,r-rcppeigen)))
10836 (home-page "https://github.com/yixuan/RSpectra")
10837 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10838 (description
10839 "This package provides an R interface to the Spectra library for
10840 large-scale eigenvalue and SVD problems. It is typically used to compute a
10841 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10842 which is usually more efficient than @code{eigen()} if k << n.")
10843 ;; MPL 2 or later.
10844 (license license:mpl2.0)))
10845
10846 (define-public r-vbsr
10847 (package
10848 (name "r-vbsr")
10849 (version "0.0.5")
10850 (source
10851 (origin
10852 (method url-fetch)
10853 (uri (cran-uri "vbsr" version))
10854 (sha256
10855 (base32
10856 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10857 (build-system r-build-system)
10858 (home-page "https://cran.r-project.org/web/packages/vbsr")
10859 (synopsis "Variational Bayes spike regression regularized linear models")
10860 (description
10861 "This package provides an efficient algorithm for solving ultra-sparse
10862 regularized regression models using a variational Bayes algorithm with a spike
10863 prior. The algorithm is solved on a path, with coordinate updates, and is
10864 capable of generating very sparse models. Very general model
10865 diagnostics for controlling type-1 errors are also provided.")
10866 (license license:gpl2)))
10867
10868 (define-public r-flare
10869 (package
10870 (name "r-flare")
10871 (version "1.6.0.2")
10872 (source
10873 (origin
10874 (method url-fetch)
10875 (uri (cran-uri "flare" version))
10876 (sha256
10877 (base32
10878 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10879 (build-system r-build-system)
10880 (propagated-inputs
10881 `(("r-igraph" ,r-igraph)
10882 ("r-lattice" ,r-lattice)
10883 ("r-mass" ,r-mass)
10884 ("r-matrix" ,r-matrix)))
10885 (home-page "https://cran.r-project.org/web/packages/flare")
10886 (synopsis "Family of Lasso regression implementations")
10887 (description
10888 "This package provides implementations of a family of Lasso variants
10889 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10890 high dimensional sparse linear models.")
10891 (license license:gpl2)))
10892
10893 (define-public r-lassopv
10894 (package
10895 (name "r-lassopv")
10896 (version "0.2.0")
10897 (source
10898 (origin
10899 (method url-fetch)
10900 (uri (cran-uri "lassopv" version))
10901 (sha256
10902 (base32
10903 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10904 (build-system r-build-system)
10905 (propagated-inputs `(("r-lars" ,r-lars)))
10906 (home-page "https://github.com/lingfeiwang/lassopv")
10907 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10908 (description
10909 "This package enables you to estimate the p-values for predictors x
10910 against target variable y in Lasso regression, using the regularization
10911 strength when each predictor enters the active set of regularization path for
10912 the first time as the statistic.")
10913 (license license:gpl3)))
10914
10915 (define-public r-splitstackshape
10916 (package
10917 (name "r-splitstackshape")
10918 (version "1.4.8")
10919 (source
10920 (origin
10921 (method url-fetch)
10922 (uri (cran-uri "splitstackshape" version))
10923 (sha256
10924 (base32
10925 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10926 (build-system r-build-system)
10927 (propagated-inputs
10928 `(("r-data-table" ,r-data-table)))
10929 (home-page "https://github.com/mrdwab/splitstackshape")
10930 (synopsis "Stack and reshape datasets after splitting concatenated values")
10931 (description
10932 "Online data collection tools like Google Forms often export
10933 multiple-response questions with data concatenated in cells. The
10934 @code{concat.split} (cSplit) family of functions provided by this package
10935 splits such data into separate cells. This package also includes functions to
10936 stack groups of columns and to reshape wide data, even when the data are
10937 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10938 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10939 handle.")
10940 (license license:gpl3)))
10941
10942 (define-public r-tfmpvalue
10943 (package
10944 (name "r-tfmpvalue")
10945 (version "0.0.8")
10946 (source
10947 (origin
10948 (method url-fetch)
10949 (uri (cran-uri "TFMPvalue" version))
10950 (sha256
10951 (base32
10952 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10953 (properties `((upstream-name . "TFMPvalue")))
10954 (build-system r-build-system)
10955 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10956 (home-page "https://github.com/ge11232002/TFMPvalue")
10957 (synopsis "P-value computation for position weight matrices")
10958 (description
10959 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10960 identification from sequence/alignments, we are interested in the significance
10961 of certain match scores. TFMPvalue provides the accurate calculation of a
10962 p-value with a score threshold for position weight matrices, or the score with
10963 a given p-value. It is an interface to code originally made available by
10964 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10965 Touzet and Varre (2007).")
10966 (license license:gpl2)))
10967
10968 (define-public r-rnifti
10969 (package
10970 (name "r-rnifti")
10971 (version "1.2.1")
10972 (source
10973 (origin
10974 (method url-fetch)
10975 (uri (cran-uri "RNifti" version))
10976 (sha256
10977 (base32
10978 "1a5s75iwwngzmi7y69j7xkcrrfvjyjrfalv9ldpgwii4cwkbyf10"))))
10979 (properties `((upstream-name . "RNifti")))
10980 (build-system r-build-system)
10981 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10982 (home-page "https://github.com/jonclayden/RNifti")
10983 (synopsis "Fast R and C++ access to NIfTI images")
10984 (description
10985 "This package provides very fast read and write access to images stored
10986 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10987 compiled C and interpreted R code. It also provides a C/C++ API that can be
10988 used by other packages.")
10989 (license license:gpl2)))
10990
10991 (define-public r-shades
10992 (package
10993 (name "r-shades")
10994 (version "1.4.0")
10995 (source
10996 (origin
10997 (method url-fetch)
10998 (uri (cran-uri "shades" version))
10999 (sha256
11000 (base32
11001 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
11002 (build-system r-build-system)
11003 (home-page "https://github.com/jonclayden/shades")
11004 (synopsis "Simple color manipulation")
11005 (description
11006 "This package provides functions for easily manipulating colors,
11007 creating color scales and calculating color distances.")
11008 (license license:bsd-3)))
11009
11010 (define-public r-ore
11011 (package
11012 (name "r-ore")
11013 (version "1.6.3")
11014 (source
11015 (origin
11016 (method url-fetch)
11017 (uri (cran-uri "ore" version))
11018 (sha256
11019 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
11020 (build-system r-build-system)
11021 (home-page "https://github.com/jonclayden/ore")
11022 (synopsis "R interface to the Onigmo regular expression library")
11023 (description
11024 "This package provides an alternative to R's built-in functionality for
11025 handling regular expressions, based on the Onigmo library. It offers
11026 first-class compiled regex objects, partial matching and function-based
11027 substitutions, amongst other features.")
11028 (license license:bsd-3)))
11029
11030 (define-public r-reportr
11031 (package
11032 (name "r-reportr")
11033 (version "1.3.0")
11034 (source
11035 (origin
11036 (method url-fetch)
11037 (uri (cran-uri "reportr" version))
11038 (sha256
11039 (base32
11040 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
11041 (build-system r-build-system)
11042 (propagated-inputs `(("r-ore" ,r-ore)))
11043 (home-page "https://github.com/jonclayden/reportr")
11044 (synopsis "General message and error reporting system")
11045 (description
11046 "This package provides a system for reporting messages, which offers
11047 certain useful features over the standard R system, such as the incorporation
11048 of output consolidation, message filtering, assertions, expression
11049 substitution, automatic generation of stack traces for debugging, and
11050 conditional reporting based on the current \"output level\".")
11051 (license license:gpl2)))
11052
11053 (define-public r-tractor-base
11054 (package
11055 (name "r-tractor-base")
11056 (version "3.3.2")
11057 (source
11058 (origin
11059 (method url-fetch)
11060 (uri (cran-uri "tractor.base" version))
11061 (sha256
11062 (base32
11063 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
11064 (properties `((upstream-name . "tractor.base")))
11065 (build-system r-build-system)
11066 (propagated-inputs
11067 `(("r-ore" ,r-ore)
11068 ("r-reportr" ,r-reportr)
11069 ("r-rnifti" ,r-rnifti)
11070 ("r-shades" ,r-shades)))
11071 (home-page "https://www.tractor-mri.org.uk")
11072 (synopsis "Read, manipulate and visualize magnetic resonance images")
11073 (description
11074 "This package provides functions for working with magnetic resonance
11075 images. It supports reading and writing of popular file formats (DICOM,
11076 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
11077 visualization; flexible image manipulation; metadata and sparse image
11078 handling.")
11079 (license license:gpl2)))
11080
11081 (define-public r-grimport
11082 (package
11083 (name "r-grimport")
11084 (version "0.9-3")
11085 (source
11086 (origin
11087 (method url-fetch)
11088 (uri (cran-uri "grImport" version))
11089 (sha256
11090 (base32
11091 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
11092 (properties `((upstream-name . "grImport")))
11093 (build-system r-build-system)
11094 (inputs
11095 `(("ghostscript" ,ghostscript)))
11096 (propagated-inputs
11097 `(("r-xml" ,r-xml)))
11098 (home-page "https://cran.r-project.org/web/packages/grImport")
11099 (synopsis "Convert, import, and draw PostScript pictures")
11100 (description
11101 "This package provides functions for converting, importing, and drawing
11102 PostScript pictures in R plots.")
11103 (license license:gpl2+)))
11104
11105 (define-public r-grimport2
11106 (package
11107 (name "r-grimport2")
11108 (version "0.2-0")
11109 (source
11110 (origin
11111 (method url-fetch)
11112 (uri (cran-uri "grImport2" version))
11113 (sha256
11114 (base32
11115 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
11116 (properties `((upstream-name . "grImport2")))
11117 (build-system r-build-system)
11118 (propagated-inputs
11119 `(("r-base64enc" ,r-base64enc)
11120 ("r-jpeg" ,r-jpeg)
11121 ("r-png" ,r-png)
11122 ("r-xml" ,r-xml)))
11123 (home-page "https://cran.r-project.org/web/packages/grImport2/")
11124 (synopsis "Import SVG graphics")
11125 (description
11126 "This package provides functions for importing external vector images and
11127 drawing them as part of R plots. This package is different from the
11128 @code{grImport} package because, where that package imports PostScript format
11129 images, this package imports SVG format images. Furthermore, this package
11130 imports a specific subset of SVG, so external images must be preprocessed
11131 using a package like @code{rsvg} to produce SVG that this package can import.
11132 SVG features that are not supported by R graphics, such as gradient fills, can
11133 be imported and then exported via the @code{gridSVG} package.")
11134 (license license:gpl2+)))
11135
11136 (define-public r-kohonen
11137 (package
11138 (name "r-kohonen")
11139 (version "3.0.10")
11140 (source
11141 (origin
11142 (method url-fetch)
11143 (uri (cran-uri "kohonen" version))
11144 (sha256
11145 (base32
11146 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
11147 (build-system r-build-system)
11148 (propagated-inputs
11149 `(("r-rcpp" ,r-rcpp)))
11150 (home-page "https://cran.r-project.org/web/packages/kohonen")
11151 (synopsis "Supervised and unsupervised self-organising maps")
11152 (description
11153 "This package provides functions to train @dfn{self-organising
11154 maps} (SOMs). Also interrogation of the maps and prediction using trained
11155 maps are supported. The name of the package refers to Teuvo Kohonen, the
11156 inventor of the SOM.")
11157 (license license:gpl2+)))
11158
11159 (define-public r-nnls
11160 (package
11161 (name "r-nnls")
11162 (version "1.4")
11163 (source
11164 (origin
11165 (method url-fetch)
11166 (uri (cran-uri "nnls" version))
11167 (sha256
11168 (base32
11169 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
11170 (build-system r-build-system)
11171 (native-inputs `(("gfortran" ,gfortran)))
11172 (home-page "https://cran.r-project.org/web/packages/nnls")
11173 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
11174 (description
11175 "This package provides an R interface to the Lawson-Hanson implementation
11176 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
11177 the combination of non-negative and non-positive constraints.")
11178 (license license:gpl2+)))
11179
11180 (define-public r-iso
11181 (package
11182 (name "r-iso")
11183 (version "0.0-18.1")
11184 (source
11185 (origin
11186 (method url-fetch)
11187 (uri (cran-uri "Iso" version))
11188 (sha256
11189 (base32
11190 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
11191 (properties `((upstream-name . "Iso")))
11192 (build-system r-build-system)
11193 (native-inputs `(("gfortran" ,gfortran)))
11194 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
11195 (synopsis "Functions to perform isotonic regression")
11196 (description
11197 "This package provides support for linear order and unimodal
11198 order (univariate) isotonic regression and bivariate isotonic regression with
11199 linear order on both variables.")
11200 (license license:gpl2+)))
11201
11202 (define-public r-chemometricswithr
11203 (package
11204 (name "r-chemometricswithr")
11205 (version "0.1.13")
11206 (source
11207 (origin
11208 (method url-fetch)
11209 (uri (cran-uri "ChemometricsWithR" version))
11210 (sha256
11211 (base32
11212 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
11213 (properties
11214 `((upstream-name . "ChemometricsWithR")))
11215 (build-system r-build-system)
11216 (propagated-inputs
11217 `(("r-devtools" ,r-devtools)
11218 ("r-kohonen" ,r-kohonen)
11219 ("r-mass" ,r-mass)
11220 ("r-pls" ,r-pls)))
11221 (home-page "https://github.com/rwehrens/CWR")
11222 (synopsis "Chemometrics with R")
11223 (description
11224 "This package provides functions and scripts used in the book
11225 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
11226 Life Sciences\" by Ron Wehrens, Springer (2011).")
11227 (license license:gpl2+)))
11228
11229 (define-public r-als
11230 (package
11231 (name "r-als")
11232 (version "0.0.6")
11233 (source
11234 (origin
11235 (method url-fetch)
11236 (uri (cran-uri "ALS" version))
11237 (sha256
11238 (base32
11239 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
11240 (properties `((upstream-name . "ALS")))
11241 (build-system r-build-system)
11242 (propagated-inputs
11243 `(("r-iso" ,r-iso)
11244 ("r-nnls" ,r-nnls)))
11245 (home-page "https://cran.r-project.org/web/packages/ALS")
11246 (synopsis "Multivariate curve resolution alternating least squares")
11247 (description
11248 "Alternating least squares is often used to resolve components
11249 contributing to data with a bilinear structure; the basic technique may be
11250 extended to alternating constrained least squares. This package provides an
11251 implementation of @dfn{multivariate curve resolution alternating least
11252 squares} (MCR-ALS).
11253
11254 Commonly applied constraints include unimodality, non-negativity, and
11255 normalization of components. Several data matrices may be decomposed
11256 simultaneously by assuming that one of the two matrices in the bilinear
11257 decomposition is shared between datasets.")
11258 (license license:gpl2+)))
11259
11260 (define-public r-strucchange
11261 (package
11262 (name "r-strucchange")
11263 (version "1.5-2")
11264 (source
11265 (origin
11266 (method url-fetch)
11267 (uri (cran-uri "strucchange" version))
11268 (sha256
11269 (base32
11270 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
11271 (build-system r-build-system)
11272 (propagated-inputs
11273 `(("r-sandwich" ,r-sandwich)
11274 ("r-zoo" ,r-zoo)))
11275 (home-page "https://cran.r-project.org/web/packages/strucchange")
11276 (synopsis "Testing, monitoring, and dating structural changes")
11277 (description
11278 "This package provides tools for testing, monitoring and dating
11279 structural changes in (linear) regression models. It features tests/methods
11280 from the generalized fluctuation test framework as well as from the F
11281 test (Chow test) framework. This includes methods to fit, plot and test
11282 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
11283 statistics, respectively. It is possible to monitor incoming data online
11284 using fluctuation processes. Finally, the breakpoints in regression models
11285 with structural changes can be estimated together with confidence intervals.
11286 Emphasis is always given to methods for visualizing the data.")
11287 ;; Either of these two GPL versions
11288 (license (list license:gpl2 license:gpl3))))
11289
11290 (define-public r-pixmap
11291 (package
11292 (name "r-pixmap")
11293 (version "0.4-11")
11294 (source
11295 (origin
11296 (method url-fetch)
11297 (uri (cran-uri "pixmap" version))
11298 (sha256
11299 (base32
11300 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
11301 (build-system r-build-system)
11302 (home-page "https://cran.r-project.org/web/packages/pixmap")
11303 (synopsis "Tools for bitmap images")
11304 (description
11305 "This package provides functions for importing, exporting, plotting and
11306 other manipulations of bitmapped images.")
11307 (license license:gpl2)))
11308
11309 (define-public r-rapidjsonr
11310 (package
11311 (name "r-rapidjsonr")
11312 (version "1.2.0")
11313 (source
11314 (origin
11315 (method url-fetch)
11316 (uri (cran-uri "rapidjsonr" version))
11317 (sha256
11318 (base32
11319 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
11320 (build-system r-build-system)
11321 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
11322 (synopsis "JSON parser")
11323 (description
11324 "This package provides JSON parsing capability through the Rapidjson
11325 library.")
11326 (license license:expat)))
11327
11328 (define-public r-ontologyindex
11329 (package
11330 (name "r-ontologyindex")
11331 (version "2.5")
11332 (source
11333 (origin
11334 (method url-fetch)
11335 (uri (cran-uri "ontologyIndex" version))
11336 (sha256
11337 (base32
11338 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
11339 (properties `((upstream-name . "ontologyIndex")))
11340 (build-system r-build-system)
11341 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
11342 (synopsis "Functions for processing ontologies in R")
11343 (description
11344 "This package provides functions for reading ontologies into R as lists
11345 and manipulating sets of ontological terms.")
11346 (license license:gpl2+)))
11347
11348 (define-public r-gargle
11349 (package
11350 (name "r-gargle")
11351 (version "0.5.0")
11352 (source
11353 (origin
11354 (method url-fetch)
11355 (uri (cran-uri "gargle" version))
11356 (sha256
11357 (base32
11358 "1fykmiv3x8c9ai31r9wr7qcca51h6kqn9cgwbxvxfj15fhwskh4n"))))
11359 (build-system r-build-system)
11360 (propagated-inputs
11361 `(("r-fs" ,r-fs)
11362 ("r-glue" ,r-glue)
11363 ("r-httr" ,r-httr)
11364 ("r-jsonlite" ,r-jsonlite)
11365 ("r-rlang" ,r-rlang)
11366 ("r-withr" ,r-withr)))
11367 (native-inputs
11368 `(("r-knitr" ,r-knitr)))
11369 (home-page "https://gargle.r-lib.org")
11370 (synopsis "Utilities for working with Google APIs")
11371 (description
11372 "This package provides utilities for working with Google APIs. This
11373 includes functions and classes for handling common credential types and for
11374 preparing, executing, and processing HTTP requests.")
11375 (license license:expat)))
11376
11377 (define-public r-bigrquery
11378 (package
11379 (name "r-bigrquery")
11380 (version "1.3.1")
11381 (source
11382 (origin
11383 (method url-fetch)
11384 (uri (cran-uri "bigrquery" version))
11385 (sha256
11386 (base32
11387 "0mq03sqv5lkyn3dlxvyd6lqqwnryfdaqh05pjvngzp194fxmd9cy"))))
11388 (build-system r-build-system)
11389 (propagated-inputs
11390 `(("r-assertthat" ,r-assertthat)
11391 ("r-bit64" ,r-bit64)
11392 ("r-curl" ,r-curl)
11393 ("r-dbi" ,r-dbi)
11394 ("r-gargle" ,r-gargle)
11395 ("r-glue" ,r-glue)
11396 ("r-httr" ,r-httr)
11397 ("r-jsonlite" ,r-jsonlite)
11398 ("r-prettyunits" ,r-prettyunits)
11399 ("r-progress" ,r-progress)
11400 ("r-rapidjsonr" ,r-rapidjsonr)
11401 ("r-rcpp" ,r-rcpp)
11402 ("r-rlang" ,r-rlang)
11403 ("r-tibble" ,r-tibble)))
11404 (home-page "https://github.com/rstats-db/bigrquery")
11405 (synopsis "R interface to Google's BigQuery API")
11406 (description
11407 "This package provides an R interface to Google's BigQuery database.")
11408 (license license:gpl3)))
11409
11410 (define-public r-gmp
11411 (package
11412 (name "r-gmp")
11413 (version "0.6-0")
11414 (source
11415 (origin
11416 (method url-fetch)
11417 (uri (cran-uri "gmp" version))
11418 (sha256
11419 (base32
11420 "1c9vpr6j6h5f6dm9l535nscl66rvr8sba5az2kswjhmzwb9xpjxc"))))
11421 (build-system r-build-system)
11422 (arguments
11423 '(#:phases
11424 (modify-phases %standard-phases
11425 (add-after 'unpack 'set-CC
11426 (lambda _ (setenv "CC" "gcc") #t)))))
11427 (inputs `(("gmp" ,gmp)))
11428 (home-page "https://cran.r-project.org/web/packages/gmp")
11429 (synopsis "Multiple precision arithmetic")
11430 (description
11431 "This package supports multiple precision arithmetic (big integers and
11432 rationals, prime number tests, matrix computation), \"arithmetic without
11433 limitations\" using the GNU Multiple Precision library.")
11434 ;; Any version of the GPL.
11435 (license license:gpl3+)))
11436
11437 (define-public r-rmpfr
11438 (package
11439 (name "r-rmpfr")
11440 (version "0.8-1")
11441 (source
11442 (origin
11443 (method url-fetch)
11444 (uri (cran-uri "Rmpfr" version))
11445 (sha256
11446 (base32
11447 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
11448 (properties `((upstream-name . "Rmpfr")))
11449 (build-system r-build-system)
11450 (inputs
11451 `(("mpfr" ,mpfr)
11452 ("gmp" ,gmp)))
11453 (propagated-inputs
11454 `(("r-gmp" ,r-gmp)))
11455 (native-inputs
11456 `(("pkg-config" ,pkg-config)))
11457 (home-page "http://rmpfr.r-forge.r-project.org/")
11458 (synopsis "R bindings to the MPFR library")
11459 (description
11460 "This package supports arithmetic (via S4 classes and methods) for
11461 arbitrary precision floating point numbers, including transcendental
11462 functions. To this end, the package interfaces with the @dfn{Multiple
11463 Precision Floating-Point Reliable} (MPFR) library.")
11464 (license license:gpl2+)))
11465
11466 (define-public r-assertive-base
11467 (package
11468 (name "r-assertive-base")
11469 (version "0.0-7")
11470 (source
11471 (origin
11472 (method url-fetch)
11473 (uri (cran-uri "assertive.base" version))
11474 (sha256
11475 (base32
11476 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
11477 (properties
11478 `((upstream-name . "assertive.base")))
11479 (build-system r-build-system)
11480 (home-page "https://bitbucket.org/richierocks/assertive.base")
11481 (synopsis "Core of the assertive package")
11482 (description
11483 "This package provides a minimal set of predicates and assertions used by
11484 the assertive package. This is mainly for use by other package developers who
11485 want to include run-time testing features in their own packages.")
11486 (license license:gpl3+)))
11487
11488 (define-public r-assertive-properties
11489 (package
11490 (name "r-assertive-properties")
11491 (version "0.0-4")
11492 (source
11493 (origin
11494 (method url-fetch)
11495 (uri (cran-uri "assertive.properties" version))
11496 (sha256
11497 (base32
11498 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
11499 (properties
11500 `((upstream-name . "assertive.properties")))
11501 (build-system r-build-system)
11502 (propagated-inputs
11503 `(("r-assertive-base" ,r-assertive-base)))
11504 (home-page "https://bitbucket.org/richierocks/assertive.properties")
11505 (synopsis "Assertions to check properties of variables")
11506 (description
11507 "This package provides a set of predicates and assertions for checking
11508 the properties of variables, such as length, names and attributes. This is
11509 mainly for use by other package developers who want to include run-time
11510 testing features in their own packages.")
11511 (license license:gpl3+)))
11512
11513 (define-public r-assertive-numbers
11514 (package
11515 (name "r-assertive-numbers")
11516 (version "0.0-2")
11517 (source
11518 (origin
11519 (method url-fetch)
11520 (uri (cran-uri "assertive.numbers" version))
11521 (sha256
11522 (base32
11523 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
11524 (properties
11525 `((upstream-name . "assertive.numbers")))
11526 (build-system r-build-system)
11527 (propagated-inputs
11528 `(("r-assertive-base" ,r-assertive-base)))
11529 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
11530 (synopsis "Assertions to check properties of numbers")
11531 (description
11532 "This package provides a set of predicates and assertions for checking
11533 the properties of numbers. This is mainly for use by other package developers
11534 who want to include run-time testing features in their own packages.")
11535 (license license:gpl3+)))
11536
11537 (define-public r-assertive-sets
11538 (package
11539 (name "r-assertive-sets")
11540 (version "0.0-3")
11541 (source
11542 (origin
11543 (method url-fetch)
11544 (uri (cran-uri "assertive.sets" version))
11545 (sha256
11546 (base32
11547 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
11548 (properties
11549 `((upstream-name . "assertive.sets")))
11550 (build-system r-build-system)
11551 (propagated-inputs
11552 `(("r-assertive-base" ,r-assertive-base)))
11553 (home-page "https://bitbucket.org/richierocks/assertive.sets")
11554 (synopsis "Assertions to check properties of sets")
11555 (description
11556 "This package provides a set of predicates and assertions for checking
11557 the properties of sets. This is mainly for use by other package developers
11558 who want to include run-time testing features in their own packages.")
11559 (license license:gpl3+)))
11560
11561 (define-public r-assertive-matrices
11562 (package
11563 (name "r-assertive-matrices")
11564 (version "0.0-2")
11565 (source
11566 (origin
11567 (method url-fetch)
11568 (uri (cran-uri "assertive.matrices" version))
11569 (sha256
11570 (base32
11571 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
11572 (properties
11573 `((upstream-name . "assertive.matrices")))
11574 (build-system r-build-system)
11575 (propagated-inputs
11576 `(("r-assertive-base" ,r-assertive-base)))
11577 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
11578 (synopsis "Assertions to check properties of matrices")
11579 (description
11580 "This package provides a set of predicates and assertions for checking
11581 the properties of matrices. This is mainly for use by other package
11582 developers who want to include run-time testing features in their own
11583 packages.")
11584 (license license:gpl3+)))
11585
11586 (define-public r-assertive-models
11587 (package
11588 (name "r-assertive-models")
11589 (version "0.0-2")
11590 (source
11591 (origin
11592 (method url-fetch)
11593 (uri (cran-uri "assertive.models" version))
11594 (sha256
11595 (base32
11596 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
11597 (properties
11598 `((upstream-name . "assertive.models")))
11599 (build-system r-build-system)
11600 (propagated-inputs
11601 `(("r-assertive-base" ,r-assertive-base)))
11602 (home-page "https://bitbucket.org/richierocks/assertive.models")
11603 (synopsis "Assertions to check properties of models")
11604 (description
11605 "This package provides a set of predicates and assertions for checking
11606 the properties of models. This is mainly for use by other package developers
11607 who want to include run-time testing features in their own packages.")
11608 (license license:gpl3+)))
11609
11610 (define-public r-assertive-reflection
11611 (package
11612 (name "r-assertive-reflection")
11613 (version "0.0-5")
11614 (source
11615 (origin
11616 (method url-fetch)
11617 (uri (cran-uri "assertive.reflection" version))
11618 (sha256
11619 (base32
11620 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
11621 (properties
11622 `((upstream-name . "assertive.reflection")))
11623 (build-system r-build-system)
11624 (propagated-inputs
11625 `(("r-assertive-base" ,r-assertive-base)))
11626 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
11627 (synopsis "Assertions for checking the state of R")
11628 (description
11629 "This package provides a set of predicates and assertions for checking
11630 the state and capabilities of R, the operating system it is running on, and
11631 the IDE being used. This is mainly for use by other package developers who
11632 want to include run-time testing features in their own packages.")
11633 (license license:gpl3+)))
11634
11635 (define-public r-assertive-types
11636 (package
11637 (name "r-assertive-types")
11638 (version "0.0-3")
11639 (source
11640 (origin
11641 (method url-fetch)
11642 (uri (cran-uri "assertive.types" version))
11643 (sha256
11644 (base32
11645 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
11646 (properties
11647 `((upstream-name . "assertive.types")))
11648 (build-system r-build-system)
11649 (propagated-inputs
11650 `(("r-assertive-base" ,r-assertive-base)
11651 ("r-assertive-properties" ,r-assertive-properties)
11652 ("r-codetools" ,r-codetools)))
11653 (home-page "https://bitbucket.org/richierocks/assertive.types")
11654 (synopsis "Assertions to check types of variables")
11655 (description
11656 "This package provides a set of predicates and assertions for checking
11657 the types of variables. This is mainly for use by other package developers
11658 who want to include run-time testing features in their own packages.")
11659 (license license:gpl3+)))
11660
11661 (define-public r-assertive-files
11662 (package
11663 (name "r-assertive-files")
11664 (version "0.0-2")
11665 (source
11666 (origin
11667 (method url-fetch)
11668 (uri (cran-uri "assertive.files" version))
11669 (sha256
11670 (base32
11671 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
11672 (properties
11673 `((upstream-name . "assertive.files")))
11674 (build-system r-build-system)
11675 (propagated-inputs
11676 `(("r-assertive-base" ,r-assertive-base)
11677 ("r-assertive-numbers" ,r-assertive-numbers)))
11678 (home-page "https://bitbucket.org/richierocks/assertive.files")
11679 (synopsis "Assertions to check properties of files")
11680 (description
11681 "This package provides a set of predicates and assertions for checking
11682 the properties of files and connections. This is mainly for use by other
11683 package developers who want to include run-time testing features in their own
11684 packages.")
11685 (license license:gpl3+)))
11686
11687 (define-public r-assertive-code
11688 (package
11689 (name "r-assertive-code")
11690 (version "0.0-3")
11691 (source
11692 (origin
11693 (method url-fetch)
11694 (uri (cran-uri "assertive.code" version))
11695 (sha256
11696 (base32
11697 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11698 (properties
11699 `((upstream-name . "assertive.code")))
11700 (build-system r-build-system)
11701 (propagated-inputs
11702 `(("r-assertive-base" ,r-assertive-base)
11703 ("r-assertive-properties" ,r-assertive-properties)
11704 ("r-assertive-types" ,r-assertive-types)))
11705 (home-page "https://bitbucket.org/richierocks/assertive.code")
11706 (synopsis "Assertions to check properties of code")
11707 (description
11708 "This package provides a set of predicates and assertions for checking
11709 the properties of code. This is mainly for use by other package developers
11710 who want to include run-time testing features in their own packages.")
11711 (license license:gpl3+)))
11712
11713 (define-public r-assertive-datetimes
11714 (package
11715 (name "r-assertive-datetimes")
11716 (version "0.0-3")
11717 (source
11718 (origin
11719 (method url-fetch)
11720 (uri (cran-uri "assertive.datetimes" version))
11721 (sha256
11722 (base32
11723 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
11724 (properties
11725 `((upstream-name . "assertive.datetimes")))
11726 (build-system r-build-system)
11727 (propagated-inputs
11728 `(("r-assertive-base" ,r-assertive-base)
11729 ("r-assertive-types" ,r-assertive-types)))
11730 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11731 (synopsis "Assertions to check properties of dates and times")
11732 (description
11733 "This package provides a set of predicates and assertions for checking
11734 the properties of dates and times. This is mainly for use by other package
11735 developers who want to include run-time testing features in their own
11736 packages.")
11737 (license license:gpl3+)))
11738
11739 (define-public r-assertive-strings
11740 (package
11741 (name "r-assertive-strings")
11742 (version "0.0-3")
11743 (source
11744 (origin
11745 (method url-fetch)
11746 (uri (cran-uri "assertive.strings" version))
11747 (sha256
11748 (base32
11749 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11750 (properties
11751 `((upstream-name . "assertive.strings")))
11752 (build-system r-build-system)
11753 (propagated-inputs
11754 `(("r-assertive-base" ,r-assertive-base)
11755 ("r-assertive-types" ,r-assertive-types)
11756 ("r-stringi" ,r-stringi)))
11757 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11758 (synopsis "Assertions to check properties of strings")
11759 (description
11760 "This package provides a set of predicates and assertions for checking
11761 the properties of strings. This is mainly for use by other package developers
11762 who want to include run-time testing features in their own packages.")
11763 (license license:gpl3+)))
11764
11765 (define-public r-assertive-data-us
11766 (package
11767 (name "r-assertive-data-us")
11768 (version "0.0-2")
11769 (source
11770 (origin
11771 (method url-fetch)
11772 (uri (cran-uri "assertive.data.us" version))
11773 (sha256
11774 (base32
11775 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11776 (properties
11777 `((upstream-name . "assertive.data.us")))
11778 (build-system r-build-system)
11779 (propagated-inputs
11780 `(("r-assertive-base" ,r-assertive-base)
11781 ("r-assertive-strings" ,r-assertive-strings)))
11782 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11783 (synopsis "Assertions to check properties of strings")
11784 (description
11785 "This package provides a set of predicates and assertions for checking
11786 the properties of US-specific complex data types. This is mainly for use by
11787 other package developers who want to include run-time testing features in
11788 their own packages.")
11789 (license license:gpl3+)))
11790
11791 (define-public r-assertive-data-uk
11792 (package
11793 (name "r-assertive-data-uk")
11794 (version "0.0-2")
11795 (source
11796 (origin
11797 (method url-fetch)
11798 (uri (cran-uri "assertive.data.uk" version))
11799 (sha256
11800 (base32
11801 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11802 (properties
11803 `((upstream-name . "assertive.data.uk")))
11804 (build-system r-build-system)
11805 (propagated-inputs
11806 `(("r-assertive-base" ,r-assertive-base)
11807 ("r-assertive-strings" ,r-assertive-strings)))
11808 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11809 (synopsis "Assertions to check properties of strings")
11810 (description
11811 "This package provides a set of predicates and assertions for checking
11812 the properties of UK-specific complex data types. This is mainly for use by
11813 other package developers who want to include run-time testing features in
11814 their own packages.")
11815 (license license:gpl3+)))
11816
11817 (define-public r-assertive-data
11818 (package
11819 (name "r-assertive-data")
11820 (version "0.0-3")
11821 (source
11822 (origin
11823 (method url-fetch)
11824 (uri (cran-uri "assertive.data" version))
11825 (sha256
11826 (base32
11827 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11828 (properties
11829 `((upstream-name . "assertive.data")))
11830 (build-system r-build-system)
11831 (propagated-inputs
11832 `(("r-assertive-base" ,r-assertive-base)
11833 ("r-assertive-strings" ,r-assertive-strings)))
11834 (home-page "https://bitbucket.org/richierocks/assertive.data")
11835 (synopsis "Assertions to check properties of data")
11836 (description
11837 "This package provides a set of predicates and assertions for checking
11838 the properties of (country independent) complex data types. This is mainly
11839 for use by other package developers who want to include run-time testing
11840 features in their own packages.")
11841 (license license:gpl3+)))
11842
11843 (define-public r-assertive
11844 (package
11845 (name "r-assertive")
11846 (version "0.3-6")
11847 (source
11848 (origin
11849 (method url-fetch)
11850 (uri (cran-uri "assertive" version))
11851 (sha256
11852 (base32
11853 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
11854 (build-system r-build-system)
11855 (propagated-inputs
11856 `(("r-assertive-base" ,r-assertive-base)
11857 ("r-assertive-code" ,r-assertive-code)
11858 ("r-assertive-data" ,r-assertive-data)
11859 ("r-assertive-data-uk" ,r-assertive-data-uk)
11860 ("r-assertive-data-us" ,r-assertive-data-us)
11861 ("r-assertive-datetimes" ,r-assertive-datetimes)
11862 ("r-assertive-files" ,r-assertive-files)
11863 ("r-assertive-matrices" ,r-assertive-matrices)
11864 ("r-assertive-models" ,r-assertive-models)
11865 ("r-assertive-numbers" ,r-assertive-numbers)
11866 ("r-assertive-properties" ,r-assertive-properties)
11867 ("r-assertive-reflection" ,r-assertive-reflection)
11868 ("r-assertive-sets" ,r-assertive-sets)
11869 ("r-assertive-strings" ,r-assertive-strings)
11870 ("r-assertive-types" ,r-assertive-types)
11871 ("r-knitr" ,r-knitr)))
11872 (native-inputs
11873 `(("r-knitr" ,r-knitr)))
11874 (home-page "https://bitbucket.org/richierocks/assertive")
11875 (synopsis "Readable check functions to ensure code integrity")
11876 (description
11877 "This package provides lots of predicates (@code{is_*} functions) to
11878 check the state of your variables, and assertions (@code{assert_*} functions)
11879 to throw errors if they aren't in the right form.")
11880 (license license:gpl3+)))
11881
11882 (define-public r-dotcall64
11883 (package
11884 (name "r-dotcall64")
11885 (version "1.0-0")
11886 (source
11887 (origin
11888 (method url-fetch)
11889 (uri (cran-uri "dotCall64" version))
11890 (sha256
11891 (base32
11892 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11893 (properties `((upstream-name . "dotCall64")))
11894 (build-system r-build-system)
11895 (native-inputs `(("gfortran" ,gfortran)))
11896 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11897 (synopsis "Enhanced foreign function interface supporting long vectors")
11898 (description
11899 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11900 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11901 supports long vectors, arguments of type 64-bit integer, and provides a
11902 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11903 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11904 (license license:gpl2+)))
11905
11906 (define-public r-spam
11907 (package
11908 (name "r-spam")
11909 (version "2.5-1")
11910 (source
11911 (origin
11912 (method url-fetch)
11913 (uri (cran-uri "spam" version))
11914 (sha256
11915 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11916 (build-system r-build-system)
11917 (propagated-inputs
11918 `(("r-dotcall64" ,r-dotcall64)))
11919 (native-inputs `(("gfortran" ,gfortran)))
11920 (home-page "https://www.math.uzh.ch/pages/spam/")
11921 (synopsis "Sparse matrix algebra")
11922 (description
11923 "This package provides a set of functions for sparse matrix algebra.
11924 Differences with other sparse matrix packages are:
11925
11926 @enumerate
11927 @item it only supports (essentially) one sparse matrix format;
11928 @item it is based on transparent and simple structure(s);
11929 @item it is tailored for MCMC calculations within G(M)RF;
11930 @item and it is fast and scalable (with the extension package @code{spam64}).
11931 @end enumerate\n")
11932 ;; Either of these licenses
11933 (license (list license:bsd-3 license:lgpl2.0))))
11934
11935 (define-public r-fields
11936 (package
11937 (name "r-fields")
11938 (version "10.3")
11939 (source
11940 (origin
11941 (method url-fetch)
11942 (uri (cran-uri "fields" version))
11943 (sha256
11944 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11945 (build-system r-build-system)
11946 (propagated-inputs
11947 `(("r-maps" ,r-maps)
11948 ("r-spam" ,r-spam)))
11949 (native-inputs
11950 `(("gfortran" ,gfortran)))
11951 (home-page "https://www.image.ucar.edu/fields")
11952 (synopsis "Tools for spatial data")
11953 (description
11954 "This is a package for curve, surface and function fitting with an
11955 emphasis on splines, spatial data and spatial statistics. The major methods
11956 include cubic, and thin plate splines, Kriging, and compactly supported
11957 covariance functions for large data sets.")
11958 (license license:gpl2+)))
11959
11960 (define-public r-spatialextremes
11961 (package
11962 (name "r-spatialextremes")
11963 (version "2.0-8")
11964 (source
11965 (origin
11966 (method url-fetch)
11967 (uri (cran-uri "SpatialExtremes" version))
11968 (sha256
11969 (base32
11970 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11971 (properties
11972 `((upstream-name . "SpatialExtremes")))
11973 (build-system r-build-system)
11974 (propagated-inputs
11975 `(("r-fields" ,r-fields)
11976 ("r-maps" ,r-maps)))
11977 (home-page "http://spatialextremes.r-forge.r-project.org/")
11978 (synopsis "Modelling spatial extremes")
11979 (description
11980 "This package provides tools for the statistical modelling of spatial
11981 extremes using max-stable processes, copula or Bayesian hierarchical models.
11982 More precisely, this package allows (conditional) simulations from various
11983 parametric max-stable models, analysis of the extremal spatial dependence, the
11984 fitting of such processes using composite likelihoods or least square (simple
11985 max-stable processes only), model checking and selection and prediction.")
11986 (license license:gpl2+)))
11987
11988 (define-public r-drc
11989 (package
11990 (name "r-drc")
11991 (version "3.0-1")
11992 (source
11993 (origin
11994 (method url-fetch)
11995 (uri (cran-uri "drc" version))
11996 (sha256
11997 (base32
11998 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11999 (build-system r-build-system)
12000 (propagated-inputs
12001 `(("r-car" ,r-car)
12002 ("r-gtools" ,r-gtools)
12003 ("r-mass" ,r-mass)
12004 ("r-multcomp" ,r-multcomp)
12005 ("r-plotrix" ,r-plotrix)
12006 ("r-scales" ,r-scales)))
12007 (home-page "https://cran.r-project.org/web/packages/drc")
12008 (synopsis "Analysis of dose-response curves")
12009 (description
12010 "This package provides a suite of flexible and versatile model fitting
12011 and after-fitting functions for the analysis of dose-response data.")
12012 (license license:gpl2+)))
12013
12014 (define-public r-rmeta
12015 (package
12016 (name "r-rmeta")
12017 (version "3.0")
12018 (source
12019 (origin
12020 (method url-fetch)
12021 (uri (cran-uri "rmeta" version))
12022 (sha256
12023 (base32
12024 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
12025 (build-system r-build-system)
12026 (home-page "https://cran.r-project.org/web/packages/rmeta")
12027 (synopsis "Tools for meta-analysis")
12028 (description
12029 "This package provides functions for simple fixed and random effects
12030 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
12031 draws standard summary plots, funnel plots, and computes summaries and tests
12032 for association and heterogeneity.")
12033 (license license:gpl2)))
12034
12035 (define-public r-bootstrap
12036 (package
12037 (name "r-bootstrap")
12038 (version "2019.6")
12039 (source
12040 (origin
12041 (method url-fetch)
12042 (uri (cran-uri "bootstrap" version))
12043 (sha256
12044 (base32
12045 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
12046 (build-system r-build-system)
12047 (native-inputs `(("gfortran" ,gfortran)))
12048 (home-page "https://cran.r-project.org/web/packages/bootstrap")
12049 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
12050 (description
12051 "This package provides software and data for the book \"An Introduction
12052 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
12053 This package is primarily provided for projects already based on it, and for
12054 support of the book. New projects should preferentially use the recommended
12055 package \"boot\".")
12056 (license license:bsd-3)))
12057
12058 (define-public r-survivalroc
12059 (package
12060 (name "r-survivalroc")
12061 (version "1.0.3")
12062 (source
12063 (origin
12064 (method url-fetch)
12065 (uri (cran-uri "survivalROC" version))
12066 (sha256
12067 (base32
12068 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
12069 (properties `((upstream-name . "survivalROC")))
12070 (build-system r-build-system)
12071 (home-page "https://cran.r-project.org/web/packages/survivalROC")
12072 (synopsis "Time-dependent ROC curve estimation from censored survival data")
12073 (description
12074 "Compute time-dependent ROC curve from censored survival data using
12075 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
12076 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
12077 (license license:gpl2+)))
12078
12079 (define-public r-longitudinal
12080 (package
12081 (name "r-longitudinal")
12082 (version "1.1.12")
12083 (source
12084 (origin
12085 (method url-fetch)
12086 (uri (cran-uri "longitudinal" version))
12087 (sha256
12088 (base32
12089 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
12090 (build-system r-build-system)
12091 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
12092 (home-page "http://strimmerlab.org/software/longitudinal/")
12093 (synopsis "Analysis of multiple time course data")
12094 (description
12095 "This package contains general data structures and functions for
12096 longitudinal data with multiple variables, repeated measurements, and
12097 irregularly spaced time points. It also implements a shrinkage estimator of
12098 dynamical correlation and dynamical covariance.")
12099 (license license:gpl3+)))
12100
12101 (define-public r-genenet
12102 (package
12103 (name "r-genenet")
12104 (version "1.2.15")
12105 (source
12106 (origin
12107 (method url-fetch)
12108 (uri (cran-uri "GeneNet" version))
12109 (sha256
12110 (base32
12111 "11ba6ahsk3x9alvcw8bai2bpg84ki1m8nadrjjdhjg65svhw8njm"))))
12112 (properties `((upstream-name . "GeneNet")))
12113 (build-system r-build-system)
12114 (propagated-inputs
12115 `(("r-corpcor" ,r-corpcor)
12116 ("r-fdrtool" ,r-fdrtool)
12117 ("r-longitudinal" ,r-longitudinal)))
12118 (home-page "http://strimmerlab.org/software/genenet/")
12119 (synopsis "Modeling and inferring gene networks")
12120 (description
12121 "This package analyzes gene expression (time series) data with focus on
12122 the inference of gene networks. In particular, GeneNet implements the methods
12123 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
12124 for learning large-scale gene association networks (including assignment of
12125 putative directions).")
12126 (license license:gpl3+)))
12127
12128 (define-public r-rbamtools
12129 (package
12130 (name "r-rbamtools")
12131 (version "2.16.17")
12132 (source
12133 (origin
12134 (method url-fetch)
12135 (uri (cran-uri "rbamtools" version))
12136 (sha256
12137 (base32
12138 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
12139 (build-system r-build-system)
12140 (inputs `(("zlib" ,zlib)))
12141 (propagated-inputs
12142 `(("r-refgenome" ,r-refgenome)))
12143 (home-page "https://cran.r-project.org/web/packages/rbamtools")
12144 (synopsis "Read and write BAM (binary alignment) files")
12145 (description
12146 "This package provides an R interface to functions of the SAMtools
12147 library.")
12148 (license license:artistic2.0)))
12149
12150 (define-public r-protviz
12151 (package
12152 (name "r-protviz")
12153 (version "0.6.8")
12154 (source
12155 (origin
12156 (method url-fetch)
12157 (uri (cran-uri "protViz" version))
12158 (sha256
12159 (base32
12160 "0rn8fjg7791a4j2k1kk1jwx40xz20bfaavvflmhyzpl398vmmy3a"))))
12161 (properties `((upstream-name . "protViz")))
12162 (build-system r-build-system)
12163 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
12164 (home-page "https://github.com/protViz/protViz/")
12165 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
12166 (description
12167 "This package helps with quality checks, visualizations and analysis of
12168 mass spectrometry data, coming from proteomics experiments. The package is
12169 developed, tested and used at the Functional Genomics Center Zurich, where it
12170 is used mainly for prototyping, teaching, and having fun with proteomics data.
12171 But it can also be used to do data analysis for small scale data sets.")
12172 (license license:gpl3)))
12173
12174 (define-public r-cmprsk
12175 (package
12176 (name "r-cmprsk")
12177 (version "2.2-10")
12178 (source
12179 (origin
12180 (method url-fetch)
12181 (uri (cran-uri "cmprsk" version))
12182 (sha256
12183 (base32 "1xnx2zanw548prxsw2zw5cddkkg6kj97jgyzw67achq5mnsvfbg8"))))
12184 (build-system r-build-system)
12185 (propagated-inputs
12186 `(("r-survival" ,r-survival)))
12187 (native-inputs
12188 `(("gfortran" ,gfortran)))
12189 (home-page "https://cran.r-project.org/web/packages/cmprsk")
12190 (synopsis "Subdistribution analysis of competing risks")
12191 (description
12192 "This package provides tool for estimation, testing and regression
12193 modeling of subdistribution functions in competing risks, as described in
12194 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
12195 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
12196 A proportional hazards model for the subdistribution of a competing risk,
12197 JASA, 94:496-509.")
12198 (license license:gpl2+)))
12199
12200 (define-public r-etm
12201 (package
12202 (name "r-etm")
12203 (version "1.1")
12204 (source
12205 (origin
12206 (method url-fetch)
12207 (uri (cran-uri "etm" version))
12208 (sha256
12209 (base32
12210 "02yvh473l5qajaymhsxwb235a9r7q3nsig9a9mrfca68xih8yvgd"))))
12211 (build-system r-build-system)
12212 (propagated-inputs
12213 `(("r-data-table" ,r-data-table)
12214 ("r-lattice" ,r-lattice)
12215 ("r-rcpp" ,r-rcpp)
12216 ("r-rcpparmadillo" ,r-rcpparmadillo)
12217 ("r-survival" ,r-survival)))
12218 (home-page "https://cran.r-project.org/web/packages/etm")
12219 (synopsis "Empirical transition matrix")
12220 (description
12221 "The @dfn{empirical transition matrix} (etm) package estimates
12222 the matrix of transition probabilities for any time-inhomogeneous multistate
12223 model with finite state space using the Aalen-Johansen estimator.")
12224 (license license:expat)))
12225
12226 (define-public r-epi
12227 (package
12228 (name "r-epi")
12229 (version "2.41")
12230 (source
12231 (origin
12232 (method url-fetch)
12233 (uri (cran-uri "Epi" version))
12234 (sha256
12235 (base32
12236 "09miba6zk63bwc79n3030kgzlvy3whkq968pgqyghxnsjfh5ckp5"))))
12237 (properties `((upstream-name . "Epi")))
12238 (build-system r-build-system)
12239 (propagated-inputs
12240 `(("r-cmprsk" ,r-cmprsk)
12241 ("r-data-table" ,r-data-table)
12242 ("r-etm" ,r-etm)
12243 ("r-mass" ,r-mass)
12244 ("r-matrix" ,r-matrix)
12245 ("r-mgcv" ,r-mgcv)
12246 ("r-numderiv" ,r-numderiv)
12247 ("r-plyr" ,r-plyr)
12248 ("r-survival" ,r-survival)
12249 ("r-zoo" ,r-zoo)))
12250 (home-page "https://BendixCarstensen.com/Epi/")
12251 (synopsis "Statistical analysis in epidemiology")
12252 (description
12253 "This package provides functions for demographic and epidemiological
12254 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
12255 particular representation, manipulation and simulation of multistate data -
12256 the Lexis suite of functions, which includes interfaces to the @code{mstate},
12257 @code{etm} and @code{cmprsk} packages. It also contains functions for
12258 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
12259 data and some useful functions for tabulation and plotting, as well as a
12260 number of epidemiological data sets.")
12261 (license license:gpl2)))
12262
12263 (define-public r-ppls
12264 (package
12265 (name "r-ppls")
12266 (version "1.6-1.1")
12267 (source
12268 (origin
12269 (method url-fetch)
12270 (uri (cran-uri "ppls" version))
12271 (sha256
12272 (base32
12273 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
12274 (build-system r-build-system)
12275 (propagated-inputs `(("r-mass" ,r-mass)))
12276 (home-page "https://cran.r-project.org/web/packages/ppls")
12277 (synopsis "Penalized partial least squares")
12278 (description
12279 "This package contains linear and nonlinear regression methods based on
12280 partial least squares and penalization techniques. Model parameters are
12281 selected via cross-validation, and confidence intervals ans tests for the
12282 regression coefficients can be conducted via jackknifing.")
12283 (license license:gpl2+)))
12284
12285 (define-public r-huge
12286 (package
12287 (name "r-huge")
12288 (version "1.3.4.1")
12289 (source
12290 (origin
12291 (method url-fetch)
12292 (uri (cran-uri "huge" version))
12293 (sha256
12294 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
12295 (build-system r-build-system)
12296 (propagated-inputs
12297 `(("r-igraph" ,r-igraph)
12298 ("r-mass" ,r-mass)
12299 ("r-matrix" ,r-matrix)
12300 ("r-rcpp" ,r-rcpp)
12301 ("r-rcppeigen" ,r-rcppeigen)))
12302 (home-page "https://cran.r-project.org/web/packages/huge")
12303 (synopsis "High-dimensional undirected graph estimation")
12304 (description
12305 "This package provides a general framework for high-dimensional
12306 undirected graph estimation. It integrates data preprocessing, neighborhood
12307 screening, graph estimation, and model selection techniques into a pipeline.")
12308 (license license:gpl2)))
12309
12310 (define-public r-parcor
12311 (package
12312 (name "r-parcor")
12313 (version "0.2-6")
12314 (source
12315 (origin
12316 (method url-fetch)
12317 (uri (cran-uri "parcor" version))
12318 (sha256
12319 (base32
12320 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
12321 (build-system r-build-system)
12322 (propagated-inputs
12323 `(("r-epi" ,r-epi)
12324 ("r-genenet" ,r-genenet)
12325 ("r-glmnet" ,r-glmnet)
12326 ("r-mass" ,r-mass)
12327 ("r-ppls" ,r-ppls)))
12328 (home-page "https://cran.r-project.org/web/packages/parcor")
12329 (synopsis "Regularized estimation of partial correlation matrices")
12330 (description
12331 "This package estimates the matrix of partial correlations based on
12332 different regularized regression methods: lasso, adaptive lasso, PLS, and
12333 Ridge Regression. In addition, the package provides model selection for
12334 lasso, adaptive lasso and Ridge regression based on cross-validation.")
12335 (license license:gpl2+)))
12336
12337 (define-public r-mcmc
12338 (package
12339 (name "r-mcmc")
12340 (version "0.9-7")
12341 (source
12342 (origin
12343 (method url-fetch)
12344 (uri (cran-uri "mcmc" version))
12345 (sha256
12346 (base32
12347 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
12348 (build-system r-build-system)
12349 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
12350 (synopsis "Markov chain Monte Carlo")
12351 (description
12352 "This package simulates continuous distributions of random vectors using
12353 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
12354 function that evaluates the log unnormalized density. Algorithms are random
12355 walk Metropolis algorithm (function @code{metrop}), simulated
12356 tempering (function @code{temper}), and morphometric random walk
12357 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
12358 by change of variable.")
12359 (license license:expat)))
12360
12361 (define-public r-listenv
12362 (package
12363 (name "r-listenv")
12364 (version "0.8.0")
12365 (source
12366 (origin
12367 (method url-fetch)
12368 (uri (cran-uri "listenv" version))
12369 (sha256
12370 (base32
12371 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
12372 (build-system r-build-system)
12373 (native-inputs
12374 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12375 (home-page "https://github.com/HenrikBengtsson/listenv")
12376 (synopsis "Environments behaving (almost) as lists")
12377 (description
12378 "This package implements list environments. List environments are
12379 environments that have list-like properties. For instance, the elements of a
12380 list environment are ordered and can be accessed and iterated over using index
12381 subsetting.")
12382 (license license:lgpl2.1+)))
12383
12384 (define-public r-globals
12385 (package
12386 (name "r-globals")
12387 (version "0.12.5")
12388 (source
12389 (origin
12390 (method url-fetch)
12391 (uri (cran-uri "globals" version))
12392 (sha256
12393 (base32
12394 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
12395 (build-system r-build-system)
12396 (propagated-inputs
12397 `(("r-codetools" ,r-codetools)))
12398 (home-page "https://github.com/HenrikBengtsson/globals")
12399 (synopsis "Identify global objects in R expressions")
12400 (description
12401 "This package provides tools to identify global (\"unknown\" or \"free\")
12402 objects in R expressions by code inspection using various strategies, e.g.
12403 conservative or liberal. The objective of this package is to make it as
12404 simple as possible to identify global objects for the purpose of exporting
12405 them in distributed compute environments.")
12406 (license license:lgpl2.1+)))
12407
12408 (define-public r-future
12409 (package
12410 (name "r-future")
12411 (version "1.18.0")
12412 (source
12413 (origin
12414 (method url-fetch)
12415 (uri (cran-uri "future" version))
12416 (sha256
12417 (base32
12418 "01fp8kgjf0k6c83q1w3dy9z90g72cc9d0004d1qw6n1j65nwxg4f"))))
12419 (build-system r-build-system)
12420 (propagated-inputs
12421 `(("r-digest" ,r-digest)
12422 ("r-globals" ,r-globals)
12423 ("r-listenv" ,r-listenv)))
12424 (native-inputs
12425 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12426 (home-page "https://github.com/HenrikBengtsson/future")
12427 (synopsis "Unified parallel and distributed processing in R")
12428 (description
12429 "The purpose of this package is to provide a lightweight and unified
12430 Future API for sequential and parallel processing of R expression via futures.
12431 This package implements sequential, multicore, multisession, and cluster
12432 futures. With these, R expressions can be evaluated on the local machine, in
12433 parallel a set of local machines, or distributed on a mix of local and remote
12434 machines. Extensions to this package implement additional backends for
12435 processing futures via compute cluster schedulers etc. Because of its unified
12436 API, there is no need to modify any code in order to switch from sequential on
12437 the local machine to, say, distributed processing on a remote compute cluster.")
12438 (license license:lgpl2.1+)))
12439
12440 (define-public r-future-apply
12441 (package
12442 (name "r-future-apply")
12443 (version "1.6.0")
12444 (source
12445 (origin
12446 (method url-fetch)
12447 (uri (cran-uri "future.apply" version))
12448 (sha256
12449 (base32
12450 "1zbfycjfvxnrigm6l2fd2zgnw96g0apiw426c73gkv3xv7bdy6ms"))))
12451 (properties `((upstream-name . "future.apply")))
12452 (build-system r-build-system)
12453 (propagated-inputs
12454 `(("r-future" ,r-future)
12455 ("r-globals" ,r-globals)))
12456 (native-inputs
12457 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12458 (home-page "https://github.com/HenrikBengtsson/future.apply")
12459 (synopsis "Apply function to elements in parallel using futures")
12460 (description
12461 "This package provides implementations of @code{apply()},
12462 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
12463 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
12464 can be resolved using any future-supported backend, e.g. parallel on the local
12465 machine or distributed on a compute cluster.")
12466 (license license:gpl2+)))
12467
12468 (define-public r-rsvd
12469 (package
12470 (name "r-rsvd")
12471 (version "1.0.3")
12472 (source
12473 (origin
12474 (method url-fetch)
12475 (uri (cran-uri "rsvd" version))
12476 (sha256
12477 (base32
12478 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
12479 (build-system r-build-system)
12480 (propagated-inputs
12481 `(("r-matrix" ,r-matrix)))
12482 (home-page "https://github.com/erichson/rSVD")
12483 (synopsis "Randomized singular value decomposition")
12484 (description
12485 "Low-rank matrix decompositions are fundamental tools and widely used for
12486 data analysis, dimension reduction, and data compression. Classically, highly
12487 accurate deterministic matrix algorithms are used for this task. However, the
12488 emergence of large-scale data has severely challenged our computational
12489 ability to analyze big data. The concept of randomness has been demonstrated
12490 as an effective strategy to quickly produce approximate answers to familiar
12491 problems such as the @dfn{singular value decomposition} (SVD). This package
12492 provides several randomized matrix algorithms such as the randomized singular
12493 value decomposition (@code{rsvd}), randomized principal component
12494 analysis (@code{rpca}), randomized robust principal component
12495 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
12496 and the randomized CUR decomposition (@code{rcur}). In addition several plot
12497 functions are provided.")
12498 (license license:gpl3+)))
12499
12500 (define-public r-sloop
12501 (package
12502 (name "r-sloop")
12503 (version "1.0.1")
12504 (source
12505 (origin
12506 (method url-fetch)
12507 (uri (cran-uri "sloop" version))
12508 (sha256
12509 (base32
12510 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
12511 (build-system r-build-system)
12512 (propagated-inputs
12513 `(("r-codetools" ,r-codetools)
12514 ("r-crayon" ,r-crayon)
12515 ("r-purrr" ,r-purrr)
12516 ("r-rlang" ,r-rlang)
12517 ("r-tibble" ,r-tibble)))
12518 (home-page "https://github.com/r-lib/sloop")
12519 (synopsis "Helpers for object-oriented programming in R")
12520 (description
12521 "This package provides a collection of helper functions designed to
12522 help you to better understand object oriented programming in R, particularly
12523 using @code{S3}.")
12524 (license license:gpl3)))
12525
12526 (define-public r-capushe
12527 (package
12528 (name "r-capushe")
12529 (version "1.1.1")
12530 (source
12531 (origin
12532 (method url-fetch)
12533 (uri (cran-uri "capushe" version))
12534 (sha256
12535 (base32
12536 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
12537 (build-system r-build-system)
12538 (propagated-inputs `(("r-mass" ,r-mass)))
12539 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
12540 (synopsis "Calibrating penalties using slope heuristics")
12541 (description
12542 "This package provides tools for the calibration of penalized criteria
12543 for model selection. The calibration methods available are based on the slope
12544 heuristics.")
12545 (license license:gpl2+)))
12546
12547 (define-public r-dorng
12548 (package
12549 (name "r-dorng")
12550 (version "1.8.2")
12551 (source
12552 (origin
12553 (method url-fetch)
12554 (uri (cran-uri "doRNG" version))
12555 (sha256
12556 (base32
12557 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
12558 (properties `((upstream-name . "doRNG")))
12559 (build-system r-build-system)
12560 (propagated-inputs
12561 `(("r-foreach" ,r-foreach)
12562 ("r-iterators" ,r-iterators)
12563 ("r-rngtools" ,r-rngtools)))
12564 (home-page "https://renozao.github.io/doRNG/")
12565 (synopsis "Generic reproducible parallel backend for foreach loops")
12566 (description
12567 "This package provides functions to perform reproducible parallel
12568 @code{foreach} loops, using independent random streams as generated by
12569 L'Ecuyer's combined multiple-recursive generator. It enables to easily
12570 convert standard @code{%dopar%} loops into fully reproducible loops,
12571 independently of the number of workers, the task scheduling strategy, or the
12572 chosen parallel environment and associated foreach backend.")
12573 (license license:gpl2+)))
12574
12575 (define-public r-blockmodeling
12576 (package
12577 (name "r-blockmodeling")
12578 (version "1.0.0")
12579 (source
12580 (origin
12581 (method url-fetch)
12582 (uri (cran-uri "blockmodeling" version))
12583 (sha256
12584 (base32
12585 "1z4w2kq0id0gb5d0lqcdaw3clplhzywarkpvvx3drivdypzl237i"))))
12586 (build-system r-build-system)
12587 (propagated-inputs
12588 `(("r-matrix" ,r-matrix)))
12589 (native-inputs `(("gfortran" ,gfortran)))
12590 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
12591 (synopsis "Generalized and classical blockmodeling of valued networks")
12592 (description
12593 "This package is primarily meant as an implementation of generalized
12594 blockmodeling for valued networks. In addition, measures of similarity or
12595 dissimilarity based on structural equivalence and regular equivalence (REGE
12596 algorithms) can be computed and partitioned matrices can be plotted.")
12597 (license license:gpl2+)))
12598
12599 (define-public r-upsetr
12600 (package
12601 (name "r-upsetr")
12602 (version "1.4.0")
12603 (source
12604 (origin
12605 (method url-fetch)
12606 (uri (cran-uri "UpSetR" version))
12607 (sha256
12608 (base32
12609 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
12610 (properties `((upstream-name . "UpSetR")))
12611 (build-system r-build-system)
12612 (propagated-inputs
12613 `(("r-ggplot2" ,r-ggplot2)
12614 ("r-gridextra" ,r-gridextra)
12615 ("r-plyr" ,r-plyr)
12616 ("r-scales" ,r-scales)))
12617 (home-page "https://github.com/hms-dbmi/UpSetR")
12618 (synopsis "Visualize intersecting sets")
12619 (description
12620 "This package provides a more scalable alternative to Venn and Euler
12621 diagrams for visualizing intersecting sets. Create visualizations of
12622 intersecting sets using a novel matrix design, along with visualizations of
12623 several common set, element and attribute related tasks.")
12624 (license license:expat)))
12625
12626 ;; This package includes a JavaScript file, which is not minified. When
12627 ;; upgrading please check that there are no new minified JavaScript files.
12628 (define-public r-shinybs
12629 (package
12630 (name "r-shinybs")
12631 (version "0.61")
12632 (source
12633 (origin
12634 (method url-fetch)
12635 (uri (cran-uri "shinyBS" version))
12636 (sha256
12637 (base32
12638 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
12639 (properties `((upstream-name . "shinyBS")))
12640 (build-system r-build-system)
12641 ;; The tests spawn Shiny browser apps. They cannot be run
12642 ;; non-interactively.
12643 (arguments '(#:tests? #f))
12644 (propagated-inputs
12645 `(("r-htmltools" ,r-htmltools)
12646 ("r-shiny" ,r-shiny)))
12647 (home-page "https://ebailey78.github.io/shinyBS/")
12648 (synopsis "Twitter Bootstrap components for Shiny")
12649 (description
12650 "This package adds additional Twitter Bootstrap components to Shiny.")
12651 (license license:gpl3)))
12652
12653 (define-public r-outliers
12654 (package
12655 (name "r-outliers")
12656 (version "0.14")
12657 (source
12658 (origin
12659 (method url-fetch)
12660 (uri (cran-uri "outliers" version))
12661 (sha256
12662 (base32
12663 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
12664 (build-system r-build-system)
12665 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
12666 (synopsis "Tests for outliers")
12667 (description
12668 "This package provides a collection of some tests commonly used for
12669 identifying outliers.")
12670 (license license:gpl2+)))
12671
12672 (define-public r-bayesm
12673 (package
12674 (name "r-bayesm")
12675 (version "3.1-4")
12676 (source
12677 (origin
12678 (method url-fetch)
12679 (uri (cran-uri "bayesm" version))
12680 (sha256
12681 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
12682 (build-system r-build-system)
12683 (propagated-inputs
12684 `(("r-rcpp" ,r-rcpp)
12685 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12686 (home-page "http://www.perossi.org/home/bsm-1")
12687 (synopsis "Bayesian inference for marketing/micro-econometrics")
12688 (description
12689 "This package covers many important models used in marketing and
12690 micro-econometrics applications, including Bayes Regression (univariate or
12691 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12692 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12693 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12694 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12695 Estimation with normal base, Hierarchical Linear Models with normal prior and
12696 covariates, Hierarchical Linear Models with a mixture of normals prior and
12697 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12698 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12699 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12700 analysis of choice-based conjoint data, Bayesian treatment of linear
12701 instrumental variables models, Analysis of Multivariate Ordinal survey data
12702 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12703 Coefficient Logit Models.")
12704 (license license:gpl2+)))
12705
12706 (define-public r-tensora
12707 (package
12708 (name "r-tensora")
12709 (version "0.36.1")
12710 (source
12711 (origin
12712 (method url-fetch)
12713 (uri (cran-uri "tensorA" version))
12714 (sha256
12715 (base32
12716 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12717 (properties `((upstream-name . "tensorA")))
12718 (build-system r-build-system)
12719 (home-page "http://www.stat.boogaart.de/tensorA")
12720 (synopsis "Advanced tensor arithmetic with named indices")
12721 (description
12722 "This package provides convenience functions for advanced linear algebra
12723 with tensors and computation with datasets of tensors on a higher level
12724 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12725 co- and contravariate indices, and parallel computations on sequences of
12726 tensors.")
12727 (license license:gpl2+)))
12728
12729 (define-public r-rarpack
12730 (package
12731 (name "r-rarpack")
12732 (version "0.11-0")
12733 (source
12734 (origin
12735 (method url-fetch)
12736 (uri (cran-uri "rARPACK" version))
12737 (sha256
12738 (base32
12739 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12740 (properties `((upstream-name . "rARPACK")))
12741 (build-system r-build-system)
12742 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12743 (home-page "https://github.com/yixuan/rARPACK")
12744 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12745 (description
12746 "This package was previously an R wrapper of the ARPACK library, and now
12747 a shell of the R package RSpectra, an R interface to the Spectra library for
12748 solving large scale eigenvalue/vector problems. The current version of
12749 rARPACK simply imports and exports the functions provided by RSpectra. New
12750 users of rARPACK are advised to switch to the RSpectra package.")
12751 (license license:bsd-3)))
12752
12753 (define-public r-compositions
12754 (package
12755 (name "r-compositions")
12756 (version "2.0-0")
12757 (source
12758 (origin
12759 (method url-fetch)
12760 (uri (cran-uri "compositions" version))
12761 (sha256
12762 (base32
12763 "0xsx4n699q2r4pk2jrvifi3wi49lih7d1j3j6qgqqd31brg53jqr"))))
12764 (build-system r-build-system)
12765 (propagated-inputs
12766 `(("r-bayesm" ,r-bayesm)
12767 ("r-mass" ,r-mass)
12768 ("r-robustbase" ,r-robustbase)
12769 ("r-tensora" ,r-tensora)))
12770 (native-inputs
12771 `(("r-knitr" ,r-knitr)))
12772 (home-page "http://www.stat.boogaart.de/compositions")
12773 (synopsis "Compositional data analysis")
12774 (description
12775 "This package provides functions for the consistent analysis of
12776 compositional data (e.g. portions of substances) and positive
12777 numbers (e.g. concentrations).")
12778 (license license:gpl2+)))
12779
12780 (define-public r-cobs
12781 (package
12782 (name "r-cobs")
12783 (version "1.3-4")
12784 (source
12785 (origin
12786 (method url-fetch)
12787 (uri (cran-uri "cobs" version))
12788 (sha256
12789 (base32
12790 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12791 (build-system r-build-system)
12792 (propagated-inputs
12793 `(("r-quantreg" ,r-quantreg)
12794 ("r-sparsem" ,r-sparsem)))
12795 (home-page "https://cran.r-project.org/web/packages/cobs")
12796 (synopsis "Constrained B-Splines (sparse matrix based)")
12797 (description
12798 "This package provides qualitatively constrained (regression) smoothing
12799 splines via linear programming and sparse matrices.")
12800 (license license:gpl2+)))
12801
12802 (define-public r-drimpute
12803 (package
12804 (name "r-drimpute")
12805 (version "1.0")
12806 (source
12807 (origin
12808 (method url-fetch)
12809 (uri (cran-uri "DrImpute" version))
12810 (sha256
12811 (base32
12812 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12813 (properties `((upstream-name . "DrImpute")))
12814 (build-system r-build-system)
12815 (propagated-inputs
12816 `(("r-rcpp" ,r-rcpp)
12817 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12818 (home-page "https://github.com/ikwak2/DrImpute")
12819 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12820 (description
12821 "This is an R package for imputing dropout events. Many statistical
12822 methods in cell type identification, visualization and lineage reconstruction
12823 do not account for dropout events. DrImpute can improve the performance of
12824 such software by imputing dropout events.")
12825 (license license:gpl3)))
12826
12827 (define-public r-gamlss-dist
12828 (package
12829 (name "r-gamlss-dist")
12830 (version "5.1-7")
12831 (source
12832 (origin
12833 (method url-fetch)
12834 (uri (cran-uri "gamlss.dist" version))
12835 (sha256
12836 (base32 "0nzgq3rnziy0i2zxn88hqy3pakpyin2m2csk9j3zg39si66c6wcq"))))
12837 (properties `((upstream-name . "gamlss.dist")))
12838 (build-system r-build-system)
12839 (propagated-inputs `(("r-mass" ,r-mass)))
12840 (home-page "http://www.gamlss.org/")
12841 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12842 (description
12843 "This package provides a set of distributions which can be used for
12844 modelling the response variables in Generalized Additive Models for Location
12845 Scale and Shape. The distributions can be continuous, discrete or mixed
12846 distributions. Extra distributions can be created, by transforming, any
12847 continuous distribution defined on the real line, to a distribution defined on
12848 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12849 transformation, respectively.")
12850 ;; Either version of the GPL.
12851 (license (list license:gpl2 license:gpl3))))
12852
12853 ;; This package includes JavaScript files, which are not minified. When
12854 ;; upgrading please check that there are no new minified JavaScript files.
12855 (define-public r-shinyjs
12856 (package
12857 (name "r-shinyjs")
12858 (version "1.1")
12859 (source
12860 (origin
12861 (method url-fetch)
12862 (uri (cran-uri "shinyjs" version))
12863 (sha256
12864 (base32
12865 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12866 (build-system r-build-system)
12867 (propagated-inputs
12868 `(("r-digest" ,r-digest)
12869 ("r-htmltools" ,r-htmltools)
12870 ("r-jsonlite" ,r-jsonlite)
12871 ("r-shiny" ,r-shiny)))
12872 (home-page "https://deanattali.com/shinyjs")
12873 (synopsis "Improve the user experience of your Shiny apps")
12874 (description
12875 "Perform common useful JavaScript operations in Shiny apps that will
12876 greatly improve your apps without having to know any JavaScript. Examples
12877 include: hiding an element, disabling an input, resetting an input back to its
12878 original value, delaying code execution by a few seconds, and many more useful
12879 functions for both the end user and the developer. Shinyjs can also be used
12880 to easily call your own custom JavaScript functions from R.")
12881 (license license:agpl3+)))
12882
12883 ;; This package includes minified JavaScript files. When upgrading please
12884 ;; check that there are no new minified JavaScript files.
12885 (define-public r-colourpicker
12886 (package
12887 (name "r-colourpicker")
12888 (version "1.0")
12889 (source
12890 (origin
12891 (method url-fetch)
12892 (uri (cran-uri "colourpicker" version))
12893 (sha256
12894 (base32
12895 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12896 (build-system r-build-system)
12897 (arguments
12898 `(#:modules ((guix build utils)
12899 (guix build r-build-system)
12900 (srfi srfi-1)
12901 (ice-9 popen))
12902 #:phases
12903 (modify-phases %standard-phases
12904 (add-after 'unpack 'process-javascript
12905 (lambda* (#:key inputs #:allow-other-keys)
12906 (with-directory-excursion "inst"
12907 (call-with-values
12908 (lambda ()
12909 (unzip2
12910 `((,(assoc-ref inputs "js-salvattore")
12911 "examples/colourInput/www/salvattore.min.js")
12912 (,(assoc-ref inputs "js-jquery")
12913 "htmlwidgets/lib/jquery/jquery.min.js")
12914 ("www/shared/colourpicker/js/colourpicker.js"
12915 "www/shared/colourpicker/js/colourpicker.min.js"))))
12916 (lambda (sources targets)
12917 (for-each (lambda (source target)
12918 (format #t "Processing ~a --> ~a~%"
12919 source target)
12920 (delete-file target)
12921 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12922 (call-with-output-file target
12923 (lambda (port)
12924 (dump-port minified port)))))
12925 sources targets))))
12926 #t)))))
12927 (propagated-inputs
12928 `(("r-ggplot2" ,r-ggplot2)
12929 ("r-htmltools" ,r-htmltools)
12930 ("r-htmlwidgets" ,r-htmlwidgets)
12931 ("r-jsonlite" ,r-jsonlite)
12932 ("r-miniui" ,r-miniui)
12933 ("r-shiny" ,r-shiny)
12934 ("r-shinyjs" ,r-shinyjs)))
12935 (native-inputs
12936 `(("uglify-js" ,uglify-js)
12937 ("js-jquery"
12938 ,(origin
12939 (method url-fetch)
12940 (uri "https://code.jquery.com/jquery-3.3.1.js")
12941 (sha256
12942 (base32
12943 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12944 ("js-salvattore"
12945 ,(origin
12946 (method url-fetch)
12947 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12948 (sha256
12949 (base32
12950 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12951 (home-page "https://github.com/daattali/colourpicker")
12952 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12953 (description
12954 "This package provides a color picker that can be used as an input in
12955 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12956 custom color palettes, and many more options. A plot color helper tool is
12957 available as an RStudio Addin, which helps you pick colors to use in your
12958 plots. A more generic color picker RStudio Addin is also provided to let you
12959 select colors to use in your R code.")
12960 (license license:expat)))
12961
12962 (define-public r-ggextra
12963 (package
12964 (name "r-ggextra")
12965 (version "0.9")
12966 (source
12967 (origin
12968 (method url-fetch)
12969 (uri (cran-uri "ggExtra" version))
12970 (sha256
12971 (base32
12972 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12973 (properties `((upstream-name . "ggExtra")))
12974 (build-system r-build-system)
12975 (propagated-inputs
12976 `(("r-colourpicker" ,r-colourpicker)
12977 ("r-ggplot2" ,r-ggplot2)
12978 ("r-gtable" ,r-gtable)
12979 ("r-miniui" ,r-miniui)
12980 ("r-r6" ,r-r6)
12981 ("r-scales" ,r-scales)
12982 ("r-shiny" ,r-shiny)
12983 ("r-shinyjs" ,r-shinyjs)))
12984 (native-inputs
12985 `(("r-knitr" ,r-knitr)))
12986 (home-page "https://github.com/daattali/ggExtra")
12987 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12988 (description
12989 "This package is a collection of functions and layers to enhance ggplot2.
12990 The flagship function is @code{ggMarginal()}, which can be used to add
12991 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12992 (license license:expat)))
12993
12994 (define-public r-minpack-lm
12995 (package
12996 (name "r-minpack-lm")
12997 (version "1.2-1")
12998 (source
12999 (origin
13000 (method url-fetch)
13001 (uri (cran-uri "minpack.lm" version))
13002 (sha256
13003 (base32
13004 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
13005 (properties `((upstream-name . "minpack.lm")))
13006 (build-system r-build-system)
13007 (native-inputs `(("gfortran" ,gfortran)))
13008 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
13009 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
13010 (description
13011 "The @code{nls.lm} function provides an R interface to @code{lmder} and
13012 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
13013 problems by a modification of the Levenberg-Marquardt algorithm, with support
13014 for lower and upper parameter bounds. The implementation can be used via
13015 @code{nls}-like calls using the @code{nlsLM} function.")
13016 (license license:gpl3)))
13017
13018 (define-public r-moments
13019 (package
13020 (name "r-moments")
13021 (version "0.14")
13022 (source
13023 (origin
13024 (method url-fetch)
13025 (uri (cran-uri "moments" version))
13026 (sha256
13027 (base32
13028 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
13029 (build-system r-build-system)
13030 (home-page "https://cran.r-project.org/web/packages/moments")
13031 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
13032 (description
13033 "This package provides functions to calculate: moments, Pearson's
13034 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
13035 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
13036 (license license:gpl2+)))
13037
13038 (define-public r-msir
13039 (package
13040 (name "r-msir")
13041 (version "1.3.2")
13042 (source
13043 (origin
13044 (method url-fetch)
13045 (uri (cran-uri "msir" version))
13046 (sha256
13047 (base32
13048 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
13049 (build-system r-build-system)
13050 (propagated-inputs
13051 `(("r-mclust" ,r-mclust)))
13052 (home-page "https://cran.r-project.org/web/packages/msir")
13053 (synopsis "Model-based sliced inverse regression")
13054 (description
13055 "This is an R package for dimension reduction based on finite Gaussian
13056 mixture modeling of inverse regression.")
13057 (license license:gpl2+)))
13058
13059 (define-public r-pbivnorm
13060 (package
13061 (name "r-pbivnorm")
13062 (version "0.6.0")
13063 (source
13064 (origin
13065 (method url-fetch)
13066 (uri (cran-uri "pbivnorm" version))
13067 (sha256
13068 (base32
13069 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
13070 (build-system r-build-system)
13071 (native-inputs `(("gfortran" ,gfortran)))
13072 (home-page "https://github.com/brentonk/pbivnorm")
13073 (synopsis "Vectorized bivariate normal CDF")
13074 (description
13075 "This package provides a vectorized R function for calculating
13076 probabilities from a standard bivariate normal CDF.")
13077 (license license:gpl2+)))
13078
13079 (define-public r-lavaan
13080 (package
13081 (name "r-lavaan")
13082 (version "0.6-7")
13083 (source
13084 (origin
13085 (method url-fetch)
13086 (uri (cran-uri "lavaan" version))
13087 (sha256
13088 (base32
13089 "0ks62wrwghbm1brzmqvr92h5n1295dpc87m1g3xrfx0mkdaqdcdk"))))
13090 (build-system r-build-system)
13091 (propagated-inputs
13092 `(("r-mass" ,r-mass)
13093 ("r-mnormt" ,r-mnormt)
13094 ("r-numderiv" ,r-numderiv)
13095 ("r-pbivnorm" ,r-pbivnorm)))
13096 (home-page "http://lavaan.ugent.be")
13097 (synopsis "Latent variable analysis")
13098 (description
13099 "This package provides tools to fit a variety of latent variable models,
13100 including confirmatory factor analysis, structural equation modeling and
13101 latent growth curve models.")
13102 (license license:gpl2+)))
13103
13104 (define-public r-nonnest2
13105 (package
13106 (name "r-nonnest2")
13107 (version "0.5-5")
13108 (source
13109 (origin
13110 (method url-fetch)
13111 (uri (cran-uri "nonnest2" version))
13112 (sha256
13113 (base32
13114 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
13115 (build-system r-build-system)
13116 (propagated-inputs
13117 `(("r-compquadform" ,r-compquadform)
13118 ("r-lavaan" ,r-lavaan)
13119 ("r-mvtnorm" ,r-mvtnorm)
13120 ("r-sandwich" ,r-sandwich)))
13121 (native-inputs
13122 `(("r-knitr" ,r-knitr)))
13123 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
13124 (synopsis "Tests of non-nested models")
13125 (description
13126 "This package allows for testing of non-nested models. It includes tests
13127 of model distinguishability and of model fit that can be applied to both
13128 nested and non-nested models. The package also includes functionality to
13129 obtain confidence intervals associated with AIC and BIC.")
13130 ;; Either version of the GPL.
13131 (license (list license:gpl2 license:gpl3))))
13132
13133 (define-public r-penalized
13134 (package
13135 (name "r-penalized")
13136 (version "0.9-51")
13137 (source
13138 (origin
13139 (method url-fetch)
13140 (uri (cran-uri "penalized" version))
13141 (sha256
13142 (base32
13143 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
13144 (build-system r-build-system)
13145 (propagated-inputs
13146 `(("r-rcpp" ,r-rcpp)
13147 ("r-rcpparmadillo" ,r-rcpparmadillo)
13148 ("r-survival" ,r-survival)))
13149 (home-page "https://cran.r-project.org/web/packages/penalized/")
13150 (synopsis "Penalized estimation in GLMs and in the Cox model")
13151 (description
13152 "This package provides tools for fitting possibly high dimensional
13153 penalized regression models. The penalty structure can be any combination of
13154 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
13155 constraint on the regression coefficients. The supported regression models
13156 are linear, logistic and Poisson regression and the Cox Proportional Hazards
13157 model. Cross-validation routines allow optimization of the tuning
13158 parameters.")
13159 (license license:gpl2+)))
13160
13161 (define-public r-zim
13162 (package
13163 (name "r-zim")
13164 (version "1.1.0")
13165 (source
13166 (origin
13167 (method url-fetch)
13168 (uri (cran-uri "ZIM" version))
13169 (sha256
13170 (base32
13171 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
13172 (properties `((upstream-name . "ZIM")))
13173 (build-system r-build-system)
13174 (propagated-inputs `(("r-mass" ,r-mass)))
13175 (home-page "https://github.com/biostatstudio/ZIM")
13176 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
13177 (description
13178 "Analyze count time series with excess zeros. Two types of statistical
13179 models are supported: Markov regression and state-space models. They are also
13180 known as observation-driven and parameter-driven models respectively in the
13181 time series literature. The functions used for Markov regression or
13182 observation-driven models can also be used to fit ordinary regression models
13183 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
13184 negative binomial (ZINB) assumption. The package also contains miscellaneous
13185 functions to compute density, distribution, quantile, and generate random
13186 numbers from ZIP and ZINB distributions.")
13187 (license license:gpl3)))
13188
13189 (define-public r-nor1mix
13190 (package
13191 (name "r-nor1mix")
13192 (version "1.3-0")
13193 (source
13194 (origin
13195 (method url-fetch)
13196 (uri (cran-uri "nor1mix" version))
13197 (sha256
13198 (base32
13199 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
13200 (build-system r-build-system)
13201 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
13202 (synopsis "Normal (1-d) mixture models")
13203 (description
13204 "This package provides S3 classes and methods for one-dimensional normal
13205 mixture models, for, e.g., density estimation or clustering algorithms
13206 research and teaching; it provides the widely used Marron-Wand densities. It
13207 also provides tools for efficient random number generation and graphics.")
13208 (license license:gpl2+)))
13209
13210 (define-public r-beanplot
13211 (package
13212 (name "r-beanplot")
13213 (version "1.2")
13214 (source
13215 (origin
13216 (method url-fetch)
13217 (uri (cran-uri "beanplot" version))
13218 (sha256
13219 (base32
13220 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
13221 (build-system r-build-system)
13222 (home-page "https://cran.r-project.org/web/packages/beanplot/")
13223 (synopsis "Visualization via beanplots")
13224 (description
13225 "This package provides beanplots, an alternative to
13226 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
13227 graphs.")
13228 (license license:gpl2)))
13229
13230 (define-public r-pbdzmq
13231 (package
13232 (name "r-pbdzmq")
13233 (version "0.3-3")
13234 (source
13235 (origin
13236 (method url-fetch)
13237 (uri (cran-uri "pbdZMQ" version))
13238 (sha256
13239 (base32
13240 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
13241 (properties `((upstream-name . "pbdZMQ")))
13242 (build-system r-build-system)
13243 (inputs
13244 `(("zeromq" ,zeromq)
13245 ("zlib" ,zlib)))
13246 (native-inputs
13247 `(("pkg-config" ,pkg-config)))
13248 (home-page "https://pbdr.org/")
13249 (synopsis "R interface to ZeroMQ")
13250 (description
13251 "ZeroMQ is a well-known library for high-performance asynchronous
13252 messaging in scalable, distributed applications. This package provides high
13253 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
13254 interactive client/server programming frameworks. A few wrapper functions
13255 compatible with @code{rzmq} are also provided.")
13256 (license license:gpl3)))
13257
13258 (define-public r-repr
13259 (package
13260 (name "r-repr")
13261 (version "1.1.0")
13262 (source
13263 (origin
13264 (method url-fetch)
13265 (uri (cran-uri "repr" version))
13266 (sha256
13267 (base32
13268 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
13269 (build-system r-build-system)
13270 (propagated-inputs
13271 `(("r-base64enc" ,r-base64enc)
13272 ("r-htmltools" ,r-htmltools)
13273 ("r-jsonlite" ,r-jsonlite)
13274 ("r-pillar" ,r-pillar)))
13275 (home-page "https://cran.r-project.org/web/packages/repr/")
13276 (synopsis "Serializable representations")
13277 (description
13278 "This package provides string and binary representations of objects for
13279 several formats and MIME types.")
13280 (license license:gpl3)))
13281
13282 (define-public r-irdisplay
13283 (package
13284 (name "r-irdisplay")
13285 (version "0.7.0")
13286 (source
13287 (origin
13288 (method url-fetch)
13289 (uri (cran-uri "IRdisplay" version))
13290 (sha256
13291 (base32
13292 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
13293 (properties `((upstream-name . "IRdisplay")))
13294 (build-system r-build-system)
13295 (propagated-inputs
13296 `(("r-repr" ,r-repr)))
13297 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
13298 (synopsis "Jupyter display machinery")
13299 (description
13300 "This package provides an interface to the rich display capabilities of
13301 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
13302 running IRkernel session.")
13303 (license license:expat)))
13304
13305 (define-public r-irkernel
13306 (package
13307 (name "r-irkernel")
13308 (version "1.1.1")
13309 (source
13310 (origin
13311 (method url-fetch)
13312 (uri (cran-uri "IRkernel" version))
13313 (sha256
13314 (base32
13315 "1y06v3difaiihxfm2abm88nnjzvkla4p346cm1nxmga4iwb2k8gm"))))
13316 (properties `((upstream-name . "IRkernel")))
13317 (build-system r-build-system)
13318 (arguments
13319 `(#:phases
13320 (modify-phases %standard-phases
13321 (add-after 'install 'install-kernelspec
13322 (lambda* (#:key outputs #:allow-other-keys)
13323 (let ((out (assoc-ref outputs "out")))
13324 (setenv "HOME" "/tmp")
13325 (invoke "jupyter" "kernelspec" "install"
13326 "--name" "ir"
13327 "--prefix" out
13328 (string-append out "/site-library/IRkernel/kernelspec"))
13329 ;; Record the absolute file name of the 'R' executable in
13330 ;; 'kernel.json'.
13331 (substitute* (string-append out "/share/jupyter"
13332 "/kernels/ir/kernel.json")
13333 (("\\[\"R\",")
13334 (string-append "[\"" (which "R") "\",")))
13335 #t))))))
13336 (inputs
13337 `(("jupyter" ,jupyter)))
13338 (propagated-inputs
13339 `(("r-crayon" ,r-crayon)
13340 ("r-digest" ,r-digest)
13341 ("r-evaluate" ,r-evaluate)
13342 ("r-irdisplay" ,r-irdisplay)
13343 ("r-jsonlite" ,r-jsonlite)
13344 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
13345 ("r-minimal" ,r-minimal)
13346 ("r-pbdzmq" ,r-pbdzmq)
13347 ("r-repr" ,r-repr)
13348 ("r-uuid" ,r-uuid)))
13349 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
13350 (synopsis "Native R kernel for Jupyter")
13351 (description
13352 "The R kernel for the Jupyter environment executes R code which the
13353 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
13354 network.")
13355 (license license:expat)))
13356
13357 (define-public r-gmodels
13358 (package
13359 (name "r-gmodels")
13360 (version "2.18.1")
13361 (source
13362 (origin
13363 (method url-fetch)
13364 (uri (cran-uri "gmodels" version))
13365 (sha256
13366 (base32
13367 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
13368 (build-system r-build-system)
13369 (propagated-inputs
13370 `(("r-gdata" ,r-gdata)
13371 ("r-mass" ,r-mass)))
13372 (home-page "https://cran.r-project.org/web/packages/gmodels/")
13373 (synopsis "Various R programming tools for model fitting")
13374 (description
13375 "This package provides various R programming tools for model fitting.")
13376 (license license:gpl2)))
13377
13378 (define-public r-apcluster
13379 (package
13380 (name "r-apcluster")
13381 (version "1.4.8")
13382 (source
13383 (origin
13384 (method url-fetch)
13385 (uri (cran-uri "apcluster" version))
13386 (sha256
13387 (base32
13388 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
13389 (build-system r-build-system)
13390 (propagated-inputs
13391 `(("r-matrix" ,r-matrix)
13392 ("r-rcpp" ,r-rcpp)))
13393 (home-page "https://cran.r-project.org/web/packages/apcluster/")
13394 (synopsis "Affinity propagation clustering")
13395 (description
13396 "This package implements affinity propagation clustering introduced by
13397 Frey and Dueck (2007). The package further provides leveraged affinity
13398 propagation and an algorithm for exemplar-based agglomerative clustering that
13399 can also be used to join clusters obtained from affinity propagation. Various
13400 plotting functions are available for analyzing clustering results.")
13401 (license license:gpl2+)))
13402
13403 (define-public r-valr
13404 (package
13405 (name "r-valr")
13406 (version "0.6.1")
13407 (source
13408 (origin
13409 (method url-fetch)
13410 (uri (cran-uri "valr" version))
13411 (sha256
13412 (base32
13413 "1qxw6h63i2vfb2w6q453zzwk0ypma3xdwwpj15i06669vzgyy3bb"))))
13414 (build-system r-build-system)
13415 (propagated-inputs
13416 `(("r-broom" ,r-broom)
13417 ("r-dplyr" ,r-dplyr)
13418 ("r-ggplot2" ,r-ggplot2)
13419 ("r-rcpp" ,r-rcpp)
13420 ("r-readr" ,r-readr)
13421 ("r-rlang" ,r-rlang)
13422 ("r-stringr" ,r-stringr)
13423 ("r-tibble" ,r-tibble)))
13424 (native-inputs
13425 `(("r-knitr" ,r-knitr)))
13426 (home-page "https://github.com/rnabioco/valr")
13427 (synopsis "Genome interval arithmetic in R")
13428 (description
13429 "This package enables you to read and manipulate genome intervals and
13430 signals. It provides functionality similar to command-line tool suites within
13431 R, enabling interactive analysis and visualization of genome-scale data.")
13432 (license license:expat)))
13433
13434 (define-public r-rematch2
13435 (package
13436 (name "r-rematch2")
13437 (version "2.1.2")
13438 (source
13439 (origin
13440 (method url-fetch)
13441 (uri (cran-uri "rematch2" version))
13442 (sha256
13443 (base32
13444 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
13445 (build-system r-build-system)
13446 (propagated-inputs
13447 `(("r-tibble" ,r-tibble)))
13448 (home-page "https://github.com/r-lib/rematch2")
13449 (synopsis "Tidy output from regular expression matching")
13450 (description
13451 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
13452 return the match results in tidy data frames.")
13453 (license license:expat)))
13454
13455 (define-public r-picante
13456 (package
13457 (name "r-picante")
13458 (version "1.8.2")
13459 (source
13460 (origin
13461 (method url-fetch)
13462 (uri (cran-uri "picante" version))
13463 (sha256
13464 (base32
13465 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
13466 (build-system r-build-system)
13467 (propagated-inputs
13468 `(("r-ape" ,r-ape)
13469 ("r-nlme" ,r-nlme)
13470 ("r-vegan" ,r-vegan)))
13471 (home-page "https://cran.r-project.org/web/packages/picante/")
13472 (synopsis "Integrating phylogenies and ecology")
13473 (description
13474 "This package provides functions for phylocom integration, community
13475 analyses, null-models, traits and evolution. It implements numerous
13476 ecophylogenetic approaches including measures of community phylogenetic and
13477 trait diversity, phylogenetic signal, estimation of trait values for
13478 unobserved taxa, null models for community and phylogeny randomizations, and
13479 utility functions for data input/output and phylogeny plotting. A full
13480 description of package functionality and methods are provided by Kembel et
13481 al. (2010).")
13482 (license license:gpl2)))
13483
13484 (define-public r-reinforcelearn
13485 (package
13486 (name "r-reinforcelearn")
13487 (version "0.2.1")
13488 (source
13489 (origin
13490 (method url-fetch)
13491 (uri (cran-uri "reinforcelearn" version))
13492 (sha256
13493 (base32
13494 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
13495 (build-system r-build-system)
13496 (propagated-inputs
13497 `(("r-checkmate" ,r-checkmate)
13498 ("r-nnet" ,r-nnet)
13499 ("r-purrr" ,r-purrr)
13500 ("r-r6" ,r-r6)))
13501 (home-page "https://markusdumke.github.io/reinforcelearn")
13502 (synopsis "Reinforcement learning")
13503 (description
13504 "This package implements reinforcement learning environments and
13505 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
13506 can be used with function approximation, eligibility traces (Singh & Sutton,
13507 1996) and experience replay (Mnih et al., 2013).")
13508 (license license:expat)))
13509
13510 (define-public r-lemon
13511 (package
13512 (name "r-lemon")
13513 (version "0.4.5")
13514 (source
13515 (origin
13516 (method url-fetch)
13517 (uri (cran-uri "lemon" version))
13518 (sha256
13519 (base32
13520 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
13521 (build-system r-build-system)
13522 (propagated-inputs
13523 `(("r-ggplot2" ,r-ggplot2)
13524 ("r-gridextra" ,r-gridextra)
13525 ("r-gtable" ,r-gtable)
13526 ("r-knitr" ,r-knitr)
13527 ("r-lattice" ,r-lattice)
13528 ("r-plyr" ,r-plyr)
13529 ("r-rlang" ,r-rlang)
13530 ("r-scales" ,r-scales)))
13531 (native-inputs
13532 `(("r-knitr" ,r-knitr)))
13533 (home-page "https://github.com/stefanedwards/lemon")
13534 (synopsis "Freshen up your ggplot2 plots")
13535 (description
13536 "This package provides functions for working with legends and axis lines
13537 of ggplot2, facets that repeat axis lines on all panels, and some knitr
13538 extensions.")
13539 (license license:gpl3)))
13540
13541 (define-public r-wgaim
13542 (package
13543 (name "r-wgaim")
13544 (version "2.0-1")
13545 (source
13546 (origin
13547 (method url-fetch)
13548 (uri (cran-uri "wgaim" version))
13549 (sha256
13550 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
13551 (build-system r-build-system)
13552 (propagated-inputs
13553 `(("r-ggplot2" ,r-ggplot2)
13554 ("r-qtl" ,r-qtl)))
13555 (home-page "https://cran.r-project.org/web/packages/wgaim")
13556 (synopsis "Whole genome average interval mapping for QTL detection")
13557 (description
13558 "This package integrates sophisticated mixed modelling methods with a
13559 whole genome approach to detecting significant QTL in linkage maps.")
13560 (license license:gpl2+)))
13561
13562 (define-public r-bedr
13563 (package
13564 (name "r-bedr")
13565 (version "1.0.7")
13566 (source
13567 (origin
13568 (method url-fetch)
13569 (uri (cran-uri "bedr" version))
13570 (sha256
13571 (base32
13572 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
13573 (build-system r-build-system)
13574 (propagated-inputs
13575 `(("r-data-table" ,r-data-table)
13576 ("r-r-utils" ,r-r-utils)
13577 ("r-testthat" ,r-testthat)
13578 ("r-venndiagram" ,r-venndiagram)
13579 ("r-yaml" ,r-yaml)
13580 ("bedops" ,bedops)
13581 ("bedtools" ,bedtools)
13582 ("htslib" ,htslib))) ; for tabix
13583 (native-inputs
13584 `(("r-knitr" ,r-knitr))) ; for vignettes
13585 (home-page "https://cran.r-project.org/web/packages/bedr")
13586 (synopsis "Genomic region processing")
13587 (description
13588 "This package is for genomic regions processing using command line tools
13589 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
13590 utilities to perform genome arithmetic e.g indexing, formatting and merging.
13591 The bedr package's API enhances access to these tools as well as offers
13592 additional utilities for genomic regions processing.")
13593 (license license:gpl2)))
13594
13595 (define-public r-sets
13596 (package
13597 (name "r-sets")
13598 (version "1.0-18")
13599 (source
13600 (origin
13601 (method url-fetch)
13602 (uri (cran-uri "sets" version))
13603 (sha256
13604 (base32
13605 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
13606 (properties `((upstream-name . "sets")))
13607 (build-system r-build-system)
13608 (home-page "https://cran.r-project.org/web/packages/sets")
13609 (synopsis "Sets, generalized sets, customizable sets and intervals")
13610 (description
13611 "This package provides data structures and basic operations for ordinary
13612 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
13613 customizable sets, and intervals.")
13614 (license license:gpl2)))
13615
13616 (define-public r-partitions
13617 (package
13618 (name "r-partitions")
13619 (version "1.9-22")
13620 (source
13621 (origin
13622 (method url-fetch)
13623 (uri (cran-uri "partitions" version))
13624 (sha256
13625 (base32
13626 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
13627 (build-system r-build-system)
13628 (propagated-inputs
13629 `(("r-gmp" ,r-gmp)
13630 ("r-polynom" ,r-polynom)
13631 ("r-sets" ,r-sets)))
13632 (home-page "https://cran.r-project.org/web/packages/partitions")
13633 (synopsis "Additive partitions of integers")
13634 (description
13635 "This package provides tools to enumerates the partitions, unequal
13636 partitions, and restricted partitions of an integer; the three corresponding
13637 partition functions are also given.")
13638 ;; Any version of the GPL
13639 (license license:gpl2+)))
13640
13641 (define-public r-brobdingnag
13642 (package
13643 (name "r-brobdingnag")
13644 (version "1.2-6")
13645 (source
13646 (origin
13647 (method url-fetch)
13648 (uri (cran-uri "Brobdingnag" version))
13649 (sha256
13650 (base32
13651 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
13652 (properties `((upstream-name . "Brobdingnag")))
13653 (build-system r-build-system)
13654 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
13655 (synopsis "Very large numbers in R")
13656 (description
13657 "This package handles very large numbers in R. Real numbers are held
13658 using their natural logarithms, plus a logical flag indicating sign. The
13659 package includes a vignette that gives a step-by-step introduction to using S4
13660 methods.")
13661 ;; Any version of the GPL
13662 (license license:gpl2+)))
13663
13664 (define-public r-untb
13665 (package
13666 (name "r-untb")
13667 (version "1.7-4")
13668 (source
13669 (origin
13670 (method url-fetch)
13671 (uri (cran-uri "untb" version))
13672 (sha256
13673 (base32
13674 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
13675 (build-system r-build-system)
13676 (propagated-inputs
13677 `(("r-brobdingnag" ,r-brobdingnag)
13678 ("r-partitions" ,r-partitions)
13679 ("r-polynom" ,r-polynom)))
13680 (home-page "https://github.com/RobinHankin/untb.git")
13681 (synopsis "Ecological drift under the UNTB")
13682 (description
13683 "This package provides numerical simulations, and visualizations, of
13684 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
13685 (license license:gpl2+)))
13686
13687 (define-public r-stepwise
13688 (package
13689 (name "r-stepwise")
13690 (version "0.3")
13691 (source
13692 (origin
13693 (method url-fetch)
13694 (uri (cran-uri "stepwise" version))
13695 (sha256
13696 (base32
13697 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13698 (build-system r-build-system)
13699 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13700 (synopsis "Stepwise detection of recombination breakpoints")
13701 (description
13702 "This package provides a stepwise approach to identifying recombination
13703 breakpoints in a genomic sequence alignment.")
13704 (license license:gpl2+)))
13705
13706 (define-public r-snpmaxsel
13707 (package
13708 (name "r-snpmaxsel")
13709 (version "1.0-3")
13710 (source
13711 (origin
13712 (method url-fetch)
13713 (uri (cran-uri "SNPmaxsel" version))
13714 (sha256
13715 (base32
13716 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13717 (properties `((upstream-name . "SNPmaxsel")))
13718 (build-system r-build-system)
13719 (propagated-inputs
13720 `(("r-combinat" ,r-combinat)
13721 ("r-mvtnorm" ,r-mvtnorm)))
13722 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13723 (synopsis "Maximally selected statistics for SNP data")
13724 (description
13725 "This package implements asymptotic methods related to maximally selected
13726 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13727 data.")
13728 (license license:gpl2+)))
13729
13730 (define-public r-acsnminer
13731 (package
13732 (name "r-acsnminer")
13733 (version "0.16.8.25")
13734 (source (origin
13735 (method url-fetch)
13736 (uri (cran-uri "ACSNMineR" version))
13737 (sha256
13738 (base32
13739 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13740 (properties `((upstream-name . "ACSNMineR")))
13741 (build-system r-build-system)
13742 (propagated-inputs
13743 `(("r-ggplot2" ,r-ggplot2)
13744 ("r-gridextra" ,r-gridextra)))
13745 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13746 (synopsis "Gene enrichment analysis")
13747 (description
13748 "This package provides tools to compute and represent gene set enrichment
13749 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13750 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13751 enrichment can be run with hypergeometric test or Fisher exact test, and can
13752 use multiple corrections. Visualization of data can be done either by
13753 barplots or heatmaps.")
13754 (license license:gpl2+)))
13755
13756 (define-public r-seqinr
13757 (package
13758 (name "r-seqinr")
13759 (version "3.6-1")
13760 (source
13761 (origin
13762 (method url-fetch)
13763 (uri (cran-uri "seqinr" version))
13764 (sha256
13765 (base32
13766 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13767 (build-system r-build-system)
13768 (propagated-inputs
13769 `(("r-ade4" ,r-ade4)
13770 ("r-segmented" ,r-segmented)))
13771 (inputs
13772 `(("zlib" ,zlib)))
13773 (home-page "http://seqinr.r-forge.r-project.org/")
13774 (synopsis "Biological sequences retrieval and analysis")
13775 (description
13776 "This package provides tools for exploratory data analysis and data
13777 visualization of biological sequence (DNA and protein) data. It also includes
13778 utilities for sequence data management under the ACNUC system.")
13779 (license license:gpl2+)))
13780
13781 (define-public r-units
13782 (package
13783 (name "r-units")
13784 (version "0.6-7")
13785 (source
13786 (origin
13787 (method url-fetch)
13788 (uri (cran-uri "units" version))
13789 (sha256
13790 (base32
13791 "1rdpbkiqcabz00fqzzs98v89v4cgvcd4pb00pwxzkq6vmwmscwrz"))))
13792 (build-system r-build-system)
13793 (inputs
13794 `(("udunits" ,udunits)))
13795 (propagated-inputs
13796 `(("r-rcpp" ,r-rcpp)))
13797 (native-inputs
13798 `(("r-knitr" ,r-knitr)))
13799 (home-page "https://github.com/r-quantities/units/")
13800 (synopsis "Measurement Units for R Vectors")
13801 (description
13802 "This package provides support for measurement units in R vectors,
13803 matrices and arrays: automatic propagation, conversion, derivation and
13804 simplification of units; raising errors in case of unit incompatibility. It
13805 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13806 classes.")
13807 (license license:gpl2)))
13808
13809 (define-public r-classint
13810 (package
13811 (name "r-classint")
13812 (version "0.4-3")
13813 (source
13814 (origin
13815 (method url-fetch)
13816 (uri (cran-uri "classInt" version))
13817 (sha256
13818 (base32
13819 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
13820 (properties `((upstream-name . "classInt")))
13821 (build-system r-build-system)
13822 (propagated-inputs
13823 `(("r-class" ,r-class)
13824 ("r-e1071" ,r-e1071)
13825 ("r-kernsmooth" ,r-kernsmooth)))
13826 (native-inputs
13827 `(("gfortran" ,gfortran)
13828 ("r-knitr" ,r-knitr)))
13829 (home-page "https://github.com/r-spatial/classInt/")
13830 (synopsis "Choose univariate class intervals")
13831 (description
13832 "This package provides selected commonly used methods for choosing
13833 univariate class intervals for mapping or other graphics purposes.")
13834 (license license:gpl2+)))
13835
13836 (define-public r-spdata
13837 (package
13838 (name "r-spdata")
13839 (version "0.3.8")
13840 (source
13841 (origin
13842 (method url-fetch)
13843 (uri (cran-uri "spData" version))
13844 (sha256
13845 (base32
13846 "1mlsqy9cbilfc80cbdlbgsngvzdkrd9yjdkxnw2b1gzxnj6jcqbs"))))
13847 (properties `((upstream-name . "spData")))
13848 (build-system r-build-system)
13849 (propagated-inputs
13850 `(("r-raster" ,r-raster)
13851 ("r-sp" ,r-sp)))
13852 (home-page "https://github.com/Nowosad/spData")
13853 (synopsis "Datasets for spatial analysis")
13854 (description
13855 "This a package containing diverse spatial datasets for demonstrating,
13856 benchmarking and teaching spatial data analysis. It includes R data of class
13857 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13858 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13859 of the datasets are designed to illustrate specific analysis techniques.
13860 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13861 illustrate point pattern analysis techniques.")
13862 (license license:cc0)))
13863
13864 (define-public r-learnbayes
13865 (package
13866 (name "r-learnbayes")
13867 (version "2.15.1")
13868 (source
13869 (origin
13870 (method url-fetch)
13871 (uri (cran-uri "LearnBayes" version))
13872 (sha256
13873 (base32
13874 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13875 (properties `((upstream-name . "LearnBayes")))
13876 (build-system r-build-system)
13877 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13878 (synopsis "Functions for learning Bayesian inference")
13879 (description
13880 "This package provides a collection of functions helpful in learning the
13881 basic tenets of Bayesian statistical inference. It contains functions for
13882 summarizing basic one and two parameter posterior distributions and predictive
13883 distributions. It contains MCMC algorithms for summarizing posterior
13884 distributions defined by the user. It also contains functions for regression
13885 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13886 sampling.")
13887 (license license:gpl2+)))
13888
13889 (define-public r-deldir
13890 (package
13891 (name "r-deldir")
13892 (version "0.1-28")
13893 (source
13894 (origin
13895 (method url-fetch)
13896 (uri (cran-uri "deldir" version))
13897 (sha256
13898 (base32
13899 "12ys8jdcrgzhf9m2yirlqfars397qb0q0pbypahmfa66lgr6wdx5"))))
13900 (build-system r-build-system)
13901 (native-inputs `(("gfortran" ,gfortran)))
13902 (home-page "https://cran.r-project.org/web/packages/deldir")
13903 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13904 (description
13905 "This package provides tools for calculating the Delaunay triangulation
13906 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13907 of a planar point set. It plots triangulations and tessellations in various
13908 ways, clips tessellations to sub-windows, calculates perimeters of
13909 tessellations, and summarizes information about the tiles of the
13910 tessellation.")
13911 (license license:gpl2+)))
13912
13913 (define-public r-sf
13914 (package
13915 (name "r-sf")
13916 (version "0.9-5")
13917 (source
13918 (origin
13919 (method url-fetch)
13920 (uri (cran-uri "sf" version))
13921 (sha256
13922 (base32
13923 "0c58asqrvz1pkdkb0lkzwz8cwb43pmxd39z0jp217hk7p7q3ngwf"))))
13924 (build-system r-build-system)
13925 (inputs
13926 `(("gdal" ,gdal)
13927 ("geos" ,geos)
13928 ("proj" ,proj.4)
13929 ("zlib" ,zlib)))
13930 (propagated-inputs
13931 `(("r-classint" ,r-classint)
13932 ("r-dbi" ,r-dbi)
13933 ("r-magrittr" ,r-magrittr)
13934 ("r-rcpp" ,r-rcpp)
13935 ("r-units" ,r-units)))
13936 (native-inputs
13937 `(("pkg-config" ,pkg-config)
13938 ("r-knitr" ,r-knitr)))
13939 (home-page "https://github.com/r-spatial/sf/")
13940 (synopsis "Simple features for R")
13941 (description
13942 "This package provides support for simple features, a standardized way to
13943 encode spatial vector data. It binds to GDAL for reading and writing data, to
13944 GEOS for geometrical operations, and to PROJ for projection conversions and
13945 datum transformations.")
13946 ;; Either of these licenses
13947 (license (list license:gpl2 license:expat))))
13948
13949 (define-public r-spdep
13950 (package
13951 (name "r-spdep")
13952 (version "1.1-5")
13953 (source
13954 (origin
13955 (method url-fetch)
13956 (uri (cran-uri "spdep" version))
13957 (sha256
13958 (base32
13959 "0pbd7wrg5v44p2yxsjp774lpyzap3madir5mn5p3ix7ibk7ldjs7"))))
13960 (build-system r-build-system)
13961 (propagated-inputs
13962 `(("r-boot" ,r-boot)
13963 ("r-coda" ,r-coda)
13964 ("r-deldir" ,r-deldir)
13965 ("r-expm" ,r-expm)
13966 ("r-gmodels" ,r-gmodels)
13967 ("r-learnbayes" ,r-learnbayes)
13968 ("r-mass" ,r-mass)
13969 ("r-matrix" ,r-matrix)
13970 ("r-nlme" ,r-nlme)
13971 ("r-sf" ,r-sf)
13972 ("r-sp" ,r-sp)
13973 ("r-spdata" ,r-spdata)))
13974 (native-inputs
13975 `(("r-knitr" ,r-knitr)))
13976 (home-page "https://github.com/r-spatial/spdep/")
13977 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13978 (description
13979 "This package provides a collection of functions to create spatial
13980 weights matrix objects from polygon contiguities, from point patterns by
13981 distance and tessellations, for summarizing these objects, and for permitting
13982 their use in spatial data analysis, including regional aggregation by minimum
13983 spanning tree.")
13984 (license license:gpl2+)))
13985
13986 (define-public r-adegenet
13987 (package
13988 (name "r-adegenet")
13989 (version "2.1.3")
13990 (source
13991 (origin
13992 (method url-fetch)
13993 (uri (cran-uri "adegenet" version))
13994 (sha256
13995 (base32
13996 "1ipnawi0qfd4rfwj37igvh36x1a9d8x4n7xynn1jcr12rd713407"))))
13997 (build-system r-build-system)
13998 (propagated-inputs
13999 `(("r-ade4" ,r-ade4)
14000 ("r-ape" ,r-ape)
14001 ("r-boot" ,r-boot)
14002 ("r-dplyr" ,r-dplyr)
14003 ("r-ggplot2" ,r-ggplot2)
14004 ("r-igraph" ,r-igraph)
14005 ("r-mass" ,r-mass)
14006 ("r-reshape2" ,r-reshape2)
14007 ("r-seqinr" ,r-seqinr)
14008 ("r-shiny" ,r-shiny)
14009 ("r-spdep" ,r-spdep)
14010 ("r-vegan" ,r-vegan)))
14011 (home-page "https://github.com/thibautjombart/adegenet")
14012 (synopsis "Exploratory analysis of genetic and genomic data")
14013 (description
14014 "This package provides a toolset for the exploration of genetic and
14015 genomic data. Adegenet provides formal (S4) classes for storing and handling
14016 various genetic data, including genetic markers with varying ploidy and
14017 hierarchical population structure (@code{genind} class), alleles counts by
14018 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
14019 also implements original multivariate methods (DAPC, sPCA), graphics,
14020 statistical tests, simulation tools, distance and similarity measures, and
14021 several spatial methods. A range of both empirical and simulated datasets is
14022 also provided to illustrate various methods.")
14023 (license license:gpl2+)))
14024
14025 (define-public r-pegas
14026 (package
14027 (name "r-pegas")
14028 (version "0.13")
14029 (source
14030 (origin
14031 (method url-fetch)
14032 (uri (cran-uri "pegas" version))
14033 (sha256
14034 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
14035 (build-system r-build-system)
14036 (propagated-inputs
14037 `(("r-adegenet" ,r-adegenet)
14038 ("r-ape" ,r-ape)))
14039 (home-page "http://ape-package.ird.fr/pegas.html")
14040 (synopsis "Population and evolutionary genetics analysis system")
14041 (description
14042 "This package provides functions for reading, writing, plotting,
14043 analysing, and manipulating allelic and haplotypic data, including from VCF
14044 files, and for the analysis of population nucleotide sequences and
14045 micro-satellites including coalescent analyses, linkage disequilibrium,
14046 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
14047 minimum spanning tree and network, and median-joining networks.")
14048 (license license:gpl2+)))
14049
14050 (define-public r-rmetasim
14051 (package
14052 (name "r-rmetasim")
14053 (version "3.1.14")
14054 (source
14055 (origin
14056 (method url-fetch)
14057 (uri (cran-uri "rmetasim" version))
14058 (sha256
14059 (base32
14060 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
14061 (build-system r-build-system)
14062 (propagated-inputs
14063 `(("r-ade4" ,r-ade4)
14064 ("r-adegenet" ,r-adegenet)
14065 ("r-gtools" ,r-gtools)
14066 ("r-pegas" ,r-pegas)))
14067 (home-page "https://cran.r-project.org/web/packages/rmetasim")
14068 (synopsis "Individual-based population genetic simulation environment")
14069 (description
14070 "This package provides an interface between R and the metasim simulation
14071 engine. The simulation environment is documented in: Strand, A.(2002),
14072 Metasim 1.0: an individual-based environment for simulating population
14073 genetics of complex population dynamics.")
14074 ;; Any GPL version
14075 (license license:gpl2+)))
14076
14077 (define-public r-genetics
14078 (package
14079 (name "r-genetics")
14080 (version "1.3.8.1.2")
14081 (source
14082 (origin
14083 (method url-fetch)
14084 (uri (cran-uri "genetics" version))
14085 (sha256
14086 (base32
14087 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
14088 (build-system r-build-system)
14089 (propagated-inputs
14090 `(("r-combinat" ,r-combinat)
14091 ("r-gdata" ,r-gdata)
14092 ("r-gtools" ,r-gtools)
14093 ("r-mass" ,r-mass)
14094 ("r-mvtnorm" ,r-mvtnorm)))
14095 (home-page "https://cran.r-project.org/web/packages/genetics/")
14096 (synopsis "Population genetics")
14097 (description
14098 "This package provides classes and methods for handling genetic data.
14099 It includes classes to represent genotypes and haplotypes at single markers up
14100 to multiple markers on multiple chromosomes. Function include allele
14101 frequencies, flagging homo/heterozygotes, flagging carriers of certain
14102 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
14103 and testing for linkage disequilibrium, ...")
14104 ;; Any GPL version.
14105 (license license:gpl2+)))
14106
14107 (define-public r-snp-plotter
14108 (package
14109 (name "r-snp-plotter")
14110 (version "0.5.1")
14111 (source
14112 (origin
14113 (method url-fetch)
14114 (uri (cran-uri "snp.plotter" version))
14115 (sha256
14116 (base32
14117 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
14118 (properties `((upstream-name . "snp.plotter")))
14119 (build-system r-build-system)
14120 (propagated-inputs `(("r-genetics" ,r-genetics)))
14121 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
14122 (synopsis "Plot p-values using single SNP and/or haplotype data")
14123 (description
14124 "This package helps you create plots of p-values using single SNP and/or
14125 haplotype data. Main features of the package include options to display a
14126 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
14127 datasets simultaneously. Plots can be created using global and/or individual
14128 haplotype p-values along with single SNP p-values. Images are created as
14129 either PDF/EPS files.")
14130 (license license:gpl2+)))
14131
14132 (define-public r-polspline
14133 (package
14134 (name "r-polspline")
14135 (version "1.1.19")
14136 (source
14137 (origin
14138 (method url-fetch)
14139 (uri (cran-uri "polspline" version))
14140 (sha256
14141 (base32 "0rhzf735hmbqfn2xbgcln4sqx7m9far72g5gq9mghgkw016kqglm"))))
14142 (build-system r-build-system)
14143 (native-inputs `(("gfortran" ,gfortran)))
14144 (home-page "https://cran.r-project.org/web/packages/polspline/")
14145 (synopsis "Polynomial spline routines")
14146 (description
14147 "This package provides routines for the polynomial spline fitting
14148 routines hazard regression, hazard estimation with flexible tails, logspline,
14149 lspec, polyclass, and polymars.")
14150 (license license:gpl2+)))
14151
14152 (define-public r-rms
14153 (package
14154 (name "r-rms")
14155 (version "6.0-1")
14156 (source
14157 (origin
14158 (method url-fetch)
14159 (uri (cran-uri "rms" version))
14160 (sha256
14161 (base32 "1zkcsqcvldfj4kyn0346vi51igq951qrnpxlv2pfvap6n2v5wbxq"))))
14162 (build-system r-build-system)
14163 (propagated-inputs
14164 `(("r-cluster" ,r-cluster)
14165 ("r-digest" ,r-digest)
14166 ("r-ggplot2" ,r-ggplot2)
14167 ("r-hmisc" ,r-hmisc)
14168 ("r-htmltable" ,r-htmltable)
14169 ("r-htmltools" ,r-htmltools)
14170 ("r-lattice" ,r-lattice)
14171 ("r-mass" ,r-mass)
14172 ("r-multcomp" ,r-multcomp)
14173 ("r-nlme" ,r-nlme)
14174 ("r-polspline" ,r-polspline)
14175 ("r-quantreg" ,r-quantreg)
14176 ("r-rpart" ,r-rpart)
14177 ("r-sparsem" ,r-sparsem)
14178 ("r-survival" ,r-survival)))
14179 (native-inputs `(("gfortran" ,gfortran)))
14180 (home-page "http://biostat.mc.vanderbilt.edu/rms")
14181 (synopsis "Regression modeling strategies")
14182 (description
14183 "This is a package for regression modeling, testing, estimation,
14184 validation, graphics, prediction, and typesetting by storing enhanced model
14185 design attributes in the fit. The rms package is a collection of functions
14186 that assist with and streamline modeling. It also contains functions for
14187 binary and ordinal logistic regression models, ordinal models for continuous Y
14188 with a variety of distribution families, and the Buckley-James multiple
14189 regression model for right-censored responses, and implements penalized
14190 maximum likelihood estimation for logistic and ordinary linear models. The
14191 package works with almost any regression model, but it was especially written
14192 to work with binary or ordinal regression models, Cox regression, accelerated
14193 failure time models, ordinary linear models, the Buckley-James model,
14194 generalized least squares for serially or spatially correlated observations,
14195 generalized linear models, and quantile regression.")
14196 (license license:gpl2+)))
14197
14198 (define-public r-arsenal
14199 (package
14200 (name "r-arsenal")
14201 (version "3.5.0")
14202 (source
14203 (origin
14204 (method url-fetch)
14205 (uri (cran-uri "arsenal" version))
14206 (sha256
14207 (base32
14208 "0avi434wkk3w7axd89a4jwsbb11fi0239mkkla6zasnjwbqgjim0"))))
14209 (properties `((upstream-name . "arsenal")))
14210 (build-system r-build-system)
14211 (propagated-inputs `(("r-knitr" ,r-knitr)))
14212 (native-inputs `(("r-knitr" ,r-knitr)))
14213 (home-page "https://github.com/mayoverse/arsenal")
14214 (synopsis "Functions for large-scale statistical summaries")
14215 (description
14216 "This package provides an arsenal of R functions for large-scale
14217 statistical summaries, which are streamlined to work within the latest
14218 reporting tools in R and RStudio and which use formulas and versatile
14219 summary statistics for summary tables and models. The primary functions
14220 include
14221
14222 @enumerate
14223 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
14224 levels of one or more categorical variables;
14225 @item @code{paired}, a Table-1-like summary of multiple variable types paired
14226 across two time points;
14227 @item @code{modelsum}, which performs simple model fits on one or more
14228 endpoints for many variables (univariate or adjusted for covariates);
14229 @item @code{freqlist}, a powerful frequency table across many categorical
14230 variables;
14231 @item @code{comparedf}, a function for comparing @code{data.frames}; and
14232 @item @code{write2}, a function to output tables to a document.
14233 @end enumerate
14234 ")
14235 (license license:gpl2+)))
14236
14237 (define-public r-haplo-stats
14238 (package
14239 (name "r-haplo-stats")
14240 (version "1.8.5")
14241 (source
14242 (origin
14243 (method url-fetch)
14244 (uri (cran-uri "haplo.stats" version))
14245 (sha256
14246 (base32
14247 "1f5cyyyavkf4l6kksp87s8d92vjrnhxmpz6j737pa527pn3gghf9"))))
14248 (properties `((upstream-name . "haplo.stats")))
14249 (build-system r-build-system)
14250 (propagated-inputs
14251 `(("r-arsenal" ,r-arsenal)
14252 ("r-rms" ,r-rms)))
14253 (native-inputs
14254 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
14255 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
14256 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
14257 (description
14258 "This package provides routines for the analysis of indirectly measured
14259 haplotypes. The statistical methods assume that all subjects are unrelated
14260 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
14261 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
14262 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
14263 examples in the vignette.")
14264 (license license:gpl2+)))
14265
14266 (define-public r-bqtl
14267 (package
14268 (name "r-bqtl")
14269 (version "1.0-32")
14270 (source
14271 (origin
14272 (method url-fetch)
14273 (uri (cran-uri "bqtl" version))
14274 (sha256
14275 (base32
14276 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
14277 (build-system r-build-system)
14278 (native-inputs `(("gfortran" ,gfortran)))
14279 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
14280 (synopsis "Bayesian QTL mapping toolkit")
14281 (description
14282 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
14283 lines. It includes maximum likelihood and Bayesian tools.")
14284 (license license:gpl2+)))
14285
14286 (define-public r-ibdreg
14287 (package
14288 (name "r-ibdreg")
14289 (version "0.3.1")
14290 (source
14291 (origin
14292 (method url-fetch)
14293 (uri (cran-uri "ibdreg" version))
14294 (sha256
14295 (base32
14296 "0kgx9iavgm6d6njhki7bm82d6lw2c7kcch2pryd339js2hm0l5gq"))))
14297 (build-system r-build-system)
14298 (home-page "https://www.mayo.edu/research/labs/\
14299 statistical-genetics-genetic-epidemiology/software")
14300 (synopsis "Regression methods for IBD linkage with covariates")
14301 (description
14302 "This package provides a method to test genetic linkage with covariates
14303 by regression methods with response IBD sharing for relative pairs. Account
14304 for correlations of IBD statistics and covariates for relative pairs within
14305 the same pedigree.")
14306 (license license:gpl2+)))
14307
14308 (define-public r-dlmap
14309 (package
14310 (name "r-dlmap")
14311 (version "1.13")
14312 (source
14313 (origin
14314 (method url-fetch)
14315 (uri (cran-uri "dlmap" version))
14316 (sha256
14317 (base32
14318 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
14319 (build-system r-build-system)
14320 (propagated-inputs
14321 `(("r-ibdreg" ,r-ibdreg)
14322 ("r-mgcv" ,r-mgcv)
14323 ("r-nlme" ,r-nlme)
14324 ("r-qtl" ,r-qtl)
14325 ("r-wgaim" ,r-wgaim)))
14326 (home-page "https://cran.r-project.org/web/packages/dlmap/")
14327 (synopsis "Detection localization mapping for QTL")
14328 (description
14329 "This is package for QTL mapping in a mixed model framework with separate
14330 detection and localization stages. The first stage detects the number of QTL
14331 on each chromosome based on the genetic variation due to grouped markers on
14332 the chromosome; the second stage uses this information to determine the most
14333 likely QTL positions. The mixed model can accommodate general fixed and
14334 random effects, including spatial effects in field trials and pedigree
14335 effects. It is applicable to backcrosses, doubled haploids, recombinant
14336 inbred lines, F2 intercrosses, and association mapping populations.")
14337 (license license:gpl2)))
14338
14339 (define-public r-ldheatmap
14340 (package
14341 (name "r-ldheatmap")
14342 (version "0.99-8")
14343 (source
14344 (origin
14345 (method url-fetch)
14346 (uri (cran-uri "LDheatmap" version))
14347 (sha256
14348 (base32
14349 "1x3da3rbhyqb2ddngi48qv7vzb6vc347n9qhryr70qgcc1xvqj4z"))))
14350 (properties `((upstream-name . "LDheatmap")))
14351 (build-system r-build-system)
14352 (propagated-inputs
14353 `(("r-genetics" ,r-genetics)
14354 ("r-rcpp" ,r-rcpp)
14355 ("r-snpstats" ,r-snpstats)))
14356 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
14357 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
14358 (description
14359 "This package provides tools to produce a graphical display, as a heat
14360 map, of measures of pairwise linkage disequilibria between SNPs. Users may
14361 optionally include the physical locations or genetic map distances of each SNP
14362 on the plot.")
14363 (license license:gpl3)))
14364
14365 (define-public r-hwde
14366 (package
14367 (name "r-hwde")
14368 (version "0.67")
14369 (source
14370 (origin
14371 (method url-fetch)
14372 (uri (cran-uri "hwde" version))
14373 (sha256
14374 (base32
14375 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
14376 (build-system r-build-system)
14377 (home-page "https://cran.r-project.org/web/packages/hwde/")
14378 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
14379 (description
14380 "This package fits models for genotypic disequilibria, as described in
14381 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
14382 terms are available that account for first order interactions between loci.
14383 It also implements, for a single locus in a single population, a conditional
14384 exact test for Hardy-Weinberg equilibrium.")
14385 (license license:gpl2+)))
14386
14387 (define-public r-tdthap
14388 (package
14389 (name "r-tdthap")
14390 (version "1.1-11")
14391 (source
14392 (origin
14393 (method url-fetch)
14394 (uri (cran-uri "tdthap" version))
14395 (sha256
14396 (base32
14397 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
14398 (build-system r-build-system)
14399 (home-page "https://cran.r-project.org/web/packages/tdthap/")
14400 (synopsis "TDT tests for extended haplotypes")
14401 (description
14402 "Functions and examples are provided for transmission/disequilibrium
14403 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
14404 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
14405 (license license:artistic2.0)))
14406
14407 (define-public r-sparql
14408 (package
14409 (name "r-sparql")
14410 (version "1.16")
14411 (source (origin
14412 (method url-fetch)
14413 (uri (cran-uri "SPARQL" version))
14414 (sha256
14415 (base32
14416 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
14417 (properties `((upstream-name . "SPARQL")))
14418 (build-system r-build-system)
14419 (propagated-inputs
14420 `(("r-rcurl" ,r-rcurl)
14421 ("r-xml" ,r-xml)))
14422 (home-page "https://cran.r-project.org/web/packages/SPARQL")
14423 (synopsis "SPARQL client for R")
14424 (description "This package provides an interface to use SPARQL to pose
14425 SELECT or UPDATE queries to an end-point.")
14426 ;; The only license indication is found in the DESCRIPTION file,
14427 ;; which states GPL-3. So we cannot assume GPLv3+.
14428 (license license:gpl3)))
14429
14430 (define-public r-bookdown
14431 (package
14432 (name "r-bookdown")
14433 (version "0.20")
14434 (source (origin
14435 (method url-fetch)
14436 (uri (cran-uri "bookdown" version))
14437 (sha256
14438 (base32
14439 "0gnshkp1aj7f29sjkhzxn890hz39nwaqdln61x8apmrc658nacdg"))))
14440 (build-system r-build-system)
14441 (propagated-inputs
14442 `(("r-htmltools" ,r-htmltools)
14443 ("r-knitr" ,r-knitr)
14444 ("r-rmarkdown" ,r-rmarkdown)
14445 ("r-tinytex" ,r-tinytex)
14446 ("r-xfun" ,r-xfun)
14447 ("pandoc" ,pandoc)))
14448 (home-page "https://github.com/rstudio/bookdown")
14449 (synopsis "Authoring books and technical documents with R markdown")
14450 (description "This package provides output formats and utilities for
14451 authoring books and technical documents with R Markdown.")
14452 (license license:gpl3)))
14453
14454 (define-public r-optparse
14455 (package
14456 (name "r-optparse")
14457 (version "1.6.6")
14458 (source
14459 (origin
14460 (method url-fetch)
14461 (uri (cran-uri "optparse" version))
14462 (sha256
14463 (base32
14464 "1l301dy3gc8pn7j00awcjh41wmc1ks9kswak255kbsa6f54rsxsi"))))
14465 (build-system r-build-system)
14466 (propagated-inputs
14467 `(("r-getopt" ,r-getopt)))
14468 (native-inputs
14469 `(("r-knitr" ,r-knitr)))
14470 (home-page "https://github.com/trevorld/optparse")
14471 (synopsis "Command line option parser")
14472 (description
14473 "This package provides a command line parser inspired by Python's
14474 @code{optparse} library to be used with Rscript to write shebang scripts
14475 that accept short and long options.")
14476 (license license:gpl2+)))
14477
14478 (define-public r-wgcna
14479 (package
14480 (name "r-wgcna")
14481 (version "1.69")
14482 (source
14483 (origin
14484 (method url-fetch)
14485 (uri (cran-uri "WGCNA" version))
14486 (sha256
14487 (base32
14488 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
14489 (properties `((upstream-name . "WGCNA")))
14490 (build-system r-build-system)
14491 (propagated-inputs
14492 `(("r-annotationdbi" ,r-annotationdbi)
14493 ("r-doparallel" ,r-doparallel)
14494 ("r-dynamictreecut" ,r-dynamictreecut)
14495 ("r-fastcluster" ,r-fastcluster)
14496 ("r-foreach" ,r-foreach)
14497 ("r-go-db" ,r-go-db)
14498 ("r-hmisc" ,r-hmisc)
14499 ("r-impute" ,r-impute)
14500 ("r-rcpp" ,r-rcpp)
14501 ("r-survival" ,r-survival)
14502 ("r-matrixstats" ,r-matrixstats)
14503 ("r-preprocesscore" ,r-preprocesscore)))
14504 (home-page
14505 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
14506 (synopsis "Weighted correlation network analysis")
14507 (description
14508 "This package provides functions necessary to perform Weighted
14509 Correlation Network Analysis on high-dimensional data. It includes functions
14510 for rudimentary data cleaning, construction and summarization of correlation
14511 networks, module identification and functions for relating both variables and
14512 modules to sample traits. It also includes a number of utility functions for
14513 data manipulation and visualization.")
14514 (license license:gpl2+)))
14515
14516 (define-public r-kernlab
14517 (package
14518 (name "r-kernlab")
14519 (version "0.9-29")
14520 (source
14521 (origin
14522 (method url-fetch)
14523 (uri (cran-uri "kernlab" version))
14524 (sha256
14525 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
14526 (build-system r-build-system)
14527 (home-page "https://cran.r-project.org/web/packages/kernlab")
14528 (synopsis "Kernel-based machine learning tools")
14529 (description
14530 "This package provides kernel-based machine learning methods for
14531 classification, regression, clustering, novelty detection, quantile regression
14532 and dimensionality reduction. Among other methods @code{kernlab} includes
14533 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
14534 and a QP solver.")
14535 (license license:gpl2)))
14536
14537 (define-public r-hierfstat
14538 (package
14539 (name "r-hierfstat")
14540 (version "0.5-7")
14541 (source
14542 (origin
14543 (method url-fetch)
14544 (uri (cran-uri "hierfstat" version))
14545 (sha256
14546 (base32
14547 "0dp8k1z5a8gqnax99y1hwfvxilzf4n2i751zr0z6ihrzirsvb3m3"))))
14548 (build-system r-build-system)
14549 (propagated-inputs
14550 `(("r-ade4" ,r-ade4)
14551 ("r-adegenet" ,r-adegenet)
14552 ("r-gaston" ,r-gaston)
14553 ("r-gtools" ,r-gtools)))
14554 (native-inputs
14555 `(("r-knitr" ,r-knitr)))
14556 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
14557 (synopsis "Estimation and tests of hierarchical F-statistics")
14558 (description
14559 "This package allows the estimation of hierarchical F-statistics from
14560 haploid or diploid genetic data with any numbers of levels in the hierarchy,
14561 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
14562 are also given to test via randomisations the significance of each F and
14563 variance components, using the likelihood-ratio statistics G.")
14564 (license license:gpl2+)))
14565
14566 (define-public r-hapassoc
14567 (package
14568 (name "r-hapassoc")
14569 (version "1.2-8")
14570 (source
14571 (origin
14572 (method url-fetch)
14573 (uri (cran-uri "hapassoc" version))
14574 (sha256
14575 (base32
14576 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
14577 (build-system r-build-system)
14578 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
14579 (synopsis "Inference of trait associations with SNP haplotypes")
14580 (description
14581 "Hapassoc performs likelihood inference of trait associations with
14582 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
14583 functions are developed primarily for data collected in cohort or
14584 cross-sectional studies. They can accommodate uncertain haplotype phase and
14585 handle missing genotypes at some SNPs.")
14586 (license license:gpl2)))
14587
14588 (define-public r-sampling
14589 (package
14590 (name "r-sampling")
14591 (version "2.8")
14592 (source
14593 (origin
14594 (method url-fetch)
14595 (uri (cran-uri "sampling" version))
14596 (sha256
14597 (base32
14598 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
14599 (build-system r-build-system)
14600 (propagated-inputs
14601 `(("r-lpsolve" ,r-lpsolve)
14602 ("r-mass" ,r-mass)))
14603 (home-page "https://cran.r-project.org/web/packages/sampling/")
14604 (synopsis "Survey sampling")
14605 (description
14606 "This package provides functions for drawing and calibrating samples.")
14607 (license license:gpl2+)))
14608
14609 (define-public r-r2html
14610 (package
14611 (name "r-r2html")
14612 (version "2.3.2")
14613 (source
14614 (origin
14615 (method url-fetch)
14616 (uri (cran-uri "R2HTML" version))
14617 (sha256
14618 (base32
14619 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
14620 (properties `((upstream-name . "R2HTML")))
14621 (build-system r-build-system)
14622 (home-page "https://github.com/nalimilan/R2HTML")
14623 (synopsis "HTML export for R objects")
14624 (description
14625 "This package includes HTML functions and methods to write in an HTML
14626 file. Thus, making HTML reports is easy. It includes a function that allows
14627 redirection on the fly, which appears to be very useful for teaching purposes,
14628 as the student can keep a copy of the produced output to keep all that they
14629 did during the course. The package comes with a vignette describing how to
14630 write HTML reports for statistical analysis. Finally, a driver for Sweave
14631 parses HTML flat files containing R code and to automatically write
14632 the corresponding outputs (tables and graphs).")
14633 (license license:gpl2+)))
14634
14635 (define-public r-rjava
14636 (package
14637 (name "r-rjava")
14638 (version "0.9-13")
14639 (source
14640 (origin
14641 (method url-fetch)
14642 (uri (cran-uri "rJava" version))
14643 (sha256
14644 (base32
14645 "1x3mihyqzr61j52rwaqciw43mkjzmhib4s6qf57v6xj40ksqh5jv"))))
14646 (properties `((upstream-name . "rJava")))
14647 (build-system r-build-system)
14648 (arguments
14649 `(#:modules ((guix build utils)
14650 (guix build r-build-system)
14651 (ice-9 match))
14652 #:phases
14653 (modify-phases %standard-phases
14654 (add-after 'unpack 'set-JAVA_HOME
14655 (lambda* (#:key inputs #:allow-other-keys)
14656 (let ((jdk (assoc-ref inputs "jdk")))
14657 (setenv "JAVA_HOME" jdk)
14658 (setenv "JAVA" (which "java"))
14659 (setenv "JAR" (which "jar"))
14660 (setenv "JAVAC" (which "javac"))
14661 (setenv "JAVAH" (which "javah"))
14662 (setenv "JAVA_CPPFLAGS"
14663 (string-append "-I" jdk "/include "
14664 "-I" jdk "/include/linux"))
14665 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
14666 ((lib) (setenv "JAVA_LIBS" lib))
14667 (_ (error "Could not find libjvm.so"))))
14668 #t)))))
14669 (inputs
14670 `(("icu4c" ,icu4c)
14671 ("jdk" ,icedtea-8 "jdk")
14672 ("pcre" ,pcre)
14673 ("zlib" ,zlib)))
14674 (home-page "https://www.rforge.net/rJava/")
14675 (synopsis "Low-Level R to Java interface")
14676 (description
14677 "This package provides a low-level interface to the Java VM very much
14678 like .C/.Call and friends. It allows the creation of objects, calling methods
14679 and accessing fields.")
14680 (license license:gpl2)))
14681
14682 (define-public r-svmisc
14683 (package
14684 (name "r-svmisc")
14685 (version "1.1.0")
14686 (source
14687 (origin
14688 (method url-fetch)
14689 (uri (cran-uri "svMisc" version))
14690 (sha256
14691 (base32
14692 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
14693 (properties `((upstream-name . "svMisc")))
14694 (build-system r-build-system)
14695 (home-page "https://github.com/SciViews/svMisc")
14696 (synopsis "Miscellaneous functions for SciViews")
14697 (description
14698 "This package provides miscellaneous functions for SciViews or general
14699 use, including tools to manage a temporary environment attached to the search
14700 path for temporary variables you do not want to @code{save()} or
14701 @code{load()}; test the current platform; showing progress bars, etc.")
14702 (license license:gpl2)))
14703
14704 (define-public r-xyz
14705 (package
14706 (name "r-xyz")
14707 (version "0.2")
14708 (source
14709 (origin
14710 (method url-fetch)
14711 (uri (cran-uri "xyz" version))
14712 (sha256
14713 (base32
14714 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
14715 (build-system r-build-system)
14716 (propagated-inputs
14717 `(("r-rcpp" ,r-rcpp)))
14718 (home-page "https://cran.r-project.org/web/packages/xyz/")
14719 (synopsis "Algorithm for fast interaction search in high-dimensional data")
14720 (description
14721 "High dimensional interaction search by brute force requires a quadratic
14722 computational cost in the number of variables. The xyz algorithm provably
14723 finds strong interactions in almost linear time. For details of the algorithm
14724 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
14725 interaction search in high-dimensional data.")
14726 ;; Any version of the GPL.
14727 (license license:gpl2+)))
14728
14729 (define-public r-rttf2pt1
14730 (package
14731 (name "r-rttf2pt1")
14732 (version "1.3.8")
14733 (source
14734 (origin
14735 (method url-fetch)
14736 (uri (cran-uri "Rttf2pt1" version))
14737 (sha256
14738 (base32
14739 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
14740 (properties `((upstream-name . "Rttf2pt1")))
14741 (build-system r-build-system)
14742 (home-page "https://github.com/wch/Rttf2pt1")
14743 (synopsis "Font conversion utility")
14744 (description
14745 "This package contains the program @code{ttf2pt1}, for use with the
14746 @code{extrafont} package.")
14747 ;; Most of the files are covered under the Expat license. Some files are
14748 ;; covered under BSD-3. Deviations for individual files are recorded in
14749 ;; the LICENSE file.
14750 (license (list license:bsd-3 license:expat
14751 (license:non-copyleft "file://LICENSE")))))
14752
14753 (define-public r-extrafontdb
14754 (package
14755 (name "r-extrafontdb")
14756 (version "1.0")
14757 (source
14758 (origin
14759 (method url-fetch)
14760 (uri (cran-uri "extrafontdb" version))
14761 (sha256
14762 (base32
14763 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14764 (build-system r-build-system)
14765 (home-page "https://github.com/wch/extrafontdb")
14766 (synopsis "Database for the extrafont package")
14767 (description
14768 "This package holds the database for the @code{extrafont} package.")
14769 (license license:gpl2)))
14770
14771 (define-public r-extrafont
14772 (package
14773 (name "r-extrafont")
14774 (version "0.17")
14775 (source
14776 (origin
14777 (method url-fetch)
14778 (uri (cran-uri "extrafont" version))
14779 (sha256
14780 (base32
14781 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14782 (build-system r-build-system)
14783 (propagated-inputs
14784 `(("r-extrafontdb" ,r-extrafontdb)
14785 ("r-rttf2pt1" ,r-rttf2pt1)))
14786 (home-page "https://github.com/wch/extrafont")
14787 (synopsis "Tools for using fonts in R")
14788 (description
14789 "The extrafont package makes it easier to use fonts other than the basic
14790 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14791 used with PDF or PostScript output files. There are two hurdles for using
14792 fonts in PDF (or Postscript) output files:
14793
14794 @enumerate
14795 @item Making R aware of the font and the dimensions of the characters.
14796 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14797 properly on a device that doesn't have the font. This is usually needed if
14798 you want to print the PDF file or share it with others.
14799 @end enumerate
14800
14801 The extrafont package makes both of these things easier.")
14802 (license license:gpl2)))
14803
14804 (define-public r-xkcd
14805 (package
14806 (name "r-xkcd")
14807 (version "0.0.6")
14808 (source
14809 (origin
14810 (method url-fetch)
14811 (uri (cran-uri "xkcd" version))
14812 (sha256
14813 (base32
14814 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14815 (build-system r-build-system)
14816 (propagated-inputs
14817 `(("r-extrafont" ,r-extrafont)
14818 ("r-ggplot2" ,r-ggplot2)
14819 ("r-hmisc" ,r-hmisc)))
14820 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14821 (synopsis "Plot ggplot2 graphics in the XKCD style")
14822 (description
14823 "This package provides the means to plot ggplot2 graphs in the style of
14824 the XKCD web comic.")
14825 (license license:gpl3)))
14826
14827 (define-public r-msigdbr
14828 (package
14829 (name "r-msigdbr")
14830 (version "7.1.1")
14831 (source
14832 (origin
14833 (method url-fetch)
14834 (uri (cran-uri "msigdbr" version))
14835 (sha256
14836 (base32
14837 "0jvi49qa7616s58p0rx66pcw7h12rc8kgcg9225jk7pc3934hnzh"))))
14838 (build-system r-build-system)
14839 (propagated-inputs
14840 `(("r-dplyr" ,r-dplyr)
14841 ("r-magrittr" ,r-magrittr)
14842 ("r-rlang" ,r-rlang)
14843 ("r-tibble" ,r-tibble)))
14844 (native-inputs
14845 `(("r-knitr" ,r-knitr)))
14846 (home-page "https://github.com/igordot/msigdbr")
14847 (synopsis "MSigDB gene sets for multiple organisms")
14848 (description
14849 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14850 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14851 software in a standard R data frame with key-value pairs. Included are the
14852 original human gene symbols and Entrez IDs as well as the equivalents for
14853 various frequently studied model organisms such as mouse, rat, pig, fly, and
14854 yeast.")
14855 ;; The package is covered under the Expat license, but the upstream MSigDB
14856 ;; files are made available under the Creative Commons Attribution 4.0
14857 ;; International license.
14858 (license (list license:expat license:cc-by4.0))))
14859
14860 (define-public r-gridgraphics
14861 (package
14862 (name "r-gridgraphics")
14863 (version "0.5-0")
14864 (source
14865 (origin
14866 (method url-fetch)
14867 (uri (cran-uri "gridGraphics" version))
14868 (sha256
14869 (base32
14870 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14871 (properties `((upstream-name . "gridGraphics")))
14872 (build-system r-build-system)
14873 (home-page "https://github.com/pmur002/gridgraphics")
14874 (synopsis "Redraw base graphics using @code{grid} graphics")
14875 (description
14876 "This package provides functions to convert a page of plots drawn with
14877 the @code{graphics} package into identical output drawn with the @code{grid}
14878 package. The result looks like the original @code{graphics}-based plot, but
14879 consists of @code{grid} grobs and viewports that can then be manipulated with
14880 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14881 (license license:gpl2+)))
14882
14883 (define-public r-farver
14884 (package
14885 (name "r-farver")
14886 (version "2.0.3")
14887 (source
14888 (origin
14889 (method url-fetch)
14890 (uri (cran-uri "farver" version))
14891 (sha256
14892 (base32
14893 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14894 (build-system r-build-system)
14895 (home-page "https://github.com/thomasp85/farver")
14896 (synopsis "Vectorized color conversion and comparison")
14897 (description
14898 "The encoding of color can be handled in many different ways, using
14899 different color spaces. As different color spaces have different uses,
14900 efficient conversion between these representations are important. This
14901 package provides a set of functions that gives access to very fast color space
14902 conversion and comparisons implemented in C++, and offers 100-fold speed
14903 improvements over the @code{convertColor} function in the @code{grDevices}
14904 package.")
14905 (license license:expat)))
14906
14907 (define-public r-ggplotify
14908 (package
14909 (name "r-ggplotify")
14910 (version "0.0.5")
14911 (source
14912 (origin
14913 (method url-fetch)
14914 (uri (cran-uri "ggplotify" version))
14915 (sha256
14916 (base32
14917 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14918 (build-system r-build-system)
14919 (propagated-inputs
14920 `(("r-ggplot2" ,r-ggplot2)
14921 ("r-gridgraphics" ,r-gridgraphics)
14922 ("r-rvcheck" ,r-rvcheck)))
14923 (native-inputs
14924 `(("r-knitr" ,r-knitr)))
14925 (home-page "https://github.com/GuangchuangYu/ggplotify")
14926 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14927 (description
14928 "This package provides tools to convert plot function calls (using
14929 expression or formula) to @code{grob} or @code{ggplot} objects that are
14930 compatible with the @code{grid} and @code{ggplot2} environment. With this
14931 package, we are able to e.g. use @code{cowplot} to align plots produced by
14932 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14933 converting them to @code{ggplot} objects.")
14934 (license license:artistic2.0)))
14935
14936 (define-public r-triebeard
14937 (package
14938 (name "r-triebeard")
14939 (version "0.3.0")
14940 (source
14941 (origin
14942 (method url-fetch)
14943 (uri (cran-uri "triebeard" version))
14944 (sha256
14945 (base32
14946 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14947 (build-system r-build-system)
14948 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14949 (home-page "https://github.com/Ironholds/triebeard/")
14950 (synopsis "Radix trees in Rcpp")
14951 (description
14952 "Radix trees, or tries, are key-value data structures optimized for
14953 efficient lookups, similar in purpose to hash tables. This package provides
14954 an implementation of radix trees for use in R programming and in developing
14955 packages with Rcpp.")
14956 (license license:expat)))
14957
14958 (define-public r-tweenr
14959 (package
14960 (name "r-tweenr")
14961 (version "1.0.1")
14962 (source
14963 (origin
14964 (method url-fetch)
14965 (uri (cran-uri "tweenr" version))
14966 (sha256
14967 (base32
14968 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14969 (build-system r-build-system)
14970 (propagated-inputs
14971 `(("r-farver" ,r-farver)
14972 ("r-magrittr" ,r-magrittr)
14973 ("r-rcpp" ,r-rcpp)
14974 ("r-rlang" ,r-rlang)))
14975 (home-page "https://github.com/thomasp85/tweenr")
14976 (synopsis "Interpolate data for smooth animations")
14977 (description
14978 "In order to create smooth animation between states of data, tweening is
14979 necessary. This package provides a range of functions for creating tweened
14980 data that can be used as basis for animation. Furthermore it adds a number of
14981 vectorized interpolaters for common R data types such as numeric, date and
14982 color.")
14983 (license license:expat)))
14984
14985 (define-public r-polyclip
14986 (package
14987 (name "r-polyclip")
14988 (version "1.10-0")
14989 (source
14990 (origin
14991 (method url-fetch)
14992 (uri (cran-uri "polyclip" version))
14993 (sha256
14994 (base32
14995 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14996 (build-system r-build-system)
14997 (native-inputs `(("pkg-config" ,pkg-config)))
14998 (home-page "http://www.angusj.com/delphi/clipper.php")
14999 (synopsis "Polygon clipping")
15000 (description
15001 "This package provides an R port of the library Clipper. It performs
15002 polygon clipping operations (intersection, union, set minus, set difference)
15003 for polygonal regions of arbitrary complexity, including holes. It computes
15004 offset polygons (spatial buffer zones, morphological dilations, Minkowski
15005 dilations) for polygonal regions and polygonal lines. It computes the
15006 Minkowski Sum of general polygons. There is a function for removing
15007 self-intersections from polygon data.")
15008 (license license:boost1.0)))
15009
15010 (define-public r-urltools
15011 (package
15012 (name "r-urltools")
15013 (version "1.7.3")
15014 (source
15015 (origin
15016 (method url-fetch)
15017 (uri (cran-uri "urltools" version))
15018 (sha256
15019 (base32
15020 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
15021 (build-system r-build-system)
15022 (propagated-inputs
15023 `(("r-rcpp" ,r-rcpp)
15024 ("r-triebeard" ,r-triebeard)))
15025 (home-page "https://github.com/Ironholds/urltools/")
15026 (synopsis "Vectorized tools for URL handling and parsing")
15027 (description
15028 "This package provides a toolkit for all URL-handling needs, including
15029 encoding and decoding, parsing, parameter extraction and modification. All
15030 functions are designed to be both fast and entirely vectorized. It is
15031 intended to be useful for people dealing with web-related datasets, such as
15032 server-side logs, although may be useful for other situations involving large
15033 sets of URLs.")
15034 (license license:expat)))
15035
15036 (define-public r-ggforce
15037 (package
15038 (name "r-ggforce")
15039 (version "0.3.2")
15040 (source
15041 (origin
15042 (method url-fetch)
15043 (uri (cran-uri "ggforce" version))
15044 (sha256
15045 (base32
15046 "1lplxyq5bgx90dgaimhynpcywag1gp6vlsy7q52ay1nfc35qmkjc"))))
15047 (build-system r-build-system)
15048 (propagated-inputs
15049 `(("r-ggplot2" ,r-ggplot2)
15050 ("r-gtable" ,r-gtable)
15051 ("r-mass" ,r-mass)
15052 ("r-polyclip" ,r-polyclip)
15053 ("r-rcpp" ,r-rcpp)
15054 ("r-rcppeigen" ,r-rcppeigen)
15055 ("r-rlang" ,r-rlang)
15056 ("r-scales" ,r-scales)
15057 ("r-tidyselect" ,r-tidyselect)
15058 ("r-tweenr" ,r-tweenr)
15059 ("r-withr" ,r-withr)))
15060 (home-page "https://ggforce.data-imaginist.com")
15061 (synopsis "Accelerating ggplot2")
15062 (description
15063 "The aim of the ggplot2 package is to aid in visual data investigations.
15064 This focus has led to a lack of facilities for composing specialized plots.
15065 Thi package aims to be a collection of mainly new statistics and geometries
15066 that fills this gap.")
15067 (license license:expat)))
15068
15069 (define-public r-europepmc
15070 (package
15071 (name "r-europepmc")
15072 (version "0.4")
15073 (source
15074 (origin
15075 (method url-fetch)
15076 (uri (cran-uri "europepmc" version))
15077 (sha256
15078 (base32
15079 "174nnyc2mbgqxb5kgqabn1vf71c2mps7ig2bclq4is0f7nb64pym"))))
15080 (build-system r-build-system)
15081 (propagated-inputs
15082 `(("r-dplyr" ,r-dplyr)
15083 ("r-httr" ,r-httr)
15084 ("r-jsonlite" ,r-jsonlite)
15085 ("r-plyr" ,r-plyr)
15086 ("r-progress" ,r-progress)
15087 ("r-purrr" ,r-purrr)
15088 ("r-rlang" ,r-rlang)
15089 ("r-tibble" ,r-tibble)
15090 ("r-tidyr" ,r-tidyr)
15091 ("r-urltools" ,r-urltools)
15092 ("r-xml2" ,r-xml2)))
15093 (native-inputs
15094 `(("r-knitr" ,r-knitr)))
15095 (home-page "https://github.com/ropensci/europepmc/")
15096 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
15097 (description
15098 "This package provides an R Client for the
15099 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
15100 Service}. It gives access to both metadata on life science literature and
15101 open access full texts. Europe PMC indexes all PubMed content and other
15102 literature sources including Agricola, a bibliographic database of citations
15103 to the agricultural literature, or Biological Patents. In addition to
15104 bibliographic metadata, the client allows users to fetch citations and
15105 reference lists. Links between life-science literature and other EBI
15106 databases, including ENA, PDB or ChEMBL are also accessible.")
15107 (license license:gpl3)))
15108
15109 (define-public r-ggraph
15110 (package
15111 (name "r-ggraph")
15112 (version "2.0.3")
15113 (source
15114 (origin
15115 (method url-fetch)
15116 (uri (cran-uri "ggraph" version))
15117 (sha256
15118 (base32
15119 "1pz06j0za4p6dc3fqjzcw8bpym70bmnfcvpv1q34r74rnwzjdyvq"))))
15120 (build-system r-build-system)
15121 (propagated-inputs
15122 `(("r-digest" ,r-digest)
15123 ("r-dplyr" ,r-dplyr)
15124 ("r-ggforce" ,r-ggforce)
15125 ("r-ggplot2" ,r-ggplot2)
15126 ("r-ggrepel" ,r-ggrepel)
15127 ("r-graphlayouts" ,r-graphlayouts)
15128 ("r-gtable" ,r-gtable)
15129 ("r-igraph" ,r-igraph)
15130 ("r-mass" ,r-mass)
15131 ("r-rcpp" ,r-rcpp)
15132 ("r-rlang" ,r-rlang)
15133 ("r-scales" ,r-scales)
15134 ("r-tidygraph" ,r-tidygraph)
15135 ("r-viridis" ,r-viridis)))
15136 (native-inputs
15137 `(("r-knitr" ,r-knitr)))
15138 (home-page "https://cran.r-project.org/web/packages/ggraph/")
15139 (synopsis "Implementation of grammar of graphics for graphs and networks")
15140 (description
15141 "The grammar of graphics as implemented in ggplot2 is a poor fit for
15142 graph and network visualizations due to its reliance on tabular data input.
15143 The ggraph package is an extension of the ggplot2 API tailored to graph
15144 visualizations and provides the same flexible approach to building up plots
15145 layer by layer.")
15146 (license license:gpl3)))
15147
15148 (define-public r-varselrf
15149 (package
15150 (name "r-varselrf")
15151 (version "0.7-8")
15152 (source
15153 (origin
15154 (method url-fetch)
15155 (uri (cran-uri "varSelRF" version))
15156 (sha256
15157 (base32
15158 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
15159 (properties `((upstream-name . "varSelRF")))
15160 (build-system r-build-system)
15161 (propagated-inputs
15162 `(("r-randomforest" ,r-randomforest)))
15163 (home-page "https://www.ligarto.org/rdiaz/software/software")
15164 (synopsis "Variable selection using random forests")
15165 (description
15166 "This package provides tools for the variable selection from random
15167 forests using both backwards variable elimination (for the selection of small
15168 sets of non-redundant variables) and selection based on the importance
15169 spectrum (somewhat similar to scree plots; for the selection of large,
15170 potentially highly-correlated variables). The main applications are in
15171 high-dimensional data (e.g., microarray data, and other genomics and
15172 proteomics applications).")
15173 (license license:gpl2+)))
15174
15175 (define-public r-pamr
15176 (package
15177 (name "r-pamr")
15178 (version "1.56.1")
15179 (source
15180 (origin
15181 (method url-fetch)
15182 (uri (cran-uri "pamr" version))
15183 (sha256
15184 (base32
15185 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
15186 (build-system r-build-system)
15187 (propagated-inputs
15188 `(("r-cluster" ,r-cluster)
15189 ("r-survival" ,r-survival)))
15190 (native-inputs `(("gfortran" ,gfortran)))
15191 (home-page "https://cran.r-project.org/web/packages/pamr/")
15192 (synopsis "Prediction Analysis for Microarrays")
15193 (description
15194 "This package provides some functions for sample classification in
15195 microarrays.")
15196 (license license:gpl2)))
15197
15198 (define-public r-rda
15199 (package
15200 (name "r-rda")
15201 (version "1.0.2-2.1")
15202 (source
15203 (origin
15204 (method url-fetch)
15205 (uri (cran-uri "rda" version))
15206 (sha256
15207 (base32
15208 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
15209 (build-system r-build-system)
15210 (home-page "https://cran.r-project.org/web/packages/rda/")
15211 (synopsis "Shrunken centroids regularized discriminant analysis")
15212 (description
15213 "This package provides tools for shrunken centroids regularized
15214 discriminant analysis for the purpose of classifying high dimensional data.")
15215 (license license:gpl2+)))
15216
15217 (define-public r-ggvis
15218 (package
15219 (name "r-ggvis")
15220 (version "0.4.5")
15221 (source
15222 (origin
15223 (method url-fetch)
15224 (uri (cran-uri "ggvis" version))
15225 (sha256
15226 (base32
15227 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
15228 (build-system r-build-system)
15229 (propagated-inputs
15230 `(("r-assertthat" ,r-assertthat)
15231 ("r-dplyr" ,r-dplyr)
15232 ("r-htmltools" ,r-htmltools)
15233 ("r-jsonlite" ,r-jsonlite)
15234 ("r-lazyeval" ,r-lazyeval)
15235 ("r-magrittr" ,r-magrittr)
15236 ("r-shiny" ,r-shiny)))
15237 (home-page "https://ggvis.rstudio.com/")
15238 (synopsis "Interactive grammar of graphics")
15239 (description
15240 "This package is a data visualization package for R providing an
15241 implementation of an interactive grammar of graphics, taking the best parts of
15242 ggplot2, combining them with the reactive framework of Shiny and drawing web
15243 graphics using Vega.")
15244 (license license:gpl2)))
15245
15246 (define-public r-gbm
15247 (package
15248 (name "r-gbm")
15249 (version "2.1.8")
15250 (source
15251 (origin
15252 (method url-fetch)
15253 (uri (cran-uri "gbm" version))
15254 (sha256
15255 (base32
15256 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
15257 (build-system r-build-system)
15258 (propagated-inputs
15259 `(("r-lattice" ,r-lattice)
15260 ("r-survival" ,r-survival)))
15261 (native-inputs
15262 `(("r-knitr" ,r-knitr)))
15263 (home-page "https://github.com/gbm-developers/gbm")
15264 (synopsis "Generalized boosted regression models")
15265 (description
15266 "This package is an implementation of extensions to Freund and Schapire's
15267 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
15268 regression methods for least squares, absolute loss, t-distribution loss,
15269 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
15270 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
15271 and Learning to Rank measures (LambdaMart).")
15272 (license license:gpl2+)))
15273
15274 (define-public r-threejs
15275 (package
15276 (name "r-threejs")
15277 (version "0.3.3")
15278 (source
15279 (origin
15280 (method url-fetch)
15281 (uri (cran-uri "threejs" version))
15282 (sha256
15283 (base32
15284 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
15285 (build-system r-build-system)
15286 (arguments
15287 `(#:modules ((guix build utils)
15288 (guix build r-build-system)
15289 (srfi srfi-1)
15290 (ice-9 popen))
15291 #:phases
15292 (modify-phases %standard-phases
15293 (add-after 'unpack 'process-javascript
15294 (lambda* (#:key inputs #:allow-other-keys)
15295 (with-directory-excursion "inst"
15296 (call-with-values
15297 (lambda ()
15298 (unzip2
15299 `((,(assoc-ref inputs "js-jquery")
15300 "htmlwidgets/lib/jquery/jquery.min.js")
15301 (,(assoc-ref inputs "js-threejs-111")
15302 "htmlwidgets/lib/threejs-111/three.min.js"))))
15303 (lambda (sources targets)
15304 (for-each (lambda (source target)
15305 (format #t "Processing ~a --> ~a~%"
15306 source target)
15307 (delete-file target)
15308 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
15309 (call-with-output-file target
15310 (lambda (port)
15311 (dump-port minified port)))))
15312 sources targets))))
15313 #t)))))
15314 (propagated-inputs
15315 `(("r-base64enc" ,r-base64enc)
15316 ("r-crosstalk" ,r-crosstalk)
15317 ("r-htmlwidgets" ,r-htmlwidgets)
15318 ("r-igraph" ,r-igraph)))
15319 (native-inputs
15320 `(("uglify-js" ,uglify-js)
15321 ("js-jquery"
15322 ,(origin
15323 (method url-fetch)
15324 (uri "https://code.jquery.com/jquery-1.12.4.js")
15325 (sha256
15326 (base32
15327 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
15328 ("js-threejs-111"
15329 ,(origin
15330 (method url-fetch)
15331 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
15332 (sha256
15333 (base32
15334 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
15335 (home-page "https://bwlewis.github.io/rthreejs")
15336 (synopsis "Interactive 3D scatter plots, networks and globes")
15337 (description
15338 "Create interactive 3D scatter plots, network plots, and globes in R
15339 using the three.js visualization library.")
15340 (license license:expat)))
15341
15342 (define-public r-mlbench
15343 (package
15344 (name "r-mlbench")
15345 (version "2.1-1")
15346 (source
15347 (origin
15348 (method url-fetch)
15349 (uri (cran-uri "mlbench" version))
15350 (sha256
15351 (base32
15352 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
15353 (build-system r-build-system)
15354 (home-page "https://cran.r-project.org/web/packages/mlbench/")
15355 (synopsis "Machine learning benchmark problems")
15356 (description
15357 "This package provides a collection of artificial and real-world machine
15358 learning benchmark problems, including, e.g., several data sets from the UCI
15359 repository.")
15360 (license license:gpl2)))
15361
15362 (define-public r-mpm
15363 (package
15364 (name "r-mpm")
15365 (version "1.0-22")
15366 (source
15367 (origin
15368 (method url-fetch)
15369 (uri (cran-uri "mpm" version))
15370 (sha256
15371 (base32
15372 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
15373 (build-system r-build-system)
15374 (propagated-inputs
15375 `(("r-kernsmooth" ,r-kernsmooth)
15376 ("r-mass" ,r-mass)))
15377 (home-page "http://mpm.r-forge.r-project.org")
15378 (synopsis "Multivariate projection methods")
15379 (description
15380 "This is a package for exploratory graphical analysis of multivariate
15381 data, specifically gene expression data with different projection methods:
15382 principal component analysis, correspondence analysis, spectral map
15383 analysis.")
15384 (license license:gpl2+)))
15385
15386 (define-public r-png
15387 (package
15388 (name "r-png")
15389 (version "0.1-7")
15390 (source (origin
15391 (method url-fetch)
15392 (uri (cran-uri "png" version))
15393 (sha256
15394 (base32
15395 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
15396 (build-system r-build-system)
15397 (inputs
15398 `(("libpng" ,libpng)
15399 ("zlib" ,zlib)))
15400 (home-page "https://www.rforge.net/png/")
15401 (synopsis "Read and write PNG images")
15402 (description
15403 "This package provides an easy and simple way to read, write and display
15404 bitmap images stored in the PNG format. It can read and write both files and
15405 in-memory raw vectors.")
15406 ;; Any of these GPL versions.
15407 (license (list license:gpl2 license:gpl3))))
15408
15409 (define-public r-ggcorrplot
15410 (package
15411 (name "r-ggcorrplot")
15412 (version "0.1.3")
15413 (source
15414 (origin
15415 (method url-fetch)
15416 (uri (cran-uri "ggcorrplot" version))
15417 (sha256
15418 (base32
15419 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
15420 (build-system r-build-system)
15421 (propagated-inputs
15422 `(("r-ggplot2" ,r-ggplot2)
15423 ("r-reshape2" ,r-reshape2)))
15424 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
15425 (synopsis "Visualization of a correlation matrix using ggplot2")
15426 (description
15427 "The ggcorrplot package can be used to visualize easily a correlation
15428 matrix using ggplot2. It provides a solution for reordering the correlation
15429 matrix and displays the significance level on the plot. It also includes a
15430 function for computing a matrix of correlation p-values.")
15431 (license license:gpl2)))
15432
15433 ;; This package includes minified JavaScript files. When upgrading please
15434 ;; check that there are no new minified JavaScript files.
15435 (define-public r-flexdashboard
15436 (package
15437 (name "r-flexdashboard")
15438 (version "0.5.2")
15439 (source
15440 (origin
15441 (method url-fetch)
15442 (uri (cran-uri "flexdashboard" version))
15443 (sha256
15444 (base32
15445 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
15446 (modules '((guix build utils)))
15447 (snippet
15448 '(begin
15449 ;; Delete bundled minified JavaScript files
15450 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
15451 (delete-file "inst/www/sly/sly.min.js")
15452 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
15453 (delete-file "inst/www/prism/prism.js")
15454 #t))))
15455 (build-system r-build-system)
15456 (arguments
15457 `(#:modules ((guix build utils)
15458 (guix build r-build-system)
15459 (srfi srfi-1)
15460 (srfi srfi-26)
15461 (ice-9 popen)
15462 (ice-9 textual-ports))
15463 #:phases
15464 (modify-phases %standard-phases
15465 (add-after 'unpack 'process-javascript
15466 (lambda* (#:key inputs #:allow-other-keys)
15467 (with-directory-excursion "inst"
15468 ;; Concatenate all components of prism.js
15469 (let ((contents (string-join
15470 (map (lambda (name)
15471 (call-with-input-file
15472 (assoc-ref inputs name)
15473 get-string-all))
15474 (list "js-prism"
15475 "js-prism-r"
15476 "js-prism-line-numbers"))
15477 "\n")))
15478 (call-with-output-file "prism-src.js"
15479 (cut display contents <>)))
15480 (call-with-values
15481 (lambda ()
15482 (unzip2
15483 `(("www/stickytableheaders/jquery.stickytableheaders.js"
15484 "www/stickytableheaders/jquery.stickytableheaders.min.js")
15485 ("www/sly/sly.js"
15486 "www/sly/sly.min.js")
15487 ("prism-src.js"
15488 "www/prism/prism.js")
15489 (,(assoc-ref inputs "js-raphael")
15490 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
15491 (,(assoc-ref inputs "js-featherlight")
15492 "www/featherlight/featherlight.min.js"))))
15493 (lambda (sources targets)
15494 (for-each (lambda (source target)
15495 (format #t "Processing ~a --> ~a~%"
15496 source target)
15497 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
15498 (call-with-output-file target
15499 (lambda (port)
15500 (dump-port minified port)))))
15501 sources targets))))
15502 #t)))))
15503 (propagated-inputs
15504 `(("r-htmltools" ,r-htmltools)
15505 ("r-htmlwidgets" ,r-htmlwidgets)
15506 ("r-jsonlite" ,r-jsonlite)
15507 ("r-knitr" ,r-knitr)
15508 ("r-rmarkdown" ,r-rmarkdown)
15509 ("r-shiny" ,r-shiny)))
15510 (native-inputs
15511 `(("uglify-js" ,uglify-js)
15512 ("js-raphael"
15513 ,(origin
15514 (method url-fetch)
15515 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
15516 (sha256
15517 (base32
15518 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
15519 ("js-prism"
15520 ,(origin
15521 (method url-fetch)
15522 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
15523 (sha256
15524 (base32
15525 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
15526 ("js-prism-r"
15527 ,(origin
15528 (method url-fetch)
15529 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
15530 (sha256
15531 (base32
15532 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
15533 ("js-prism-line-numbers"
15534 ,(origin
15535 (method url-fetch)
15536 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
15537 (sha256
15538 (base32
15539 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
15540 ("js-featherlight"
15541 ,(origin
15542 (method url-fetch)
15543 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
15544 (sha256
15545 (base32
15546 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
15547 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
15548 (synopsis "R Markdown format for flexible dashboards")
15549 (description
15550 "This package provides an R Markdown format for converting an R Markdown
15551 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
15552 of its components to the containing web page.")
15553 (license license:expat)))
15554
15555 (define-public r-preseqr
15556 (package
15557 (name "r-preseqr")
15558 (version "4.0.0")
15559 (source
15560 (origin
15561 (method url-fetch)
15562 (uri (cran-uri "preseqR" version))
15563 (sha256
15564 (base32
15565 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
15566 (properties `((upstream-name . "preseqR")))
15567 (build-system r-build-system)
15568 (propagated-inputs
15569 `(("r-polynom" ,r-polynom)))
15570 (home-page "https://cran.r-project.org/web/packages/preseqR/")
15571 (synopsis "Predicting species accumulation curves")
15572 (description
15573 "This package can be used to predict the r-species accumulation
15574 curve (r-SAC), which is the number of species represented at least r times as
15575 a function of the sampling effort. When r = 1, the curve is known as the
15576 species accumulation curve, or the library complexity curve in high-throughput
15577 genomic sequencing. The package includes both parametric and nonparametric
15578 methods, as described by Deng C, et al. (2018).")
15579 (license license:gpl3)))
15580
15581 (define-public r-mapplots
15582 (package
15583 (name "r-mapplots")
15584 (version "1.5.1")
15585 (source
15586 (origin
15587 (method url-fetch)
15588 (uri (cran-uri "mapplots" version))
15589 (sha256
15590 (base32
15591 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
15592 (build-system r-build-system)
15593 (home-page "https://cran.r-project.org/web/packages/mapplots/")
15594 (synopsis "Data visualization on maps")
15595 (description
15596 "This package helps you create simple maps; add sub-plots like pie plots
15597 to a map or any other plot; format, plot and export gridded data. The package
15598 was developed for displaying fisheries data but most functions can be used for
15599 more generic data visualisation.")
15600 (license license:gpl2+)))
15601
15602 (define-public r-pmcmr
15603 (package
15604 (name "r-pmcmr")
15605 (version "4.3")
15606 (source
15607 (origin
15608 (method url-fetch)
15609 (uri (cran-uri "PMCMR" version))
15610 (sha256
15611 (base32
15612 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
15613 (properties `((upstream-name . "PMCMR")))
15614 (build-system r-build-system)
15615 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
15616 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
15617 (description
15618 "This is a deprecated package for calculating pairwise multiple
15619 comparisons of mean rank sums. This package is superseded by the novel
15620 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
15621 compatibility of dependent packages for some time.")
15622 (license license:gpl3+)))
15623
15624 (define-public r-downloader
15625 (package
15626 (name "r-downloader")
15627 (version "0.4")
15628 (source
15629 (origin
15630 (method url-fetch)
15631 (uri (cran-uri "downloader" version))
15632 (sha256
15633 (base32
15634 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
15635 (build-system r-build-system)
15636 (propagated-inputs
15637 `(("r-digest" ,r-digest)))
15638 (home-page "https://github.com/wch/downloader")
15639 (synopsis "Download files over HTTP and HTTPS")
15640 (description
15641 "This package provides a wrapper for the @code{download.file} function,
15642 making it possible to download files over HTTPS across platforms. The
15643 @code{RCurl} package provides this functionality (and much more) but has
15644 external dependencies. This package has is implemented purely in R.")
15645 (license license:gpl2)))
15646
15647 (define-public r-rex
15648 (package
15649 (name "r-rex")
15650 (version "1.2.0")
15651 (source
15652 (origin
15653 (method url-fetch)
15654 (uri (cran-uri "rex" version))
15655 (sha256
15656 (base32
15657 "0m7bq8db3m5dhf01rw7xc7xy1ciq3m7dfgsl80p8cy4h8vqr3d06"))))
15658 (build-system r-build-system)
15659 (propagated-inputs
15660 `(("r-lazyeval" ,r-lazyeval)))
15661 (native-inputs
15662 `(("r-knitr" ,r-knitr)))
15663 (home-page "https://github.com/kevinushey/rex")
15664 (synopsis "Friendly regular expressions")
15665 (description
15666 "This package provides a friendly interface for the construction of
15667 regular expressions. Regular expressions are a very powerful feature, however
15668 they are often difficult to interpret. Rex allows you to build complex
15669 regular expressions from human readable expressions")
15670 (license license:expat)))
15671
15672 (define-public r-xmlparsedata
15673 (package
15674 (name "r-xmlparsedata")
15675 (version "1.0.4")
15676 (source
15677 (origin
15678 (method url-fetch)
15679 (uri (cran-uri "xmlparsedata" version))
15680 (sha256
15681 (base32
15682 "177vfyjrqfi3wam8scpsradap1lv35yc25xq745dr7gabg116yrq"))))
15683 (properties `((upstream-name . "xmlparsedata")))
15684 (build-system r-build-system)
15685 (home-page "https://github.com/r-lib/xmlparsedata#readme")
15686 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
15687 (description
15688 "This package provides tools to convert the output of
15689 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
15690 @code{XPath}, and is easier to manipulate in general.")
15691 (license license:expat)))
15692
15693 (define-public r-cyclocomp
15694 (package
15695 (name "r-cyclocomp")
15696 (version "1.1.0")
15697 (source
15698 (origin
15699 (method url-fetch)
15700 (uri (cran-uri "cyclocomp" version))
15701 (sha256
15702 (base32
15703 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
15704 (properties `((upstream-name . "cyclocomp")))
15705 (build-system r-build-system)
15706 (propagated-inputs
15707 `(("r-callr" ,r-callr)
15708 ("r-crayon" ,r-crayon)
15709 ("r-desc" ,r-desc)
15710 ("r-remotes" ,r-remotes)
15711 ("r-withr" ,r-withr)))
15712 (home-page "https://github.com/MangoTheCat/cyclocomp")
15713 (synopsis "Cyclomatic complexity of R code")
15714 (description
15715 "Cyclomatic complexity is a software metric, used to indicate the
15716 complexity of a program. It is a quantitative measure of the number of
15717 linearly independent paths through a program's source code. This package
15718 provides tools to compute this metric.")
15719 (license license:expat)))
15720
15721 (define-public r-lintr
15722 (package
15723 (name "r-lintr")
15724 (version "2.0.1")
15725 (source
15726 (origin
15727 (method url-fetch)
15728 (uri (cran-uri "lintr" version))
15729 (sha256
15730 (base32
15731 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
15732 (properties `((upstream-name . "lintr")))
15733 (build-system r-build-system)
15734 (propagated-inputs
15735 `(("r-codetools" ,r-codetools)
15736 ("r-crayon" ,r-crayon)
15737 ("r-cyclocomp" ,r-cyclocomp)
15738 ("r-digest" ,r-digest)
15739 ("r-httr" ,r-httr)
15740 ("r-jsonlite" ,r-jsonlite)
15741 ("r-knitr" ,r-knitr)
15742 ("r-rex" ,r-rex)
15743 ("r-rstudioapi" ,r-rstudioapi)
15744 ("r-testthat" ,r-testthat)
15745 ("r-xml2" ,r-xml2)
15746 ("r-xmlparsedata" ,r-xmlparsedata)))
15747 (home-page "https://github.com/jimhester/lintr")
15748 (synopsis "Linter for R code")
15749 (description "This package checks adherence to a given style, syntax
15750 errors and possible semantic issues. It supports on the fly checking of R
15751 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
15752 (license license:expat)))
15753
15754 (define-public r-sctransform
15755 (package
15756 (name "r-sctransform")
15757 (version "0.2.1")
15758 (source
15759 (origin
15760 (method url-fetch)
15761 (uri (cran-uri "sctransform" version))
15762 (sha256
15763 (base32
15764 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
15765 (build-system r-build-system)
15766 (propagated-inputs
15767 `(("r-future-apply" ,r-future-apply)
15768 ("r-ggplot2" ,r-ggplot2)
15769 ("r-gridextra" ,r-gridextra)
15770 ("r-mass" ,r-mass)
15771 ("r-matrix" ,r-matrix)
15772 ("r-rcpp" ,r-rcpp)
15773 ("r-rcppeigen" ,r-rcppeigen)
15774 ("r-reshape2" ,r-reshape2)))
15775 (home-page "https://github.com/ChristophH/sctransform")
15776 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15777 (description
15778 "This package provides a normalization method for single-cell UMI count
15779 data using a variance stabilizing transformation. The transformation is based
15780 on a negative binomial regression model with regularized parameters. As part
15781 of the same regression framework, this package also provides functions for
15782 batch correction, and data correction.")
15783 (license license:gpl3)))
15784
15785 (define-public r-styler
15786 (package
15787 (name "r-styler")
15788 (version "1.3.2")
15789 (source
15790 (origin
15791 (method url-fetch)
15792 (uri (cran-uri "styler" version))
15793 (sha256
15794 (base32
15795 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15796 (build-system r-build-system)
15797 (propagated-inputs
15798 `(("r-backports" ,r-backports)
15799 ("r-cli" ,r-cli)
15800 ("r-magrittr" ,r-magrittr)
15801 ("r-purrr" ,r-purrr)
15802 ("r-r-cache" ,r-r-cache)
15803 ("r-rematch2" ,r-rematch2)
15804 ("r-rlang" ,r-rlang)
15805 ("r-rprojroot" ,r-rprojroot)
15806 ("r-tibble" ,r-tibble)
15807 ("r-withr" ,r-withr)
15808 ("r-xfun" ,r-xfun)))
15809 (home-page "https://github.com/r-lib/styler")
15810 (synopsis "Non-invasive pretty printing of R code")
15811 (description
15812 "This is a package for pretty-printing R code without changing the user's
15813 formatting intent.")
15814 (license license:gpl3)))
15815
15816 (define-public r-scrime
15817 (package
15818 (name "r-scrime")
15819 (version "1.3.5")
15820 (source
15821 (origin
15822 (method url-fetch)
15823 (uri (cran-uri "scrime" version))
15824 (sha256
15825 (base32
15826 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15827 (build-system r-build-system)
15828 (home-page "https://cran.r-project.org/web/packages/scrime/")
15829 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15830 (description
15831 "This package provides tools for the analysis of high-dimensional data
15832 developed/implemented at the group \"Statistical Complexity Reduction In
15833 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15834 the functions can also be applied to other types of categorical data.")
15835 (license license:gpl2)))
15836
15837 (define-public r-pbmcapply
15838 (package
15839 (name "r-pbmcapply")
15840 (version "1.5.0")
15841 (source
15842 (origin
15843 (method url-fetch)
15844 (uri (cran-uri "pbmcapply" version))
15845 (sha256
15846 (base32
15847 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15848 (build-system r-build-system)
15849 (home-page "https://github.com/kvnkuang/pbmcapply")
15850 (synopsis "Track the progress of apply procedures with a progress bar")
15851 (description
15852 "This light-weight package helps you track and visualize the progress of
15853 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15854 (license license:expat)))
15855
15856 (define-public r-blme
15857 (package
15858 (name "r-blme")
15859 (version "1.0-4")
15860 (source
15861 (origin
15862 (method url-fetch)
15863 (uri (cran-uri "blme" version))
15864 (sha256
15865 (base32
15866 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15867 (build-system r-build-system)
15868 (propagated-inputs `(("r-lme4" ,r-lme4)))
15869 (home-page "https://github.com/vdorie/blme")
15870 (synopsis "Bayesian linear mixed-effects models")
15871 (description
15872 "This package provides tools for maximum a posteriori estimation for
15873 linear and generalized linear mixed-effects models in a Bayesian setting. It
15874 extends the lme4 package.")
15875 (license license:gpl2+)))
15876
15877 (define-public r-batchtools
15878 (package
15879 (name "r-batchtools")
15880 (version "0.9.13")
15881 (source
15882 (origin
15883 (method url-fetch)
15884 (uri (cran-uri "batchtools" version))
15885 (sha256
15886 (base32
15887 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15888 (build-system r-build-system)
15889 (propagated-inputs
15890 `(("r-backports" ,r-backports)
15891 ("r-base64url" ,r-base64url)
15892 ("r-brew" ,r-brew)
15893 ("r-checkmate" ,r-checkmate)
15894 ("r-data-table" ,r-data-table)
15895 ("r-digest" ,r-digest)
15896 ("r-fs" ,r-fs)
15897 ("r-progress" ,r-progress)
15898 ("r-r6" ,r-r6)
15899 ("r-rappdirs" ,r-rappdirs)
15900 ("r-stringi" ,r-stringi)
15901 ("r-withr" ,r-withr)))
15902 (native-inputs
15903 `(("r-knitr" ,r-knitr)))
15904 (home-page "https://github.com/mllg/batchtools")
15905 (synopsis "Tools for computation on batch systems")
15906 (description
15907 "As a successor of the packages BatchJobs and BatchExperiments, this
15908 package provides a parallel implementation of the Map function for high
15909 performance computing systems managed by various schedulers. A multicore and
15910 socket mode allow the parallelization on a local machines, and multiple
15911 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15912 the package provides an abstraction mechanism to define large-scale computer
15913 experiments in a well-organized and reproducible way.")
15914 (license license:lgpl3)))
15915
15916 (define-public r-clue
15917 (package
15918 (name "r-clue")
15919 (version "0.3-57")
15920 (source
15921 (origin
15922 (method url-fetch)
15923 (uri (cran-uri "clue" version))
15924 (sha256
15925 (base32
15926 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15927 (build-system r-build-system)
15928 (propagated-inputs `(("r-cluster" ,r-cluster)))
15929 (home-page "https://cran.r-project.org/web/packages/clue/")
15930 (synopsis "Tools for analyzing cluster ensembles")
15931 (description "Cluster ensembles are collections of individual solutions to
15932 a given clustering problem which are useful or necessary to consider in a wide
15933 range of applications. This R package provides an extensible computational
15934 environment for creating and analyzing cluster ensembles, with basic data
15935 structures for representing partitions and hierarchies, and facilities for
15936 computing on them, including methods for measuring proximity and obtaining
15937 consensus and secondary clusterings.")
15938 (license license:gpl2)))
15939
15940 (define-public r-sitmo
15941 (package
15942 (name "r-sitmo")
15943 (version "2.0.1")
15944 (source
15945 (origin
15946 (method url-fetch)
15947 (uri (cran-uri "sitmo" version))
15948 (sha256
15949 (base32
15950 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15951 (build-system r-build-system)
15952 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15953 (home-page "https://github.com/coatless/sitmo/")
15954 (synopsis "Parallel pseudo random number generator header files")
15955 (description
15956 "This package provides two high quality and fast PPRNGs that may be used
15957 in an OpenMP parallel environment. In addition, there is a generator for one
15958 dimensional low-discrepancy sequence.")
15959 (license license:expat)))
15960
15961 (define-public r-dqrng
15962 (package
15963 (name "r-dqrng")
15964 (version "0.2.1")
15965 (source
15966 (origin
15967 (method url-fetch)
15968 (uri (cran-uri "dqrng" version))
15969 (sha256
15970 (base32
15971 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15972 (build-system r-build-system)
15973 (propagated-inputs
15974 `(("r-bh" ,r-bh)
15975 ("r-rcpp" ,r-rcpp)
15976 ("r-sitmo" ,r-sitmo)))
15977 (home-page "https://www.daqana.org/dqrng")
15978 (synopsis "Fast pseudo random number generators")
15979 (description
15980 "Several fast random number generators are provided as C++ header-only
15981 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15982 Additionally, fast functions for generating random numbers according to a
15983 uniform, normal and exponential distribution are included. The latter two use
15984 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15985 functions are exported to R and as a C++ interface and are enabled for use
15986 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15987 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15988 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15989 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15990 ;; whole is distributed under the terms of the AGPL 3.
15991 (license license:agpl3)))
15992
15993 (define-public r-ingredients
15994 (package
15995 (name "r-ingredients")
15996 (version "2.0")
15997 (source
15998 (origin
15999 (method url-fetch)
16000 (uri (cran-uri "ingredients" version))
16001 (sha256
16002 (base32
16003 "084ywbq0dwnf075bazz40n23wh7r1fwl6zs7xqkcg07kfzqkzb2w"))))
16004 (properties `((upstream-name . "ingredients")))
16005 (build-system r-build-system)
16006 (propagated-inputs
16007 `(("r-ggplot2" ,r-ggplot2)
16008 ("r-gridextra" ,r-gridextra)
16009 ("r-scales" ,r-scales)))
16010 (native-inputs `(("r-knitr" ,r-knitr)))
16011 (home-page "https://ModelOriented.github.io/ingredients/")
16012 (synopsis "Effects and importances of model ingredients")
16013 (description
16014 "This is a collection of tools for assessment of feature importance and
16015 feature effects. Key functions are:
16016
16017 @itemize
16018 @item @code{feature_importance()} for assessment of global level feature
16019 importance,
16020 @item @code{ceteris_paribus()} for calculation of the what-if plots,
16021 @item @code{partial_dependence()} for partial dependence plots,
16022 @item @code{conditional_dependence()} for conditional dependence plots,
16023 @item @code{accumulated_dependence()} for accumulated local effects plots,
16024 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
16025 aggregation of ceteris paribus profiles,
16026 @item generic @code{print()} and @code{plot()} for better usability of
16027 selected explainers,
16028 @item generic @code{plotD3()} for interactive, D3 based explanations, and
16029 @item generic @code{describe()} for explanations in natural language.
16030 @end itemize\n")
16031 (license license:gpl3)))
16032
16033 (define-public r-ibreakdown
16034 (package
16035 (name "r-ibreakdown")
16036 (version "1.3.1")
16037 (source
16038 (origin
16039 (method url-fetch)
16040 (uri (cran-uri "iBreakDown" version))
16041 (sha256
16042 (base32
16043 "1bfl5bh0x6z5a0cmdmx68sap9zdxa3kwdnyk57csxapc362yz108"))))
16044 (properties `((upstream-name . "iBreakDown")))
16045 (build-system r-build-system)
16046 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
16047 (native-inputs `(("r-knitr" ,r-knitr)))
16048 (home-page "https://ModelOriented.github.io/iBreakDown/")
16049 (synopsis "Model agnostic instance level variable attributions")
16050 (description
16051 "This package provides a model agnostic tool for decomposition of
16052 predictions from black boxes. It supports additive attributions and
16053 attributions with interactions. The Break Down Table shows contributions of
16054 every variable to a final prediction. The Break Down Plot presents variable
16055 contributions in a concise graphical way. This package works for
16056 classification and regression models.")
16057 (license license:gpl3)))
16058
16059 (define-public r-dae
16060 (package
16061 (name "r-dae")
16062 (version "3.1-27")
16063 (source
16064 (origin
16065 (method url-fetch)
16066 (uri (cran-uri "dae" version))
16067 (sha256
16068 (base32
16069 "14q3cxhcz0zqjdkas0dl71k2bp5qwvb60gha47s78hdr38r46kml"))))
16070 (build-system r-build-system)
16071 (propagated-inputs
16072 `(("r-ggplot2" ,r-ggplot2)
16073 ("r-plyr" ,r-plyr)))
16074 (native-inputs
16075 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
16076 (home-page "http://chris.brien.name")
16077 (synopsis "Functions useful in the design and ANOVA of experiments")
16078 (description
16079 "This package provides functions useful in the design and ANOVA of
16080 experiments. The content falls into the following groupings:
16081
16082 @enumerate
16083 @item data,
16084 @item factor manipulation functions,
16085 @item design functions,
16086 @item ANOVA functions,
16087 @item matrix functions,
16088 @item projector and canonical efficiency functions, and
16089 @item miscellaneous functions.
16090 @end enumerate
16091
16092 There is a vignette called @code{DesignNotes} describing how to use the design
16093 functions for randomizing and assessing designs. The ANOVA functions
16094 facilitate the extraction of information when the @code{Error} function has
16095 been used in the call to @code{aov}.")
16096 (license license:gpl2)))
16097
16098 (define-public r-dalex
16099 (package
16100 (name "r-dalex")
16101 (version "1.3.1.1")
16102 (source
16103 (origin
16104 (method url-fetch)
16105 (uri (cran-uri "DALEX" version))
16106 (sha256
16107 (base32
16108 "0akw1yzhb3shpg6yb89vralqd2z80z5yk9azqaa55dx56as52kjs"))))
16109 (properties `((upstream-name . "DALEX")))
16110 (build-system r-build-system)
16111 (propagated-inputs
16112 `(("r-ggplot2" ,r-ggplot2)
16113 ("r-ibreakdown" ,r-ibreakdown)
16114 ("r-ingredients" ,r-ingredients)))
16115 (home-page "https://pbiecek.github.io/DALEX/")
16116 (synopsis "Descriptive machine learning explanations")
16117 (description
16118 "Machine Learning models are widely used and have various applications in
16119 classification or regression. Models created with boosting, bagging, stacking
16120 or similar techniques are often used due to their high performance, but such
16121 black-box models usually lack interpretability. The DALEX package contains
16122 various explainers that help to understand the link between input variables
16123 and model output.")
16124 ;; Any version of the GPL
16125 (license license:gpl3+)))
16126
16127 (define-public r-enrichr
16128 (package
16129 (name "r-enrichr")
16130 (version "2.1")
16131 (source
16132 (origin
16133 (method url-fetch)
16134 (uri (cran-uri "enrichR" version))
16135 (sha256
16136 (base32
16137 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
16138 (properties `((upstream-name . "enrichR")))
16139 (build-system r-build-system)
16140 (propagated-inputs
16141 `(("r-httr" ,r-httr)
16142 ("r-rjson" ,r-rjson)))
16143 (home-page "https://cran.r-project.org/web/packages/enrichR/")
16144 (synopsis "R Interface to Enrichr database for analyzing gene sets")
16145 (description
16146 "This package provides an R interface to all Enrichr databases, a
16147 web-based tool for analyzing gene sets and returns any enrichment of common
16148 annotated biological functions.")
16149 (license license:gpl2+)))
16150
16151 (define-public r-plot3d
16152 (package
16153 (name "r-plot3d")
16154 (version "1.3")
16155 (source
16156 (origin
16157 (method url-fetch)
16158 (uri (cran-uri "plot3D" version))
16159 (sha256
16160 (base32
16161 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
16162 (properties `((upstream-name . "plot3D")))
16163 (build-system r-build-system)
16164 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
16165 (home-page "https://cran.r-project.org/web/packages/plot3D")
16166 (synopsis "Plot multi-dimensional data")
16167 (description
16168 "This package provides functions for viewing 2D and 3D data, including
16169 perspective plots, slice plots, surface plots, scatter plots, etc. It
16170 includes data sets from oceanography.")
16171 (license license:gpl3+)))
16172
16173 (define-public r-ggfortify
16174 (package
16175 (name "r-ggfortify")
16176 (version "0.4.10")
16177 (source
16178 (origin
16179 (method url-fetch)
16180 (uri (cran-uri "ggfortify" version))
16181 (sha256
16182 (base32
16183 "0wmcwp63h90v3f00ixszvis4z28im621jickvc0wgi6qvjvnayq0"))))
16184 (build-system r-build-system)
16185 (propagated-inputs
16186 `(("r-dplyr" ,r-dplyr)
16187 ("r-ggplot2" ,r-ggplot2)
16188 ("r-gridextra" ,r-gridextra)
16189 ("r-scales" ,r-scales)
16190 ("r-stringr" ,r-stringr)
16191 ("r-tibble" ,r-tibble)
16192 ("r-tidyr" ,r-tidyr)))
16193 (native-inputs
16194 `(("r-knitr" ,r-knitr)))
16195 (home-page "https://github.com/sinhrks/ggfortify")
16196 (synopsis "Data visualization tools for statistical analysis results")
16197 (description
16198 "This package provides unified plotting tools for statistics commonly
16199 used, such as GLM, time series, PCA families, clustering and survival
16200 analysis. The package offers a single plotting interface for these analysis
16201 results and plots in a unified style using the @code{ggplot2} package.")
16202 (license license:gpl2)))
16203
16204 (define-public r-refmanager
16205 (package
16206 (name "r-refmanager")
16207 (version "1.2.12")
16208 (source
16209 (origin
16210 (method url-fetch)
16211 (uri (cran-uri "RefManageR" version))
16212 (sha256
16213 (base32
16214 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
16215 (properties `((upstream-name . "RefManageR")))
16216 (build-system r-build-system)
16217 (propagated-inputs
16218 `(("r-bibtex" ,r-bibtex)
16219 ("r-httr" ,r-httr)
16220 ("r-jsonlite" ,r-jsonlite)
16221 ("r-lubridate" ,r-lubridate)
16222 ("r-plyr" ,r-plyr)
16223 ("r-stringr" ,r-stringr)
16224 ("r-xml2" ,r-xml2)))
16225 (home-page "https://github.com/ropensci/RefManageR/")
16226 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
16227 (description
16228 "This package provides tools for importing and working with bibliographic
16229 references. It greatly enhances the @code{bibentry} class by providing a
16230 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
16231 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
16232 by various formats for name lists (author by last names, translator by full
16233 names, etc.). Entries can be updated, combined, sorted, printed in a number
16234 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
16235 into R and converted to @code{BibEntry} objects.")
16236 ;; Any of these licenses may be picked.
16237 (license (list license:gpl2 license:gpl3 license:bsd-3))))
16238
16239 (define-public r-citr
16240 (package
16241 (name "r-citr")
16242 (version "0.3.2")
16243 (source
16244 (origin
16245 (method url-fetch)
16246 (uri (cran-uri "citr" version))
16247 (sha256
16248 (base32
16249 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
16250 (build-system r-build-system)
16251 (propagated-inputs
16252 `(("r-assertthat" ,r-assertthat)
16253 ("r-curl" ,r-curl)
16254 ("r-httr" ,r-httr)
16255 ("r-miniui" ,r-miniui)
16256 ("r-refmanager" ,r-refmanager)
16257 ("r-rstudioapi" ,r-rstudioapi)
16258 ("r-shiny" ,r-shiny)
16259 ("r-shinyjs" ,r-shinyjs)
16260 ("r-yaml" ,r-yaml)))
16261 (home-page "https://github.com/crsh/citr")
16262 (synopsis "RStudio add-in to insert Markdown citations")
16263 (description
16264 "This package provides functions and an RStudio add-in that search a
16265 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
16266 the current document.")
16267 (license license:expat)))
16268
16269 (define-public r-xgboost
16270 (package
16271 (name "r-xgboost")
16272 (version "1.2.0.1")
16273 (source
16274 (origin
16275 (method url-fetch)
16276 (uri (cran-uri "xgboost" version))
16277 (sha256
16278 (base32
16279 "16hpvv2hwdzcyg90z7c1g5d2hj011qk8mivy4l2nqd2g7rkjwis4"))))
16280 (build-system r-build-system)
16281 (propagated-inputs
16282 `(("r-data-table" ,r-data-table)
16283 ("r-magrittr" ,r-magrittr)
16284 ("r-matrix" ,r-matrix)
16285 ("r-stringi" ,r-stringi)))
16286 (native-inputs
16287 `(("r-knitr" ,r-knitr)))
16288 (home-page "https://github.com/dmlc/xgboost")
16289 (synopsis "Extreme gradient boosting")
16290 (description
16291 "This package provides an R interface to Extreme Gradient Boosting, which
16292 is an efficient implementation of the gradient boosting framework from Chen
16293 and Guestrin (2016). The package includes efficient linear model solver and
16294 tree learning algorithms. The package can automatically do parallel
16295 computation on a single machine. It supports various objective functions,
16296 including regression, classification and ranking. The package is made to be
16297 extensible, so that users are also allowed to define their own objectives
16298 easily.")
16299 (license license:asl2.0)))
16300
16301 (define-public r-umap
16302 (package
16303 (name "r-umap")
16304 (version "0.2.6.0")
16305 (source
16306 (origin
16307 (method url-fetch)
16308 (uri (cran-uri "umap" version))
16309 (sha256
16310 (base32
16311 "0zajn2sk705sckljxl5vz4q2sxpsqim2grmjq2jwwc8ysr1h2s9f"))))
16312 (build-system r-build-system)
16313 (propagated-inputs
16314 `(("r-openssl" ,r-openssl)
16315 ("r-rcpp" ,r-rcpp)
16316 ("r-reticulate" ,r-reticulate)
16317 ("r-rspectra" ,r-rspectra)))
16318 (native-inputs
16319 `(("r-knitr" ,r-knitr)))
16320 (home-page "https://github.com/tkonopka/umap")
16321 (synopsis "Uniform manifold approximation and projection")
16322 (description
16323 "Uniform manifold approximation and projection is a technique for
16324 dimension reduction. This package provides an interface to the UMAP algorithm
16325 in R, including a translation of the original algorithm into R.")
16326 (license license:expat)))
16327
16328 (define-public r-uwot
16329 (package
16330 (name "r-uwot")
16331 (version "0.1.8")
16332 (source
16333 (origin
16334 (method url-fetch)
16335 (uri (cran-uri "uwot" version))
16336 (sha256
16337 (base32
16338 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
16339 (build-system r-build-system)
16340 (propagated-inputs
16341 `(("r-dqrng" ,r-dqrng)
16342 ("r-fnn" ,r-fnn)
16343 ("r-irlba" ,r-irlba)
16344 ("r-matrix" ,r-matrix)
16345 ("r-rcpp" ,r-rcpp)
16346 ("r-rcppannoy" ,r-rcppannoy)
16347 ("r-rcppprogress" ,r-rcppprogress)
16348 ("r-rspectra" ,r-rspectra)))
16349 (home-page "https://github.com/jlmelville/uwot")
16350 (synopsis "Uniform manifold approximation and projection")
16351 (description
16352 "This package provides an implementation of the Uniform Manifold
16353 Approximation and Projection dimensionality reduction by McInnes et
16354 al. (2018). It also provides means to transform new data and to carry out
16355 supervised dimensionality reduction. An implementation of the related
16356 LargeVis method of Tang et al. (2016) is also provided.")
16357 (license license:gpl3)))
16358
16359 (define-public r-kableextra
16360 (package
16361 (name "r-kableextra")
16362 (version "1.2.1")
16363 (source
16364 (origin
16365 (method url-fetch)
16366 (uri (cran-uri "kableExtra" version))
16367 (sha256
16368 (base32
16369 "0n25y7zwpspvkd62rd6x8c22dg2ys27smlpdz5brqs5ddv7x9dis"))))
16370 (properties `((upstream-name . "kableExtra")))
16371 (build-system r-build-system)
16372 (propagated-inputs
16373 `(("r-digest" ,r-digest)
16374 ("r-glue" ,r-glue)
16375 ("r-htmltools" ,r-htmltools)
16376 ("r-knitr" ,r-knitr)
16377 ("r-magrittr" ,r-magrittr)
16378 ("r-rmarkdown" ,r-rmarkdown)
16379 ("r-rstudioapi" ,r-rstudioapi)
16380 ("r-rvest" ,r-rvest)
16381 ("r-scales" ,r-scales)
16382 ("r-stringr" ,r-stringr)
16383 ("r-viridislite" ,r-viridislite)
16384 ("r-webshot" ,r-webshot)
16385 ("r-xml2" ,r-xml2)))
16386 (native-inputs
16387 `(("r-knitr" ,r-knitr)))
16388 (home-page "https://haozhu233.github.io/kableExtra/")
16389 (synopsis "Construct complex tables with pipe syntax")
16390 (description
16391 "Build complex HTML or LaTeX tables using @code{kable()} from
16392 @code{knitr} and the piping syntax from @code{magrittr}. The function
16393 @code{kable()} is a light weight table generator coming from @code{knitr}.
16394 This package simplifies the way to manipulate the HTML or LaTeX codes
16395 generated by @code{kable()} and allows users to construct complex tables and
16396 customize styles using a readable syntax.")
16397 (license license:expat)))
16398
16399 (define-public r-glasso
16400 (package
16401 (name "r-glasso")
16402 (version "1.11")
16403 (source
16404 (origin
16405 (method url-fetch)
16406 (uri (cran-uri "glasso" version))
16407 (sha256
16408 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
16409 (build-system r-build-system)
16410 (native-inputs `(("gfortran" ,gfortran)))
16411 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
16412 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
16413 (description
16414 "This is a package for estimation of a sparse inverse covariance matrix
16415 using a lasso (L1) penalty. Facilities are provided for estimates along a
16416 path of values for the regularization parameter.")
16417 (license license:gpl2)))
16418
16419 (define-public r-rhpcblasctl
16420 (package
16421 (name "r-rhpcblasctl")
16422 (version "0.20-137")
16423 (source
16424 (origin
16425 (method url-fetch)
16426 (uri (cran-uri "RhpcBLASctl" version))
16427 (sha256
16428 (base32
16429 "0vv144sgjhf7fazk633i16fc06g9k43syyxj1g34pi9gsgdcn0nv"))))
16430 (properties `((upstream-name . "RhpcBLASctl")))
16431 (build-system r-build-system)
16432 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
16433 (synopsis "Control the number of threads on BLAS")
16434 (description
16435 "This package allows you to control the number of threads the BLAS
16436 library uses. It is also possible to control the number of threads in
16437 OpenMP.")
16438 (license license:agpl3+)))
16439
16440 (define-public r-lda
16441 (package
16442 (name "r-lda")
16443 (version "1.4.2")
16444 (source
16445 (origin
16446 (method url-fetch)
16447 (uri (cran-uri "lda" version))
16448 (sha256
16449 (base32
16450 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
16451 (build-system r-build-system)
16452 (home-page "https://cran.r-project.org/web/packages/lda/")
16453 (synopsis "Collapsed Gibbs sampling methods for topic models")
16454 (description
16455 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
16456 related models. This includes (but is not limited to) sLDA, corrLDA, and the
16457 mixed-membership stochastic blockmodel. Inference for all of these models is
16458 implemented via a fast collapsed Gibbs sampler written in C. Utility
16459 functions for reading/writing data typically used in topic models, as well as
16460 tools for examining posterior distributions are also included.")
16461 ;; Any version of the LGPL
16462 (license license:lgpl3+)))
16463
16464 (define-public r-rann-l1
16465 (package
16466 (name "r-rann-l1")
16467 (version "2.5.2")
16468 (source
16469 (origin
16470 (method url-fetch)
16471 (uri (cran-uri "RANN.L1" version))
16472 (sha256
16473 (base32
16474 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
16475 (properties `((upstream-name . "RANN.L1")))
16476 (build-system r-build-system)
16477 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
16478 (synopsis "Fast nearest neighbour search using L1 metric")
16479 (description
16480 "This package provides tools to find the k nearest neighbours for every
16481 point in a given dataset in O(N log N) time using Arya and Mount's ANN
16482 library. There is support for approximate as well as exact searches, fixed
16483 radius searches and @code{bd} as well as @code{kd} trees. The distance is
16484 computed using the L1 (Manhattan, taxicab) metric.")
16485 (license license:gpl3+)))
16486
16487 (define-public r-leiden
16488 (package
16489 (name "r-leiden")
16490 (version "0.3.3")
16491 (source
16492 (origin
16493 (method url-fetch)
16494 (uri (cran-uri "leiden" version))
16495 (sha256
16496 (base32
16497 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
16498 (properties `((upstream-name . "leiden")))
16499 (build-system r-build-system)
16500 (propagated-inputs
16501 `(("r-igraph" ,r-igraph)
16502 ("r-matrix" ,r-matrix)
16503 ("r-reticulate" ,r-reticulate)))
16504 (home-page "https://github.com/TomKellyGenetics/leiden")
16505 (synopsis "R implementation of Leiden clustering algorithm")
16506 (description
16507 "This package implements the Python @code{leidenalg} module to be called
16508 in R. It enables clustering using the Leiden algorithm for partitioning a
16509 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
16510 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
16511 (license license:gpl3)))
16512
16513 (define-public r-patchwork
16514 (package
16515 (name "r-patchwork")
16516 (version "1.0.1")
16517 (source
16518 (origin
16519 (method url-fetch)
16520 (uri (cran-uri "patchwork" version))
16521 (sha256
16522 (base32
16523 "0wm93a40idrkzn5hpnykhznvh7hdbfqw0dkzzn0zk83qlwyc9g02"))))
16524 (build-system r-build-system)
16525 (propagated-inputs
16526 `(("r-ggplot2" ,r-ggplot2)
16527 ("r-gtable" ,r-gtable)))
16528 (native-inputs
16529 `(("r-knitr" ,r-knitr)))
16530 (home-page "https://github.com/thomasp85/patchwork")
16531 (synopsis "Compose ggplot2 plots")
16532 (description
16533 "The @code{ggplot2} package provides a strong API for sequentially
16534 building up a plot, but does not concern itself with composition of multiple
16535 plots. Patchwork is a package that expands the API to allow for arbitrarily
16536 complex composition of plots by providing mathmatical operators for combining
16537 multiple plots.")
16538 (license license:expat)))
16539
16540 (define-public r-liger
16541 (package
16542 (name "r-liger")
16543 (version "0.4.2")
16544 (source
16545 (origin
16546 (method git-fetch)
16547 (uri (git-reference
16548 (url "https://github.com/MacoskoLab/liger")
16549 (commit (string-append "v" version))))
16550 (file-name (git-file-name name version))
16551 (sha256
16552 (base32
16553 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
16554 (modules '((guix build utils)))
16555 (snippet
16556 '(begin
16557 (delete-file "inst/java/ModularityOptimizer.jar")
16558 #t))))
16559 (build-system r-build-system)
16560 (arguments
16561 `(#:phases
16562 (modify-phases %standard-phases
16563 (add-after 'unpack 'build-java-part
16564 (lambda* (#:key inputs #:allow-other-keys)
16565 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
16566 (for-each (lambda (file) (invoke "javac" file))
16567 (find-files "." "\\.java$"))
16568 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
16569 (find-files "." "\\.class$"))
16570 #t)))))
16571 (propagated-inputs
16572 `(("r-cowplot" ,r-cowplot)
16573 ("r-dosnow" ,r-dosnow)
16574 ("r-dplyr" ,r-dplyr)
16575 ("r-fnn" ,r-fnn)
16576 ("r-foreach" ,r-foreach)
16577 ("r-ggplot2" ,r-ggplot2)
16578 ("r-ggrepel" ,r-ggrepel)
16579 ("r-hmisc" ,r-hmisc)
16580 ("r-ica" ,r-ica)
16581 ("r-irlba" ,r-irlba)
16582 ("r-matrix" ,r-matrix)
16583 ("r-mclust" ,r-mclust)
16584 ("r-patchwork" ,r-patchwork)
16585 ("r-plyr" ,r-plyr)
16586 ("r-rann-l1" ,r-rann-l1)
16587 ("r-rcpp" ,r-rcpp)
16588 ("r-rcpparmadillo" ,r-rcpparmadillo)
16589 ("r-riverplot" ,r-riverplot)
16590 ("r-rtsne" ,r-rtsne)
16591 ("r-snow" ,r-snow)))
16592 (native-inputs
16593 `(("jdk" ,icedtea "jdk")
16594 ;; See https://github.com/MacoskoLab/liger/issues/96
16595 ;; The optimizer is released under the Expat license.
16596 ("optimizer-src"
16597 ,(origin
16598 (method url-fetch)
16599 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
16600 (sha256
16601 (base32
16602 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
16603 ("unzip" ,unzip)
16604 ("r-knitr" ,r-knitr))) ; for vignettes
16605 (home-page "https://github.com/MacoskoLab/liger")
16606 (synopsis "Integrate and analyze multiple single-cell datasets")
16607 (description
16608 "LIGER is a package for integrating and analyzing multiple single-cell
16609 datasets, developed and maintained by the Macosko lab. It relies on
16610 integrative non-negative matrix factorization to identify shared and
16611 dataset-specific factors.")
16612 (license license:gpl3)))
16613
16614 (define-public r-harmony
16615 (package
16616 (name "r-harmony")
16617 (version "0.1")
16618 (source
16619 (origin
16620 (method git-fetch)
16621 (uri (git-reference
16622 (url "https://github.com/immunogenomics/harmony")
16623 (commit version)))
16624 (file-name (git-file-name name version))
16625 (sha256
16626 (base32
16627 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
16628 (modules '((guix build utils)))
16629 (snippet
16630 '(begin
16631 (for-each delete-file '("config.status" "configure"))
16632 #t))))
16633 (build-system r-build-system)
16634 (propagated-inputs
16635 `(("r-cowplot" ,r-cowplot)
16636 ("r-dplyr" ,r-dplyr)
16637 ("r-ggplot2" ,r-ggplot2)
16638 ("r-irlba" ,r-irlba)
16639 ("r-matrix" ,r-matrix)
16640 ("r-rcpp" ,r-rcpp)
16641 ("r-rcpparmadillo" ,r-rcpparmadillo)
16642 ("r-rcppprogress" ,r-rcppprogress)
16643 ("r-rlang" ,r-rlang)
16644 ("r-tibble" ,r-tibble)
16645 ("r-tidyr" ,r-tidyr)))
16646 (native-inputs
16647 `(("autoconf" ,autoconf)))
16648 (home-page "https://github.com/immunogenomics/harmony")
16649 (synopsis "Integration of single cell sequencing data")
16650 (description
16651 "This package provides an implementation of the Harmony algorithm for
16652 single cell integration, described in Korsunsky et al
16653 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
16654 function and interfaces to external frameworks.")
16655 (license license:gpl3)))
16656
16657 (define-public r-covr
16658 (package
16659 (name "r-covr")
16660 (version "3.5.0")
16661 (source
16662 (origin
16663 (method url-fetch)
16664 (uri (cran-uri "covr" version))
16665 (sha256
16666 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
16667 (properties `((upstream-name . "covr")))
16668 (build-system r-build-system)
16669 (propagated-inputs
16670 `(("r-crayon" ,r-crayon)
16671 ("r-digest" ,r-digest)
16672 ("r-httr" ,r-httr)
16673 ("r-jsonlite" ,r-jsonlite)
16674 ("r-rex" ,r-rex)
16675 ("r-withr" ,r-withr)
16676 ("r-yaml" ,r-yaml)))
16677 (native-inputs
16678 `(("r-knitr" ,r-knitr))) ; for vignettes
16679 (home-page "https://github.com/r-lib/covr")
16680 (synopsis "Test coverage for R packages")
16681 (description
16682 "Thisp package enables you to track and report code coverage for your
16683 package and (optionally) upload the results to a coverage service. Code
16684 coverage is a measure of the amount of code being exercised by a set of tests.
16685 It is an indirect measure of test quality and completeness. This package is
16686 compatible with any testing methodology or framework and tracks coverage of
16687 both R code and compiled C/C++/FORTRAN code.")
16688 (license license:gpl3)))
16689
16690 (define-public r-systemfonts
16691 (package
16692 (name "r-systemfonts")
16693 (version "0.3.0")
16694 (source
16695 (origin
16696 (method url-fetch)
16697 (uri (cran-uri "systemfonts" version))
16698 (sha256
16699 (base32
16700 "16n25bin46r0vq59wjdskkb8631gzf7grwnp2wnk0zb9c2qr48ax"))))
16701 (properties `((upstream-name . "systemfonts")))
16702 (build-system r-build-system)
16703 (propagated-inputs
16704 `(("r-cpp11" ,r-cpp11)))
16705 (inputs
16706 `(("fontconfig" ,fontconfig)
16707 ("zlib" ,zlib)))
16708 (native-inputs
16709 `(("pkg-config" ,pkg-config)
16710 ("r-knitr" ,r-knitr)))
16711 (home-page "https://github.com/r-lib/systemfonts")
16712 (synopsis "System native font finding")
16713 (description
16714 "This package provides system native access to the font catalogue. As
16715 font handling varies between systems it is difficult to correctly locate
16716 installed fonts across different operating systems. The 'systemfonts' package
16717 provides bindings to the native libraries for finding font files that can then
16718 be used further by e.g. graphic devices.")
16719 (license license:expat)))
16720
16721 (define-public r-graphlayouts
16722 (package
16723 (name "r-graphlayouts")
16724 (version "0.7.0")
16725 (source
16726 (origin
16727 (method url-fetch)
16728 (uri (cran-uri "graphlayouts" version))
16729 (sha256
16730 (base32
16731 "17lc75k8i3c696hfj44zj7j1a5sb0nap8spc5r98v7vd6xh4nii0"))))
16732 (properties `((upstream-name . "graphlayouts")))
16733 (build-system r-build-system)
16734 (propagated-inputs
16735 `(("r-igraph" ,r-igraph)
16736 ("r-rcpp" ,r-rcpp)
16737 ("r-rcpparmadillo" ,r-rcpparmadillo)))
16738 (home-page "https://github.com/schochastics/graphlayouts")
16739 (synopsis "Additional layout algorithms for network visualizations")
16740 (description
16741 "This package provides several layout algorithms to visualize networks
16742 which are not part of the igraph library. Most are based on the concept of
16743 stress majorization by Gansner et al. (2004)
16744 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
16745 emphasize hidden group structures in networks or focus on specific nodes.")
16746 (license license:expat)))
16747
16748 (define-public r-tidygraph
16749 (package
16750 (name "r-tidygraph")
16751 (version "1.2.0")
16752 (source
16753 (origin
16754 (method url-fetch)
16755 (uri (cran-uri "tidygraph" version))
16756 (sha256
16757 (base32
16758 "17qjns33zcj82jcsl7bn7i4zxcm7ric50zyf7agi0i01zi16qz85"))))
16759 (properties `((upstream-name . "tidygraph")))
16760 (build-system r-build-system)
16761 (propagated-inputs
16762 `(("r-dplyr" ,r-dplyr)
16763 ("r-igraph" ,r-igraph)
16764 ("r-magrittr" ,r-magrittr)
16765 ("r-pillar" ,r-pillar)
16766 ("r-r6" ,r-r6)
16767 ("r-rcpp" ,r-rcpp)
16768 ("r-rlang" ,r-rlang)
16769 ("r-tibble" ,r-tibble)
16770 ("r-tidyr" ,r-tidyr)))
16771 (home-page "https://github.com/thomasp85/tidygraph")
16772 (synopsis "Tidy API for graph manipulation")
16773 (description
16774 "This package provides a graph implementation that can be thought of as
16775 two tidy data frames describing node and edge data respectively. It provides
16776 an approach to manipulate these two virtual data frames using the API defined
16777 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
16778 common graph algorithms.")
16779 (license license:expat)))
16780
16781 (define-public r-soupx
16782 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
16783 (revision "1"))
16784 (package
16785 (name "r-soupx")
16786 (version (git-version "0.3.1" revision commit))
16787 (source
16788 (origin
16789 (method git-fetch)
16790 (uri (git-reference
16791 (url "https://github.com/constantAmateur/SoupX")
16792 (commit commit)))
16793 (file-name (git-file-name name version))
16794 (sha256
16795 (base32
16796 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
16797 (properties `((upstream-name . "SoupX")))
16798 (build-system r-build-system)
16799 (propagated-inputs
16800 `(("r-ggplot2" ,r-ggplot2)
16801 ("r-matrix" ,r-matrix)
16802 ("r-seurat" ,r-seurat)))
16803 (home-page "https://github.com/constantAmateur/SoupX")
16804 (synopsis "Single cell mRNA Soup eXterminator")
16805 (description
16806 "This package provides a package for quantifying, profiling and
16807 removing cell free mRNA contamination (the \"soup\") from droplet based single
16808 cell RNA-seq experiments.")
16809 (license license:gpl2))))
16810
16811 (define-public r-assertr
16812 (package
16813 (name "r-assertr")
16814 (version "2.7")
16815 (source
16816 (origin
16817 (method url-fetch)
16818 (uri (cran-uri "assertr" version))
16819 (sha256
16820 (base32
16821 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
16822 (build-system r-build-system)
16823 (propagated-inputs
16824 `(("r-dplyr" ,r-dplyr)
16825 ("r-mass" ,r-mass)
16826 ("r-rlang" ,r-rlang)))
16827 (native-inputs
16828 `(("r-knitr" ,r-knitr))) ; needed for vignette
16829 (home-page "https://github.com/ropensci/assertr")
16830 (synopsis "Assertive programming for R analysis pipelines")
16831 (description
16832 "This package provides functionality to assert conditions that have to be
16833 met so that errors in data used in analysis pipelines can fail quickly. It is
16834 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
16835 in pipelines.")
16836 (license license:expat)))
16837
16838 (define-public r-parameters
16839 (package
16840 (name "r-parameters")
16841 (version "0.8.2")
16842 (source
16843 (origin
16844 (method url-fetch)
16845 (uri (cran-uri "parameters" version))
16846 (sha256
16847 (base32
16848 "0kamszscywvdh4gikl5mmma7s5p7spmhirq3wrgf7x7f4gppbbmh"))))
16849 (properties `((upstream-name . "parameters")))
16850 (build-system r-build-system)
16851 (propagated-inputs
16852 `(("r-bayestestr" ,r-bayestestr)
16853 ("r-insight" ,r-insight)))
16854 (native-inputs
16855 `(("r-knitr" ,r-knitr)))
16856 (home-page "https://cran.r-project.org/web/packages/parameters")
16857 (synopsis "Processing of model parameters")
16858 (description
16859 "This package provides utilities for processing the parameters of various
16860 statistical models. Beyond computing p values, CIs, and other indices for a
16861 wide variety of models, this package implements features like standardization
16862 or bootstrapping of parameters and models, feature reduction (feature
16863 extraction and variable selection) as well as conversion between indices of
16864 effect size.")
16865 (license license:gpl3)))
16866
16867 (define-public r-rgdal
16868 (package
16869 (name "r-rgdal")
16870 (version "1.5-16")
16871 (source
16872 (origin
16873 (method url-fetch)
16874 (uri (cran-uri "rgdal" version))
16875 (sha256
16876 (base32 "0rwlsafqxgqflfid4ciaa9qz3f75fgw8hilhaqj558gdxg8bzigp"))))
16877 (properties `((upstream-name . "rgdal")))
16878 (build-system r-build-system)
16879 (inputs
16880 `(("gdal" ,gdal)
16881 ("proj.4" ,proj.4)
16882 ("zlib" ,zlib)))
16883 (propagated-inputs
16884 `(("r-sp" ,r-sp)))
16885 (native-inputs
16886 `(("pkg-config" ,pkg-config)
16887 ("r-knitr" ,r-knitr)))
16888 (home-page "http://rgdal.r-forge.r-project.org")
16889 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16890 (description
16891 "This package provides bindings to the Geospatial Data Abstraction
16892 Library (GDAL) and access to projection/transformation operations from the
16893 PROJ.4 library.")
16894 (license license:gpl2+)))
16895
16896 (define-public r-insol
16897 (package
16898 (name "r-insol")
16899 (version "1.2.1")
16900 (source
16901 (origin
16902 (method url-fetch)
16903 (uri (cran-uri "insol" version))
16904 (sha256
16905 (base32
16906 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16907 (properties `((upstream-name . "insol")))
16908 (build-system r-build-system)
16909 (propagated-inputs
16910 `(("r-raster" ,r-raster)))
16911 (native-inputs
16912 `(("gfortran" ,gfortran)))
16913 (home-page "https://meteoexploration.com/R/insol/index.html")
16914 (synopsis "Tools for calculating solar radiation")
16915 (description
16916 "This package provides functions to compute insolation on tilted
16917 surfaces, computes atmospheric transmittance and related parameters such as:
16918 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16919 time, vector in the direction of the sun, vector normal to surface, and some
16920 atmospheric physics.")
16921 (license license:gpl2+)))
16922
16923 (define-public r-lifecycle
16924 (package
16925 (name "r-lifecycle")
16926 (version "0.2.0")
16927 (source
16928 (origin
16929 (method url-fetch)
16930 (uri (cran-uri "lifecycle" version))
16931 (sha256
16932 (base32
16933 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16934 (properties `((upstream-name . "lifecycle")))
16935 (build-system r-build-system)
16936 (propagated-inputs
16937 `(("r-glue" ,r-glue)
16938 ("r-rlang" ,r-rlang)))
16939 (native-inputs
16940 `(("r-knitr" ,r-knitr))) ; for vignettes
16941 (home-page "https://github.com/r-lib/lifecycle")
16942 (synopsis "Manage the life cycle of your package functions")
16943 (description
16944 "Manage the life cycle of your exported functions with shared
16945 conventions, documentation badges, and non-invasive deprecation warnings. The
16946 lifecycle package defines four development stages (experimental, maturing,
16947 stable, and questioning) and three deprecation stages (soft-deprecated,
16948 deprecated, and defunct). It makes it easy to insert badges corresponding to
16949 these stages in your documentation. Usage of deprecated functions are
16950 signalled with increasing levels of non-invasive verbosity.")
16951 (license license:gpl3)))
16952
16953 (define-public r-assertable
16954 (package
16955 (name "r-assertable")
16956 (version "0.2.7")
16957 (source
16958 (origin
16959 (method url-fetch)
16960 (uri (cran-uri "assertable" version))
16961 (sha256
16962 (base32
16963 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16964 (build-system r-build-system)
16965 (propagated-inputs
16966 `(("r-data-table" ,r-data-table)))
16967 (home-page "https://cran.r-project.org/web/packages/assertable/")
16968 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16969 (description "This package provides simple, flexible assertions on
16970 data.frame or data.table objects with verbose output for vetting. While other
16971 assertion packages apply towards more general use-cases, @code{assertable} is
16972 tailored towards tabular data. It includes functions to check variable names
16973 and values, whether the dataset contains all combinations of a given set of
16974 unique identifiers, and whether it is a certain length. In addition,
16975 @code{assertable} includes utility functions to check the existence of target
16976 files and to efficiently import multiple tabular data files into one
16977 data.table.")
16978 (license license:gpl3)))
16979
16980 (define-public r-quadprog
16981 (package
16982 (name "r-quadprog")
16983 (version "1.5-8")
16984 (source
16985 (origin
16986 (method url-fetch)
16987 (uri (cran-uri "quadprog" version))
16988 (sha256
16989 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16990 (build-system r-build-system)
16991 (native-inputs
16992 `(("gfortran" ,gfortran)))
16993 (home-page "https://cran.r-project.org/web/packages/quadprog")
16994 (synopsis "Functions to solve quadratic programming problems")
16995 (description
16996 "This package contains routines and documentation for solving quadratic
16997 programming problems.")
16998 (license license:gpl3+)))
16999
17000 (define-public r-desolve
17001 (package
17002 (name "r-desolve")
17003 (version "1.28")
17004 (source
17005 (origin
17006 (method url-fetch)
17007 (uri (cran-uri "deSolve" version))
17008 (sha256
17009 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
17010 (properties `((upstream-name . "deSolve")))
17011 (build-system r-build-system)
17012 (native-inputs
17013 `(("gfortran" ,gfortran)))
17014 (home-page "https://desolve.r-forge.r-project.org/")
17015 (synopsis "Solvers for initial value problems of differential equations")
17016 (description "This package provides functions that solve initial value
17017 problems of a system of first-order @dfn{ordinary differential
17018 equations} (ODE), of @dfn{partial differential equations} (PDE), of
17019 @dfn{differential algebraic equations} (DAE), and of delay differential
17020 equations. The functions provide an interface to the FORTRAN functions
17021 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
17022 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
17023 C-implementation of solvers of the Runge-Kutta family with fixed or variable
17024 time steps. The package contains routines designed for solving ODEs resulting
17025 from 1-D, 2-D and 3-D partial differential equations that have been converted
17026 to ODEs by numerical differencing.")
17027 (license license:gpl2+)))
17028
17029 (define-public r-pracma
17030 (package
17031 (name "r-pracma")
17032 (version "2.2.9")
17033 (source (origin
17034 (method url-fetch)
17035 (uri (cran-uri "pracma" version))
17036 (sha256
17037 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
17038 (build-system r-build-system)
17039 (home-page "https://cran.r-project.org/web/packages/pracma/")
17040 (synopsis "Practical numerical math functions")
17041 (description "This package provides functions for numerical analysis and
17042 linear algebra, numerical optimization, differential equations, plus some
17043 special functions. It uses Matlab function names where appropriate to simplify
17044 porting.")
17045 (license license:gpl3+)))
17046
17047 (define-public r-subplex
17048 (package
17049 (name "r-subplex")
17050 (version "1.6")
17051 (source
17052 (origin
17053 (method url-fetch)
17054 (uri (cran-uri "subplex" version))
17055 (sha256
17056 (base32
17057 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
17058 (build-system r-build-system)
17059 (native-inputs
17060 `(("gfortran" ,gfortran)))
17061 (home-page "https://cran.r-project.org/web/packages/subplex")
17062 (synopsis "Unconstrained optimization using the subplex algorithm")
17063 (description
17064 "This package implements the Subplex optimization algorithm.
17065 It solves unconstrained optimization problems using a simplex method on
17066 subspaces. The method is well suited for optimizing objective functions that
17067 are noisy or are discontinuous at the solution.")
17068 (license license:gpl3+)))
17069
17070 (define-public r-txtplot
17071 (package
17072 (name "r-txtplot")
17073 (version "1.0-4")
17074 (source
17075 (origin
17076 (method url-fetch)
17077 (uri (cran-uri "txtplot" version))
17078 (sha256
17079 (base32
17080 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
17081 (build-system r-build-system)
17082 (home-page "https://cran.r-project.org/web/packages/txtplot/")
17083 (synopsis "Text-based plotting")
17084 (description "This package provides functions to produce rudimentary ASCII
17085 graphics directly in the terminal window. This package provides a basic
17086 plotting function (and equivalents of curve, density, acf and barplot) as well
17087 as a boxplot function.")
17088 (license license:lgpl3+)))
17089
17090 (define-public r-bio3d
17091 (package
17092 (name "r-bio3d")
17093 (version "2.4-1")
17094 (source
17095 (origin
17096 (method url-fetch)
17097 (uri (cran-uri "bio3d" version))
17098 (sha256
17099 (base32
17100 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
17101 (properties `((upstream-name . "bio3d")))
17102 (build-system r-build-system)
17103 (inputs `(("zlib" ,zlib)))
17104 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17105 (home-page "http://thegrantlab.org/bio3d/")
17106 (synopsis "Biological structure analysis")
17107 (description
17108 "This package provides utilities to process, organize and explore protein
17109 structure, sequence and dynamics data. Features include the ability to read
17110 and write structure, sequence and dynamic trajectory data, perform sequence
17111 and structure database searches, data summaries, atom selection, alignment,
17112 superposition, rigid core identification, clustering, torsion analysis,
17113 distance matrix analysis, structure and sequence conservation analysis, normal
17114 mode analysis, principal component analysis of heterogeneous structure data,
17115 and correlation network analysis from normal mode and molecular dynamics data.
17116 In addition, various utility functions are provided to enable the statistical
17117 and graphical power of the R environment to work with biological sequence and
17118 structural data.")
17119 (license license:gpl2+)))
17120
17121 (define-public r-bios2cor
17122 (package
17123 (name "r-bios2cor")
17124 (version "2.1")
17125 (source
17126 (origin
17127 (method url-fetch)
17128 (uri (cran-uri "Bios2cor" version))
17129 (sha256
17130 (base32
17131 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
17132 (properties `((upstream-name . "Bios2cor")))
17133 (build-system r-build-system)
17134 (propagated-inputs
17135 `(("r-bigmemory" ,r-bigmemory)
17136 ("r-bio3d" ,r-bio3d)
17137 ("r-circular" ,r-circular)
17138 ("r-igraph" ,r-igraph)))
17139 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
17140 (synopsis "From biological sequences and simulations to correlation analysis")
17141 (description
17142 "This package provides utilities for computation and analysis of
17143 correlation/covariation in multiple sequence alignments and in side chain
17144 motions during molecular dynamics simulations. Features include the
17145 computation of correlation/covariation scores using a variety of scoring
17146 functions between either sequence positions in alignments or side chain
17147 dihedral angles in molecular dynamics simulations and utilities to analyze the
17148 correlation/covariation matrix through a variety of tools including network
17149 representation and principal components analysis. In addition, several
17150 utility functions are based on the R graphical environment to provide friendly
17151 tools for help in data interpretation.")
17152 (license license:gpl2+)))
17153
17154 ;; This package includes minified JavaScript files. When upgrading please
17155 ;; check that there are no new minified JavaScript files.
17156 (define-public r-networkd3
17157 (package
17158 (name "r-networkd3")
17159 (version "0.4")
17160 (source
17161 (origin
17162 (method url-fetch)
17163 (uri (cran-uri "networkD3" version))
17164 (sha256
17165 (base32
17166 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
17167 (snippet
17168 '(begin
17169 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
17170 #t))))
17171 (properties `((upstream-name . "networkD3")))
17172 (build-system r-build-system)
17173 (arguments
17174 `(#:modules ((guix build utils)
17175 (guix build r-build-system)
17176 (srfi srfi-1)
17177 (ice-9 popen))
17178 #:phases
17179 (modify-phases %standard-phases
17180 (add-after 'unpack 'process-javascript
17181 (lambda* (#:key inputs #:allow-other-keys)
17182 (with-directory-excursion "inst/htmlwidgets/lib/"
17183 (call-with-values
17184 (lambda ()
17185 (unzip2
17186 `((,(assoc-ref inputs "d3.v4.js")
17187 "d3-4.5.0/d3.min.js"))))
17188 (lambda (sources targets)
17189 (for-each (lambda (source target)
17190 (format #t "Processing ~a --> ~a~%"
17191 source target)
17192 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
17193 (call-with-output-file target
17194 (lambda (port)
17195 (dump-port minified port)))))
17196 sources targets))))
17197 #t)))))
17198 (native-inputs
17199 `(("uglify-js" ,uglify-js)
17200 ;; NOTE: Make sure that this version of d3 is still valid when
17201 ;; upgrading the package.
17202 ("d3.v4.js"
17203 ,(origin
17204 (method url-fetch)
17205 (uri "https://d3js.org/d3.v4.js")
17206 (sha256
17207 (base32
17208 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
17209 (propagated-inputs
17210 `(("r-htmlwidgets" ,r-htmlwidgets)
17211 ("r-igraph" ,r-igraph)
17212 ("r-magrittr" ,r-magrittr)))
17213 (home-page "https://cran.r-project.org/package=networkD3")
17214 (synopsis "D3 JavaScript network graphs from R")
17215 (description
17216 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
17217 graphs from R.")
17218 (license license:gpl3+)))
17219
17220 (define-public r-aasea
17221 (package
17222 (name "r-aasea")
17223 (version "1.1.0")
17224 (source
17225 (origin
17226 (method url-fetch)
17227 (uri (cran-uri "aaSEA" version))
17228 (sha256
17229 (base32
17230 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
17231 (properties `((upstream-name . "aaSEA")))
17232 (build-system r-build-system)
17233 (propagated-inputs
17234 `(("r-bios2cor" ,r-bios2cor)
17235 ("r-dt" ,r-dt)
17236 ("r-hmisc" ,r-hmisc)
17237 ("r-magrittr" ,r-magrittr)
17238 ("r-networkd3" ,r-networkd3)
17239 ("r-plotly" ,r-plotly)
17240 ("r-seqinr" ,r-seqinr)
17241 ("r-shiny" ,r-shiny)
17242 ("r-shinydashboard" ,r-shinydashboard)))
17243 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
17244 (synopsis "Amino acid substitution effect analyzer")
17245 (description
17246 "Given a protein multiple sequence alignment, it is a daunting task to
17247 assess the effects of substitutions along sequence length. The aaSEA package
17248 is intended to help researchers to rapidly analyze property changes caused by
17249 single, multiple and correlated amino acid substitutions in proteins.")
17250 (license license:gpl3)))
17251
17252 (define-public r-abacus
17253 (package
17254 (name "r-abacus")
17255 (version "1.0.0")
17256 (source
17257 (origin
17258 (method url-fetch)
17259 (uri (cran-uri "ABACUS" version))
17260 (sha256
17261 (base32
17262 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
17263 (properties `((upstream-name . "ABACUS")))
17264 (build-system r-build-system)
17265 (propagated-inputs
17266 `(("r-ggplot2" ,r-ggplot2)
17267 ("r-shiny" ,r-shiny)))
17268 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
17269 (synopsis "Apps-based activities for communicating and understanding statistics")
17270 (description
17271 "This package provides a set of Shiny apps for effective communication
17272 and understanding in statistics. The current version includes properties of
17273 normal distribution, properties of sampling distribution, one-sample z and t
17274 tests, two samples independent (unpaired) t test and analysis of variance.")
17275 (license license:gpl3)))
17276
17277 (define-public r-abc-rap
17278 (package
17279 (name "r-abc-rap")
17280 (version "0.9.0")
17281 (source
17282 (origin
17283 (method url-fetch)
17284 (uri (cran-uri "ABC.RAP" version))
17285 (sha256
17286 (base32
17287 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
17288 (properties `((upstream-name . "ABC.RAP")))
17289 (build-system r-build-system)
17290 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
17291 (synopsis "Array-based CpG region analysis pipeline")
17292 (description
17293 "This package aims to identify candidate genes that are differentially
17294 methylated between cases and controls. It applies Student's t-test and delta
17295 beta analysis to identify candidate genes containing multiple CpG sites.")
17296 (license license:gpl3)))
17297
17298 (define-public r-abcadm
17299 (package
17300 (name "r-abcadm")
17301 (version "1.0")
17302 (source
17303 (origin
17304 (method url-fetch)
17305 (uri (cran-uri "abcADM" version))
17306 (sha256
17307 (base32
17308 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
17309 (properties `((upstream-name . "abcADM")))
17310 (build-system r-build-system)
17311 (propagated-inputs
17312 `(("r-bh" ,r-bh)
17313 ("r-rcpp" ,r-rcpp)))
17314 (home-page "https://cran.r-project.org/web/packages/abcADM/")
17315 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
17316 (description
17317 "This package provides tools to estimate parameters of accumulated
17318 damage (load duration) models based on failure time data under a Bayesian
17319 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
17320 long-term reliability under stochastic load profiles.")
17321 (license license:gpl3)))
17322
17323 (define-public r-rglpk
17324 (package
17325 (name "r-rglpk")
17326 (version "0.6-4")
17327 (source
17328 (origin
17329 (method url-fetch)
17330 (uri (cran-uri "Rglpk" version))
17331 (sha256
17332 (base32
17333 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
17334 (properties `((upstream-name . "Rglpk")))
17335 (build-system r-build-system)
17336 (propagated-inputs
17337 `(("r-slam" ,r-slam)))
17338 (inputs
17339 `(("glpk" ,glpk)))
17340 (home-page "https://r-forge.r-project.org/projects/rglp/")
17341 (synopsis "R interface to the GNU Linear Programming Kit")
17342 (description
17343 "This package provides an R interface to the GNU Linear Programming Kit,
17344 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
17345 integer linear programming} (MILP) and other related problems.")
17346 ;; Either license
17347 (license (list license:gpl2 license:gpl3))))
17348
17349 (define-public r-abcdefba
17350 (package
17351 (name "r-abcdefba")
17352 (version "0.4")
17353 (source
17354 (origin
17355 (method url-fetch)
17356 (uri (cran-uri "abcdeFBA" version))
17357 (sha256
17358 (base32
17359 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
17360 (properties `((upstream-name . "abcdeFBA")))
17361 (build-system r-build-system)
17362 (propagated-inputs
17363 `(("r-corrplot" ,r-corrplot)
17364 ("r-lattice" ,r-lattice)
17365 ("r-rgl" ,r-rgl)
17366 ("r-rglpk" ,r-rglpk)))
17367 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
17368 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
17369 (description
17370 "This package provides functions for Constraint Based Simulation using
17371 Flux Balance Analysis and informative analysis of the data generated during
17372 simulation.")
17373 (license license:gpl2)))
17374
17375 (define-public r-abcrlda
17376 (package
17377 (name "r-abcrlda")
17378 (version "1.0.3")
17379 (source
17380 (origin
17381 (method url-fetch)
17382 (uri (cran-uri "abcrlda" version))
17383 (sha256
17384 (base32
17385 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
17386 (properties `((upstream-name . "abcrlda")))
17387 (build-system r-build-system)
17388 (home-page "https://ieeexplore.ieee.org/document/8720003/")
17389 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
17390 (description
17391 "This package offers methods to perform @dfn{asymptotically
17392 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
17393 cost-sensitive binary classification. The bias-correction is an estimate of
17394 the bias term added to regularized discriminant analysis that minimizes the
17395 overall risk.")
17396 (license license:gpl3)))
17397
17398 (define-public r-abemus
17399 (package
17400 (name "r-abemus")
17401 (version "1.0.1")
17402 (source
17403 (origin
17404 (method url-fetch)
17405 (uri (cran-uri "abemus" version))
17406 (sha256
17407 (base32
17408 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
17409 (properties `((upstream-name . "abemus")))
17410 (build-system r-build-system)
17411 (propagated-inputs
17412 `(("r-data-table" ,r-data-table)))
17413 (home-page "https://cran.r-project.org/web/packages/abemus/")
17414 (synopsis "Adaptive base error model in ultra-deep sequencing data")
17415 (description
17416 "This package provides an implementation of @dfn{Adaptive Base Error
17417 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
17418 platform-specific genetic knowledge and empirical signal to readily detect and
17419 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
17420 cell free DNA} (cfDNA).")
17421 (license license:gpl3)))
17422
17423 ;; This package includes minified JavaScript files. When upgrading please
17424 ;; check that there are no new minified JavaScript files.
17425 (define-public r-rintrojs
17426 (package
17427 (name "r-rintrojs")
17428 (version "0.2.2")
17429 (source
17430 (origin
17431 (method url-fetch)
17432 (uri (cran-uri "rintrojs" version))
17433 (sha256
17434 (base32
17435 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
17436 (properties `((upstream-name . "rintrojs")))
17437 (build-system r-build-system)
17438 (arguments
17439 `(#:modules ((guix build utils)
17440 (guix build r-build-system)
17441 (srfi srfi-1)
17442 (ice-9 popen))
17443 #:phases
17444 (modify-phases %standard-phases
17445 (add-after 'unpack 'process-javascript
17446 (lambda* (#:key inputs #:allow-other-keys)
17447 (with-directory-excursion "inst/javascript/introjs/"
17448 (call-with-values
17449 (lambda ()
17450 (unzip2
17451 `((,(assoc-ref inputs "intro.js")
17452 "intro.min.js"))))
17453 (lambda (sources targets)
17454 (for-each (lambda (source target)
17455 (format #t "Processing ~a --> ~a~%"
17456 source target)
17457 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
17458 (call-with-output-file target
17459 (lambda (port)
17460 (dump-port minified port)))))
17461 sources targets))))
17462 #t)))))
17463 (native-inputs
17464 `(("uglify-js" ,uglify-js)
17465 ("intro.js"
17466 ,(origin
17467 (method url-fetch)
17468 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
17469 (sha256
17470 (base32
17471 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
17472 (propagated-inputs
17473 `(("r-jsonlite" ,r-jsonlite)
17474 ("r-shiny" ,r-shiny)))
17475 (home-page "https://github.com/carlganz/rintrojs")
17476 (synopsis "Wrapper for the Intro.js library")
17477 (description
17478 "This package provides a wrapper for the @url{http://www.introjs.com,
17479 Intro.js} library. This package makes it easy to include step-by-step
17480 introductions, and clickable hints in a Shiny application. It supports both
17481 static introductions in the UI, and programmatic introductions from the
17482 server-side.")
17483 (license license:agpl3+)))
17484
17485 (define-public r-sysfonts
17486 (package
17487 (name "r-sysfonts")
17488 (version "0.8.1")
17489 (source
17490 (origin
17491 (method url-fetch)
17492 (uri (cran-uri "sysfonts" version))
17493 (sha256
17494 (base32
17495 "1xp40hchjfif80a6jj210ghrjcvjjf66vqcssdy7a1j53nl1n994"))))
17496 (properties `((upstream-name . "sysfonts")))
17497 (build-system r-build-system)
17498 (inputs
17499 `(("freetype" ,freetype)
17500 ("libpng" ,libpng)
17501 ("zlib" ,zlib)))
17502 (native-inputs
17503 `(("pkg-config" ,pkg-config)))
17504 (home-page "https://github.com/yixuan/sysfonts")
17505 (synopsis "Loading fonts into R")
17506 (description
17507 "This is a package to simplify loading of system fonts and Google Fonts
17508 into R, in order to support other packages.")
17509 (license license:gpl2)))
17510
17511 (define-public r-showtextdb
17512 (package
17513 (name "r-showtextdb")
17514 (version "3.0")
17515 (source
17516 (origin
17517 (method url-fetch)
17518 (uri (cran-uri "showtextdb" version))
17519 (sha256
17520 (base32
17521 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
17522 (properties `((upstream-name . "showtextdb")))
17523 (build-system r-build-system)
17524 (propagated-inputs
17525 `(("r-sysfonts" ,r-sysfonts)))
17526 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
17527 (synopsis "Font files for the 'showtext' package")
17528 (description
17529 "This package provides font files that can be used by the @code{showtext}
17530 package.")
17531 (license license:asl2.0)))
17532
17533 (define-public r-showtext
17534 (package
17535 (name "r-showtext")
17536 (version "0.9")
17537 (source
17538 (origin
17539 (method url-fetch)
17540 (uri (cran-uri "showtext" version))
17541 (sha256
17542 (base32
17543 "11fx2vv8jlvcnybh18y7v4bn2c67aqsqwfq7y8dpywbwr4zg8jid"))))
17544 (properties `((upstream-name . "showtext")))
17545 (build-system r-build-system)
17546 (inputs
17547 `(("freetype" ,freetype)
17548 ("libpng" ,libpng)
17549 ("zlib" ,zlib)))
17550 (propagated-inputs
17551 `(("r-showtextdb" ,r-showtextdb)
17552 ("r-sysfonts" ,r-sysfonts)))
17553 (native-inputs
17554 `(("pkg-config" ,pkg-config)
17555 ("r-knitr" ,r-knitr)))
17556 (home-page "https://github.com/yixuan/showtext")
17557 (synopsis "Using fonts more easily in R graphs")
17558 (description
17559 "This package aims to make it easy to use various types of
17560 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
17561 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
17562 will be converted into polygons or raster images, hence after the plot has
17563 been created, it no longer relies on the font files. No external software
17564 such as Ghostscript is needed to use this package.")
17565 (license license:asl2.0)))
17566
17567 (define-public r-emojifont
17568 (package
17569 (name "r-emojifont")
17570 (version "0.5.3")
17571 (source
17572 (origin
17573 (method url-fetch)
17574 (uri (cran-uri "emojifont" version))
17575 (sha256
17576 (base32
17577 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
17578 (properties `((upstream-name . "emojifont")))
17579 (build-system r-build-system)
17580 (propagated-inputs
17581 `(("r-ggplot2" ,r-ggplot2)
17582 ("r-proto" ,r-proto)
17583 ("r-showtext" ,r-showtext)
17584 ("r-sysfonts" ,r-sysfonts)))
17585 (home-page "https://guangchuangyu.github.io/emojifont")
17586 (synopsis "Emoji and Font Awesome in R graphics")
17587 (description
17588 "This package enables the use of emoji and the Font Awesome glyphs in
17589 both base and ggplot2 graphics.")
17590 (license license:artistic2.0)))
17591
17592 (define-public r-abstractr
17593 (package
17594 (name "r-abstractr")
17595 (version "0.1.0")
17596 (source
17597 (origin
17598 (method url-fetch)
17599 (uri (cran-uri "abstractr" version))
17600 (sha256
17601 (base32
17602 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
17603 (properties `((upstream-name . "abstractr")))
17604 (build-system r-build-system)
17605 (propagated-inputs
17606 `(("r-colourpicker" ,r-colourpicker)
17607 ("r-emojifont" ,r-emojifont)
17608 ("r-ggplot2" ,r-ggplot2)
17609 ("r-gridextra" ,r-gridextra)
17610 ("r-rintrojs" ,r-rintrojs)
17611 ("r-shiny" ,r-shiny)
17612 ("r-shinythemes" ,r-shinythemes)))
17613 (home-page "https://matt-kumar.shinyapps.io/portfolio")
17614 (synopsis "R-Shiny application for creating visual abstracts")
17615 (description
17616 "This package provides an R Shiny application to create visual abstracts
17617 for original research. A variety of user defined options and formatting are
17618 included.")
17619 (license license:gpl3)))
17620
17621 (define-public r-qgam
17622 (package
17623 (name "r-qgam")
17624 (version "1.3.2")
17625 (source
17626 (origin
17627 (method url-fetch)
17628 (uri (cran-uri "qgam" version))
17629 (sha256
17630 (base32
17631 "0lks2cj0p7irp1i01756v1l7i26d7alax1fbkc20qd6wpz840fi7"))))
17632 (properties `((upstream-name . "qgam")))
17633 (build-system r-build-system)
17634 (propagated-inputs
17635 `(("r-doparallel" ,r-doparallel)
17636 ("r-mgcv" ,r-mgcv)
17637 ("r-plyr" ,r-plyr)
17638 ("r-shiny" ,r-shiny)))
17639 (native-inputs `(("r-knitr" ,r-knitr)))
17640 (home-page "https://cran.r-project.org/web/packages/qgam/")
17641 (synopsis "Smooth additive quantile regression models")
17642 (description
17643 "This package provides smooth additive quantile regression models, fitted
17644 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
17645 the smoothing parameters are estimated automatically by marginal loss
17646 minimization, while the regression coefficients are estimated using either
17647 PIRLS or Newton algorithm. The learning rate is determined so that the
17648 Bayesian credible intervals of the estimated effects have approximately the
17649 correct coverage. The main function is @code{qgam()} which is similar to
17650 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
17651 regression models.")
17652 (license license:gpl2+)))
17653
17654 (define-public r-abtest
17655 (package
17656 (name "r-abtest")
17657 (version "0.2.1")
17658 (source
17659 (origin
17660 (method url-fetch)
17661 (uri (cran-uri "abtest" version))
17662 (sha256
17663 (base32
17664 "1zfd13d7dplawk24dbdr1ka8cbdp5w6sxb0zlm7k4dhvn6ksi8h0"))))
17665 (properties `((upstream-name . "abtest")))
17666 (build-system r-build-system)
17667 (propagated-inputs
17668 `(("r-matrix" ,r-matrix)
17669 ("r-mvtnorm" ,r-mvtnorm)
17670 ("r-plotrix" ,r-plotrix)
17671 ("r-qgam" ,r-qgam)
17672 ("r-rcolorbrewer" ,r-rcolorbrewer)
17673 ("r-rcpp" ,r-rcpp)
17674 ("r-sn" ,r-sn)
17675 ("r-truncnorm" ,r-truncnorm)))
17676 (home-page "https://cran.r-project.org/web/packages/abtest/")
17677 (synopsis "Bayesian A/B testing")
17678 (description
17679 "This package provides functions for Bayesian A/B testing including prior
17680 elicitation options based on Kass and Vaidyanathan (1992)
17681 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
17682 (license license:gpl2+)))
17683
17684 (define-public r-accept
17685 (package
17686 (name "r-accept")
17687 (version "0.7.1")
17688 (source
17689 (origin
17690 (method url-fetch)
17691 (uri (cran-uri "accept" version))
17692 (sha256
17693 (base32
17694 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
17695 (properties `((upstream-name . "accept")))
17696 (build-system r-build-system)
17697 (propagated-inputs
17698 `(("r-dplyr" ,r-dplyr)
17699 ("r-extrafont" ,r-extrafont)
17700 ("r-mass" ,r-mass)
17701 ("r-plotly" ,r-plotly)
17702 ("r-stringr" ,r-stringr)
17703 ("r-viridis" ,r-viridis)))
17704 (home-page "https://cran.r-project.org/web/packages/accept/")
17705 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
17706 (description
17707 "This package allows clinicians to predict the rate and severity of
17708 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
17709 Disease} (COPD) patients, based on the clinical prediction model published in
17710 Adibi et al. (2019) @url{doi:10.1101/651901}.")
17711 (license license:gpl3)))
17712
17713 (define-public r-smpracticals
17714 (package
17715 (name "r-smpracticals")
17716 (version "1.4-3")
17717 (source
17718 (origin
17719 (method url-fetch)
17720 (uri (cran-uri "SMPracticals" version))
17721 (sha256
17722 (base32
17723 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
17724 (properties `((upstream-name . "SMPracticals")))
17725 (build-system r-build-system)
17726 (propagated-inputs
17727 `(("r-ellipse" ,r-ellipse)
17728 ("r-mass" ,r-mass)
17729 ("r-nlme" ,r-nlme)
17730 ("r-survival" ,r-survival)))
17731 (home-page "http://statwww.epfl.ch/davison/SM/")
17732 (synopsis "Practicals for use with Davison (2003) Statistical Models")
17733 (description
17734 "This package contains the datasets and a few functions for use with the
17735 practicals outlined in Appendix A of the book Statistical Models (Davison,
17736 2003, Cambridge University Press). The practicals themselves can be found at
17737 @url{http://statwww.epfl.ch/davison/SM/}.")
17738 (license license:gpl2+)))
17739
17740 (define-public r-fgui
17741 (package
17742 (name "r-fgui")
17743 (version "1.0-8")
17744 (source
17745 (origin
17746 (method url-fetch)
17747 (uri (cran-uri "fgui" version))
17748 (sha256
17749 (base32
17750 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
17751 (properties `((upstream-name . "fgui")))
17752 (build-system r-build-system)
17753 (home-page
17754 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
17755 (synopsis "Create GUI for R functions")
17756 (description
17757 "Rapidly create a GUI for a function you created by automatically
17758 creating widgets for arguments of the function. This package automatically
17759 parses help routines for context-sensitive help to these arguments. The
17760 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
17761 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
17762 incorporated into the interface for greater customization for the more
17763 experienced.")
17764 ;; Any version of the GPL.
17765 (license (list license:gpl2+ license:gpl3+))))
17766
17767 (define-public r-tcltk2
17768 (package
17769 (name "r-tcltk2")
17770 (version "1.2-11")
17771 (source
17772 (origin
17773 (method url-fetch)
17774 (uri (cran-uri "tcltk2" version))
17775 (sha256
17776 (base32
17777 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
17778 (properties `((upstream-name . "tcltk2")))
17779 (build-system r-build-system)
17780 (inputs
17781 `(("tcl" ,tcl)
17782 ("tk" ,tk)))
17783 (home-page "https://www.sciviews.org/SciViews-R")
17784 (synopsis "Tcl/Tk additions")
17785 (description
17786 "This package provides a series of additional Tcl commands and Tk widgets
17787 with style and various functions to supplement the tcltk package")
17788 (license license:lgpl3)))
17789
17790 (define-public r-accrual
17791 (package
17792 (name "r-accrual")
17793 (version "1.3")
17794 (source
17795 (origin
17796 (method url-fetch)
17797 (uri (cran-uri "accrual" version))
17798 (sha256
17799 (base32
17800 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
17801 (properties `((upstream-name . "accrual")))
17802 (build-system r-build-system)
17803 (propagated-inputs
17804 `(("r-fgui" ,r-fgui)
17805 ("r-smpracticals" ,r-smpracticals)
17806 ("r-tcltk2" ,r-tcltk2)))
17807 (home-page "https://cran.r-project.org/web/packages/accrual/")
17808 (synopsis "Bayesian accrual prediction")
17809 (description
17810 "Subject recruitment for medical research is challenging. Slow patient
17811 accrual leads to delay in research. Accrual monitoring during the process of
17812 recruitment is critical. Researchers need reliable tools to manage the
17813 accrual rate. This package provides an implementation of a Bayesian method
17814 that integrates researcher's experience on previous trials and data from the
17815 current study, providing reliable prediction on accrual rate for clinical
17816 studies. It provides functions for Bayesian accrual prediction which can be
17817 easily used by statisticians and clinical researchers.")
17818 (license license:gpl2)))
17819
17820 (define-public r-accrued
17821 (package
17822 (name "r-accrued")
17823 (version "1.4.1")
17824 (source
17825 (origin
17826 (method url-fetch)
17827 (uri (cran-uri "accrued" version))
17828 (sha256
17829 (base32
17830 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
17831 (properties `((upstream-name . "accrued")))
17832 (build-system r-build-system)
17833 (home-page "https://cran.r-project.org/web/packages/accrued/")
17834 (synopsis "Data quality visualization tools for partially accruing data")
17835 (description
17836 "This is a package for visualizing data quality of partially accruing
17837 data.")
17838 (license license:gpl3)))
17839
17840 (define-public r-mda
17841 (package
17842 (name "r-mda")
17843 (version "0.5-2")
17844 (source
17845 (origin
17846 (method url-fetch)
17847 (uri (cran-uri "mda" version))
17848 (sha256
17849 (base32
17850 "1hq0zhhz9klmp4zcr1w8hyn7s1h9kfg57d2l2mfm7psx459j0krl"))))
17851 (properties `((upstream-name . "mda")))
17852 (build-system r-build-system)
17853 (propagated-inputs `(("r-class" ,r-class)))
17854 (native-inputs `(("gfortran" ,gfortran)))
17855 (home-page "https://cran.r-project.org/web/packages/mda/")
17856 (synopsis "Mixture and flexible discriminant analysis")
17857 (description
17858 "This is a package for mixture and flexible discriminant analysis,
17859 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
17860 (license license:gpl2)))
17861
17862 (define-public r-elasticnet
17863 (package
17864 (name "r-elasticnet")
17865 (version "1.3")
17866 (source
17867 (origin
17868 (method url-fetch)
17869 (uri (cran-uri "elasticnet" version))
17870 (sha256
17871 (base32
17872 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
17873 (properties `((upstream-name . "elasticnet")))
17874 (build-system r-build-system)
17875 (propagated-inputs
17876 `(("r-lars" ,r-lars)))
17877 (home-page "http://users.stat.umn.edu/~zouxx019/")
17878 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
17879 (description
17880 "This package provides functions for fitting the entire solution path of
17881 the Elastic-Net and also provides functions for estimating sparse Principal
17882 Components. The Lasso solution paths can be computed by the same function.")
17883 (license license:gpl2+)))
17884
17885 (define-public r-sparselda
17886 (package
17887 (name "r-sparselda")
17888 (version "0.1-9")
17889 (source
17890 (origin
17891 (method url-fetch)
17892 (uri (cran-uri "sparseLDA" version))
17893 (sha256
17894 (base32
17895 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
17896 (properties `((upstream-name . "sparseLDA")))
17897 (build-system r-build-system)
17898 (propagated-inputs
17899 `(("r-elasticnet" ,r-elasticnet)
17900 ("r-mass" ,r-mass)
17901 ("r-mda" ,r-mda)))
17902 (home-page "https://www.imm.dtu.dk/~lkhc/")
17903 (synopsis "Sparse discriminant analysis")
17904 (description
17905 "This package performs sparse linear discriminant analysis for Gaussians
17906 and mixture of Gaussian models.")
17907 (license license:gpl2+)))
17908
17909 (define-public r-accsda
17910 (package
17911 (name "r-accsda")
17912 (version "1.0.0")
17913 (source
17914 (origin
17915 (method url-fetch)
17916 (uri (cran-uri "accSDA" version))
17917 (sha256
17918 (base32
17919 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17920 (properties `((upstream-name . "accSDA")))
17921 (build-system r-build-system)
17922 (propagated-inputs
17923 `(("r-ggplot2" ,r-ggplot2)
17924 ("r-ggthemes" ,r-ggthemes)
17925 ("r-gridextra" ,r-gridextra)
17926 ("r-mass" ,r-mass)
17927 ("r-rarpack" ,r-rarpack)
17928 ("r-sparselda" ,r-sparselda)))
17929 (home-page "https://github.com/gumeo/accSDA/wiki")
17930 (synopsis "Accelerated sparse discriminant analysis")
17931 (description
17932 "This package provides an implementation of sparse linear discriminant
17933 analysis, which is a supervised classification method for multiple classes.
17934 Various novel optimization approaches to this problem are implemented
17935 including @dfn{alternating direction method of multipliers} (ADMM),
17936 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17937 Functions for performing cross validation are also supplied along with basic
17938 prediction and plotting functions. @dfn{Sparse zero variance
17939 discriminant} (SZVD) analysis is also included in the package.")
17940 (license license:gpl2+)))
17941
17942 (define-public r-ace2fastq
17943 (package
17944 (name "r-ace2fastq")
17945 (version "0.6.0")
17946 (source
17947 (origin
17948 (method url-fetch)
17949 (uri (cran-uri "ace2fastq" version))
17950 (sha256
17951 (base32
17952 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17953 (properties `((upstream-name . "ace2fastq")))
17954 (build-system r-build-system)
17955 (propagated-inputs
17956 `(("r-stringr" ,r-stringr)))
17957 (home-page "https://github.com/c5sire/ace2fastq")
17958 (synopsis "ACE file to FASTQ converter")
17959 (description
17960 "The ACE file format is used in genomics to store contigs from sequencing
17961 machines. This tools converts it into FASTQ format. Both formats contain the
17962 sequence characters and their corresponding quality information. Unlike the
17963 FASTQ file, the ACE file stores the quality values numerically. The
17964 conversion algorithm uses the standard Sanger formula. The package
17965 facilitates insertion into pipelines, and content inspection.")
17966 (license license:gpl3)))
17967
17968 (define-public r-rngwell
17969 (package
17970 (name "r-rngwell")
17971 (version "0.10-6")
17972 (source
17973 (origin
17974 (method url-fetch)
17975 (uri (cran-uri "rngWELL" version))
17976 (sha256
17977 (base32
17978 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17979 (properties `((upstream-name . "rngWELL")))
17980 (build-system r-build-system)
17981 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17982 (synopsis "Toolbox for WELL random number generators")
17983 (description
17984 "This is a dedicated package to WELL pseudo random generators, which were
17985 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17986 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17987 (license license:bsd-3)))
17988
17989 (define-public r-randtoolbox
17990 (package
17991 (name "r-randtoolbox")
17992 (version "1.30.1")
17993 (source
17994 (origin
17995 (method url-fetch)
17996 (uri (cran-uri "randtoolbox" version))
17997 (sha256
17998 (base32
17999 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
18000 (properties `((upstream-name . "randtoolbox")))
18001 (build-system r-build-system)
18002 (propagated-inputs
18003 `(("r-rngwell" ,r-rngwell)))
18004 (native-inputs
18005 `(("gfortran" ,gfortran)))
18006 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
18007 (synopsis "Toolbox for pseudo and quasi random number generation")
18008 (description
18009 "This package provides
18010
18011 @enumerate
18012 @item pseudo random generators, such as general linear
18013 congruential generators, multiple recursive generators and generalized
18014 feedback shift register (SF-Mersenne Twister algorithm and WELL
18015 generators)
18016
18017 @item quasi random generators, such as the Torus algorithm, the Sobol
18018 sequence, the Halton sequence (including the Van der Corput sequence), and
18019
18020 @item some generator tests: the gap test, the serial test, the poker test.
18021 @end enumerate
18022
18023 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
18024 (license license:bsd-3)))
18025
18026 (define-public r-lhs
18027 (package
18028 (name "r-lhs")
18029 (version "1.0.2")
18030 (source
18031 (origin
18032 (method url-fetch)
18033 (uri (cran-uri "lhs" version))
18034 (sha256
18035 (base32
18036 "0n0i1hr9gmc0hfcs2cvpjvdfgm6k26rhcq3q22r8ic0gfj953572"))))
18037 (properties `((upstream-name . "lhs")))
18038 (build-system r-build-system)
18039 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
18040 (native-inputs
18041 `(("r-knitr" ,r-knitr)))
18042 (home-page "https://github.com/bertcarnell/lhs")
18043 (synopsis "Latin Hypercube Samples")
18044 (description
18045 "This package provides a number of methods for creating and augmenting
18046 Latin Hypercube Samples.")
18047 (license license:gpl3)))
18048
18049 (define-public r-acebayes
18050 (package
18051 (name "r-acebayes")
18052 (version "1.9")
18053 (source
18054 (origin
18055 (method url-fetch)
18056 (uri (cran-uri "acebayes" version))
18057 (sha256
18058 (base32
18059 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
18060 (properties `((upstream-name . "acebayes")))
18061 (build-system r-build-system)
18062 (propagated-inputs
18063 `(("r-compare" ,r-compare)
18064 ("r-lhs" ,r-lhs)
18065 ("r-randtoolbox" ,r-randtoolbox)
18066 ("r-rcpp" ,r-rcpp)
18067 ("r-rcpparmadillo" ,r-rcpparmadillo)))
18068 (home-page "https://cran.r-project.org/web/packages/acebayes/")
18069 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
18070 (description
18071 "Finding an optimal Bayesian experimental design involves maximizing an
18072 objective function given by the expectation of some appropriately chosen
18073 utility function with respect to the joint distribution of unknown
18074 quantities (including responses). This objective function is usually not
18075 available in closed form and the design space can be continuous and of high
18076 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
18077 to maximise an approximation to the expectation of the utility function.")
18078 (license license:gpl2)))
18079
18080 (define-public r-acet
18081 (package
18082 (name "r-acet")
18083 (version "1.8.0")
18084 (source
18085 (origin
18086 (method url-fetch)
18087 (uri (cran-uri "ACEt" version))
18088 (sha256
18089 (base32
18090 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
18091 (properties `((upstream-name . "ACEt")))
18092 (build-system r-build-system)
18093 (propagated-inputs
18094 `(("r-bh" ,r-bh)
18095 ("r-mass" ,r-mass)
18096 ("r-rcpp" ,r-rcpp)
18097 ("r-rcpparmadillo" ,r-rcpparmadillo)))
18098 (home-page "https://cran.r-project.org/web/packages/ACEt/")
18099 (synopsis "Estimating dynamic heritability and twin model comparison")
18100 (description
18101 "This package supports twin models that are able to estimate the dynamic
18102 behaviour of the variance components in the classical twin models with respect
18103 to age using B-splines and P-splines.")
18104 (license license:gpl2+)))
18105
18106 (define-public r-acfmperiod
18107 (package
18108 (name "r-acfmperiod")
18109 (version "1.0.0")
18110 (source
18111 (origin
18112 (method url-fetch)
18113 (uri (cran-uri "acfMPeriod" version))
18114 (sha256
18115 (base32
18116 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
18117 (properties `((upstream-name . "acfMPeriod")))
18118 (build-system r-build-system)
18119 (propagated-inputs
18120 `(("r-mass" ,r-mass)))
18121 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
18122 (synopsis "Estimation of the ACF from the M-periodogram")
18123 (description
18124 "This package support non-robust and robust computations of the sample
18125 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
18126 univariate and multivariate processes. The methodology consists in reversing
18127 the diagonalization procedure involving the periodogram or the
18128 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
18129 ACOVF or the ACF as discussed in Fuller (1995)
18130 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
18131 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
18132 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
18133 (license license:gpl2+)))
18134
18135 (define-public r-gamlss-data
18136 (package
18137 (name "r-gamlss-data")
18138 (version "5.1-4")
18139 (source
18140 (origin
18141 (method url-fetch)
18142 (uri (cran-uri "gamlss.data" version))
18143 (sha256
18144 (base32
18145 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
18146 (properties `((upstream-name . "gamlss.data")))
18147 (build-system r-build-system)
18148 (home-page "http://www.gamlss.org/")
18149 (synopsis "GAMLSS data")
18150 (description
18151 "This package provides data used as examples to demonstrate GAMLSS
18152 models.")
18153 ;; Either version of the license
18154 (license (list license:gpl2 license:gpl3))))
18155
18156 (define-public r-gamlss
18157 (package
18158 (name "r-gamlss")
18159 (version "5.1-7")
18160 (source
18161 (origin
18162 (method url-fetch)
18163 (uri (cran-uri "gamlss" version))
18164 (sha256
18165 (base32
18166 "0ywqwsp4k6jgnicp1gdsglji61l5cnackl52700v8kmkk83bq4c8"))))
18167 (properties `((upstream-name . "gamlss")))
18168 (build-system r-build-system)
18169 (propagated-inputs
18170 `(("r-gamlss-data" ,r-gamlss-data)
18171 ("r-gamlss-dist" ,r-gamlss-dist)
18172 ("r-mass" ,r-mass)
18173 ("r-nlme" ,r-nlme)
18174 ("r-survival" ,r-survival)))
18175 (home-page "http://www.gamlss.org/")
18176 (synopsis "Generalized additive models for location scale and shape")
18177 (description
18178 "This package provides functions for fitting the generalized additive
18179 models for location scale and shape introduced by Rigby and
18180 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
18181 use a distributional regression approach where all the parameters of the
18182 conditional distribution of the response variable are modelled using
18183 explanatory variables.")
18184 ;; Either version of the license
18185 (license (list license:gpl2 license:gpl3))))
18186
18187 (define-public r-acid
18188 (package
18189 (name "r-acid")
18190 (version "1.1")
18191 (source
18192 (origin
18193 (method url-fetch)
18194 (uri (cran-uri "acid" version))
18195 (sha256
18196 (base32
18197 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
18198 (properties `((upstream-name . "acid")))
18199 (build-system r-build-system)
18200 (propagated-inputs
18201 `(("r-gamlss" ,r-gamlss)
18202 ("r-gamlss-dist" ,r-gamlss-dist)
18203 ("r-hmisc" ,r-hmisc)))
18204 (home-page "https://cran.r-project.org/web/packages/acid/")
18205 (synopsis "Analysing conditional income distributions")
18206 (description
18207 "This package provides functions for the analysis of income distributions
18208 for subgroups of the population as defined by a set of variables like age,
18209 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
18210 distribution as well as functions for moments, inequality measures, entropy
18211 measures and polarisation measures of income distributions. This package thus
18212 aides the analysis of income inequality by offering tools for the exploratory
18213 analysis of income distributions at the disaggregated level.")
18214 (license license:gpl3)))
18215
18216 (define-public r-acm4r
18217 (package
18218 (name "r-acm4r")
18219 (version "1.0")
18220 (source
18221 (origin
18222 (method url-fetch)
18223 (uri (cran-uri "acm4r" version))
18224 (sha256
18225 (base32
18226 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
18227 (properties `((upstream-name . "acm4r")))
18228 (build-system r-build-system)
18229 (propagated-inputs `(("r-mass" ,r-mass)))
18230 (home-page "https://cran.r-project.org/web/packages/acm4r/")
18231 (synopsis "Align-and-count method comparisons of RFLP data")
18232 (description
18233 "This is a package to compare sequence fragment lengths or molecular
18234 weights from pairs of lanes. The number of matching bands in the
18235 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
18236 the align-and-count method.")
18237 ;; Any version of the GPL
18238 (license (list license:gpl2+ license:gpl3+))))
18239
18240 (define-public r-filematrix
18241 (package
18242 (name "r-filematrix")
18243 (version "1.3")
18244 (source
18245 (origin
18246 (method url-fetch)
18247 (uri (cran-uri "filematrix" version))
18248 (sha256
18249 (base32
18250 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
18251 (properties `((upstream-name . "filematrix")))
18252 (build-system r-build-system)
18253 ;; These inputs are needed for vignettes
18254 (native-inputs
18255 `(("r-knitr" ,r-knitr)
18256 ("r-rmarkdown" ,r-rmarkdown)
18257 ("pandoc-citeproc" ,pandoc-citeproc)))
18258 (home-page "https://github.com/andreyshabalin/filematrix")
18259 (synopsis "File-backed matrix class with convenient read and write access")
18260 (description
18261 "This package provides an interface for working with large matrices
18262 stored in files, not in computer memory. It supports multiple non-character
18263 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
18264 byte real values). Access to parts of the matrix is done by indexing, exactly
18265 as with usual R matrices. It supports very large matrices; the package has
18266 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
18267 columns, ad allows for quick addition of extra columns to a filematrix.")
18268 (license license:lgpl3)))
18269
18270 (define-public r-acmeeqtl
18271 (package
18272 (name "r-acmeeqtl")
18273 (version "1.6")
18274 (source
18275 (origin
18276 (method url-fetch)
18277 (uri (cran-uri "ACMEeqtl" version))
18278 (sha256
18279 (base32
18280 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
18281 (properties `((upstream-name . "ACMEeqtl")))
18282 (build-system r-build-system)
18283 (propagated-inputs
18284 `(("r-filematrix" ,r-filematrix)))
18285 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
18286 (synopsis "Estimation of interpretable eQTL effect sizes")
18287 (description
18288 "This package provides a non-linear model, termed ACME, that reflects a
18289 parsimonious biological model for allelic contributions of cis-acting eQTLs.
18290 With non-linear least-squares algorithm the maximum likelihood parameters can
18291 be estimated. The ACME model provides interpretable effect size estimates and
18292 p-values with well controlled Type-I error.")
18293 (license license:lgpl3)))
18294
18295 (define-public r-acmer
18296 (package
18297 (name "r-acmer")
18298 (version "1.1.0")
18299 (source
18300 (origin
18301 (method url-fetch)
18302 (uri (cran-uri "acmeR" version))
18303 (sha256
18304 (base32
18305 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
18306 (properties `((upstream-name . "acmeR")))
18307 (build-system r-build-system)
18308 (propagated-inputs `(("r-foreign" ,r-foreign)))
18309 (home-page "https://cran.r-project.org/web/packages/acmeR/")
18310 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
18311 (description
18312 "This package provides an implementation of the ACME estimator, described
18313 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
18314 Mortality at Wind Turbines. Unlike most other models, this estimator supports
18315 decreasing-hazard Weibull model for persistence; decreasing search proficiency
18316 as carcasses age; variable bleed-through at successive searches; and interval
18317 mortality estimates. The package provides, based on search data, functions
18318 for estimating the mortality inflation factor in Frequentist and Bayesian
18319 settings.")
18320 (license license:expat)))
18321
18322 (define-public r-r-huge
18323 (package
18324 (name "r-r-huge")
18325 (version "0.9.0")
18326 (source
18327 (origin
18328 (method url-fetch)
18329 (uri (cran-uri "R.huge" version))
18330 (sha256
18331 (base32
18332 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
18333 (properties `((upstream-name . "R.huge")))
18334 (build-system r-build-system)
18335 (propagated-inputs
18336 `(("r-r-methodss3" ,r-r-methodss3)
18337 ("r-r-oo" ,r-r-oo)
18338 ("r-r-utils" ,r-r-utils)))
18339 (home-page "https://github.com/HenrikBengtsson/R.huge")
18340 (synopsis "Methods for accessing huge amounts of data")
18341 (description
18342 "This is a deprecated package for accessing huge amounts of data.
18343 Cross-platform alternatives are the following packages: bigmemory (CRAN),
18344 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
18345 the @code{aroma.affymetrix} package.")
18346 (license license:lgpl2.1+)))
18347
18348 (define-public r-r-filesets
18349 (package
18350 (name "r-r-filesets")
18351 (version "2.13.0")
18352 (source
18353 (origin
18354 (method url-fetch)
18355 (uri (cran-uri "R.filesets" version))
18356 (sha256
18357 (base32
18358 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
18359 (properties `((upstream-name . "R.filesets")))
18360 (build-system r-build-system)
18361 (propagated-inputs
18362 `(("r-digest" ,r-digest)
18363 ("r-r-cache" ,r-r-cache)
18364 ("r-r-methodss3" ,r-r-methodss3)
18365 ("r-r-oo" ,r-r-oo)
18366 ("r-r-utils" ,r-r-utils)))
18367 (home-page "https://github.com/HenrikBengtsson/R.filesets")
18368 (synopsis "Easy handling of and access to files")
18369 (description
18370 "This package provides classes and methods to locate, setup, subset,
18371 navigate and iterate file sets, i.e. sets of files located in one or more
18372 directories on the file system. The API is designed such that these classes
18373 can be extended via inheritance to provide a richer API for special file
18374 formats. Moreover, a specific name format is defined such that filenames and
18375 directories can be considered to have full names which consists of a name
18376 followed by comma-separated tags. This adds additional flexibility to
18377 identify file sets and individual files.")
18378 (license license:lgpl2.1+)))
18379
18380 (define-public r-r-devices
18381 (package
18382 (name "r-r-devices")
18383 (version "2.16.1")
18384 (source
18385 (origin
18386 (method url-fetch)
18387 (uri (cran-uri "R.devices" version))
18388 (sha256
18389 (base32
18390 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
18391 (properties `((upstream-name . "R.devices")))
18392 (build-system r-build-system)
18393 (propagated-inputs
18394 `(("r-base64enc" ,r-base64enc)
18395 ("r-r-methodss3" ,r-r-methodss3)
18396 ("r-r-oo" ,r-r-oo)
18397 ("r-r-utils" ,r-r-utils)))
18398 (home-page "https://github.com/HenrikBengtsson/R.devices")
18399 (synopsis "Unified handling of graphics devices")
18400 (description
18401 "This package provides functions for creating plots and image files in a
18402 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
18403 Default device options as well as scales and aspect ratios are controlled in a
18404 uniform way across all device types. Switching output format requires minimal
18405 changes in code. This package is ideal for large-scale batch processing,
18406 because it will never leave open graphics devices or incomplete image files
18407 behind, even on errors or user interrupts.")
18408 (license license:lgpl2.1+)))
18409
18410 (define-public r-acnr
18411 (package
18412 (name "r-acnr")
18413 (version "1.0.0")
18414 (source
18415 (origin
18416 (method url-fetch)
18417 (uri (cran-uri "acnr" version))
18418 (sha256
18419 (base32
18420 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
18421 (properties `((upstream-name . "acnr")))
18422 (build-system r-build-system)
18423 (home-page "https://github.com/mpierrejean/acnr")
18424 (synopsis "Annotated copy-number regions")
18425 (description
18426 "This package provides SNP array data from different types of copy-number
18427 regions. These regions were identified manually by the authors of the package
18428 and may be used to generate realistic data sets with known truth.")
18429 (license license:lgpl2.1+)))
18430
18431 (define-public r-acopula
18432 (package
18433 (name "r-acopula")
18434 (version "0.9.3")
18435 (source
18436 (origin
18437 (method url-fetch)
18438 (uri (cran-uri "acopula" version))
18439 (sha256
18440 (base32
18441 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
18442 (properties `((upstream-name . "acopula")))
18443 (build-system r-build-system)
18444 (home-page "https://cran.r-project.org/web/packages/acopula/")
18445 (synopsis "Modelling dependence with multivariate Archimax copulas")
18446 (description
18447 "Archimax copulas are a mixture of Archimedean and EV copulas. This
18448 package provides definitions of several parametric families of generator and
18449 dependence function, computes CDF and PDF, estimates parameters, tests for
18450 goodness of fit, generates random sample and checks copula properties for
18451 custom constructs. In the 2-dimensional case explicit formulas for density
18452 are used, contrary to higher dimensions when all derivatives are linearly
18453 approximated. Several non-archimax families (normal, FGM, Plackett) are
18454 provided as well.")
18455 (license license:gpl2)))
18456
18457 (define-public r-tuner
18458 (package
18459 (name "r-tuner")
18460 (version "1.3.3")
18461 (source
18462 (origin
18463 (method url-fetch)
18464 (uri (cran-uri "tuneR" version))
18465 (sha256
18466 (base32
18467 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
18468 (properties `((upstream-name . "tuneR")))
18469 (build-system r-build-system)
18470 (propagated-inputs `(("r-signal" ,r-signal)))
18471 (home-page "https://cran.r-project.org/web/packages/tuneR/")
18472 (synopsis "Analysis of music and speech")
18473 (description
18474 "This is a package for the analysis of music and speech. Analyze music
18475 and speech, extract features like MFCCs, handle wave files and their
18476 representation in various ways, read MP3, read MIDI, perform steps of a
18477 transcription, ...")
18478 ;; Either of these versions.
18479 (license (list license:gpl2 license:gpl3))))
18480
18481 (define-public r-seewave
18482 (package
18483 (name "r-seewave")
18484 (version "2.1.6")
18485 (source
18486 (origin
18487 (method url-fetch)
18488 (uri (cran-uri "seewave" version))
18489 (sha256
18490 (base32
18491 "123h3q0gps0vy9sikr7gjphnv9m3l4h4mykiydjllmrpaw1s1844"))))
18492 (properties `((upstream-name . "seewave")))
18493 (build-system r-build-system)
18494 (inputs
18495 `(("libsndfile" ,libsndfile)))
18496 (propagated-inputs
18497 `(("r-tuner" ,r-tuner)))
18498 (home-page "http://rug.mnhn.fr/seewave")
18499 (synopsis "Sound analysis and synthesis")
18500 (description
18501 "This package provides functions for analysing, manipulating, displaying,
18502 editing and synthesizing time waves (particularly sound). This package
18503 processes time analysis (oscillograms and envelopes), spectral content,
18504 resonance quality factor, entropy, cross correlation and autocorrelation,
18505 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
18506 and 3D spectrograms and many other analyses.")
18507 (license license:gpl2+)))
18508
18509 (define-public r-acousticndlcoder
18510 (package
18511 (name "r-acousticndlcoder")
18512 (version "1.0.2")
18513 (source
18514 (origin
18515 (method url-fetch)
18516 (uri (cran-uri "AcousticNDLCodeR" version))
18517 (sha256
18518 (base32
18519 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
18520 (properties
18521 `((upstream-name . "AcousticNDLCodeR")))
18522 (build-system r-build-system)
18523 (propagated-inputs
18524 `(("r-seewave" ,r-seewave)
18525 ("r-tuner" ,r-tuner)
18526 ("r-zoo" ,r-zoo)))
18527 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
18528 (synopsis "Coding sound files for use with NDL")
18529 (description
18530 "Make acoustic cues to use with the R package @code{ndl}.
18531 The package implements functions used in the PLoS ONE paper \"Words from
18532 spontaneous conversational speech can be recognized with human-like accuracy
18533 by an error-driven learning algorithm that discriminates between meanings
18534 straight from smart acoustic features, bypassing the phoneme as recognition
18535 unit.\" @url{doi:10.1371/journal.pone.0174623}")
18536 (license license:gpl2+)))
18537
18538 (define-public r-acp
18539 (package
18540 (name "r-acp")
18541 (version "2.1")
18542 (source
18543 (origin
18544 (method url-fetch)
18545 (uri (cran-uri "acp" version))
18546 (sha256
18547 (base32
18548 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
18549 (properties `((upstream-name . "acp")))
18550 (build-system r-build-system)
18551 (propagated-inputs
18552 `(("r-quantmod" ,r-quantmod)
18553 ("r-tseries" ,r-tseries)))
18554 (home-page "https://cran.r-project.org/web/packages/acp/")
18555 (synopsis "Autoregressive conditional Poisson")
18556 (description
18557 "This package supports the analysis of count data exhibiting
18558 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
18559 model (ACP(p,q)) proposed by Heinen (2003).")
18560 (license license:gpl2)))
18561
18562 (define-public r-ada
18563 (package
18564 (name "r-ada")
18565 (version "2.0-5")
18566 (source
18567 (origin
18568 (method url-fetch)
18569 (uri (cran-uri "ada" version))
18570 (sha256
18571 (base32
18572 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
18573 (properties `((upstream-name . "ada")))
18574 (build-system r-build-system)
18575 (propagated-inputs `(("r-rpart" ,r-rpart)))
18576 (home-page "https://cran.r-project.org/web/packages/ada/")
18577 (synopsis "Stochastic boosting")
18578 (description
18579 "This package provides a straightforward, well-documented, and broad
18580 boosting routine for classification, ideally suited for small to
18581 moderate-sized data sets. It performs discrete, real, and gentle boost under
18582 both exponential and logistic loss on a given data set.")
18583 ;; Any version of the GPL.
18584 (license (list license:gpl2+ license:gpl3+))))
18585
18586 (define-public r-genalg
18587 (package
18588 (name "r-genalg")
18589 (version "0.2.0")
18590 (source
18591 (origin
18592 (method url-fetch)
18593 (uri (cran-uri "genalg" version))
18594 (sha256
18595 (base32
18596 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
18597 (properties `((upstream-name . "genalg")))
18598 (build-system r-build-system)
18599 (home-page "https://github.com/egonw/genalg")
18600 (synopsis "R based genetic algorithm")
18601 (description
18602 "This package provides an R based genetic algorithm for binary and
18603 floating point chromosomes.")
18604 (license license:gpl2)))
18605
18606 (define-public r-kernelfactory
18607 (package
18608 (name "r-kernelfactory")
18609 (version "0.3.0")
18610 (source
18611 (origin
18612 (method url-fetch)
18613 (uri (cran-uri "kernelFactory" version))
18614 (sha256
18615 (base32
18616 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
18617 (properties `((upstream-name . "kernelFactory")))
18618 (build-system r-build-system)
18619 (propagated-inputs
18620 `(("r-auc" ,r-auc)
18621 ("r-genalg" ,r-genalg)
18622 ("r-kernlab" ,r-kernlab)
18623 ("r-randomforest" ,r-randomforest)))
18624 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
18625 (synopsis "Ensemble of kernel machines")
18626 (description
18627 "Kernel factory is an ensemble method where each base classifier (random
18628 forest) is fit on the kernel matrix of a subset of the training data.")
18629 (license license:gpl2+)))
18630
18631 (define-public r-dummies
18632 (package
18633 (name "r-dummies")
18634 (version "1.5.6")
18635 (source
18636 (origin
18637 (method url-fetch)
18638 (uri (cran-uri "dummies" version))
18639 (sha256
18640 (base32
18641 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
18642 (properties `((upstream-name . "dummies")))
18643 (build-system r-build-system)
18644 (home-page "https://decisionpatterns.com")
18645 (synopsis "Create dummy/indicator variables flexibly and efficiently")
18646 (description
18647 "This package lets you expand factors, characters and other eligible
18648 classes into dummy/indicator variables.")
18649 (license license:gpl2+)))
18650
18651 (define-public r-acrm
18652 (package
18653 (name "r-acrm")
18654 (version "0.1.1")
18655 (source
18656 (origin
18657 (method url-fetch)
18658 (uri (cran-uri "aCRM" version))
18659 (sha256
18660 (base32
18661 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
18662 (properties `((upstream-name . "aCRM")))
18663 (build-system r-build-system)
18664 (propagated-inputs
18665 `(("r-ada" ,r-ada)
18666 ("r-dummies" ,r-dummies)
18667 ("r-kernelfactory" ,r-kernelfactory)
18668 ("r-randomforest" ,r-randomforest)))
18669 (home-page "https://cran.r-project.org/web/packages/aCRM/")
18670 (synopsis "Convenience functions for analytical customer relationship management")
18671 (description
18672 "This package provides convenience functions for data preparation and
18673 modeling often used in @dfn{analytical customer relationship
18674 management} (aCRM).")
18675 (license license:gpl2+)))
18676
18677 (define-public r-treeclust
18678 (package
18679 (name "r-treeclust")
18680 (version "1.1-7")
18681 (source
18682 (origin
18683 (method url-fetch)
18684 (uri (cran-uri "treeClust" version))
18685 (sha256
18686 (base32
18687 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
18688 (properties `((upstream-name . "treeClust")))
18689 (build-system r-build-system)
18690 (propagated-inputs
18691 `(("r-cluster" ,r-cluster)
18692 ("r-rpart" ,r-rpart)))
18693 (home-page "https://cran.r-project.org/web/packages/treeClust/")
18694 (synopsis "Cluster distances through trees")
18695 (description
18696 "This package provides tools to create a measure of inter-point
18697 dissimilarity useful for clustering mixed data, and, optionally, perform the
18698 clustering.")
18699 (license license:gpl2+)))
18700
18701 (define-public r-acrosstic
18702 (package
18703 (name "r-acrosstic")
18704 (version "1.0-3")
18705 (source
18706 (origin
18707 (method url-fetch)
18708 (uri (cran-uri "AcrossTic" version))
18709 (sha256
18710 (base32
18711 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
18712 (properties `((upstream-name . "AcrossTic")))
18713 (build-system r-build-system)
18714 (propagated-inputs
18715 `(("r-lpsolve" ,r-lpsolve)
18716 ("r-treeclust" ,r-treeclust)))
18717 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
18718 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
18719 (description
18720 "This is a package for constructing minimum-cost regular spanning
18721 subgraph as part of a non-parametric two-sample test for equality of
18722 distribution.")
18723 (license license:gpl2+)))
18724
18725 (define-public r-acrt
18726 (package
18727 (name "r-acrt")
18728 (version "1.0.1")
18729 (source
18730 (origin
18731 (method url-fetch)
18732 (uri (cran-uri "acrt" version))
18733 (sha256
18734 (base32
18735 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
18736 (properties `((upstream-name . "acrt")))
18737 (build-system r-build-system)
18738 (propagated-inputs
18739 `(("r-rcpp" ,r-rcpp)
18740 ("r-rcppeigen" ,r-rcppeigen)
18741 ("r-sandwich" ,r-sandwich)))
18742 (home-page "https://cran.r-project.org/web/packages/acrt/")
18743 (synopsis "Autocorrelation robust testing")
18744 (description
18745 "This package provides functions for testing affine hypotheses on the
18746 regression coefficient vector in regression models with autocorrelated
18747 errors.")
18748 (license license:gpl2)))
18749
18750 (define-public r-acs
18751 (package
18752 (name "r-acs")
18753 (version "2.1.4")
18754 (source
18755 (origin
18756 (method url-fetch)
18757 (uri (cran-uri "acs" version))
18758 (sha256
18759 (base32
18760 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
18761 (properties `((upstream-name . "acs")))
18762 (build-system r-build-system)
18763 (propagated-inputs
18764 `(("r-httr" ,r-httr)
18765 ("r-plyr" ,r-plyr)
18766 ("r-rcpp" ,r-rcpp)
18767 ("r-stringr" ,r-stringr)
18768 ("r-xml" ,r-xml)))
18769 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
18770 (synopsis "Work with data from the US Census")
18771 (description
18772 "This package provides a general toolkit for downloading, managing,
18773 analyzing, and presenting data from the
18774 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
18775 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
18776 American Community Survey (ACS). Confidence intervals provided with ACS data
18777 are converted to standard errors to be bundled with estimates in complex
18778 @code{acs} objects. The package provides new methods to conduct standard
18779 operations on @code{acs} objects and present/plot data in statistically
18780 appropriate ways.")
18781 (license license:gpl3)))
18782
18783 (define-public r-acss-data
18784 (package
18785 (name "r-acss-data")
18786 (version "1.0")
18787 (source
18788 (origin
18789 (method url-fetch)
18790 (uri (cran-uri "acss.data" version))
18791 (sha256
18792 (base32
18793 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
18794 (properties `((upstream-name . "acss.data")))
18795 (build-system r-build-system)
18796 (home-page "http://complexitycalculator.com/methodology.html")
18797 (synopsis "Data for algorithmic complexity of short strings")
18798 (description
18799 "This is a data only package providing the algorithmic complexity of
18800 short strings, computed using the coding theorem method. For a given set of
18801 symbols in a string, all possible or a large number of random samples of
18802 Turing machines with a given number of states (e.g., 5) and number of symbols
18803 corresponding to the number of symbols in the strings were simulated until
18804 they reached a halting state or failed to end. This package contains data on
18805 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
18806 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
18807 distribution of the halting states.")
18808 (license license:gpl2+)))
18809
18810 (define-public r-acss
18811 (package
18812 (name "r-acss")
18813 (version "0.2-5")
18814 (source
18815 (origin
18816 (method url-fetch)
18817 (uri (cran-uri "acss" version))
18818 (sha256
18819 (base32
18820 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
18821 (properties `((upstream-name . "acss")))
18822 (build-system r-build-system)
18823 (propagated-inputs
18824 `(("r-acss-data" ,r-acss-data)
18825 ("r-zoo" ,r-zoo)))
18826 (home-page "http://complexitycalculator.com/methodology.html")
18827 (synopsis "Algorithmic complexity for short strings")
18828 (description
18829 "The main purpose of this package is to provide the algorithmic
18830 complexity for short strings, an approximation of the Kolmogorov Complexity of
18831 a short string using the coding theorem method. While the database containing
18832 the complexity is provided in the data only package @code{acss.data}, this
18833 package provides functions accessing the data such as @code{prob_random}
18834 returning the posterior probability that a given string was produced by a
18835 random process. In addition, two traditional (but problematic) measures of
18836 complexity are also provided: entropy and change complexity.")
18837 (license license:gpl2+)))
18838
18839 (define-public r-acswr
18840 (package
18841 (name "r-acswr")
18842 (version "1.0")
18843 (source
18844 (origin
18845 (method url-fetch)
18846 (uri (cran-uri "ACSWR" version))
18847 (sha256
18848 (base32
18849 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
18850 (properties `((upstream-name . "ACSWR")))
18851 (build-system r-build-system)
18852 (propagated-inputs
18853 `(("r-mass" ,r-mass)))
18854 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
18855 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
18856 (description
18857 "This is a companion package for the book \"A Course in Statistics with
18858 R\" (ISBN 978-1-119-15272-9.)")
18859 (license license:gpl2)))
18860
18861 (define-public r-alabama
18862 (package
18863 (name "r-alabama")
18864 (version "2015.3-1")
18865 (source
18866 (origin
18867 (method url-fetch)
18868 (uri (cran-uri "alabama" version))
18869 (sha256
18870 (base32
18871 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
18872 (properties `((upstream-name . "alabama")))
18873 (build-system r-build-system)
18874 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
18875 (home-page "https://cran.r-project.org/web/packages/alabama/")
18876 (synopsis "Constrained nonlinear optimization")
18877 (description
18878 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
18879 Algorithm; it is used for optimizing smooth nonlinear objective functions with
18880 constraints. Linear or nonlinear equality and inequality constraints are
18881 allowed.")
18882 (license license:gpl2+)))
18883
18884 (define-public r-gdina
18885 (package
18886 (name "r-gdina")
18887 (version "2.8.0")
18888 (source
18889 (origin
18890 (method url-fetch)
18891 (uri (cran-uri "GDINA" version))
18892 (sha256
18893 (base32
18894 "0chxnhp37xfd78gafkgwqrmc0jf3pvpdyrkc438kl0l53fb7dld7"))))
18895 (properties `((upstream-name . "GDINA")))
18896 (build-system r-build-system)
18897 (propagated-inputs
18898 `(("r-alabama" ,r-alabama)
18899 ("r-ggplot2" ,r-ggplot2)
18900 ("r-mass" ,r-mass)
18901 ("r-nloptr" ,r-nloptr)
18902 ("r-numderiv" ,r-numderiv)
18903 ("r-rcpp" ,r-rcpp)
18904 ("r-rcpparmadillo" ,r-rcpparmadillo)
18905 ("r-rsolnp" ,r-rsolnp)
18906 ("r-shiny" ,r-shiny)
18907 ("r-shinydashboard" ,r-shinydashboard)))
18908 (native-inputs
18909 `(("r-knitr" ,r-knitr)))
18910 (home-page "https://github.com/Wenchao-Ma/GDINA")
18911 (synopsis "Generalized DINA model framework")
18912 (description
18913 "This package provides a set of psychometric tools for cognitive
18914 diagnosis modeling based on the generalized deterministic inputs, noisy and
18915 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
18916 and its extensions, including the sequential G-DINA model by Ma and de la
18917 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
18918 polytomous G-DINA model by Chen and de la Torre
18919 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18920 distribution can be independent, saturated, higher-order, loglinear smoothed
18921 or structured. Q-matrix validation, item and model fit statistics, model
18922 comparison at test and item level and differential item functioning can also
18923 be conducted. A graphical user interface is also provided.")
18924 (license license:gpl3)))
18925
18926 (define-public r-actcd
18927 (package
18928 (name "r-actcd")
18929 (version "1.2-0")
18930 (source
18931 (origin
18932 (method url-fetch)
18933 (uri (cran-uri "ACTCD" version))
18934 (sha256
18935 (base32
18936 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18937 (properties `((upstream-name . "ACTCD")))
18938 (build-system r-build-system)
18939 (propagated-inputs
18940 `(("r-gdina" ,r-gdina)
18941 ("r-r-methodss3" ,r-r-methodss3)))
18942 (native-inputs
18943 `(("gfortran" ,gfortran)))
18944 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18945 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18946 (description
18947 "This is a package supporting cluster analysis for cognitive diagnosis
18948 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18949 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18950 sum-scores, cluster analysis techniques can be used to classify examinees into
18951 latent classes based on their attribute patterns. In addition to the
18952 algorithms used to classify data, three labeling approaches are proposed to
18953 label clusters so that examinees' attribute profiles can be obtained.")
18954 (license license:gpl2+)))
18955
18956 (define-public r-ineq
18957 (package
18958 (name "r-ineq")
18959 (version "0.2-13")
18960 (source
18961 (origin
18962 (method url-fetch)
18963 (uri (cran-uri "ineq" version))
18964 (sha256
18965 (base32
18966 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18967 (properties `((upstream-name . "ineq")))
18968 (build-system r-build-system)
18969 (home-page "https://cran.r-project.org/web/packages/ineq/")
18970 (synopsis "Measuring inequality, concentration, and poverty")
18971 (description
18972 "This package provides tools for measuring inequality, concentration, and
18973 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18974 ;; Either of these two versions.
18975 (license (list license:gpl2 license:gpl3))))
18976
18977 (define-public r-actfrag
18978 (package
18979 (name "r-actfrag")
18980 (version "0.1.1")
18981 (source
18982 (origin
18983 (method url-fetch)
18984 (uri (cran-uri "ActFrag" version))
18985 (sha256
18986 (base32
18987 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18988 (properties `((upstream-name . "ActFrag")))
18989 (build-system r-build-system)
18990 (propagated-inputs
18991 `(("r-accelerometry" ,r-accelerometry)
18992 ("r-dplyr" ,r-dplyr)
18993 ("r-ineq" ,r-ineq)
18994 ("r-survival" ,r-survival)
18995 ("r-tidyr" ,r-tidyr)))
18996 (home-page "https://github.com/junruidi/ActFrag")
18997 (synopsis "Activity fragmentation metrics extraction")
18998 (description
18999 "This package provides functions to extract commonly used fragmentation
19000 metrics to quantify time accumulation strategies based on minute level
19001 actigraphy-measured activity counts data.")
19002 (license license:gpl3)))
19003
19004 (define-public r-fda
19005 (package
19006 (name "r-fda")
19007 (version "5.1.5.1")
19008 (source
19009 (origin
19010 (method url-fetch)
19011 (uri (cran-uri "fda" version))
19012 (sha256
19013 (base32
19014 "0zi001cw5536x6rgr4l0skva7fk53663zf6ggnsa8znml090sihm"))))
19015 (properties `((upstream-name . "fda")))
19016 (build-system r-build-system)
19017 (propagated-inputs
19018 `(("r-matrix" ,r-matrix)))
19019 (home-page "https://www.functionaldata.org")
19020 (synopsis "Functional data analysis")
19021 (description
19022 "These functions were developed to support functional data analysis as
19023 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
19024 Analysis. The package includes data sets and script files working many
19025 examples.")
19026 (license license:gpl2+)))
19027
19028 (define-public r-actigraphy
19029 (package
19030 (name "r-actigraphy")
19031 (version "1.4.0")
19032 (source
19033 (origin
19034 (method url-fetch)
19035 (uri (cran-uri "Actigraphy" version))
19036 (sha256
19037 (base32
19038 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
19039 (properties `((upstream-name . "Actigraphy")))
19040 (build-system r-build-system)
19041 (propagated-inputs
19042 `(("r-fda" ,r-fda)))
19043 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
19044 (synopsis "Actigraphy data analysis")
19045 (description
19046 "This package provides tools for functional linear modeling and analysis
19047 of actigraphy data.")
19048 (license license:asl2.0)))
19049
19050 (define-public r-activedriver
19051 (package
19052 (name "r-activedriver")
19053 (version "1.0.0")
19054 (source
19055 (origin
19056 (method url-fetch)
19057 (uri (cran-uri "ActiveDriver" version))
19058 (sha256
19059 (base32
19060 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
19061 (properties `((upstream-name . "ActiveDriver")))
19062 (build-system r-build-system)
19063 (propagated-inputs
19064 `(("r-mass" ,r-mass)))
19065 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
19066 (synopsis "Tools for finding cancer driver proteins")
19067 (description
19068 "This package provides a mutation analysis tool that discovers cancer
19069 driver genes with frequent mutations in protein signalling sites such as
19070 post-translational modifications (phosphorylation, ubiquitination, etc). The
19071 Poisson generalized linear regression model identifies genes where cancer
19072 mutations in signalling sites are more frequent than expected from the
19073 sequence of the entire gene. Integration of mutations with signalling
19074 information helps find new driver genes and propose candidate mechanisms to
19075 known drivers.")
19076 (license license:gpl2+)))
19077
19078 (define-public r-activitycounts
19079 (package
19080 (name "r-activitycounts")
19081 (version "0.1.2")
19082 (source
19083 (origin
19084 (method url-fetch)
19085 (uri (cran-uri "activityCounts" version))
19086 (sha256
19087 (base32
19088 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
19089 (properties
19090 `((upstream-name . "activityCounts")))
19091 (build-system r-build-system)
19092 (propagated-inputs
19093 `(("r-lubridate" ,r-lubridate)
19094 ("r-magrittr" ,r-magrittr)
19095 ("r-seewave" ,r-seewave)
19096 ("r-signal" ,r-signal)
19097 ("r-tibble" ,r-tibble)))
19098 (home-page "https://github.com/walkabillylab/activityCounts")
19099 (synopsis "Generate ActiLife counts")
19100 (description
19101 "ActiLife generates activity counts from data collected by Actigraph
19102 accelerometers. Actigraph is one of the most common research-grade
19103 accelerometers. There is considerable research validating and developing
19104 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
19105 counts are proprietary and difficult to implement if researchers use different
19106 accelerometer brands. The code creates ActiLife counts from raw acceleration
19107 data for different accelerometer brands.")
19108 (license license:gpl3)))
19109
19110 (define-public r-activityindex
19111 (package
19112 (name "r-activityindex")
19113 (version "0.3.6")
19114 (source
19115 (origin
19116 (method url-fetch)
19117 (uri (cran-uri "ActivityIndex" version))
19118 (sha256
19119 (base32
19120 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
19121 (properties `((upstream-name . "ActivityIndex")))
19122 (build-system r-build-system)
19123 (propagated-inputs
19124 `(("r-data-table" ,r-data-table)
19125 ("r-matrixstats" ,r-matrixstats)
19126 ("r-r-utils" ,r-r-utils)))
19127 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
19128 (synopsis "Activity Index calculation using raw accelerometry data")
19129 (description
19130 "This is a package to read raw accelerometry from GT3X+ accelerometry
19131 data and plain table data to calculate the Activity Index from Bai et
19132 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
19133 (license license:gpl3)))
19134
19135 (define-public r-activpal
19136 (package
19137 (name "r-activpal")
19138 (version "0.1.3")
19139 (source
19140 (origin
19141 (method url-fetch)
19142 (uri (cran-uri "activPAL" version))
19143 (sha256
19144 (base32
19145 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
19146 (properties `((upstream-name . "activPAL")))
19147 (build-system r-build-system)
19148 (propagated-inputs
19149 `(("r-devtools" ,r-devtools)
19150 ("r-dplyr" ,r-dplyr)
19151 ("r-ggplot2" ,r-ggplot2)
19152 ("r-lubridate" ,r-lubridate)
19153 ("r-magrittr" ,r-magrittr)
19154 ("r-tidyr" ,r-tidyr)))
19155 (home-page "https://cran.r-project.org/web/packages/activPAL")
19156 (synopsis "Processing and chart generation from activPAL events files")
19157 (description
19158 "This package contains functions to generate pre-defined summary
19159 statistics from activPAL events files. The package also contains functions to
19160 produce informative graphics that visualize physical activity behaviour and
19161 trends. This includes generating graphs that align physical activity
19162 behaviour with additional time based observations described by other data
19163 sets, such as sleep diaries and continuous glucose monitoring data.")
19164 (license license:gpl3)))
19165
19166 (define-public r-activpalprocessing
19167 (package
19168 (name "r-activpalprocessing")
19169 (version "1.0.2")
19170 (source
19171 (origin
19172 (method url-fetch)
19173 (uri (cran-uri "activpalProcessing" version))
19174 (sha256
19175 (base32
19176 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
19177 (properties
19178 `((upstream-name . "activpalProcessing")))
19179 (build-system r-build-system)
19180 (propagated-inputs
19181 `(("r-chron" ,r-chron)))
19182 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
19183 (synopsis "Process activPAL events files")
19184 (description
19185 "This package performs estimation of physical activity and sedentary
19186 behavior variables from activPAL events files.")
19187 ;; Either version of the GPL.
19188 (license (list license:gpl2 license:gpl3))))
19189
19190 (define-public r-actogrammr
19191 (package
19192 (name "r-actogrammr")
19193 (version "0.2.3")
19194 (source
19195 (origin
19196 (method url-fetch)
19197 (uri (cran-uri "actogrammr" version))
19198 (sha256
19199 (base32
19200 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
19201 (properties `((upstream-name . "actogrammr")))
19202 (build-system r-build-system)
19203 (propagated-inputs
19204 `(("r-dplyr" ,r-dplyr)
19205 ("r-ggplot2" ,r-ggplot2)
19206 ("r-lubridate" ,r-lubridate)
19207 ("r-readr" ,r-readr)
19208 ("r-tidyr" ,r-tidyr)))
19209 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
19210 (synopsis "Read in activity data and plot actograms")
19211 (description
19212 "Read in activity measurements from standard file formats used by
19213 circadian rhythm researchers, currently only ClockLab format, and process and
19214 plot the data. The central type of plot is the actogram, as first described
19215 in \"Activity and distribution of certain wild mice in relation to biotic
19216 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
19217 (license license:gpl3)))
19218
19219 (define-public r-expint
19220 (package
19221 (name "r-expint")
19222 (version "0.1-6")
19223 (source
19224 (origin
19225 (method url-fetch)
19226 (uri (cran-uri "expint" version))
19227 (sha256
19228 (base32
19229 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
19230 (properties `((upstream-name . "expint")))
19231 (build-system r-build-system)
19232 (home-page "https://gitlab.com/vigou3/expint")
19233 (synopsis "Exponential integral and incomplete Gamma function")
19234 (description
19235 "This package provides the exponential integrals @code{E_1(x)},
19236 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
19237 function @code{G(a, x)} defined for negative values of its first argument.
19238 The package also gives easy access to the underlying C routines through an
19239 API; see the package vignette for details.")
19240 (license license:gpl2+)))
19241
19242 (define-public r-actuar
19243 (package
19244 (name "r-actuar")
19245 (version "3.0-0")
19246 (source
19247 (origin
19248 (method url-fetch)
19249 (uri (cran-uri "actuar" version))
19250 (sha256
19251 (base32
19252 "0dkp1sczldzy7kj70qvh1q59jhsq1brjybmxdz43jnx63y45llpz"))))
19253 (properties `((upstream-name . "actuar")))
19254 (build-system r-build-system)
19255 (propagated-inputs `(("r-expint" ,r-expint)))
19256 (home-page "https://gitlab.com/vigou3/actuar")
19257 (synopsis "Actuarial functions and heavy tailed distributions")
19258 (description
19259 "This package provides functions and data sets for actuarial science:
19260 modeling of loss distributions; risk theory and ruin theory; simulation of
19261 compound models, discrete mixtures and compound hierarchical models;
19262 credibility theory. It boasts support for many additional probability
19263 distributions to model insurance loss amounts and loss frequency: 19
19264 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
19265 distribution; zero-truncated and zero-modified extensions of the standard
19266 discrete distributions. It also supports phase-type distributions commonly
19267 used to compute ruin probabilities.")
19268 (license license:gpl2+)))
19269
19270 (define-public r-bmp
19271 (package
19272 (name "r-bmp")
19273 (version "0.3")
19274 (source
19275 (origin
19276 (method url-fetch)
19277 (uri (cran-uri "bmp" version))
19278 (sha256
19279 (base32
19280 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
19281 (properties `((upstream-name . "bmp")))
19282 (build-system r-build-system)
19283 (home-page "https://cran.r-project.org/web/packages/bmp/")
19284 (synopsis "Read Bitmap (BMP) images")
19285 (description
19286 "This package provides pure R tools to read BMP format images. It is
19287 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
19288 (license license:gpl2+)))
19289
19290 (define-public r-readbitmap
19291 (package
19292 (name "r-readbitmap")
19293 (version "0.1.5")
19294 (source
19295 (origin
19296 (method url-fetch)
19297 (uri (cran-uri "readbitmap" version))
19298 (sha256
19299 (base32
19300 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
19301 (properties `((upstream-name . "readbitmap")))
19302 (build-system r-build-system)
19303 (inputs
19304 `(("libjpeg" ,libjpeg-turbo)
19305 ("libpng" ,libpng)))
19306 (propagated-inputs
19307 `(("r-bmp" ,r-bmp)
19308 ("r-jpeg" ,r-jpeg)
19309 ("r-png" ,r-png)
19310 ("r-tiff" ,r-tiff)))
19311 (home-page "https://github.com/jefferis/readbitmap")
19312 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
19313 (description
19314 "This package provides tools to identify and read BMP, JPEG, PNG, and
19315 TIFF format bitmap images. Identification defaults to the use of the magic
19316 number embedded in the file rather than the file extension.")
19317 (license license:gpl2+)))
19318
19319 (define-public r-imager
19320 (package
19321 (name "r-imager")
19322 (version "0.42.3")
19323 (source
19324 (origin
19325 (method url-fetch)
19326 (uri (cran-uri "imager" version))
19327 (sha256
19328 (base32
19329 "1wxvbv803222gjrf1ys6a349xlnmmdw3kqgi93piq9gq7lahihvg"))))
19330 (properties `((upstream-name . "imager")))
19331 (build-system r-build-system)
19332 (inputs
19333 `(("fftw" ,fftw)
19334 ("libtiff" ,libtiff)
19335 ("libx11" ,libx11)
19336 ("zlib" ,zlib)))
19337 (propagated-inputs
19338 `(("r-downloader" ,r-downloader)
19339 ("r-igraph" ,r-igraph)
19340 ("r-jpeg" ,r-jpeg)
19341 ("r-magrittr" ,r-magrittr)
19342 ("r-png" ,r-png)
19343 ("r-purrr" ,r-purrr)
19344 ("r-rcpp" ,r-rcpp)
19345 ("r-readbitmap" ,r-readbitmap)
19346 ("r-stringr" ,r-stringr)))
19347 (native-inputs
19348 `(("pkg-config" ,pkg-config)
19349 ("r-knitr" ,r-knitr)))
19350 (home-page "https://dahtah.github.io/imager/")
19351 (synopsis "Image processing library")
19352 (description
19353 "This is a package for fast image processing for images in up to 4
19354 dimensions (two spatial dimensions, one time/depth dimension, one color
19355 dimension). It provides most traditional image processing tools (filtering,
19356 morphology, transformations, etc.) as well as various functions for easily
19357 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
19358 simple, modern C++ library for image processing.")
19359 (license license:lgpl3)))
19360
19361 (define-public r-acuityview
19362 (package
19363 (name "r-acuityview")
19364 (version "0.1")
19365 (source
19366 (origin
19367 (method url-fetch)
19368 (uri (cran-uri "AcuityView" version))
19369 (sha256
19370 (base32
19371 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
19372 (properties `((upstream-name . "AcuityView")))
19373 (build-system r-build-system)
19374 (propagated-inputs
19375 `(("r-fftwtools" ,r-fftwtools)
19376 ("r-imager" ,r-imager)
19377 ("r-plotrix" ,r-plotrix)))
19378 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
19379 (synopsis "Display scenes as seen by an animal with less acute vision")
19380 (description
19381 "This package provides a simple method for representing a visual scene as
19382 it may be seen by an animal with less acute vision.")
19383 (license license:gpl2+)))
19384
19385 (define-public r-caret
19386 (package
19387 (name "r-caret")
19388 (version "6.0-86")
19389 (source
19390 (origin
19391 (method url-fetch)
19392 (uri (cran-uri "caret" version))
19393 (sha256
19394 (base32
19395 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
19396 (build-system r-build-system)
19397 (propagated-inputs
19398 `(("r-foreach" ,r-foreach)
19399 ("r-ggplot2" ,r-ggplot2)
19400 ("r-lattice" ,r-lattice)
19401 ("r-modelmetrics" ,r-modelmetrics)
19402 ("r-nlme" ,r-nlme)
19403 ("r-plyr" ,r-plyr)
19404 ("r-proc" ,r-proc)
19405 ("r-recipes" ,r-recipes)
19406 ("r-reshape2" ,r-reshape2)
19407 ("r-withr" ,r-withr)))
19408 (native-inputs
19409 `(("r-knitr" ,r-knitr)))
19410 (home-page "https://github.com/topepo/caret")
19411 (synopsis "Classification and regression training")
19412 (description
19413 "This package provides miscellaneous functions for training and plotting
19414 classification and regression models.")
19415 (license license:gpl2+)))
19416
19417 (define-public r-adabag
19418 (package
19419 (name "r-adabag")
19420 (version "4.2")
19421 (source
19422 (origin
19423 (method url-fetch)
19424 (uri (cran-uri "adabag" version))
19425 (sha256
19426 (base32
19427 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
19428 (properties `((upstream-name . "adabag")))
19429 (build-system r-build-system)
19430 (propagated-inputs
19431 `(("r-caret" ,r-caret)
19432 ("r-doparallel" ,r-doparallel)
19433 ("r-foreach" ,r-foreach)
19434 ("r-rpart" ,r-rpart)))
19435 (home-page "https://cran.r-project.org/web/packages/adabag/")
19436 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
19437 (description
19438 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
19439 Breiman's Bagging algorithm using classification trees as individual
19440 classifiers. Once these classifiers have been trained, they can be used to
19441 predict on new data. Also, cross validation estimation of the error can be
19442 done.")
19443 (license license:gpl2+)))
19444
19445 (define-public r-adagio
19446 (package
19447 (name "r-adagio")
19448 (version "0.7.1")
19449 (source
19450 (origin
19451 (method url-fetch)
19452 (uri (cran-uri "adagio" version))
19453 (sha256
19454 (base32
19455 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
19456 (properties `((upstream-name . "adagio")))
19457 (build-system r-build-system)
19458 (native-inputs `(("gfortran" ,gfortran)))
19459 (home-page "https://cran.r-project.org/web/packages/adagio/")
19460 (synopsis "Discrete and global optimization routines")
19461 (description
19462 "This package provides methods and algorithms for discrete optimization,
19463 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
19464 Hooke-Jeeves minimization, and some (evolutionary) global optimization
19465 functions.")
19466 (license license:gpl3+)))
19467
19468 (define-public r-univoutl
19469 (package
19470 (name "r-univoutl")
19471 (version "0.2")
19472 (source
19473 (origin
19474 (method url-fetch)
19475 (uri (cran-uri "univOutl" version))
19476 (sha256
19477 (base32
19478 "0rlc3w7cx2hfxacpjs9kmjzv5p8v9wxnlpxi3rh276wiy5zdr91v"))))
19479 (properties `((upstream-name . "univOutl")))
19480 (build-system r-build-system)
19481 (propagated-inputs
19482 `(("r-hmisc" ,r-hmisc)
19483 ("r-robustbase" ,r-robustbase)))
19484 (home-page "https://github.com/marcellodo/univOutl")
19485 (synopsis "Detection of univariate outliers")
19486 (description
19487 "This package provides well-known outlier detection techniques in the
19488 univariate case. Methods to deal with skewed distribution are included too.
19489 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
19490 historical data is implemented as well. When available, survey weights can be
19491 used in outliers detection.")
19492 (license license:gpl2+)))
19493
19494 (define-public r-tolerance
19495 (package
19496 (name "r-tolerance")
19497 (version "2.0.0")
19498 (source
19499 (origin
19500 (method url-fetch)
19501 (uri (cran-uri "tolerance" version))
19502 (sha256
19503 (base32
19504 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
19505 (properties `((upstream-name . "tolerance")))
19506 (build-system r-build-system)
19507 (propagated-inputs
19508 `(("r-mass" ,r-mass)
19509 ("r-rgl" ,r-rgl)))
19510 (home-page "https://cran.r-project.org/web/packages/tolerance/")
19511 (synopsis "Statistical tolerance intervals and regions")
19512 (description
19513 "This package provides functions for estimating tolerance
19514 limits (intervals) for various univariate distributions (binomial, Cauchy,
19515 discrete Pareto, exponential, two-parameter exponential, extreme value,
19516 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
19517 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
19518 Bayesian normal tolerance limits, multivariate normal tolerance regions,
19519 nonparametric tolerance intervals, tolerance bands for regression
19520 settings (linear regression, nonlinear regression, nonparametric regression,
19521 and multivariate regression), and analysis of variance tolerance intervals.
19522 Visualizations are also available for most of these settings.")
19523 (license license:gpl2+)))
19524
19525 (define-public r-additivitytests
19526 (package
19527 (name "r-additivitytests")
19528 (version "1.1-4")
19529 (source
19530 (origin
19531 (method url-fetch)
19532 (uri (cran-uri "additivityTests" version))
19533 (sha256
19534 (base32
19535 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
19536 (properties
19537 `((upstream-name . "additivityTests")))
19538 (build-system r-build-system)
19539 (home-page "https://github.com/simecek/additivityTests")
19540 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
19541 (description
19542 "This package provides an implementation of the Tukey, Mandel,
19543 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
19544 (license license:gpl3)))
19545
19546 (define-public r-flexclust
19547 (package
19548 (name "r-flexclust")
19549 (version "1.4-0")
19550 (source
19551 (origin
19552 (method url-fetch)
19553 (uri (cran-uri "flexclust" version))
19554 (sha256
19555 (base32
19556 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
19557 (properties `((upstream-name . "flexclust")))
19558 (build-system r-build-system)
19559 (propagated-inputs
19560 `(("r-class" ,r-class)
19561 ("r-lattice" ,r-lattice)
19562 ("r-modeltools" ,r-modeltools)))
19563 (home-page "https://cran.r-project.org/web/packages/flexclust/")
19564 (synopsis "Flexible cluster algorithms")
19565 (description
19566 "The main function @code{kcca} implements a general framework for
19567 k-centroids cluster analysis supporting arbitrary distance measures and
19568 centroid computation. Further cluster methods include hard competitive
19569 learning, neural gas, and QT clustering. There are numerous visualization
19570 methods for cluster results (neighborhood graphs, convex cluster hulls,
19571 barcharts of centroids, ...), and bootstrap methods for the analysis of
19572 cluster stability.")
19573 (license license:gpl2)))
19574
19575 (define-public r-biclust
19576 (package
19577 (name "r-biclust")
19578 (version "2.0.2")
19579 (source
19580 (origin
19581 (method url-fetch)
19582 (uri (cran-uri "biclust" version))
19583 (sha256
19584 (base32
19585 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
19586 (properties `((upstream-name . "biclust")))
19587 (build-system r-build-system)
19588 (propagated-inputs
19589 `(("r-additivitytests" ,r-additivitytests)
19590 ("r-colorspace" ,r-colorspace)
19591 ("r-flexclust" ,r-flexclust)
19592 ("r-ggplot2" ,r-ggplot2)
19593 ("r-lattice" ,r-lattice)
19594 ("r-mass" ,r-mass)
19595 ("r-tidyr" ,r-tidyr)))
19596 (home-page "https://cran.r-project.org/web/packages/biclust/")
19597 (synopsis "BiCluster algorithms")
19598 (description
19599 "The main function @code{biclust()} provides several algorithms to find
19600 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
19601 In addition, the package provides methods for data
19602 preprocessing (normalization and discretization), visualization, and
19603 validation of bicluster solutions.")
19604 (license license:gpl3)))
19605
19606 (define-public r-icge
19607 (package
19608 (name "r-icge")
19609 (version "0.3")
19610 (source
19611 (origin
19612 (method url-fetch)
19613 (uri (cran-uri "ICGE" version))
19614 (sha256
19615 (base32
19616 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
19617 (properties `((upstream-name . "ICGE")))
19618 (build-system r-build-system)
19619 (propagated-inputs
19620 `(("r-cluster" ,r-cluster)
19621 ("r-mass" ,r-mass)))
19622 (home-page "https://cran.r-project.org/web/packages/ICGE/")
19623 (synopsis "Cluster estimation and identification of atypical units")
19624 (description
19625 "ICGE is a package that helps to estimate the number of real clusters in
19626 data as well as to identify atypical units. The underlying methods are based
19627 on distances rather than on unit x variables.")
19628 (license license:gpl2+)))
19629
19630 (define-public r-depth
19631 (package
19632 (name "r-depth")
19633 (version "2.1-1.1")
19634 (source
19635 (origin
19636 (method url-fetch)
19637 (uri (cran-uri "depth" version))
19638 (sha256
19639 (base32
19640 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
19641 (properties `((upstream-name . "depth")))
19642 (build-system r-build-system)
19643 (propagated-inputs
19644 `(("r-abind" ,r-abind)
19645 ("r-circular" ,r-circular)
19646 ("r-rgl" ,r-rgl)))
19647 (native-inputs
19648 `(("gfortran" ,gfortran)))
19649 (home-page "https://cran.r-project.org/web/packages/depth/")
19650 (synopsis "Nonparametric depth functions for multivariate analysis")
19651 (description
19652 "This package provides tools for depth functions methodology applied to
19653 multivariate analysis. Besides allowing calculation of depth values and
19654 depth-based location estimators, the package includes functions or drawing
19655 contour plots and perspective plots of depth functions. Euclidian and
19656 spherical depths are supported.")
19657 (license license:gpl2)))
19658
19659 (define-public r-archetypes
19660 (package
19661 (name "r-archetypes")
19662 (version "2.2-0.1")
19663 (source
19664 (origin
19665 (method url-fetch)
19666 (uri (cran-uri "archetypes" version))
19667 (sha256
19668 (base32
19669 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
19670 (properties `((upstream-name . "archetypes")))
19671 (build-system r-build-system)
19672 (propagated-inputs
19673 `(("r-modeltools" ,r-modeltools)
19674 ("r-nnls" ,r-nnls)))
19675 (home-page "https://cran.r-project.org/web/packages/archetypes")
19676 (synopsis "Archetypal analysis")
19677 (description
19678 "The main function @code{archetypes} implements a framework for
19679 archetypal analysis supporting arbitrary problem solving mechanisms for the
19680 different conceptual parts of the algorithm.")
19681 (license license:gpl2+)))
19682
19683 (define-public r-shapes
19684 (package
19685 (name "r-shapes")
19686 (version "1.2.5")
19687 (source
19688 (origin
19689 (method url-fetch)
19690 (uri (cran-uri "shapes" version))
19691 (sha256
19692 (base32
19693 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
19694 (properties `((upstream-name . "shapes")))
19695 (build-system r-build-system)
19696 (propagated-inputs
19697 `(("r-mass" ,r-mass)
19698 ("r-minpack-lm" ,r-minpack-lm)
19699 ("r-rgl" ,r-rgl)
19700 ("r-scatterplot3d" ,r-scatterplot3d)))
19701 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
19702 (synopsis "Statistical shape analysis")
19703 (description
19704 "This package provides routines for the statistical analysis of landmark
19705 shapes, including Procrustes analysis, graphical displays, principal
19706 components analysis, permutation and bootstrap tests, thin-plate spline
19707 transformation grids and comparing covariance matrices. See Dryden, I.L. and
19708 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
19709 Edition), John Wiley and Sons.")
19710 (license license:gpl2)))
19711
19712 (define-public r-anthropometry
19713 (package
19714 (name "r-anthropometry")
19715 (version "1.14")
19716 (source
19717 (origin
19718 (method url-fetch)
19719 (uri (cran-uri "Anthropometry" version))
19720 (sha256
19721 (base32
19722 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
19723 (properties `((upstream-name . "Anthropometry")))
19724 (build-system r-build-system)
19725 (propagated-inputs
19726 `(("r-archetypes" ,r-archetypes)
19727 ("r-biclust" ,r-biclust)
19728 ("r-cluster" ,r-cluster)
19729 ("r-depth" ,r-depth)
19730 ("r-fnn" ,r-fnn)
19731 ("r-icge" ,r-icge)
19732 ("r-nnls" ,r-nnls)
19733 ("r-rgl" ,r-rgl)
19734 ("r-shapes" ,r-shapes)))
19735 (native-inputs
19736 `(("r-knitr" ,r-knitr)))
19737 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
19738 (synopsis "Statistical methods for anthropometric data")
19739 (description
19740 "This package provides statistical methods especially developed to
19741 analyze anthropometric data. These methods are aimed at providing effective
19742 solutions to some commons problems related to Ergonomics and Anthropometry.
19743 They are based on clustering, the statistical concept of data depth,
19744 statistical shape analysis and archetypal analysis.")
19745 (license license:gpl2+)))
19746
19747 (define-public r-adamethods
19748 (package
19749 (name "r-adamethods")
19750 (version "1.2.1")
19751 (source
19752 (origin
19753 (method url-fetch)
19754 (uri (cran-uri "adamethods" version))
19755 (sha256
19756 (base32
19757 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
19758 (properties `((upstream-name . "adamethods")))
19759 (build-system r-build-system)
19760 (propagated-inputs
19761 `(("r-anthropometry" ,r-anthropometry)
19762 ("r-archetypes" ,r-archetypes)
19763 ("r-fnn" ,r-fnn)
19764 ("r-foreach" ,r-foreach)
19765 ("r-nnls" ,r-nnls)
19766 ("r-tolerance" ,r-tolerance)
19767 ("r-univoutl" ,r-univoutl)))
19768 (home-page "https://cran.r-project.org/web/packages/adamethods/")
19769 (synopsis "Archetypoid algorithms and anomaly detection")
19770 (description
19771 "This package is a collection of several algorithms to obtain
19772 archetypoids with small and large databases and with both classical
19773 multivariate data and functional data (univariate and multivariate). Some of
19774 these algorithms also allow to detect anomalies (outliers).")
19775 (license license:gpl2+)))
19776
19777 (define-public r-idpmisc
19778 (package
19779 (name "r-idpmisc")
19780 (version "1.1.20")
19781 (source
19782 (origin
19783 (method url-fetch)
19784 (uri (cran-uri "IDPmisc" version))
19785 (sha256
19786 (base32
19787 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
19788 (properties `((upstream-name . "IDPmisc")))
19789 (build-system r-build-system)
19790 (propagated-inputs
19791 `(("r-lattice" ,r-lattice)))
19792 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
19793 (synopsis "Functions for data analyses and visualization")
19794 (description
19795 "This package provides different high-level graphics functions for
19796 displaying large datasets, displaying circular data in a very flexible way,
19797 finding local maxima, brewing color ramps, drawing nice arrows, zooming
19798 2D-plots, creating figures with differently colored margin and plot region.
19799 In addition, the package contains auxiliary functions for data manipulation
19800 like omitting observations with irregular values or selecting data by logical
19801 vectors, which include NAs. Other functions are especially useful in
19802 spectroscopy and analyses of environmental data: robust baseline fitting,
19803 finding peaks in spectra, converting humidity measures.")
19804 (license license:gpl3+)))
19805
19806 (define-public r-qqman
19807 (package
19808 (name "r-qqman")
19809 (version "0.1.4")
19810 (source
19811 (origin
19812 (method url-fetch)
19813 (uri (cran-uri "qqman" version))
19814 (sha256
19815 (base32
19816 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
19817 (properties `((upstream-name . "qqman")))
19818 (build-system r-build-system)
19819 (propagated-inputs
19820 `(("r-calibrate" ,r-calibrate)))
19821 (home-page "https://cran.r-project.org/web/packages/qqman/")
19822 (synopsis "Q-Q and Manhattan plots for GWAS data")
19823 (description
19824 "This package allows you to create Q-Q and Manhattan plots for GWAS data
19825 from PLINK results.")
19826 (license license:gpl3)))
19827
19828 (define-public r-ggplot-multistats
19829 (package
19830 (name "r-ggplot-multistats")
19831 (version "1.0.0")
19832 (source
19833 (origin
19834 (method url-fetch)
19835 (uri (cran-uri "ggplot.multistats" version))
19836 (sha256
19837 (base32
19838 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
19839 (properties
19840 `((upstream-name . "ggplot.multistats")))
19841 (build-system r-build-system)
19842 (propagated-inputs
19843 `(("r-ggplot2" ,r-ggplot2)
19844 ("r-hexbin" ,r-hexbin)
19845 ("r-rlang" ,r-rlang)
19846 ("r-scales" ,r-scales)))
19847 (home-page "https://github.com/flying-sheep/ggplot.multistats")
19848 (synopsis "Multiple summary statistics for binned stats/geometries")
19849 (description
19850 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
19851 which functions similar to its singular form, but allows the use of multiple
19852 statistics per bin. Those statistics can be mapped to multiple bin
19853 aesthetics.")
19854 (license license:gpl3)))
19855
19856 (define-public r-knn-covertree
19857 (package
19858 (name "r-knn-covertree")
19859 (version "1.0")
19860 (source
19861 (origin
19862 (method url-fetch)
19863 (uri (cran-uri "knn.covertree" version))
19864 (sha256
19865 (base32
19866 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
19867 (properties `((upstream-name . "knn.covertree")))
19868 (build-system r-build-system)
19869 (propagated-inputs
19870 `(("r-matrix" ,r-matrix)
19871 ("r-rcpp" ,r-rcpp)
19872 ("r-rcppeigen" ,r-rcppeigen)))
19873 (home-page "https://github.com/flying-sheep/knn.covertree")
19874 (synopsis "Accurate kNN Implementation with multiple distance measures")
19875 (description
19876 "Similarly to the FNN package, this package allows calculation of the k
19877 nearest neighbors (kNN) of a data matrix. The implementation is based on
19878 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
19879 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
19880 (license license:agpl3+)))
19881
19882 (define-public r-poibin
19883 (package
19884 (name "r-poibin")
19885 (version "1.5")
19886 (source
19887 (origin
19888 (method url-fetch)
19889 (uri (cran-uri "poibin" version))
19890 (sha256
19891 (base32
19892 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
19893 (properties `((upstream-name . "poibin")))
19894 (build-system r-build-system)
19895 (home-page "https://cran.r-project.org/web/packages/poibin/")
19896 (synopsis "Poisson binomial distribution")
19897 (description
19898 "This package provides an implementation of both the exact and
19899 approximation methods for computing the @dfn{cumulative distribution
19900 function} (CDF) of the Poisson binomial distribution. It also provides the
19901 @dfn{probability mass function} (PMF), quantile function, and random number
19902 generation for the Poisson binomial distribution.")
19903 (license license:gpl2)))
19904
19905 (define-public r-diagram
19906 (package
19907 (name "r-diagram")
19908 (version "1.6.4")
19909 (source
19910 (origin
19911 (method url-fetch)
19912 (uri (cran-uri "diagram" version))
19913 (sha256
19914 (base32
19915 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
19916 (properties `((upstream-name . "diagram")))
19917 (build-system r-build-system)
19918 (propagated-inputs
19919 `(("r-shape" ,r-shape)))
19920 (home-page "https://cran.r-project.org/web/packages/diagram/")
19921 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
19922 (description
19923 "This package provides tools to visualize simple graphs (networks) based
19924 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19925 electrical networks, etc. It also includes supporting material for the book
19926 \"A practical guide to ecological modelling - using R as a simulation
19927 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19928 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19929 Francesca Mazzia (2012).")
19930 (license license:gpl2+)))
19931
19932 (define-public r-lim
19933 (package
19934 (name "r-lim")
19935 (version "1.4.6")
19936 (source
19937 (origin
19938 (method url-fetch)
19939 (uri (cran-uri "LIM" version))
19940 (sha256
19941 (base32
19942 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19943 (properties `((upstream-name . "LIM")))
19944 (build-system r-build-system)
19945 (propagated-inputs
19946 `(("r-diagram" ,r-diagram)
19947 ("r-limsolve" ,r-limsolve)))
19948 (home-page "https://cran.r-project.org/web/packages/LIM/")
19949 (synopsis "Linear inverse model examples and solution methods")
19950 (description
19951 "This package provides functions that read and solve linear inverse
19952 problems (food web problems, linear programming problems).")
19953 (license license:gpl2+)))
19954
19955 (define-public r-shinycssloaders
19956 (package
19957 (name "r-shinycssloaders")
19958 (version "1.0.0")
19959 (source
19960 (origin
19961 (method url-fetch)
19962 (uri (cran-uri "shinycssloaders" version))
19963 (sha256
19964 (base32
19965 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
19966 (properties
19967 `((upstream-name . "shinycssloaders")))
19968 (build-system r-build-system)
19969 (propagated-inputs
19970 `(("r-digest" ,r-digest)
19971 ("r-glue" ,r-glue)
19972 ("r-shiny" ,r-shiny)))
19973 (home-page "https://github.com/andrewsali/shinycssloaders")
19974 (synopsis "Add CSS loading animations to Shiny outputs")
19975 (description
19976 "This package provides tools to create a lightweight Shiny wrapper for
19977 the css-loaders created by Luke Hass
19978 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19979 automatically show a loader when the output is (re)calculating.")
19980 (license license:gpl3)))
19981
19982 (define-public r-rsvg
19983 (package
19984 (name "r-rsvg")
19985 (version "2.1")
19986 (source
19987 (origin
19988 (method url-fetch)
19989 (uri (cran-uri "rsvg" version))
19990 (sha256
19991 (base32
19992 "0bxnwa9sbzx6jlxrzh3ymjq81vkxil2qx7kk7wp13a0cql7dhxcn"))))
19993 (properties `((upstream-name . "rsvg")))
19994 (build-system r-build-system)
19995 (inputs
19996 `(("librsvg" ,librsvg)
19997 ("zlib" ,zlib)))
19998 (native-inputs
19999 `(("pkg-config" ,pkg-config)
20000 ("r-knitr" ,r-knitr)))
20001 (home-page "https://github.com/jeroen/rsvg#readme")
20002 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
20003 (description
20004 "This package allows you to render vector-based SVG images into
20005 high-quality custom-size bitmap arrays using the librsvg2 library. The
20006 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
20007 addition, the package can convert images directly to various formats such as
20008 PDF or PostScript.")
20009 (license license:expat)))
20010
20011 (define-public r-influencer
20012 (package
20013 (name "r-influencer")
20014 (version "0.1.0")
20015 (source
20016 (origin
20017 (method url-fetch)
20018 (uri (cran-uri "influenceR" version))
20019 (sha256
20020 (base32
20021 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
20022 (properties `((upstream-name . "influenceR")))
20023 (build-system r-build-system)
20024 (propagated-inputs
20025 `(("r-igraph" ,r-igraph)
20026 ("r-matrix" ,r-matrix)))
20027 (home-page "https://github.com/rcc-uchicago/influenceR")
20028 (synopsis "Tools to quantify structural importance of nodes in a network")
20029 (description
20030 "This package provides functionality to compute various node centrality
20031 measures on networks. Included are functions to compute betweenness
20032 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
20033 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
20034 algorithm to identify key players, and Valente's bridging metric. The
20035 betweenness, Key Players, and bridging implementations are parallelized with
20036 OpenMP.")
20037 (license license:gpl2)))
20038
20039 (define-public r-emplik
20040 (package
20041 (name "r-emplik")
20042 (version "1.1-1")
20043 (source
20044 (origin
20045 (method url-fetch)
20046 (uri (cran-uri "emplik" version))
20047 (sha256
20048 (base32
20049 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
20050 (properties `((upstream-name . "emplik")))
20051 (build-system r-build-system)
20052 (propagated-inputs
20053 `(("r-quantreg" ,r-quantreg)))
20054 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
20055 (synopsis "Empirical likelihood ratio for censored/truncated data")
20056 (description
20057 "This package provides empirical likelihood ratio tests for
20058 means/quantiles/hazards from possibly censored and/or truncated data. It also
20059 does regression.")
20060 (license license:gpl2+)))
20061
20062 (define-public r-imputeyn
20063 (package
20064 (name "r-imputeyn")
20065 (version "1.3")
20066 (source
20067 (origin
20068 (method url-fetch)
20069 (uri (cran-uri "imputeYn" version))
20070 (sha256
20071 (base32
20072 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
20073 (properties `((upstream-name . "imputeYn")))
20074 (build-system r-build-system)
20075 (propagated-inputs
20076 `(("r-boot" ,r-boot)
20077 ("r-emplik" ,r-emplik)
20078 ("r-mvtnorm" ,r-mvtnorm)
20079 ("r-quadprog" ,r-quadprog)
20080 ("r-survival" ,r-survival)))
20081 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
20082 (synopsis "Impute last largest censored observation under weighted least squares")
20083 (description
20084 "This package allows for the imputation of the last largest censored
20085 observantions. This method brings less bias and more efficient estimates for
20086 AFT models.")
20087 (license license:gpl2)))
20088
20089 (define-public r-adapenetclass
20090 (package
20091 (name "r-adapenetclass")
20092 (version "1.2")
20093 (source
20094 (origin
20095 (method url-fetch)
20096 (uri (cran-uri "AdapEnetClass" version))
20097 (sha256
20098 (base32
20099 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
20100 (properties `((upstream-name . "AdapEnetClass")))
20101 (build-system r-build-system)
20102 (propagated-inputs
20103 `(("r-glmnet" ,r-glmnet)
20104 ("r-imputeyn" ,r-imputeyn)
20105 ("r-lars" ,r-lars)
20106 ("r-quadprog" ,r-quadprog)))
20107 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
20108 (synopsis "Class of adaptive elastic net methods for censored data")
20109 (description
20110 "This package provides methods for variable selection for AFT models.")
20111 (license license:gpl2)))
20112
20113 (define-public r-flock
20114 (package
20115 (name "r-flock")
20116 (version "0.7")
20117 (source
20118 (origin
20119 (method url-fetch)
20120 (uri (cran-uri "flock" version))
20121 (sha256
20122 (base32
20123 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
20124 (properties `((upstream-name . "flock")))
20125 (build-system r-build-system)
20126 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
20127 (home-page "https://cran.r-project.org/web/packages/flock/")
20128 (synopsis "Process synchronization using file locks")
20129 (description
20130 "This package implements synchronization between R processes (spawned by
20131 using the @code{parallel} package for instance) using file locks. It supports
20132 both exclusive and shared locking.")
20133 (license license:asl2.0)))
20134
20135 (define-public r-archivist
20136 (package
20137 (name "r-archivist")
20138 (version "2.3.4")
20139 (source
20140 (origin
20141 (method url-fetch)
20142 (uri (cran-uri "archivist" version))
20143 (sha256
20144 (base32
20145 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
20146 (properties `((upstream-name . "archivist")))
20147 (build-system r-build-system)
20148 (propagated-inputs
20149 `(("r-dbi" ,r-dbi)
20150 ("r-digest" ,r-digest)
20151 ("r-flock" ,r-flock)
20152 ("r-httr" ,r-httr)
20153 ("r-lubridate" ,r-lubridate)
20154 ("r-magrittr" ,r-magrittr)
20155 ("r-rcurl" ,r-rcurl)
20156 ("r-rsqlite" ,r-rsqlite)))
20157 (home-page "https://pbiecek.github.io/archivist/")
20158 (synopsis "Tools for storing, restoring and searching for R objects")
20159 (description
20160 "Data exploration and modelling is a process in which a lot of data
20161 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
20162 statistical models, different versions of data sets and different versions of
20163 results. Archivist helps to store and manage artifacts created in R. It
20164 allows you to store selected artifacts as binary files together with their
20165 metadata and relations. Archivist allows sharing artifacts with others. It
20166 can look for already created artifacts by using its class, name, date of the
20167 creation or other properties. It also makes it easy to restore such
20168 artifacts.")
20169 (license license:gpl2)))
20170
20171 (define-public r-versions
20172 (package
20173 (name "r-versions")
20174 (version "0.3")
20175 (source
20176 (origin
20177 (method url-fetch)
20178 (uri (cran-uri "versions" version))
20179 (sha256
20180 (base32
20181 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
20182 (properties `((upstream-name . "versions")))
20183 (build-system r-build-system)
20184 (home-page "https://cran.r-project.org/web/packages/versions/")
20185 (synopsis "Query and install specific versions of CRAN packages")
20186 (description
20187 "This package allows you to install specified versions of R packages
20188 hosted on CRAN and provides functions to list available versions and the
20189 versions of currently installed packages.")
20190 (license license:bsd-3)))
20191
20192 (define-public r-adapr
20193 (package
20194 (name "r-adapr")
20195 (version "2.0.0")
20196 (source
20197 (origin
20198 (method url-fetch)
20199 (uri (cran-uri "adapr" version))
20200 (sha256
20201 (base32
20202 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
20203 (properties `((upstream-name . "adapr")))
20204 (build-system r-build-system)
20205 (propagated-inputs
20206 `(("r-archivist" ,r-archivist)
20207 ("r-devtools" ,r-devtools)
20208 ("r-digest" ,r-digest)
20209 ("r-doparallel" ,r-doparallel)
20210 ("r-gdata" ,r-gdata)
20211 ("r-ggplot2" ,r-ggplot2)
20212 ("r-git2r" ,r-git2r)
20213 ("r-igraph" ,r-igraph)
20214 ("r-knitr" ,r-knitr)
20215 ("r-plotly" ,r-plotly)
20216 ("r-plyr" ,r-plyr)
20217 ("r-rmarkdown" ,r-rmarkdown)
20218 ("r-shiny" ,r-shiny)
20219 ("r-shinydashboard" ,r-shinydashboard)
20220 ("r-versions" ,r-versions)))
20221 (home-page "https://cran.r-project.org/web/packages/adapr/")
20222 (synopsis "Implementation of an accountable data analysis process")
20223 (description
20224 "This package tracks reading and writing within R scripts that are
20225 organized into a directed acyclic graph. It contains an interactive Shiny
20226 application @code{adaprApp()}. It uses Git and file hashes to track version
20227 histories of inputs and outputs.")
20228 (license license:lgpl2.0)))
20229
20230 (define-public r-adapsamp
20231 (package
20232 (name "r-adapsamp")
20233 (version "1.1.1")
20234 (source
20235 (origin
20236 (method url-fetch)
20237 (uri (cran-uri "AdapSamp" version))
20238 (sha256
20239 (base32
20240 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
20241 (properties `((upstream-name . "AdapSamp")))
20242 (build-system r-build-system)
20243 (propagated-inputs `(("r-pracma" ,r-pracma)))
20244 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
20245 (synopsis "Adaptive sampling algorithms")
20246 (description
20247 "For distributions whose probability density functions are log-concave,
20248 the adaptive rejection sampling algorithm can be used to build envelope
20249 functions for sampling. For others, the modified adaptive rejection sampling
20250 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
20251 adaptive slice sampling algorithm can be used. This R package mainly includes
20252 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
20253 @code{rASS()}. These functions can realize sampling based on the algorithms
20254 above.")
20255 (license license:gpl2)))
20256
20257 (define-public r-adaptalint
20258 (package
20259 (name "r-adaptalint")
20260 (version "0.2.4")
20261 (source
20262 (origin
20263 (method url-fetch)
20264 (uri (cran-uri "adaptalint" version))
20265 (sha256
20266 (base32
20267 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
20268 (properties `((upstream-name . "adaptalint")))
20269 (build-system r-build-system)
20270 (propagated-inputs
20271 `(("r-dplyr" ,r-dplyr)
20272 ("r-lintr" ,r-lintr)
20273 ("r-purrr" ,r-purrr)))
20274 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
20275 (synopsis "Check R code style")
20276 (description
20277 "This package provides tools to infer the code style (which style rules
20278 are followed and which ones are not) from one package and use it to check
20279 another. This makes it easier to find and correct the most important problems
20280 first.")
20281 (license license:gpl3)))
20282
20283 (define-public r-fracdiff
20284 (package
20285 (name "r-fracdiff")
20286 (version "1.5-1")
20287 (source
20288 (origin
20289 (method url-fetch)
20290 (uri (cran-uri "fracdiff" version))
20291 (sha256
20292 (base32
20293 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
20294 (properties `((upstream-name . "fracdiff")))
20295 (build-system r-build-system)
20296 (home-page "https://github.com/mmaechler/fracdiff")
20297 (synopsis
20298 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
20299 (description
20300 "This package provides tools for the maximum likelihood estimation of the
20301 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
20302 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
20303 (license license:gpl2+)))
20304
20305 (define-public r-forecast
20306 (package
20307 (name "r-forecast")
20308 (version "8.12")
20309 (source
20310 (origin
20311 (method url-fetch)
20312 (uri (cran-uri "forecast" version))
20313 (sha256
20314 (base32
20315 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
20316 (properties `((upstream-name . "forecast")))
20317 (build-system r-build-system)
20318 (propagated-inputs
20319 `(("r-colorspace" ,r-colorspace)
20320 ("r-fracdiff" ,r-fracdiff)
20321 ("r-ggplot2" ,r-ggplot2)
20322 ("r-lmtest" ,r-lmtest)
20323 ("r-magrittr" ,r-magrittr)
20324 ("r-nnet" ,r-nnet)
20325 ("r-rcpp" ,r-rcpp)
20326 ("r-rcpparmadillo" ,r-rcpparmadillo)
20327 ("r-timedate" ,r-timedate)
20328 ("r-tseries" ,r-tseries)
20329 ("r-urca" ,r-urca)
20330 ("r-zoo" ,r-zoo)))
20331 (native-inputs
20332 `(("r-knitr" ,r-knitr))) ; needed for vignettes
20333 (home-page "https://pkg.robjhyndman.com/forecast/")
20334 (synopsis "Forecasting functions for time series and linear models")
20335 (description
20336 "This package provides methods and tools for displaying and analysing
20337 univariate time series forecasts including exponential smoothing via state
20338 space models and automatic ARIMA modelling.")
20339 (license license:gpl3)))
20340
20341 (define-public r-xmisc
20342 (package
20343 (name "r-xmisc")
20344 (version "0.2.1")
20345 (source
20346 (origin
20347 (method url-fetch)
20348 (uri (cran-uri "Xmisc" version))
20349 (sha256
20350 (base32
20351 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
20352 (properties `((upstream-name . "Xmisc")))
20353 (build-system r-build-system)
20354 (home-page "https://cran.r-project.org/package=Xmisc")
20355 (synopsis
20356 "Xiaobei's miscellaneous classes and functions")
20357 (description
20358 "This package provides Xiaobei's miscellaneous classes and functions,
20359 which are useful when developing R packages for @dfn{object oriented
20360 programming} (OOP) using R Reference Class.")
20361 (license license:gpl2+)))
20362
20363 (define-public r-proxyc
20364 (package
20365 (name "r-proxyc")
20366 (version "0.1.5")
20367 (source
20368 (origin
20369 (method url-fetch)
20370 (uri (cran-uri "proxyC" version))
20371 (sha256
20372 (base32
20373 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
20374 (properties `((upstream-name . "proxyC")))
20375 (build-system r-build-system)
20376 (propagated-inputs
20377 `(("r-matrix" ,r-matrix)
20378 ("r-rcpp" ,r-rcpp)
20379 ("r-rcpparmadillo" ,r-rcpparmadillo)
20380 ("r-rcppparallel" ,r-rcppparallel)))
20381 (home-page "https://cran.r-project.org/package=proxyC")
20382 (synopsis "Compute proximity in large sparse matrices")
20383 (description
20384 "This package provides efficient tools to compute the proximity between
20385 rows or columns of large matrices. Functions are optimised for large sparse
20386 matrices using the Armadillo and Intel TBB libraries. Among several built-in
20387 similarity/distance measures, computation of correlation, cosine similarity
20388 and Euclidean distance is particularly fast.")
20389 (license license:gpl3)))
20390
20391 (define-public r-isocodes
20392 (package
20393 (name "r-isocodes")
20394 (version "2020.03.16")
20395 (source
20396 (origin
20397 (method url-fetch)
20398 (uri (cran-uri "ISOcodes" version))
20399 (sha256
20400 (base32
20401 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
20402 (properties `((upstream-name . "ISOcodes")))
20403 (build-system r-build-system)
20404 (home-page "https://cran.r-project.org/package=ISOcodes")
20405 (synopsis "Selected ISO codes")
20406 (description
20407 "This package provides ISO language, territory, currency, script and
20408 character codes. It provides ISO 639 language codes, ISO 3166 territory
20409 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
20410 character codes as well as the UN M.49 area codes.")
20411 (license license:gpl2)))
20412
20413 (define-public r-stopwords
20414 (package
20415 (name "r-stopwords")
20416 (version "2.0")
20417 (source
20418 (origin
20419 (method url-fetch)
20420 (uri (cran-uri "stopwords" version))
20421 (sha256
20422 (base32
20423 "155g00ansyqfpp1mzd2q6mn0k214xinf78nww2368h24kz761jjw"))))
20424 (properties `((upstream-name . "stopwords")))
20425 (build-system r-build-system)
20426 (propagated-inputs
20427 `(("r-desc" ,r-desc)
20428 ("r-isocodes" ,r-isocodes)
20429 ("r-usethis" ,r-usethis)))
20430 (home-page "https://github.com/quanteda/stopwords")
20431 (synopsis "Multilingual stopword lists")
20432 (description
20433 "This package provides multiple sources of stopwords, for use in text
20434 analysis and natural language processing.")
20435 (license license:expat)))
20436
20437 (define-public r-spacyr
20438 (package
20439 (name "r-spacyr")
20440 (version "1.2.1")
20441 (source
20442 (origin
20443 (method url-fetch)
20444 (uri (cran-uri "spacyr" version))
20445 (sha256
20446 (base32
20447 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
20448 (properties `((upstream-name . "spacyr")))
20449 (build-system r-build-system)
20450 (propagated-inputs
20451 `(("r-data-table" ,r-data-table)
20452 ("r-reticulate" ,r-reticulate)))
20453 (home-page "https://spacyr.quanteda.io")
20454 (synopsis "R wrapper for the spaCy NLP library")
20455 (description
20456 "This package provides an R wrapper to the Python @dfn{natural language
20457 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
20458 (license license:gpl3)))
20459
20460 (define-public r-snowballc
20461 (package
20462 (name "r-snowballc")
20463 (version "0.7.0")
20464 (source
20465 (origin
20466 (method url-fetch)
20467 (uri (cran-uri "SnowballC" version))
20468 (sha256
20469 (base32
20470 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
20471 (properties `((upstream-name . "SnowballC")))
20472 (build-system r-build-system)
20473 (home-page "https://r-forge.r-project.org/projects/r-temis/")
20474 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
20475 (description
20476 "This package provides an R interface to the C @code{libstemmer} library
20477 that implements Porter's word stemming algorithm for collapsing words to a
20478 common root to aid comparison of vocabulary. Currently supported languages
20479 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
20480 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
20481 (license license:bsd-3)))
20482
20483 (define-public r-quanteda
20484 (package
20485 (name "r-quanteda")
20486 (version "2.1.1")
20487 (source
20488 (origin
20489 (method url-fetch)
20490 (uri (cran-uri "quanteda" version))
20491 (sha256
20492 (base32
20493 "1wlrd7g2b459pnkqhihxhn74f37py1c9pxrdzp5xzp4mnbdxcsj8"))))
20494 (properties `((upstream-name . "quanteda")))
20495 (build-system r-build-system)
20496 (propagated-inputs
20497 `(("r-data-table" ,r-data-table)
20498 ("r-digest" ,r-digest)
20499 ("r-extrafont" ,r-extrafont)
20500 ("r-fastmatch" ,r-fastmatch)
20501 ("r-ggplot2" ,r-ggplot2)
20502 ("r-ggrepel" ,r-ggrepel)
20503 ("r-jsonlite" ,r-jsonlite)
20504 ("r-magrittr" ,r-magrittr)
20505 ("r-matrix" ,r-matrix)
20506 ("r-network" ,r-network)
20507 ("r-proxyc" ,r-proxyc)
20508 ("r-rcpp" ,r-rcpp)
20509 ("r-rcpparmadillo" ,r-rcpparmadillo)
20510 ("r-rcppparallel" ,r-rcppparallel)
20511 ("r-sna" ,r-sna)
20512 ("r-snowballc" ,r-snowballc)
20513 ("r-stopwords" ,r-stopwords)
20514 ("r-stringi" ,r-stringi)
20515 ("r-xml2" ,r-xml2)
20516 ("r-yaml" ,r-yaml)))
20517 (native-inputs
20518 `(("r-knitr" ,r-knitr)))
20519 (home-page "https://quanteda.io")
20520 (synopsis "Quantitative analysis of textual data")
20521 (description
20522 "This package provides a fast, flexible, and comprehensive framework for
20523 quantitative text analysis in R. It provides functionality for corpus
20524 management, creating and manipulating tokens and ngrams, exploring keywords in
20525 context, forming and manipulating sparse matrices of documents by features and
20526 feature co-occurrences, analyzing keywords, computing feature similarities and
20527 distances, applying content dictionaries, applying supervised and unsupervised
20528 machine learning, visually representing text and text analyses, and more.")
20529 (license license:gpl3)))
20530
20531 (define-public r-topicmodels
20532 (package
20533 (name "r-topicmodels")
20534 (version "0.2-11")
20535 (source
20536 (origin
20537 (method url-fetch)
20538 (uri (cran-uri "topicmodels" version))
20539 (sha256
20540 (base32
20541 "0jmp6wva99y0w40cfw7b0faylndhjam097x36ilc4vmyczcv89lw"))))
20542 (properties `((upstream-name . "topicmodels")))
20543 (build-system r-build-system)
20544 (native-inputs
20545 `(("gsl" ,gsl)))
20546 (propagated-inputs
20547 `(("r-modeltools" ,r-modeltools)
20548 ("r-slam" ,r-slam)
20549 ("r-tm" ,r-tm)))
20550 (home-page "https://cran.r-project.org/package=topicmodels")
20551 (synopsis "Topic models")
20552 (description
20553 "This package provides an interface to the C code for @dfn{Latent
20554 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
20555 David M. Blei and co-authors and the C++ code for fitting LDA models using
20556 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
20557 (license license:gpl2)))
20558
20559 (define-public r-stm
20560 (package
20561 (name "r-stm")
20562 (version "1.3.5")
20563 (source
20564 (origin
20565 (method url-fetch)
20566 (uri (cran-uri "stm" version))
20567 (sha256
20568 (base32
20569 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
20570 (properties `((upstream-name . "stm")))
20571 (build-system r-build-system)
20572 (propagated-inputs
20573 `(("r-data-table" ,r-data-table)
20574 ("r-glmnet" ,r-glmnet)
20575 ("r-lda" ,r-lda)
20576 ("r-matrix" ,r-matrix)
20577 ("r-matrixstats" ,r-matrixstats)
20578 ("r-quadprog" ,r-quadprog)
20579 ("r-quanteda" ,r-quanteda)
20580 ("r-rcpp" ,r-rcpp)
20581 ("r-rcpparmadillo" ,r-rcpparmadillo)
20582 ("r-slam" ,r-slam)
20583 ("r-stringr" ,r-stringr)))
20584 (home-page "http://www.structuraltopicmodel.com/")
20585 (synopsis "Estimation of the Structural Topic Model")
20586 (description
20587 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
20588 topic models with document-level covariates. The package also includes tools
20589 for model selection, visualization, and estimation of topic-covariate
20590 regressions.")
20591 (license license:expat)))
20592
20593 (define-public r-polycor
20594 (package
20595 (name "r-polycor")
20596 (version "0.7-10")
20597 (source
20598 (origin
20599 (method url-fetch)
20600 (uri (cran-uri "polycor" version))
20601 (sha256
20602 (base32
20603 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
20604 (properties `((upstream-name . "polycor")))
20605 (build-system r-build-system)
20606 (propagated-inputs
20607 `(("r-matrix" ,r-matrix)
20608 ("r-mvtnorm" ,r-mvtnorm)))
20609 (home-page "https://r-forge.r-project.org/projects/polycor/")
20610 (synopsis "Polychoric and polyserial correlations")
20611 (description
20612 "This package provides tools to compute polychoric and polyserial
20613 correlations by quick \"two-step\" methods or ML, optionally with standard
20614 errors; tetrachoric and biserial correlations are special cases.")
20615 (license license:gpl2+)))
20616
20617 (define-public r-msm
20618 (package
20619 (name "r-msm")
20620 (version "1.6.8")
20621 (source
20622 (origin
20623 (method url-fetch)
20624 (uri (cran-uri "msm" version))
20625 (sha256
20626 (base32
20627 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
20628 (properties `((upstream-name . "msm")))
20629 (build-system r-build-system)
20630 (propagated-inputs
20631 `(("r-expm" ,r-expm)
20632 ("r-mvtnorm" ,r-mvtnorm)
20633 ("r-survival" ,r-survival)))
20634 (home-page "https://github.com/chjackson/msm")
20635 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
20636 (description
20637 "This package provides functions for fitting continuous-time Markov and
20638 hidden Markov multi-state models to longitudinal data. It was designed for
20639 processes observed at arbitrary times in continuous time (panel data) but some
20640 other observation schemes are supported. Both Markov transition rates and the
20641 hidden Markov output process can be modelled in terms of covariates, which may
20642 be constant or piecewise-constant in time.")
20643 (license license:gpl2+)))
20644
20645 (define-public r-ltm
20646 (package
20647 (name "r-ltm")
20648 (version "1.1-1")
20649 (source
20650 (origin
20651 (method url-fetch)
20652 (uri (cran-uri "ltm" version))
20653 (sha256
20654 (base32
20655 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
20656 (properties `((upstream-name . "ltm")))
20657 (build-system r-build-system)
20658 (propagated-inputs
20659 `(("r-mass" ,r-mass)
20660 ("r-msm" ,r-msm)
20661 ("r-polycor" ,r-polycor)))
20662 (home-page "https://github.com/drizopoulos/ltm")
20663 (synopsis "Latent trait models under IRT")
20664 (description
20665 "This is a package supporting the analysis of multivariate dichotomous
20666 and polytomous data using latent trait models under the Item Response Theory
20667 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
20668 Three-Parameter, the Graded Response, and the Generalized Partial Credit
20669 Models.")
20670 (license license:gpl2+)))
20671
20672 (define-public r-mi
20673 (package
20674 (name "r-mi")
20675 (version "1.0")
20676 (source
20677 (origin
20678 (method url-fetch)
20679 (uri (cran-uri "mi" version))
20680 (sha256
20681 (base32
20682 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
20683 (properties `((upstream-name . "mi")))
20684 (build-system r-build-system)
20685 (propagated-inputs
20686 `(("r-arm" ,r-arm)
20687 ("r-matrix" ,r-matrix)))
20688 (home-page "http://www.stat.columbia.edu/~gelman/")
20689 (synopsis "Missing data imputation and model checking")
20690 (description
20691 "This package provides functions for data manipulation, imputing missing
20692 values in an approximate Bayesian framework, diagnostics of the models used to
20693 generate the imputations, confidence-building mechanisms to validate some of
20694 the assumptions of the imputation algorithm, and functions to analyze multiply
20695 imputed data sets with the appropriate degree of sampling uncertainty.")
20696 (license license:gpl2+)))
20697
20698 (define-public r-matrixcalc
20699 (package
20700 (name "r-matrixcalc")
20701 (version "1.0-3")
20702 (source
20703 (origin
20704 (method url-fetch)
20705 (uri (cran-uri "matrixcalc" version))
20706 (sha256
20707 (base32
20708 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
20709 (properties `((upstream-name . "matrixcalc")))
20710 (build-system r-build-system)
20711 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
20712 (synopsis "Collection of functions for matrix calculations")
20713 (description
20714 "This package provides a collection of functions to support matrix
20715 calculations for probability, econometric and numerical analysis. There are
20716 additional functions that are comparable to APL functions which are useful for
20717 actuarial models such as pension mathematics.")
20718 (license license:gpl2+)))
20719
20720 (define-public r-sem
20721 (package
20722 (name "r-sem")
20723 (version "3.1-11")
20724 (source
20725 (origin
20726 (method url-fetch)
20727 (uri (cran-uri "sem" version))
20728 (sha256
20729 (base32
20730 "03j3ig6fy34pi6nwfq9w8f5m555lilw5skr1vn6ay4yvjmvavc9k"))))
20731 (properties `((upstream-name . "sem")))
20732 (build-system r-build-system)
20733 (propagated-inputs
20734 `(("r-boot" ,r-boot)
20735 ("r-mass" ,r-mass)
20736 ("r-matrixcalc" ,r-matrixcalc)
20737 ("r-mi" ,r-mi)))
20738 (home-page "https://cran.r-project.org/package=sem")
20739 (synopsis "Structural equation models")
20740 (description
20741 "This package provides functions for fitting general linear structural
20742 equation models (with observed and latent variables) using the RAM approach,
20743 and for fitting structural equations in observed-variable models by two-stage
20744 least squares.")
20745 (license license:gpl2+)))
20746
20747 (define-public r-semtools
20748 (package
20749 (name "r-semtools")
20750 (version "0.5-3")
20751 (source
20752 (origin
20753 (method url-fetch)
20754 (uri (cran-uri "semTools" version))
20755 (sha256
20756 (base32
20757 "0k3w10fnq0l89inhxvnypyrfhlrm921mfn0kwyyfpndvbqizky1d"))))
20758 (properties `((upstream-name . "semTools")))
20759 (build-system r-build-system)
20760 (propagated-inputs
20761 `(("r-lavaan" ,r-lavaan)))
20762 (home-page "https://github.com/simsem/semTools/wiki")
20763 (synopsis "Useful tools for structural equation modeling")
20764 (description
20765 "This package provides useful tools for structural equation modeling.")
20766 (license license:gpl2+)))
20767
20768 (define-public r-regsem
20769 (package
20770 (name "r-regsem")
20771 (version "1.5.2")
20772 (source
20773 (origin
20774 (method url-fetch)
20775 (uri (cran-uri "regsem" version))
20776 (sha256
20777 (base32
20778 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
20779 (properties `((upstream-name . "regsem")))
20780 (build-system r-build-system)
20781 (propagated-inputs
20782 `(("r-lavaan" ,r-lavaan)
20783 ("r-rcpp" ,r-rcpp)
20784 ("r-rcpparmadillo" ,r-rcpparmadillo)
20785 ("r-rsolnp" ,r-rsolnp)))
20786 (home-page "https://cran.r-project.org/package=regsem")
20787 (synopsis "Regularized structural equation modeling")
20788 (description
20789 "This package uses both ridge and lasso penalties (and extensions) to
20790 penalize specific parameters in structural equation models. The package
20791 offers additional cost functions, cross validation, and other extensions
20792 beyond traditional structural equation models. It also contains a function to
20793 perform @dfn{exploratory mediation} (XMed).")
20794 (license license:gpl2+)))
20795
20796 (define-public r-stanheaders
20797 (package
20798 (name "r-stanheaders")
20799 (version "2.21.0-6")
20800 (source
20801 (origin
20802 (method url-fetch)
20803 (uri (cran-uri "StanHeaders" version))
20804 (sha256
20805 (base32
20806 "1wwcrss4y6xbi81cg6ldhm57wz5paflzzp3yxh8b6shf9l2jla50"))))
20807 (properties `((upstream-name . "StanHeaders")))
20808 (build-system r-build-system)
20809 (inputs `(("pandoc" ,pandoc)))
20810 (propagated-inputs
20811 `(("r-rcppeigen" ,r-rcppeigen)
20812 ("r-rcppparallel" ,r-rcppparallel)))
20813 (native-inputs
20814 `(("gfortran" ,gfortran)
20815 ("r-knitr" ,r-knitr))) ; for vignettes
20816 (home-page "https://mc-stan.org/")
20817 (synopsis "C++ header files for Stan")
20818 (description
20819 "The C++ header files of the Stan project are provided by this package.
20820 There is a shared object containing part of the @code{CVODES} library, but it
20821 is not accessible from R. @code{r-stanheaders} is only useful for developers
20822 who want to utilize the @code{LinkingTo} directive of their package's
20823 DESCRIPTION file to build on the Stan library without incurring unnecessary
20824 dependencies.
20825
20826 The Stan project develops a probabilistic programming language that implements
20827 full or approximate Bayesian statistical inference via Markov Chain Monte
20828 Carlo or variational methods and implements (optionally penalized) maximum
20829 likelihood estimation via optimization. The Stan library includes an advanced
20830 automatic differentiation scheme, templated statistical and linear algebra
20831 functions that can handle the automatically differentiable scalar types (and
20832 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
20833 package provides user-facing R functions to parse, compile, test, estimate,
20834 and analyze Stan models.")
20835 (license license:bsd-3)))
20836
20837 (define-public r-rpf
20838 (package
20839 (name "r-rpf")
20840 (version "1.0.4")
20841 (source
20842 (origin
20843 (method url-fetch)
20844 (uri (cran-uri "rpf" version))
20845 (sha256
20846 (base32
20847 "17crcgsbcsh0c00n7bgdqfnd7n1vzz7drfxjs7d18253yl5x44pl"))))
20848 (properties `((upstream-name . "rpf")))
20849 (build-system r-build-system)
20850 (propagated-inputs
20851 `(("r-lifecycle" ,r-lifecycle)
20852 ("r-mvtnorm" ,r-mvtnorm)
20853 ("r-rcpp" ,r-rcpp)
20854 ("r-rcppeigen" ,r-rcppeigen)))
20855 (native-inputs
20856 `(("r-knitr" ,r-knitr)))
20857 (home-page "https://github.com/jpritikin/rpf")
20858 (synopsis "Response probability functions")
20859 (description
20860 "The purpose of this package is to factor out logic and math common to
20861 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
20862 core support code suitable for more specialized IRT packages to build upon.
20863 Complete access to optimized C functions is made available with
20864 @code{R_RegisterCCallable()}.")
20865 (license license:gpl3+)))
20866
20867 (define-public r-openmx
20868 (package
20869 (name "r-openmx")
20870 (version "2.18.1")
20871 (source
20872 (origin
20873 (method url-fetch)
20874 (uri (cran-uri "OpenMx" version))
20875 (sha256
20876 (base32
20877 "0gyjps0l3ig90piccgd04s63cz65kk5i5l9iyakps4bv27h1lzwm"))))
20878 (properties `((upstream-name . "OpenMx")))
20879 (build-system r-build-system)
20880 (propagated-inputs
20881 `(("r-bh" ,r-bh)
20882 ("r-digest" ,r-digest)
20883 ("r-lifecycle" ,r-lifecycle)
20884 ("r-mass" ,r-mass)
20885 ("r-matrix" ,r-matrix)
20886 ("r-rcpp" ,r-rcpp)
20887 ("r-rcppeigen" ,r-rcppeigen)
20888 ("r-rpf" ,r-rpf)
20889 ("r-stanheaders" ,r-stanheaders)))
20890 (native-inputs `(("gfortran" ,gfortran)))
20891 (home-page "http://openmx.ssri.psu.edu")
20892 (synopsis "Extended structural equation modelling")
20893 (description
20894 "This package allows for the estimation of a wide variety of advanced
20895 multivariate statistical models. It consists of a library of functions and
20896 optimizers that allow you to quickly and flexibly define an SEM model and
20897 estimate parameters given observed data.")
20898 (license license:asl2.0)))
20899
20900 (define-public r-kutils
20901 (package
20902 (name "r-kutils")
20903 (version "1.70")
20904 (source
20905 (origin
20906 (method url-fetch)
20907 (uri (cran-uri "kutils" version))
20908 (sha256
20909 (base32
20910 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
20911 (properties `((upstream-name . "kutils")))
20912 (build-system r-build-system)
20913 (propagated-inputs
20914 `(("r-foreign" ,r-foreign)
20915 ("r-openxlsx" ,r-openxlsx)
20916 ("r-plyr" ,r-plyr)
20917 ("r-runit" ,r-runit)
20918 ("r-xtable" ,r-xtable)))
20919 (home-page "https://cran.r-project.org/package=kutils")
20920 (synopsis "Project management tools")
20921 (description
20922 "This package provides tools for data importation, recoding, and
20923 inspection. There are functions to create new project folders, R code
20924 templates, create uniquely named output directories, and to quickly obtain a
20925 visual summary for each variable in a data frame. The main feature here is
20926 the systematic implementation of the \"variable key\" framework for data
20927 importation and recoding.")
20928 (license license:gpl2)))
20929
20930 (define-public r-rockchalk
20931 (package
20932 (name "r-rockchalk")
20933 (version "1.8.144")
20934 (source
20935 (origin
20936 (method url-fetch)
20937 (uri (cran-uri "rockchalk" version))
20938 (sha256
20939 (base32
20940 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20941 (properties `((upstream-name . "rockchalk")))
20942 (build-system r-build-system)
20943 (propagated-inputs
20944 `(("r-cardata" ,r-cardata)
20945 ("r-kutils" ,r-kutils)
20946 ("r-lme4" ,r-lme4)
20947 ("r-mass" ,r-mass)))
20948 (home-page "https://cran.r-project.org/package=rockchalk")
20949 (synopsis "Regression estimation and presentation")
20950 (description
20951 "This package provides a collection of functions for interpretation and
20952 presentation of regression analysis. These functions are used to produce the
20953 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20954 includes regression diagnostics, regression tables, and plots of interactions
20955 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20956 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20957 fairly comprehensive overview.")
20958 (license license:gpl3+)))
20959
20960 (define-public r-lisreltor
20961 (package
20962 (name "r-lisreltor")
20963 (version "0.1.4")
20964 (source
20965 (origin
20966 (method url-fetch)
20967 (uri (cran-uri "lisrelToR" version))
20968 (sha256
20969 (base32
20970 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20971 (properties `((upstream-name . "lisrelToR")))
20972 (build-system r-build-system)
20973 (home-page "https://cran.r-project.org/package=lisrelToR")
20974 (synopsis "Import output from LISREL into R")
20975 (description
20976 "This is an unofficial package aimed at automating the import of LISREL
20977 output in R.")
20978 (license license:gpl2)))
20979
20980 (define-public r-bdgraph
20981 (package
20982 (name "r-bdgraph")
20983 (version "2.63")
20984 (source
20985 (origin
20986 (method url-fetch)
20987 (uri (cran-uri "BDgraph" version))
20988 (sha256
20989 (base32
20990 "05q6dbvdnxmh7myvw60zqcqx16f80i8d6qa4y7xnfkx02l9lwiyc"))))
20991 (properties `((upstream-name . "BDgraph")))
20992 (build-system r-build-system)
20993 (propagated-inputs
20994 `(("r-igraph" ,r-igraph)))
20995 (home-page "https://www.uva.nl/profile/a.mohammadi")
20996 (synopsis "Bayesian structure learning in graphical models")
20997 (description
20998 "This package provides statistical tools for Bayesian structure learning
20999 in undirected graphical models for continuous, discrete, and mixed data. It
21000 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
21001 on a continuous-time birth-death process.")
21002 (license license:gpl2+)))
21003
21004 (define-public r-d3network
21005 (package
21006 (name "r-d3network")
21007 (version "0.5.2.1")
21008 (source
21009 (origin
21010 (method url-fetch)
21011 (uri (cran-uri "d3Network" version))
21012 (sha256
21013 (base32
21014 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
21015 (properties `((upstream-name . "d3Network")))
21016 (build-system r-build-system)
21017 (propagated-inputs
21018 `(("r-plyr" ,r-plyr)
21019 ("r-rjson" ,r-rjson)
21020 ("r-whisker" ,r-whisker)))
21021 (home-page "http://christophergandrud.github.io/d3Network/")
21022 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
21023 (description
21024 "This package is intended to make it easy to create D3 JavaScript
21025 network, tree, dendrogram, and Sankey graphs from R using data frames.")
21026 (license license:gpl3+)))
21027
21028 (define-public r-qgraph
21029 (package
21030 (name "r-qgraph")
21031 (version "1.6.5")
21032 (source
21033 (origin
21034 (method url-fetch)
21035 (uri (cran-uri "qgraph" version))
21036 (sha256
21037 (base32
21038 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
21039 (properties `((upstream-name . "qgraph")))
21040 (build-system r-build-system)
21041 (propagated-inputs
21042 `(("r-abind" ,r-abind)
21043 ("r-bdgraph" ,r-bdgraph)
21044 ("r-colorspace" ,r-colorspace)
21045 ("r-corpcor" ,r-corpcor)
21046 ("r-d3network" ,r-d3network)
21047 ("r-dplyr" ,r-dplyr)
21048 ("r-fdrtool" ,r-fdrtool)
21049 ("r-ggplot2" ,r-ggplot2)
21050 ("r-ggraph" ,r-ggraph)
21051 ("r-glasso" ,r-glasso)
21052 ("r-gtools" ,r-gtools)
21053 ("r-hmisc" ,r-hmisc)
21054 ("r-huge" ,r-huge)
21055 ("r-igraph" ,r-igraph)
21056 ("r-jpeg" ,r-jpeg)
21057 ("r-lavaan" ,r-lavaan)
21058 ("r-matrix" ,r-matrix)
21059 ("r-pbapply" ,r-pbapply)
21060 ("r-plyr" ,r-plyr)
21061 ("r-png" ,r-png)
21062 ("r-psych" ,r-psych)
21063 ("r-rcpp" ,r-rcpp)
21064 ("r-reshape2" ,r-reshape2)
21065 ("r-tidygraph" ,r-tidygraph)))
21066 (home-page "http://sachaepskamp.com/qgraph/")
21067 (synopsis "Weighted network visualization and analysis")
21068 (description
21069 "This package implements tools for weighted network visualization and
21070 analysis, as well as Gaussian graphical model computation. It contains graph
21071 plotting methods, and tools for psychometric data visualization and graphical
21072 model estimation. See Epskamp et al. (2012)
21073 @url{doi:10.18637/jss.v048.i04}.")
21074 (license license:gpl2)))
21075
21076 (define-public r-semplot
21077 (package
21078 (name "r-semplot")
21079 (version "1.1.2")
21080 (source
21081 (origin
21082 (method url-fetch)
21083 (uri (cran-uri "semPlot" version))
21084 (sha256
21085 (base32
21086 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
21087 (properties `((upstream-name . "semPlot")))
21088 (build-system r-build-system)
21089 (propagated-inputs
21090 `(("r-colorspace" ,r-colorspace)
21091 ("r-corpcor" ,r-corpcor)
21092 ("r-igraph" ,r-igraph)
21093 ("r-lavaan" ,r-lavaan)
21094 ("r-lisreltor" ,r-lisreltor)
21095 ("r-openmx" ,r-openmx)
21096 ("r-plyr" ,r-plyr)
21097 ("r-qgraph" ,r-qgraph)
21098 ("r-regsem" ,r-regsem)
21099 ("r-rockchalk" ,r-rockchalk)
21100 ("r-sem" ,r-sem)
21101 ("r-xml" ,r-xml)))
21102 (home-page "https://github.com/SachaEpskamp/semPlot")
21103 (synopsis "Unified visualizations of structural equation models")
21104 (description
21105 "Structural equation modeling (SEM) has a long history of representing
21106 models graphically as path diagrams. The semPlot package for R fills the gap
21107 between advanced, but time-consuming, graphical software and the limited
21108 graphics produced automatically by SEM software. In addition, semPlot offers
21109 more functionality than drawing path diagrams: it can act as a common ground
21110 for importing SEM results into R. Any result usable as input to semPlot can
21111 also be represented in any of the three popular SEM frame-works, as well as
21112 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
21113 (license license:gpl2)))
21114
21115 (define-public r-cdm
21116 (package
21117 (name "r-cdm")
21118 (version "7.5-15")
21119 (source
21120 (origin
21121 (method url-fetch)
21122 (uri (cran-uri "CDM" version))
21123 (sha256
21124 (base32
21125 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
21126 (properties `((upstream-name . "CDM")))
21127 (build-system r-build-system)
21128 (propagated-inputs
21129 `(("r-mvtnorm" ,r-mvtnorm)
21130 ("r-polycor" ,r-polycor)
21131 ("r-rcpp" ,r-rcpp)
21132 ("r-rcpparmadillo" ,r-rcpparmadillo)))
21133 (home-page
21134 "https://github.com/alexanderrobitzsch/CDM")
21135 (synopsis "Cognitive diagnosis modeling")
21136 (description
21137 "This package provides functions for cognitive diagnosis modeling and
21138 multidimensional item response modeling for dichotomous and polytomous item
21139 responses. It enables the estimation of the DINA and DINO model, the multiple
21140 group (polytomous) GDINA model, the multiple choice DINA model, the general
21141 diagnostic model (GDM), the structured latent class model (SLCA), and
21142 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
21143 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
21144 estimation and the package structure. For tutorials on how to use the CDM
21145 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
21146 well as Ravand and Robitzsch (2015).")
21147 (license license:gpl2+)))
21148
21149 (define-public r-tam
21150 (package
21151 (name "r-tam")
21152 (version "3.5-19")
21153 (source
21154 (origin
21155 (method url-fetch)
21156 (uri (cran-uri "TAM" version))
21157 (sha256
21158 (base32
21159 "1x1pdy0hrk4c3x5l4gcslpvyb0sv2zgly4n3a7y8j6yrzajx0sg7"))))
21160 (properties `((upstream-name . "TAM")))
21161 (build-system r-build-system)
21162 (propagated-inputs
21163 `(("r-cdm" ,r-cdm)
21164 ("r-rcpp" ,r-rcpp)
21165 ("r-rcpparmadillo" ,r-rcpparmadillo)))
21166 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
21167 (synopsis "Test analysis modules")
21168 (description
21169 "This package includes tools for marginal maximum likelihood estimation
21170 and joint maximum likelihood estimation for unidimensional and
21171 multidimensional item response models. The package functionality covers the
21172 Rasch model, 2PL model, 3PL model, generalized partial credit model,
21173 multi-faceted Rasch model, nominal item response model, structured latent
21174 class model, mixture distribution IRT models, and located latent class models.
21175 Latent regression models and plausible value imputation are also supported.")
21176 (license license:gpl2+)))
21177
21178 (define-public r-erm
21179 (package
21180 (name "r-erm")
21181 (version "1.0-1")
21182 (source
21183 (origin
21184 (method url-fetch)
21185 (uri (cran-uri "eRm" version))
21186 (sha256
21187 (base32
21188 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
21189 (properties `((upstream-name . "eRm")))
21190 (build-system r-build-system)
21191 (propagated-inputs
21192 `(("r-colorspace" ,r-colorspace)
21193 ("r-lattice" ,r-lattice)
21194 ("r-mass" ,r-mass)
21195 ("r-matrix" ,r-matrix)
21196 ("r-psych" ,r-psych)))
21197 (native-inputs `(("gfortran" ,gfortran)))
21198 (home-page "https://cran.r-project.org/package=eRm")
21199 (synopsis "Extended Rasch modeling")
21200 (description
21201 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
21202 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
21203 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
21204 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
21205 data matrix. Additional features are the ML estimation of the person
21206 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
21207 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
21208 infit and outfit measures, ICC and other plots, automated stepwise item
21209 elimination, and a simulation module for various binary data matrices.")
21210 (license license:gpl3)))
21211
21212 (define-public r-irtoys
21213 (package
21214 (name "r-irtoys")
21215 (version "0.2.1")
21216 (source
21217 (origin
21218 (method url-fetch)
21219 (uri (cran-uri "irtoys" version))
21220 (sha256
21221 (base32
21222 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
21223 (properties `((upstream-name . "irtoys")))
21224 (build-system r-build-system)
21225 (propagated-inputs
21226 `(("r-ltm" ,r-ltm)
21227 ("r-sm" ,r-sm)))
21228 (home-page "https://cran.r-project.org/package=irtoys")
21229 (synopsis "Collection of functions related to Item Response Theory (IRT)")
21230 (description
21231 "This package provides a collection of functions useful in learning and
21232 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
21233 programs. It provides basic CTT analysis, a simple common interface to the
21234 estimation of item parameters in IRT models for binary responses with three
21235 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
21236 EAP, WLE, plausible values), item and person fit statistics, scaling
21237 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
21238 array of parametric and non-parametric (kernel) plots. It estimates and plots
21239 Haberman's interaction model when all items are dichotomously scored.")
21240 (license license:gpl2+)))
21241
21242 (define-public r-iheatmapr
21243 (package
21244 (name "r-iheatmapr")
21245 (version "0.5.0")
21246 (source
21247 (origin
21248 (method url-fetch)
21249 (uri (cran-uri "iheatmapr" version))
21250 (sha256
21251 (base32
21252 "0s2lc088rq2siy2wzmg1y6nss68rs33mf7w2izqqmg6kbx6d7y9h"))))
21253 (properties `((upstream-name . "iheatmapr")))
21254 (build-system r-build-system)
21255 (propagated-inputs
21256 `(("r-fastcluster" ,r-fastcluster)
21257 ("r-ggdendro" ,r-ggdendro)
21258 ("r-htmlwidgets" ,r-htmlwidgets)
21259 ("r-jsonlite" ,r-jsonlite)
21260 ("r-knitr" ,r-knitr)
21261 ("r-magrittr" ,r-magrittr)
21262 ("r-rcolorbrewer" ,r-rcolorbrewer)
21263 ("r-scales" ,r-scales)))
21264 (native-inputs
21265 `(("r-knitr" ,r-knitr)))
21266 (home-page "https://docs.ropensci.org/iheatmapr")
21267 (synopsis "Interactive, Complex Heatmaps")
21268 (description
21269 "iheatmapr is an R package for building complex, interactive heatmaps
21270 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
21271 subplots along the rows or columns of the main heatmap add more information
21272 about each row or column. For example, a one column additional heatmap may
21273 indicate what group a particular row or column belongs to. Complex heatmaps
21274 may also include multiple side by side heatmaps which show different types of
21275 data for the same conditions. Interactivity can improve complex heatmaps by
21276 providing tooltips with information about each cell and enabling zooming into
21277 interesting features. iheatmapr uses the plotly library for interactivity.")
21278 (license license:expat)))
21279
21280 (define-public r-packrat
21281 (package
21282 (name "r-packrat")
21283 (version "0.5.0")
21284 (source
21285 (origin
21286 (method url-fetch)
21287 (uri (cran-uri "packrat" version))
21288 (sha256
21289 (base32
21290 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
21291 (properties `((upstream-name . "packrat")))
21292 (build-system r-build-system)
21293 (home-page "https://github.com/rstudio/packrat/")
21294 (synopsis "Dependency management R projects")
21295 (description
21296 "This package provides a dependency manager for R projects that allows
21297 you to manage the R packages your project depends on in an isolated, portable,
21298 and reproducible way.")
21299 (license license:gpl2)))
21300
21301 (define-public r-rsconnect
21302 (package
21303 (name "r-rsconnect")
21304 (version "0.8.16")
21305 (source
21306 (origin
21307 (method url-fetch)
21308 (uri (cran-uri "rsconnect" version))
21309 (sha256
21310 (base32
21311 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
21312 (properties `((upstream-name . "rsconnect")))
21313 (build-system r-build-system)
21314 (propagated-inputs
21315 `(("r-curl" ,r-curl)
21316 ("r-digest" ,r-digest)
21317 ("r-jsonlite" ,r-jsonlite)
21318 ("r-openssl" ,r-openssl)
21319 ("r-packrat" ,r-packrat)
21320 ("r-rstudioapi" ,r-rstudioapi)
21321 ("r-yaml" ,r-yaml)))
21322 (home-page "https://github.com/rstudio/rsconnect")
21323 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
21324 (description
21325 "This package provides a programmatic deployment interface for RPubs,
21326 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
21327 documents, Shiny applications, Plumber APIs, plots, and static web content.")
21328 (license license:gpl2)))
21329
21330 ;; This package includes minified JavaScript files. When upgrading please
21331 ;; check that there are no new minified JavaScript files.
21332 (define-public r-dygraphs
21333 (package
21334 (name "r-dygraphs")
21335 (version "1.1.1.6")
21336 (source
21337 (origin
21338 (method url-fetch)
21339 (uri (cran-uri "dygraphs" version))
21340 (sha256
21341 (base32
21342 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
21343 (properties `((upstream-name . "dygraphs")))
21344 (build-system r-build-system)
21345 (arguments
21346 `(#:modules ((guix build utils)
21347 (guix build r-build-system)
21348 (srfi srfi-1)
21349 (ice-9 popen))
21350 #:phases
21351 (modify-phases %standard-phases
21352 (add-after 'unpack 'process-javascript
21353 (lambda* (#:key inputs #:allow-other-keys)
21354 (with-directory-excursion "inst/htmlwidgets/lib/"
21355 (call-with-values
21356 (lambda ()
21357 (unzip2
21358 `(("dygraphs/dygraph-combined-dev.js"
21359 "dygraph-combined.js")
21360 (,(assoc-ref inputs "js-jquery")
21361 "jquery/jquery.min.js")
21362 (,(assoc-ref inputs "js-fquarter")
21363 "fquarter/moment-fquarter.min.js"))))
21364 (lambda (sources targets)
21365 (for-each (lambda (source target)
21366 (format #t "Processing ~a --> ~a~%"
21367 source target)
21368 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
21369 (call-with-output-file target
21370 (lambda (port)
21371 (dump-port minified port)))))
21372 sources targets))))
21373 #t)))))
21374 (native-inputs
21375 `(("uglify-js" ,uglify-js)
21376 ;; They actually use version 1.11.1, but this more recent version
21377 ;; should be just fine.
21378 ("js-jquery"
21379 ,(origin
21380 (method url-fetch)
21381 (uri "https://code.jquery.com/jquery-1.12.4.js")
21382 (sha256
21383 (base32
21384 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
21385 ("js-fquarter"
21386 ,(origin
21387 (method url-fetch)
21388 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
21389 "moment-fquarter/1.0.1/moment-fquarter.js"))
21390 (sha256
21391 (base32
21392 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
21393 (propagated-inputs
21394 `(("r-htmltools" ,r-htmltools)
21395 ("r-htmlwidgets" ,r-htmlwidgets)
21396 ("r-magrittr" ,r-magrittr)
21397 ("r-xts" ,r-xts)
21398 ("r-zoo" ,r-zoo)))
21399 (home-page "https://github.com/rstudio/dygraphs")
21400 (synopsis "Interface to Dygraphs interactive time series charting library")
21401 (description
21402 "This package provides an R interface to the dygraphs JavaScript charting
21403 library (a copy of which is included in the package). It provides rich
21404 facilities for charting time-series data in R, including highly configurable
21405 series- and axis-display and interactive features like zoom/pan and
21406 series/point highlighting.")
21407 (license license:expat)))
21408
21409 (define-public r-shinystan
21410 (package
21411 (name "r-shinystan")
21412 (version "2.5.0")
21413 (source
21414 (origin
21415 (method url-fetch)
21416 (uri (cran-uri "shinystan" version))
21417 (sha256
21418 (base32
21419 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
21420 (properties `((upstream-name . "shinystan")))
21421 (build-system r-build-system)
21422 (propagated-inputs
21423 `(("r-bayesplot" ,r-bayesplot)
21424 ("r-colourpicker" ,r-colourpicker)
21425 ("r-dt" ,r-dt)
21426 ("r-dygraphs" ,r-dygraphs)
21427 ("r-ggplot2" ,r-ggplot2)
21428 ("r-gridextra" ,r-gridextra)
21429 ("r-gtools" ,r-gtools)
21430 ("r-markdown" ,r-markdown)
21431 ("r-reshape2" ,r-reshape2)
21432 ("r-rsconnect" ,r-rsconnect)
21433 ("r-rstan" ,r-rstan)
21434 ("r-shiny" ,r-shiny)
21435 ("r-shinyjs" ,r-shinyjs)
21436 ("r-shinythemes" ,r-shinythemes)
21437 ("r-threejs" ,r-threejs)
21438 ("r-xtable" ,r-xtable)
21439 ("r-xts" ,r-xts)))
21440 (home-page "https://mc-stan.org/")
21441 (synopsis "Interactive visual and numerical analysis for Bayesian models")
21442 (description
21443 "This package provides a graphical user interface for interactive
21444 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
21445 for analyzing a posterior sample. The interface is powered by the Shiny web
21446 application framework and works with the output of MCMC programs written in
21447 any programming language (and has extended functionality for Stan models fit
21448 using the @code{rstan} and @code{rstanarm} packages).")
21449 (license license:gpl3+)))
21450
21451 (define-public r-rstantools
21452 (package
21453 (name "r-rstantools")
21454 (version "2.1.1")
21455 (source
21456 (origin
21457 (method url-fetch)
21458 (uri (cran-uri "rstantools" version))
21459 (sha256
21460 (base32
21461 "0b9x8rzj3dr4m7yjx476nn42z22xd1xnw85m9frfwxy5ivg1any9"))))
21462 (properties `((upstream-name . "rstantools")))
21463 (build-system r-build-system)
21464 (inputs `(("pandoc" ,pandoc)))
21465 (propagated-inputs
21466 `(("r-desc" ,r-desc)
21467 ("r-rcpp" ,r-rcpp)
21468 ("r-rcppparallel" ,r-rcppparallel)))
21469 (native-inputs
21470 `(("r-knitr" ,r-knitr)))
21471 (home-page "https://mc-stan.org/rstantools/")
21472 (synopsis "Tools for developing R packages interfacing with Stan")
21473 (description
21474 "This package provides various tools for developers of R packages
21475 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
21476 up the required package structure, S3 generics and default methods to unify
21477 function naming across Stan-based R packages, and vignettes with
21478 recommendations for developers.")
21479 (license license:gpl3+)))
21480
21481 (define-public r-loo
21482 (package
21483 (name "r-loo")
21484 (version "2.3.1")
21485 (source
21486 (origin
21487 (method url-fetch)
21488 (uri (cran-uri "loo" version))
21489 (sha256
21490 (base32 "12z0k8lhz0rxygs5lc7076nw6qhk0pda8nxf65hkinfrf4dy53fr"))))
21491 (properties `((upstream-name . "loo")))
21492 (build-system r-build-system)
21493 (inputs
21494 `(("pandoc" ,pandoc)
21495 ("pandoc-citeproc" ,pandoc-citeproc)))
21496 (propagated-inputs
21497 `(("r-checkmate" ,r-checkmate)
21498 ("r-matrixstats" ,r-matrixstats)))
21499 (native-inputs
21500 `(("r-knitr" ,r-knitr)))
21501 (home-page "https://mc-stan.org/loo/")
21502 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
21503 (description
21504 "This package provides an implementation of efficient approximate
21505 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
21506 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
21507 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
21508 procedure for regularizing importance weights. As a byproduct of the
21509 calculations, we also obtain approximate standard errors for estimated
21510 predictive errors and for the comparison of predictive errors between models.
21511 The package also provides methods for using stacking and other model weighting
21512 techniques to average Bayesian predictive distributions.")
21513 (license license:gpl3+)))
21514
21515 (define-public r-rstan
21516 (package
21517 (name "r-rstan")
21518 (version "2.21.2")
21519 (source
21520 (origin
21521 (method url-fetch)
21522 (uri (cran-uri "rstan" version))
21523 (sha256
21524 (base32
21525 "0jh58qfrksd2j9w2zy4bajryivgp36m3xdb9mjrjqbk1ib9h83p3"))))
21526 (properties `((upstream-name . "rstan")))
21527 (build-system r-build-system)
21528 (arguments
21529 `(#:phases
21530 (modify-phases %standard-phases
21531 (add-before 'install 'set-timezone
21532 ;; This package is picky about timezones.
21533 (lambda* (#:key inputs #:allow-other-keys)
21534 (setenv "TZ" "UTC+1")
21535 (setenv "TZDIR"
21536 (string-append (assoc-ref inputs "tzdata")
21537 "/share/zoneinfo"))
21538 #t)))))
21539 (native-inputs
21540 `(("tzdata" ,tzdata-for-tests)
21541 ("pandoc" ,pandoc)
21542 ("r-knitr" ,r-knitr)))
21543 (propagated-inputs
21544 `(("r-bh" ,r-bh)
21545 ("r-ggplot2" ,r-ggplot2)
21546 ("r-gridextra" ,r-gridextra)
21547 ("r-inline" ,r-inline)
21548 ("r-loo" ,r-loo)
21549 ("r-pkgbuild" ,r-pkgbuild)
21550 ("r-rcpp" ,r-rcpp)
21551 ("r-rcppeigen" ,r-rcppeigen)
21552 ("r-rcppparallel" ,r-rcppparallel)
21553 ("r-stanheaders" ,r-stanheaders)
21554 ("r-v8" ,r-v8)
21555 ("r-withr" ,r-withr)))
21556 (home-page "https://discourse.mc-stan.org/")
21557 (synopsis "R interface to Stan")
21558 (description
21559 "User-facing R functions are provided to parse, compile, test, estimate,
21560 and analyze Stan models by accessing the header-only Stan library provided by
21561 the StanHeaders package. The Stan project develops a probabilistic
21562 programming language that implements full Bayesian statistical inference via
21563 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
21564 approximation, and (optionally penalized) maximum likelihood estimation via
21565 optimization. In all three cases, automatic differentiation is used to
21566 quickly and accurately evaluate gradients without burdening the user with the
21567 need to derive the partial derivatives.")
21568 (license license:gpl3+)))
21569
21570 (define-public r-rstanarm
21571 (package
21572 (name "r-rstanarm")
21573 (version "2.21.1")
21574 (source
21575 (origin
21576 (method url-fetch)
21577 (uri (cran-uri "rstanarm" version))
21578 (sha256
21579 (base32
21580 "04ggzak3f7jaxza3dxyrmxp5b48qcgyspy22ykbhr03g4hzp7jk8"))))
21581 (properties `((upstream-name . "rstanarm")))
21582 (build-system r-build-system)
21583 (inputs
21584 `(("pandoc" ,pandoc)
21585 ("pandoc-citeproc" ,pandoc-citeproc)))
21586 (propagated-inputs
21587 `(("r-bayesplot" ,r-bayesplot)
21588 ("r-bh" ,r-bh)
21589 ("r-ggplot2" ,r-ggplot2)
21590 ("r-lme4" ,r-lme4)
21591 ("r-loo" ,r-loo)
21592 ("r-matrix" ,r-matrix)
21593 ("r-nlme" ,r-nlme)
21594 ("r-rcpp" ,r-rcpp)
21595 ("r-rcppeigen" ,r-rcppeigen)
21596 ("r-rcppparallel" ,r-rcppparallel)
21597 ("r-rstan" ,r-rstan)
21598 ("r-rstantools" ,r-rstantools)
21599 ("r-shinystan" ,r-shinystan)
21600 ("r-stanheaders" ,r-stanheaders)
21601 ("r-survival" ,r-survival)))
21602 (native-inputs
21603 `(("r-knitr" ,r-knitr)))
21604 (home-page "https://mc-stan.org/rstanarm/")
21605 (synopsis "Bayesian applied regression modeling via Stan")
21606 (description
21607 "This package estimates previously compiled regression models using the
21608 @code{rstan} package, which provides the R interface to the Stan C++ library
21609 for Bayesian estimation. Users specify models via the customary R syntax with
21610 a formula and @code{data.frame} plus some additional arguments for priors.")
21611 (license license:gpl3+)))
21612
21613 (define-public r-kendall
21614 (package
21615 (name "r-kendall")
21616 (version "2.2")
21617 (source
21618 (origin
21619 (method url-fetch)
21620 (uri (cran-uri "Kendall" version))
21621 (sha256
21622 (base32
21623 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
21624 (properties `((upstream-name . "Kendall")))
21625 (build-system r-build-system)
21626 (propagated-inputs
21627 `(("r-boot" ,r-boot)))
21628 (native-inputs
21629 `(("gfortran" ,gfortran)))
21630 (home-page "https://cran.r-project.org/web/packages/Kendall/")
21631 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
21632 (description
21633 "This package computes the Kendall rank correlation and Mann-Kendall
21634 trend test.")
21635 (license license:gpl2+)))
21636
21637 (define-public r-zyp
21638 (package
21639 (name "r-zyp")
21640 (version "0.10-1.1")
21641 (source
21642 (origin
21643 (method url-fetch)
21644 (uri (cran-uri "zyp" version))
21645 (sha256
21646 (base32
21647 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
21648 (properties `((upstream-name . "zyp")))
21649 (build-system r-build-system)
21650 (propagated-inputs
21651 `(("r-kendall" ,r-kendall)))
21652 (home-page "https://cran.r-project.org/web/packages/zyp/")
21653 (synopsis "Zhang + Yue-Pilon Trends Package")
21654 (description
21655 "This package contains an efficient implementation of Sen's slope
21656 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
21657 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
21658 climate data.")
21659 (license license:lgpl2.1)))
21660
21661 (define-public r-rlinsolve
21662 (package
21663 (name "r-rlinsolve")
21664 (version "0.3.1")
21665 (source
21666 (origin
21667 (method url-fetch)
21668 (uri (cran-uri "Rlinsolve" version))
21669 (sha256
21670 (base32
21671 "1x02xxbkchcwwfa2123n9yqfzinfi0zba8zxhp977czzwysy75cc"))))
21672 (properties `((upstream-name . "Rlinsolve")))
21673 (build-system r-build-system)
21674 (propagated-inputs
21675 `(("r-matrix" ,r-matrix)
21676 ("r-rcpp" ,r-rcpp)
21677 ("r-rcpparmadillo" ,r-rcpparmadillo)
21678 ("r-rdpack" ,r-rdpack)))
21679 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
21680 (synopsis "Iterative solvers for (sparse) linear system of equations")
21681 (description
21682 "Solving a system of linear equations is one of the most fundamental
21683 computational problems for many fields of mathematical studies, such as
21684 regression problems from statistics or numerical partial differential
21685 equations. This package provides basic stationary iterative solvers such as
21686 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
21687 Nonstationary, also known as Krylov subspace methods are also provided.
21688 Sparse matrix computation is also supported in that solving large and sparse
21689 linear systems can be manageable using the @code{Matrix} package along with
21690 @code{RcppArmadillo}.")
21691 (license license:gpl3+)))
21692
21693 (define-public r-zvcv
21694 (package
21695 (name "r-zvcv")
21696 (version "2.1.0")
21697 (source
21698 (origin
21699 (method url-fetch)
21700 (uri (cran-uri "ZVCV" version))
21701 (sha256
21702 (base32
21703 "0np6h6x74kz1x13wmbkkm1wq43d8bnn2khzjc80prqdi6n0m9v8r"))))
21704 (properties `((upstream-name . "ZVCV")))
21705 (build-system r-build-system)
21706 (propagated-inputs
21707 `(("r-abind" ,r-abind)
21708 ("r-bh" ,r-bh)
21709 ("r-dplyr" ,r-dplyr)
21710 ("r-glmnet" ,r-glmnet)
21711 ("r-magrittr" ,r-magrittr)
21712 ("r-mvtnorm" ,r-mvtnorm)
21713 ("r-rcpp" ,r-rcpp)
21714 ("r-rcpparmadillo" ,r-rcpparmadillo)
21715 ("r-rlinsolve" ,r-rlinsolve)))
21716 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
21717 (synopsis "Zero-Variance Control Variates")
21718 (description
21719 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
21720 to reduce the variance of Monte Carlo estimators of expectations using the
21721 derivatives of the log target. Once the derivatives are available, the only
21722 additional computational effort is in solving a linear regression problem.
21723 This method has been extended to higher dimensions using regularisation. This
21724 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
21725 samples, derivatives and function evaluations are available. Additional
21726 functions for applying ZV-CV to two estimators for the normalising constant of
21727 the posterior distribution in Bayesian statistics are also supplied.")
21728 (license license:gpl2+)))
21729
21730 (define-public r-ztype
21731 (package
21732 (name "r-ztype")
21733 (version "0.1.0")
21734 (source
21735 (origin
21736 (method url-fetch)
21737 (uri (cran-uri "ztype" version))
21738 (sha256
21739 (base32
21740 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
21741 (properties `((upstream-name . "ztype")))
21742 (build-system r-build-system)
21743 (propagated-inputs
21744 `(("r-assertthat" ,r-assertthat)
21745 ("r-dplyr" ,r-dplyr)
21746 ("r-ggplot2" ,r-ggplot2)
21747 ("r-lubridate" ,r-lubridate)
21748 ("r-magrittr" ,r-magrittr)
21749 ("r-rvest" ,r-rvest)
21750 ("r-stringr" ,r-stringr)))
21751 (home-page "https://cran.r-project.org/web/packages/ztype/")
21752 (synopsis "Run a Ztype game loaded with R functions")
21753 (description
21754 "How fast can you type R functions on your keyboard? Find out by running
21755 a @code{zty.pe} game: export R functions as instructions to type to destroy
21756 opponents' vessels.")
21757 (license license:gpl3)))
21758
21759 (define-public r-zseq
21760 (package
21761 (name "r-zseq")
21762 (version "0.2.0")
21763 (source
21764 (origin
21765 (method url-fetch)
21766 (uri (cran-uri "Zseq" version))
21767 (sha256
21768 (base32
21769 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
21770 (properties `((upstream-name . "Zseq")))
21771 (build-system r-build-system)
21772 (propagated-inputs
21773 `(("r-gmp" ,r-gmp)))
21774 (home-page "https://cran.r-project.org/web/packages/Zseq/")
21775 (synopsis "Integer sequence generator")
21776 (description
21777 "This package generates well-known integer sequences. The @code{gmp}
21778 package is adopted for computing with arbitrarily large numbers. Every
21779 function has a hyperlink to its corresponding item in the @dfn{On-Line
21780 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
21781 (license license:gpl3+)))
21782
21783 (define-public r-isoband
21784 (package
21785 (name "r-isoband")
21786 (version "0.2.2")
21787 (source
21788 (origin
21789 (method url-fetch)
21790 (uri (cran-uri "isoband" version))
21791 (sha256
21792 (base32
21793 "044fg014gb6v6v11gm7ivfipz45iqw9cpahjhaacw6kyahyb66zx"))))
21794 (properties `((upstream-name . "isoband")))
21795 (build-system r-build-system)
21796 (propagated-inputs
21797 `(("r-testthat" ,r-testthat)))
21798 (native-inputs
21799 `(("r-knitr" ,r-knitr)))
21800 (home-page "https://github.com/wilkelab/isoband")
21801 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
21802 (description
21803 "This package provides a fast C++ implementation to generate contour
21804 lines (isolines) and contour polygons (isobands) from regularly spaced grids
21805 containing elevation data.")
21806 (license license:expat)))
21807
21808 (define-public r-ppcor
21809 (package
21810 (name "r-ppcor")
21811 (version "1.1")
21812 (source
21813 (origin
21814 (method url-fetch)
21815 (uri (cran-uri "ppcor" version))
21816 (sha256
21817 (base32
21818 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
21819 (properties `((upstream-name . "ppcor")))
21820 (build-system r-build-system)
21821 (propagated-inputs
21822 `(("r-mass" ,r-mass)))
21823 (home-page "https://cran.r-project.org/web/packages/ppcor/")
21824 (synopsis "Partial and semi-partial correlation")
21825 (description
21826 "This package provides users not only with a function to readily
21827 calculate the higher-order partial and semi-partial correlations but also with
21828 statistics and p-values of the correlation coefficients.")
21829 (license license:gpl2)))
21830
21831 (define-public r-hrbrthemes
21832 (package
21833 (name "r-hrbrthemes")
21834 (version "0.8.0")
21835 (source
21836 (origin
21837 (method url-fetch)
21838 (uri (cran-uri "hrbrthemes" version))
21839 (sha256
21840 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
21841 (properties `((upstream-name . "hrbrthemes")))
21842 (build-system r-build-system)
21843 (propagated-inputs
21844 `(("r-extrafont" ,r-extrafont)
21845 ("r-gdtools" ,r-gdtools)
21846 ("r-ggplot2" ,r-ggplot2)
21847 ("r-htmltools" ,r-htmltools)
21848 ("r-knitr" ,r-knitr)
21849 ("r-magrittr" ,r-magrittr)
21850 ("r-rmarkdown" ,r-rmarkdown)
21851 ("r-scales" ,r-scales)))
21852 (native-inputs
21853 `(("r-knitr" ,r-knitr)))
21854 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
21855 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
21856 (description
21857 "This package provides a compilation of extra @code{ggplot2} themes,
21858 scales and utilities, including a spell check function for plot label fields
21859 and an overall emphasis on typography.")
21860 (license license:expat)))
21861
21862 (define-public r-crochet
21863 (package
21864 (name "r-crochet")
21865 (version "2.3.0")
21866 (source
21867 (origin
21868 (method url-fetch)
21869 (uri (cran-uri "crochet" version))
21870 (sha256
21871 (base32
21872 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
21873 (build-system r-build-system)
21874 (native-inputs
21875 `(("r-knitr" ,r-knitr)))
21876 (home-page "https://github.com/agrueneberg/crochet")
21877 (synopsis "Implementation Helper for Matrix-Like Types")
21878 (description
21879 "Functions to help implement the extraction / subsetting / indexing
21880 function @code{[} and replacement function @code{[<-} of custom matrix-like
21881 types (based on S3, S4, etc.), modeled as closely to the base matrix class
21882 as possible (with tests to prove it).")
21883 (license license:expat)))
21884
21885 (define-public r-boa
21886 (package
21887 (name "r-boa")
21888 (version "1.1.8-2")
21889 (source
21890 (origin
21891 (method url-fetch)
21892 (uri (cran-uri "boa" version))
21893 (sha256
21894 (base32
21895 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
21896 (properties `((upstream-name . "boa")))
21897 (build-system r-build-system)
21898 (home-page "http://www.jstatsoft.org/v21/i11")
21899 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
21900 (description
21901 "This package provides a menu-driven program and library of functions for
21902 carrying out convergence diagnostics and statistical and graphical analysis of
21903 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
21904 (license license:gpl2+)))
21905
21906 (define-public r-httpcode
21907 (package
21908 (name "r-httpcode")
21909 (version "0.3.0")
21910 (source (origin
21911 (method url-fetch)
21912 (uri (cran-uri "httpcode" version))
21913 (sha256
21914 (base32
21915 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
21916 (build-system r-build-system)
21917 (home-page "https://github.com/sckott/httpcode")
21918 (synopsis "HTTP status code helper")
21919 (description "@code{httpcode} provides functionality for finding and
21920 explaining the meaning of @code{HTTP} status codes. Functions are included for
21921 searching for codes by full or partial number, by message, and to get
21922 appropriate dog and cat images for many status codes.")
21923 (license license:expat)))
21924
21925 (define-public r-latex2exp
21926 (package
21927 (name "r-latex2exp")
21928 (version "0.4.0")
21929 (source (origin
21930 (method url-fetch)
21931 (uri (cran-uri "latex2exp" version))
21932 (sha256
21933 (base32
21934 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
21935 (build-system r-build-system)
21936 (propagated-inputs
21937 `(("r-stringr" ,r-stringr)
21938 ("r-magrittr", r-magrittr)))
21939 (home-page "https://github.com/stefano-meschiari/latex2exp/")
21940 (synopsis "Use LaTeX expressions in plots")
21941 (description "@code{latex2exp} parses and converts LaTeX math formulas to
21942 R's plotmath expressions, used to enter mathematical formulas and symbols to be
21943 rendered as text, axis labels, etc. throughout R's plotting system.")
21944 (license license:expat)))
21945
21946 (define-public r-oai
21947 (package
21948 (name "r-oai")
21949 (version "0.3.0")
21950 (source (origin
21951 (method url-fetch)
21952 (uri (cran-uri "oai" version))
21953 (sha256
21954 (base32
21955 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
21956 (build-system r-build-system)
21957 (propagated-inputs
21958 `(("r-xml2" ,r-xml2)
21959 ("r-httr" ,r-httr)
21960 ("r-plyr" ,r-plyr)
21961 ("r-stringr" ,r-stringr)
21962 ("r-tibble" ,r-tibble)))
21963 (home-page "https://github.com/ropensci/oai/")
21964 (synopsis "General purpose OAI-PMH services client")
21965 (description "@code{oai} provides a general purpose client to work with
21966 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
21967 service. Functions are provided to work with the OAI-PMH verbs:
21968 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
21969 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
21970 (license license:expat)))
21971
21972 (define-public r-argon2
21973 (package
21974 (name "r-argon2")
21975 (version "0.2-0")
21976 (source
21977 (origin
21978 (method url-fetch)
21979 (uri (cran-uri "argon2" version))
21980 (sha256
21981 (base32
21982 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21983 (properties `((upstream-name . "argon2")))
21984 (build-system r-build-system)
21985 (home-page "https://github.com/wrathematics/argon2")
21986 (synopsis "Secure password hashing based on the argon2 algorithm")
21987 (description
21988 "This package provides utilities for secure password hashing via the
21989 argon2 algorithm.")
21990 (license license:bsd-2)))
21991
21992 (define-public r-getpass
21993 (package
21994 (name "r-getpass")
21995 (version "0.2-2")
21996 (source
21997 (origin
21998 (method url-fetch)
21999 (uri (cran-uri "getPass" version))
22000 (sha256
22001 (base32
22002 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
22003 (properties `((upstream-name . "getPass")))
22004 (build-system r-build-system)
22005 (propagated-inputs
22006 `(("r-rstudioapi" ,r-rstudioapi)))
22007 (home-page "https://github.com/wrathematics/getPass")
22008 (synopsis "Masked user input")
22009 (description
22010 "This package provides a micro-package for reading \"passwords\", i.e.
22011 reading user input with masking, so that the input is not displayed as it is
22012 typed. Currently, RStudio, the command line (every OS), and any platform
22013 where tcltk is present are supported.")
22014 (license license:bsd-2)))
22015
22016 (define-public r-remoter
22017 (package
22018 (name "r-remoter")
22019 (version "0.4-0")
22020 (source
22021 (origin
22022 (method url-fetch)
22023 (uri (cran-uri "remoter" version))
22024 (sha256
22025 (base32
22026 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
22027 (properties `((upstream-name . "remoter")))
22028 (build-system r-build-system)
22029 (propagated-inputs
22030 `(("r-argon2" ,r-argon2)
22031 ("r-getpass" ,r-getpass)
22032 ("r-pbdzmq" ,r-pbdzmq)
22033 ("r-png" ,r-png)))
22034 (home-page "https://github.com/RBigData/remoter")
22035 (synopsis "Control a remote R session from a local one")
22036 (description
22037 "This package provides a set of utilities for client/server computing
22038 with R, controlling a remote R session (the server) from a local one (the
22039 client).")
22040 (license license:bsd-2)))
22041
22042 (define-public r-asd
22043 (package
22044 (name "r-asd")
22045 (version "2.2")
22046 (source
22047 (origin
22048 (method url-fetch)
22049 (uri (cran-uri "asd" version))
22050 (sha256
22051 (base32
22052 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
22053 (properties `((upstream-name . "asd")))
22054 (build-system r-build-system)
22055 (propagated-inputs
22056 `(("r-mvtnorm" ,r-mvtnorm)))
22057 (home-page "https://cran.r-project.org/web/packages/asd")
22058 (synopsis "Simulations for Adaptive Seamless Designs")
22059 (description
22060 "This package provdes means to run simulations for adaptive seamless
22061 designs with and without early outcomes for treatment selection and
22062 subpopulation type designs.")
22063 (license license:gpl3)))
22064
22065 (define-public r-nbconvertr
22066 (package
22067 (name "r-nbconvertr")
22068 (version "1.3.2")
22069 (source
22070 (origin
22071 (method url-fetch)
22072 (uri (cran-uri "nbconvertR" version))
22073 (sha256
22074 (base32
22075 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
22076 (properties `((upstream-name . "nbconvertR")))
22077 (build-system r-build-system)
22078 (inputs
22079 `(("jupyter" ,python-nbconvert)
22080 ("pandoc" ,pandoc)))
22081 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
22082 (synopsis "Vignette engine wrapping Jupyter notebooks")
22083 (description
22084 "This package calls the Jupyter script @code{nbconvert} to create
22085 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
22086 containing rich text, code, and its output. Code cells can be edited and
22087 evaluated interactively.")
22088 (license license:gpl3)))
22089
22090 (define-public r-bridgesampling
22091 (package
22092 (name "r-bridgesampling")
22093 (version "1.0-0")
22094 (source
22095 (origin
22096 (method url-fetch)
22097 (uri (cran-uri "bridgesampling" version))
22098 (sha256
22099 (base32
22100 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
22101 (properties
22102 `((upstream-name . "bridgesampling")))
22103 (build-system r-build-system)
22104 (propagated-inputs
22105 `(("r-brobdingnag" ,r-brobdingnag)
22106 ("r-coda" ,r-coda)
22107 ("r-matrix" ,r-matrix)
22108 ("r-mvtnorm" ,r-mvtnorm)
22109 ("r-scales" ,r-scales)
22110 ("r-stringr" ,r-stringr)))
22111 (native-inputs
22112 `(("r-knitr" ,r-knitr)))
22113 (home-page "https://github.com/quentingronau/bridgesampling")
22114 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
22115 (description
22116 "This package provides functions for estimating marginal likelihoods,
22117 Bayes factors, posterior model probabilities, and normalizing constants in
22118 general, via different versions of bridge sampling.")
22119 (license license:gpl2+)))
22120
22121 (define-public r-tea
22122 (package
22123 (name "r-tea")
22124 (version "1.1")
22125 (source
22126 (origin
22127 (method url-fetch)
22128 (uri (cran-uri "tea" version))
22129 (sha256
22130 (base32
22131 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
22132 (properties
22133 `((upstream-name . "tea")))
22134 (build-system r-build-system)
22135 (propagated-inputs
22136 `(("r-matrix" ,r-matrix)))
22137 (home-page "https://cran.r-project.org/web/packages/tea/")
22138 (synopsis "Threshold estimation approaches")
22139 (description
22140 "This package provides different approaches for selecting the threshold
22141 in generalized Pareto distributions. Most of them are based on minimizing the
22142 AMSE-criterion or atleast by reducing the bias of the assumed GPD-model.
22143 Others are heuristically motivated by searching for stable sample paths, i.e.
22144 a nearly constant region of the tail index estimator with respect to k, which
22145 is the number of data in the tail. The third class is motivated by graphical
22146 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
22147 is also implemented here.")
22148 (license license:gpl3)))
22149
22150 (define-public r-awsmethods
22151 (package
22152 (name "r-awsmethods")
22153 (version "1.1-1")
22154 (source
22155 (origin
22156 (method url-fetch)
22157 (uri (cran-uri "awsMethods" version))
22158 (sha256
22159 (base32
22160 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
22161 (properties
22162 `((upstream-name . "awsMethods")))
22163 (build-system r-build-system)
22164 (home-page "http://www.wias-berlin.de/software/imaging/")
22165 (synopsis "Class and methods definitions")
22166 (description
22167 "This package defines the generic method @code{extract} and provides
22168 @code{openMP} support as needed in several packages like
22169 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
22170 (license license:gpl2+)))
22171
22172 (define-public r-aws
22173 (package
22174 (name "r-aws")
22175 (version "2.4-3")
22176 (source
22177 (origin
22178 (method url-fetch)
22179 (uri (cran-uri "aws" version))
22180 (sha256
22181 (base32
22182 "0ccm8ffjf8bylhfr64j9wzi49hzigz4bs172pvkb0bi4d5vdr0l5"))))
22183 (properties
22184 `((upstream-name . "aws")))
22185 (build-system r-build-system)
22186 (propagated-inputs
22187 `(("r-awsmethods" ,r-awsmethods)
22188 ("r-gsl" ,r-gsl)))
22189 (native-inputs
22190 `(("gfortran" ,gfortran)))
22191 (home-page "https://cran.r-project.org/web/packages/aws/")
22192 (synopsis "Adaptive weights smoothing")
22193 (description
22194 "This package provides a collection of R-functions implementing adaptive
22195 smoothing procedures in 1D, 2D and 3D. This includes the
22196 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
22197 Confidence Intervals} (ICI), variational approaches, and a non-local means
22198 filter.")
22199 (license license:gpl2+)))
22200
22201 (define-public r-sgloptim
22202 (package
22203 (name "r-sgloptim")
22204 (version "1.3.8")
22205 (source
22206 (origin
22207 (method url-fetch)
22208 (uri (cran-uri "sglOptim" version))
22209 (sha256
22210 (base32
22211 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
22212 (properties
22213 `((upstream-name . "sglOptim")))
22214 (build-system r-build-system)
22215 (propagated-inputs
22216 `(("r-bh" ,r-bh)
22217 ("r-doparallel" ,r-doparallel)
22218 ("r-foreach" ,r-foreach)
22219 ("r-matrix" ,r-matrix)
22220 ("r-rcpp" ,r-rcpp)
22221 ("r-rcpparmadillo" ,r-rcpparmadillo)
22222 ("r-rcppprogress" ,r-rcppprogress)))
22223 (native-inputs
22224 `(("r-knitr" ,r-knitr)))
22225 (home-page "https://github.com/nielsrhansen/sglOptim")
22226 (synopsis "Generic sparse group Lasso solver")
22227 (description
22228 "This package provides a fast generic solver for sparse group lasso
22229 optimization problems. The loss (objective) function must be defined in a C++
22230 module. The optimization problem is solved using a coordinate gradient
22231 descent algorithm. Convergence of the algorithm is established and the
22232 algorithm is applicable to a broad class of loss functions. Use of parallel
22233 computing for cross validation and subsampling is supported through the
22234 @code{foreach} and @code{doParallel} packages.")
22235 (license license:gpl2+)))
22236
22237 (define-public r-grouped
22238 (package
22239 (name "r-grouped")
22240 (version "0.6-0")
22241 (source
22242 (origin
22243 (method url-fetch)
22244 (uri (cran-uri "grouped" version))
22245 (sha256
22246 (base32
22247 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
22248 (properties
22249 `((upstream-name . "grouped")))
22250 (build-system r-build-system)
22251 (propagated-inputs
22252 `(("r-mass" ,r-mass)))
22253 (home-page "https://cran.r-project.org/web/packages/grouped/")
22254 (synopsis "Regression analysis of grouped and coarse data")
22255 (description
22256 "This package provides regression models for grouped and coarse data,
22257 under the coarsened at random assumption.")
22258 (license license:gpl2+)))
22259
22260 (define-public r-stam
22261 (package
22262 (name "r-stam")
22263 (version "0.0-1")
22264 (source
22265 (origin
22266 (method url-fetch)
22267 (uri (cran-uri "stam" version))
22268 (sha256
22269 (base32
22270 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
22271 (properties
22272 `((upstream-name . "stam")))
22273 (build-system r-build-system)
22274 (propagated-inputs
22275 `(("r-np" ,r-np)
22276 ("r-sp" ,r-sp)))
22277 (home-page "https://cran.r-project.org/web/packages/stam")
22278 (synopsis "Spatio-temporal analysis and modelling")
22279 (description
22280 "This package provides various methods to conduct Spatio-Temporal
22281 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
22282 Inferred Spatio-Temporal Modelling.")
22283 (license license:gpl2+)))
22284
22285 (define-public r-dcv
22286 (package
22287 (name "r-dcv")
22288 (version "0.1.1")
22289 (source
22290 (origin
22291 (method url-fetch)
22292 (uri (cran-uri "dcv" version))
22293 (sha256
22294 (base32
22295 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
22296 (properties
22297 `((upstream-name . "dcv")))
22298 (build-system r-build-system)
22299 (propagated-inputs
22300 `(("r-lmtest" ,r-lmtest)))
22301 (home-page "https://cran.r-project.org/web/packages/dcv/")
22302 (synopsis "Conventional cross-validation statistics for climate-growth model")
22303 (description
22304 "This package performs several conventional cross-validation statistical
22305 methods for climate-growth model in the climate reconstruction from tree
22306 rings, including Sign Test statistic, Reduction of Error statistic, Product
22307 Mean Test, Durbin-Watson statistic etc.")
22308 (license license:gpl2)))
22309
22310 (define-public r-rcdd
22311 (package
22312 (name "r-rcdd")
22313 (version "1.2-2")
22314 (source
22315 (origin
22316 (method url-fetch)
22317 (uri (cran-uri "rcdd" version))
22318 (sha256
22319 (base32
22320 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
22321 (properties
22322 `((upstream-name . "rcdd")))
22323 (build-system r-build-system)
22324 (inputs
22325 `(("gmp" ,gmp)))
22326 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
22327 (synopsis "Computational geometry")
22328 (description
22329 "This package converts back and forth between two representations of a
22330 convex polytope: as solution of a set of linear equalities and inequalities
22331 and as convex hull of set of points and rays. Also does linear programming
22332 and redundant generator elimination. All functions can use exact
22333 infinite-precision rational arithmetic.")
22334 (license license:gpl2)))
22335
22336 (define-public r-rxnat
22337 (package
22338 (name "r-rxnat")
22339 (version "1.0.12")
22340 (source
22341 (origin
22342 (method url-fetch)
22343 (uri (cran-uri "Rxnat" version))
22344 (sha256
22345 (base32
22346 "06w99b5lvpycykzlga6grw33zkajwbb04s89s37wy9zxy42vc4cb"))))
22347 (properties
22348 `((upstream-name . "Rxnat")))
22349 (build-system r-build-system)
22350 (propagated-inputs
22351 `(("r-dplyr" ,r-dplyr)
22352 ("r-httr" ,r-httr)
22353 ("r-rcurl" ,r-rcurl)))
22354 (native-inputs
22355 `(("r-knitr" ,r-knitr)))
22356 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
22357 (synopsis "Queries and extracts images from neuroimaging datasets")
22358 (description
22359 "This package allows communication with the Extensible Neuroimaging
22360 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
22361 download images.")
22362 (license license:gpl2)))
22363
22364 (define-public r-rserve
22365 (package
22366 (name "r-rserve")
22367 (version "1.8-6")
22368 (source
22369 (origin
22370 (method url-fetch)
22371 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
22372 version ".tar.gz"))
22373 (sha256
22374 (base32
22375 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
22376 (build-system r-build-system)
22377 (propagated-inputs
22378 `(("r-checkmate" ,r-checkmate)
22379 ("r-mime" ,r-mime)
22380 ("r-jsonlite" ,r-jsonlite)
22381 ("r-knitr" ,r-knitr)
22382 ("r-r6" ,r-r6)
22383 ("r-rcpp" ,r-rcpp)
22384 ("r-uuid" ,r-uuid)))
22385 (inputs
22386 `(("openssl" ,openssl)
22387 ("zlib" ,zlib)))
22388 (home-page "https://github.com/s-u/Rserve")
22389 (synopsis
22390 "Server providing access to R from many languages and systems")
22391 (description
22392 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
22393 binary requests to be sent to R. Every connection has a separate workspace
22394 and working directory. Client-side implementations are available for popular
22395 languages such as C/C++ and Java, allowing any application to use facilities
22396 of R without the need of linking to R code. Rserve supports remote
22397 connection, user authentication and file transfer. A simple R client is
22398 included in this package as well.")
22399 (license license:gpl2)))
22400
22401 (define-public r-brms
22402 (package
22403 (name "r-brms")
22404 (version "2.13.5")
22405 (source
22406 (origin
22407 (method url-fetch)
22408 (uri (cran-uri "brms" version))
22409 (sha256
22410 (base32
22411 "0a2m5wr134sxflmiq5jzvanzn81fv7xndy9gyvrq3bay9vakic69"))))
22412 (properties `((upstream-name . "brms")))
22413 (build-system r-build-system)
22414 (propagated-inputs
22415 `(("r-abind" ,r-abind)
22416 ("r-backports" ,r-backports)
22417 ("r-bayesplot" ,r-bayesplot)
22418 ("r-bridgesampling" ,r-bridgesampling)
22419 ("r-coda" ,r-coda)
22420 ("r-future" ,r-future)
22421 ("r-ggplot2" ,r-ggplot2)
22422 ("r-glue" ,r-glue)
22423 ("r-loo" ,r-loo)
22424 ("r-matrix" ,r-matrix)
22425 ("r-matrixstats" ,r-matrixstats)
22426 ("r-mgcv" ,r-mgcv)
22427 ("r-nleqslv" ,r-nleqslv)
22428 ("r-nlme" ,r-nlme)
22429 ("r-rcpp" ,r-rcpp)
22430 ("r-rstan" ,r-rstan)
22431 ("r-rstantools" ,r-rstantools)
22432 ("r-shinystan" ,r-shinystan)))
22433 (native-inputs `(("r-knitr" ,r-knitr)))
22434 (home-page
22435 "https://github.com/paul-buerkner/brms")
22436 (synopsis
22437 "Bayesian Regression Models using 'Stan'")
22438 (description
22439 "Fit Bayesian generalized (non-)linear multivariate multilevel models
22440 using 'Stan' for full Bayesian inference. A wide range of distributions and
22441 link functions are supported, allowing users to fit -- among others -- linear,
22442 robust linear, count data, survival, response times, ordinal, zero-inflated,
22443 hurdle, and even self-defined mixture models all in a multilevel context.
22444 Further modeling options include non-linear and smooth terms, auto-correlation
22445 structures, censored data, meta-analytic standard errors, and quite a few
22446 more. In addition, all parameters of the response distribution can be
22447 predicted in order to perform distributional regression. Prior specifications
22448 are flexible and explicitly encourage users to apply prior distributions that
22449 actually reflect their beliefs. Model fit can easily be assessed and compared
22450 with posterior predictive checks and leave-one-out cross-validation.")
22451 (license license:gpl2)))
22452
22453 (define-public r-mstate
22454 (package
22455 (name "r-mstate")
22456 (version "0.2.12")
22457 (source
22458 (origin
22459 (method url-fetch)
22460 (uri (cran-uri "mstate" version))
22461 (sha256
22462 (base32
22463 "0qnhivbibzss8yfsg44cvbf73n4jj4i28rbdysl88g14ig5sabgv"))))
22464 (properties `((upstream-name . "mstate")))
22465 (build-system r-build-system)
22466 (propagated-inputs
22467 `(("r-rcolorbrewer" ,r-rcolorbrewer)
22468 ("r-survival" ,r-survival)))
22469 (home-page
22470 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
22471 (synopsis
22472 "Data Preparation, Estimation and Prediction in Multi-State Models")
22473 (description
22474 "Contains functions for data preparation, descriptives, hazard estimation
22475 and prediction with Aalen-Johansen or simulation in competing risks and
22476 multi-state models.")
22477 (license license:gpl2+)))
22478
22479 (define-public r-scatterpie
22480 (package
22481 (name "r-scatterpie")
22482 (version "0.1.4")
22483 (source
22484 (origin
22485 (method url-fetch)
22486 (uri (cran-uri "scatterpie" version))
22487 (sha256
22488 (base32
22489 "0g5sn0iv6c1q7y51j4gbbbnil5089dgk1w4q94c7h5y3x7wfrzqb"))))
22490 (properties `((upstream-name . "scatterpie")))
22491 (build-system r-build-system)
22492 (propagated-inputs
22493 `(("r-ggforce" ,r-ggforce)
22494 ("r-ggplot2" ,r-ggplot2)
22495 ("r-rlang" ,r-rlang)
22496 ("r-rvcheck" ,r-rvcheck)
22497 ("r-tidyr" ,r-tidyr)))
22498 (native-inputs
22499 `(("r-knitr" ,r-knitr)))
22500 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
22501 (synopsis "Scatter pie plot")
22502 (description
22503 "This package creates scatterpie plots, especially useful for plotting
22504 pies on a map.")
22505 (license license:artistic2.0)))
22506
22507 (define-public r-boruta
22508 (package
22509 (name "r-boruta")
22510 (version "7.0.0")
22511 (source
22512 (origin
22513 (method url-fetch)
22514 (uri (cran-uri "Boruta" version))
22515 (sha256
22516 (base32
22517 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
22518 (properties `((upstream-name . "Boruta")))
22519 (build-system r-build-system)
22520 (propagated-inputs `(("r-ranger" ,r-ranger)))
22521 (home-page "https://gitlab.com/mbq/Boruta/")
22522 (synopsis "Wrapper algorithm for all relevant feature selection")
22523 (description
22524 "This package provides an all relevant feature selection wrapper
22525 algorithm. It finds relevant features by comparing original attributes'
22526 importance with importance achievable at random, estimated using their
22527 permuted copies (shadows).")
22528 (license license:gpl2+)))
22529
22530 (define-public r-directlabels
22531 (package
22532 (name "r-directlabels")
22533 (version "2020.6.17")
22534 (source
22535 (origin
22536 (method url-fetch)
22537 (uri (cran-uri "directlabels" version))
22538 (sha256
22539 (base32
22540 "1b6v206kizz5rjw03chjvn40a7cqihjpk80h1h79z2x27hp1qi3f"))))
22541 (build-system r-build-system)
22542 (propagated-inputs
22543 `(("r-quadprog" ,r-quadprog)))
22544 (native-inputs
22545 `(("r-knitr" ,r-knitr)))
22546 (home-page "http://directlabels.r-forge.r-project.org/")
22547 (synopsis "Direct labels for multicolor plots")
22548 (description
22549 "This package provides an extensible framework for automatically placing
22550 direct labels onto multicolor plots. Label positions are described using
22551 positioning methods that can be re-used across several different plots. There
22552 are heuristics for examining @code{trellis} and @code{ggplot} objects and
22553 inferring an appropriate positioning method.")
22554 (license license:gpl3)))
22555
22556 (define-public r-lsd
22557 (package
22558 (name "r-lsd")
22559 (version "4.1-0")
22560 (source
22561 (origin
22562 (method url-fetch)
22563 (uri (cran-uri "LSD" version))
22564 (sha256
22565 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
22566 (properties `((upstream-name . "LSD")))
22567 (build-system r-build-system)
22568 (home-page "https://cran.r-project.org/web/packages/LSD/")
22569 (synopsis "Lots of superior depictions tool creates colorful plots")
22570 (description
22571 "This package creates lots of colorful plots in a multitude of variations.
22572 Try a demo of the LSD by running @code{demotour()}.")
22573 ;; Either version
22574 (license (list license:gpl2 license:gpl3))))
22575
22576 (define-public r-fourcseq
22577 (package
22578 (name "r-fourcseq")
22579 (version "1.22.1")
22580 (source
22581 (origin
22582 (method url-fetch)
22583 (uri (bioconductor-uri "FourCSeq" version))
22584 (sha256
22585 (base32 "14q1ijnqnbd9xs60sfvyqjfiypjrvhacpwp2v85yfhcxw870cx5b"))))
22586 (properties `((upstream-name . "FourCSeq")))
22587 (build-system r-build-system)
22588 (propagated-inputs
22589 `(("r-biobase" ,r-biobase)
22590 ("r-biostrings" ,r-biostrings)
22591 ("r-deseq2" ,r-deseq2)
22592 ("r-fda" ,r-fda)
22593 ("r-genomicalignments" ,r-genomicalignments)
22594 ("r-genomicranges" ,r-genomicranges)
22595 ("r-ggbio" ,r-ggbio)
22596 ("r-ggplot2" ,r-ggplot2)
22597 ("r-gtools" ,r-gtools)
22598 ("r-lsd" ,r-lsd)
22599 ("r-matrix" ,r-matrix)
22600 ("r-reshape2" ,r-reshape2)
22601 ("r-rsamtools" ,r-rsamtools)
22602 ("r-rtracklayer" ,r-rtracklayer)
22603 ("r-summarizedexperiment" ,r-summarizedexperiment)))
22604 (native-inputs
22605 `(("r-knitr" ,r-knitr)))
22606 (home-page
22607 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
22608 (synopsis "Analysis of multiplexed 4C sequencing data")
22609 (description
22610 "This package is an R package dedicated to the analysis of (multiplexed)
22611 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
22612 interactions between DNA elements and identify differential interactions
22613 between conditions. The statistical analysis in R starts with individual bam
22614 files for each sample as inputs. To obtain these files, the package contains
22615 a Python script to demultiplex libraries and trim off primer sequences. With
22616 a standard alignment software the required bam files can be then be
22617 generated.")
22618 (license license:gpl3+)))
22619
22620 (define-public r-phylogram
22621 (package
22622 (name "r-phylogram")
22623 (version "2.1.0")
22624 (source
22625 (origin
22626 (method url-fetch)
22627 (uri (cran-uri "phylogram" version))
22628 (sha256
22629 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
22630 (properties `((upstream-name . "phylogram")))
22631 (build-system r-build-system)
22632 (propagated-inputs `(("r-ape" ,r-ape)))
22633 (home-page "https://github.com/ropensci/phylogram/")
22634 (synopsis "Dendrograms for evolutionary analysis")
22635 (description
22636 "The @code{r-phylogram} package is a tool for for developing phylogenetic
22637 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
22638 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
22639 as well as several tools for command-line tree manipulation and import/export
22640 via Newick parenthetic text. This improves accessibility to the comprehensive
22641 range of object-specific analytical and tree-visualization functions found
22642 across a wide array of bioinformatic R packages.")
22643 (license license:gpl3)))
22644
22645 (define-public r-kmer
22646 (package
22647 (name "r-kmer")
22648 (version "1.1.2")
22649 (source
22650 (origin
22651 (method url-fetch)
22652 (uri (cran-uri "kmer" version))
22653 (sha256
22654 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
22655 (properties `((upstream-name . "kmer")))
22656 (build-system r-build-system)
22657 (propagated-inputs
22658 `(("r-openssl" ,r-openssl)
22659 ("r-phylogram" ,r-phylogram)
22660 ("r-rcpp" ,r-rcpp)))
22661 (home-page "https://github.com/shaunpwilkinson/kmer/")
22662 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
22663 (description
22664 "@code{r-kmer} is an R package for rapidly computing distance matrices
22665 and clustering large sequence datasets using fast alignment-free k-mer
22666 counting and recursive k-means partitioning.")
22667 (license license:gpl3)))
22668
22669 (define-public r-hardhat
22670 (package
22671 (name "r-hardhat")
22672 (version "0.1.4")
22673 (source
22674 (origin
22675 (method url-fetch)
22676 (uri (cran-uri "hardhat" version))
22677 (sha256
22678 (base32
22679 "0gaj4hr4dj27jaasp7v0hzaivipplvq746ajsyz4yd1in03hfjvs"))))
22680 (properties `((upstream-name . "hardhat")))
22681 (build-system r-build-system)
22682 (propagated-inputs
22683 `(("r-glue" ,r-glue)
22684 ("r-rlang" ,r-rlang)
22685 ("r-tibble" ,r-tibble)
22686 ("r-vctrs" ,r-vctrs)))
22687 (native-inputs
22688 `(("r-knitr" ,r-knitr)))
22689 (home-page "https://github.com/tidymodels/hardhat")
22690 (synopsis "Construct modeling packages")
22691 (description
22692 "Building modeling packages is hard. A large amount of effort generally
22693 goes into providing an implementation for a new method that is efficient,
22694 fast, and correct, but often less emphasis is put on the user interface. A
22695 good interface requires specialized knowledge about S3 methods and formulas,
22696 which the average package developer might not have. The goal of
22697 @code{hardhat} is to reduce the burden around building new modeling packages
22698 by providing functionality for preprocessing, predicting, and validating
22699 input.")
22700 (license license:expat)))
22701
22702 (define-public r-shapforxgboost
22703 (package
22704 (name "r-shapforxgboost")
22705 (version "0.0.4")
22706 (source
22707 (origin
22708 (method url-fetch)
22709 (uri (cran-uri "SHAPforxgboost" version))
22710 (sha256
22711 (base32
22712 "0k6bg27wqnkzv82bcahbapmqhiz6rvnx81m23zbjw58c7lwshgnq"))))
22713 (properties
22714 `((upstream-name . "SHAPforxgboost")))
22715 (build-system r-build-system)
22716 (propagated-inputs
22717 `(("r-bbmisc" ,r-bbmisc)
22718 ("r-data-table" ,r-data-table)
22719 ("r-ggextra" ,r-ggextra)
22720 ("r-ggforce" ,r-ggforce)
22721 ("r-ggplot2" ,r-ggplot2)
22722 ("r-ggpubr" ,r-ggpubr)
22723 ("r-rcolorbrewer" ,r-rcolorbrewer)
22724 ("r-xgboost" ,r-xgboost)))
22725 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
22726 (synopsis "SHAP Plots for XGBoost")
22727 (description
22728 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
22729 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
22730 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
22731 and force plot. It relies on the @code{XGBoost} package to produce SHAP
22732 values.")
22733 (license license:expat)))
22734
22735 (define-public r-rismed
22736 (package
22737 (name "r-rismed")
22738 (version "2.1.7")
22739 (source
22740 (origin
22741 (method url-fetch)
22742 (uri (cran-uri "RISmed" version))
22743 (sha256
22744 (base32
22745 "08dmkkxsmwp9b4h2g1bbx03cijn793fsnzkmbima8x9d42vxnm1l"))))
22746 (properties `((upstream-name . "RISmed")))
22747 (build-system r-build-system)
22748 (home-page "https://cran.r-project.org/web/packages/RISmed")
22749 (synopsis "Download content from NCBI databases")
22750 (description
22751 "This package provides a set of tools to extract bibliographic
22752 content from the National Center for Biotechnology Information (NCBI)
22753 databases, including PubMed. The name RISmed is a portmanteau of
22754 RIS (for Research Information Systems, a common tag format for
22755 bibliographic data) and PubMed.")
22756 (license license:gpl2+)))
22757
22758 (define-public r-semver
22759 (package
22760 (name "r-semver")
22761 (version "0.2.0")
22762 (source
22763 (origin
22764 (method url-fetch)
22765 (uri (cran-uri "semver" version))
22766 (sha256
22767 (base32
22768 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
22769 (properties `((upstream-name . "semver")))
22770 (build-system r-build-system)
22771 (propagated-inputs
22772 `(("r-assertthat" ,r-assertthat)
22773 ("r-rcpp" ,r-rcpp)))
22774 (native-inputs `(("r-knitr" ,r-knitr)))
22775 (home-page "https://github.com/johndharrison/semver")
22776 (synopsis "Parser for Semantic Versioning 2.0.0")
22777 (description
22778 "This package provides tools and functions for parsing, rendering and
22779 operating on semantic version strings. Semantic versioning is a simple set of
22780 rules and requirements that dictate how version numbers are assigned and
22781 incremented as outlined at @url{http://semver.org}.")
22782 (license license:expat)))
22783
22784 (define-public r-binman
22785 (package
22786 (name "r-binman")
22787 (version "0.1.1")
22788 (source
22789 (origin
22790 (method url-fetch)
22791 (uri (cran-uri "binman" version))
22792 (sha256
22793 (base32
22794 "0hm0h285p4v9lhrqjy8s22f1s1vmfpfla5iaycpj8vw3qb3632az"))))
22795 (properties `((upstream-name . "binman")))
22796 (build-system r-build-system)
22797 (propagated-inputs
22798 `(("r-assertthat" ,r-assertthat)
22799 ("r-httr" ,r-httr)
22800 ("r-jsonlite" ,r-jsonlite)
22801 ("r-rappdirs" ,r-rappdirs)
22802 ("r-semver" ,r-semver)
22803 ("r-xml2" ,r-xml2)
22804 ("r-yaml" ,r-yaml)))
22805 (native-inputs `(("r-knitr" ,r-knitr)))
22806 (home-page "https://github.com/ropensci/binman")
22807 (synopsis "Binary download manager")
22808 (description
22809 "This package provides tools and functions for managing the download of
22810 binary files. Binary repositories are defined in the YAML format. Defining
22811 new pre-download, download and post-download templates allow additional
22812 repositories to be added.")
22813 (license license:expat)))
22814
22815 (define-public r-wdman
22816 (package
22817 (name "r-wdman")
22818 (version "0.2.5")
22819 (source
22820 (origin
22821 (method url-fetch)
22822 (uri (cran-uri "wdman" version))
22823 (sha256
22824 (base32
22825 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
22826 (properties `((upstream-name . "wdman")))
22827 (build-system r-build-system)
22828 (propagated-inputs
22829 `(("r-assertthat" ,r-assertthat)
22830 ("r-binman" ,r-binman)
22831 ("r-processx" ,r-processx)
22832 ("r-semver" ,r-semver)
22833 ("r-yaml" ,r-yaml)))
22834 (native-inputs `(("r-knitr" ,r-knitr)))
22835 (home-page "https://docs.ropensci.org/wdman/")
22836 (synopsis "Webdriver/Selenium binary manager")
22837 (description
22838 "There are a number of binary files associated with the
22839 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
22840 @url{https://sites.google.com/a/chromium.org/chromedriver/},
22841 @url{https://github.com/mozilla/geckodriver},
22842 @url{http://phantomjs.org/download.html}, and
22843 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
22844 more information). This package provides functions to download these binaries
22845 and to manage processes involving them.")
22846 (license license:expat)))
22847
22848 (define-public r-rselenium
22849 (package
22850 (name "r-rselenium")
22851 (version "1.7.7")
22852 (source
22853 (origin
22854 (method url-fetch)
22855 (uri (cran-uri "RSelenium" version))
22856 (sha256
22857 (base32
22858 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
22859 (properties `((upstream-name . "RSelenium")))
22860 (build-system r-build-system)
22861 (propagated-inputs
22862 `(("r-binman" ,r-binman)
22863 ("r-catools" ,r-catools)
22864 ("r-httr" ,r-httr)
22865 ("r-openssl" ,r-openssl)
22866 ("r-wdman" ,r-wdman)
22867 ("r-xml" ,r-xml)))
22868 (native-inputs `(("r-knitr" ,r-knitr)))
22869 (home-page "https://docs.ropensci.org/RSelenium/")
22870 (synopsis "R bindings for Selenium WebDriver")
22871 (description
22872 "This package provides a set of R bindings for the Selenium 2.0
22873 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
22874 information) using the @code{JsonWireProtocol} (see
22875 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
22876 information). Selenium 2.0 WebDriver allows driving a web browser natively as
22877 a user would either locally or on a remote machine using the Selenium server
22878 it marks a leap forward in terms of web browser automation. Selenium
22879 automates web browsers (commonly referred to as browsers). Using RSelenium
22880 you can automate browsers locally or remotely.")
22881 (license license:agpl3+)))
22882
22883 (define-public r-conquer
22884 (package
22885 (name "r-conquer")
22886 (version "1.0.2")
22887 (source
22888 (origin
22889 (method url-fetch)
22890 (uri (cran-uri "conquer" version))
22891 (sha256
22892 (base32
22893 "1zvlsrbmrij011mcdi3qngs1al2lhrdiyknxnk0w1zhzrra62bsl"))))
22894 (properties `((upstream-name . "conquer")))
22895 (build-system r-build-system)
22896 (propagated-inputs
22897 `(("r-matrix" ,r-matrix)
22898 ("r-matrixstats" ,r-matrixstats)
22899 ("r-rcpp" ,r-rcpp)
22900 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22901 (home-page "https://github.com/XiaoouPan/conquer")
22902 (synopsis "Convolution-type smoothed quantile regression")
22903 (description
22904 "This package provides fast and accurate convolution-type smoothed
22905 quantile regression, implemented using Barzilai-Borwein gradient descent with
22906 a Huber regression warm start. Confidence intervals for regression
22907 coefficients are constructed using multiplier bootstrap.")
22908 (license license:gpl3)))
22909
22910 (define-public r-fastshap
22911 (package
22912 (name "r-fastshap")
22913 (version "0.0.5")
22914 (source
22915 (origin
22916 (method url-fetch)
22917 (uri (cran-uri "fastshap" version))
22918 (sha256
22919 (base32
22920 "08f25ib5mry6h8lvj0g3clc9kfl5g2wdd8x8bw455wwmbcm6x5vg"))))
22921 (properties `((upstream-name . "fastshap")))
22922 (build-system r-build-system)
22923 (propagated-inputs
22924 `(("r-abind" ,r-abind)
22925 ("r-ggplot2" ,r-ggplot2)
22926 ("r-gridextra" ,r-gridextra)
22927 ("r-matrixstats" ,r-matrixstats)
22928 ("r-plyr" ,r-plyr)
22929 ("r-rcpp" ,r-rcpp)
22930 ("r-rcpparmadillo" ,r-rcpparmadillo)
22931 ("r-tibble" ,r-tibble)))
22932 (home-page "https://github.com/bgreenwell/fastshap")
22933 (synopsis "Fast approximate Shapley values")
22934 (description
22935 "This package computes fast (relative to other implementations)
22936 approximate Shapley values for any supervised learning model. Shapley values
22937 help to explain the predictions from any black box model using ideas from game
22938 theory; see @url{Strumbel and Kononenko (2014),
22939 doi.org/10.1007/s10115-013-0679-x} for details.")
22940 (license license:gpl2+)))
22941
22942 (define-public r-metrics
22943 (package
22944 (name "r-metrics")
22945 (version "0.1.4")
22946 (source
22947 (origin
22948 (method url-fetch)
22949 (uri (cran-uri "Metrics" version))
22950 (sha256
22951 (base32
22952 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
22953 (properties `((upstream-name . "Metrics")))
22954 (build-system r-build-system)
22955 (home-page "https://github.com/mfrasco/Metrics")
22956 (synopsis "Evaluation metrics for machine learning")
22957 (description
22958 "This package provides an implementation of evaluation metrics in R that
22959 are commonly used in supervised machine learning. It implements metrics for
22960 regression, time series, binary classification, classification, and
22961 information retrieval problems. It has zero dependencies and a consistent,
22962 simple interface for all functions.")
22963 (license license:bsd-3)))
22964
22965 (define-public r-iml
22966 (package
22967 (name "r-iml")
22968 (version "0.10.0")
22969 (source
22970 (origin
22971 (method url-fetch)
22972 (uri (cran-uri "iml" version))
22973 (sha256
22974 (base32
22975 "0xm3q42qahq798ilgg050df0mahhbdfd3fx3i7cpx606h38si0x7"))))
22976 (properties `((upstream-name . "iml")))
22977 (build-system r-build-system)
22978 (propagated-inputs
22979 `(("r-checkmate" ,r-checkmate)
22980 ("r-data-table" ,r-data-table)
22981 ("r-formula" ,r-formula)
22982 ("r-future" ,r-future)
22983 ("r-future-apply" ,r-future-apply)
22984 ("r-ggplot2" ,r-ggplot2)
22985 ("r-gridextra" ,r-gridextra)
22986 ("r-metrics" ,r-metrics)
22987 ("r-prediction" ,r-prediction)
22988 ("r-r6" ,r-r6)))
22989 (native-inputs `(("r-knitr" ,r-knitr)))
22990 (home-page "https://github.com/christophM/iml")
22991 (synopsis "Interpretable machine learning")
22992 (description
22993 "This package provides interpretability methods to analyze the behavior
22994 and predictions of any machine learning model. Implemented methods are:
22995
22996 @itemize
22997 @item Feature importance described by Fisher et al. (2018),
22998 @item accumulated local effects plots described by Apley (2018),
22999 @item partial dependence plots described by Friedman (2001),
23000 @item individual conditional expectation ('ice') plots described by Goldstein
23001 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
23002 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
23003 @item the Shapley Value described by Strumbelj et. al (2014)
23004 @url{https://doi.org/10.1007/s10115-013-0679-x},
23005 @item feature interactions described by Friedman et. al
23006 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
23007 @end itemize
23008 ")
23009 (license license:expat)))
23010
23011 (define-public r-goftest
23012 (package
23013 (name "r-goftest")
23014 (version "1.2-2")
23015 (source
23016 (origin
23017 (method url-fetch)
23018 (uri (cran-uri "goftest" version))
23019 (sha256
23020 (base32
23021 "0ivnkqhv5xgiv05dm648nngacymd8x8g0fyppv3bc0mhcqk9k5z4"))))
23022 (properties `((upstream-name . "goftest")))
23023 (build-system r-build-system)
23024 (home-page "https://github.com/baddstats/goftest")
23025 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
23026 (description
23027 "This package provides Cramer-Von Mises and Anderson-Darling tests of
23028 goodness-of-fit for continuous univariate distributions, using efficient
23029 algorithms.")
23030 (license license:gpl2+)))
23031
23032 (define-public r-tensor
23033 (package
23034 (name "r-tensor")
23035 (version "1.5")
23036 (source
23037 (origin
23038 (method url-fetch)
23039 (uri (cran-uri "tensor" version))
23040 (sha256
23041 (base32
23042 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
23043 (properties `((upstream-name . "tensor")))
23044 (build-system r-build-system)
23045 (home-page "https://cran.r-project.org/web/packages/tensor/")
23046 (synopsis "Tensor product of arrays")
23047 (description
23048 "The tensor product of two arrays is notionally an outer product of the
23049 arrays collapsed in specific extents by summing along the appropriate
23050 diagonals. This package allows you to compute the tensor product of arrays.")
23051 (license license:gpl2+)))
23052
23053 (define-public r-spatstat-utils
23054 (package
23055 (name "r-spatstat-utils")
23056 (version "1.17-0")
23057 (source
23058 (origin
23059 (method url-fetch)
23060 (uri (cran-uri "spatstat.utils" version))
23061 (sha256
23062 (base32
23063 "08h9kzkkxvlnngxnv5mdylfali5jj4yhgbr8kvf8l7glswz6ik9r"))))
23064 (properties
23065 `((upstream-name . "spatstat.utils")))
23066 (build-system r-build-system)
23067 (home-page "http://www.spatstat.org")
23068 (synopsis "Utility functions for spatstat")
23069 (description
23070 "This package contains utility functions for the @code{spatstat} package
23071 which may also be useful for other purposes.")
23072 (license license:gpl2+)))
23073
23074 (define-public r-spatstat-data
23075 (package
23076 (name "r-spatstat-data")
23077 (version "1.4-3")
23078 (source
23079 (origin
23080 (method url-fetch)
23081 (uri (cran-uri "spatstat.data" version))
23082 (sha256
23083 (base32
23084 "18lfj5vkwxgf5w9qz0g5al3zy8y2yi3bnd13w24hszfc82nbcmc9"))))
23085 (properties `((upstream-name . "spatstat.data")))
23086 (build-system r-build-system)
23087 (propagated-inputs
23088 `(("r-matrix" ,r-matrix)
23089 ("r-spatstat-utils" ,r-spatstat-utils)))
23090 (home-page "http://www.spatstat.org")
23091 (synopsis "Datasets for spatstat")
23092 (description
23093 "This package contains all the datasets for the @code{spatstat}
23094 package.")
23095 (license license:gpl2+)))
23096
23097 (define-public r-spatstat
23098 (package
23099 (name "r-spatstat")
23100 (version "1.64-1")
23101 (source
23102 (origin
23103 (method url-fetch)
23104 (uri (cran-uri "spatstat" version))
23105 (sha256
23106 (base32
23107 "06jmxfs9kz9qqi3ichfgn8dglwb87kq2nl578p83za5psv8cfgya"))))
23108 (properties `((upstream-name . "spatstat")))
23109 (build-system r-build-system)
23110 (propagated-inputs
23111 `(("r-abind" ,r-abind)
23112 ("r-deldir" ,r-deldir)
23113 ("r-goftest" ,r-goftest)
23114 ("r-matrix" ,r-matrix)
23115 ("r-mgcv" ,r-mgcv)
23116 ("r-nlme" ,r-nlme)
23117 ("r-polyclip" ,r-polyclip)
23118 ("r-rpart" ,r-rpart)
23119 ("r-spatstat-data" ,r-spatstat-data)
23120 ("r-spatstat-utils" ,r-spatstat-utils)
23121 ("r-tensor" ,r-tensor)))
23122 (home-page "http://www.spatstat.org")
23123 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
23124 (description
23125 "This package provides a comprehensive toolbox for analysing Spatial
23126 Point Patterns. It is focused mainly on two-dimensional point patterns,
23127 including multitype/marked points, in any spatial region. It also supports
23128 three-dimensional point patterns, space-time point patterns in any number of
23129 dimensions, point patterns on a linear network, and patterns of other
23130 geometrical objects. It supports spatial covariate data such as pixel images
23131 and contains over 2000 functions for plotting spatial data, exploratory data
23132 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
23133 formal inference.")
23134 (license license:gpl2+)))
23135
23136 (define-public r-gaston
23137 (package
23138 (name "r-gaston")
23139 (version "1.5.6")
23140 (source
23141 (origin
23142 (method url-fetch)
23143 (uri (cran-uri "gaston" version))
23144 (sha256
23145 (base32
23146 "1bx6iqfjb9lf3vn0z7v8wjv9m7issvqsnymm4qsgl3622s6qz6rg"))))
23147 (properties `((upstream-name . "gaston")))
23148 (build-system r-build-system)
23149 (inputs `(("zlib" ,zlib)))
23150 (propagated-inputs
23151 `(("r-rcpp" ,r-rcpp)
23152 ("r-rcppeigen" ,r-rcppeigen)
23153 ("r-rcppparallel" ,r-rcppparallel)))
23154 (native-inputs `(("r-knitr" ,r-knitr)))
23155 (home-page "https://cran.r-project.org/web/packages/gaston/")
23156 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
23157 (description
23158 "This is a package for the manipulation of genetic data (SNPs).
23159 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
23160 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
23161 for linear mixed models (AIREML).")
23162 (license license:gpl3)))
23163
23164 (define-public r-cpp11
23165 (package
23166 (name "r-cpp11")
23167 (version "0.2.1")
23168 (source
23169 (origin
23170 (method url-fetch)
23171 (uri (cran-uri "cpp11" version))
23172 (sha256
23173 (base32
23174 "1113y61lj4cg1d2yjavdx9zih5rzb4pnxmj5v3sr4bhzlxz2scda"))))
23175 (properties `((upstream-name . "cpp11")))
23176 (build-system r-build-system)
23177 (native-inputs `(("r-knitr" ,r-knitr)))
23178 (home-page "https://github.com/r-lib/cpp11")
23179 (synopsis "C++11 Interface for R's C Interface")
23180 (description
23181 "This package provides a header only, C++11 interface to R's C interface.
23182 Compared to other approaches @code{cpp11} strives to be safe against long
23183 jumps from the C API as well as C++ exceptions, conform to normal R function
23184 semantics and supports interaction with @code{ALTREP} vectors.")
23185 (license license:expat)))
23186
23187 (define-public r-rcppziggurat
23188 (package
23189 (name "r-rcppziggurat")
23190 (version "0.1.5")
23191 (source
23192 (origin
23193 (method url-fetch)
23194 (uri (cran-uri "RcppZiggurat" version))
23195 (sha256
23196 (base32
23197 "0zmr3nvm5j0fpwxk3x9kxpwqbr66ldfvd10zy8xlgjbslz9myvfv"))))
23198 (properties `((upstream-name . "RcppZiggurat")))
23199 (build-system r-build-system)
23200 (propagated-inputs
23201 `(("r-rcpp" ,r-rcpp)
23202 ("r-rcppgsl" ,r-rcppgsl)))
23203 (native-inputs `(("r-knitr" ,r-knitr)))
23204 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
23205 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
23206 (description
23207 "The Ziggurat generator for normally distributed random numbers,
23208 originally proposed by Marsaglia and Tsang (2000,
23209 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
23210 times starting with Leong et al (2005,
23211 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
23212 aggregation for comparing different implementations in order to provide a
23213 'faster but good enough' alternative for use with R and C++ code.")
23214 (license license:gpl2+)))
23215
23216 (define-public r-rfast
23217 (package
23218 (name "r-rfast")
23219 (version "2.0.0")
23220 (source
23221 (origin
23222 (method url-fetch)
23223 (uri (cran-uri "Rfast" version))
23224 (sha256
23225 (base32
23226 "010dm5h2vayvfbh0zny7i2c7fmn83r2b54849r0b4id3wjpmg3xy"))))
23227 (properties `((upstream-name . "Rfast")))
23228 (build-system r-build-system)
23229 (propagated-inputs
23230 `(("r-rcpp" ,r-rcpp)
23231 ("r-rcpparmadillo" ,r-rcpparmadillo)
23232 ("r-rcppziggurat" ,r-rcppziggurat)))
23233 (home-page "https://github.com/RfastOfficial/Rfast")
23234 (synopsis "Collection of efficient and fast R functions")
23235 (description
23236 "This package provides a collection of fast (utility) functions for data
23237 analysis. Column- and row- wise means, medians, variances, minimums,
23238 maximums, many t, F and G-square tests, many regressions (normal, logistic,
23239 Poisson), are some of the many fast functions.")
23240 (license license:gpl2+)))
23241
23242 (define-public r-clusterr
23243 (package
23244 (name "r-clusterr")
23245 (version "1.2.2")
23246 (source
23247 (origin
23248 (method url-fetch)
23249 (uri (cran-uri "ClusterR" version))
23250 (sha256
23251 (base32
23252 "1ky172bk15a78hky77vl60j7c81nq2495sxjrv53is25nkac7sjm"))))
23253 (properties `((upstream-name . "ClusterR")))
23254 (build-system r-build-system)
23255 (propagated-inputs
23256 `(("r-ggplot2" ,r-ggplot2)
23257 ("r-gmp" ,r-gmp)
23258 ("r-gtools" ,r-gtools)
23259 ("r-rcpp" ,r-rcpp)
23260 ("r-rcpparmadillo" ,r-rcpparmadillo)))
23261 (native-inputs `(("r-knitr" ,r-knitr)))
23262 (home-page "https://github.com/mlampros/ClusterR")
23263 (synopsis "Clustering")
23264 (description
23265 "This package provides Gaussian mixture models, k-means,
23266 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
23267 option to plot, validate, predict (new data) and estimate the optimal number
23268 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
23269 the computationally intensive parts of the functions. For more information,
23270 see
23271
23272 @enumerate
23273 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
23274 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
23275 @url{https://doi.org/10.18637/jss.v001.i04};
23276 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
23277 Library, @url{https://doi.org/10.1145/1772690.1772862};
23278 @item \"Armadillo: a template-based C++ library
23279 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
23280 Software, @url{https://doi.org/10.21105/joss.00026};
23281 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
23282 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
23283 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
23284 @end enumerate
23285 ")
23286 (license license:gpl3)))
23287
23288 (define-public r-spectrum
23289 (package
23290 (name "r-spectrum")
23291 (version "1.1")
23292 (source
23293 (origin
23294 (method url-fetch)
23295 (uri (cran-uri "Spectrum" version))
23296 (sha256
23297 (base32
23298 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
23299 (properties `((upstream-name . "Spectrum")))
23300 (build-system r-build-system)
23301 (propagated-inputs
23302 `(("r-clusterr" ,r-clusterr)
23303 ("r-diptest" ,r-diptest)
23304 ("r-ggplot2" ,r-ggplot2)
23305 ("r-rfast" ,r-rfast)))
23306 (native-inputs `(("r-knitr" ,r-knitr)))
23307 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
23308 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
23309 (description
23310 "This package provides a self-tuning spectral clustering method for
23311 single or multi-view data. Spectrum uses a new type of adaptive density aware
23312 kernel that strengthens connections in the graph based on common nearest
23313 neighbours. It uses a tensor product graph data integration and diffusion
23314 procedure to integrate different data sources and reduce noise. Spectrum uses
23315 either the eigengap or multimodality gap heuristics to determine the number of
23316 clusters. The method is sufficiently flexible so that a wide range of
23317 Gaussian and non-Gaussian structures can be clustered with automatic selection
23318 of K.")
23319 (license license:agpl3+)))
23320
23321 (define-public r-nabor
23322 (package
23323 (name "r-nabor")
23324 (version "0.5.0")
23325 (source
23326 (origin
23327 (method url-fetch)
23328 (uri (cran-uri "nabor" version))
23329 (sha256
23330 (base32
23331 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
23332 (properties `((upstream-name . "nabor")))
23333 (build-system r-build-system)
23334 (propagated-inputs
23335 `(("r-bh" ,r-bh)
23336 ("r-rcpp" ,r-rcpp)
23337 ("r-rcppeigen" ,r-rcppeigen)))
23338 (home-page "https://cran.r-project.org/web/packages/nabor/")
23339 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
23340 (description
23341 "This package provides an R wrapper for libnabo, an exact or approximate
23342 k nearest neighbour library which is optimised for low dimensional
23343 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
23344 designed as a drop-in replacement for the RANN function @code{nn2}. In
23345 addition, objects which include the k-d tree search structure can be returned
23346 to speed up repeated queries of the same set of target points.")
23347 (license license:bsd-3)))
23348
23349 (define-public r-muhaz
23350 (package
23351 (name "r-muhaz")
23352 (version "1.2.6.1")
23353 (source
23354 (origin
23355 (method url-fetch)
23356 (uri (cran-uri "muhaz" version))
23357 (sha256
23358 (base32
23359 "08qh43zx6h3yby44q2vxphfvmfdmqxpgyp0734yn341sy9n8pkkk"))))
23360 (properties `((upstream-name . "muhaz")))
23361 (build-system r-build-system)
23362 (propagated-inputs
23363 `(("r-survival" ,r-survival)))
23364 (native-inputs
23365 `(("gfortran" ,gfortran)))
23366 (home-page "https://cran.r-project.org/web/packages/muhaz/")
23367 (synopsis "Hazard function estimation in survival analysis")
23368 (description
23369 "This package produces a smooth estimate of the hazard function for
23370 censored data.")
23371 ;; Any version of the GPL.
23372 (license license:gpl3+)))
23373
23374 (define-public r-flexsurv
23375 (package
23376 (name "r-flexsurv")
23377 (version "1.1.1")
23378 (source
23379 (origin
23380 (method url-fetch)
23381 (uri (cran-uri "flexsurv" version))
23382 (sha256
23383 (base32
23384 "0x7p1rv51pplfyyzcg63ssb8z56mig7y0363hkr0219w3cvyq9nr"))))
23385 (properties `((upstream-name . "flexsurv")))
23386 (build-system r-build-system)
23387 (propagated-inputs
23388 `(("r-desolve" ,r-desolve)
23389 ("r-mstate" ,r-mstate)
23390 ("r-muhaz" ,r-muhaz)
23391 ("r-mvtnorm" ,r-mvtnorm)
23392 ("r-quadprog" ,r-quadprog)
23393 ("r-rcpp" ,r-rcpp)
23394 ("r-survival" ,r-survival)
23395 ("r-tibble" ,r-tibble)
23396 ("r-tidyr" ,r-tidyr)))
23397 (native-inputs
23398 `(("r-knitr" ,r-knitr)))
23399 (home-page "https://github.com/chjackson/flexsurv-dev")
23400 (synopsis "Flexible parametric survival and multi-state models")
23401 (description
23402 "This package provides flexible parametric models for time-to-event data,
23403 including the Royston-Parmar spline model, generalized gamma and generalized F
23404 distributions. Any user-defined parametric distribution can be fitted, given
23405 at least an R function defining the probability density or hazard. There are
23406 also tools for fitting and predicting from fully parametric multi-state
23407 models.")
23408 (license license:gpl2+)))
23409
23410 (define-public r-transphylo
23411 (package
23412 (name "r-transphylo")
23413 (version "1.4.4")
23414 (source
23415 (origin
23416 (method url-fetch)
23417 (uri (cran-uri "TransPhylo" version))
23418 (sha256
23419 (base32
23420 "1506c97y8dnhd0c38rgvmg70q0l3xmmn07mjglhnw7hi5n5y9mv9"))))
23421 (properties `((upstream-name . "TransPhylo")))
23422 (build-system r-build-system)
23423 (propagated-inputs
23424 `(("r-ape" ,r-ape)
23425 ("r-rcpp" ,r-rcpp)))
23426 (native-inputs
23427 `(("r-knitr" ,r-knitr)))
23428 (home-page "https://cran.r-project.org/web/packages/TransPhylo/")
23429 (synopsis "Inference of transmission tree from a dated phylogeny")
23430 (description
23431 "This is a package to infer transmission trees from a dated phylogeny.
23432 It includes methods to simulate and analyze outbreaks. The methodology is
23433 described in @url{https://doi.org/10.1093/molbev/msu121,Didelot et al. (2014)}
23434 and @url{https://doi.org/10.1093/molbev/msw275,Didelot et al. (2017)}.")
23435 (license license:gpl2+)))
23436
23437 (define-public r-km-ci
23438 (package
23439 (name "r-km-ci")
23440 (version "0.5-2")
23441 (source
23442 (origin
23443 (method url-fetch)
23444 (uri (cran-uri "km.ci" version))
23445 (sha256
23446 (base32
23447 "1l6kw8jppaa1802yc5pbfwwgac56nhwc9p076ivylhms4w7cdf8v"))))
23448 (properties `((upstream-name . "km.ci")))
23449 (build-system r-build-system)
23450 (propagated-inputs
23451 `(("r-survival" ,r-survival)))
23452 (home-page "https://cran.r-project.org/web/packages/km.ci/")
23453 (synopsis "Confidence intervals for the Kaplan-Meier estimator")
23454 (description
23455 "This package computes various @dfn{confidence intervals} (CI) for the
23456 Kaplan-Meier estimator, namely: Petos CI, Rothman CI, CIs based on Greenwoods
23457 variance, Thomas and Grunkemeier CI and the simultaneous confidence bands by
23458 Nair and Hall and Wellner.")
23459 (license license:gpl2+)))
23460
23461 (define-public r-kmsurv
23462 (package
23463 (name "r-kmsurv")
23464 (version "0.1-5")
23465 (source
23466 (origin
23467 (method url-fetch)
23468 (uri (cran-uri "KMsurv" version))
23469 (sha256
23470 (base32
23471 "0hi5vvk584rl70gbrr75w9hc775xmbxnaig0dd6hlpi4071pnqjm"))))
23472 (properties `((upstream-name . "KMsurv")))
23473 (build-system r-build-system)
23474 (home-page "https://cran.r-project.org/web/packages/KMsurv/")
23475 (synopsis "Data sets from Klein and Moeschberger (1997), Survival Analysis")
23476 (description
23477 "This package provides data sets and functions for Klein and Moeschberger
23478 (1997), \"Survival Analysis, Techniques for Censored and Truncated Data\",
23479 Springer.")
23480 (license license:gpl3+)))
23481
23482 (define-public r-survmisc
23483 (package
23484 (name "r-survmisc")
23485 (version "0.5.5")
23486 (source
23487 (origin
23488 (method url-fetch)
23489 (uri (cran-uri "survMisc" version))
23490 (sha256
23491 (base32
23492 "00nvvl8gz4477ab24rd0xvfksm8msv8h021b9ld5c9cizc41n2bm"))))
23493 (properties `((upstream-name . "survMisc")))
23494 (build-system r-build-system)
23495 (propagated-inputs
23496 `(("r-data-table" ,r-data-table)
23497 ("r-ggplot2" ,r-ggplot2)
23498 ("r-gridextra" ,r-gridextra)
23499 ("r-km-ci" ,r-km-ci)
23500 ("r-kmsurv" ,r-kmsurv)
23501 ("r-knitr" ,r-knitr)
23502 ("r-survival" ,r-survival)
23503 ("r-xtable" ,r-xtable)
23504 ("r-zoo" ,r-zoo)))
23505 (native-inputs
23506 `(("r-knitr" ,r-knitr)))
23507 (home-page "https://cran.r-project.org/web/packages/survMisc/")
23508 (synopsis "Miscellaneous functions for survival data")
23509 (description
23510 "This package provides a collection of functions to help in the analysis
23511 of right-censored survival data. These extend the methods available in
23512 the @code{survival} package.")
23513 (license license:gpl2)))
23514
23515 (define-public r-exactranktests
23516 (package
23517 (name "r-exactranktests")
23518 (version "0.8-31")
23519 (source
23520 (origin
23521 (method url-fetch)
23522 (uri (cran-uri "exactRankTests" version))
23523 (sha256
23524 (base32
23525 "1154dkcid3njhamdp87qs9bnx7l8bdqkcjsds9q9f2xmizs9x8gw"))))
23526 (properties
23527 `((upstream-name . "exactRankTests")))
23528 (build-system r-build-system)
23529 (home-page "https://cran.r-project.org/web/packages/exactRankTests/")
23530 (synopsis "Exact distributions for rank and permutation tests")
23531 (description
23532 "This package computes exact conditional p-values and quantiles using an
23533 implementation of the Shift-Algorithm by Streitberg & Roehmel.")
23534 (license license:gpl2+)))
23535
23536 (define-public r-maxstat
23537 (package
23538 (name "r-maxstat")
23539 (version "0.7-25")
23540 (source
23541 (origin
23542 (method url-fetch)
23543 (uri (cran-uri "maxstat" version))
23544 (sha256
23545 (base32
23546 "114z1rwxwvk05ijjhdppzm148n1h192fp0w12ky10zkrhf6kphbg"))))
23547 (properties `((upstream-name . "maxstat")))
23548 (build-system r-build-system)
23549 (propagated-inputs
23550 `(("r-exactranktests" ,r-exactranktests)
23551 ("r-mvtnorm" ,r-mvtnorm)))
23552 (home-page "https://cran.r-project.org/web/packages/maxstat/")
23553 (synopsis "Maximally selected rank statistics")
23554 (description
23555 "This package provides maximally selected rank statistics with several
23556 p-value approximations.")
23557 (license license:gpl2+)))
23558
23559 (define-public r-survminer
23560 (package
23561 (name "r-survminer")
23562 (version "0.4.8")
23563 (source
23564 (origin
23565 (method url-fetch)
23566 (uri (cran-uri "survminer" version))
23567 (sha256
23568 (base32
23569 "1niysd89mxb2a6ncvzm1s6xgfvq3psba65af0whh2p56r2hwrwff"))))
23570 (properties `((upstream-name . "survminer")))
23571 (build-system r-build-system)
23572 (propagated-inputs
23573 `(("r-broom" ,r-broom)
23574 ("r-dplyr" ,r-dplyr)
23575 ("r-ggplot2" ,r-ggplot2)
23576 ("r-ggpubr" ,r-ggpubr)
23577 ("r-gridextra" ,r-gridextra)
23578 ("r-magrittr" ,r-magrittr)
23579 ("r-maxstat" ,r-maxstat)
23580 ("r-purrr" ,r-purrr)
23581 ("r-rlang" ,r-rlang)
23582 ("r-scales" ,r-scales)
23583 ("r-survival" ,r-survival)
23584 ("r-survmisc" ,r-survmisc)
23585 ("r-tibble" ,r-tibble)
23586 ("r-tidyr" ,r-tidyr)))
23587 (native-inputs
23588 `(("r-knitr" ,r-knitr)))
23589 (home-page "https://rpkgs.datanovia.com/survminer/index.html")
23590 (synopsis "Drawing survival curves using ggplot2")
23591 (description
23592 "This package contains the function @code{ggsurvplot()} for easily
23593 drawing beautiful and 'ready-to-publish' survival curves with the 'number at
23594 risk' table and 'censoring count plot'. Other functions are also available to
23595 plot adjusted curves for Cox model and to visually examine Cox model
23596 assumptions.")
23597 (license license:gpl2)))
23598
23599 (define-public r-forge
23600 (package
23601 (name "r-forge")
23602 (version "0.2.0")
23603 (source
23604 (origin
23605 (method url-fetch)
23606 (uri (cran-uri "forge" version))
23607 (sha256
23608 (base32
23609 "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
23610 (properties `((upstream-name . "forge")))
23611 (build-system r-build-system)
23612 (propagated-inputs
23613 `(("r-magrittr" ,r-magrittr)
23614 ("r-rlang" ,r-rlang)))
23615 (home-page "https://cran.r-project.org/web/packages/forge/")
23616 (synopsis "Cast values into shape")
23617 (description
23618 "This package provides helper functions with a consistent interface to
23619 coerce and verify the types and shapes of values for input checking.")
23620 (license license:asl2.0)))
23621
23622 (define-public r-config
23623 (package
23624 (name "r-config")
23625 (version "0.3")
23626 (source
23627 (origin
23628 (method url-fetch)
23629 (uri (cran-uri "config" version))
23630 (sha256
23631 (base32
23632 "0l67nfpm42ssnk0bl4jmq6bibz8hawgfgh2s14s5c8mnimv6mpjs"))))
23633 (properties `((upstream-name . "config")))
23634 (build-system r-build-system)
23635 (propagated-inputs
23636 `(("r-yaml" ,r-yaml)))
23637 (native-inputs
23638 `(("r-knitr" ,r-knitr)))
23639 (home-page "https://github.com/rstudio/config")
23640 (synopsis "Manage environment specific configuration values")
23641 (description
23642 "This package lets you manage configuration values across multiple
23643 environments (e.g. development, test, production). It reads values using a
23644 function that determines the current environment and returns the appropriate
23645 value.")
23646 (license license:gpl3)))
23647
23648 (define-public r-adaptivesparsity
23649 (package
23650 (name "r-adaptivesparsity")
23651 (version "1.6")
23652 (source (origin
23653 (method url-fetch)
23654 (uri (cran-uri "AdaptiveSparsity" version))
23655 (sha256
23656 (base32
23657 "0imr5m8mll9j6n4icsv6z9rl5kbnwsp9wvzrg7n90nnmcxq2cz91"))))
23658 (properties
23659 `((upstream-name . "AdaptiveSparsity")))
23660 (build-system r-build-system)
23661 (arguments
23662 `(#:phases
23663 (modify-phases %standard-phases
23664 (add-after 'unpack 'link-against-armadillo
23665 (lambda _
23666 (substitute* "src/Makevars"
23667 (("PKG_LIBS=" prefix)
23668 (string-append prefix "-larmadillo")))
23669 #t)))))
23670 (propagated-inputs
23671 `(("r-mass" ,r-mass)
23672 ("r-matrix" ,r-matrix)
23673 ("r-rcpp" ,r-rcpp)
23674 ("r-rcpparmadillo" ,r-rcpparmadillo)))
23675 (inputs
23676 `(("armadillo" ,armadillo)))
23677 (home-page "https://cran.r-project.org/web/packages/AdaptiveSparsity")
23678 (synopsis "Adaptive sparsity models")
23679 (description
23680 "This package implements the Figueiredo machine learning algorithm for
23681 adaptive sparsity and the Wong algorithm for adaptively sparse Gaussian
23682 geometric models.")
23683 (license license:lgpl3+)))
23684
23685 (define-public r-diffusionmap
23686 (package
23687 (name "r-diffusionmap")
23688 (version "1.2.0")
23689 (source
23690 (origin
23691 (method url-fetch)
23692 (uri (cran-uri "diffusionMap" version))
23693 (sha256
23694 (base32
23695 "1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
23696 (properties `((upstream-name . "diffusionMap")))
23697 (build-system r-build-system)
23698 (propagated-inputs
23699 `(("r-igraph" ,r-igraph)
23700 ("r-matrix" ,r-matrix)
23701 ("r-scatterplot3d" ,r-scatterplot3d)))
23702 (home-page "https://www.r-project.org")
23703 (synopsis "Diffusion map")
23704 (description "This package implements the diffusion map method of data
23705 parametrization, including creation and visualization of diffusion maps,
23706 clustering with diffusion K-means and regression using the adaptive regression
23707 model.")
23708 (license license:gpl2)))
23709
23710 (define-public r-igraph
23711 (package
23712 (name "r-igraph")
23713 (version "1.2.5")
23714 (source
23715 (origin
23716 (method url-fetch)
23717 (uri (cran-uri "igraph" version))
23718 (sha256
23719 (base32
23720 "126z1ygbmi3g7hk97snf22rnx680dyi30idssm5zacba5rdngp8c"))))
23721 (build-system r-build-system)
23722 (native-inputs
23723 `(("gfortran" ,gfortran)))
23724 (inputs
23725 `(("gmp" ,gmp)
23726 ("glpk" ,glpk)
23727 ("libxml2" ,libxml2)
23728 ("zlib" ,zlib)))
23729 (propagated-inputs
23730 `(("r-magrittr" ,r-magrittr)
23731 ("r-matrix" ,r-matrix)
23732 ("r-pkgconfig" ,r-pkgconfig)))
23733 (home-page "https://igraph.org")
23734 (synopsis "Network analysis and visualization")
23735 (description
23736 "This package provides routines for simple graphs and network analysis.
23737 It can handle large graphs very well and provides functions for generating
23738 random and regular graphs, graph visualization, centrality methods and much
23739 more.")
23740 (license license:gpl2+)))
23741
23742 (define-public r-workflows
23743 (package
23744 (name "r-workflows")
23745 (version "0.1.3")
23746 (source
23747 (origin
23748 (method url-fetch)
23749 (uri (cran-uri "workflows" version))
23750 (sha256
23751 (base32
23752 "1d5njd1xdl8kghlbar4acgl9hxq83p6k7yks592cvakmcz7f853m"))))
23753 (properties `((upstream-name . "workflows")))
23754 (build-system r-build-system)
23755 (propagated-inputs
23756 `(("r-cli" ,r-cli)
23757 ("r-ellipsis" ,r-ellipsis)
23758 ("r-generics" ,r-generics)
23759 ("r-glue" ,r-glue)
23760 ("r-hardhat" ,r-hardhat)
23761 ("r-parsnip" ,r-parsnip)
23762 ("r-rlang" ,r-rlang)))
23763 (native-inputs
23764 `(("r-knitr" ,r-knitr)))
23765 (home-page "https://github.com/tidymodels/workflows")
23766 (synopsis "Modeling workflows")
23767 (description
23768 "A workflow is an object that can bundle together your pre-processing,
23769 modeling, and post-processing requests. For example, if you have a
23770 @code{recipe} and @code{parsnip} model, these can be combined into a
23771 workflow. The advantages are:
23772
23773 @enumerate
23774 @item You don’t have to keep track of separate objects in your workspace.
23775 @item The recipe prepping and model fitting can be executed using a single
23776 call to @code{fit()}.
23777 @item If you have custom tuning parameter settings, these can be defined using
23778 a simpler interface when combined with @code{tune}.
23779 @item In the future, workflows will be able to add post-processing operations,
23780 such as modifying the probability cutoff for two-class models.
23781 @end enumerate
23782 ")
23783 (license license:expat)))
23784
23785 (define-public r-gpfit
23786 (package
23787 (name "r-gpfit")
23788 (version "1.0-8")
23789 (source
23790 (origin
23791 (method url-fetch)
23792 (uri (cran-uri "GPfit" version))
23793 (sha256
23794 (base32
23795 "05mpiyi2vxv0wqp422n1mnxa8msc4daq40cwpnpngbcwqhlgqkby"))))
23796 (properties `((upstream-name . "GPfit")))
23797 (build-system r-build-system)
23798 (propagated-inputs
23799 `(("r-lattice" ,r-lattice)
23800 ("r-lhs" ,r-lhs)))
23801 (home-page "https://cran.r-project.org/web/packages/GPfit/")
23802 (synopsis "Gaussian Processes modeling")
23803 (description
23804 "This package provides a computationally stable approach of fitting a
23805 @dfn{Gaussian Process} (GP) model to a deterministic simulator.")
23806 (license license:gpl2)))
23807
23808 (define-public r-yardstick
23809 (package
23810 (name "r-yardstick")
23811 (version "0.0.7")
23812 (source
23813 (origin
23814 (method url-fetch)
23815 (uri (cran-uri "yardstick" version))
23816 (sha256
23817 (base32
23818 "1yrvlhn4gxyn9f20z5yv3xam0j0a8z362jwa32r33r0g0jk5z2fq"))))
23819 (properties `((upstream-name . "yardstick")))
23820 (build-system r-build-system)
23821 (propagated-inputs
23822 `(("r-dplyr" ,r-dplyr)
23823 ("r-generics" ,r-generics)
23824 ("r-proc" ,r-proc)
23825 ("r-rlang" ,r-rlang)
23826 ("r-tidyselect" ,r-tidyselect)))
23827 (native-inputs
23828 `(("r-knitr" ,r-knitr)))
23829 (home-page "https://github.com/tidymodels/yardstick")
23830 (synopsis "Tidy characterizations of model performance")
23831 (description
23832 "This package provides tidy tools for quantifying how well a model fits
23833 to a data set such as confusion matrices, class probability curve summaries,
23834 and regression metrics (e.g., RMSE).")
23835 (license license:gpl2)))
23836
23837 (define-public r-rsample
23838 (package
23839 (name "r-rsample")
23840 (version "0.0.7")
23841 (source
23842 (origin
23843 (method url-fetch)
23844 (uri (cran-uri "rsample" version))
23845 (sha256
23846 (base32
23847 "0s6hgq0rcv3ianyidq3n9z34y5ww51gaggqkwmwns9yyxmwfjcm8"))))
23848 (properties `((upstream-name . "rsample")))
23849 (build-system r-build-system)
23850 (propagated-inputs
23851 `(("r-dplyr" ,r-dplyr)
23852 ("r-furrr" ,r-furrr)
23853 ("r-generics" ,r-generics)
23854 ("r-purrr" ,r-purrr)
23855 ("r-rlang" ,r-rlang)
23856 ("r-tibble" ,r-tibble)
23857 ("r-tidyr" ,r-tidyr)
23858 ("r-tidyselect" ,r-tidyselect)
23859 ("r-vctrs" ,r-vctrs)))
23860 (native-inputs
23861 `(("r-knitr" ,r-knitr)))
23862 (home-page "https://rsample.tidymodels.org")
23863 (synopsis "General resampling infrastructure")
23864 (description
23865 "This package provides classes and functions to create and summarize
23866 different types of resampling objects (e.g. bootstrap, cross-validation).")
23867 (license license:gpl2)))
23868
23869 (define-public r-dicedesign
23870 (package
23871 (name "r-dicedesign")
23872 (version "1.8-1")
23873 (source
23874 (origin
23875 (method url-fetch)
23876 (uri (cran-uri "DiceDesign" version))
23877 (sha256
23878 (base32
23879 "11s1m543kxd6gv4amh8z6pph1n67sj9sfwm6hjy83wfs65syf5vp"))))
23880 (properties `((upstream-name . "DiceDesign")))
23881 (build-system r-build-system)
23882 (home-page "http://dice.emse.fr/")
23883 (synopsis "Designs of computer experiments")
23884 (description
23885 "This package provides tools to create some specific @code{Space-Filling
23886 Design} (SFD) and to test their quality.")
23887 (license license:gpl3)))
23888
23889 (define-public r-dials
23890 (package
23891 (name "r-dials")
23892 (version "0.0.8")
23893 (source
23894 (origin
23895 (method url-fetch)
23896 (uri (cran-uri "dials" version))
23897 (sha256
23898 (base32
23899 "0jxmlcy20y57chflx91fqz6c4pbdckzr7jirq4s72vp723avrr4p"))))
23900 (properties `((upstream-name . "dials")))
23901 (build-system r-build-system)
23902 (propagated-inputs
23903 `(("r-dicedesign" ,r-dicedesign)
23904 ("r-dplyr" ,r-dplyr)
23905 ("r-glue" ,r-glue)
23906 ("r-purrr" ,r-purrr)
23907 ("r-rlang" ,r-rlang)
23908 ("r-scales" ,r-scales)
23909 ("r-tibble" ,r-tibble)
23910 ("r-vctrs" ,r-vctrs)
23911 ("r-withr" ,r-withr)))
23912 (native-inputs `(("r-knitr" ,r-knitr)))
23913 (home-page "https://dials.tidymodels.org/")
23914 (synopsis "Tools for creating tuning parameter values")
23915 (description
23916 "Many models contain tuning parameters (i.e. parameters that cannot be
23917 directly estimated from the data). These tools can be used to define objects
23918 for creating, simulating, or validating values for such parameters.")
23919 (license license:gpl2)))
23920
23921 (define-public r-tune
23922 (package
23923 (name "r-tune")
23924 (version "0.1.1")
23925 (source
23926 (origin
23927 (method url-fetch)
23928 (uri (cran-uri "tune" version))
23929 (sha256
23930 (base32
23931 "0293xkmv1nyvm72wxznnlm3qpf6475xzl2sf52mnrjxxr7i447p1"))))
23932 (properties `((upstream-name . "tune")))
23933 (build-system r-build-system)
23934 (propagated-inputs
23935 `(("r-cli" ,r-cli)
23936 ("r-crayon" ,r-crayon)
23937 ("r-dials" ,r-dials)
23938 ("r-dplyr" ,r-dplyr)
23939 ("r-foreach" ,r-foreach)
23940 ("r-ggplot2" ,r-ggplot2)
23941 ("r-glue" ,r-glue)
23942 ("r-gpfit" ,r-gpfit)
23943 ("r-hardhat" ,r-hardhat)
23944 ("r-lifecycle" ,r-lifecycle)
23945 ("r-parsnip" ,r-parsnip)
23946 ("r-purrr" ,r-purrr)
23947 ("r-recipes" ,r-recipes)
23948 ("r-rlang" ,r-rlang)
23949 ("r-rsample" ,r-rsample)
23950 ("r-tibble" ,r-tibble)
23951 ("r-tidyr" ,r-tidyr)
23952 ("r-vctrs" ,r-vctrs)
23953 ("r-workflows" ,r-workflows)
23954 ("r-yardstick" ,r-yardstick)))
23955 (home-page "https://github.com/tidymodels/tune")
23956 (synopsis "Tidy tuning tools")
23957 (description
23958 "The ability to tune models is important. @code{tune} contains functions
23959 and classes to be used in conjunction with other @code{tidymodels} packages
23960 for finding reasonable values of hyper-parameters in models, pre-processing
23961 methods, and post-processing steps.")
23962 (license license:expat)))
23963
23964 (define-public r-tidyposterior
23965 (package
23966 (name "r-tidyposterior")
23967 (version "0.0.3")
23968 (source
23969 (origin
23970 (method url-fetch)
23971 (uri (cran-uri "tidyposterior" version))
23972 (sha256
23973 (base32
23974 "0wsv800w056ziqbnwal7ncmdy4li8cn5yrdx07w35b7j8kl4mwhg"))))
23975 (properties `((upstream-name . "tidyposterior")))
23976 (build-system r-build-system)
23977 (propagated-inputs
23978 `(("r-dplyr" ,r-dplyr)
23979 ("r-generics" ,r-generics)
23980 ("r-ggplot2" ,r-ggplot2)
23981 ("r-lifecycle" ,r-lifecycle)
23982 ("r-purrr" ,r-purrr)
23983 ("r-rlang" ,r-rlang)
23984 ("r-rsample" ,r-rsample)
23985 ("r-rstanarm" ,r-rstanarm)
23986 ("r-tibble" ,r-tibble)
23987 ("r-tidyr" ,r-tidyr)
23988 ("r-vctrs" ,r-vctrs)))
23989 (native-inputs
23990 `(("r-knitr" ,r-knitr)))
23991 (home-page "https://tidyposterior.tidymodels.org")
23992 (synopsis "Bayesian analysis to compare models using resampling statistics")
23993 (description
23994 "This package can be used to conduct post hoc analyses of resampling
23995 results generated by models. For example, if two models are evaluated with
23996 the @dfn{root mean squared error} (RMSE) using 10-fold cross-validation, there
23997 are 10 paired statistics. These can be used to make comparisons between
23998 models without involving a test set.")
23999 (license license:gpl2)))
24000
24001 (define-public r-tidypredict
24002 (package
24003 (name "r-tidypredict")
24004 (version "0.4.6")
24005 (source
24006 (origin
24007 (method url-fetch)
24008 (uri (cran-uri "tidypredict" version))
24009 (sha256
24010 (base32
24011 "1fx1nr8fry3nwy2391g26zkqakdf8f3j7zyrihbc0qhscvbdskiy"))))
24012 (properties `((upstream-name . "tidypredict")))
24013 (build-system r-build-system)
24014 (propagated-inputs
24015 `(("r-dplyr" ,r-dplyr)
24016 ("r-generics" ,r-generics)
24017 ("r-knitr" ,r-knitr)
24018 ("r-purrr" ,r-purrr)
24019 ("r-rlang" ,r-rlang)
24020 ("r-tibble" ,r-tibble)))
24021 (native-inputs
24022 `(("r-knitr" ,r-knitr)))
24023 (home-page "https://tidypredict.tidymodels.org")
24024 (synopsis "Run predictions inside the database")
24025 (description
24026 "This package parses a fitted R model object, and returns a formula in
24027 Tidy Eval code that calculates the predictions. It works with several
24028 database backends because it leverages @code{dplyr} and @code{dbplyr} for the
24029 final SQL translation of the algorithm. It currently supports @code{lm()},
24030 @code{glm()}, @code{randomForest()}, @code{ranger()}, @code{earth()},
24031 @code{xgb.Booster.complete()}, @code{cubist()}, and @code{ctree()} models.")
24032 (license license:gpl3)))
24033
24034 (define-public r-janeaustenr
24035 (package
24036 (name "r-janeaustenr")
24037 (version "0.1.5")
24038 (source
24039 (origin
24040 (method url-fetch)
24041 (uri (cran-uri "janeaustenr" version))
24042 (sha256
24043 (base32
24044 "1wyn4qc28a3sval8shmyi2d7s4nl3jh96s8pzq871brxcmrncbwr"))))
24045 (properties `((upstream-name . "janeaustenr")))
24046 (build-system r-build-system)
24047 (home-page "https://github.com/juliasilge/janeaustenr")
24048 (synopsis "Jane Austen's complete novels")
24049 (description
24050 "This package provides the full texts for Jane Austen's six completed
24051 novels, ready for text analysis. These novels are \"Sense and Sensibility\",
24052 \"Pride and Prejudice\", \"Mansfield Park\", \"Emma\", \"Northanger Abbey\",
24053 and \"Persuasion\".")
24054 (license license:expat)))
24055
24056 (define-public r-tokenizers
24057 (package
24058 (name "r-tokenizers")
24059 (version "0.2.1")
24060 (source
24061 (origin
24062 (method url-fetch)
24063 (uri (cran-uri "tokenizers" version))
24064 (sha256
24065 (base32
24066 "006xf1vdrmp9skhpss9ldhmk4cwqk512cjp1pxm2gxfybpf7qq98"))))
24067 (properties `((upstream-name . "tokenizers")))
24068 (build-system r-build-system)
24069 (propagated-inputs
24070 `(("r-rcpp" ,r-rcpp)
24071 ("r-snowballc" ,r-snowballc)
24072 ("r-stringi" ,r-stringi)))
24073 (native-inputs
24074 `(("r-knitr" ,r-knitr)))
24075 (home-page "https://lincolnmullen.com/software/tokenizers/")
24076 (synopsis "Fast, consistent tokenization of natural language text")
24077 (description
24078 "This is a package for converting natural language text into tokens.
24079 It includes tokenizers for shingled n-grams, skip n-grams, words, word stems,
24080 sentences, paragraphs, characters, shingled characters, lines, tweets, Penn
24081 Treebank, regular expressions, as well as functions for counting characters,
24082 words, and sentences, and a function for splitting longer texts into separate
24083 documents, each with the same number of words. The tokenizers have a
24084 consistent interface, and the package is built on the @code{stringi} and
24085 @code{Rcpp} packages for fast yet correct tokenization in UTF-8 encoding.")
24086 (license license:expat)))
24087
24088 (define-public r-hunspell
24089 (package
24090 (name "r-hunspell")
24091 (version "3.0")
24092 (source
24093 (origin
24094 (method url-fetch)
24095 (uri (cran-uri "hunspell" version))
24096 (sha256
24097 (base32
24098 "0mwqw5p0ph083plm2hr2hqr50bjg2dw862dpsfm4l2fgyy3rryq1"))))
24099 (properties `((upstream-name . "hunspell")))
24100 (build-system r-build-system)
24101 (propagated-inputs
24102 `(("r-digest" ,r-digest)
24103 ("r-rcpp" ,r-rcpp)))
24104 (native-inputs
24105 `(("r-knitr" ,r-knitr)))
24106 (home-page "https://github.com/ropensci/hunspell#readme")
24107 (synopsis "High-performance stemmer, tokenizer, and spell checker")
24108 (description
24109 "This package provides a low-level spell checker and morphological
24110 analyzer based on the famous @code{hunspell} library. The package can analyze
24111 or check individual words as well as parse text, LaTeX, HTML or XML documents.
24112 For a more user-friendly interface use the @code{spelling} package which
24113 builds on this package to automate checking of files, documentation and
24114 vignettes in all common formats.")
24115 ;; The hunspell library itself is available under one of GPL2, LGPL2.1, or
24116 ;; MPL; in addition to these licenses the rest of the R wrapper is also
24117 ;; available under the Expat license.
24118 (license (list license:gpl2
24119 license:lgpl2.1
24120 license:mpl1.1
24121 license:expat))))
24122
24123 (define-public r-tidytext
24124 (package
24125 (name "r-tidytext")
24126 (version "0.2.5")
24127 (source
24128 (origin
24129 (method url-fetch)
24130 (uri (cran-uri "tidytext" version))
24131 (sha256
24132 (base32
24133 "0kwbpffdnqrb6hgrrmrfnx890imbzvp5bs6sj1k72if28qijarm5"))))
24134 (properties `((upstream-name . "tidytext")))
24135 (build-system r-build-system)
24136 (propagated-inputs
24137 `(("r-dplyr" ,r-dplyr)
24138 ("r-generics" ,r-generics)
24139 ("r-hunspell" ,r-hunspell)
24140 ("r-janeaustenr" ,r-janeaustenr)
24141 ("r-matrix" ,r-matrix)
24142 ("r-purrr" ,r-purrr)
24143 ("r-rlang" ,r-rlang)
24144 ("r-stringr" ,r-stringr)
24145 ("r-tibble" ,r-tibble)
24146 ("r-tokenizers" ,r-tokenizers)))
24147 (native-inputs
24148 `(("r-knitr" ,r-knitr)))
24149 (home-page "https://github.com/juliasilge/tidytext")
24150 (synopsis "Text mining using dplyr, ggplot2, and other Tidy tools")
24151 (description
24152 "This is a package for text mining for word processing and sentiment
24153 analysis using @code{dplyr}, @code{ggplot2}, and other Tidy tools.")
24154 (license license:expat)))
24155
24156 (define-public r-parsnip
24157 (package
24158 (name "r-parsnip")
24159 (version "0.1.3")
24160 (source
24161 (origin
24162 (method url-fetch)
24163 (uri (cran-uri "parsnip" version))
24164 (sha256
24165 (base32
24166 "12121qj1800i7g3km5kqzlb7hms55crmp6il575c2i475h5qx8d3"))))
24167 (properties `((upstream-name . "parsnip")))
24168 (build-system r-build-system)
24169 (propagated-inputs
24170 `(("r-dplyr" ,r-dplyr)
24171 ("r-generics" ,r-generics)
24172 ("r-globals" ,r-globals)
24173 ("r-glue" ,r-glue)
24174 ("r-magrittr" ,r-magrittr)
24175 ("r-prettyunits" ,r-prettyunits)
24176 ("r-purrr" ,r-purrr)
24177 ("r-rlang" ,r-rlang)
24178 ("r-tibble" ,r-tibble)
24179 ("r-tidyr" ,r-tidyr)
24180 ("r-vctrs" ,r-vctrs)))
24181 (native-inputs
24182 `(("r-knitr" ,r-knitr)))
24183 (home-page "https://parsnip.tidymodels.org")
24184 (synopsis "Common API to modeling and analysis functions")
24185 (description
24186 "This package provides a common interface to allow users to specify a
24187 model without having to remember the different argument names across different
24188 functions or computational engines (e.g. R, Spark, Stan, etc).")
24189 (license license:gpl2)))
24190
24191 (define-public r-infer
24192 (package
24193 (name "r-infer")
24194 (version "0.5.3")
24195 (source
24196 (origin
24197 (method url-fetch)
24198 (uri (cran-uri "infer" version))
24199 (sha256
24200 (base32
24201 "1q0lnxnv8krv4n9z80sh4b442s89rvnbph5bddy34z83bkncwv2g"))))
24202 (properties `((upstream-name . "infer")))
24203 (build-system r-build-system)
24204 (propagated-inputs
24205 `(("r-dplyr" ,r-dplyr)
24206 ("r-ggplot2" ,r-ggplot2)
24207 ("r-glue" ,r-glue)
24208 ("r-magrittr" ,r-magrittr)
24209 ("r-purrr" ,r-purrr)
24210 ("r-rlang" ,r-rlang)
24211 ("r-tibble" ,r-tibble)))
24212 (native-inputs
24213 `(("r-knitr" ,r-knitr)))
24214 (home-page "https://github.com/tidymodels/infer")
24215 (synopsis "Tidy statistical inference")
24216 (description
24217 "The objective of this package is to perform inference using an
24218 expressive statistical grammar that coheres with the Tidy design framework.")
24219 (license license:cc0)))
24220
24221 (define-public r-modeldata
24222 (package
24223 (name "r-modeldata")
24224 (version "0.0.2")
24225 (source
24226 (origin
24227 (method url-fetch)
24228 (uri (cran-uri "modeldata" version))
24229 (sha256
24230 (base32
24231 "13q6hhbwqbwnjvg8bz6iwwfx96p1saqq3r34cjrbnpgzmr1nn11l"))))
24232 (properties `((upstream-name . "modeldata")))
24233 (build-system r-build-system)
24234 (home-page "https://modeldata.tidymodels.org")
24235 (synopsis "Data sets useful for modeling packages")
24236 (description
24237 "This package provides data sets used for demonstrating or testing
24238 model-related packages.")
24239 (license license:expat)))
24240
24241 (define-public r-tidymodels
24242 (package
24243 (name "r-tidymodels")
24244 (version "0.1.1")
24245 (source
24246 (origin
24247 (method url-fetch)
24248 (uri (cran-uri "tidymodels" version))
24249 (sha256
24250 (base32
24251 "0w2xnr642klmqlflkw6rkvqcrgs01i8f34nk9wdax3fsl1yx2wi4"))))
24252 (properties `((upstream-name . "tidymodels")))
24253 (build-system r-build-system)
24254 (propagated-inputs
24255 `(("r-broom" ,r-broom)
24256 ("r-cli" ,r-cli)
24257 ("r-crayon" ,r-crayon)
24258 ("r-dials" ,r-dials)
24259 ("r-dplyr" ,r-dplyr)
24260 ("r-ggplot2" ,r-ggplot2)
24261 ("r-infer" ,r-infer)
24262 ("r-magrittr" ,r-magrittr)
24263 ("r-modeldata" ,r-modeldata)
24264 ("r-parsnip" ,r-parsnip)
24265 ("r-purrr" ,r-purrr)
24266 ("r-recipes" ,r-recipes)
24267 ("r-rlang" ,r-rlang)
24268 ("r-rsample" ,r-rsample)
24269 ("r-rstudioapi" ,r-rstudioapi)
24270 ("r-tibble" ,r-tibble)
24271 ("r-tidyr" ,r-tidyr)
24272 ("r-tune" ,r-tune)
24273 ("r-workflows" ,r-workflows)
24274 ("r-yardstick" ,r-yardstick)))
24275 (native-inputs
24276 `(("r-knitr" ,r-knitr)
24277 ("r-rmarkdown" ,r-rmarkdown)
24278 ("pandoc" ,pandoc)
24279 ("pandoc-citeproc" ,pandoc-citeproc))) ; for vignettes
24280 (home-page "https://github.com/tidymodels/tidymodels")
24281 (synopsis "Tidy collection for modeling and statistical analysis")
24282 (description
24283 "The tidy modeling \"verse\" is a collection of packages for modeling and
24284 statistical analysis that share the underlying design philosophy, grammar, and
24285 data structures of the tidyverse.")
24286 (license license:gpl3)))
24287
24288 (define-public r-mlecens
24289 (package
24290 (name "r-mlecens")
24291 (version "0.1-4")
24292 (source
24293 (origin
24294 (method url-fetch)
24295 (uri (cran-uri "MLEcens" version))
24296 (sha256
24297 (base32
24298 "0zlmrcjraypscgs2v0w4s4hm7qccsmaz4hjsgqpn0058vx622945"))))
24299 (properties `((upstream-name . "MLEcens")))
24300 (build-system r-build-system)
24301 (home-page "http://stat.ethz.ch/~maathuis/")
24302 (synopsis "Computation of the MLE for bivariate (interval) censored data")
24303 (description
24304 "This package contains functions to compute the nonparametric
24305 @dfn{maximum likelihood estimator} (MLE) for the bivariate distribution of
24306 @code{(X,Y)}, when realizations of @code{(X,Y)} cannot be observed directly.
24307 To be more precise, we consider the situation where we observe a set of
24308 rectangles that are known to contain the unobservable realizations of (X,Y).
24309 We compute the MLE based on such a set of rectangles. The methods can also be
24310 used for univariate censored data (see data set @code{cosmesis}), and for
24311 censored data with competing risks (see data set @code{menopause}). The
24312 package also provides functions to visualize the observed data and the MLE.")
24313 (license license:gpl2+)))
24314
24315 (define-public r-perm
24316 (package
24317 (name "r-perm")
24318 (version "1.0-0.0")
24319 (source
24320 (origin
24321 (method url-fetch)
24322 (uri (cran-uri "perm" version))
24323 (sha256
24324 (base32
24325 "0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
24326 (properties `((upstream-name . "perm")))
24327 (build-system r-build-system)
24328 (home-page "https://cran.r-project.org/web/packages/perm/")
24329 (synopsis "Exact or asymptotic permutation tests")
24330 (description
24331 "This package provides several methods for performing permutation tests.
24332 It has three main functions, to perform linear permutation tests. These tests
24333 are tests where the test statistic is the sum of the product of a
24334 covariate (usually group indicator) and the scores.")
24335 ;; Any version of the GPL
24336 (license license:gpl2+)))
24337
24338 (define-public r-qtl
24339 (package
24340 (name "r-qtl")
24341 (version "1.46-2")
24342 (source
24343 (origin
24344 (method url-fetch)
24345 (uri (cran-uri "qtl" version))
24346 (sha256
24347 (base32
24348 "0rbwcnvyy96gq1dsgpxx03pv423qya26h6ws5y0blj3blfdmj83a"))))
24349 (build-system r-build-system)
24350 (home-page "https://rqtl.org/")
24351 (synopsis "R package for analyzing QTL experiments in genetics")
24352 (description "R/qtl is an extension library for the R statistics system.
24353 It is used to analyze experimental crosses for identifying genes contributing
24354 to variation in quantitative traits (so-called quantitative trait loci, QTLs).
24355
24356 Using a hidden Markov model, R/qtl estimates genetic maps, to identify
24357 genotyping errors, and to perform single-QTL and two-QTL, two-dimensional
24358 genome scans.")
24359 (license license:gpl3)))
24360
24361 (define-public r-qtl2
24362 (package
24363 (name "r-qtl2")
24364 (version "0.22-11")
24365 (source (origin
24366 (method url-fetch)
24367 (uri (cran-uri "qtl2" version))
24368 (sha256
24369 (base32 "0dfdzjylqzc92dcszawc8cyinxccjm3p36v9vcq9ma818pqcanmr"))))
24370 (build-system r-build-system)
24371 (propagated-inputs
24372 `(("r-data-table" ,r-data-table)
24373 ("r-jsonlite" ,r-jsonlite)
24374 ("r-rcpp" ,r-rcpp)
24375 ("r-rcppeigen" ,r-rcppeigen)
24376 ("r-rsqlite" ,r-rsqlite)
24377 ("r-yaml" ,r-yaml)))
24378 (home-page "https://kbroman.org/qtl2/")
24379 (synopsis "Quantitative Trait Locus Mapping in Experimental Crosses")
24380 (description
24381 "This package provides a set of tools to perform @dfn{Quantitative Trait
24382 Locus} (QTL) analysis in experimental crosses. It is a reimplementation of the
24383 @code{R/qtl} package to better handle high-dimensional data and complex cross
24384 designs. Broman et al. (2018) <doi:10.1534/genetics.118.301595>.")
24385 (license license:gpl3)))
24386
24387 (define-public r-seqminer
24388 (package
24389 (name "r-seqminer")
24390 (version "8.0")
24391 (source
24392 (origin
24393 (method url-fetch)
24394 (uri (cran-uri "seqminer" version))
24395 (sha256
24396 (base32
24397 "00jzj8mwb0zaiwlifd41b26mrq9mzigj18nc29dydi0r42hxg16i"))))
24398 (build-system r-build-system)
24399 (inputs
24400 `(("zlib" ,zlib)))
24401 (home-page "http://seqminer.genomic.codes")
24402 (synopsis "Read nucleotide sequence data (VCF, BCF, and METAL formats)")
24403 (description
24404 "This package provides tools to integrate nucleotide sequencing
24405 data (variant call format, e.g. VCF or BCF) or meta-analysis results in R.")
24406 ;; Any version of the GPL is acceptable
24407 (license (list license:gpl2+ license:gpl3+))))
24408
24409 (define-public r-maldiquant
24410 (package
24411 (name "r-maldiquant")
24412 (version "1.19.3")
24413 (source
24414 (origin
24415 (method url-fetch)
24416 (uri (cran-uri "MALDIquant" version))
24417 (sha256
24418 (base32
24419 "0b7kdz3x4sdq413h1q09l1qhcvdnnwv6fqsqwllks1cd3xy34c57"))))
24420 (properties `((upstream-name . "MALDIquant")))
24421 (build-system r-build-system)
24422 (home-page "https://cran.r-project.org/web/packages/MALDIquant")
24423 (synopsis "Quantitative analysis of mass spectrometry data")
24424 (description
24425 "This package provides a complete analysis pipeline for matrix-assisted
24426 laser desorption/ionization-time-of-flight (MALDI-TOF) and other
24427 two-dimensional mass spectrometry data. In addition to commonly used plotting
24428 and processing methods it includes distinctive features, namely baseline
24429 subtraction methods such as morphological filters (TopHat) or the
24430 statistics-sensitive non-linear iterative peak-clipping algorithm (SNIP), peak
24431 alignment using warping functions, handling of replicated measurements as well
24432 as allowing spectra with different resolutions.")
24433 (license license:gpl3+)))
24434
24435 (define-public r-seurat
24436 (package
24437 (name "r-seurat")
24438 (version "3.2.0")
24439 (source (origin
24440 (method url-fetch)
24441 (uri (cran-uri "Seurat" version))
24442 (sha256
24443 (base32
24444 "1vj3dlsqakgnn4x1jz9fkl2cy0jzc5s65h1c20fnamr7lk45pnf2"))))
24445 (properties `((upstream-name . "Seurat")))
24446 (build-system r-build-system)
24447 (propagated-inputs
24448 `(("r-ape" ,r-ape)
24449 ("r-cluster" ,r-cluster)
24450 ("r-cowplot" ,r-cowplot)
24451 ("r-fitdistrplus" ,r-fitdistrplus)
24452 ("r-future" ,r-future)
24453 ("r-future-apply" ,r-future-apply)
24454 ("r-ggplot2" ,r-ggplot2)
24455 ("r-ggrepel" ,r-ggrepel)
24456 ("r-ggridges" ,r-ggridges)
24457 ("r-httr" ,r-httr)
24458 ("r-ica" ,r-ica)
24459 ("r-igraph" ,r-igraph)
24460 ("r-irlba" ,r-irlba)
24461 ("r-jsonlite" ,r-jsonlite)
24462 ("r-kernsmooth" ,r-kernsmooth)
24463 ("r-leiden" ,r-leiden)
24464 ("r-lmtest" ,r-lmtest)
24465 ("r-mass" ,r-mass)
24466 ("r-matrix" ,r-matrix)
24467 ("r-miniui" ,r-miniui)
24468 ("r-patchwork" ,r-patchwork)
24469 ("r-pbapply" ,r-pbapply)
24470 ("r-plotly" ,r-plotly)
24471 ("r-png" ,r-png)
24472 ("r-rann" ,r-rann)
24473 ("r-rcolorbrewer" ,r-rcolorbrewer)
24474 ("r-rcpp" ,r-rcpp)
24475 ("r-rcppannoy" ,r-rcppannoy)
24476 ("r-rcppeigen" ,r-rcppeigen)
24477 ("r-rcppprogress" ,r-rcppprogress)
24478 ("r-reticulate" ,r-reticulate)
24479 ("r-rlang" ,r-rlang)
24480 ("r-rocr" ,r-rocr)
24481 ("r-rsvd" ,r-rsvd)
24482 ("r-rtsne" ,r-rtsne)
24483 ("r-scales" ,r-scales)
24484 ("r-sctransform" ,r-sctransform)
24485 ("r-shiny" ,r-shiny)
24486 ("r-spatstat" ,r-spatstat)
24487 ("r-tibble" ,r-tibble)
24488 ("r-uwot" ,r-uwot)))
24489 (home-page "http://www.satijalab.org/seurat")
24490 (synopsis "Seurat is an R toolkit for single cell genomics")
24491 (description
24492 "This package is an R package designed for QC, analysis, and
24493 exploration of single cell RNA-seq data. It easily enables widely-used
24494 analytical techniques, including the identification of highly variable genes,
24495 dimensionality reduction; PCA, ICA, t-SNE, standard unsupervised clustering
24496 algorithms; density clustering, hierarchical clustering, k-means, and the
24497 discovery of differentially expressed genes and markers.")
24498 (license license:gpl3)))
24499
24500 (define-public r-phangorn
24501 (package
24502 (name "r-phangorn")
24503 (version "2.5.5")
24504 (source
24505 (origin
24506 (method url-fetch)
24507 (uri (cran-uri "phangorn" version))
24508 (sha256
24509 (base32
24510 "0ihkaykqjmf80d8wrk3saphxvnv58zma6pd13633bd3cwanc33f5"))))
24511 (build-system r-build-system)
24512 (propagated-inputs
24513 `(("r-ape" ,r-ape)
24514 ("r-fastmatch" ,r-fastmatch)
24515 ("r-igraph" ,r-igraph)
24516 ("r-magrittr" ,r-magrittr)
24517 ("r-matrix" ,r-matrix)
24518 ("r-quadprog" ,r-quadprog)
24519 ("r-rcpp" ,r-rcpp)))
24520 (home-page "https://github.com/KlausVigo/phangorn")
24521 (synopsis "Phylogenetic analysis in R")
24522 (description
24523 "Phangorn is a package for phylogenetic analysis in R. It supports
24524 estimation of phylogenetic trees and networks using Maximum Likelihood,
24525 Maximum Parsimony, distance methods and Hadamard conjugation.")
24526 (license license:gpl2+)))
24527
24528 (define-public r-diversitree
24529 (package
24530 (name "r-diversitree")
24531 (version "0.9-13")
24532 (source
24533 (origin
24534 (method url-fetch)
24535 (uri (cran-uri "diversitree" version))
24536 (sha256
24537 (base32
24538 "00vi4klywi35hd170ksjv3xja3hqqbkcidcnrrlpgv4179k0azix"))))
24539 (build-system r-build-system)
24540 (native-inputs
24541 `(("gfortran" ,gfortran)))
24542 (inputs `(("fftw" ,fftw) ("gsl" ,gsl)))
24543 (propagated-inputs
24544 `(("r-ape" ,r-ape)
24545 ("r-desolve" ,r-desolve)
24546 ("r-rcpp" ,r-rcpp)
24547 ("r-subplex" ,r-subplex)))
24548 (home-page "https://www.zoology.ubc.ca/prog/diversitree")
24549 (synopsis "Comparative 'phylogenetic' analyses of diversification")
24550 (description "This package contains a number of comparative \"phylogenetic\"
24551 methods, mostly focusing on analysing diversification and character evolution.
24552 Contains implementations of \"BiSSE\" (Binary State Speciation and Extinction)
24553 and its unresolved tree extensions, \"MuSSE\" (Multiple State Speciation and
24554 Extinction), \"QuaSSE\", \"GeoSSE\", and \"BiSSE-ness\" Other included methods
24555 include Markov models of discrete and continuous trait evolution and constant
24556 rate speciation and extinction.")
24557 (license license:gpl2+)))
24558
24559 (define-public r-absfiltergsea
24560 (package
24561 (name "r-absfiltergsea")
24562 (version "1.5.1")
24563 (source
24564 (origin
24565 (method url-fetch)
24566 (uri (cran-uri "AbsFilterGSEA" version))
24567 (sha256
24568 (base32 "15srxkxsvn38kd5frdrwfdf0ad8gskrd0h01wmdf9hglq8fjrp7w"))))
24569 (properties `((upstream-name . "AbsFilterGSEA")))
24570 (build-system r-build-system)
24571 (propagated-inputs
24572 `(("r-biobase" ,r-biobase)
24573 ("r-deseq" ,r-deseq)
24574 ("r-limma" ,r-limma)
24575 ("r-rcpp" ,r-rcpp)
24576 ("r-rcpparmadillo" ,r-rcpparmadillo)))
24577 (home-page "https://cran.r-project.org/web/packages/AbsFilterGSEA/")
24578 (synopsis "Improved false positive control of gene-permuting with absolute filtering")
24579 (description
24580 "This package provides a function that performs gene-permuting of a gene-set
24581 enrichment analysis (GSEA) calculation with or without the absolute filtering.
24582 Without filtering, users can perform (original) two-tailed or one-tailed
24583 absolute GSEA.")
24584 (license license:gpl2)))