28462f654fa68b344343f05b6512dd4558a48c4a
[jackhill/guix/guix.git] / gnu / packages / cran.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
3 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2016, 2017 Ben Woodcroft <donttrustben@gmail.com>
5 ;;; Copyright © 2016, 2017, 2018, 2020 Roel Janssen <roel@gnu.org>
6 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
7 ;;; Copyright © 2017 Raoul Bonnal <ilpuccio.febo@gmail.com>
8 ;;; Copyright © 2018 Vijayalakshmi Vedantham <vijimay12@gmail.com>
9 ;;; Copyright © 2018 Sahithi Yarlagadda <sahi@swecha.net>
10 ;;; Copyright © 2018 Sandeep Subramanian <sandeepsubramanian94@gmail.com>
11 ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net>
12 ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net>
13 ;;; Copyright © 2018, 2020 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
14 ;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
15 ;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
16 ;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
18 ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
19 ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
20 ;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
21 ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
22 ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com>
23 ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
24 ;;; Copyright © 2020 Eric Brown <ecbrown@ericcbrown.com>
25 ;;; Copyright © 2020 Peter Lo <peterloleungyau@gmail.com>
26 ;;; Copyright © 2020 Rafael Luque Leiva <rafael.luque@osoco.es>
27 ;;;
28 ;;; This file is part of GNU Guix.
29 ;;;
30 ;;; GNU Guix is free software; you can redistribute it and/or modify it
31 ;;; under the terms of the GNU General Public License as published by
32 ;;; the Free Software Foundation; either version 3 of the License, or (at
33 ;;; your option) any later version.
34 ;;;
35 ;;; GNU Guix is distributed in the hope that it will be useful, but
36 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
37 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 ;;; GNU General Public License for more details.
39 ;;;
40 ;;; You should have received a copy of the GNU General Public License
41 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
42
43 (define-module (gnu packages cran)
44 #:use-module ((guix licenses) #:prefix license:)
45 #:use-module (guix packages)
46 #:use-module (guix download)
47 #:use-module (guix git-download)
48 #:use-module (guix utils)
49 #:use-module (guix build-system r)
50 #:use-module (gnu packages algebra)
51 #:use-module (gnu packages autotools)
52 #:use-module (gnu packages base)
53 #:use-module (gnu packages bioinformatics)
54 #:use-module (gnu packages c)
55 #:use-module (gnu packages compression)
56 #:use-module (gnu packages curl)
57 #:use-module (gnu packages databases)
58 #:use-module (gnu packages fontutils)
59 #:use-module (gnu packages gcc)
60 #:use-module (gnu packages geo)
61 #:use-module (gnu packages ghostscript)
62 #:use-module (gnu packages gl)
63 #:use-module (gnu packages gnome)
64 #:use-module (gnu packages graph)
65 #:use-module (gnu packages gtk)
66 #:use-module (gnu packages haskell-xyz)
67 #:use-module (gnu packages icu4c)
68 #:use-module (gnu packages image)
69 #:use-module (gnu packages imagemagick)
70 #:use-module (gnu packages java)
71 #:use-module (gnu packages javascript)
72 #:use-module (gnu packages lisp-xyz)
73 #:use-module (gnu packages machine-learning)
74 #:use-module (gnu packages maths)
75 #:use-module (gnu packages mpi)
76 #:use-module (gnu packages multiprecision)
77 #:use-module (gnu packages networking)
78 #:use-module (gnu packages node)
79 #:use-module (gnu packages pcre)
80 #:use-module (gnu packages perl)
81 #:use-module (gnu packages pkg-config)
82 #:use-module (gnu packages pulseaudio) ;libsndfile
83 #:use-module (gnu packages python)
84 #:use-module (gnu packages python-xyz)
85 #:use-module (gnu packages statistics)
86 #:use-module (gnu packages tcl)
87 #:use-module (gnu packages tls)
88 #:use-module (gnu packages web)
89 #:use-module (gnu packages xorg))
90
91 (define-public r-rticles
92 (package
93 (name "r-rticles")
94 (version "0.14")
95 (source
96 (origin
97 (method url-fetch)
98 (uri (cran-uri "rticles" version))
99 (sha256
100 (base32
101 "1377fib4asazhhki4aajvld0wa35vd3zjvyl3lf2hjm2qk3vyak7"))))
102 (properties `((upstream-name . "rticles")))
103 (build-system r-build-system)
104 (propagated-inputs
105 `(("r-knitr" ,r-knitr)
106 ("r-rmarkdown" ,r-rmarkdown)
107 ("r-tinytex" ,r-tinytex)
108 ("r-xfun" ,r-xfun)
109 ("r-yaml" ,r-yaml)))
110 (home-page "https://github.com/rstudio/rticles")
111 (synopsis "Article formats for R Markdown")
112 (description
113 "This package provides a suite of custom R Markdown formats and templates
114 for authoring journal articles and conference submissions.")
115 (license license:gpl3)))
116
117 (define-public r-bezier
118 (package
119 (name "r-bezier")
120 (version "1.1.2")
121 (source (origin
122 (method url-fetch)
123 (uri (cran-uri "bezier" version))
124 (sha256
125 (base32
126 "1vw5128v8h973xwa1fdm9cw2jvrldj87nd55lddlp3qsz3ag4br6"))))
127 (build-system r-build-system)
128 (home-page "https://cran.r-project.org/web/packages/bezier/")
129 (synopsis "Bezier curve and spline toolkit")
130 (description
131 "This package is a toolkit for working with Bezier curves and splines.
132 The package provides functions for point generation, arc length estimation,
133 degree elevation and curve fitting.")
134 (license license:gpl2+)))
135
136 (define-public r-v8
137 (package
138 (name "r-v8")
139 (version "3.2.0")
140 (source
141 (origin
142 (method url-fetch)
143 (uri (cran-uri "V8" version))
144 (sha256
145 (base32
146 "0z0dwa538lkggawiwrlplz698xznzlgv9fwhdslm7g7gdxyf0xgm"))))
147 (properties `((upstream-name . "V8")))
148 (build-system r-build-system)
149 (arguments
150 `(#:phases
151 (modify-phases %standard-phases
152 (add-after 'unpack 'find-v8
153 (lambda* (#:key inputs #:allow-other-keys)
154 (substitute* "configure"
155 (("^PKG_LIBS=.*")
156 (string-append "PKG_LIBS="
157 (assoc-ref inputs "node")
158 "/lib/libnode.so.64\n")))
159 (setenv "INCLUDE_DIR"
160 (string-append
161 (assoc-ref inputs "node")
162 "/include/node"))
163 (setenv "LIB_DIR"
164 (string-append
165 (assoc-ref inputs "node") "/lib"))
166 #t)))))
167 (inputs
168 `(("node" ,libnode)))
169 (propagated-inputs
170 `(("r-curl" ,r-curl)
171 ("r-jsonlite" ,r-jsonlite)
172 ("r-rcpp" ,r-rcpp)))
173 (native-inputs
174 `(("r-knitr" ,r-knitr)))
175 (home-page "https://jeroen.cran.dev/V8")
176 (synopsis "Embedded JavaScript and WebAssembly engine for R")
177 (description
178 "This package provides an R interface to V8: Google's JavaScript and
179 WebAssembly engine.")
180 (license license:expat)))
181
182 (define-public r-dot
183 (package
184 (name "r-dot")
185 (version "0.1")
186 (source
187 (origin
188 (method url-fetch)
189 (uri (cran-uri "DOT" version))
190 (sha256
191 (base32
192 "0qh5n57cp9c2n5yn59q4wggz82943pwfanp3kx869aba2x3sj30i"))))
193 (properties `((upstream-name . "DOT")))
194 (build-system r-build-system)
195 (propagated-inputs
196 `(("r-v8" ,r-v8)))
197 (home-page "http://haghish.com/dot")
198 (synopsis "Render and Export DOT Graphs in R")
199 (description
200 "This package provides tools to render DOT diagram markup language in R
201 and also provides the possibility to export the graphs in PostScript and
202 SVG (Scalable Vector Graphics) formats. In addition, it supports literate
203 programming packages such as @code{knitr} and @code{rmarkdown}.")
204 (license license:expat)))
205
206 (define-public r-clipr
207 (package
208 (name "r-clipr")
209 (version "0.7.0")
210 (source
211 (origin
212 (method url-fetch)
213 (uri (cran-uri "clipr" version))
214 (sha256
215 (base32
216 "1qn2p13d0c1bpqss6mv9hk60980rzhznfqpyaf5x0fy65svy9903"))))
217 (build-system r-build-system)
218 (home-page "https://github.com/mdlincoln/clipr")
219 (synopsis "Read and write from the system clipboard")
220 (description
221 "This package provides simple utility functions to read from and write to
222 the system clipboards.")
223 (license license:gpl3)))
224
225 (define-public r-zoo
226 (package
227 (name "r-zoo")
228 (version "1.8-8")
229 (source (origin
230 (method url-fetch)
231 (uri (cran-uri "zoo" version))
232 (sha256
233 (base32
234 "1rrw431jwaxd9xljp73f15rhcxvwc0xlyrmr0ghi5fj7a03c932f"))))
235 (build-system r-build-system)
236 (propagated-inputs
237 `(("r-lattice" ,r-lattice)))
238 (home-page "http://zoo.R-Forge.R-project.org/")
239 (synopsis "S3 infrastructure for regular and irregular time series")
240 (description "This package contains an S3 class with methods for totally
241 ordered indexed observations. It is particularly aimed at irregular time
242 series of numeric vectors/matrices and factors.")
243 (license license:gpl2+)))
244
245 (define-public r-ggpmisc
246 (package
247 (name "r-ggpmisc")
248 (version "0.3.5")
249 (source (origin
250 (method url-fetch)
251 (uri (cran-uri "ggpmisc" version))
252 (sha256
253 (base32
254 "0ma2d3a3v8n85sghxr9anl6vgbs8gi82i1dllw99n81gsm59wgin"))))
255 (build-system r-build-system)
256 (propagated-inputs
257 `(("r-broom" ,r-broom)
258 ("r-dplyr" ,r-dplyr)
259 ("r-ggplot2" ,r-ggplot2)
260 ("r-gridextra" ,r-gridextra)
261 ("r-lubridate" ,r-lubridate)
262 ("r-magrittr" ,r-magrittr)
263 ("r-mass" ,r-mass)
264 ("r-plyr" ,r-plyr)
265 ("r-polynom" ,r-polynom)
266 ("r-rlang" ,r-rlang)
267 ("r-scales" ,r-scales)
268 ("r-splus2r" ,r-splus2r)
269 ("r-stringr" ,r-stringr)
270 ("r-tibble" ,r-tibble)
271 ("r-xts" ,r-xts)
272 ("r-zoo" ,r-zoo)))
273 (native-inputs
274 `(("r-knitr" ,r-knitr)))
275 (home-page "https://www.r4photobiology.info/")
276 (synopsis "Miscellaneous Extensions to @code{ggplot2}")
277 (description "This package provides extensions to @code{ggplot2},
278 respecting the grammar of its graphics paradigm.")
279 (license license:gpl2+)))
280
281 (define-public r-gprofiler
282 (package
283 (name "r-gprofiler")
284 (version "0.7.0")
285 (source
286 (origin
287 (method url-fetch)
288 (uri (cran-uri "gProfileR" version))
289 (sha256
290 (base32
291 "1h1v0kgpsn04ald2izznh7fr2riwisj5hcgz4k7h3qc931rf0r4k"))))
292 (properties `((upstream-name . "gProfileR")))
293 (build-system r-build-system)
294 (propagated-inputs
295 `(("r-plyr" ,r-plyr)
296 ("r-rcurl" ,r-rcurl)))
297 (home-page "https://cran.r-project.org/web/packages/gProfileR/")
298 (synopsis "Interface to the g:Profiler toolkit")
299 (description
300 "This package provides tools for functional enrichment analysis,
301 gene identifier conversion and mapping homologous genes across related
302 organisms via the @code{g:Profiler} toolkit.")
303 (license license:gpl2+)))
304
305 (define-public r-gprofiler2
306 (package
307 (name "r-gprofiler2")
308 (version "0.1.9")
309 (source
310 (origin
311 (method url-fetch)
312 (uri (cran-uri "gprofiler2" version))
313 (sha256
314 (base32
315 "112hmmvdwg8xz90w1bsbzc55y4xi9jj4dqy0q4bsgp49x58r92rb"))))
316 (properties `((upstream-name . "gprofiler2")))
317 (build-system r-build-system)
318 (propagated-inputs
319 `(("r-crosstalk" ,r-crosstalk)
320 ("r-dplyr" ,r-dplyr)
321 ("r-ggplot2" ,r-ggplot2)
322 ("r-gridextra" ,r-gridextra)
323 ("r-jsonlite" ,r-jsonlite)
324 ("r-plotly" ,r-plotly)
325 ("r-rcurl" ,r-rcurl)
326 ("r-tidyr" ,r-tidyr)
327 ("r-viridislite" ,r-viridislite)))
328 (native-inputs `(("r-knitr" ,r-knitr)))
329 (home-page "https://cran.r-project.org/web/packages/gprofiler2/")
330 (synopsis "Interface to the g:Profiler toolset")
331 (description
332 "This package provides a toolset for functional enrichment analysis and
333 visualization, gene/protein/SNP identifier conversion and mapping orthologous
334 genes across species via @url{https://biit.cs.ut.ee/gprofiler,g:Profiler}.
335 The main tools are:
336
337 @enumerate
338 @item @code{g:GOSt}, functional enrichment analysis and visualization of gene
339 lists;
340 @item @code{g:Convert}, gene/protein/transcript identifier conversion across
341 various namespaces;
342 @item @code{g:Orth}, orthology search across species;
343 @item @code{g:SNPense}, mapping SNP rs identifiers to chromosome positions,
344 genes and variant effects.
345 @end enumerate
346
347 This package is an R interface corresponding to the 2019 update of
348 @code{g:Profiler} and provides access to versions @code{e94_eg41_p11} and
349 higher.")
350 (license license:gpl2+)))
351
352 (define-public r-oenb
353 (package
354 (name "r-oenb")
355 (version "0.0.1")
356 (source
357 (origin
358 (method url-fetch)
359 (uri (cran-uri "oenb" version))
360 (sha256
361 (base32
362 "1x1jlqp6r27c4gb7wafzpmh5rq6yq61a2d395r5lsmv2g5jb4biz"))))
363 (properties `((upstream-name . "oenb")))
364 (build-system r-build-system)
365 (propagated-inputs
366 `(("r-dplyr" ,r-dplyr)
367 ("r-xml" ,r-xml)))
368 (native-inputs `(("r-knitr" ,r-knitr)))
369 (home-page "https://github.com/franzmohr/oenb")
370 (synopsis "Tools for the OeNB Data Web Service")
371 (description
372 "Tools to access data from the data web service of the
373 @acronym{OeNB, Oesterreichische Nationalbank},
374 @url{https://www.oenb.at/en/Statistics/User-Defined-Tables/webservice.html}.")
375 (license license:gpl2+)))
376
377 (define-public r-scales
378 (package
379 (name "r-scales")
380 (version "1.1.1")
381 (source
382 (origin
383 (method url-fetch)
384 (uri (cran-uri "scales" version))
385 (sha256
386 (base32 "019ps0njjc0rzrjygqiyn8b9vp0c3c0jd56h1yi19wzi49jvdcj0"))))
387 (build-system r-build-system)
388 (propagated-inputs
389 `(("r-farver" ,r-farver)
390 ("r-labeling" ,r-labeling)
391 ("r-lifecycle" ,r-lifecycle)
392 ("r-munsell" ,r-munsell)
393 ("r-rcolorbrewer" ,r-rcolorbrewer)
394 ("r-r6" ,r-r6)
395 ("r-viridislite" ,r-viridislite)))
396 (home-page "https://github.com/hadley/scales")
397 (synopsis "Scale functions for visualization")
398 (description
399 "This package provides graphical scales that map data to aesthetics, and
400 provides methods for automatically determining breaks and labels for axes and
401 legends.")
402 (license license:expat)))
403
404 (define-public r-pheatmap
405 (package
406 (name "r-pheatmap")
407 (version "1.0.12")
408 (source
409 (origin
410 (method url-fetch)
411 (uri (cran-uri "pheatmap" version))
412 (sha256
413 (base32
414 "1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
415 (build-system r-build-system)
416 (propagated-inputs
417 `(("r-gtable" ,r-gtable)
418 ("r-rcolorbrewer" ,r-rcolorbrewer)
419 ("r-scales" ,r-scales)))
420 (home-page "https://cran.r-project.org/web/packages/pheatmap")
421 (synopsis "Pretty heatmaps")
422 (description
423 "This package provides an implementation of heatmaps that offers more
424 control over dimensions and appearance.")
425 (license license:gpl2+)))
426
427 (define-public r-ecp
428 (package
429 (name "r-ecp")
430 (version "3.1.2")
431 (source (origin
432 (method url-fetch)
433 (uri (cran-uri "ecp" version))
434 (sha256
435 (base32
436 "11f9p869xr0zg779i46gmflxlq4xclk9wxbab0nj2fan26pn4sfy"))))
437 (build-system r-build-system)
438 (propagated-inputs
439 `(("r-rcpp" ,r-rcpp)))
440 (home-page "https://cran.r-project.org/web/packages/ecp/")
441 (synopsis "Multiple change-point analysis of multivariate data")
442 (description
443 "This package implements various procedures for finding multiple
444 change-points. Two methods make use of dynamic programming and pruning, with
445 no distributional assumptions other than the existence of certain absolute
446 moments in one method. Hierarchical and exact search methods are included.
447 All methods return the set of estimated change-points as well as other summary
448 information.")
449 (license license:gpl2+)))
450
451 (define-public r-ellipsis
452 (package
453 (name "r-ellipsis")
454 (version "0.3.1")
455 (source
456 (origin
457 (method url-fetch)
458 (uri (cran-uri "ellipsis" version))
459 (sha256
460 (base32
461 "1nvmkcca57d9067rcggw1gby80ibx5hplk2myz0cs9zwilaib2jg"))))
462 (build-system r-build-system)
463 (propagated-inputs
464 `(("r-rlang" ,r-rlang)))
465 (home-page "https://github.com/hadley/ellipsis")
466 (synopsis "Tools for working with additional arguments")
467 (description
468 "In S3 generics, it's useful to take @code{...} so that methods can have
469 additional arguments. But this flexibility comes at a cost: misspelled
470 arguments will be silently ignored. The @code{ellipsis} package is an
471 experiment that allows a generic to warn if any arguments passed in @code{...}
472 are not used.")
473 (license license:gpl3)))
474
475 (define-public r-grr
476 (package
477 (name "r-grr")
478 (version "0.9.5")
479 (source
480 (origin
481 (method url-fetch)
482 (uri (cran-uri "grr" version))
483 (sha256
484 (base32
485 "0arbcgrvhkwb5xk4nry1ffg2qj0v8ivhjghdr505ib4357g0c9i9"))))
486 (build-system r-build-system)
487 (home-page "https://cran.r-project.org/web/packages/grr")
488 (synopsis "Alternative implementations of base R functions")
489 (description
490 "This package provides alternative implementations of some base R
491 functions, including @code{sort}, @code{order}, and @code{match}. The
492 functions are simplified but can be faster or have other advantages.")
493 (license license:gpl3)))
494
495 (define-public r-matrix-utils
496 (package
497 (name "r-matrix-utils")
498 (version "0.9.8")
499 (source
500 (origin
501 (method url-fetch)
502 (uri (cran-uri "Matrix.utils" version))
503 (sha256
504 (base32
505 "0a5fq1scykqk0kc9j051j6fix6j2dqwz5wbgb0amaxsiywz9vigb"))))
506 (properties `((upstream-name . "Matrix.utils")))
507 (build-system r-build-system)
508 (propagated-inputs
509 `(("r-grr" ,r-grr)
510 ("r-matrix" ,r-matrix)))
511 (home-page "https://github.com/cvarrichio/Matrix.utils")
512 (synopsis
513 "Data.frame-Like Operations on Sparse and Dense Matrix Objects")
514 (description
515 "This package implements data manipulation methods such as @code{cast},
516 @code{aggregate}, and @code{merge}/@code{join} for Matrix and Matrix-like
517 objects.")
518 (license license:gpl3)))
519
520 (define-public r-sys
521 (package
522 (name "r-sys")
523 (version "3.4")
524 (source
525 (origin
526 (method url-fetch)
527 (uri (cran-uri "sys" version))
528 (sha256
529 (base32
530 "11q4zmx62w44p1j34frwmrsp23mc7l4n354i0zyziw92yax8zy0p"))))
531 (build-system r-build-system)
532 (home-page "https://github.com/jeroen/sys")
533 (synopsis "Powerful and reliable tools for running system commands in R")
534 (description
535 "This package provides drop-in replacements for the base @code{system2()}
536 function with fine control and consistent behavior across platforms. It
537 supports clean interruption, timeout, background tasks, and streaming STDIN /
538 STDOUT / STDERR over binary or text connections. The package also provides
539 functions for evaluating expressions inside a temporary fork. Such
540 evaluations have no side effects on the main R process, and support reliable
541 interrupts and timeouts. This provides the basis for a sandboxing
542 mechanism.")
543 (license license:expat)))
544
545 (define-public r-askpass
546 (package
547 (name "r-askpass")
548 (version "1.1")
549 (source
550 (origin
551 (method url-fetch)
552 (uri (cran-uri "askpass" version))
553 (sha256
554 (base32
555 "07q0ik8jzk44vpwh48rr3fnpd7dzsdhjjsl4l850rffv3dyq4h6v"))))
556 (build-system r-build-system)
557 (propagated-inputs `(("r-sys" ,r-sys)))
558 (home-page "https://github.com/jeroen/askpass")
559 (synopsis "Safe password entry for R")
560 (description
561 "This package provides cross-platform utilities for prompting the user
562 for credentials or a passphrase, for example to authenticate with a server or
563 read a protected key.")
564 (license license:expat)))
565
566 (define-public r-vegan
567 (package
568 (name "r-vegan")
569 (version "2.5-6")
570 (source
571 (origin
572 (method url-fetch)
573 (uri (cran-uri "vegan" version))
574 (sha256
575 (base32
576 "0g60rgn1i7wqf9pf5m1yki1m45gcp7i5hmjic0ci0f6vng70mh5k"))))
577 (build-system r-build-system)
578 (native-inputs
579 `(("gfortran" ,gfortran)))
580 (propagated-inputs
581 `(("r-cluster" ,r-cluster)
582 ("r-knitr" ,r-knitr) ; needed for vignettes
583 ("r-lattice" ,r-lattice)
584 ("r-mass" ,r-mass)
585 ("r-mgcv" ,r-mgcv)
586 ("r-permute" ,r-permute)))
587 (home-page "https://cran.r-project.org/web/packages/vegan")
588 (synopsis "Functions for community ecology")
589 (description
590 "The vegan package provides tools for descriptive community ecology. It
591 has most basic functions of diversity analysis, community ordination and
592 dissimilarity analysis. Most of its multivariate tools can be used for other
593 data types as well.")
594 (license license:gpl2+)))
595
596 (define-public r-tidyverse
597 (package
598 (name "r-tidyverse")
599 (version "1.3.0")
600 (source
601 (origin
602 (method url-fetch)
603 (uri (cran-uri "tidyverse" version))
604 (sha256
605 (base32
606 "02gyys08qv2v4cl2d66gml4d31ipxay0iyfwwksvxyclx60wp2kd"))))
607 (build-system r-build-system)
608 (propagated-inputs
609 `(("r-broom" ,r-broom)
610 ("r-cli" ,r-cli)
611 ("r-crayon" ,r-crayon)
612 ("r-dbplyr" ,r-dbplyr)
613 ("r-dplyr" ,r-dplyr)
614 ("r-forcats" ,r-forcats)
615 ("r-ggplot2" ,r-ggplot2)
616 ("r-haven" ,r-haven)
617 ("r-hms" ,r-hms)
618 ("r-httr" ,r-httr)
619 ("r-jsonlite" ,r-jsonlite)
620 ("r-lubridate" ,r-lubridate)
621 ("r-magrittr" ,r-magrittr)
622 ("r-modelr" ,r-modelr)
623 ("r-pillar" ,r-pillar)
624 ("r-purrr" ,r-purrr)
625 ("r-readr" ,r-readr)
626 ("r-readxl" ,r-readxl)
627 ("r-reprex" ,r-reprex)
628 ("r-rlang" ,r-rlang)
629 ("r-rstudioapi" ,r-rstudioapi)
630 ("r-rvest" ,r-rvest)
631 ("r-stringr" ,r-stringr)
632 ("r-tibble" ,r-tibble)
633 ("r-tidyr" ,r-tidyr)
634 ("r-xml2" ,r-xml2)))
635 (home-page "https://tidyverse.tidyverse.org")
636 (synopsis "Install and load packages from the \"Tidyverse\"")
637 (description
638 "The @code{tidyverse} is a set of packages that work in harmony because
639 they share common data representations and API design. This package is
640 designed to make it easy to install and load multiple tidyverse packages in a
641 single step.")
642 (license license:gpl3)))
643
644 (define-public r-rvest
645 (package
646 (name "r-rvest")
647 (version "0.3.6")
648 (source
649 (origin
650 (method url-fetch)
651 (uri (cran-uri "rvest" version))
652 (sha256
653 (base32 "1yh2p429a0zr8pqmlw5rzf6m797j20j5w6xwxlqq0wrdbnif6bka"))))
654 (build-system r-build-system)
655 (propagated-inputs
656 `(("r-httr" ,r-httr)
657 ("r-magrittr" ,r-magrittr)
658 ("r-selectr" ,r-selectr)
659 ("r-xml2" ,r-xml2)))
660 (native-inputs
661 `(("r-knitr" ,r-knitr)))
662 (home-page "https://github.com/hadley/rvest")
663 (synopsis "Simple web scraping for R")
664 (description
665 "@code{r-rvest} helps you scrape information from web pages. It is
666 designed to work with @code{magrittr} to make it easy to express common web
667 scraping tasks, inspired by libraries like @code{BeautifulSoup}.")
668 (license license:gpl3)))
669
670 (define-public r-selectr
671 (package
672 (name "r-selectr")
673 (version "0.4-2")
674 (source
675 (origin
676 (method url-fetch)
677 (uri (cran-uri "selectr" version))
678 (sha256
679 (base32 "09y1n3iy297g49xlpl7xrjpwgnm57pskx5991lyfcpizbz8ax22m"))))
680 (build-system r-build-system)
681 (propagated-inputs
682 `(("r-stringr" ,r-stringr)
683 ("r-r6" ,r-r6)))
684 (home-page "https://sjp.co.nz/projects/selectr/")
685 (synopsis "Translate CSS selectors to XPath expressions")
686 (description
687 "@code{r-selectr} translates a CSS3 selector into an equivalent XPath
688 expression. This allows you to use CSS selectors when working with the XML
689 package as it can only evaluate XPath expressions. Also provided are
690 convenience functions useful for using CSS selectors on XML nodes. This
691 package is a port of the Python package @code{cssselect}.")
692 (license license:bsd-3)))
693
694 (define-public r-reprex
695 (package
696 (name "r-reprex")
697 (version "0.3.0")
698 (source
699 (origin
700 (method url-fetch)
701 (uri (cran-uri "reprex" version))
702 (sha256
703 (base32
704 "0v7vxzs8alwz8y1cjicpimp5yimf1g9gb8x5wy3zhvrz6kk2lg10"))))
705 (build-system r-build-system)
706 (propagated-inputs
707 `(("r-callr" ,r-callr)
708 ("r-clipr" ,r-clipr)
709 ("r-fs" ,r-fs)
710 ("r-rlang" ,r-rlang)
711 ("r-rmarkdown" ,r-rmarkdown)
712 ("r-whisker" ,r-whisker)
713 ("r-withr" ,r-withr)))
714 (home-page "https://github.com/tidyverse/reprex")
715 (synopsis "Prepare reproducible R code examples for sharing")
716 (description
717 "This package provides a convenience wrapper that uses the
718 @code{rmarkdown} package to render small snippets of code to target formats
719 that include both code and output. The goal is to encourage the sharing of
720 small, reproducible, and runnable examples on code-oriented websites or email.
721 @code{reprex} also extracts clean, runnable R code from various common formats,
722 such as copy/paste from an R session.")
723 (license license:expat)))
724
725 (define-public r-reordercluster
726 (package
727 (name "r-reordercluster")
728 (version "1.0")
729 (source (origin
730 (method url-fetch)
731 (uri (cran-uri "ReorderCluster" version))
732 (sha256
733 (base32
734 "0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
735 (build-system r-build-system)
736 (propagated-inputs
737 `(("r-gplots" ,r-gplots)
738 ("r-rcpp" ,r-rcpp)))
739 (home-page "https://cran.r-project.org/web/packages/ReorderCluster")
740 (synopsis "Reordering the dendrogram according to the class labels")
741 (description "This package provides tools for performing the leaf reordering
742 for the dendrogram that preserves the hierarchical clustering result and at the
743 same time tries to group instances from the same class together.")
744 (license license:gpl3+)))
745
746 (define-public r-callr
747 (package
748 (name "r-callr")
749 (version "3.4.3")
750 (source
751 (origin
752 (method url-fetch)
753 (uri (cran-uri "callr" version))
754 (sha256
755 (base32
756 "1dc20gdawy9mhnc452qlshv2p4krs6c2gymvpv365mn141zjgdq1"))))
757 (build-system r-build-system)
758 (propagated-inputs
759 `(("r-r6" ,r-r6)
760 ("r-processx" ,r-processx)))
761 (home-page "https://github.com/r-lib/callr#readme")
762 (synopsis "Call R from R")
763 (description
764 "It is sometimes useful to perform a computation in a separate R process,
765 without affecting the current R process at all. This package does exactly
766 that.")
767 (license license:expat)))
768
769 (define-public r-readxl
770 (package
771 (name "r-readxl")
772 (version "1.3.1")
773 (source
774 (origin
775 (method url-fetch)
776 (uri (cran-uri "readxl" version))
777 (sha256
778 (base32
779 "15mambxr8c7k2ikdfsl1w3vxvm54dsnk0cl1qvks6iig7rql3d14"))))
780 (build-system r-build-system)
781 (propagated-inputs
782 `(("r-cellranger" ,r-cellranger)
783 ("r-progress" ,r-progress)
784 ("r-rcpp" ,r-rcpp)
785 ("r-tibble" ,r-tibble)))
786 (home-page "https://readxl.tidyverse.org")
787 (synopsis "Read Excel files")
788 (description
789 "This package lets you import Excel files into R. It supports
790 @file{.xls} via the embedded @code{libxls} C library and @file{.xlsx} via
791 the embedded @code{RapidXML} C++ library.")
792 ;; XXX: This package bundles a copy of 'libxsl' which is BSD-2 and
793 ;; 'rapidxml' which is Boost.
794 (license (list license:gpl3 license:bsd-2 license:boost1.0))))
795
796 (define-public r-modelr
797 (package
798 (name "r-modelr")
799 (version "0.1.8")
800 (source
801 (origin
802 (method url-fetch)
803 (uri (cran-uri "modelr" version))
804 (sha256
805 (base32
806 "1i31nff7bqibk6r4hhd4j1vzwbyaf8493v0bjaagn36njmysfnw2"))))
807 (build-system r-build-system)
808 (propagated-inputs
809 `(("r-broom" ,r-broom)
810 ("r-magrittr" ,r-magrittr)
811 ("r-purrr" ,r-purrr)
812 ("r-rlang" ,r-rlang)
813 ("r-tibble" ,r-tibble)
814 ("r-tidyr" ,r-tidyr)
815 ("r-tidyselect" ,r-tidyselect)
816 ("r-vctrs" ,r-vctrs)))
817 (home-page "https://github.com/tidyverse/modelr")
818 (synopsis "Helper functions for modelling in pipelines")
819 (description
820 "Functions for modelling that help you seamlessly integrate modelling
821 into a pipeline of data manipulation and visualisation.")
822 (license license:gpl3)))
823
824 (define-public r-httpuv
825 (package
826 (name "r-httpuv")
827 (version "1.5.4")
828 (source (origin
829 (method url-fetch)
830 (uri (cran-uri "httpuv" version))
831 (sha256
832 (base32
833 "066rprqvz9qln6xd85x1yh1wbbmzd157xjl8zq1zbgr8l6347inm"))))
834 (build-system r-build-system)
835 (propagated-inputs
836 `(("r-bh" ,r-bh)
837 ("r-later" ,r-later)
838 ("r-promises" ,r-promises)
839 ("r-r6" ,r-r6)
840 ("r-rcpp" ,r-rcpp)))
841 (home-page "https://github.com/rstudio/httpuv")
842 (synopsis "HTTP and WebSocket server library for R")
843 (description
844 "The httpuv package provides low-level socket and protocol support for
845 handling HTTP and WebSocket requests directly from within R. It is primarily
846 intended as a building block for other packages, rather than making it
847 particularly easy to create complete web applications using httpuv alone.")
848 ;; This package includes third-party code that was originally released
849 ;; under various non-copyleft licenses. Full licensing information can be
850 ;; obtained here: https://github.com/rstudio/httpuv/blob/master/LICENSE
851 (license license:gpl3+)))
852
853 (define-public r-jsonlite
854 (package
855 (name "r-jsonlite")
856 (version "1.7.0")
857 (source (origin
858 (method url-fetch)
859 (uri (cran-uri "jsonlite" version))
860 (sha256
861 (base32
862 "1izfrk5yahsz6s69wanfspn72qdffjglbr5305akj72ig9fnladq"))))
863 (build-system r-build-system)
864 (native-inputs
865 `(("r-knitr" ,r-knitr)))
866 (home-page "https://arxiv.org/abs/1403.2805")
867 (synopsis "Robust, high performance JSON parser and generator for R")
868 (description
869 "The jsonlite package provides a fast JSON parser and generator optimized
870 for statistical data and the web. It offers flexible, robust, high
871 performance tools for working with JSON in R and is particularly powerful for
872 building pipelines and interacting with a web API. In addition to converting
873 JSON data from/to R objects, jsonlite contains functions to stream, validate,
874 and prettify JSON data. The unit tests included with the package verify that
875 all edge cases are encoded and decoded consistently for use with dynamic data
876 in systems and applications.")
877 (license license:expat)))
878
879 (define-public r-servr
880 (package
881 (name "r-servr")
882 (version "0.18")
883 (source (origin
884 (method url-fetch)
885 (uri (cran-uri "servr" version))
886 (sha256
887 (base32
888 "0xfbf1a1w34hbsx4jrdr4rqf22v7gf1p37ngknglv1dyxih7ipja"))))
889 (build-system r-build-system)
890 (propagated-inputs
891 `(("r-httpuv" ,r-httpuv)
892 ("r-jsonlite" ,r-jsonlite)
893 ("r-mime" ,r-mime)
894 ("r-xfun" ,r-xfun)))
895 (home-page "https://github.com/yihui/servr")
896 (synopsis "Simple HTTP server to serve static files or dynamic documents")
897 (description
898 "Servr provides an HTTP server in R to serve static files, or dynamic
899 documents that can be converted to HTML files (e.g., R Markdown) under a given
900 directory.")
901 (license license:expat)))
902
903 (define-public r-htmltools
904 (package
905 (name "r-htmltools")
906 (version "0.5.0")
907 (source (origin
908 (method url-fetch)
909 (uri (cran-uri "htmltools" version))
910 (sha256
911 (base32
912 "07fjznax5sin563ddnzlb7iwc8b39wzf7ymjn66pbmxgskijq2pz"))))
913 (build-system r-build-system)
914 (propagated-inputs
915 `(("r-base64enc" ,r-base64enc)
916 ("r-digest" ,r-digest)
917 ("r-rlang" ,r-rlang)))
918 (home-page "https://cran.r-project.org/web/packages/htmltools")
919 (synopsis "R tools for HTML")
920 (description
921 "This package provides tools for HTML generation and output in R.")
922 (license license:expat)))
923
924 (define-public r-htmlwidgets
925 (package
926 (name "r-htmlwidgets")
927 (version "1.5.1")
928 (source (origin
929 (method url-fetch)
930 (uri (cran-uri "htmlwidgets" version))
931 (sha256
932 (base32
933 "10fp306l1nybkah6jrlrqwwdb6zvklbddp8i3w9v9naj8la5jbnl"))))
934 (build-system r-build-system)
935 (propagated-inputs
936 `(("r-htmltools" ,r-htmltools)
937 ("r-jsonlite" ,r-jsonlite)
938 ("r-yaml" ,r-yaml)))
939 (home-page "https://github.com/ramnathv/htmlwidgets")
940 (synopsis "HTML Widgets for R")
941 (description
942 "HTML widgets is a framework for creating HTML widgets that render in
943 various contexts including the R console, R Markdown documents, and Shiny web
944 applications.")
945 (license license:expat)))
946
947 (define-public r-htmltable
948 (package
949 (name "r-htmltable")
950 (version "2.0.1")
951 (source
952 (origin
953 (method url-fetch)
954 (uri (cran-uri "htmlTable" version))
955 (sha256
956 (base32 "0ma52kajzxfg9w811d6ldhghzn9xhyr8bh7k5v265k82bzx7rac6"))))
957 (properties `((upstream-name . "htmlTable")))
958 (build-system r-build-system)
959 (propagated-inputs
960 `(("r-checkmate" ,r-checkmate)
961 ("r-htmltools" ,r-htmltools)
962 ("r-htmlwidgets" ,r-htmlwidgets)
963 ("r-knitr" ,r-knitr)
964 ("r-magrittr" ,r-magrittr)
965 ("r-rstudioapi" ,r-rstudioapi)
966 ("r-stringr" ,r-stringr)))
967 (native-inputs
968 `(("r-knitr" ,r-knitr)))
969 (home-page "http://gforge.se/packages/")
970 (synopsis "Advanced tables for Markdown/HTML")
971 (description
972 "This package provides functions to build tables with advanced layout
973 elements such as row spanners, column spanners, table spanners, zebra
974 striping, and more. While allowing advanced layout, the underlying
975 CSS-structure is simple in order to maximize compatibility with word
976 processors such as LibreOffice. The package also contains a few text
977 formatting functions that help outputting text compatible with HTML or
978 LaTeX.")
979 (license license:gpl3+)))
980
981 (define-public r-curl
982 (package
983 (name "r-curl")
984 (version "4.3")
985 (source (origin
986 (method url-fetch)
987 (uri (cran-uri "curl" version))
988 (sha256
989 (base32
990 "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
991 (build-system r-build-system)
992 (arguments
993 `(#:phases
994 (modify-phases %standard-phases
995 ;; The environment variable CURL_CA_BUNDLE is only respected when
996 ;; running Windows, so we disable the platform checks.
997 ;; This can be removed once the libcurl has been patched.
998 (add-after 'unpack 'allow-CURL_CA_BUNDLE
999 (lambda _
1000 (substitute* "R/onload.R"
1001 (("if \\(!grepl\\(\"mingw\".*")
1002 "if (FALSE)\n"))
1003 (substitute* "src/handle.c"
1004 (("/\\* Only set" m)
1005 (string-append "\
1006 const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
1007 if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle); }
1008 " m)))
1009 #t)))))
1010 (inputs
1011 `(("libcurl" ,curl)
1012 ("zlib" ,zlib)))
1013 (native-inputs
1014 `(("pkg-config" ,pkg-config)))
1015 (home-page "https://github.com/jeroenooms/curl")
1016 (synopsis "HTTP client for R")
1017 (description
1018 "The @code{curl()} and @code{curl_download()} functions provide highly
1019 configurable drop-in replacements for base @code{url()} and
1020 @code{download.file()} with better performance, support for encryption, gzip
1021 compression, authentication, and other @code{libcurl} goodies. The core of
1022 the package implements a framework for performing fully customized requests
1023 where data can be processed either in memory, on disk, or streaming via the
1024 callback or connection interfaces.")
1025 (license license:expat)))
1026
1027 (define-public r-hwriter
1028 (package
1029 (name "r-hwriter")
1030 (version "1.3.2")
1031 (source
1032 (origin
1033 (method url-fetch)
1034 (uri (cran-uri "hwriter" version))
1035 (sha256
1036 (base32
1037 "0arjsz854rfkfqhgvpqbm9lfni97dcjs66isdsfvwfd2wz932dbb"))))
1038 (build-system r-build-system)
1039 (home-page "https://cran.r-project.org/web/packages/hwriter")
1040 (synopsis "Output R objects in HTML format")
1041 (description
1042 "This package provides easy-to-use and versatile functions to output R
1043 objects in HTML format.")
1044 (license license:lgpl2.1+)))
1045
1046 (define-public r-rjson
1047 (package
1048 (name "r-rjson")
1049 (version "0.2.20")
1050 (source
1051 (origin
1052 (method url-fetch)
1053 (uri (cran-uri "rjson" version))
1054 (sha256
1055 (base32
1056 "0v1zvdd3svnavklh7y5xbwrrkbvx6053r4c5hgnk7hz7bqg7qa1s"))))
1057 (build-system r-build-system)
1058 (home-page "https://cran.r-project.org/web/packages/rjson")
1059 (synopsis "JSON library for R")
1060 (description
1061 "This package provides functions to convert R objects into JSON objects
1062 and vice-versa.")
1063 (license license:gpl2+)))
1064
1065 (define-public r-fastmap
1066 (package
1067 (name "r-fastmap")
1068 (version "1.0.1")
1069 (source
1070 (origin
1071 (method url-fetch)
1072 (uri (cran-uri "fastmap" version))
1073 (sha256
1074 (base32
1075 "1v7sp56xiha0bh78g3w92k52p9vkp7ryzpw0z66nyddxzrfv0y27"))))
1076 (properties `((upstream-name . "fastmap")))
1077 (build-system r-build-system)
1078 (home-page "https://r-lib.github.io/fastmap/")
1079 (synopsis "Fast implementation of a key-value store")
1080 (description
1081 "This package provides a fast implementation of a key-value store.
1082 Environments are commonly used as key-value stores, but every time a new key
1083 is used, it is added to R's global symbol table, causing a small amount of
1084 memory leakage. This can be problematic in cases where many different keys
1085 are used. Fastmap avoids this memory leak issue by implementing the map using
1086 data structures in C++.")
1087 (license license:expat)))
1088
1089 (define-public r-shiny
1090 (package
1091 (name "r-shiny")
1092 (version "1.4.0.2")
1093 (source
1094 (origin
1095 (method git-fetch)
1096 (uri (git-reference
1097 (url "https://github.com/rstudio/shiny")
1098 (commit (string-append "v" version))))
1099 (file-name (git-file-name name version))
1100 (sha256
1101 (base32
1102 "005wgcxq7f2q9g6wvfk29n2nms262w0abpz93sfvx79yv6qxppzs"))))
1103 (build-system r-build-system)
1104 (arguments
1105 `(#:modules ((guix build r-build-system)
1106 (guix build minify-build-system)
1107 (guix build utils)
1108 (ice-9 match))
1109 #:imported-modules (,@%r-build-system-modules
1110 (guix build minify-build-system))
1111 #:phases
1112 (modify-phases (@ (guix build r-build-system) %standard-phases)
1113 (add-after 'unpack 'replace-bundled-minified-JavaScript
1114 (lambda* (#:key inputs #:allow-other-keys)
1115 (let ((replace-file (lambda (old new)
1116 (format #t "replacing ~a with ~a\n" old new)
1117 (delete-file old)
1118 (symlink new old))))
1119 ;; NOTE: Files in ./inst/www/shared/datepicker/js/locales/
1120 ;; contain just data. They are not minified code, so we don't
1121 ;; replace them.
1122 (with-directory-excursion "inst/www/shared"
1123 (replace-file "bootstrap/shim/respond.min.js"
1124 (string-append (assoc-ref inputs "js-respond")
1125 "/share/javascript/respond.min.js"))
1126 (replace-file "bootstrap/shim/html5shiv.min.js"
1127 (string-append (assoc-ref inputs "js-html5shiv")
1128 "/share/javascript/html5shiv.min.js"))
1129 (replace-file "json2-min.js"
1130 (string-append (assoc-ref inputs "js-json2")
1131 "/share/javascript/json2-min.js"))
1132 (replace-file "strftime/strftime-min.js"
1133 (string-append (assoc-ref inputs "js-strftime")
1134 "/share/javascript/strftime.min.js"))
1135 (replace-file "highlight/highlight.pack.js"
1136 (string-append (assoc-ref inputs "js-highlight")
1137 "/share/javascript/highlight.min.js"))
1138 (replace-file "datatables/js/jquery.dataTables.min.js"
1139 (string-append (assoc-ref inputs "js-datatables")
1140 "/share/javascript/jquery.dataTables.min.js"))
1141 (replace-file "selectize/js/selectize.min.js"
1142 (string-append (assoc-ref inputs "js-selectize")
1143 "/share/javascript/selectize.min.js"))
1144 (replace-file "selectize/js/es5-shim.min.js"
1145 (string-append (assoc-ref inputs "js-es5-shim")
1146 "/share/javascript/es5-shim.min.js"))
1147 (for-each (match-lambda
1148 ((source . target)
1149 (delete-file target)
1150 (minify source #:target target)))
1151 '(("jqueryui/jquery-ui.js" .
1152 "jqueryui/jquery-ui.min.js")
1153 ("datepicker/js/bootstrap-datepicker.js" .
1154 "datepicker/js/bootstrap-datepicker.min.js")
1155 ("ionrangeslider/js/ion.rangeSlider.js" .
1156 "ionrangeslider/js/ion.rangeSlider.min.js")
1157 ("bootstrap/js/bootstrap.js" .
1158 "bootstrap/js/bootstrap.min.js")
1159 ("shiny.js" .
1160 "shiny.min.js")
1161 ("jquery.js" .
1162 "jquery.min.js")
1163 ("legacy/jquery.js" .
1164 "legacy/jquery.min.js")
1165 ("showdown/src/showdown.js" .
1166 "showdown/compressed/showdown.js")))))
1167 #t)))))
1168 (propagated-inputs
1169 `(("r-crayon" ,r-crayon)
1170 ("r-digest" ,r-digest)
1171 ("r-fastmap" ,r-fastmap)
1172 ("r-htmltools" ,r-htmltools)
1173 ("r-httpuv" ,r-httpuv)
1174 ("r-jsonlite" ,r-jsonlite)
1175 ("r-later" ,r-later)
1176 ("r-mime" ,r-mime)
1177 ("r-promises" ,r-promises)
1178 ("r-r6" ,r-r6)
1179 ("r-rlang" ,r-rlang)
1180 ("r-sourcetools" ,r-sourcetools)
1181 ("r-withr" ,r-withr)
1182 ("r-xtable" ,r-xtable)))
1183 (inputs
1184 `(("js-datatables" ,js-datatables)
1185 ("js-html5shiv" ,js-html5shiv)
1186 ("js-json2" ,js-json2)
1187 ("js-respond" ,js-respond)
1188 ("js-selectize" ,js-selectize)
1189 ("js-strftime" ,js-strftime)
1190 ("js-highlight" ,js-highlight)
1191 ("js-es5-shim" ,js-es5-shim)))
1192 (native-inputs
1193 `(("uglify-js" ,uglify-js)
1194 ("gfortran" ,gfortran)))
1195 (home-page "http://shiny.rstudio.com")
1196 (synopsis "Easy interactive web applications with R")
1197 (description
1198 "Makes it incredibly easy to build interactive web applications
1199 with R. Automatic \"reactive\" binding between inputs and outputs and
1200 extensive prebuilt widgets make it possible to build beautiful,
1201 responsive, and powerful applications with minimal effort.")
1202 (license license:artistic2.0)))
1203
1204 ;; This package includes minified JavaScript files. When upgrading please
1205 ;; check that there are no new minified JavaScript files.
1206 (define-public r-shinytree
1207 (package
1208 (name "r-shinytree")
1209 (version "0.2.7")
1210 (source
1211 (origin
1212 (method url-fetch)
1213 (uri (cran-uri "shinyTree" version))
1214 (sha256
1215 (base32
1216 "0jfx2capckv7hf2yx3fn8i4rcmhi222ah91jnmhg497x8wgz31s3"))
1217 (modules '((guix build utils)))
1218 (snippet
1219 '(begin
1220 ;; Delete minified JavaScript
1221 (for-each delete-file
1222 '("inst/www/jsTree-3.3.7/libs/require.js"
1223 "inst/www/jsTree-3.3.7/libs/jquery.js"
1224 "inst/www/jsTree-3.3.7/jstree.min.js"))
1225 #t))))
1226 (properties `((upstream-name . "shinyTree")))
1227 (build-system r-build-system)
1228 (arguments
1229 `(#:modules ((guix build utils)
1230 (guix build r-build-system)
1231 (srfi srfi-1)
1232 (ice-9 popen))
1233 #:phases
1234 (modify-phases %standard-phases
1235 (add-after 'unpack 'replace-minified-javascript
1236 (lambda* (#:key inputs #:allow-other-keys)
1237 (with-directory-excursion "inst/www/jsTree-3.3.7/"
1238 (symlink (string-append (assoc-ref inputs "js-requirejs")
1239 "/share/javascript/require.min.js")
1240 "libs/require.js")
1241 (call-with-values
1242 (lambda ()
1243 (unzip2
1244 `((,(assoc-ref inputs "js-jquery")
1245 "libs/jquery.js")
1246 ("jstree.js"
1247 "jstree.min.js"))))
1248 (lambda (sources targets)
1249 (for-each (lambda (source target)
1250 (format #t "Processing ~a --> ~a~%"
1251 source target)
1252 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1253 (call-with-output-file target
1254 (lambda (port)
1255 (dump-port minified port)))))
1256 sources targets))))
1257 #t)))))
1258 (propagated-inputs
1259 `(("r-htmlwidgets" ,r-htmlwidgets)
1260 ("r-jsonlite" ,r-jsonlite)
1261 ("r-promises" ,r-promises)
1262 ("r-shiny" ,r-shiny)
1263 ("r-stringr" ,r-stringr)))
1264 (inputs
1265 `(("js-requirejs" ,js-requirejs)))
1266 (native-inputs
1267 `(("uglify-js" ,uglify-js)
1268 ("js-jquery"
1269 ,(origin
1270 (method url-fetch)
1271 (uri "https://code.jquery.com/jquery-3.3.1.js")
1272 (sha256
1273 (base32
1274 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))))
1275 (home-page "https://cran.r-project.org/web/packages/shinyTree/")
1276 (synopsis "jsTree bindings for Shiny")
1277 (description
1278 "This package exposes R bindings to jsTree, a JavaScript library that
1279 supports interactive trees, to enable rich, editable trees in Shiny.")
1280 (license license:expat)))
1281
1282 (define-public r-shinydashboard
1283 (package
1284 (name "r-shinydashboard")
1285 (version "0.7.1")
1286 (source (origin
1287 (method url-fetch)
1288 (uri (cran-uri "shinydashboard" version))
1289 (sha256
1290 (base32
1291 "0khac8b27q3swdw07kl609hm0fjfjsjv591b388q99mqqr2rk92i"))))
1292 (build-system r-build-system)
1293 ;; The directory inst/AdminLTE/ contains a minified JavaScript file.
1294 ;; Regenerate it from the included sources.
1295 (arguments
1296 `(#:modules ((guix build utils)
1297 (guix build r-build-system)
1298 (ice-9 popen))
1299 #:phases
1300 (modify-phases %standard-phases
1301 (add-after 'unpack 'generate-minified-javascript
1302 (lambda _
1303 (with-directory-excursion "inst/AdminLTE"
1304 (delete-file "app.min.js")
1305 (let ((minified (open-pipe* OPEN_READ "uglify-js" "app.js")))
1306 (call-with-output-file "app.min.js"
1307 (lambda (port)
1308 (dump-port minified port))))))))))
1309 (propagated-inputs
1310 `(("r-htmltools" ,r-htmltools)
1311 ("r-promises" ,r-promises)
1312 ("r-shiny" ,r-shiny)))
1313 (native-inputs
1314 `(("uglify-js" ,uglify-js)))
1315 (home-page "https://rstudio.github.io/shinydashboard/")
1316 (synopsis "Create dashboards with shiny")
1317 (description "This package provides an extension to the Shiny web
1318 application framework for R, making it easy to create attractive dashboards.")
1319 ;; This package includes software that was released under the Expat
1320 ;; license, but the whole package is released under GPL version 2 or
1321 ;; later.
1322 (license license:gpl2+)))
1323
1324 (define-public r-shinyfiles
1325 (package
1326 (name "r-shinyfiles")
1327 (version "0.8.0")
1328 (source
1329 (origin
1330 (method url-fetch)
1331 (uri (cran-uri "shinyFiles" version))
1332 (sha256
1333 (base32 "0gwyx37f2r86cldsyknws9pafpj8g5mg3mchlyl9ymgnk5f4b88w"))))
1334 (properties `((upstream-name . "shinyFiles")))
1335 (build-system r-build-system)
1336 (propagated-inputs
1337 `(("r-fs" ,r-fs)
1338 ("r-htmltools" ,r-htmltools)
1339 ("r-jsonlite" ,r-jsonlite)
1340 ("r-shiny" ,r-shiny)
1341 ("r-tibble" ,r-tibble)))
1342 (home-page "https://github.com/thomasp85/shinyFiles")
1343 (synopsis "Server-side file system viewer for Shiny")
1344 (description
1345 "This package provides functionality for client-side navigation of the
1346 server side file system in shiny apps. In case the app is running locally
1347 this gives the user direct access to the file system without the need to
1348 \"download\" files to a temporary location. Both file and folder selection as
1349 well as file saving is available.")
1350 (license license:gpl2+)))
1351
1352 (define-public r-shinythemes
1353 (package
1354 (name "r-shinythemes")
1355 (version "1.1.2")
1356 (source
1357 (origin
1358 (method url-fetch)
1359 (uri (cran-uri "shinythemes" version))
1360 (sha256
1361 (base32
1362 "12miz44n2zxfswnia7p8dirxj3miw0aqn4pkx2111ikz67ax84rf"))))
1363 (properties `((upstream-name . "shinythemes")))
1364 (build-system r-build-system)
1365 (propagated-inputs `(("r-shiny" ,r-shiny)))
1366 (home-page "https://rstudio.github.io/shinythemes/")
1367 (synopsis "Themes for Shiny")
1368 (description
1369 "This package provides themes for use with Shiny. It includes several
1370 Bootstrap themes, which are packaged for use with Shiny applications.")
1371 ;; The package is released under version 3 of the GPL, but it includes
1372 ;; source files that are covered by the Expat license. It also includes
1373 ;; fonts under SIL or the ASL.
1374 (license (list license:gpl3 license:expat
1375 license:silofl1.1 license:asl2.0))))
1376
1377 ;; The package sources include minified variants of d3.js and non-minified
1378 ;; source code of d3-jetpack.
1379 (define-public r-d3r
1380 (package
1381 (name "r-d3r")
1382 (version "0.9.0")
1383 (source
1384 (origin
1385 (method url-fetch)
1386 (uri (cran-uri "d3r" version))
1387 (sha256
1388 (base32
1389 "0vd1qk8yr18xdfkv5ybhqvf0mmccpi721wqa7c881nzm9nnlzc4y"))))
1390 (build-system r-build-system)
1391 (arguments
1392 `(#:modules ((guix build utils)
1393 (guix build r-build-system)
1394 (srfi srfi-1)
1395 (ice-9 popen))
1396 #:phases
1397 (modify-phases %standard-phases
1398 (add-after 'unpack 'process-javascript
1399 (lambda* (#:key inputs #:allow-other-keys)
1400 (with-directory-excursion "inst/www/d3/"
1401 (call-with-values
1402 (lambda ()
1403 (unzip2
1404 `((,(assoc-ref inputs "d3.v3.js")
1405 "v3/dist/d3.min.js")
1406 (,(assoc-ref inputs "d3.v4.js")
1407 "v4/dist/d3.min.js")
1408 (,(assoc-ref inputs "d3.v5.js")
1409 "v5/dist/d3.min.js"))))
1410 (lambda (sources targets)
1411 (for-each (lambda (source target)
1412 (format #t "Processing ~a --> ~a~%"
1413 source target)
1414 (delete-file target)
1415 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
1416 (call-with-output-file target
1417 (lambda (port)
1418 (dump-port minified port)))))
1419 sources targets))))
1420 #t)))))
1421 (propagated-inputs
1422 `(("r-dplyr" ,r-dplyr)
1423 ("r-htmltools" ,r-htmltools)
1424 ("r-rlang" ,r-rlang)
1425 ("r-tidyr" ,r-tidyr)))
1426 (native-inputs
1427 `(("uglify-js" ,uglify-js)
1428 ("d3.v3.js"
1429 ,(origin
1430 (method url-fetch)
1431 (uri "https://d3js.org/d3.v3.js")
1432 (sha256
1433 (base32
1434 "1arr7sr08vy7wh0nvip2mi7dpyjw4576vf3bm45rp4g5lc1k1x41"))))
1435 ("d3.v4.js"
1436 ,(origin
1437 (method url-fetch)
1438 (uri "https://d3js.org/d3.v4.js")
1439 (sha256
1440 (base32
1441 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))
1442 ("d3.v5.js"
1443 ,(origin
1444 (method url-fetch)
1445 (uri "https://d3js.org/d3.v5.js")
1446 (sha256
1447 (base32
1448 "0kxvx5pfagxn6nhavdwsdnzyd26g0z5dsfi1pi5dvcmb0c8ipcdn"))))))
1449 (home-page "https://github.com/timelyportfolio/d3r")
1450 (synopsis "d3.js utilities for R")
1451 (description
1452 "This package provides a suite of functions to help ease the use of the
1453 d3.js visualization library in R. These helpers include
1454 @code{htmltools::htmlDependency} functions, hierarchy builders, and conversion
1455 tools for @code{partykit}, @code{igraph}, @code{table}, and @code{data.frame}
1456 R objects into the JSON format that the d3.js library expects.")
1457 (license license:bsd-3)))
1458
1459 ;; We use the latest commit here because the last release was in 2016 while
1460 ;; the latest commit was in 2018.
1461 (define-public r-sankeyd3
1462 (let ((commit "fd50a74e29056e0d67d75b4d04de47afb2f932bc")
1463 (revision "1"))
1464 (package
1465 (name "r-sankeyd3")
1466 (version (git-version "0.3.2" revision commit))
1467 (source
1468 (origin
1469 (method git-fetch)
1470 (uri (git-reference
1471 (url "https://github.com/fbreitwieser/sankeyD3")
1472 (commit commit)))
1473 (file-name (git-file-name name version))
1474 (sha256
1475 (base32
1476 "0jrcnfax321pszbpjdifnkbrgbjr43bjzvlzv1p5a8wskksqwiyx"))))
1477 (build-system r-build-system)
1478 (propagated-inputs
1479 `(("r-d3r" ,r-d3r)
1480 ("r-htmlwidgets" ,r-htmlwidgets)
1481 ("r-shiny" ,r-shiny)
1482 ("r-magrittr" ,r-magrittr)))
1483 (home-page "https://github.com/fbreitwieser/sankeyD3")
1484 (synopsis "Sankey network graphs from R")
1485 (description
1486 "This package provides an R library to generate Sankey network graphs
1487 in R and Shiny via the D3 visualization library.")
1488 ;; The R code is licensed under GPLv3+. It includes the non-minified
1489 ;; JavaScript source code of d3-sankey, which is released under the
1490 ;; 3-clause BSD license.
1491 (license (list license:gpl3+ license:bsd-3)))))
1492
1493 (define-public r-crosstalk
1494 (package
1495 (name "r-crosstalk")
1496 (version "1.1.0.1")
1497 (source
1498 (origin
1499 (method url-fetch)
1500 (uri (cran-uri "crosstalk" version))
1501 (sha256
1502 (base32
1503 "03ihj7cimkklrbad9zic78xsrfcisygmgy859hqnx0hiph80p9rn"))))
1504 (build-system r-build-system)
1505 (propagated-inputs
1506 `(("r-htmltools" ,r-htmltools)
1507 ("r-jsonlite" ,r-jsonlite)
1508 ("r-lazyeval" ,r-lazyeval)
1509 ("r-r6" ,r-r6)))
1510 (home-page "https://rstudio.github.io/crosstalk/")
1511 (synopsis "Inter-widget interactivity for HTML widgets")
1512 (description
1513 "This package provides building blocks for allowing HTML widgets to
1514 communicate with each other, with Shiny or without (i.e. static @code{.html}
1515 files). It currently supports linked brushing and filtering.")
1516 (license license:expat)))
1517
1518 (define-public r-rook
1519 (package
1520 (name "r-rook")
1521 (version "1.1-1")
1522 (source
1523 (origin
1524 (method url-fetch)
1525 (uri (cran-uri "Rook" version))
1526 (sha256
1527 (base32
1528 "00s9a0kr9rwxvlq433daxjk4ji8m0w60hjdprf502msw9kxfrx00"))))
1529 (properties `((upstream-name . "Rook")))
1530 (build-system r-build-system)
1531 (propagated-inputs `(("r-brew" ,r-brew)))
1532 (home-page "https://cran.r-project.org/web/packages/Rook")
1533 (synopsis "Web server interface for R")
1534 (description
1535 "This package contains the Rook specification and convenience software
1536 for building and running Rook applications. A Rook application is an R
1537 reference class object that implements a @code{call} method or an R closure
1538 that takes exactly one argument, an environment, and returns a list with three
1539 named elements: the @code{status}, the @code{headers}, and the @code{body}.")
1540 (license license:gpl2)))
1541
1542 (define-public r-miniui
1543 (package
1544 (name "r-miniui")
1545 (version "0.1.1.1")
1546 (source
1547 (origin
1548 (method url-fetch)
1549 (uri (cran-uri "miniUI" version))
1550 (sha256
1551 (base32
1552 "1h5h2sc57h95d6bsgs95l26911g38hvjc1v50bc31xl9689l2as5"))))
1553 (properties `((upstream-name . "miniUI")))
1554 (build-system r-build-system)
1555 (propagated-inputs
1556 `(("r-htmltools" ,r-htmltools)
1557 ("r-shiny" ,r-shiny)))
1558 (home-page "https://cran.r-project.org/web/packages/miniUI/")
1559 (synopsis "Shiny UI widgets for small screens")
1560 (description
1561 "This package provides UI widget and layout functions for writing Shiny apps that
1562 work well on small screens.")
1563 (license license:gpl3)))
1564
1565 (define-public r-feather
1566 (package
1567 (name "r-feather")
1568 (version "0.3.5")
1569 (source
1570 (origin
1571 (method url-fetch)
1572 (uri (cran-uri "feather" version))
1573 (sha256
1574 (base32
1575 "1gxd0h2m56sjjlzn4dry6s13nddxc4l5i11gsvavaf2dwbahdzsh"))))
1576 (build-system r-build-system)
1577 (propagated-inputs
1578 `(("r-hms" ,r-hms)
1579 ("r-rcpp" ,r-rcpp)
1580 ("r-tibble" ,r-tibble)))
1581 (home-page "https://github.com/wesm/feather")
1582 (synopsis "R Bindings to the Feather API")
1583 (description "Read and write feather files, a lightweight binary columnar
1584 data store designed for maximum speed.")
1585 (license license:asl2.0)))
1586
1587 (define-public r-maps
1588 (package
1589 (name "r-maps")
1590 (version "3.3.0")
1591 (source
1592 (origin
1593 (method url-fetch)
1594 (uri (cran-uri "maps" version))
1595 (sha256
1596 (base32
1597 "05i2ppl5z4p8rawgqmy3z4ia05fcblpq1vvrmrkgkkpdlhczx6hr"))))
1598 (build-system r-build-system)
1599 (home-page "https://cran.r-project.org/web/packages/maps")
1600 (synopsis "Draw geographical maps")
1601 (description "This package provides an R module for display of maps.
1602 Projection code and larger maps are in separate packages (@code{mapproj} and
1603 @code{mapdata}).")
1604 (license license:gpl2)))
1605
1606 (define-public r-mapproj
1607 (package
1608 (name "r-mapproj")
1609 (version "1.2.7")
1610 (source
1611 (origin
1612 (method url-fetch)
1613 (uri (cran-uri "mapproj" version))
1614 (sha256
1615 (base32
1616 "0nscsfq8md6ri9258xz57c3dj81wdl6kdwf4a9qcrwwbn20i427h"))))
1617 (build-system r-build-system)
1618 (propagated-inputs `(("r-maps" ,r-maps)))
1619 (home-page "https://cran.r-project.org/web/packages/mapproj")
1620 (synopsis "Map projection in R")
1621 (description "This package converts latitude/longitude into projected
1622 coordinates.")
1623 (license (list license:gpl2 ; The R interface
1624 (license:non-copyleft ; The C code
1625 "https://www.gnu.org/licenses/license-list.en.html#lucent102"
1626 "Lucent Public License Version 1.02")))))
1627
1628 (define-public r-rgooglemaps
1629 (package
1630 (name "r-rgooglemaps")
1631 (version "1.4.5.3")
1632 (source
1633 (origin
1634 (method url-fetch)
1635 (uri (cran-uri "RgoogleMaps" version))
1636 (sha256
1637 (base32
1638 "02v8k0bw70q4qwx4lcdy8p25q7n3ql2ll46lfpqllxa1p26svmfi"))))
1639 (properties `((upstream-name . "RgoogleMaps")))
1640 (build-system r-build-system)
1641 (propagated-inputs
1642 `(("r-png" ,r-png)
1643 ("r-sp" ,r-sp)))
1644 (home-page "https://cran.r-project.org/web/packages/RgoogleMaps")
1645 (synopsis "Use Google Maps in R")
1646 (description "This package serves two purposes:
1647 @enumerate
1648 @item Provide a comfortable R interface to query the Google server for static
1649 maps, and
1650 @item Use the map as a background image to overlay plots within R. This
1651 requires proper coordinate scaling.
1652 @end enumerate\n")
1653 (license license:gpl2+)))
1654
1655 (define-public r-geosphere
1656 (package
1657 (name "r-geosphere")
1658 (version "1.5-10")
1659 (source
1660 (origin
1661 (method url-fetch)
1662 (uri (cran-uri "geosphere" version))
1663 (sha256
1664 (base32
1665 "15xlgsmn0vwky1l13n6acdz6jn2b2na3gf6x367y3qh1f5w4zkan"))))
1666 (build-system r-build-system)
1667 (propagated-inputs `(("r-sp" ,r-sp)))
1668 (home-page "https://cran.r-project.org/web/packages/geosphere")
1669 (synopsis "Spherical trigonometry")
1670 (description "This package computes spherical trigonometry for geographic
1671 applications. That is, compute distances and related measures for angular
1672 (longitude/latitude) locations.")
1673 (license license:gpl3+)))
1674
1675 (define-public r-jpeg
1676 (package
1677 (name "r-jpeg")
1678 (version "0.1-8.1")
1679 (source
1680 (origin
1681 (method url-fetch)
1682 (uri (cran-uri "jpeg" version))
1683 (sha256
1684 (base32
1685 "1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
1686 (build-system r-build-system)
1687 (inputs `(("libjpeg" ,libjpeg-turbo)))
1688 (home-page "https://www.rforge.net/jpeg/")
1689 (synopsis "Read and write JPEG images with R")
1690 (description "This package provides a way to read, write and display
1691 bitmap images stored in the JPEG format with R. It can read and write both
1692 files and in-memory raw vectors.")
1693 (license license:gpl2+)))
1694
1695 (define-public r-ggmap
1696 (package
1697 (name "r-ggmap")
1698 (version "3.0.0")
1699 (source
1700 (origin
1701 (method url-fetch)
1702 (uri (cran-uri "ggmap" version))
1703 (sha256
1704 (base32
1705 "13dmzl6z62pzjiffilarkji46vy0sacxa8a7mhrhc3biq3ylzhln"))))
1706 (build-system r-build-system)
1707 (propagated-inputs
1708 `(("r-bitops" ,r-bitops)
1709 ("r-digest" ,r-digest)
1710 ("r-dplyr" ,r-dplyr)
1711 ("r-ggplot2" ,r-ggplot2)
1712 ("r-glue" ,r-glue)
1713 ("r-httr" ,r-httr)
1714 ("r-jpeg" ,r-jpeg)
1715 ("r-magrittr" ,r-magrittr)
1716 ("r-plyr" ,r-plyr)
1717 ("r-png" ,r-png)
1718 ("r-purrr" ,r-purrr)
1719 ("r-rgooglemaps" ,r-rgooglemaps)
1720 ("r-rjson" ,r-rjson)
1721 ("r-scales" ,r-scales)
1722 ("r-stringr" ,r-stringr)
1723 ("r-tibble" ,r-tibble)
1724 ("r-tidyr" ,r-tidyr)))
1725 (home-page "https://github.com/dkahle/ggmap")
1726 (synopsis "Spatial visualization with ggplot2")
1727 (description "This package provides a collection of functions to visualize
1728 spatial data and models on top of static maps from various online sources (e.g
1729 Google Maps and Stamen Maps). It includes tools common to those tasks,
1730 including functions for geolocation and routing.")
1731 (license license:gpl2)))
1732
1733 (define-public r-haven
1734 (package
1735 (name "r-haven")
1736 (version "2.3.1")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (cran-uri "haven" version))
1741 (sha256
1742 (base32
1743 "03cypgqhdkrfbfpl1yx2wb7flczrbak1w654wkicmd5ajwr9zvkf"))))
1744 (build-system r-build-system)
1745 (inputs
1746 `(("zlib" ,zlib)))
1747 (native-inputs
1748 `(("r-knitr" ,r-knitr)))
1749 (propagated-inputs
1750 `(("r-forcats" ,r-forcats)
1751 ("r-hms" ,r-hms)
1752 ("r-rcpp" ,r-rcpp)
1753 ("r-rlang" ,r-rlang)
1754 ("r-readr" ,r-readr)
1755 ("r-tibble" ,r-tibble)
1756 ("r-tidyselect" ,r-tidyselect)
1757 ("r-vctrs" ,r-vctrs)))
1758 (home-page "https://haven.tidyverse.org")
1759 (synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files")
1760 (description
1761 "This package lets you mport foreign statistical formats into R via the
1762 embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
1763 (license license:expat)))
1764
1765 (define-public r-amap
1766 (package
1767 (name "r-amap")
1768 (version "0.8-18")
1769 (source (origin
1770 (method url-fetch)
1771 (uri (cran-uri "amap" version))
1772 (sha256
1773 (base32
1774 "0zpcb73w413na23f6giml9311jh0j0y766w2fh9i40d2h7bbvyvs"))))
1775 (build-system r-build-system)
1776 (native-inputs
1777 `(("gfortran" ,gfortran)))
1778 (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/")
1779 (synopsis "Another multidimensional analysis package")
1780 (description "This package provides tools for clustering and principal
1781 component analysis (with robust methods, and parallelized functions).")
1782 (license license:gpl2+)))
1783
1784 (define-public r-ape
1785 (package
1786 (name "r-ape")
1787 (version "5.4-1")
1788 (source
1789 (origin
1790 (method url-fetch)
1791 (uri (cran-uri "ape" version))
1792 (sha256
1793 (base32
1794 "1r7fwyz30ippcl1ibqiv1xryf44x5crcks5kx19h146ffj76qcgh"))))
1795 (build-system r-build-system)
1796 (propagated-inputs
1797 `(("r-lattice" ,r-lattice)
1798 ("r-nlme" ,r-nlme)
1799 ("r-rcpp" ,r-rcpp)))
1800 (home-page "http://ape-package.ird.fr/")
1801 (synopsis "Analyses of phylogenetics and evolution")
1802 (description
1803 "This package provides functions for reading, writing, plotting, and
1804 manipulating phylogenetic trees, analyses of comparative data in a
1805 phylogenetic framework, ancestral character analyses, analyses of
1806 diversification and macroevolution, computing distances from DNA sequences,
1807 and several other tools.")
1808 (license license:gpl2+)))
1809
1810 (define-public r-abbyyr
1811 (package
1812 (name "r-abbyyr")
1813 (version "0.5.5")
1814 (source
1815 (origin
1816 (method url-fetch)
1817 (uri (cran-uri "abbyyR" version))
1818 (sha256
1819 (base32
1820 "1vldnd3dg89aj6a73nhirirqddbfdrnzhb5m3679i60sark8nk6r"))))
1821 (properties `((upstream-name . "abbyyR")))
1822 (build-system r-build-system)
1823 (propagated-inputs
1824 `(("r-curl" ,r-curl)
1825 ("r-httr" ,r-httr)
1826 ("r-plyr" ,r-plyr)
1827 ("r-progress" ,r-progress)
1828 ("r-readr" ,r-readr)
1829 ("r-xml" ,r-xml)))
1830 (home-page "https://github.com/soodoku/abbyyR")
1831 (synopsis "Access to Abbyy Optical Character Recognition (OCR) API")
1832 (description
1833 "This package provides tools to get text from images of text using Abbyy
1834 Cloud Optical Character Recognition (OCR) API. With abbyyyR, one can easily
1835 OCR images, barcodes, forms, documents with machine readable zones, e.g.
1836 passports and get the results in a variety of formats including plain text and
1837 XML. To learn more about the Abbyy OCR API, see @url{http://ocrsdk.com/}.")
1838 (license license:expat)))
1839
1840 (define-public r-colorspace
1841 (package
1842 (name "r-colorspace")
1843 (version "1.4-1")
1844 (source
1845 (origin
1846 (method url-fetch)
1847 (uri (cran-uri "colorspace" version))
1848 (sha256
1849 (base32 "0wyny3ah2d74hqv80s6imrarpna09gq3j9rjnz6zx2qg0lx72gb9"))))
1850 (build-system r-build-system)
1851 (home-page "https://cran.r-project.org/web/packages/colorspace")
1852 (synopsis "Color space manipulation")
1853 (description
1854 "This package carries out a mapping between assorted color spaces
1855 including RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar
1856 CIELAB. Qualitative, sequential, and diverging color palettes based on HCL
1857 colors are provided.")
1858 (license license:bsd-3)))
1859
1860 (define-public r-glue
1861 (package
1862 (name "r-glue")
1863 (version "1.4.1")
1864 (source
1865 (origin
1866 (method url-fetch)
1867 (uri (cran-uri "glue" version))
1868 (sha256
1869 (base32
1870 "1j1va4vi3g9sl0cyjdwxvh5lvh10x8k9qvnsr9zyxddcbk9qgdpq"))))
1871 (build-system r-build-system)
1872 ;; knitr depends on glue, so we can't add knitr here to build the
1873 ;; vignettes.
1874 #;
1875 (native-inputs
1876 `(("r-knitr" ,r-knitr)))
1877 (home-page "https://github.com/tidyverse/glue")
1878 (synopsis "Interpreted string literals")
1879 (description
1880 "This package provides an implementation of interpreted string literals,
1881 inspired by Python's Literal String Interpolation (PEP-0498) and
1882 Docstrings (PEP-0257) and Julia's Triple-Quoted String Literals.")
1883 (license license:expat)))
1884
1885 (define-public r-pastecs
1886 (package
1887 (name "r-pastecs")
1888 (version "1.3.21")
1889 (source (origin
1890 (method url-fetch)
1891 (uri (cran-uri "pastecs" version))
1892 (sha256
1893 (base32
1894 "0z4dic94ar646w7zc2ggi5hgvf2qnznsani94c5pyql8zspz47lc"))))
1895 (build-system r-build-system)
1896 (propagated-inputs
1897 `(("r-boot" ,r-boot)))
1898 (home-page "http://www.sciviews.org/pastecs")
1899 (synopsis "Analysis of space-time ecological series")
1900 (description
1901 "This package provides functions for regulation, decomposition and analysis
1902 of space-time series. The @code{pastecs} library is a PNEC-Art4 and IFREMER
1903 initiative to bring PASSTEC 2000 functionalities to R.")
1904 (license license:gpl2+)))
1905
1906 (define-public r-plogr
1907 (package
1908 (name "r-plogr")
1909 (version "0.2.0")
1910 (source
1911 (origin
1912 (method url-fetch)
1913 (uri (cran-uri "plogr" version))
1914 (sha256
1915 (base32
1916 "0a8dhzlna79ggyhfr0nncgh15a9n6r0dsz664pz0ah323wpblqqf"))))
1917 (build-system r-build-system)
1918 (home-page "https://github.com/krlmlr/plogr")
1919 (synopsis "R bindings for the plog C++ logging library")
1920 (description
1921 "This package provides the header files for a stripped-down version of
1922 the plog header-only C++ logging library, and a method to log to R's standard
1923 error stream.")
1924 (license license:expat)))
1925
1926 (define-public r-pls
1927 (package
1928 (name "r-pls")
1929 (version "2.7-3")
1930 (source
1931 (origin
1932 (method url-fetch)
1933 (uri (cran-uri "pls" version))
1934 (sha256
1935 (base32 "0b3ls12w19wc4xkhnsgmb333y9lyzwq3syjc3k8zs1agnw59c7cg"))))
1936 (build-system r-build-system)
1937 (home-page "https://mevik.net/work/software/pls.html")
1938 (synopsis "Partial Least Squares and Principal Component Regression")
1939 (description
1940 "The pls package implements multivariate regression methods: Partial Least
1941 Squares Regression (@dfn{PLSR}), Principal Component Regression (@dfn{PCR}), and
1942 Canonical Powered Partial Least Squares (@dfn{CPPLS}). It supports:
1943
1944 @itemize
1945 @item several algorithms: the traditional orthogonal scores (@dfn{NIPALS}) PLS
1946 algorithm, kernel PLS, wide kernel PLS, Simpls, and PCR through @code{svd}
1947 @item multi-response models (or @dfn{PLS2})
1948 @item flexible cross-validation
1949 @item Jackknife variance estimates of regression coefficients
1950 @item extensive and flexible plots: scores, loadings, predictions, coefficients,
1951 (R)MSEP, R², and correlation loadings
1952 @item formula interface, modelled after @code{lm()}, with methods for predict,
1953 print, summary, plot, update, etc.
1954 @item extraction functions for coefficients, scores, and loadings
1955 @item MSEP, RMSEP, and R² estimates
1956 @item multiplicative scatter correction (@dfn{MSC})
1957 @end itemize\n")
1958 (license license:gpl2)))
1959
1960 (define-public r-ps
1961 (package
1962 (name "r-ps")
1963 (version "1.3.4")
1964 (source
1965 (origin
1966 (method url-fetch)
1967 (uri (cran-uri "ps" version))
1968 (sha256
1969 (base32 "1cxfhnff22fbsr9vynhql0rhhrqfxvkb6kv11h2m740r9scwcs44"))))
1970 (build-system r-build-system)
1971 (home-page "https://ps.r-lib.org")
1972 (synopsis "List, query, and manipulate system processes")
1973 (description
1974 "The ps package implements an API to list, query, and manipulate system
1975 processes. Most of its code is based on the @code{psutil} Python package.")
1976 (license license:bsd-3)))
1977
1978 (define-public r-pkgbuild
1979 (package
1980 (name "r-pkgbuild")
1981 (version "1.1.0")
1982 (source
1983 (origin
1984 (method url-fetch)
1985 (uri (cran-uri "pkgbuild" version))
1986 (sha256
1987 (base32 "1gdbrjq4kiwm45c6pb23mp327qyjvslhyf72ca4zhlzwc5vgp6xk"))))
1988 (build-system r-build-system)
1989 (propagated-inputs
1990 `(("r-callr" ,r-callr)
1991 ("r-cli" ,r-cli)
1992 ("r-crayon" ,r-crayon)
1993 ("r-desc" ,r-desc)
1994 ("r-prettyunits" ,r-prettyunits)
1995 ("r-r6" ,r-r6)
1996 ("r-rprojroot" ,r-rprojroot)
1997 ("r-withr" ,r-withr)))
1998 (home-page "https://github.com/r-pkgs/pkgbuild")
1999 (synopsis "Find tools needed to build R packages")
2000 (description
2001 "This package provides functions used to build R packages. It locates
2002 compilers needed to build R packages on various platforms and ensures the PATH
2003 is configured appropriately so R can use them.")
2004 (license license:gpl3)))
2005
2006 (define-public r-pkgload
2007 (package
2008 (name "r-pkgload")
2009 (version "1.1.0")
2010 (source
2011 (origin
2012 (method url-fetch)
2013 (uri (cran-uri "pkgload" version))
2014 (sha256
2015 (base32
2016 "03bv8xq4s6s7m34y1kjs99jzlb95vwrfi76mbnhmzcx2pc6ld78q"))))
2017 (build-system r-build-system)
2018 (propagated-inputs
2019 `(("r-cli" ,r-cli)
2020 ("r-crayon" ,r-crayon)
2021 ("r-desc" ,r-desc)
2022 ("r-pkgbuild" ,r-pkgbuild)
2023 ("r-rlang" ,r-rlang)
2024 ("r-rprojroot" ,r-rprojroot)
2025 ("r-rstudioapi" ,r-rstudioapi)
2026 ("r-withr" ,r-withr)))
2027 (home-page "https://github.com/r-lib/pkgload")
2028 (synopsis "Simulate package installation and attach")
2029 (description
2030 "This package simulates the process of installing a package and then
2031 attaching it. This is a key part of the @code{devtools} package as it allows
2032 you to rapidly iterate while developing a package.")
2033 (license license:gpl3)))
2034
2035 (define-public r-rcpp
2036 (package
2037 (name "r-rcpp")
2038 (version "1.0.5")
2039 (source
2040 (origin
2041 (method url-fetch)
2042 (uri (cran-uri "Rcpp" version))
2043 (sha256
2044 (base32 "012wbj446k1wz6bp6bpf6h77ypvcsw69xvnax6qf6vyc7dj2qimq"))))
2045 (build-system r-build-system)
2046 (home-page "http://www.rcpp.org")
2047 (synopsis "Seamless R and C++ integration")
2048 (description
2049 "The Rcpp package provides R functions as well as C++ classes which offer
2050 a seamless integration of R and C++. Many R data types and objects can be
2051 mapped back and forth to C++ equivalents which facilitates both writing of new
2052 code as well as easier integration of third-party libraries. Documentation
2053 about Rcpp is provided by several vignettes included in this package, via the
2054 @code{Rcpp Gallery} site at <http://gallery.rcpp.org>, the paper by Eddelbuettel
2055 and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
2056 @code{citation(\"Rcpp\")} for details on these last two.")
2057 (license license:gpl2+)))
2058
2059 (define-public r-bindr
2060 (package
2061 (name "r-bindr")
2062 (version "0.1.1")
2063 (source
2064 (origin
2065 (method url-fetch)
2066 (uri (cran-uri "bindr" version))
2067 (sha256
2068 (base32
2069 "1l05fpk2yql3jka321c0bdgx6mqq9pvfrg2844lbjfpbgjkmqy3w"))))
2070 (build-system r-build-system)
2071 (home-page "https://github.com/krlmlr/bindr")
2072 (synopsis "Parametrized active bindings")
2073 (description
2074 "This package provides a simple interface for creating active bindings
2075 where the bound function accepts additional arguments.")
2076 (license license:expat)))
2077
2078 (define-public r-bindrcpp
2079 (package
2080 (name "r-bindrcpp")
2081 (version "0.2.2")
2082 (source
2083 (origin
2084 (method url-fetch)
2085 (uri (cran-uri "bindrcpp" version))
2086 (sha256
2087 (base32
2088 "0rz4ibjdjsxl99ff3ha79z7cnjmilx4rx58fk9kk7ld9xc4hf4s8"))))
2089 (build-system r-build-system)
2090 (propagated-inputs
2091 `(("r-bindr" ,r-bindr)
2092 ("r-plogr" ,r-plogr)
2093 ("r-rcpp" ,r-rcpp)))
2094 (home-page "https://github.com/krlmlr/bindrcpp")
2095 (synopsis "Rcpp interface to active bindings")
2096 (description
2097 "This package provides an easy way to fill an environment with active
2098 bindings that call a C++ function.")
2099 (license license:expat)))
2100
2101 (define-public r-auc
2102 (package
2103 (name "r-auc")
2104 (version "0.3.0")
2105 (source
2106 (origin
2107 (method url-fetch)
2108 (uri (cran-uri "AUC" version))
2109 (sha256
2110 (base32
2111 "0ripcib2qz0m7rgr1kiz68nx8f6p408l1ww7j78ljqik7p3g41g7"))))
2112 (properties `((upstream-name . "AUC")))
2113 (build-system r-build-system)
2114 (home-page "https://cran.r-project.org/web/packages/AUC")
2115 (synopsis "Compute the area under the curve of selected measures")
2116 (description
2117 "This package includes functions to compute the area under the curve of
2118 selected measures: the area under the sensitivity curve (AUSEC), the area
2119 under the specificity curve (AUSPC), the area under the accuracy
2120 curve (AUACC), and the area under the receiver operating characteristic
2121 curve (AUROC). The curves can also be visualized. Support for partial areas
2122 is provided.")
2123 (license license:gpl2+)))
2124
2125 (define-public r-calibrate
2126 (package
2127 (name "r-calibrate")
2128 (version "1.7.7")
2129 (source
2130 (origin
2131 (method url-fetch)
2132 (uri (cran-uri "calibrate" version))
2133 (sha256
2134 (base32 "19kgrnsyq67iqv1biyssqi30a6v2836ql20nabpy2m692ns0jfvi"))))
2135 (build-system r-build-system)
2136 (propagated-inputs
2137 `(("r-mass" ,r-mass)))
2138 (home-page "https://cran.r-project.org/web/packages/calibrate")
2139 (synopsis "Calibration of scatterplot and biplot axes")
2140 (description
2141 "This is a package for drawing calibrated scales with tick marks
2142 on (non-orthogonal) variable vectors in scatterplots and biplots.")
2143 (license license:gpl2)))
2144
2145 (define-public r-shape
2146 (package
2147 (name "r-shape")
2148 (version "1.4.4")
2149 (source
2150 (origin
2151 (method url-fetch)
2152 (uri (cran-uri "shape" version))
2153 (sha256
2154 (base32
2155 "0hadk3mapkhbh8xjkiz52vxdagmmgvm15xwpzb90ikw4giyipjzl"))))
2156 (build-system r-build-system)
2157 (home-page "https://cran.r-project.org/web/packages/shape")
2158 (synopsis "Functions for plotting graphical shapes")
2159 (description
2160 "This package provides functions for plotting graphical shapes such as
2161 ellipses, circles, cylinders, arrows, ...")
2162 (license license:gpl3+)))
2163
2164 (define-public r-globaloptions
2165 (package
2166 (name "r-globaloptions")
2167 (version "0.1.2")
2168 (source
2169 (origin
2170 (method url-fetch)
2171 (uri (cran-uri "GlobalOptions" version))
2172 (sha256
2173 (base32 "0gkm77w6db9ajyncy1xdcivplap06a51zi99m009kylccschd2a7"))))
2174 (properties `((upstream-name . "GlobalOptions")))
2175 (build-system r-build-system)
2176 (native-inputs
2177 `(("r-knitr" ,r-knitr)))
2178 (home-page "https://github.com/jokergoo/GlobalOptions")
2179 (synopsis "Generate functions to get or set global options")
2180 (description
2181 "This package provides more controls on the option values such as
2182 validation and filtering on the values, making options invisible or private.")
2183 (license license:gpl2+)))
2184
2185 (define-public r-circlize
2186 (package
2187 (name "r-circlize")
2188 (version "0.4.10")
2189 (source
2190 (origin
2191 (method url-fetch)
2192 (uri (cran-uri "circlize" version))
2193 (sha256
2194 (base32
2195 "1xb1jq3mg4kw1513zv1i09vhn7rj7f8vp0bnms2qml74s47wxsgk"))))
2196 (build-system r-build-system)
2197 (propagated-inputs
2198 `(("r-colorspace" ,r-colorspace)
2199 ("r-globaloptions" ,r-globaloptions)
2200 ("r-shape" ,r-shape)))
2201 (native-inputs
2202 `(("r-knitr" ,r-knitr)))
2203 (home-page "https://github.com/jokergoo/circlize")
2204 (synopsis "Circular visualization")
2205 (description
2206 "Circular layout is an efficient way to visualise huge amounts of
2207 information. This package provides an implementation of circular layout
2208 generation in R as well as an enhancement of available software. Its
2209 flexibility is based on the usage of low-level graphics functions such that
2210 self-defined high-level graphics can be easily implemented by users for
2211 specific purposes. Together with the seamless connection between the powerful
2212 computational and visual environment in R, it gives users more convenience and
2213 freedom to design figures for better understanding complex patterns behind
2214 multi-dimensional data.")
2215 (license license:gpl2+)))
2216
2217 (define-public r-powerlaw
2218 (package
2219 (name "r-powerlaw")
2220 (version "0.70.6")
2221 (source
2222 (origin
2223 (method url-fetch)
2224 (uri (cran-uri "poweRlaw" version))
2225 (sha256
2226 (base32 "14d1myxllvm1grnfiszzzxaiqpb2jpmsi19wq70r8r2wki293h7g"))))
2227 (properties `((upstream-name . "poweRlaw")))
2228 (build-system r-build-system)
2229 (propagated-inputs
2230 `(("r-pracma" ,r-pracma)))
2231 (native-inputs
2232 `(("r-knitr" ,r-knitr)))
2233 (home-page "https://github.com/csgillespie/poweRlaw")
2234 (synopsis "Tools for the analysis of heavy tailed distributions")
2235 (description
2236 "This package provides an implementation of maximum likelihood estimators
2237 for a variety of heavy tailed distributions, including both the discrete and
2238 continuous power law distributions. Additionally, a goodness-of-fit based
2239 approach is used to estimate the lower cut-off for the scaling region.")
2240 ;; Any of these GPL versions.
2241 (license (list license:gpl2 license:gpl3))))
2242
2243 (define-public r-compare
2244 (package
2245 (name "r-compare")
2246 (version "0.2-6")
2247 (source
2248 (origin
2249 (method url-fetch)
2250 (uri (cran-uri "compare" version))
2251 (sha256
2252 (base32
2253 "0k9zms930b5dz9gy8414li21wy0zg9x9vp7301v5cvyfi0g7xzgw"))))
2254 (build-system r-build-system)
2255 (home-page "https://cran.r-project.org/web/packages/compare")
2256 (synopsis "Comparing objects for differences")
2257 (description
2258 "This package provides functions to compare a model object to a
2259 comparison object. If the objects are not identical, the functions can be
2260 instructed to explore various modifications of the objects (e.g., sorting
2261 rows, dropping names) to see if the modified versions are identical.")
2262 (license license:gpl2+)))
2263
2264 (define-public r-dendextend
2265 (package
2266 (name "r-dendextend")
2267 (version "1.13.4")
2268 (source
2269 (origin
2270 (method url-fetch)
2271 (uri (cran-uri "dendextend" version))
2272 (sha256
2273 (base32
2274 "1pjbz6sb4pgh3d5pm53vmf3q8y6lq3hrgjd6547xxs3m63sb8mn4"))))
2275 (build-system r-build-system)
2276 (propagated-inputs
2277 `(("r-ggplot2" ,r-ggplot2)
2278 ("r-magrittr" ,r-magrittr)
2279 ("r-viridis" ,r-viridis)))
2280 (home-page "https://cran.r-project.org/web/packages/dendextend")
2281 (synopsis "Extending 'dendrogram' functionality in R")
2282 (description
2283 "This package offers a set of functions for extending @code{dendrogram}
2284 objects in R, letting you visualize and compare trees of hierarchical
2285 clusterings. You can adjust a tree's graphical parameters (the color, size,
2286 type, etc of its branches, nodes and labels) and visually and statistically
2287 compare different dendrograms to one another.")
2288 ;; Any of these versions
2289 (license (list license:gpl2 license:gpl3))))
2290
2291 (define-public r-getoptlong
2292 (package
2293 (name "r-getoptlong")
2294 (version "1.0.2")
2295 (source
2296 (origin
2297 (method url-fetch)
2298 (uri (cran-uri "GetoptLong" version))
2299 (sha256
2300 (base32
2301 "1p89v2qzqfxyrmqzkv245716n9i4bllnq77a6gw811mgdhxbd51l"))))
2302 (properties `((upstream-name . "GetoptLong")))
2303 (build-system r-build-system)
2304 (inputs
2305 `(("perl" ,perl)))
2306 (propagated-inputs
2307 `(("r-crayon" ,r-crayon)
2308 ("r-globaloptions" ,r-globaloptions)
2309 ("r-rjson" ,r-rjson)))
2310 (native-inputs
2311 `(("r-knitr" ,r-knitr)))
2312 (home-page "https://github.com/jokergoo/GetoptLong")
2313 (synopsis "Parsing command-line arguments and variable interpolation")
2314 (description
2315 "This is yet another command-line argument parser which wraps the
2316 powerful Perl module @code{Getopt::Long} and with some adaptation for easier
2317 use in R. It also provides a simple way for variable interpolation in R.")
2318 (license license:gpl2+)))
2319
2320 (define-public r-fastmatch
2321 (package
2322 (name "r-fastmatch")
2323 (version "1.1-0")
2324 (source
2325 (origin
2326 (method url-fetch)
2327 (uri (cran-uri "fastmatch" version))
2328 (sha256
2329 (base32
2330 "0z80jxkygmzn11sq0c2iz357s9bpki548lg926g85gldhfj1md90"))))
2331 (build-system r-build-system)
2332 (home-page "https://www.rforge.net/fastmatch")
2333 (synopsis "Fast match function")
2334 (description
2335 "This package provides a fast @code{match} replacement for cases that
2336 require repeated look-ups. It is slightly faster that R's built-in
2337 @code{match} function on first match against a table, but extremely fast on
2338 any subsequent lookup as it keeps the hash table in memory.")
2339 (license license:gpl2)))
2340
2341 (define-public r-ff
2342 (package
2343 (name "r-ff")
2344 (version "4.0.2")
2345 (source
2346 (origin
2347 (method url-fetch)
2348 (uri (cran-uri "ff" version))
2349 (sha256
2350 (base32
2351 "1qbfmhk4v76q145yalqaiaffklvkfs615b5m0imxyjyjcvx1nbn0"))))
2352 (build-system r-build-system)
2353 (propagated-inputs `(("r-bit" ,r-bit)))
2354 (home-page "http://ff.r-forge.r-project.org/")
2355 (synopsis "Memory-efficient storage of large data on disk and access functions")
2356 (description
2357 "This package provides data structures that are stored on disk but
2358 behave (almost) as if they were in RAM by transparently mapping only a section
2359 in main memory.")
2360 ;; error Architecture not supported.
2361 (supported-systems (delete "aarch64-linux" %supported-systems))
2362 (license license:gpl2)))
2363
2364 (define-public r-ffbase
2365 (package
2366 (name "r-ffbase")
2367 (version "0.12.8")
2368 (source
2369 (origin
2370 (method url-fetch)
2371 (uri (cran-uri "ffbase" version))
2372 (sha256
2373 (base32
2374 "0mjk7dkq1ginqqfvngzny747ggf9a8fd7kblq96n5ys1jrwjyqhq"))))
2375 (build-system r-build-system)
2376 (propagated-inputs
2377 `(("r-bit" ,r-bit)
2378 ("r-fastmatch" ,r-fastmatch)
2379 ("r-ff" ,r-ff)))
2380 (home-page "https://github.com/edwindj/ffbase")
2381 (synopsis "Basic statistical functions for package 'ff'")
2382 (description
2383 "This package extends the out of memory vectors of @code{ff} with
2384 statistical functions and other utilities to ease their usage.")
2385 (license license:gpl3)))
2386
2387 (define-public r-prettyunits
2388 (package
2389 (name "r-prettyunits")
2390 (version "1.1.1")
2391 (source
2392 (origin
2393 (method url-fetch)
2394 (uri (cran-uri "prettyunits" version))
2395 (sha256
2396 (base32
2397 "1ibmzgknw5896q2i6r59jz2izblxwgb29ivvjzx50pkd1jl9l6cs"))))
2398 (build-system r-build-system)
2399 (home-page "https://github.com/gaborcsardi/prettyunits")
2400 (synopsis "Pretty, human readable formatting of quantities")
2401 (description
2402 "This package provides tools for pretty, human readable formatting of
2403 quantities.")
2404 (license license:expat)))
2405
2406 (define-public r-reshape
2407 (package
2408 (name "r-reshape")
2409 (version "0.8.8")
2410 (source
2411 (origin
2412 (method url-fetch)
2413 (uri (cran-uri "reshape" version))
2414 (sha256
2415 (base32
2416 "0s6i0sqxg1vldxs6miv8mi0zydxbqzgpmzfiwkj8y7jix3yrfmad"))))
2417 (build-system r-build-system)
2418 (propagated-inputs
2419 `(("r-plyr" ,r-plyr)
2420 ("r-rcpp" ,r-rcpp)))
2421 (home-page "http://had.co.nz/reshape")
2422 (synopsis "Flexibly reshape data")
2423 (description
2424 "Flexibly restructure and aggregate data using just two functions:
2425 @code{melt} and @code{cast}. This package provides them.")
2426 (license license:expat)))
2427
2428 (define-public r-progress
2429 (package
2430 (name "r-progress")
2431 (version "1.2.2")
2432 (source
2433 (origin
2434 (method url-fetch)
2435 (uri (cran-uri "progress" version))
2436 (sha256
2437 (base32
2438 "0dgzb362641aqm8xd88iqa8jmpdm43xs0aba0d5kk6fvapnxi95l"))))
2439 (build-system r-build-system)
2440 (propagated-inputs
2441 `(("r-crayon" ,r-crayon)
2442 ("r-hms" ,r-hms)
2443 ("r-prettyunits" ,r-prettyunits)
2444 ("r-r6" ,r-r6)))
2445 (home-page "https://github.com/gaborcsardi/progress")
2446 (synopsis "Terminal progress bars")
2447 (description
2448 "This package provides configurable progress bars. They may include
2449 percentage, elapsed time, and/or the estimated completion time. They work in
2450 terminals, in Emacs ESS, RStudio, Windows Rgui, and the macOS R.app. The
2451 package also provides a C++ API, that works with or without Rcpp.")
2452 (license license:expat)))
2453
2454 (define-public r-ggally
2455 (package
2456 (name "r-ggally")
2457 (version "2.0.0")
2458 (source
2459 (origin
2460 (method url-fetch)
2461 (uri (cran-uri "GGally" version))
2462 (sha256
2463 (base32
2464 "1gkmpzh1yvwvypkw0nwqv3gsf6za3220wig3rfv8g23kss60rl1s"))))
2465 (properties `((upstream-name . "GGally")))
2466 (build-system r-build-system)
2467 (inputs
2468 `(("libressl" ,libressl)))
2469 (propagated-inputs
2470 `(("r-ggplot2" ,r-ggplot2)
2471 ("r-gtable" ,r-gtable)
2472 ("r-lifecycle" ,r-lifecycle)
2473 ("r-plyr" ,r-plyr)
2474 ("r-progress" ,r-progress)
2475 ("r-rcolorbrewer" ,r-rcolorbrewer)
2476 ("r-reshape" ,r-reshape)
2477 ("r-rlang" ,r-rlang)
2478 ("r-scales" ,r-scales)))
2479 (home-page "https://ggobi.github.io/ggally")
2480 (synopsis "Extension to ggplot2")
2481 (description
2482 "The R package ggplot2 is a plotting system based on the grammar of
2483 graphics. GGally extends ggplot2 by adding several functions to reduce the
2484 complexity of combining geometric objects with transformed data. Some of
2485 these functions include a pairwise plot matrix, a two group pairwise plot
2486 matrix, a parallel coordinates plot, a survival plot, and several functions to
2487 plot networks.")
2488 (license license:gpl2+)))
2489
2490 (define-public r-proxy
2491 (package
2492 (name "r-proxy")
2493 (version "0.4-24")
2494 (source
2495 (origin
2496 (method url-fetch)
2497 (uri (cran-uri "proxy" version))
2498 (sha256
2499 (base32
2500 "0z4wdnpv5x135nssxnmkkba7fivd5xgbpaabqjkl2na76vq9pzwc"))))
2501 (build-system r-build-system)
2502 (home-page "https://cran.r-project.org/web/packages/proxy")
2503 (synopsis "Distance and similarity measures")
2504 (description
2505 "This package provides an extensible framework for the efficient
2506 calculation of auto- and cross-proximities, along with implementations of the
2507 most popular ones.")
2508 (license license:gpl2)))
2509
2510 (define-public r-sp
2511 (package
2512 (name "r-sp")
2513 (version "1.4-2")
2514 (source
2515 (origin
2516 (method url-fetch)
2517 (uri (cran-uri "sp" version))
2518 (sha256
2519 (base32 "02jxsd30apzjbdbssirysq70d4svdwzn931jhxr0ladl72g9bqvk"))))
2520 (build-system r-build-system)
2521 (propagated-inputs
2522 `(("r-lattice" ,r-lattice)))
2523 (home-page "https://cran.r-project.org/web/packages/sp")
2524 (synopsis "Classes and methods for spatial data")
2525 (description
2526 "This package provides classes and methods for spatial data; the classes
2527 document where the spatial location information resides, for 2D or 3D data.
2528 Utility functions are provided, e.g. for plotting data as maps, spatial
2529 selection, as well as methods for retrieving coordinates, for subsetting,
2530 print, summary, etc.")
2531 (license license:gpl2+)))
2532
2533 (define-public r-rmtstat
2534 (package
2535 (name "r-rmtstat")
2536 (version "0.3")
2537 (source
2538 (origin
2539 (method url-fetch)
2540 (uri (cran-uri "RMTstat" version))
2541 (sha256
2542 (base32
2543 "1nn25q4kmh9kj975sxkrpa97vh5irqrlqhwsfinbck6h6ia4rsw1"))))
2544 (properties `((upstream-name . "RMTstat")))
2545 (build-system r-build-system)
2546 (home-page "https://cran.r-project.org/web/packages/RMTstat")
2547 (synopsis "Distributions, statistics and tests derived from random matrix theory")
2548 (description
2549 "This package provides functions for working with the Tracy-Widom laws
2550 and other distributions related to the eigenvalues of large Wishart
2551 matrices.")
2552 (license license:bsd-3)))
2553
2554 (define-public r-rmpi
2555 (package
2556 (name "r-rmpi")
2557 (version "0.6-9")
2558 (source (origin
2559 (method url-fetch)
2560 (uri (cran-uri "Rmpi" version))
2561 (sha256
2562 (base32
2563 "1rhycla98hxgnnxlxxldr1x51djak7c2jjvlrv3jcsvgwp1ymqdj"))))
2564 (properties `((upstream-name . "Rmpi")))
2565 (build-system r-build-system)
2566 (arguments
2567 `(#:configure-flags '("--configure-args=\"--with-Rmpi-type=OPENMPI\"")
2568 #:phases (modify-phases %standard-phases
2569 (add-before 'install 'mpi-setup
2570 ,%openmpi-setup))))
2571 (inputs
2572 `(("openmpi" ,openmpi)))
2573 (native-inputs
2574 `(("pkg-config" ,pkg-config)))
2575 (home-page "http://www.stats.uwo.ca/faculty/yu/Rmpi")
2576 (synopsis "R interface to message-passing interface (MPI)")
2577 (description
2578 "This package provides an interface (wrapper) to MPI APIs. It also
2579 provides an interactive R manager and worker environment.")
2580 (license license:gpl2+)))
2581
2582 (define-public r-lmoments
2583 (package
2584 (name "r-lmoments")
2585 (version "1.3-1")
2586 (source
2587 (origin
2588 (method url-fetch)
2589 (uri (cran-uri "Lmoments" version))
2590 (sha256
2591 (base32
2592 "0pc63bj9a8hzr5m3yssrc4kin39fffwkl8rggs3sagzr12d4i7bw"))))
2593 (properties `((upstream-name . "Lmoments")))
2594 (build-system r-build-system)
2595 (propagated-inputs
2596 `(("r-rcpp" ,r-rcpp)
2597 ("r-rcpparmadillo" ,r-rcpparmadillo)))
2598 (home-page "http://www.tilastotiede.fi/juha_karvanen.html")
2599 (synopsis "L-moments and quantile mixtures")
2600 (description
2601 "This package contains functions to estimate L-moments and trimmed
2602 L-moments from the data. It also contains functions to estimate the
2603 parameters of the normal polynomial quantile mixture and the Cauchy polynomial
2604 quantile mixture from L-moments and trimmed L-moments.")
2605 (license license:gpl2)))
2606
2607 (define-public r-distillery
2608 (package
2609 (name "r-distillery")
2610 (version "1.1")
2611 (source
2612 (origin
2613 (method url-fetch)
2614 (uri (cran-uri "distillery" version))
2615 (sha256
2616 (base32
2617 "15qhvhg6wmvlxrvvw70sk8pv76z5pd04vyasgczvxa0599ih7bzh"))))
2618 (build-system r-build-system)
2619 (home-page "https://ral.ucar.edu/staff/ericg/")
2620 (synopsis "Functions for confidence intervals and object information")
2621 (description
2622 "This package provides some very simple method functions for confidence
2623 interval calculation and to distill pertinent information from a potentially
2624 complex object; primarily used in common with the packages extRemes and
2625 SpatialVx.")
2626 (license license:gpl2+)))
2627
2628 (define-public r-extremes
2629 (package
2630 (name "r-extremes")
2631 (version "2.0-12")
2632 (source
2633 (origin
2634 (method url-fetch)
2635 (uri (cran-uri "extRemes" version))
2636 (sha256
2637 (base32
2638 "0wldzvj1h93jksq31dw9zgnr1wrqwmfr9qwmg7qk7nznsn2yy1h2"))))
2639 (properties `((upstream-name . "extRemes")))
2640 (build-system r-build-system)
2641 (propagated-inputs
2642 `(("r-distillery" ,r-distillery)
2643 ("r-lmoments" ,r-lmoments)))
2644 (home-page "https://www.assessment.ucar.edu/toolkit/")
2645 (synopsis "Extreme value analysis")
2646 (description
2647 "ExtRemes is a suite of functions for carrying out analyses on the
2648 extreme values of a process of interest; be they block maxima over long blocks
2649 or excesses over a high threshold.")
2650 (license license:gpl2+)))
2651
2652 (define-public r-lmtest
2653 (package
2654 (name "r-lmtest")
2655 (version "0.9-37")
2656 (source
2657 (origin
2658 (method url-fetch)
2659 (uri (cran-uri "lmtest" version))
2660 (sha256
2661 (base32
2662 "02nasm0j2vwkhz11dxqixs23msy1s3yj0jps6949fmgh9gwjkjfx"))))
2663 (build-system r-build-system)
2664 (propagated-inputs
2665 `(("r-zoo" ,r-zoo)))
2666 (native-inputs
2667 `(("gfortran" ,gfortran)))
2668 (home-page "https://cran.r-project.org/web/packages/lmtest")
2669 (synopsis "Testing linear regression models")
2670 (description
2671 "This package provides a collection of tests, data sets, and examples for
2672 diagnostic checking in linear regression models. Furthermore, some generic
2673 tools for inference in parametric models are provided.")
2674 ;; Either version is okay
2675 (license (list license:gpl2 license:gpl3))))
2676
2677 (define-public r-idr
2678 (package
2679 (name "r-idr")
2680 (version "1.2")
2681 (source (origin
2682 (method url-fetch)
2683 (uri (cran-uri "idr" version))
2684 (sha256
2685 (base32
2686 "05nvgw1xdg670bsjjrxkgd1mrdkciccpw4krn0zcgdf2r21dzgwb"))))
2687 (build-system r-build-system)
2688 (home-page "https://cran.r-project.org/web/packages/idr/")
2689 (synopsis "Irreproducible discovery rate")
2690 (description
2691 "This is a package for estimating the copula mixture model and plotting
2692 correspondence curves in \"Measuring reproducibility of high-throughput
2693 experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
2694 by Li, Brown, Huang, and Bickel")
2695 (license license:gpl2+)))
2696
2697 (define-public r-inline
2698 (package
2699 (name "r-inline")
2700 (version "0.3.15")
2701 (source (origin
2702 (method url-fetch)
2703 (uri (cran-uri "inline" version))
2704 (sha256
2705 (base32
2706 "0s4wssvpan189fijahknxq5s22ww9bzmdlmyhnra748r7khky17z"))))
2707 (build-system r-build-system)
2708 (home-page "https://cran.r-project.org/web/packages/inline")
2709 (synopsis "Functions to inline C, C++, Fortran function calls from R")
2710 (description
2711 "This package provides functionality to dynamically define R functions
2712 and S4 methods with inlined C, C++ or Fortran code supporting @code{.C} and
2713 @code{.Call} calling conventions.")
2714 ;; Any version of the LGPL.
2715 (license license:lgpl3+)))
2716
2717 (define-public r-inum
2718 (package
2719 (name "r-inum")
2720 (version "1.0-1")
2721 (source (origin
2722 (method url-fetch)
2723 (uri (cran-uri "inum" version))
2724 (sha256
2725 (base32
2726 "16d09391l65w557dkzhhx1aqn1ljamcmjj3yh42pwq037k0r8brw"))))
2727 (build-system r-build-system)
2728 (propagated-inputs
2729 `(("r-libcoin" ,r-libcoin)))
2730 (home-page "https://cran.r-project.org/web/packages/inum/")
2731 (synopsis "Interval and enum-type representation of vectors")
2732 (description
2733 "This package provides an enum-type representation of vectors and
2734 representation of intervals, including a method of coercing variables
2735 in data frames.")
2736 (license license:gpl2)))
2737
2738 (define-public r-bdsmatrix
2739 (package
2740 (name "r-bdsmatrix")
2741 (version "1.3-4")
2742 (source
2743 (origin
2744 (method url-fetch)
2745 (uri (cran-uri "bdsmatrix" version))
2746 (sha256
2747 (base32
2748 "1sh6pg43rgqvips4fx0k4vmp5i9lmniix0bqwj2yq5m06gs227i5"))))
2749 (properties `((upstream-name . "bdsmatrix")))
2750 (build-system r-build-system)
2751 (home-page "https://cran.r-project.org/web/packages/bdsmatrix/")
2752 (synopsis "Routines for block diagonal symmetric matrices")
2753 (description
2754 "This package provides procedures to work with block diagonal symmetric
2755 matrices, a special case of sparse matrices.")
2756 (license license:lgpl2.0)))
2757
2758 (define-public r-bbmle
2759 (package
2760 (name "r-bbmle")
2761 (version "1.0.23.1")
2762 (source
2763 (origin
2764 (method url-fetch)
2765 (uri (cran-uri "bbmle" version))
2766 (sha256
2767 (base32
2768 "0p3l9shbr2846qmw8n0fyzf4j7gmi08aypl82jml3dwh26q1whk0"))))
2769 (build-system r-build-system)
2770 (propagated-inputs
2771 `(("r-bdsmatrix" ,r-bdsmatrix)
2772 ("r-lattice" ,r-lattice)
2773 ("r-mass" ,r-mass)
2774 ("r-matrix" ,r-matrix)
2775 ("r-mvtnorm" ,r-mvtnorm)
2776 ("r-numderiv" ,r-numderiv)))
2777 (home-page "https://cran.r-project.org/web/packages/bbmle")
2778 (synopsis "Tools for General Maximum Likelihood Estimation")
2779 (description
2780 "This package provides methods and functions for fitting maximum
2781 likelihood models in R. This package modifies and extends the @code{mle}
2782 classes in the @code{stats4} package.")
2783 ;; Any version of the GPL
2784 (license license:gpl2+)))
2785
2786 (define-public r-emdbook
2787 (package
2788 (name "r-emdbook")
2789 (version "1.3.12")
2790 (source
2791 (origin
2792 (method url-fetch)
2793 (uri (cran-uri "emdbook" version))
2794 (sha256
2795 (base32
2796 "0ls3zxxlwmdv7zn1v9i1y9zc2sn0hbgmyjvsj7zn3ajsw7wwlih6"))))
2797 (build-system r-build-system)
2798 (propagated-inputs
2799 `(("r-bbmle" ,r-bbmle)
2800 ("r-coda" ,r-coda)
2801 ("r-lattice" ,r-lattice)
2802 ("r-mass" ,r-mass)
2803 ("r-plyr" ,r-plyr)))
2804 (home-page "http://www.math.mcmaster.ca/bolker/emdbook")
2805 (synopsis "Support functions and data for \"Ecological Models and Data\"")
2806 (description
2807 "This package provides auxiliary functions and data sets for \"Ecological
2808 Models and Data\", a book presenting maximum likelihood estimation and related
2809 topics for ecologists (ISBN 978-0-691-12522-0).")
2810 ;; Any GPL version
2811 (license (list license:gpl2 license:gpl3))))
2812
2813 (define-public r-lpsolve
2814 (package
2815 (name "r-lpsolve")
2816 (version "5.6.15")
2817 (source
2818 (origin
2819 (method url-fetch)
2820 (uri (cran-uri "lpSolve" version))
2821 (sha256
2822 (base32
2823 "1fpkyjyqykwa1dxnhiky01pm09syxg169lm7hpy39bdbg10vw9s6"))))
2824 (properties `((upstream-name . "lpSolve")))
2825 (build-system r-build-system)
2826 (home-page "https://cran.r-project.org/web/packages/lpSolve")
2827 (synopsis "R interface to Lp_solve to solve linear/integer programs")
2828 (description
2829 "Lp_solve is software for solving linear, integer and mixed integer
2830 programs. This implementation supplies a \"wrapper\" function in C and some R
2831 functions that solve general linear/integer problems, assignment problems, and
2832 transportation problems.")
2833 (license license:lgpl2.0)))
2834
2835 (define-public r-limsolve
2836 (package
2837 (name "r-limsolve")
2838 (version "1.5.6")
2839 (source
2840 (origin
2841 (method url-fetch)
2842 (uri (cran-uri "limSolve" version))
2843 (sha256
2844 (base32
2845 "1829rd2cnd8qj80z9a7sgc7gx4sf3kvl5g6d2a0lqqw30f9sjzmr"))))
2846 (properties `((upstream-name . "limSolve")))
2847 (build-system r-build-system)
2848 (propagated-inputs
2849 `(("r-lpsolve" ,r-lpsolve)
2850 ("r-mass" ,r-mass)
2851 ("r-quadprog" ,r-quadprog)))
2852 (native-inputs `(("gfortran" ,gfortran)))
2853 (home-page "https://cran.r-project.org/web/packages/limSolve")
2854 (synopsis "Solving linear inverse models")
2855 (description
2856 "This package provides functions that:
2857
2858 @enumerate
2859 @item find the minimum/maximum of a linear or quadratic function,
2860 @item sample an underdetermined or overdetermined system,
2861 @item solve a linear system Ax=B for the unknown x.
2862 @end enumerate
2863
2864 It includes banded and tridiagonal linear systems. The package calls Fortran
2865 functions from LINPACK.")
2866 ;; Any GPL version.
2867 (license (list license:gpl2+ license:gpl3+))))
2868
2869 (define-public r-fitdistrplus
2870 (package
2871 (name "r-fitdistrplus")
2872 (version "1.1-1")
2873 (source
2874 (origin
2875 (method url-fetch)
2876 (uri (cran-uri "fitdistrplus" version))
2877 (sha256
2878 (base32
2879 "1rnfnwmxa495fql7q0h9018cnwygwhj8gfh6ryz1vbf474570vjl"))))
2880 (build-system r-build-system)
2881 (propagated-inputs
2882 `(("r-mass" ,r-mass)
2883 ("r-survival" ,r-survival)))
2884 (native-inputs
2885 `(("r-knitr" ,r-knitr)))
2886 (home-page "http://riskassessment.r-forge.r-project.org")
2887 (synopsis "Fitting a parametric distribution from data")
2888 (description
2889 "This package extends the @code{fitdistr} function of the MASS package
2890 with several functions to help the fit of a parametric distribution to
2891 non-censored or censored data. Censored data may contain left-censored,
2892 right-censored and interval-censored values, with several lower and upper
2893 bounds. In addition to @dfn{maximum likelihood estimation} (MLE), the package
2894 provides moment matching (MME), quantile matching (QME) and maximum
2895 goodness-of-fit estimation (MGE) methods (available only for non-censored
2896 data). Weighted versions of MLE, MME and QME are available.")
2897 (license license:gpl2+)))
2898
2899 (define-public r-energy
2900 (package
2901 (name "r-energy")
2902 (version "1.7-7")
2903 (source
2904 (origin
2905 (method url-fetch)
2906 (uri (cran-uri "energy" version))
2907 (sha256
2908 (base32
2909 "13wnx5nwk7nsv7vf5sxhz4y0rxrnzm76ldgywk1bxrz67srqzf37"))))
2910 (build-system r-build-system)
2911 (propagated-inputs
2912 `(("r-boot" ,r-boot)
2913 ("r-rcpp" ,r-rcpp)))
2914 (home-page "https://cran.r-project.org/web/packages/energy")
2915 (synopsis "Multivariate inference via the energy of data")
2916 (description
2917 "This package provides e-statistics (energy) tests and statistics for
2918 multivariate and univariate inference, including distance correlation,
2919 one-sample, two-sample, and multi-sample tests for comparing multivariate
2920 distributions, are implemented. Measuring and testing multivariate
2921 independence based on distance correlation, partial distance correlation,
2922 multivariate goodness-of-fit tests, clustering based on energy distance,
2923 testing for multivariate normality, distance components (disco) for
2924 non-parametric analysis of structured data, and other energy
2925 statistics/methods are implemented.")
2926 (license license:gpl2+)))
2927
2928 (define-public r-suppdists
2929 (package
2930 (name "r-suppdists")
2931 (version "1.1-9.5")
2932 (source
2933 (origin
2934 (method url-fetch)
2935 (uri (cran-uri "SuppDists" version))
2936 (sha256
2937 (base32
2938 "01j6p94m1g363nph2158fq2rmd6z3h5dvcv6aidh2d6syw131xak"))))
2939 (properties `((upstream-name . "SuppDists")))
2940 (build-system r-build-system)
2941 (home-page "https://cran.r-project.org/web/packages/SuppDists")
2942 (synopsis "Supplementary distributions")
2943 (description
2944 "This package provides ten distributions supplementing those built into
2945 R. Inverse Gauss, Kruskal-Wallis, Kendall's Tau, Friedman's chi squared,
2946 Spearman's rho, maximum F ratio, the Pearson product moment correlation
2947 coefficient, Johnson distributions, normal scores and generalized
2948 hypergeometric distributions. In addition two random number generators of
2949 George Marsaglia are included.")
2950 (license license:gpl2+)))
2951
2952 (define-public r-ksamples
2953 (package
2954 (name "r-ksamples")
2955 (version "1.2-9")
2956 (source
2957 (origin
2958 (method url-fetch)
2959 (uri (cran-uri "kSamples" version))
2960 (sha256
2961 (base32
2962 "1zs22p68d6320kcylisnk0b5wmpapxkyz15py09czxzw7npw8gms"))))
2963 (properties `((upstream-name . "kSamples")))
2964 (build-system r-build-system)
2965 (propagated-inputs
2966 `(("r-suppdists" ,r-suppdists)))
2967 (home-page "https://cran.r-project.org/web/packages/kSamples")
2968 (synopsis "K-Sample rank tests and their combinations")
2969 (description
2970 "This package provides tools to compares k samples using the
2971 Anderson-Darling test, Kruskal-Wallis type tests with different rank score
2972 criteria, Steel's multiple comparison test, and the Jonckheere-Terpstra (JT)
2973 test. It computes asymptotic, simulated or (limited) exact P-values, all
2974 valid under randomization, with or without ties, or conditionally under random
2975 sampling from populations, given the observed tie pattern. Except for Steel's
2976 test and the JT test it also combines these tests across several blocks of
2977 samples.")
2978 (license license:gpl2+)))
2979
2980 (define-public r-cvst
2981 (package
2982 (name "r-cvst")
2983 (version "0.2-2")
2984 (source
2985 (origin
2986 (method url-fetch)
2987 (uri (cran-uri "CVST" version))
2988 (sha256
2989 (base32
2990 "05l3yzkfrbds09ah9cdwn2sn4ryhq78lz33ryzrgkv176jc8qjw5"))))
2991 (properties `((upstream-name . "CVST")))
2992 (build-system r-build-system)
2993 (propagated-inputs
2994 `(("r-kernlab" ,r-kernlab)
2995 ("r-matrix" ,r-matrix)))
2996 (home-page "https://cran.r-project.org/web/packages/CVST")
2997 (synopsis "Fast cross-validation via sequential testing")
2998 (description
2999 "This package implements the fast cross-validation via sequential
3000 testing (CVST) procedure. CVST is an improved cross-validation procedure
3001 which uses non-parametric testing coupled with sequential analysis to
3002 determine the best parameter set on linearly increasing subsets of the data.
3003 Additionally to the CVST the package contains an implementation of the
3004 ordinary k-fold cross-validation with a flexible and powerful set of helper
3005 objects and methods to handle the overall model selection process. The
3006 implementations of the Cochran's Q test with permutations and the sequential
3007 testing framework of Wald are generic and can therefore also be used in other
3008 contexts.")
3009 (license license:gpl2+)))
3010
3011 (define-public r-squarem
3012 (package
3013 (name "r-squarem")
3014 (version "2020.3")
3015 (source
3016 (origin
3017 (method url-fetch)
3018 (uri (cran-uri "SQUAREM" version))
3019 (sha256
3020 (base32
3021 "17l05i87vwvcsk79fbg52zrx04zdlwiiyl3ga8qafs7mqx0j976q"))))
3022 (properties `((upstream-name . "SQUAREM")))
3023 (build-system r-build-system)
3024 (home-page "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html")
3025 (synopsis "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms")
3026 (description
3027 "This package provides algorithms for accelerating the convergence of
3028 slow, monotone sequences from smooth, contraction mapping such as the EM
3029 algorithm. It can be used to accelerate any smooth, linearly convergent
3030 acceleration scheme. A tutorial style introduction to this package is
3031 available in a vignette.")
3032 (license license:gpl2+)))
3033
3034 (define-public r-lava
3035 (package
3036 (name "r-lava")
3037 (version "1.6.7")
3038 (source
3039 (origin
3040 (method url-fetch)
3041 (uri (cran-uri "lava" version))
3042 (sha256
3043 (base32
3044 "0ffzxbb8pvfh1m6j61az4ga37snyhylq2941fyc76w7w9i2sixv3"))))
3045 (build-system r-build-system)
3046 (propagated-inputs
3047 `(("r-numderiv" ,r-numderiv)
3048 ("r-squarem" ,r-squarem)
3049 ("r-survival" ,r-survival)))
3050 (home-page "https://github.com/kkholst/lava")
3051 (synopsis "Latent variable models")
3052 (description
3053 "This package provides tools for the estimation and simulation of latent
3054 variable models.")
3055 (license license:gpl3)))
3056
3057 (define-public r-drr
3058 (package
3059 (name "r-drr")
3060 (version "0.0.4")
3061 (source
3062 (origin
3063 (method url-fetch)
3064 (uri (cran-uri "DRR" version))
3065 (sha256
3066 (base32
3067 "1y70si1gig4l7jx5jiqsqliyywfsvimkx53x3zh1lc3yj2j6bqwk"))))
3068 (properties `((upstream-name . "DRR")))
3069 (build-system r-build-system)
3070 (propagated-inputs
3071 `(("r-cvst" ,r-cvst)
3072 ("r-kernlab" ,r-kernlab)
3073 ("r-matrix" ,r-matrix)))
3074 (home-page "https://cran.r-project.org/web/packages/DRR")
3075 (synopsis "Dimensionality reduction via regression")
3076 (description
3077 "This package provides an implementation of dimensionality reduction via
3078 regression using Kernel Ridge Regression.")
3079 (license license:gpl3)))
3080
3081 (define-public r-prodlim
3082 (package
3083 (name "r-prodlim")
3084 (version "2019.11.13")
3085 (source
3086 (origin
3087 (method url-fetch)
3088 (uri (cran-uri "prodlim" version))
3089 (sha256
3090 (base32
3091 "03wvh3kirp1prac5nky6a5whs97rvaf4hc27x0fnh51sa17r42b8"))))
3092 (build-system r-build-system)
3093 (propagated-inputs
3094 `(("r-kernsmooth" ,r-kernsmooth)
3095 ("r-lava" ,r-lava)
3096 ("r-rcpp" ,r-rcpp)
3097 ("r-survival" ,r-survival)))
3098 (home-page "https://cran.r-project.org/web/packages/prodlim")
3099 (synopsis "Product-limit estimation for censored event history analysis")
3100 (description
3101 "This package provides a fast and user-friendly implementation of
3102 nonparametric estimators for censored event history (survival) analysis with
3103 the Kaplan-Meier and Aalen-Johansen methods.")
3104 (license license:gpl2+)))
3105
3106 (define-public r-dimred
3107 (package
3108 (name "r-dimred")
3109 (version "0.2.3")
3110 (source
3111 (origin
3112 (method url-fetch)
3113 (uri (cran-uri "dimRed" version))
3114 (sha256
3115 (base32
3116 "110d6y83ib1nfpxzmvkvb3fn3brskwkdbsk4dqrdrswrd4znxrg6"))))
3117 (properties `((upstream-name . "dimRed")))
3118 (build-system r-build-system)
3119 (propagated-inputs
3120 `(("r-drr" ,r-drr)
3121 ("r-magrittr" ,r-magrittr)))
3122 (home-page "https://github.com/gdkrmr/dimRed")
3123 (synopsis "Framework for dimensionality reduction")
3124 (description
3125 "This package provides a collection of dimensionality reduction
3126 techniques from R packages and provides a common interface for calling the
3127 methods.")
3128 (license license:gpl3)))
3129
3130 (define-public r-timedate
3131 (package
3132 (name "r-timedate")
3133 (version "3043.102")
3134 (source
3135 (origin
3136 (method url-fetch)
3137 (uri (cran-uri "timeDate" version))
3138 (sha256
3139 (base32
3140 "0wvl5pq261rvbgly7vilk3x3m9xk3ly6il1i5scwdf6srl1vlz1p"))))
3141 (properties `((upstream-name . "timeDate")))
3142 (build-system r-build-system)
3143 (home-page "https://www.rmetrics.org")
3144 (synopsis "Chronological and calendar objects")
3145 (description
3146 "This package provides an environment for teaching \"Financial
3147 Engineering and Computational Finance\" and for managing chronological and
3148 calendar objects.")
3149 (license license:gpl2+)))
3150
3151 (define-public r-magic
3152 (package
3153 (name "r-magic")
3154 (version "1.5-9")
3155 (source
3156 (origin
3157 (method url-fetch)
3158 (uri (cran-uri "magic" version))
3159 (sha256
3160 (base32
3161 "0snmdh6vk0p6ar1swsihisinxrx7l8371dri5lk0z24ysgr5w7gs"))))
3162 (build-system r-build-system)
3163 (propagated-inputs
3164 `(("r-abind" ,r-abind)))
3165 (home-page "https://github.com/RobinHankin/magic.git")
3166 (synopsis "Create and investigate magic squares")
3167 (description
3168 "This package provides a collection of efficient, vectorized algorithms
3169 for the creation and investigation of magic squares and hypercubes, including
3170 a variety of functions for the manipulation and analysis of arbitrarily
3171 dimensioned arrays.")
3172 (license license:gpl2)))
3173
3174 (define-public r-rmysql
3175 (package
3176 (name "r-rmysql")
3177 (version "0.10.20")
3178 (source
3179 (origin
3180 (method url-fetch)
3181 (uri (cran-uri "RMySQL" version))
3182 (sha256
3183 (base32
3184 "0lv9m6zpm8dgv7yixr6xhw379vbq45d7n7gkrmjrppdj8vcih77i"))))
3185 (properties `((upstream-name . "RMySQL")))
3186 (build-system r-build-system)
3187 (inputs
3188 `(("mariadb" ,mariadb "lib")
3189 ("mariadb-dev" ,mariadb "dev")
3190 ("zlib" ,zlib)))
3191 (propagated-inputs
3192 `(("r-dbi" ,r-dbi)))
3193 (home-page "https://github.com/r-dbi/RMySQL")
3194 (synopsis "Database interface and MySQL driver for R")
3195 (description
3196 "This package provides a DBI interface to MySQL / MariaDB. The RMySQL
3197 package contains an old implementation based on legacy code from S-PLUS which
3198 is being phased out. A modern MySQL client based on Rcpp is available from
3199 the RMariaDB package.")
3200 (license license:gpl2)))
3201
3202 (define-public r-rpostgresql
3203 (package
3204 (name "r-rpostgresql")
3205 (version "0.6-2")
3206 (source
3207 (origin
3208 (method url-fetch)
3209 (uri (cran-uri "RPostgreSQL" version))
3210 (sha256
3211 (base32
3212 "1mdhw5821v2h7hpa53v10wz53k4i90r0vb6a3dia5gq8f9j1h088"))))
3213 (properties `((upstream-name . "RPostgreSQL")))
3214 (build-system r-build-system)
3215 (inputs
3216 `(("postgresql" ,postgresql)))
3217 (propagated-inputs
3218 `(("r-dbi" ,r-dbi)))
3219 (home-page "https://github.com/tomoakin/RPostgreSQL")
3220 (synopsis "R interface to the PostgreSQL database system")
3221 (description
3222 "This package provides a Database Interface (DBI) compliant driver for R
3223 to access PostgreSQL database systems.")
3224 ;; The whole package is released under GPL version 2. It includes code
3225 ;; under the PostgreSQL license.
3226 (license license:gpl2)))
3227
3228 (define-public r-linprog
3229 (package
3230 (name "r-linprog")
3231 (version "0.9-2")
3232 (source
3233 (origin
3234 (method url-fetch)
3235 (uri (cran-uri "linprog" version))
3236 (sha256
3237 (base32
3238 "1ki14an0pmhs2mnmfjjvdzd76pshiyvi659zf7hqvqwj0viv4dw9"))))
3239 (build-system r-build-system)
3240 (propagated-inputs `(("r-lpsolve" ,r-lpsolve)))
3241 (home-page "http://linprog.r-forge.r-project.org/")
3242 (synopsis "Linear programming and optimization")
3243 (description
3244 "This package can be used to solve Linear Programming / Linear
3245 Optimization problems by using the simplex algorithm.")
3246 (license license:gpl2+)))
3247
3248 (define-public r-geometry
3249 (package
3250 (name "r-geometry")
3251 (version "0.4.5")
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (cran-uri "geometry" version))
3256 (sha256
3257 (base32
3258 "1n10l8ax3783v3lgaacb15qsn8b3f0wpmhg3k39j31s6ciyd3vcg"))))
3259 (build-system r-build-system)
3260 (propagated-inputs
3261 `(("r-magic" ,r-magic)
3262 ("r-linprog" ,r-linprog)
3263 ("r-lpsolve" ,r-lpsolve)
3264 ("r-rcpp" ,r-rcpp)
3265 ("r-rcppprogress" ,r-rcppprogress)))
3266 (home-page "http://geometry.r-forge.r-project.org/")
3267 (synopsis "Mesh generation and surface tesselation")
3268 (description
3269 "This package makes the qhull library available in R, in a similar manner
3270 as in Octave. Qhull computes convex hulls, Delaunay triangulations, halfspace
3271 intersections about a point, Voronoi diagrams, furthest-site Delaunay
3272 triangulations, and furthest-site Voronoi diagrams. It runs in 2-d, 3-d, 4-d,
3273 and higher dimensions. It implements the Quickhull algorithm for computing
3274 the convex hull. Qhull does not support constrained Delaunay triangulations,
3275 or mesh generation of non-convex objects, but the package does include some R
3276 functions that allow for this. Currently the package only gives access to
3277 Delaunay triangulation and convex hull computation.")
3278 ;; The Qhull sources are included and are distributed under a custom
3279 ;; non-copyleft license. The R sources are released under GPL version 2.
3280 (license (list license:gpl2
3281 (license:non-copyleft "http://www.qhull.org/COPYING.txt")))))
3282
3283 (define-public r-ddalpha
3284 (package
3285 (name "r-ddalpha")
3286 (version "1.3.11")
3287 (source
3288 (origin
3289 (method url-fetch)
3290 (uri (cran-uri "ddalpha" version))
3291 (sha256
3292 (base32
3293 "1sdnb47r534nh138zk3a6b2mgi74nvshc7p5m304vjs9jlx4l2y3"))))
3294 (build-system r-build-system)
3295 (propagated-inputs
3296 `(("r-bh" ,r-bh)
3297 ("r-class" ,r-class)
3298 ("r-geometry" ,r-geometry)
3299 ("r-mass" ,r-mass)
3300 ("r-rcpp" ,r-rcpp)
3301 ("r-robustbase" ,r-robustbase)
3302 ("r-sfsmisc" ,r-sfsmisc)))
3303 (native-inputs
3304 `(("gfortran" ,gfortran)))
3305 (home-page "https://cran.r-project.org/web/packages/ddalpha")
3306 (synopsis "Depth-Based classification and calculation of data depth")
3307 (description
3308 "This package contains procedures for depth-based supervised learning,
3309 which are entirely non-parametric, in particular the DDalpha-procedure (Lange,
3310 Mosler and Mozharovskyi, 2014). The training data sample is transformed by a
3311 statistical depth function to a compact low-dimensional space, where the final
3312 classification is done. It also offers an extension to functional data and
3313 routines for calculating certain notions of statistical depth functions. 50
3314 multivariate and 5 functional classification problems are included.")
3315 (license license:gpl2)))
3316
3317 (define-public r-gower
3318 (package
3319 (name "r-gower")
3320 (version "0.2.2")
3321 (source
3322 (origin
3323 (method url-fetch)
3324 (uri (cran-uri "gower" version))
3325 (sha256
3326 (base32
3327 "0c9n921wn4hhlvjq96r4nkk96s5788376cbldr7y7bwz348200iz"))))
3328 (build-system r-build-system)
3329 (home-page "https://github.com/markvanderloo/gower")
3330 (synopsis "Gower's distance")
3331 (description
3332 "This package provides tools to compute Gower's distance (or similarity)
3333 coefficient between records, and to compute the top-n matches between records.
3334 Core algorithms are executed in parallel on systems supporting OpenMP.")
3335 (license license:gpl3)))
3336
3337 (define-public r-rcpproll
3338 (package
3339 (name "r-rcpproll")
3340 (version "0.3.0")
3341 (source
3342 (origin
3343 (method url-fetch)
3344 (uri (cran-uri "RcppRoll" version))
3345 (sha256
3346 (base32
3347 "0srzfhzkk42kzrdjnhbb37946jp1p688rgysy6k3i2is8jb21zyb"))))
3348 (properties `((upstream-name . "RcppRoll")))
3349 (build-system r-build-system)
3350 (propagated-inputs
3351 `(("r-rcpp" ,r-rcpp)))
3352 (home-page "https://cran.r-project.org/web/packages/RcppRoll")
3353 (synopsis "Efficient rolling and windowed operations")
3354 (description
3355 "This package provides fast and efficient routines for common rolling /
3356 windowed operations. Routines for the efficient computation of windowed mean,
3357 median, sum, product, minimum, maximum, standard deviation and variance are
3358 provided.")
3359 (license license:gpl2+)))
3360
3361 (define-public r-ipred
3362 (package
3363 (name "r-ipred")
3364 (version "0.9-9")
3365 (source
3366 (origin
3367 (method url-fetch)
3368 (uri (cran-uri "ipred" version))
3369 (sha256
3370 (base32
3371 "0vs1hqfx7yd0xdbmfsf2gim7spkni0845cj6gswn0nhdfdq7ma0d"))))
3372 (build-system r-build-system)
3373 (propagated-inputs
3374 `(("r-class" ,r-class)
3375 ("r-mass" ,r-mass)
3376 ("r-nnet" ,r-nnet)
3377 ("r-prodlim" ,r-prodlim)
3378 ("r-rpart" ,r-rpart)
3379 ("r-survival" ,r-survival)))
3380 (home-page "https://cran.r-project.org/web/packages/ipred")
3381 (synopsis "Improved predictors")
3382 (description
3383 "This package provides improved predictive models by indirect
3384 classification and bagging for classification, regression and survival
3385 problems as well as resampling based estimators of prediction error.")
3386 (license license:gpl2+)))
3387
3388 (define-public r-psych
3389 (package
3390 (name "r-psych")
3391 (version "2.0.7")
3392 (source
3393 (origin
3394 (method url-fetch)
3395 (uri (cran-uri "psych" version))
3396 (sha256
3397 (base32
3398 "13z26yk9nrgviyakkij3jc7mja8wy7al9ripab07mvy21kli79bc"))))
3399 (build-system r-build-system)
3400 (propagated-inputs
3401 `(("r-lattice" ,r-lattice)
3402 ("r-mnormt" ,r-mnormt)
3403 ("r-nlme" ,r-nlme)))
3404 (home-page "https://cran.r-project.org/web/packages/psych/")
3405 (synopsis "Procedures for psychological, psychometric, and personality research")
3406 (description
3407 "This package provides a general purpose toolbox for personality,
3408 psychometric theory and experimental psychology. Functions are primarily for
3409 multivariate analysis and scale construction using factor analysis, principal
3410 component analysis, cluster analysis and reliability analysis, although others
3411 provide basic descriptive statistics. Item Response Theory is done using
3412 factor analysis of tetrachoric and polychoric correlations. Functions for
3413 analyzing data at multiple levels include within and between group statistics,
3414 including correlations and factor analysis. Functions for simulating and
3415 testing particular item and test structures are included. Several functions
3416 serve as a useful front end for structural equation modeling. Graphical
3417 displays of path diagrams, factor analysis and structural equation models are
3418 created using basic graphics.")
3419 (license license:gpl2+)))
3420
3421 (define-public r-generics
3422 (package
3423 (name "r-generics")
3424 (version "0.0.2")
3425 (source
3426 (origin
3427 (method url-fetch)
3428 (uri (cran-uri "generics" version))
3429 (sha256
3430 (base32
3431 "0xk1xhpy7gpv3pvaygzhpfdxj72zmb38pb4nscfyg2ff36vx3cvi"))))
3432 (build-system r-build-system)
3433 (home-page "https://github.com/r-lib/generics")
3434 (synopsis "Common S3 generics not provided by base R methods")
3435 (description
3436 "In order to reduce potential package dependencies and conflicts,
3437 generics provides a number of commonly used S3 generics that are not provided
3438 by base R methods related to model fitting.")
3439 (license license:gpl2)))
3440
3441 (define-public r-broom
3442 (package
3443 (name "r-broom")
3444 (version "0.7.0")
3445 (source
3446 (origin
3447 (method url-fetch)
3448 (uri (cran-uri "broom" version))
3449 (sha256
3450 (base32
3451 "0bq8w1ckrladzck2g0mgiyjdrzi06kbqalk5q3pfvj1607fdv3d5"))))
3452 (build-system r-build-system)
3453 (propagated-inputs
3454 `(("r-backports" ,r-backports)
3455 ("r-dplyr" ,r-dplyr)
3456 ("r-ellipsis" ,r-ellipsis)
3457 ("r-generics" ,r-generics)
3458 ("r-glue" ,r-glue)
3459 ("r-purrr" ,r-purrr)
3460 ("r-rlang" ,r-rlang)
3461 ("r-stringr" ,r-stringr)
3462 ("r-tibble" ,r-tibble)
3463 ("r-tidyr" ,r-tidyr)))
3464 (native-inputs
3465 `(("r-knitr" ,r-knitr)))
3466 (home-page "https://github.com/tidyverse/broom")
3467 (synopsis "Convert statistical analysis objects into tidy data frames")
3468 (description
3469 "This package provides tools to convert statistical analysis objects from
3470 R into tidy data frames, so that they can more easily be combined, reshaped
3471 and otherwise processed with tools like @code{dplyr}, @code{tidyr} and
3472 @code{ggplot2}. The package provides three S3 generics: @code{tidy}, which
3473 summarizes a model's statistical findings such as coefficients of a
3474 regression; @code{augment}, which adds columns to the original data such as
3475 predictions, residuals and cluster assignments; and @code{glance}, which
3476 provides a one-row summary of model-level statistics.")
3477 (license license:expat)))
3478
3479 (define-public r-recipes
3480 (package
3481 (name "r-recipes")
3482 (version "0.1.13")
3483 (source
3484 (origin
3485 (method url-fetch)
3486 (uri (cran-uri "recipes" version))
3487 (sha256
3488 (base32
3489 "1d3pmprkiz60w7lq5q4lpl5zlwf7fg7qghf7sq6xs1294w54gzbs"))))
3490 (build-system r-build-system)
3491 (propagated-inputs
3492 `(("r-dplyr" ,r-dplyr)
3493 ("r-generics" ,r-generics)
3494 ("r-glue" ,r-glue)
3495 ("r-gower" ,r-gower)
3496 ("r-ipred" ,r-ipred)
3497 ("r-lifecycle" ,r-lifecycle)
3498 ("r-lubridate" ,r-lubridate)
3499 ("r-magrittr" ,r-magrittr)
3500 ("r-matrix" ,r-matrix)
3501 ("r-purrr" ,r-purrr)
3502 ("r-rlang" ,r-rlang)
3503 ("r-tibble" ,r-tibble)
3504 ("r-tidyr" ,r-tidyr)
3505 ("r-tidyselect" ,r-tidyselect)
3506 ("r-timedate" ,r-timedate)
3507 ("r-withr" ,r-withr)))
3508 (native-inputs
3509 `(("r-knitr" ,r-knitr)))
3510 (home-page "https://github.com/topepo/recipes")
3511 (synopsis "Preprocessing tools to create design matrices")
3512 (description
3513 "Recipes is an extensible framework to create and preprocess design
3514 matrices. Recipes consist of one or more data manipulation and analysis
3515 \"steps\". Statistical parameters for the steps can be estimated from an
3516 initial data set and then applied to other data sets. The resulting design
3517 matrices can then be used as inputs into statistical or machine learning
3518 models.")
3519 (license license:gpl2)))
3520
3521 (define-public r-pdist
3522 (package
3523 (name "r-pdist")
3524 (version "1.2")
3525 (source
3526 (origin
3527 (method url-fetch)
3528 (uri (cran-uri "pdist" version))
3529 (sha256
3530 (base32
3531 "18nd3mgad11f2zmwcp0w3sxlch4a9y6wp8dfdyzvjn7y4b4bq0dd"))))
3532 (build-system r-build-system)
3533 (home-page "https://github.com/jeffwong/pdist")
3534 (synopsis "Partitioned distance function")
3535 (description
3536 "Pdist computes the euclidean distance between rows of a matrix X and
3537 rows of another matrix Y. Previously, this could be done by binding the two
3538 matrices together and calling @code{dist}, but this creates unnecessary
3539 computation by computing the distances between a row of X and another row of
3540 X, and likewise for Y. Pdist strictly computes distances across the two
3541 matrices, not within the same matrix, making computations significantly faster
3542 for certain use cases.")
3543 (license license:gpl3+)))
3544
3545 (define-public r-ggrepel
3546 (package
3547 (name "r-ggrepel")
3548 (version "0.8.2")
3549 (source
3550 (origin
3551 (method url-fetch)
3552 (uri (cran-uri "ggrepel" version))
3553 (sha256
3554 (base32
3555 "1qaifn3dazdqbqlii210xhw7yf142iw7g9p2axmmxbz90p0by08d"))))
3556 (build-system r-build-system)
3557 (propagated-inputs
3558 `(("r-ggplot2" ,r-ggplot2)
3559 ("r-rcpp" ,r-rcpp)
3560 ("r-scales" ,r-scales)))
3561 (native-inputs
3562 `(("r-knitr" ,r-knitr))) ; for vignettes
3563 (home-page "https://github.com/slowkow/ggrepel")
3564 (synopsis "Repulsive text and label geometries for ggplot2")
3565 (description
3566 "This package provides text and label geometries for ggplot2 that help to
3567 avoid overlapping text labels. Labels repel away from each other and away
3568 from the data points.")
3569 (license license:gpl3)))
3570
3571 (define-public r-corrplot
3572 (package
3573 (name "r-corrplot")
3574 (version "0.84")
3575 (source
3576 (origin
3577 (method url-fetch)
3578 (uri (cran-uri "corrplot" version))
3579 (sha256
3580 (base32
3581 "1k03qd8db7pwg1v318xapx5mpiypiz2n07qr19c4b45diri5xkhd"))))
3582 (build-system r-build-system)
3583 (home-page "https://github.com/taiyun/corrplot")
3584 (synopsis "Visualization of a correlation matrix")
3585 (description
3586 "This package provides a graphical display of a correlation matrix or
3587 general matrix. It also contains some algorithms to do matrix reordering. In
3588 addition, corrplot is good at details, including choosing color, text labels,
3589 color labels, layout, etc.")
3590 ;; Any version of the GPL
3591 (license license:gpl2+)))
3592
3593 (define-public r-stringdist
3594 (package
3595 (name "r-stringdist")
3596 (version "0.9.6")
3597 (source
3598 (origin
3599 (method url-fetch)
3600 (uri (cran-uri "stringdist" version))
3601 (sha256
3602 (base32 "0nb3iwpl4f3xxirns1frwvarpyrl4i5f74h8r6h80cg0a4mpdgcb"))))
3603 (build-system r-build-system)
3604 (home-page "https://github.com/markvanderloo/stringdist")
3605 (synopsis "Approximate string matching and string distance functions")
3606 (description
3607 "This package implements an approximate string matching version of R's
3608 native @code{match} function. It can calculate various string distances based
3609 on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment),
3610 qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro,
3611 Jaro-Winkler). An implementation of soundex is provided as well. Distances
3612 can be computed between character vectors while taking proper care of encoding
3613 or between integer vectors representing generic sequences.")
3614 (license license:gpl3+)))
3615
3616 (define-public r-ucminf
3617 (package
3618 (name "r-ucminf")
3619 (version "1.1-4")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (cran-uri "ucminf" version))
3624 (sha256
3625 (base32
3626 "01vggwg1w71k98qs6fhb0x1843vi322mf4g3hbclks94kcpkisx2"))))
3627 (build-system r-build-system)
3628 (native-inputs `(("gfortran" ,gfortran)))
3629 (home-page "https://cran.r-project.org/web/packages/ucminf/")
3630 (synopsis "General-purpose unconstrained non-linear optimization")
3631 (description
3632 "This package provides an implementation of an algorithm for
3633 general-purpose unconstrained non-linear optimization. The algorithm is of
3634 quasi-Newton type with BFGS updating of the inverse Hessian and soft line
3635 search with a trust region type monitoring of the input to the line search
3636 algorithm. The interface of @code{ucminf} is designed for easy interchange
3637 with the package @code{optim}.")
3638 (license license:gpl2+)))
3639
3640 (define-public r-ordinal
3641 (package
3642 (name "r-ordinal")
3643 (version "2019.12-10")
3644 (source
3645 (origin
3646 (method url-fetch)
3647 (uri (cran-uri "ordinal" version))
3648 (sha256
3649 (base32
3650 "09bpmjmbf4x82kgf6bm4bkncq2apdv9mk20zj4zgma2jx2vyfhbs"))))
3651 (build-system r-build-system)
3652 (propagated-inputs
3653 `(("r-mass" ,r-mass)
3654 ("r-matrix" ,r-matrix)
3655 ("r-numderiv" ,r-numderiv)
3656 ("r-ucminf" ,r-ucminf)))
3657 (home-page "https://github.com/runehaubo/ordinal")
3658 (synopsis "Regression models for ordinal data")
3659 (description
3660 "This package provides an implementation of cumulative link (mixed)
3661 models also known as ordered regression models, proportional odds models,
3662 proportional hazards models for grouped survival times and ordered models.
3663 Estimation is via maximum likelihood and mixed models are fitted with the
3664 Laplace approximation and adaptive Gauss-Hermite quadrature.")
3665 (license license:gpl2+)))
3666
3667 (define-public r-jomo
3668 (package
3669 (name "r-jomo")
3670 (version "2.7-2")
3671 (source
3672 (origin
3673 (method url-fetch)
3674 (uri (cran-uri "jomo" version))
3675 (sha256
3676 (base32
3677 "1sbcpacxnxbzwa8rr9x2bq7hh0s3sw6yznr90dkp43n6xk5xaqir"))))
3678 (build-system r-build-system)
3679 (propagated-inputs
3680 `(("r-lme4" ,r-lme4)
3681 ("r-mass" ,r-mass)
3682 ("r-ordinal" ,r-ordinal)
3683 ("r-survival" ,r-survival)))
3684 (home-page "https://cran.r-project.org/web/packages/jomo/")
3685 (synopsis "Multilevel Joint Modelling Multiple Imputation")
3686 (description
3687 "Similarly to Schafer's package pan, jomo is a package for multilevel
3688 joint modelling multiple imputation @url{Carpenter and Kenward (2013),
3689 http://doi.org/10.1002/9781119942283}. Novel aspects of jomo are the
3690 possibility of handling binary and categorical data through latent normal
3691 variables, the option to use cluster-specific covariance matrices and to
3692 impute compatibly with the substantive model.")
3693 (license license:gpl2)))
3694
3695 (define-public r-pan
3696 (package
3697 (name "r-pan")
3698 (version "1.6")
3699 (source
3700 (origin
3701 (method url-fetch)
3702 (uri (cran-uri "pan" version))
3703 (sha256
3704 (base32
3705 "1dk3jjj826p7xrz10qz04vyc068xnypg7bp0pj4c32z3da0xzh5d"))))
3706 (build-system r-build-system)
3707 (native-inputs `(("gfortran" ,gfortran)))
3708 (home-page "https://cran.r-project.org/web/packages/pan/")
3709 (synopsis "Multiple imputation for multivariate panel or clustered data")
3710 (description
3711 "This package implements multiple imputation for multivariate panel or
3712 clustered data.")
3713 (license license:gpl3)))
3714
3715 (define-public r-mitml
3716 (package
3717 (name "r-mitml")
3718 (version "0.3-7")
3719 (source
3720 (origin
3721 (method url-fetch)
3722 (uri (cran-uri "mitml" version))
3723 (sha256
3724 (base32
3725 "0yqyxkyi1kmv5k63wxj5kkg5g8igk1axk2csb4xhj6wz0p89dxy6"))))
3726 (build-system r-build-system)
3727 (propagated-inputs
3728 `(("r-haven" ,r-haven)
3729 ("r-jomo" ,r-jomo)
3730 ("r-pan" ,r-pan)))
3731 (home-page "https://cran.r-project.org/web/packages/mitml/")
3732 (synopsis "Tools for multiple imputation in multilevel modeling")
3733 (description
3734 "This package provides tools for multiple imputation of missing data in
3735 multilevel modeling. It includes a user-friendly interface to the packages
3736 pan and jomo, and several functions for visualization, data management and the
3737 analysis of multiply imputed data sets.")
3738 (license license:gpl2+)))
3739
3740 (define-public r-mice
3741 (package
3742 (name "r-mice")
3743 (version "3.11.0")
3744 (source
3745 (origin
3746 (method url-fetch)
3747 (uri (cran-uri "mice" version))
3748 (sha256
3749 (base32
3750 "1gawccw32l00rcriyxys0mzbxh44x04rziy0cbycc3i1qm39d4fq"))))
3751 (build-system r-build-system)
3752 (propagated-inputs
3753 `(("r-broom" ,r-broom)
3754 ("r-dplyr" ,r-dplyr)
3755 ("r-generics" ,r-generics)
3756 ("r-lattice" ,r-lattice)
3757 ("r-rcpp" ,r-rcpp)
3758 ("r-tidyr" ,r-tidyr)))
3759 (home-page "https://cran.r-project.org/web/packages/mice/")
3760 (synopsis "Multivariate imputation by chained equations")
3761 (description
3762 "Multiple imputation using @dfn{Fully Conditional Specification} (FCS)
3763 implemented by the MICE algorithm as described in @url{Van Buuren and
3764 Groothuis-Oudshoorn (2011), http://doi.org/10.18637/jss.v045.i03}. Each
3765 variable has its own imputation model. Built-in imputation models are
3766 provided for continuous data (predictive mean matching, normal), binary
3767 data (logistic regression), unordered categorical data (polytomous logistic
3768 regression) and ordered categorical data (proportional odds). MICE can also
3769 impute continuous two-level data (normal model, pan, second-level variables).
3770 Passive imputation can be used to maintain consistency between variables.
3771 Various diagnostic plots are available to inspect the quality of the
3772 imputations.")
3773 ;; Any of these two versions.
3774 (license (list license:gpl2 license:gpl3))))
3775
3776 (define-public r-truncnorm
3777 (package
3778 (name "r-truncnorm")
3779 (version "1.0-8")
3780 (source
3781 (origin
3782 (method url-fetch)
3783 (uri (cran-uri "truncnorm" version))
3784 (sha256
3785 (base32
3786 "0zn88wdd58223kibk085rhsikl4yhlrwiyq109hzjg06hy6lwmj9"))))
3787 (build-system r-build-system)
3788 (home-page "https://cran.r-project.org/web/packages/truncnorm/")
3789 (synopsis "Truncated normal distribution")
3790 (description "This package provides functions for the truncated normal
3791 distribution with mean equal to @code{mean} and standard deviation equal to
3792 @code{sd}. It includes density, distribution, quantile, and expected value
3793 functions, as well as a random generation function.")
3794 (license license:gpl2)))
3795
3796 (define-public r-rsolnp
3797 (package
3798 (name "r-rsolnp")
3799 (version "1.16")
3800 (source
3801 (origin
3802 (method url-fetch)
3803 (uri (cran-uri "Rsolnp" version))
3804 (sha256
3805 (base32
3806 "0w7nkj6igr0gi7r7jg950lsx7dj6aipgxi6vbjsf5f5yc9h7fhii"))))
3807 (properties `((upstream-name . "Rsolnp")))
3808 (build-system r-build-system)
3809 (propagated-inputs
3810 `(("r-truncnorm" ,r-truncnorm)))
3811 (home-page "https://cran.r-project.org/web/packages/Rsolnp/")
3812 (synopsis "General non-linear optimization")
3813 (description "The Rsolnp package implements a general non-linear augmented
3814 Lagrange multiplier method solver, a @dfn{sequential quadratic
3815 programming} (SQP) based solver).")
3816 ;; Any version of the GPL.
3817 (license license:gpl2+)))
3818
3819 (define-public r-hardyweinberg
3820 (package
3821 (name "r-hardyweinberg")
3822 (version "1.6.6")
3823 (source
3824 (origin
3825 (method url-fetch)
3826 (uri (cran-uri "HardyWeinberg" version))
3827 (sha256
3828 (base32
3829 "1qn1bbzfk4w3mqrzisshw5xx7x249sgmj6qdi39lkqb58a4mf4kh"))))
3830 (properties `((upstream-name . "HardyWeinberg")))
3831 (build-system r-build-system)
3832 (propagated-inputs
3833 `(("r-mice" ,r-mice)
3834 ("r-rcpp" ,r-rcpp)
3835 ("r-rsolnp" ,r-rsolnp)))
3836 (home-page "https://cran.r-project.org/package=HardyWeinberg")
3837 (synopsis "Statistical tests and graphics for Hardy-Weinberg equilibrium")
3838 (description
3839 "This package contains tools for exploring Hardy-Weinberg equilibrium for
3840 diallelic genetic marker data. All classical tests (chi-square, exact,
3841 likelihood-ratio and permutation tests) for Hardy-Weinberg equilibrium are
3842 included in the package, as well as functions for power computation and for
3843 the simulation of marker data under equilibrium and disequilibrium. Routines
3844 for dealing with markers on the X-chromosome are included. Functions for
3845 testing equilibrium in the presence of missing data by using multiple
3846 imputation are also provided. Implements several graphics for exploring the
3847 equilibrium status of a large set of diallelic markers: ternary plots with
3848 acceptance regions, log-ratio plots and Q-Q plots.")
3849 (license license:gpl2+)))
3850
3851 (define-public r-sm
3852 (package
3853 (name "r-sm")
3854 (version "2.2-5.6")
3855 (source
3856 (origin
3857 (method url-fetch)
3858 (uri (cran-uri "sm" version))
3859 (sha256
3860 (base32
3861 "0c4whcx879gb4lwvqnzxl5n9xgpcqh2c54ip9ami3mwfprzcv45q"))))
3862 (build-system r-build-system)
3863 (native-inputs `(("gfortran" ,gfortran)))
3864 (home-page "http://www.stats.gla.ac.uk/~adrian/sm/")
3865 (synopsis "Smoothing methods for nonparametric regression and density estimation")
3866 (description
3867 "This is software accompanying the book 'Applied Smoothing Techniques for
3868 Data Analysis---The Kernel Approach with S-Plus Illustrations', Oxford
3869 University Press. It provides smoothing methods for nonparametric regression
3870 and density estimation")
3871 (license license:gpl2+)))
3872
3873 (define-public r-venndiagram
3874 (package
3875 (name "r-venndiagram")
3876 (version "1.6.20")
3877 (source (origin
3878 (method url-fetch)
3879 (uri (cran-uri "VennDiagram" version))
3880 (sha256
3881 (base32
3882 "1ic1jaxzw98si2p4n1fl4n3myhd7fpw0njb634cwhviwybzv6775"))))
3883 (properties `((upstream-name . "VennDiagram")))
3884 (build-system r-build-system)
3885 (propagated-inputs
3886 `(("r-futile-logger" ,r-futile-logger)))
3887 (home-page "https://cran.r-project.org/web/packages/VennDiagram/")
3888 (synopsis "Generate High-Resolution Venn and Euler Plots")
3889 (description
3890 "This package provides a set of functions to generate high-resolution
3891 Venn and Euler plots. It includes handling for several special cases,
3892 including two-case scaling, and extensive customization of plot shape and
3893 structure.")
3894 (license license:gpl2+)))
3895
3896 (define-public r-vioplot
3897 (package
3898 (name "r-vioplot")
3899 (version "0.3.5")
3900 (source
3901 (origin
3902 (method url-fetch)
3903 (uri (cran-uri "vioplot" version))
3904 (sha256
3905 (base32
3906 "0aiy615kn9lpr2cs757g3pklg81n01yhqh0wrwv111fn3cy86r0v"))))
3907 (build-system r-build-system)
3908 (propagated-inputs
3909 `(("r-sm" ,r-sm)
3910 ("r-zoo" ,r-zoo)))
3911 (native-inputs
3912 `(("r-knitr" ,r-knitr)))
3913 (home-page "http://wsopuppenkiste.wiso.uni-goettingen.de/~dadler")
3914 (synopsis "Violin plot")
3915 (description
3916 "This package provides a violin plot, which is a combination of a box
3917 plot and a kernel density plot.")
3918 (license license:bsd-3)))
3919
3920 (define-public r-rsofia
3921 (package
3922 (name "r-rsofia")
3923 (version "1.1")
3924 (source (origin
3925 (method url-fetch)
3926 ;; This package has been removed from CRAN, so we can
3927 ;; only fetch it from the archives.
3928 (uri (string-append "https://cran.r-project.org/src/"
3929 "contrib/Archive/RSofia/RSofia_"
3930 version ".tar.gz"))
3931 (sha256
3932 (base32
3933 "0q931y9rcf6slb0s2lsxhgqrzy4yqwh8hb1124nxg0bjbxvjbihn"))))
3934 (properties `((upstream-name . "RSofia")))
3935 (build-system r-build-system)
3936 (propagated-inputs
3937 `(("r-rcpp" ,r-rcpp)))
3938 (home-page "https://cran.r-project.org/src/contrib/Archive/RSofia")
3939 (synopsis "Port of sofia-ml to R")
3940 (description "This package is a port of sofia-ml to R. Sofia-ml is a
3941 suite of fast incremental algorithms for machine learning that can be used for
3942 training models for classification or ranking.")
3943 (license license:asl2.0)))
3944
3945 (define-public r-xts
3946 (package
3947 (name "r-xts")
3948 (version "0.12-0")
3949 (source
3950 (origin
3951 (method url-fetch)
3952 (uri (cran-uri "xts" version))
3953 (sha256
3954 (base32
3955 "0q4cc8ynp7ndmgll1jj3lxyl6wmgg89ad3wq09kjc2ngszdfc4fz"))))
3956 (build-system r-build-system)
3957 (propagated-inputs `(("r-zoo" ,r-zoo)))
3958 (home-page "https://github.com/joshuaulrich/xts")
3959 (synopsis "Extensible time series")
3960 (description
3961 "This package provides for uniform handling of R's different time-based
3962 data classes by extending @code{zoo}, maximizing native format information
3963 preservation and allowing for user-level customization and extension, while
3964 simplifying cross-class interoperability.")
3965 (license license:gpl2+)))
3966
3967 (define-public r-performanceanalytics
3968 (package
3969 (name "r-performanceanalytics")
3970 (version "2.0.4")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (cran-uri "PerformanceAnalytics" version))
3975 (sha256
3976 (base32
3977 "0ci26hsj4wnw9g0mh4vrn0cg986cpcpx169rvw6v6rbnjxq718bq"))))
3978 (properties
3979 `((upstream-name . "PerformanceAnalytics")))
3980 (build-system r-build-system)
3981 (propagated-inputs
3982 `(("r-quadprog" ,r-quadprog)
3983 ("r-xts" ,r-xts)
3984 ("r-zoo" ,r-zoo)))
3985 (home-page "https://r-forge.r-project.org/projects/returnanalytics/")
3986 (synopsis "Econometric tools for performance and risk analysis")
3987 (description "This is a collection of econometric functions for
3988 performance and risk analysis. This package aims to aid practitioners and
3989 researchers in utilizing the latest research in analysis of non-normal return
3990 streams. In general, it is most tested on return (rather than price) data on
3991 a regular scale, but most functions will work with irregular return data as
3992 well, and increasing numbers of functions will work with P&L or price data
3993 where possible.")
3994 ;; Either version may be picked.
3995 (license (list license:gpl2 license:gpl3))))
3996
3997 (define-public r-laeken
3998 (package
3999 (name "r-laeken")
4000 (version "0.5.1")
4001 (source
4002 (origin
4003 (method url-fetch)
4004 (uri (cran-uri "laeken" version))
4005 (sha256
4006 (base32
4007 "199rjkhjjygpr6cjzab87as46acb5npi44m4yycvk7lnd0blma8s"))))
4008 (build-system r-build-system)
4009 (propagated-inputs
4010 `(("r-boot" ,r-boot)
4011 ("r-mass" ,r-mass)))
4012 (home-page "https://cran.r-project.org/web/packages/laeken/")
4013 (synopsis "Estimation of indicators on social exclusion and poverty")
4014 (description "This package provides tools for the estimation of indicators
4015 on social exclusion and poverty, as well as an implementation of Pareto tail
4016 modeling for empirical income distributions.")
4017 (license license:gpl2+)))
4018
4019 (define-public r-vcd
4020 (package
4021 (name "r-vcd")
4022 (version "1.4-7")
4023 (source
4024 (origin
4025 (method url-fetch)
4026 (uri (cran-uri "vcd" version))
4027 (sha256
4028 (base32
4029 "16aj688nhlcvdxzfsqh4s375v8f8vl8997dl8h1xg29b42nv52gc"))))
4030 (build-system r-build-system)
4031 (propagated-inputs
4032 `(("r-colorspace" ,r-colorspace)
4033 ("r-lmtest" ,r-lmtest)
4034 ("r-mass" ,r-mass)))
4035 (home-page "https://cran.r-project.org/web/packages/vcd/")
4036 (synopsis "Visualizing categorical data")
4037 (description "This package provides visualization techniques, data sets,
4038 summary and inference procedures aimed particularly at categorical data.
4039 Special emphasis is given to highly extensible grid graphics. The package was
4040 originally inspired by the book \"Visualizing Categorical Data\" by Michael
4041 Friendly and is now the main support package for a new book, \"Discrete Data
4042 Analysis with R\" by Michael Friendly and David Meyer (2015).")
4043 (license license:gpl2)))
4044
4045 (define-public r-ica
4046 (package
4047 (name "r-ica")
4048 (version "1.0-2")
4049 (source
4050 (origin
4051 (method url-fetch)
4052 (uri (cran-uri "ica" version))
4053 (sha256
4054 (base32
4055 "0ya1nph1zwhad0bfz4yxs27kl45yk1dhnphdlrq34p8pqrpmj8g7"))))
4056 (build-system r-build-system)
4057 (home-page "https://cran.r-project.org/web/packages/ica/")
4058 (synopsis "Independent component analysis")
4059 (description "This package provides tools for @dfn{Independent Component
4060 Analysis} (ICA) using various algorithms: FastICA,
4061 Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization
4062 of Eigenmatrices} (JADE).")
4063 (license license:gpl2+)))
4064
4065 (define-public r-dtw
4066 (package
4067 (name "r-dtw")
4068 (version "1.21-3")
4069 (source
4070 (origin
4071 (method url-fetch)
4072 (uri (cran-uri "dtw" version))
4073 (sha256
4074 (base32
4075 "02hyhx1sy5h3vzh9zixy18a7d47df4k5d0wyflcvlcbsbcl6p90s"))))
4076 (build-system r-build-system)
4077 (propagated-inputs `(("r-proxy" ,r-proxy)))
4078 (home-page "http://dtw.r-forge.r-project.org/")
4079 (synopsis "Dynamic Time Warping Algorithms")
4080 (description "This package provides a comprehensive implementation of
4081 @dfn{dynamic time warping} (DTW) algorithms in R. DTW computes the
4082 optimal (least cumulative distance) alignment between points of two time
4083 series. Common DTW variants covered include local (slope) and global (window)
4084 constraints, subsequence matches, arbitrary distance definitions,
4085 normalizations, minimum variance matching, and so on.")
4086 (license license:gpl2+)))
4087
4088 (define-public r-sdmtools
4089 (package
4090 (name "r-sdmtools")
4091 (version "1.1-221.2")
4092 (source
4093 (origin
4094 (method url-fetch)
4095 (uri (cran-uri "SDMTools" version))
4096 (sha256
4097 (base32
4098 "1xvcd97ikqsfdpk2fddy3k0z1ajqga7nv9bgac9c1wnjk1gqrpgh"))))
4099 (properties `((upstream-name . "SDMTools")))
4100 (build-system r-build-system)
4101 (propagated-inputs `(("r-r-utils" ,r-r-utils)))
4102 (home-page "https://www.rforge.net/SDMTools/")
4103 (synopsis "Species distribution modelling tools")
4104 (description "This package provides a set of tools for post processing
4105 the outcomes of species distribution modeling exercises. It includes novel
4106 methods for comparing models and tracking changes in distributions through
4107 time. It further includes methods for visualizing outcomes, selecting
4108 thresholds, calculating measures of accuracy and landscape fragmentation
4109 statistics, etc.")
4110 (license license:gpl3+)))
4111
4112 (define-public r-scatterplot3d
4113 (package
4114 (name "r-scatterplot3d")
4115 (version "0.3-41")
4116 (source
4117 (origin
4118 (method url-fetch)
4119 (uri (cran-uri "scatterplot3d" version))
4120 (sha256
4121 (base32
4122 "152xqz9c70qab86mpgng049gxsg5f4fpf1m8dh93fb9v1avjd0sc"))))
4123 (build-system r-build-system)
4124 (home-page "https://cran.r-project.org/web/packages/scatterplot3d/")
4125 (synopsis "3D scatter plot")
4126 (description "This package provides an implementation of scatter plots for
4127 plotting. a three dimensional point cloud.")
4128 (license license:gpl2)))
4129
4130 (define-public r-ggridges
4131 (package
4132 (name "r-ggridges")
4133 (version "0.5.2")
4134 (source
4135 (origin
4136 (method url-fetch)
4137 (uri (cran-uri "ggridges" version))
4138 (sha256
4139 (base32
4140 "03pz257aw0mkh5k75rby9givkc1ky3n5scvhjhjiz9vry9fpffmh"))))
4141 (build-system r-build-system)
4142 (propagated-inputs
4143 `(("r-ggplot2" ,r-ggplot2)
4144 ("r-plyr" ,r-plyr)
4145 ("r-scales" ,r-scales)
4146 ("r-withr" ,r-withr)))
4147 (home-page "https://github.com/clauswilke/ggridges")
4148 (synopsis "Ridgeline plots in ggplot2")
4149 (description
4150 "Ridgeline plots provide a convenient way of visualizing changes in
4151 distributions over time or space. This package enables the creation of such
4152 plots in @code{ggplot2}.")
4153 (license license:gpl2)))
4154
4155 (define-public r-ggjoy
4156 (package
4157 (name "r-ggjoy")
4158 (version "0.4.1")
4159 (source
4160 (origin
4161 (method url-fetch)
4162 (uri (cran-uri "ggjoy" version))
4163 (sha256
4164 (base32
4165 "012md2m0jqfcccb933j423m3ck31v3p0pd41gjxpyg9082y7ixyj"))))
4166 (build-system r-build-system)
4167 (propagated-inputs
4168 `(("r-ggplot2" ,r-ggplot2)
4169 ("r-ggridges" ,r-ggridges)))
4170 (home-page "https://github.com/clauswilke/ggjoy")
4171 (synopsis "Joyplots in ggplot2")
4172 (description "Joyplots provide a convenient way of visualizing changes in
4173 distributions over time or space. This package enables the creation of such
4174 plots in @code{ggplot2}.")
4175 (license license:gpl2)))
4176
4177 (define-public r-cli
4178 (package
4179 (name "r-cli")
4180 (version "2.0.2")
4181 (source
4182 (origin
4183 (method url-fetch)
4184 (uri (cran-uri "cli" version))
4185 (sha256
4186 (base32
4187 "1dhkah6jvr96k4h4agcc2rfls75bpjb0j58fzaz3dc0fp3jk8229"))))
4188 (build-system r-build-system)
4189 (propagated-inputs
4190 `(("r-assertthat" ,r-assertthat)
4191 ("r-crayon" ,r-crayon)
4192 ("r-fansi" ,r-fansi)
4193 ("r-glue" ,r-glue)))
4194 (home-page "https://github.com/r-lib/cli#readme")
4195 (synopsis "Helpers for developing command line interfaces")
4196 (description "This package provides a suite of tools designed to build
4197 attractive command line interfaces (CLIs). It includes tools for drawing
4198 rules, boxes, trees, and Unicode symbols with ASCII alternatives.")
4199 (license license:expat)))
4200
4201 (define-public r-argparser
4202 (package
4203 (name "r-argparser")
4204 (version "0.6")
4205 (source
4206 (origin
4207 (method url-fetch)
4208 (uri (cran-uri "argparser" version))
4209 (sha256
4210 (base32
4211 "1pxiz9jlhlnpzqn1lz349r07i7glw708w202x6dlnxp112fg7k4x"))))
4212 (build-system r-build-system)
4213 (home-page "https://bitbucket.org/djhshih/argparser")
4214 (synopsis "Command-line argument parser")
4215 (description
4216 "This package provides a cross-platform command-line argument parser
4217 written purely in R with no external dependencies. It is useful with the
4218 Rscript front-end and facilitates turning an R script into an executable
4219 script.")
4220 (license license:gpl3+)))
4221
4222 (define-public r-debugme
4223 (package
4224 (name "r-debugme")
4225 (version "1.1.0")
4226 (source
4227 (origin
4228 (method url-fetch)
4229 (uri (cran-uri "debugme" version))
4230 (sha256
4231 (base32
4232 "1c9sg55zvf10h8198jdnpamm6f66lzw3c3jnmdp9ls6na0j0xbjd"))))
4233 (build-system r-build-system)
4234 (propagated-inputs `(("r-crayon" ,r-crayon)))
4235 (home-page "https://github.com/r-lib/debugme#readme")
4236 (synopsis "Debug R packages")
4237 (description
4238 "This package allows the user to specify debug messages as special string
4239 constants, and control debugging of packages via environment variables.")
4240 (license license:expat)))
4241
4242 (define-public r-processx
4243 (package
4244 (name "r-processx")
4245 (version "3.4.3")
4246 (source
4247 (origin
4248 (method url-fetch)
4249 (uri (cran-uri "processx" version))
4250 (sha256
4251 (base32 "07dhzijqnj2zkm3qrk4ppsv8wscn8ysdsjbidlg9zrbj1wcg4izj"))))
4252 (build-system r-build-system)
4253 (propagated-inputs
4254 `(("r-ps" ,r-ps)
4255 ("r-r6" ,r-r6)))
4256 (home-page "https://github.com/r-lib/processx3")
4257 (synopsis "Execute and control system processes")
4258 (description
4259 "This package provides portable tools to run system processes in the
4260 background. It can check if a background process is running; wait on a
4261 background process to finish; get the exit status of finished processes; kill
4262 background processes and their children; restart processes. It can read the
4263 standard output and error of the processes, using non-blocking connections.
4264 @code{processx} can poll a process for standard output or error, with a
4265 timeout. It can also poll several processes at once.")
4266 (license license:expat)))
4267
4268 (define-public r-tsp
4269 (package
4270 (name "r-tsp")
4271 (version "1.1-10")
4272 (source
4273 (origin
4274 (method url-fetch)
4275 (uri (cran-uri "TSP" version))
4276 (sha256
4277 (base32
4278 "0z1v6m0vqjzxc4az3zyjaayygx0jr3mdmc56jjd421iqh0b9z5s4"))))
4279 (properties `((upstream-name . "TSP")))
4280 (build-system r-build-system)
4281 (propagated-inputs `(("r-foreach" ,r-foreach)))
4282 (home-page "https://cran.r-project.org/web/packages/TSP/")
4283 (synopsis "Traveling salesperson problem (TSP)")
4284 (description "This package provides basic infrastructure and some
4285 algorithms for the @dfn{traveling salesperson problem}(TSP) (also known as the
4286 traveling salesman problem).")
4287 (license license:gpl3)))
4288
4289 (define-public r-qap
4290 (package
4291 (name "r-qap")
4292 (version "0.1-1")
4293 (source
4294 (origin
4295 (method url-fetch)
4296 (uri (cran-uri "qap" version))
4297 (sha256
4298 (base32
4299 "0d2d1ni1camixyi45lfy00f4pn3p063k7bsi8gj5scp6n15mdgb0"))))
4300 (build-system r-build-system)
4301 (native-inputs `(("gfortran" ,gfortran)))
4302 (home-page "https://cran.r-project.org/web/packages/qap/")
4303 (synopsis "Heuristics for the quadratic assignment problem (QAP)")
4304 (description "This package implements heuristics for the @dfn{quadratic
4305 assignment problem} (QAP). Currently only a simulated annealing heuristic is
4306 available.")
4307 (license license:gpl3)))
4308
4309 (define-public r-gclus
4310 (package
4311 (name "r-gclus")
4312 (version "1.3.2")
4313 (source
4314 (origin
4315 (method url-fetch)
4316 (uri (cran-uri "gclus" version))
4317 (sha256
4318 (base32
4319 "1cz0g0i972955hhaji30rx8448x7f3as7z1sww9i5h86ybgirilw"))))
4320 (build-system r-build-system)
4321 (propagated-inputs `(("r-cluster" ,r-cluster)))
4322 (home-page "https://cran.r-project.org/web/packages/gclus/")
4323 (synopsis "Clustering graphics")
4324 (description "This package orders panels in scatterplot matrices and
4325 parallel coordinate displays by some merit index. It contains various indices
4326 of merit, ordering functions, and enhanced versions of @code{pairs} and
4327 @code{parcoord} which color panels according to their merit level.")
4328 (license license:gpl2+)))
4329
4330 (define-public r-webshot
4331 (package
4332 (name "r-webshot")
4333 (version "0.5.2")
4334 (source
4335 (origin
4336 (method url-fetch)
4337 (uri (cran-uri "webshot" version))
4338 (sha256
4339 (base32
4340 "0gq4h8cw51z95yvsnf38kj5l58wgljkm0dalmi8mn1sp06bxr0zi"))))
4341 (build-system r-build-system)
4342 (propagated-inputs
4343 `(("r-callr" ,r-callr)
4344 ("r-jsonlite" ,r-jsonlite)
4345 ("r-magrittr" ,r-magrittr)))
4346 (home-page "https://github.com/wch/webshot/")
4347 (synopsis "Take screenshots of web pages")
4348 (description
4349 "Webshot makes it easy to take screenshots of web pages from within R.
4350 It can also run Shiny applications locally and take screenshots of the
4351 application; and it can render and screenshot static as well as interactive R
4352 Markdown documents.")
4353 (license license:gpl2)))
4354
4355 (define-public r-seriation
4356 (package
4357 (name "r-seriation")
4358 (version "1.2-8")
4359 (source
4360 (origin
4361 (method url-fetch)
4362 (uri (cran-uri "seriation" version))
4363 (sha256
4364 (base32
4365 "1zbdxq0s5rc5v307b69fw9k52m0654ls7pf22lh35ggirig6lwsk"))))
4366 (build-system r-build-system)
4367 (propagated-inputs
4368 `(("r-cluster" ,r-cluster)
4369 ("r-colorspace" ,r-colorspace)
4370 ("r-dendextend" ,r-dendextend)
4371 ("r-gclus" ,r-gclus)
4372 ("r-gplots" ,r-gplots)
4373 ("r-mass" ,r-mass)
4374 ("r-qap" ,r-qap)
4375 ("r-registry" ,r-registry)
4376 ("r-tsp" ,r-tsp)))
4377 (native-inputs `(("gfortran" ,gfortran)))
4378 (home-page "https://s2.smu.edu/IDA/seriation/")
4379 (synopsis "Infrastructure for ordering objects using seriation")
4380 (description
4381 "This package provides infrastructure for seriation with an
4382 implementation of several seriation/sequencing techniques to reorder matrices,
4383 dissimilarity matrices, and dendrograms. It also provides (optimally)
4384 reordered heatmaps, color images and clustering visualizations like
4385 dissimilarity plots, and visual assessment of cluster tendency plots (VAT and
4386 iVAT).")
4387 (license license:gpl3)))
4388
4389 (define-public r-xfun
4390 (package
4391 (name "r-xfun")
4392 (version "0.16")
4393 (source
4394 (origin
4395 (method url-fetch)
4396 (uri (cran-uri "xfun" version))
4397 (sha256
4398 (base32 "1x7b71xhbl44fyccz69l24nbgyxawm2km90s4h1l3zr5z2vly0sg"))))
4399 (build-system r-build-system)
4400 ;; knitr itself depends on xfun
4401 #;
4402 (native-inputs
4403 `(("r-knitr" ,r-knitr)))
4404 (home-page "https://github.com/yihui/xfun")
4405 (synopsis "Miscellaneous functions")
4406 (description
4407 "This package provides miscellaneous functions commonly used in other
4408 packages maintained by Yihui Xie.")
4409 (license license:expat)))
4410
4411 (define-public r-utf8
4412 (package
4413 (name "r-utf8")
4414 (version "1.1.4")
4415 (source
4416 (origin
4417 (method url-fetch)
4418 (uri (cran-uri "utf8" version))
4419 (sha256
4420 (base32
4421 "0m0ywg8k3blfiahxvh1i4zn9dksrlc937d2lbza5fc38zjnrrnpn"))))
4422 (build-system r-build-system)
4423 (home-page "https://github.com/patperry/r-utf8")
4424 (synopsis "Unicode text processing")
4425 (description
4426 "This package provides tools to process and print UTF-8 encoded
4427 international text (Unicode). Input, validate, normalize, encode, format, and
4428 display.")
4429 (license license:asl2.0)))
4430
4431 (define-public r-zeallot
4432 (package
4433 (name "r-zeallot")
4434 (version "0.1.0")
4435 (source
4436 (origin
4437 (method url-fetch)
4438 (uri (cran-uri "zeallot" version))
4439 (sha256
4440 (base32
4441 "1sd1igcfnv27pa3bqxlbyxchi562h7grnjg1l7wxx3bwr49i57s3"))))
4442 (build-system r-build-system)
4443 (home-page "https://github.com/nteetor/zeallot")
4444 (synopsis "Multiple, unpacking, and destructuring assignment")
4445 (description
4446 "This package provides a @code{%<-%} operator to perform multiple,
4447 unpacking, and destructuring assignment in R. The operator unpacks the
4448 right-hand side of an assignment into multiple values and assigns these values
4449 to variables on the left-hand side of the assignment.")
4450 (license license:expat)))
4451
4452 (define-public r-vctrs
4453 (package
4454 (name "r-vctrs")
4455 (version "0.3.2")
4456 (source
4457 (origin
4458 (method url-fetch)
4459 (uri (cran-uri "vctrs" version))
4460 (sha256
4461 (base32
4462 "05s8v3ms4jaim44c7m4y0dnv8mysj9b26cdfyrfgcjpllayrjib2"))))
4463 (build-system r-build-system)
4464 (propagated-inputs
4465 `(("r-digest" ,r-digest)
4466 ("r-ellipsis" ,r-ellipsis)
4467 ("r-glue" ,r-glue)
4468 ("r-rlang" ,r-rlang)))
4469 (native-inputs
4470 `(("r-knitr" ,r-knitr)))
4471 (home-page "https://github.com/r-lib/vctrs")
4472 (synopsis "Vector helpers")
4473 (description
4474 "There are three main goals to the @code{vctrs} package:
4475
4476 @enumerate
4477 @item To propose @code{vec_size()} and @code{vec_type()} as alternatives to
4478 @code{length()} and @code{class()}. These definitions are paired with a
4479 framework for type-coercion and size-recycling.
4480 @item To define type- and size-stability as desirable function properties, use
4481 them to analyse existing base function, and to propose better alternatives.
4482 This work has been particularly motivated by thinking about the ideal
4483 properties of @code{c()}, @code{ifelse()}, and @code{rbind()}.
4484 @item To provide a new @code{vctr} base class that makes it easy to create new
4485 S3 vectors. @code{vctrs} provides methods for many base generics in terms of
4486 a few new @code{vctrs} generics, making implementation considerably simpler
4487 and more robust.
4488 @end enumerate\n")
4489 (license license:gpl3)))
4490
4491 (define-public r-pillar
4492 (package
4493 (name "r-pillar")
4494 (version "1.4.6")
4495 (source
4496 (origin
4497 (method url-fetch)
4498 (uri (cran-uri "pillar" version))
4499 (sha256
4500 (base32
4501 "01ck8ziqzjc9ibbj3g88siz1iw263dgl8jx6ryw2v50rjrr3y7fj"))))
4502 (build-system r-build-system)
4503 (propagated-inputs
4504 `(("r-cli" ,r-cli)
4505 ("r-crayon" ,r-crayon)
4506 ("r-ellipsis" ,r-ellipsis)
4507 ("r-fansi" ,r-fansi)
4508 ("r-lifecycle" ,r-lifecycle)
4509 ("r-rlang" ,r-rlang)
4510 ("r-utf8" ,r-utf8)
4511 ("r-vctrs" ,r-vctrs)))
4512 (home-page "https://github.com/r-lib/pillar")
4513 (synopsis "Coloured formatting for columns")
4514 (description
4515 "This package provides a @code{pillar} generic designed for formatting
4516 columns of data using the full range of colours provided by modern
4517 terminals.")
4518 (license license:gpl3)))
4519
4520 (define-public r-uuid
4521 (package
4522 (name "r-uuid")
4523 (version "0.1-4")
4524 (source
4525 (origin
4526 (method url-fetch)
4527 (uri (cran-uri "uuid" version))
4528 (sha256
4529 (base32
4530 "0gm9ii7ncvllxbvyk6srsiinjmqyj7lmh84w43x4nhqpvafj9q4q"))))
4531 (build-system r-build-system)
4532 (home-page "https://www.rforge.net/uuid")
4533 (synopsis "Tools for generating and handling of UUIDs")
4534 (description
4535 "This package provides tools for generating and handling of
4536 @dfn{Universally Unique Identifiers} (UUIDs).")
4537 (license license:expat)))
4538
4539 (define-public r-tinytex
4540 (package
4541 (name "r-tinytex")
4542 (version "0.25")
4543 (source
4544 (origin
4545 (method url-fetch)
4546 (uri (cran-uri "tinytex" version))
4547 (sha256
4548 (base32
4549 "0zbhzxxjlkdj9byxyab477p7cnws5y87nyg989lkzarxdc7dglza"))))
4550 (build-system r-build-system)
4551 (propagated-inputs
4552 `(("r-xfun" ,r-xfun)))
4553 (home-page "https://github.com/yihui/tinytex")
4554 (synopsis "Helper functions for TeX Live and compiling LaTeX documents")
4555 (description
4556 "This package provides helper functions to install and maintain the LaTeX
4557 distribution named TinyTeX, a lightweight, cross-platform, portable, and
4558 easy-to-maintain version of TeX Live. This package also contains helper
4559 functions to compile LaTeX documents, and install missing LaTeX packages
4560 automatically.")
4561 (license license:expat)))
4562
4563 (define-public r-network
4564 (package
4565 (name "r-network")
4566 (version "1.16.0")
4567 (source
4568 (origin
4569 (method url-fetch)
4570 (uri (cran-uri "network" version))
4571 (sha256
4572 (base32
4573 "0dnf1wl3za2lhx2lwd8smhlijl1cfhckgr8zz9piiirrfi2m2kx2"))))
4574 (build-system r-build-system)
4575 (propagated-inputs
4576 `(("r-magrittr" ,r-magrittr)
4577 ("r-tibble" ,r-tibble)))
4578 (home-page "https://statnet.org/")
4579 (synopsis "Classes for relational data")
4580 (description
4581 "This package provides tools to create and modify network objects. The
4582 @code{network} class can represent a range of relational data types, and
4583 supports arbitrary vertex/edge/graph attributes.")
4584 (license license:gpl2+)))
4585
4586 (define-public r-statnet-common
4587 (package
4588 (name "r-statnet-common")
4589 (version "4.3.0")
4590 (source
4591 (origin
4592 (method url-fetch)
4593 (uri (cran-uri "statnet.common" version))
4594 (sha256
4595 (base32
4596 "0ng90i0wm9wlyhjbnmnylc1bbqw396p1dr7f402dyry9x9ck6jl3"))))
4597 (properties
4598 `((upstream-name . "statnet.common")))
4599 (build-system r-build-system)
4600 (propagated-inputs
4601 `(("r-coda" ,r-coda)))
4602 (home-page "https://statnet.org")
4603 (synopsis "R scripts and utilities used by the Statnet software")
4604 (description "This package provides non-statistical utilities used by the
4605 software developed by the Statnet Project.")
4606 (license license:gpl3)))
4607
4608 (define-public r-statcheck
4609 (package
4610 (name "r-statcheck")
4611 (version "1.3.0")
4612 (source
4613 (origin
4614 (method url-fetch)
4615 (uri (cran-uri "statcheck" version))
4616 (sha256
4617 (base32
4618 "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
4619 (build-system r-build-system)
4620 (propagated-inputs
4621 `(("r-ggplot2" ,r-ggplot2)
4622 ("r-plyr" ,r-plyr)
4623 ("r-rmarkdown" ,r-rmarkdown)))
4624 (home-page "https://cran.r-project.org/web/packages/statcheck/")
4625 (synopsis "Extract statistics from articles and recompute p-values")
4626 (description "This package can automatically extract statistical
4627 null-hypothesis significant testing (NHST) results from articles and recompute
4628 the p-values based on the reported test statistic and degrees of freedom to
4629 detect possible inconsistencies.")
4630 (license license:gpl2)))
4631
4632 (define-public r-sna
4633 (package
4634 (name "r-sna")
4635 (version "2.5")
4636 (source
4637 (origin
4638 (method url-fetch)
4639 (uri (cran-uri "sna" version))
4640 (sha256
4641 (base32
4642 "1j3i6300m686qqfmyvadim377cd3mplzgj6mandygw8brg50id8k"))))
4643 (build-system r-build-system)
4644 (propagated-inputs
4645 `(("r-network" ,r-network)
4646 ("r-statnet-common" ,r-statnet-common)))
4647 (home-page "https://statnet.org")
4648 (synopsis "Tools for social network analysis")
4649 (description
4650 "This package provides a range of tools for social network analysis,
4651 including node and graph-level indices, structural distance and covariance
4652 methods, structural equivalence detection, network regression, random graph
4653 generation, and 2D/3D network visualization.")
4654 (license license:gpl2+)))
4655
4656 (define-public r-tfisher
4657 (package
4658 (name "r-tfisher")
4659 (version "0.2.0")
4660 (source
4661 (origin
4662 (method url-fetch)
4663 (uri (cran-uri "TFisher" version))
4664 (sha256
4665 (base32
4666 "0vz74ww1lf1prfwz74hfsi3a8nzq8ss7aqjr85c1d87vss2796xx"))))
4667 (properties `((upstream-name . "TFisher")))
4668 (build-system r-build-system)
4669 (propagated-inputs
4670 `(("r-matrix" ,r-matrix)
4671 ("r-mvtnorm" ,r-mvtnorm)
4672 ("r-sn" ,r-sn)))
4673 (home-page "https://cran.r-project.org/web/packages/TFisher/")
4674 (synopsis "Optimal thresholding Fisher's p-value combination method")
4675 (description
4676 "This package provides the @dfn{cumulative distribution function} (CDF),
4677 quantile, and statistical power calculator for a collection of thresholding
4678 Fisher's p-value combination methods, including Fisher's p-value combination
4679 method, truncated product method and, in particular, soft-thresholding
4680 Fisher's p-value combination method which is proven to be optimal in some
4681 context of signal detection. The p-value calculator for the omnibus version
4682 of these tests are also included.")
4683 (license license:gpl2)))
4684
4685 (define-public r-ttr
4686 (package
4687 (name "r-ttr")
4688 (version "0.24.0")
4689 (source
4690 (origin
4691 (method url-fetch)
4692 (uri (cran-uri "TTR" version))
4693 (sha256
4694 (base32
4695 "0dcmfr98bxhdhszsdr1yjhvy4kplnfm88fh8sdzrkjank1qsxia2"))))
4696 (properties `((upstream-name . "TTR")))
4697 (build-system r-build-system)
4698 (propagated-inputs
4699 `(("r-curl" ,r-curl)
4700 ("r-xts" ,r-xts)
4701 ("r-zoo" ,r-zoo)))
4702 (home-page "https://github.com/joshuaulrich/TTR")
4703 (synopsis "Technical trading rules")
4704 (description
4705 "This package provides functions and data to construct technical trading
4706 rules with R.")
4707 (license license:gpl2)))
4708
4709 (define-public r-leaps
4710 (package
4711 (name "r-leaps")
4712 (version "3.1")
4713 (source
4714 (origin
4715 (method url-fetch)
4716 (uri (cran-uri "leaps" version))
4717 (sha256
4718 (base32
4719 "1dn3yl1p03n0iynd1vsdkrr0fhmvgrmfkv37y7n371765h83lz1x"))))
4720 (build-system r-build-system)
4721 (native-inputs `(("gfortran" ,gfortran)))
4722 (home-page "https://cran.r-project.org/web/packages/leaps/")
4723 (synopsis "Regression subset selection")
4724 (description
4725 "This package provides tools for regression subset selection, including
4726 exhaustive search.")
4727 (license license:gpl2+)))
4728
4729 (define-public r-splus2r
4730 (package
4731 (name "r-splus2r")
4732 (version "1.2-2")
4733 (source
4734 (origin
4735 (method url-fetch)
4736 (uri (cran-uri "splus2R" version))
4737 (sha256
4738 (base32
4739 "0xrbj8vxy0pc6hl7m8abv71d3hjw47cl51s7j7priadyqczkq6sz"))))
4740 (properties `((upstream-name . "splus2R")))
4741 (build-system r-build-system)
4742 (native-inputs `(("gfortran" ,gfortran)))
4743 (home-page "https://cran.r-project.org/web/packages/splus2R/")
4744 (synopsis "Supplemental S-PLUS functionality in R")
4745 (description
4746 "Currently there are many functions in S-PLUS that are missing in R. To
4747 facilitate the conversion of S-PLUS packages to R packages, this package
4748 provides some missing S-PLUS functionality in R.")
4749 (license license:gpl2)))
4750
4751 (define-public r-ifultools
4752 (package
4753 (name "r-ifultools")
4754 (version "2.0-5")
4755 (source
4756 (origin
4757 (method url-fetch)
4758 (uri (cran-uri "ifultools" version))
4759 (sha256
4760 (base32
4761 "040kvbczcmmbaiaz0k0pdq9af541pjj6iwzh1a3w4szh9w6b5a3j"))))
4762 (build-system r-build-system)
4763 (propagated-inputs
4764 `(("r-mass" ,r-mass)
4765 ("r-splus2r" ,r-splus2r)))
4766 (home-page "https://cran.r-project.org/web/packages/ifultools/")
4767 (synopsis "Insightful research tools")
4768 (description "This package provides C code used by the wmtsa, fractal, and
4769 sapa R packages.")
4770 (license license:gpl2)))
4771
4772 (define-public r-sapa
4773 (package
4774 (name "r-sapa")
4775 (version "2.0-2")
4776 (source
4777 (origin
4778 (method url-fetch)
4779 (uri (cran-uri "sapa" version))
4780 (sha256
4781 (base32
4782 "056xlh14dnzq4x7sbp7ff2k61jxy7110a742b502vz549qfrr5ds"))))
4783 (build-system r-build-system)
4784 (propagated-inputs
4785 `(("r-ifultools" ,r-ifultools)
4786 ("r-splus2r" ,r-splus2r)))
4787 (home-page "https://cran.r-project.org/web/packages/sapa/")
4788 (synopsis "Spectral analysis for physical applications")
4789 (description "This package provides software for the book Spectral
4790 Analysis for Physical Applications, Donald B. Percival and Andrew T. Walden,
4791 Cambridge University Press, 1993.")
4792 (license license:gpl2)))
4793
4794 (define-public r-aggregation
4795 (package
4796 (name "r-aggregation")
4797 (version "1.0.1")
4798 (source
4799 (origin
4800 (method url-fetch)
4801 (uri (cran-uri "aggregation" version))
4802 (sha256
4803 (base32
4804 "0j9g604m2ccc7hcy02539yja9cf3xcbl25gvp838bp4x8w18my46"))))
4805 (build-system r-build-system)
4806 (home-page "https://cran.r-project.org/web/packages/aggregation/")
4807 (synopsis "Methods for p-value aggregation")
4808 (description
4809 "This package contains functionality for performing the following methods
4810 of p-value aggregation: Fisher's method, the Lancaster method (weighted
4811 Fisher's method), and Sidak correction.")
4812 (license license:gpl3)))
4813
4814 (define-public r-quantmod
4815 (package
4816 (name "r-quantmod")
4817 (version "0.4.17")
4818 (source
4819 (origin
4820 (method url-fetch)
4821 (uri (cran-uri "quantmod" version))
4822 (sha256
4823 (base32
4824 "1ss441rwlr88kz212m0wgx0hwgwi41rhy1jncg2lgqzqfvr5dzqa"))))
4825 (build-system r-build-system)
4826 (propagated-inputs
4827 `(("r-curl" ,r-curl)
4828 ("r-ttr" ,r-ttr)
4829 ("r-xts" ,r-xts)
4830 ("r-zoo" ,r-zoo)))
4831 (home-page "https://cran.r-project.org/web/packages/quantmod/")
4832 (synopsis "Quantitative financial modelling framework")
4833 (description "This package provides a quantitative financial modelling
4834 framework to allow users to specify, build, trade, and analyse quantitative
4835 financial trading strategies.")
4836 (license license:gpl3)))
4837
4838 (define-public r-tseries
4839 (package
4840 (name "r-tseries")
4841 (version "0.10-47")
4842 (source
4843 (origin
4844 (method url-fetch)
4845 (uri (cran-uri "tseries" version))
4846 (sha256
4847 (base32
4848 "0yzvc9djp3angvxdxqi60wi726y76ablsb71q88ycvw0avgpf8r0"))))
4849 (build-system r-build-system)
4850 (propagated-inputs
4851 `(("r-quadprog" ,r-quadprog)
4852 ("r-quantmod" ,r-quantmod)
4853 ("r-zoo" ,r-zoo)))
4854 (native-inputs
4855 `(("gfortran" ,gfortran)))
4856 (home-page "https://cran.r-project.org/web/packages/tseries/")
4857 (synopsis "Time series analysis and computational finance")
4858 (description
4859 "This package provides functions relating to time series analysis and
4860 computational finance.")
4861 (license license:gpl2)))
4862
4863 (define-public r-wmtsa
4864 (package
4865 (name "r-wmtsa")
4866 (version "2.0-3")
4867 (source
4868 (origin
4869 (method url-fetch)
4870 (uri (cran-uri "wmtsa" version))
4871 (sha256
4872 (base32
4873 "1q436krz5p1f4a7a7sya6a9rh9x9mi8zzcgq66gbk9w9w4hcqcj6"))))
4874 (build-system r-build-system)
4875 (propagated-inputs
4876 `(("r-ifultools" ,r-ifultools)
4877 ("r-mass" ,r-mass)
4878 ("r-splus2r" ,r-splus2r)))
4879 (home-page "https://cran.r-project.org/web/packages/wmtsa/")
4880 (synopsis "Wavelet methods for time series analysis")
4881 (description
4882 "This package provides software to accompany the book \"Wavelet Methods
4883 for Time Series Analysis\", Donald B. Percival and Andrew T. Walden, Cambridge
4884 University Press, 2000.")
4885 (license license:gpl2)))
4886
4887 (define-public r-tsa
4888 (package
4889 (name "r-tsa")
4890 (version "1.2")
4891 (source
4892 (origin
4893 (method url-fetch)
4894 (uri (cran-uri "TSA" version))
4895 (sha256
4896 (base32
4897 "0gjfqibwdznz0nka95k4fjm935svxjpnqfywwz403crn2lh30h6q"))))
4898 (properties `((upstream-name . "TSA")))
4899 (build-system r-build-system)
4900 (propagated-inputs
4901 `(("r-leaps" ,r-leaps)
4902 ("r-locfit" ,r-locfit)
4903 ("r-mgcv" ,r-mgcv)))
4904 (home-page "https://homepage.divms.uiowa.edu/~kchan/TSA.htm")
4905 (synopsis "Time series analysis")
4906 (description
4907 "This package contains R functions and datasets detailed in the book
4908 \"Time Series Analysis with Applications in R (second edition)\" by Jonathan
4909 Cryer and Kung-Sik Chan.")
4910 (license license:gpl2+)))
4911
4912 (define-public r-extradistr
4913 (package
4914 (name "r-extradistr")
4915 (version "1.8.11")
4916 (source
4917 (origin
4918 (method url-fetch)
4919 (uri (cran-uri "extraDistr" version))
4920 (sha256
4921 (base32
4922 "1vvqv1d4hxa025gmm8cbiph63qsqy87l3ri5idd524gyz3chbcl3"))))
4923 (properties `((upstream-name . "extraDistr")))
4924 (build-system r-build-system)
4925 (propagated-inputs
4926 `(("r-rcpp" ,r-rcpp)))
4927 (home-page "https://github.com/twolodzko/extraDistr")
4928 (synopsis "Additional univariate and multivariate distributions")
4929 (description
4930 "This package implements density, distribution functions, quantile
4931 functions and random generation functions for a large number of univariate and
4932 multivariate distributions.")
4933 (license license:gpl2)))
4934
4935 (define-public r-fractal
4936 (package
4937 (name "r-fractal")
4938 (version "2.0-4")
4939 (source
4940 (origin
4941 (method url-fetch)
4942 (uri (cran-uri "fractal" version))
4943 (sha256
4944 (base32
4945 "18lr9z0gslvfc3z8vyj3krqj3bfhg60zv1fzinrwwkc4cpk1w7mp"))))
4946 (build-system r-build-system)
4947 (propagated-inputs
4948 `(("r-ifultools" ,r-ifultools)
4949 ("r-mass" ,r-mass)
4950 ("r-sapa" ,r-sapa)
4951 ("r-scatterplot3d" ,r-scatterplot3d)
4952 ("r-splus2r" ,r-splus2r)
4953 ("r-wmtsa" ,r-wmtsa)))
4954 (home-page "https://cran.r-project.org/web/packages/fractal/")
4955 (synopsis "Fractal time series modeling and analysis")
4956 (description
4957 "This package provides tools for stochastic fractal and deterministic
4958 chaotic time series analysis.")
4959 (license license:gpl2)))
4960
4961 (define-public r-urca
4962 (package
4963 (name "r-urca")
4964 (version "1.3-0")
4965 (source
4966 (origin
4967 (method url-fetch)
4968 (uri (cran-uri "urca" version))
4969 (sha256
4970 (base32
4971 "1akaqwf3fvvvx4sgfn641fd4sj51s0701pvfl6s5hnz2k0iwh732"))))
4972 (build-system r-build-system)
4973 (propagated-inputs `(("r-nlme" ,r-nlme)))
4974 (native-inputs `(("gfortran" ,gfortran)))
4975 (home-page "https://cran.r-project.org/web/packages/urca/")
4976 (synopsis "Unit root and cointegration tests for time series data")
4977 (description
4978 "This package provides unit root and cointegration tests encountered in
4979 applied econometric analysis.")
4980 (license license:gpl2+)))
4981
4982 (define-public r-cubature
4983 (package
4984 (name "r-cubature")
4985 (version "2.0.4.1")
4986 (source
4987 (origin
4988 (method url-fetch)
4989 (uri (cran-uri "cubature" version))
4990 (sha256
4991 (base32
4992 "006la36gxdikvmdnq4ny7ik7r30id4z3b3fqsl57dpqwkpsbsgrq"))))
4993 (build-system r-build-system)
4994 (propagated-inputs
4995 `(("r-rcpp" ,r-rcpp)))
4996 (native-inputs
4997 `(("r-knitr" ,r-knitr)))
4998 (home-page "https://github.com/bnaras/cubature")
4999 (synopsis "Adaptive multivariate integration over hypercubes")
5000 (description
5001 "This package is an R wrapper around the cubature C library for adaptive
5002 multivariate integration over hypercubes. This version provides both
5003 @code{hcubature} and @code{pcubature} routines in addition to a vector
5004 interface.")
5005 ;; The included cubature C library is released under GPLv2+, but the
5006 ;; wrapper declares the license to be GPLv3+.
5007 (license (list license:gpl2+ license:gpl3+))))
5008
5009 (define-public r-trend
5010 (package
5011 (name "r-trend")
5012 (version "1.1.2")
5013 (source
5014 (origin
5015 (method url-fetch)
5016 (uri (cran-uri "trend" version))
5017 (sha256
5018 (base32
5019 "09b6ycyfgs4xlhx6kn6qm5rl2acp58hzhv8qclzn3kb1wjjyvxy5"))))
5020 (build-system r-build-system)
5021 (propagated-inputs
5022 `(("r-extradistr" ,r-extradistr)))
5023 (native-inputs
5024 `(("gfortran" ,gfortran)))
5025 (home-page "https://cran.r-project.org/web/packages/trend/")
5026 (synopsis "Non-parametric trend tests and change-point detection")
5027 (description
5028 "The analysis of environmental data often requires the detection of
5029 trends and change-points. This package includes tests for trend
5030 detection (Cox-Stuart Trend Test, Mann-Kendall Trend Test, (correlated)
5031 Hirsch-Slack Test, partial Mann-Kendall Trend Test, multivariate (multisite)
5032 Mann-Kendall Trend Test, (Seasonal) Sen's slope, partial Pearson and Spearman
5033 correlation trend test), change-point detection (Lanzante's test procedures,
5034 Pettitt's test, Buishand Range Test, Buishand U Test, Standard Normal
5035 Homogeinity Test), detection of non-randomness (Wallis-Moore Phase Frequency
5036 Test, Bartels rank von Neumann's ratio test, Wald-Wolfowitz Test) and the two
5037 sample Robust Rank-Order Distributional Test.")
5038 (license license:gpl3)))
5039
5040 (define-public r-expm
5041 (package
5042 (name "r-expm")
5043 (version "0.999-5")
5044 (source
5045 (origin
5046 (method url-fetch)
5047 (uri (cran-uri "expm" version))
5048 (sha256
5049 (base32
5050 "0y98ya8rhy891nysjlzzy7kcm13dsz8gvxwzvbkmcp1xx0vicxc7"))))
5051 (build-system r-build-system)
5052 (propagated-inputs `(("r-matrix" ,r-matrix)))
5053 (native-inputs `(("gfortran" ,gfortran)))
5054 (home-page "https://r-forge.r-project.org/projects/expm/")
5055 (synopsis "Tools for matrix exponentials and related quantities")
5056 (description
5057 "This package provides tools for the computation of the matrix
5058 exponential, logarithm, square root, and related quantities.")
5059 (license license:gpl2+)))
5060
5061 (define-public r-complexplus
5062 (package
5063 (name "r-complexplus")
5064 (version "2.1")
5065 (source
5066 (origin
5067 (method url-fetch)
5068 (uri (cran-uri "complexplus" version))
5069 (sha256
5070 (base32
5071 "16w9v7d1ckavqmr86l34frr37pkvdn0iqnb17ssb8xaggns5lgqx"))))
5072 (build-system r-build-system)
5073 (propagated-inputs
5074 `(("r-expm" ,r-expm)
5075 ("r-matrix" ,r-matrix)))
5076 (home-page "https://cran.r-project.org/web/packages/complexplus/")
5077 (synopsis "Functions of complex or real variables")
5078 (description
5079 "This package extends several functions to the complex domain, including
5080 the matrix exponential and logarithm, and the determinant.")
5081 (license license:gpl2)))
5082
5083 (define-public r-phontools
5084 (package
5085 (name "r-phontools")
5086 (version "0.2-2.1")
5087 (source
5088 (origin
5089 (method url-fetch)
5090 (uri (cran-uri "phonTools" version))
5091 (sha256
5092 (base32
5093 "01i481mhswsys3gpasw9gn6nxkfmi7bz46g5c84m13pg0cv8hxc7"))))
5094 (properties `((upstream-name . "phonTools")))
5095 (build-system r-build-system)
5096 (home-page "http://www.santiagobarreda.com/rscripts.html")
5097 (synopsis "Tools for phonetic and acoustic analyses")
5098 (description
5099 "This package contains tools for the organization, display, and analysis
5100 of the sorts of data frequently encountered in phonetics research and
5101 experimentation, including the easy creation of IPA vowel plots, and the
5102 creation and manipulation of WAVE audio files.")
5103 (license license:bsd-2)))
5104
5105 (define-public r-np
5106 (package
5107 (name "r-np")
5108 (version "0.60-10")
5109 (source
5110 (origin
5111 (method url-fetch)
5112 (uri (cran-uri "np" version))
5113 (sha256
5114 (base32
5115 "06h8k0kdv5s258jr6s08fabvlycrbs7iq34jk2f2hfmqm2y4nyx2"))))
5116 (build-system r-build-system)
5117 (propagated-inputs
5118 `(("r-boot" ,r-boot)
5119 ("r-cubature" ,r-cubature)
5120 ("r-quadprog" ,r-quadprog)
5121 ("r-quantreg" ,r-quantreg)))
5122 (home-page "https://github.com/JeffreyRacine/R-Package-np")
5123 (synopsis "Non-parametric kernel smoothing methods for mixed data types")
5124 (description "This package provides non-parametric (and semi-parametric)
5125 kernel methods that seamlessly handle a mix of continuous, unordered, and
5126 ordered factor data types.")
5127 ;; Any version of the GPL.
5128 (license license:gpl3+)))
5129
5130 (define-public r-powerplus
5131 (package
5132 (name "r-powerplus")
5133 (version "3.1")
5134 (source
5135 (origin
5136 (method url-fetch)
5137 (uri (cran-uri "powerplus" version))
5138 (sha256
5139 (base32
5140 "0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
5141 (build-system r-build-system)
5142 (propagated-inputs
5143 `(("r-complexplus" ,r-complexplus)
5144 ("r-expm" ,r-expm)
5145 ("r-mass" ,r-mass)
5146 ("r-matrix" ,r-matrix)
5147 ("r-phontools" ,r-phontools)))
5148 (home-page "https://cran.r-project.org/web/packages/powerplus/")
5149 (synopsis "Exponentiation operations")
5150 (description
5151 "This package provides tools for the computation of matrix and scalar
5152 exponentiation.")
5153 (license license:gpl2)))
5154
5155 (define-public r-egg
5156 (package
5157 (name "r-egg")
5158 (version "0.4.5")
5159 (source
5160 (origin
5161 (method url-fetch)
5162 (uri (cran-uri "egg" version))
5163 (sha256
5164 (base32
5165 "1fy7srpiavfn8kyrr1m84an7acgwi6ydzrg71m3b0vk7y9ybmj0m"))))
5166 (properties `((upstream-name . "egg")))
5167 (build-system r-build-system)
5168 (propagated-inputs
5169 `(("r-ggplot2" ,r-ggplot2)
5170 ("r-gridextra" ,r-gridextra)
5171 ("r-gtable" ,r-gtable)))
5172 (home-page "https://cran.r-project.org/web/packages/egg")
5173 (synopsis "Extensions for ggplot2")
5174 (description
5175 "This package provides miscellaneous functions to help customize ggplot2
5176 objects. High-level functions are provided to post-process ggplot2 layouts
5177 and allow alignment between plot panels, as well as setting panel sizes to
5178 fixed values. Other functions include a custom @code{geom}, and helper
5179 functions to enforce symmetric scales or add tags to facetted plots.")
5180 (license license:gpl3)))
5181
5182 (define-public r-heatmaply
5183 (package
5184 (name "r-heatmaply")
5185 (version "1.1.0")
5186 (source
5187 (origin
5188 (method url-fetch)
5189 (uri (cran-uri "heatmaply" version))
5190 (sha256
5191 (base32
5192 "133q8ir45vhfxs2lnd96k97g21ihg2arfhp349kmk339pk32fcxz"))))
5193 (build-system r-build-system)
5194 (propagated-inputs
5195 `(("r-assertthat" ,r-assertthat)
5196 ("r-colorspace" ,r-colorspace)
5197 ("r-dendextend" ,r-dendextend)
5198 ("r-egg" ,r-egg)
5199 ("r-ggplot2" ,r-ggplot2)
5200 ("r-htmlwidgets" ,r-htmlwidgets)
5201 ("r-magrittr" ,r-magrittr)
5202 ("r-plotly" ,r-plotly)
5203 ("r-rcolorbrewer" ,r-rcolorbrewer)
5204 ("r-reshape2" ,r-reshape2)
5205 ("r-scales" ,r-scales)
5206 ("r-seriation" ,r-seriation)
5207 ("r-viridis" ,r-viridis)
5208 ("r-webshot" ,r-webshot)))
5209 (native-inputs
5210 `(("r-knitr" ,r-knitr)))
5211 (home-page "https://cran.r-project.org/package=heatmaply")
5212 (synopsis "Interactive cluster heat maps using plotly")
5213 (description
5214 "This package enables you to create interactive cluster heatmaps that can
5215 be saved as a stand-alone HTML file, embedded in R Markdown documents or in a
5216 Shiny app, and made available in the RStudio viewer pane. Hover the mouse
5217 pointer over a cell to show details or drag a rectangle to zoom. A heatmap is
5218 a popular graphical method for visualizing high-dimensional data, in which a
5219 table of numbers is encoded as a grid of colored cells. The rows and columns
5220 of the matrix are ordered to highlight patterns and are often accompanied by
5221 dendrograms.")
5222 ;; Either version of the license.
5223 (license (list license:gpl2 license:gpl3))))
5224
5225 (define-public r-h5
5226 (package
5227 (name "r-h5")
5228 (version "0.9.9")
5229 (source
5230 (origin
5231 (method url-fetch)
5232 (uri (cran-uri "h5" version))
5233 (sha256
5234 (base32
5235 "14p7i1sj24ky87kd7qr3n9fc9l64s0bp0rwbyl6i2x69xn75gpsx"))))
5236 (build-system r-build-system)
5237 (inputs
5238 `(("zlib" ,zlib)
5239 ("hdf5" ,hdf5)))
5240 (native-inputs
5241 `(("which" ,which)))
5242 (propagated-inputs
5243 `(("r-rcpp" ,r-rcpp)))
5244 (home-page "https://github.com/mannau/h5")
5245 (synopsis "Interface to the HDF5 Library")
5246 (description
5247 "This package provides an S4 interface to the HDF5 library supporting
5248 fast storage and retrieval of R-objects like vectors, matrices and arrays to
5249 binary files in a language independent format. The HDF5 format can therefore
5250 be used as an alternative to R's save/load mechanism. Since h5 is able to
5251 access only subsets of stored data it can also handle data sets which do not
5252 fit into memory.")
5253 (license license:bsd-2)))
5254
5255 (define-public r-cgdsr
5256 (package
5257 (name "r-cgdsr")
5258 (version "1.3.0")
5259 (source
5260 (origin
5261 (method url-fetch)
5262 (uri (cran-uri "cgdsr" version))
5263 (sha256
5264 (base32
5265 "07yc819hkabpzzh0g0cbqza6bcfy67b2marrzz1lj97f9iba78ja"))))
5266 (build-system r-build-system)
5267 (propagated-inputs
5268 `(("r-httr" ,r-httr)
5269 ("r-r-methodss3" ,r-r-methodss3)
5270 ("r-r-oo" ,r-r-oo)))
5271 (home-page "https://github.com/cBioPortal/cgdsr")
5272 (synopsis "R-based API for accessing the MSKCC Cancer Genomics Data Server")
5273 (description
5274 "This package provides a basic set of R functions for querying the Cancer
5275 Genomics Data Server (CGDS), hosted by the Computational Biology Center at
5276 Memorial-Sloan-Kettering Cancer Center (MSKCC).")
5277 (license license:lgpl3)))
5278
5279 (define-public r-import
5280 (package
5281 (name "r-import")
5282 (version "1.1.0")
5283 (source
5284 (origin
5285 (method url-fetch)
5286 (uri (cran-uri "import" version))
5287 (sha256
5288 (base32
5289 "0blf9539rbfwcmw8zsb4k58slb4pdnc075v34vmyjw752fznhcji"))))
5290 (build-system r-build-system)
5291 (home-page "https://github.com/smbache/import")
5292 (synopsis "Import mechanism for R")
5293 (description
5294 "This is an alternative mechanism for importing objects from packages.
5295 The syntax allows for importing multiple objects from a package with a single
5296 command in an expressive way. The import package bridges some of the gap
5297 between using @code{library} (or @code{require}) and direct (single-object)
5298 imports. Furthermore the imported objects are not placed in the current
5299 environment. It is also possible to import objects from stand-alone @code{.R}
5300 files.")
5301 (license license:expat)))
5302
5303 (define-public r-shinyace
5304 (package
5305 (name "r-shinyace")
5306 (version "0.4.1")
5307 (source
5308 (origin
5309 (method url-fetch)
5310 (uri (cran-uri "shinyAce" version))
5311 (sha256
5312 (base32
5313 "1m33dfm2kjirvgix7ybv1kbzgjkicdpv411g9c0q3fw6rnyhfxxn"))))
5314 (properties `((upstream-name . "shinyAce")))
5315 (build-system r-build-system)
5316 (propagated-inputs
5317 `(("r-shiny" ,r-shiny)
5318 ("r-jsonlite" ,r-jsonlite)))
5319 (home-page "https://cran.r-project.org/web/packages/shinyAce/")
5320 (synopsis "Ace editor bindings for Shiny")
5321 (description
5322 "This package provides Ace editor bindings to enable a rich text editing
5323 environment within Shiny.")
5324 (license license:expat)))
5325
5326 (define-public r-randomizr
5327 (package
5328 (name "r-randomizr")
5329 (version "0.20.0")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (uri (cran-uri "randomizr" version))
5334 (sha256
5335 (base32
5336 "0dljyfldnardaps3fq6vi5wcs9x6qfaq5apapa78c51lnaa6fn9h"))))
5337 (properties `((upstream-name . "randomizr")))
5338 (build-system r-build-system)
5339 (native-inputs
5340 `(("r-knitr" ,r-knitr)))
5341 (home-page "https://declaredesign.org/r/randomizr/")
5342 (synopsis "Tools for common forms of random assignment and sampling")
5343 (description
5344 "This package provides tools for generating random assignments for common
5345 experimental designs and random samples for common sampling designs.")
5346 (license license:expat)))
5347
5348 (define-public r-base64url
5349 (package
5350 (name "r-base64url")
5351 (version "1.4")
5352 (source
5353 (origin
5354 (method url-fetch)
5355 (uri (cran-uri "base64url" version))
5356 (sha256
5357 (base32
5358 "0n1c2b68vza1dh7sk38v6biiwm72c4jpl79kpdg1bsb0hq9qy18x"))))
5359 (build-system r-build-system)
5360 (propagated-inputs
5361 `(("r-backports" ,r-backports)))
5362 (home-page "https://github.com/mllg/base64url")
5363 (synopsis "Fast and URL-safe base64 encoder and decoder")
5364 (description
5365 "This package provides a URL-safe base64 encoder and decoder. In
5366 contrast to RFC3548, the 62nd character (@code{+}) is replaced with @code{-},
5367 the 63rd character (@code{/}) is replaced with @code{_}. Furthermore, the
5368 encoder does not fill the string with trailing @code{=}. The resulting
5369 encoded strings comply to the regular expression pattern @code{[A-Za-z0-9_-]}
5370 and thus are safe to use in URLs or for file names. The package also comes
5371 with a simple base32 encoder/decoder suited for case insensitive file
5372 systems.")
5373 (license license:gpl3)))
5374
5375 (define-public r-radiant-data
5376 (package
5377 (name "r-radiant-data")
5378 (version "1.3.10")
5379 (source
5380 (origin
5381 (method url-fetch)
5382 (uri (cran-uri "radiant.data" version))
5383 (sha256
5384 (base32
5385 "09a3wn3gl1zjq5zsc5zaxyq71dg5qnpk57bmwd6qy8w99g2clm8c"))
5386 (modules '((guix build utils)))
5387 (snippet
5388 '(begin
5389 ;; Delete files that are under CC-NC-SA.
5390 (delete-file-recursively "inst/app/tools/help")
5391 #t))))
5392 (properties `((upstream-name . "radiant.data")))
5393 (build-system r-build-system)
5394 (propagated-inputs
5395 `(("r-base64enc" ,r-base64enc)
5396 ("r-broom" ,r-broom)
5397 ("r-car" ,r-car)
5398 ("r-curl" ,r-curl)
5399 ("r-dplyr" ,r-dplyr)
5400 ("r-dt" ,r-dt)
5401 ("r-glue" ,r-glue)
5402 ("r-ggplot2" ,r-ggplot2)
5403 ("r-import" ,r-import)
5404 ("r-jsonlite" ,r-jsonlite)
5405 ("r-knitr" ,r-knitr)
5406 ("r-lubridate" ,r-lubridate)
5407 ("r-magrittr" ,r-magrittr)
5408 ("r-markdown" ,r-markdown)
5409 ("r-mass" ,r-mass)
5410 ("r-patchwork" ,r-patchwork)
5411 ("r-plotly" ,r-plotly)
5412 ("r-psych" ,r-psych)
5413 ("r-randomizr" ,r-randomizr)
5414 ("r-readr" ,r-readr)
5415 ("r-readxl" ,r-readxl)
5416 ("r-rlang" ,r-rlang)
5417 ("r-rmarkdown" ,r-rmarkdown)
5418 ("r-rstudioapi" ,r-rstudioapi)
5419 ("r-scales" ,r-scales)
5420 ("r-shiny" ,r-shiny)
5421 ("r-shinyfiles" ,r-shinyfiles)
5422 ("r-shinyace" ,r-shinyace)
5423 ("r-stringi" ,r-stringi)
5424 ("r-tibble" ,r-tibble)
5425 ("r-tidyr" ,r-tidyr)
5426 ("r-writexl" ,r-writexl)))
5427 (home-page "https://github.com/radiant-rstats/radiant.data")
5428 (synopsis "Data menu for Radiant: business analytics using R and Shiny")
5429 (description
5430 "The Radiant Data menu includes interfaces for loading, saving, viewing,
5431 visualizing, summarizing, transforming, and combining data. It also contains
5432 functionality to generate reproducible reports of the analyses conducted in
5433 the application.")
5434 (license license:agpl3)))
5435
5436 (define-public r-algdesign
5437 (package
5438 (name "r-algdesign")
5439 (version "1.2.0")
5440 (source
5441 (origin
5442 (method url-fetch)
5443 (uri (cran-uri "AlgDesign" version))
5444 (sha256
5445 (base32 "0ammlg148gk0p24fh700116nd66636np0jb1wwh0axq5jphwk1pz"))))
5446 (properties `((upstream-name . "AlgDesign")))
5447 (build-system r-build-system)
5448 (home-page "https://github.com/jvbraun/AlgDesign")
5449 (synopsis "Algorithmic experimental design")
5450 (description
5451 "This package provides tools to calculate exact and approximate theory
5452 experimental designs for D, A, and I criteria. Very large designs may be
5453 created. Experimental designs may be blocked or blocked designs created from
5454 a candidate list, using several criteria. The blocking can be done when whole
5455 and within plot factors interact.")
5456 (license license:gpl2+)))
5457
5458 (define-public r-signal
5459 (package
5460 (name "r-signal")
5461 (version "0.7-6")
5462 (source
5463 (origin
5464 (method url-fetch)
5465 (uri (cran-uri "signal" version))
5466 (sha256
5467 (base32
5468 "1vsxramz5qd9q9s3vlqzmfdpmwl2rhlb2n904zw6f0fg0xxjfq3b"))))
5469 (build-system r-build-system)
5470 (propagated-inputs `(("r-mass" ,r-mass)))
5471 (native-inputs `(("gfortran" ,gfortran)))
5472 (home-page "https://cran.r-project.org/web/packages/signal/")
5473 (synopsis "Signal processing")
5474 (description
5475 "This package provides a set of signal processing functions originally
5476 written for Matlab and GNU Octave. It includes filter generation utilities,
5477 filtering functions, resampling routines, and visualization of filter models.
5478 It also includes interpolation functions.")
5479 (license license:gpl2)))
5480
5481 (define-public r-gsubfn
5482 (package
5483 (name "r-gsubfn")
5484 (version "0.7")
5485 (source
5486 (origin
5487 (method url-fetch)
5488 (uri (cran-uri "gsubfn" version))
5489 (sha256
5490 (base32
5491 "00j6b8b6xsx6v370h220x233rpk6asca78165y3d48jpwvwisdc9"))))
5492 (build-system r-build-system)
5493 (propagated-inputs `(("r-proto" ,r-proto)))
5494 (home-page "https://code.google.com/archive/p/gsubfn/")
5495 (synopsis "Utilities for strings and function arguments.")
5496 (description
5497 "This package provides @code{gsubfn} which is like @code{gsub} but can
5498 take a replacement function or certain other objects instead of the
5499 replacement string. Matches and back references are input to the replacement
5500 function and replaced by the function output. @code{gsubfn} can be used to
5501 split strings based on content rather than delimiters and for quasi-perl-style
5502 string interpolation. The package also has facilities for translating
5503 formulas to functions and allowing such formulas in function calls instead of
5504 functions.")
5505 (license license:gpl2+)))
5506
5507 (define-public r-sqldf
5508 (package
5509 (name "r-sqldf")
5510 (version "0.4-11")
5511 (source
5512 (origin
5513 (method url-fetch)
5514 (uri (cran-uri "sqldf" version))
5515 (sha256
5516 (base32
5517 "0q12vsb53p2wchgp8wfz5bk08wfnm0jxjrakclj4jyy6x3a7ksff"))))
5518 (build-system r-build-system)
5519 (propagated-inputs
5520 `(("r-chron" ,r-chron)
5521 ("r-dbi" ,r-dbi)
5522 ("r-gsubfn" ,r-gsubfn)
5523 ("r-proto" ,r-proto)
5524 ("r-rsqlite" ,r-rsqlite)))
5525 (home-page "https://github.com/ggrothendieck/sqldf")
5526 (synopsis "Manipulate R data frames using SQL")
5527 (description
5528 "The @code{sqldf} function is typically passed a single argument which is
5529 an SQL select statement where the table names are ordinary R data frame names.
5530 @code{sqldf} transparently sets up a database, imports the data frames into
5531 that database, performs the SQL statement and returns the result using a
5532 heuristic to determine which class to assign to each column of the returned
5533 data frame. The @code{sqldf} or @code{read.csv.sql} functions can also be
5534 used to read filtered files into R even if the original files are larger than
5535 R itself can handle.")
5536 (license license:gpl2)))
5537
5538 (define-public r-abind
5539 (package
5540 (name "r-abind")
5541 (version "1.4-5")
5542 (source
5543 (origin
5544 (method url-fetch)
5545 (uri (cran-uri "abind" version))
5546 (sha256
5547 (base32
5548 "0b1zd8jbnl6l292cr9rb50m09fy3ylxvzkpgi5lfb1nbzddcwfis"))))
5549 (build-system r-build-system)
5550 (home-page "https://cran.r-project.org/web/packages/abind/")
5551 (synopsis "Combine multidimensional arrays")
5552 (description
5553 "This package provides tools to combine multidimensional arrays into a
5554 single array. This is a generalization of @code{cbind} and @code{rbind}. It
5555 works with vectors, matrices, and higher-dimensional arrays. It also provides
5556 the functions @code{adrop}, @code{asub}, and @code{afill} for manipulating,
5557 extracting and replacing data in arrays.")
5558 (license license:lgpl2.0+)))
5559
5560 (define-public r-prroc
5561 (package
5562 (name "r-prroc")
5563 (version "1.3.1")
5564 (source
5565 (origin
5566 (method url-fetch)
5567 (uri (cran-uri "PRROC" version))
5568 (sha256
5569 (base32
5570 "1m28h8pcd78049lz2qixhkcr9h5b3jik3maqzfbvq9y58z71i4a7"))))
5571 (properties `((upstream-name . "PRROC")))
5572 (build-system r-build-system)
5573 (home-page "https://cran.r-project.org/web/packages/PRROC/")
5574 (synopsis "Precision-Recall and ROC curves for weighted and unweighted data")
5575 (description
5576 "This package computes the areas under the @dfn{precision-recall} (PR)
5577 and ROC curve for weighted (e.g. soft-labeled) and unweighted data. In
5578 contrast to other implementations, the interpolation between points of the PR
5579 curve is done by a non-linear piecewise function. In addition to the areas
5580 under the curves, the curves themselves can also be computed and plotted by a
5581 specific S3-method.")
5582 (license license:gpl3)))
5583
5584 (define-public r-vim
5585 (package
5586 (name "r-vim")
5587 (version "6.0.0")
5588 (source
5589 (origin
5590 (method url-fetch)
5591 (uri (cran-uri "VIM" version))
5592 (sha256
5593 (base32
5594 "0ddhca4v912q82rjpf1qld6i6g2c381g0v5b4hbnygr3lm6a7wiv"))))
5595 (properties `((upstream-name . "VIM")))
5596 (build-system r-build-system)
5597 (propagated-inputs
5598 `(("r-car" ,r-car)
5599 ("r-colorspace" ,r-colorspace)
5600 ("r-data-table" ,r-data-table)
5601 ("r-e1071" ,r-e1071)
5602 ("r-laeken" ,r-laeken)
5603 ("r-magrittr" ,r-magrittr)
5604 ("r-mass" ,r-mass)
5605 ("r-nnet" ,r-nnet)
5606 ("r-ranger" ,r-ranger)
5607 ("r-rcpp" ,r-rcpp)
5608 ("r-robustbase" ,r-robustbase)
5609 ("r-sp" ,r-sp)
5610 ("r-vcd" ,r-vcd)))
5611 (native-inputs
5612 `(("r-knitr" ,r-knitr)))
5613 (home-page "https://github.com/alexkowa/VIM")
5614 (synopsis "Visualization and imputation of missing values")
5615 (description
5616 "This package provides tools for the visualization of missing and/or
5617 imputed values are introduced, which can be used for exploring the data and
5618 the structure of the missing and/or imputed values. Depending on this
5619 structure of the missing values, the corresponding methods may help to
5620 identify the mechanism generating the missing values and allows to explore the
5621 data including missing values. In addition, the quality of imputation can be
5622 visually explored using various univariate, bivariate, multiple and
5623 multivariate plot methods.")
5624 (license license:gpl2+)))
5625
5626 (define-public r-fnn
5627 (package
5628 (name "r-fnn")
5629 (version "1.1.3")
5630 (source
5631 (origin
5632 (method url-fetch)
5633 (uri (cran-uri "FNN" version))
5634 (sha256
5635 (base32
5636 "0cllqlnynm5yaj4r64mqyyfc8phkb38rwssq8k8ikgfgr4jklxny"))))
5637 (properties `((upstream-name . "FNN")))
5638 (build-system r-build-system)
5639 (home-page "https://cran.r-project.org/web/packages/FNN")
5640 (synopsis "Fast nearest neighbor search algorithms and applications")
5641 (description
5642 "This package provides cover-tree and kd-tree fast k-nearest neighbor
5643 search algorithms. Related applications including KNN classification,
5644 regression and information measures are implemented.")
5645 ;; The DESCRIPTION file erroneously states that GPL version 2.1 or
5646 ;; later can be used.
5647 (license license:gpl2+)))
5648
5649 (define-public r-smoother
5650 (package
5651 (name "r-smoother")
5652 (version "1.1")
5653 (source
5654 (origin
5655 (method url-fetch)
5656 (uri (cran-uri "smoother" version))
5657 (sha256
5658 (base32
5659 "0nqr1bvlr5bnasqg74zmknjjl4x28kla9h5cxpga3kq5z215pdci"))))
5660 (build-system r-build-system)
5661 (propagated-inputs
5662 `(("r-ttr" ,r-ttr)))
5663 (home-page "https://cran.r-project.org/web/packages/smoother")
5664 (synopsis "Functions relating to the smoothing of numerical data")
5665 (description
5666 "This package provides a collection of methods for smoothing numerical
5667 data, commencing with a port of the Matlab gaussian window smoothing function.
5668 In addition, several functions typically used in smoothing of financial data
5669 are included.")
5670 (license license:gpl2)))
5671
5672 (define-public r-riverplot
5673 (package
5674 (name "r-riverplot")
5675 (version "0.6")
5676 (source
5677 (origin
5678 (method url-fetch)
5679 (uri (cran-uri "riverplot" version))
5680 (sha256
5681 (base32
5682 "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z"))))
5683 (build-system r-build-system)
5684 (home-page "https://logfc.wordpress.com")
5685 (synopsis "Sankey or ribbon plots")
5686 (description
5687 "Sankey plots are a type of diagram that is convenient to illustrate how
5688 flow of information, resources etc. separates and joins, much like observing
5689 how rivers split and merge. For example, they can be used to compare
5690 different clusterings. This package provides an implementation of Sankey
5691 plots for R.")
5692 (license license:gpl2+)))
5693
5694 (define-public r-dyn
5695 (package
5696 (name "r-dyn")
5697 (version "0.2-9.6")
5698 (source
5699 (origin
5700 (method url-fetch)
5701 (uri (cran-uri "dyn" version))
5702 (sha256
5703 (base32
5704 "16fqv9k7yxdgybwzafjkyqm16qpgqz13lcjpi6a1nc8xbzlzh0gb"))))
5705 (build-system r-build-system)
5706 (propagated-inputs
5707 `(("r-zoo" ,r-zoo)))
5708 (home-page "https://cran.r-project.org/web/packages/dyn")
5709 (synopsis "Time series regression")
5710 (description
5711 "This package provides the dyn class interfaces @code{ts}, @code{irts},
5712 @code{zoo} and @code{zooreg} time series classes to @code{lm}, @code{glm},
5713 @code{loess}, @code{quantreg::rq}, @code{MASS::rlm},
5714 @code{MCMCpack::MCMCregress()}, @code{quantreg::rq()},
5715 @code{randomForest::randomForest()} and other regression functions, allowing
5716 those functions to be used with time series including specifications that may
5717 contain lags, diffs and missing values.")
5718 ;; Any GPL version.
5719 (license license:gpl2+)))
5720
5721 (define-public r-catdap
5722 (package
5723 (name "r-catdap")
5724 (version "1.3.5")
5725 (source
5726 (origin
5727 (method url-fetch)
5728 (uri (cran-uri "catdap" version))
5729 (sha256
5730 (base32
5731 "0fyhl69z2lznymvpzxra9qvcg85ggzkfjy68c6mzdmf1ja44d2k5"))))
5732 (build-system r-build-system)
5733 (native-inputs
5734 `(("gfortran" ,gfortran)))
5735 (home-page "https://cran.r-project.org/web/packages/catdap/")
5736 (synopsis "Tools for categorical data analysis")
5737 (description
5738 "This package provides functions for analyzing multivariate data.
5739 Dependencies of the distribution of the specified variable (response
5740 variable) to other variables (explanatory variables) are derived and
5741 evaluated by the @dfn{Akaike Information Criterion} (AIC).")
5742 (license license:gpl2+)))
5743
5744 (define-public r-arules
5745 (package
5746 (name "r-arules")
5747 (version "1.6-6")
5748 (source
5749 (origin
5750 (method url-fetch)
5751 (uri (cran-uri "arules" version))
5752 (sha256
5753 (base32
5754 "1pk3jjizn2m5rwi7qkdkbq9f07acgpy0qdzzqmx0agg47cwahlkm"))))
5755 (build-system r-build-system)
5756 (propagated-inputs
5757 `(("r-matrix" ,r-matrix)))
5758 (home-page "https://github.com/mhahsler/arules")
5759 (synopsis "Mining association rules and frequent itemsets")
5760 (description
5761 "This package provides an infrastructure for representing, manipulating
5762 and analyzing transaction data and patterns (frequent itemsets and association rules).
5763 It also provides C implementations of the association mining algorithms Apriori
5764 and Eclat.")
5765 (license license:gpl3)))
5766
5767 (define-public r-parsedate
5768 (package
5769 (name "r-parsedate")
5770 (version "1.2.0")
5771 (source
5772 (origin
5773 (method url-fetch)
5774 (uri (cran-uri "parsedate" version))
5775 (sha256
5776 (base32
5777 "0gb3w6hmwxayhijpf36p5dk4h6bbdps57x3cgikwvvxkgi83rarr"))))
5778 (build-system r-build-system)
5779 (propagated-inputs
5780 `(("r-rematch2" ,r-rematch2)))
5781 (home-page "https://github.com/gaborcsardi/parsedate")
5782 (synopsis
5783 "Recognize and parse dates in various formats")
5784 (description
5785 "This package provides three functions for dealing with dates:
5786 @code{parse_iso_8601} recognizes and parses all valid ISO 8601 date and
5787 time formats, @code{parse_date} parses dates in unspecified formats,
5788 and @code{format_iso_8601} formats a date in ISO 8601 format.")
5789 (license license:gpl2)))
5790
5791 (define-public r-abc-data
5792 (package
5793 (name "r-abc-data")
5794 (version "1.0")
5795 (source
5796 (origin
5797 (method url-fetch)
5798 (uri (cran-uri "abc.data" version))
5799 (sha256
5800 (base32
5801 "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj"))))
5802 (properties `((upstream-name . "abc.data")))
5803 (build-system r-build-system)
5804 (home-page "https://cran.r-project.org/web/packages/abc.data/")
5805 (synopsis "Data for Approximate Bayesian Computation (ABC) package")
5806 (description
5807 "This package contains data which are used by functions of the abc
5808 package which implements several @dfn{Approximate Bayesian Computation} (ABC)
5809 algorithms for performing parameter estimation, model selection, and
5810 goodness-of-fit.")
5811 (license license:gpl3+)))
5812
5813 (define-public r-abc
5814 (package
5815 (name "r-abc")
5816 (version "2.1")
5817 (source
5818 (origin
5819 (method url-fetch)
5820 (uri (cran-uri "abc" version))
5821 (sha256
5822 (base32
5823 "0ngzaaz2y2s03fhngvwipmy4kq38xrmyddaz6a6l858rxvadrlhb"))))
5824 (build-system r-build-system)
5825 (propagated-inputs
5826 `(("r-abc-data" ,r-abc-data)
5827 ("r-locfit" ,r-locfit)
5828 ("r-mass" ,r-mass)
5829 ("r-nnet" ,r-nnet)
5830 ("r-quantreg" ,r-quantreg)))
5831 (home-page "https://cran.r-project.org/web/packages/abc/")
5832 (synopsis "Tools for Approximate Bayesian Computation (ABC)")
5833 (description
5834 "This package implements several @dfn{Approximate Bayesian
5835 Computation} (ABC) algorithms for performing parameter estimation, model
5836 selection, and goodness-of-fit. Cross-validation tools are also available for
5837 measuring the accuracy of ABC estimates, and to calculate the
5838 misclassification probabilities of different models.")
5839 (license license:gpl3+)))
5840
5841 (define-public r-zip
5842 (package
5843 (name "r-zip")
5844 (version "2.1.0")
5845 (source
5846 (origin
5847 (method url-fetch)
5848 (uri (cran-uri "zip" version))
5849 (sha256
5850 (base32
5851 "1dfsagb7bx35x4zx6f5xk2sk057fbyhskkpw3w72b805cjw920da"))))
5852 (build-system r-build-system)
5853 (home-page "https://github.com/gaborcsardi/zip")
5854 (synopsis "Cross-platform Zip compression")
5855 (description
5856 "This package provides a cross-platform Zip compression library for R.
5857 It is a replacement for the @code{zip} function, that does not require any
5858 additional external tools on any platform.")
5859 (license license:cc0)))
5860
5861 (define-public r-openxlsx
5862 (package
5863 (name "r-openxlsx")
5864 (version "4.1.5")
5865 (source
5866 (origin
5867 (method url-fetch)
5868 (uri (cran-uri "openxlsx" version))
5869 (sha256
5870 (base32
5871 "0wkpa3wsd8rs0pib7cp67iv0s6jn99frcrw7clypqxmvvdwyb9kq"))))
5872 (build-system r-build-system)
5873 (propagated-inputs
5874 `(("r-rcpp" ,r-rcpp)
5875 ("r-stringi" ,r-stringi)
5876 ("r-zip" ,r-zip)))
5877 (native-inputs
5878 `(("r-knitr" ,r-knitr)))
5879 (home-page "https://github.com/awalker89/openxlsx")
5880 (synopsis "Read, write and edit XLSX files")
5881 (description
5882 "This package simplifies the creation of Excel @code{.xlsx} files by
5883 providing a high level interface to writing, styling and editing worksheets.
5884 Through the use of Rcpp, read/write times are comparable to the @code{xlsx}
5885 and @code{XLConnect} packages with the added benefit of removing the
5886 dependency on Java.")
5887 (license license:gpl3)))
5888
5889 (define-public r-rio
5890 (package
5891 (name "r-rio")
5892 (version "0.5.16")
5893 (source
5894 (origin
5895 (method url-fetch)
5896 (uri (cran-uri "rio" version))
5897 (sha256
5898 (base32
5899 "0rfl56fdawlhc98451a9lcb6a6m56kw0i7dvd5hx58z025d8vsyk"))))
5900 (build-system r-build-system)
5901 (propagated-inputs
5902 `(("r-curl" ,r-curl)
5903 ("r-data-table" ,r-data-table)
5904 ("r-foreign" ,r-foreign)
5905 ("r-haven" ,r-haven)
5906 ("r-openxlsx" ,r-openxlsx)
5907 ("r-readxl" ,r-readxl)
5908 ("r-tibble" ,r-tibble)))
5909 (home-page "https://github.com/leeper/rio")
5910 (synopsis "Swiss-army knife for data I/O")
5911 (description
5912 "This package provides streamlined data import and export infrastructure
5913 by making assumptions that the user is probably willing to make: @code{import}
5914 and @code{export} determine the data structure from the file extension,
5915 reasonable defaults are used for data import and export (e.g.,
5916 @code{stringsAsFactors=FALSE}), web-based import is natively
5917 supported (including from SSL/HTTPS), compressed files can be read directly
5918 without explicit decompression, and fast import packages are used where
5919 appropriate. An additional convenience function, @code{convert}, provides a
5920 simple method for converting between file types.")
5921 (license license:gpl2)))
5922
5923 (define-public r-maptools
5924 (package
5925 (name "r-maptools")
5926 (version "1.0-1")
5927 (source
5928 (origin
5929 (method url-fetch)
5930 (uri (cran-uri "maptools" version))
5931 (sha256
5932 (base32
5933 "0fs1y3cbymcq4f76wd27h5a7ihdmxii3ca8x29x32xgxhmasni4l"))))
5934 (build-system r-build-system)
5935 (propagated-inputs
5936 `(("r-foreign" ,r-foreign)
5937 ("r-lattice" ,r-lattice)
5938 ("r-sp" ,r-sp)))
5939 (home-page "https://r-forge.r-project.org/projects/maptools/")
5940 (synopsis "Tools for reading and handling spatial objects")
5941 (description
5942 "This package provides a set of tools for manipulating and reading
5943 geographic data, in particular ESRI Shapefiles. It includes binary access to
5944 GSHHG shoreline files. The package also provides interface wrappers for
5945 exchanging spatial objects with other R packages.")
5946 ;; The C source files from shapelib are released under the Expat license.
5947 ;; The R code is released under GPL version 2 or later.
5948 (license (list license:gpl2+
5949 license:expat))))
5950
5951 (define-public r-later
5952 (package
5953 (name "r-later")
5954 (version "1.1.0.1")
5955 (source
5956 (origin
5957 (method url-fetch)
5958 (uri (cran-uri "later" version))
5959 (sha256
5960 (base32
5961 "1k9n2j7zxw9gfclnx8zfqp6w64c5d6apn7g02yhkajkpmszagfki"))))
5962 (build-system r-build-system)
5963 (propagated-inputs
5964 `(("r-bh" ,r-bh)
5965 ("r-rcpp" ,r-rcpp)
5966 ("r-rlang" ,r-rlang)))
5967 (native-inputs
5968 `(("r-knitr" ,r-knitr)))
5969 (home-page "https://github.com/r-lib/later")
5970 (synopsis "Utilities for delaying function execution")
5971 (description
5972 "This package provides tools to execute arbitrary R or C functions some
5973 time after the current time, after the R execution stack has emptied.")
5974 (license license:gpl2+)))
5975
5976 (define-public r-promises
5977 (package
5978 (name "r-promises")
5979 (version "1.1.1")
5980 (source
5981 (origin
5982 (method url-fetch)
5983 (uri (cran-uri "promises" version))
5984 (sha256
5985 (base32
5986 "002qkhcn3ri6a3w5fizjvdvrjgvqiw8i7rl9jglcnqik5kmwc61p"))))
5987 (build-system r-build-system)
5988 (propagated-inputs
5989 `(("r-later" ,r-later)
5990 ("r-magrittr" ,r-magrittr)
5991 ("r-r6" ,r-r6)
5992 ("r-rcpp" ,r-rcpp)
5993 ("r-rlang" ,r-rlang)))
5994 (native-inputs
5995 `(("r-knitr" ,r-knitr)))
5996 (home-page "https://rstudio.github.io/promises")
5997 (synopsis "Abstractions for promise-based asynchronous programming")
5998 (description
5999 "This package provides fundamental abstractions for doing asynchronous
6000 programming in R using promises. Asynchronous programming is useful for
6001 allowing a single R process to orchestrate multiple tasks in the background
6002 while also attending to something else. Semantics are similar to JavaScript
6003 promises, but with a syntax that is idiomatic R.")
6004 (license license:expat)))
6005
6006 (define-public r-dosnow
6007 (package
6008 (name "r-dosnow")
6009 (version "1.0.18")
6010 (source
6011 (origin
6012 (method url-fetch)
6013 (uri (cran-uri "doSNOW" version))
6014 (sha256
6015 (base32
6016 "0rj72z5505cprh6wykhhiz08l9bmd966srqh2qypwivf321bvrvh"))))
6017 (properties `((upstream-name . "doSNOW")))
6018 (build-system r-build-system)
6019 (propagated-inputs
6020 `(("r-foreach" ,r-foreach)
6021 ("r-iterators" ,r-iterators)
6022 ("r-snow" ,r-snow)))
6023 (home-page "https://cran.r-project.org/web/packages/doSNOW")
6024 (synopsis "Foreach parallel adaptor for the snow package")
6025 (description
6026 "This package provides a parallel backend for the @code{%dopar%} function
6027 using the @code{snow} package.")
6028 (license license:gpl2)))
6029
6030 (define-public r-snowfall
6031 (package
6032 (name "r-snowfall")
6033 (version "1.84-6.1")
6034 (source (origin
6035 (method url-fetch)
6036 (uri (cran-uri "snowfall" version))
6037 (sha256
6038 (base32 "13941rlw1jsdjsndp1plzj1cq5aqravizkrqn6l25r9im7rnsi2w"))))
6039 (build-system r-build-system)
6040 (propagated-inputs
6041 `(("r-snow" ,r-snow)))
6042 (home-page "https://cran.r-project.org/web/packages/snowfall/")
6043 (synopsis "Easier cluster computing")
6044 (description "This package is a usability wrapper around snow for easier
6045 development of parallel R programs. This package offers e.g. extended error
6046 checks, and additional functions. All functions work in sequential mode, too,
6047 if no cluster is present or wished. The package is also designed as connector
6048 to the cluster management tool @code{sfCluster}, but can also used without
6049 it.")
6050 (license license:gpl2+)))
6051
6052 (define-public r-rappdirs
6053 (package
6054 (name "r-rappdirs")
6055 (version "0.3.1")
6056 (source
6057 (origin
6058 (method url-fetch)
6059 (uri (cran-uri "rappdirs" version))
6060 (sha256
6061 (base32
6062 "0ji6sg3bdn5gazkq14xmmcq7jnbsyxw4lzmmbgv6526j2vn93n1g"))))
6063 (build-system r-build-system)
6064 (home-page "https://cran.r-project.org/web/packages/rappdirs/")
6065 (synopsis "Determine where to save data, caches, and logs")
6066 (description
6067 "This package provides an easy way to determine which directories on the
6068 user's computer should be used to save data, caches and logs. It is a port of
6069 Python's @url{https://github.com/ActiveState/appdirs,Appdirs} to R.")
6070 (license license:expat)))
6071
6072 (define-public r-renv
6073 (package
6074 (name "r-renv")
6075 (version "0.11.0")
6076 (source
6077 (origin
6078 (method url-fetch)
6079 (uri (cran-uri "renv" version))
6080 (sha256
6081 (base32
6082 "0dd63jr240pg95a6p058s5kcclfmscihdy89v212msihmwvylwh3"))))
6083 (properties `((upstream-name . "renv")))
6084 (build-system r-build-system)
6085 (native-inputs
6086 `(("r-knitr" ,r-knitr)))
6087 (home-page "https://rstudio.github.io/renv")
6088 (synopsis "Project environments")
6089 (description
6090 "This package provides a dependency management toolkit for R. Using
6091 renv, you can create and manage project-local R libraries, save the state of
6092 these libraries to a lockfile, and later restore your library as required.
6093 Together, these tools can help make your projects more isolated, portable, and
6094 reproducible.")
6095 (license license:expat)))
6096
6097 (define-public r-learnr
6098 (package
6099 (name "r-learnr")
6100 (version "0.10.1")
6101 (source
6102 (origin
6103 (method url-fetch)
6104 (uri (cran-uri "learnr" version))
6105 (sha256
6106 (base32
6107 "08xwmms6x58y3dsfbl9c6d03145hb4ij97nqr1cc9dxxilmr6x31"))))
6108 (build-system r-build-system)
6109 (propagated-inputs
6110 `(("r-checkmate" ,r-checkmate)
6111 ("r-ellipsis" ,r-ellipsis)
6112 ("r-evaluate" ,r-evaluate)
6113 ("r-htmltools" ,r-htmltools)
6114 ("r-htmlwidgets" ,r-htmlwidgets)
6115 ("r-jsonlite" ,r-jsonlite)
6116 ("r-knitr" ,r-knitr)
6117 ("r-markdown" ,r-markdown)
6118 ("r-rappdirs" ,r-rappdirs)
6119 ("r-renv" ,r-renv)
6120 ("r-rmarkdown" ,r-rmarkdown)
6121 ("r-rprojroot" ,r-rprojroot)
6122 ("r-shiny" ,r-shiny)
6123 ("r-withr" ,r-withr)))
6124 (home-page "https://rstudio.github.io/learnr/")
6125 (synopsis "Interactive tutorials for R")
6126 (description
6127 "This package provides tools to create interactive tutorials using R
6128 Markdown. Use a combination of narrative, figures, videos, exercises, and
6129 quizzes to create self-paced tutorials for learning about R and R packages.")
6130 (license license:asl2.0)))
6131
6132 (define-public r-analytics
6133 (package
6134 (name "r-analytics")
6135 (version "3.0")
6136 (source
6137 (origin
6138 (method url-fetch)
6139 (uri (cran-uri "analytics" version))
6140 (sha256
6141 (base32
6142 "0js3c8lwj3knccb55nq03cbjlf4w390p9aid2mi5x80l3ayd9in1"))))
6143 (build-system r-build-system)
6144 (propagated-inputs
6145 `(("r-car" ,r-car)
6146 ("r-cluster" ,r-cluster)
6147 ("r-fractal" ,r-fractal)
6148 ("r-lmtest" ,r-lmtest)
6149 ("r-mass" ,r-mass)
6150 ("r-np" ,r-np)
6151 ("r-powerplus" ,r-powerplus)
6152 ("r-robust" ,r-robust)
6153 ("r-trend" ,r-trend)
6154 ("r-tsa" ,r-tsa)
6155 ("r-urca" ,r-urca)
6156 ("r-vim" ,r-vim)))
6157 (home-page "https://cran.r-project.org/web/packages/analytics/")
6158 (synopsis "Collection of data analysis tools")
6159 (description
6160 "This package is a collection of data analysis tools. It includes tools
6161 for regression outlier detection in a fitted linear model, stationary
6162 bootstrap using a truncated geometric distribution, a comprehensive test for
6163 weak stationarity, column means by group, weighted biplots, and a heuristic to
6164 obtain a better initial configuration in non-metric MDS.")
6165 (license license:gpl2)))
6166
6167 (define-public r-reticulate
6168 (package
6169 (name "r-reticulate")
6170 (version "1.16")
6171 (source
6172 (origin
6173 (method url-fetch)
6174 (uri (cran-uri "reticulate" version))
6175 (sha256
6176 (base32
6177 "0ddx3xrlw55d8d3w7pxap618w2c5pd1n2jw4xsa185s8mf1zifkl"))))
6178 (build-system r-build-system)
6179 (inputs `(("python" ,python)))
6180 (propagated-inputs
6181 `(("r-rappdirs" ,r-rappdirs)
6182 ("r-jsonlite" ,r-jsonlite)
6183 ("r-matrix" ,r-matrix)
6184 ("r-rcpp" ,r-rcpp)))
6185 (native-inputs
6186 `(("r-knitr" ,r-knitr)))
6187 (home-page "https://github.com/rstudio/reticulate")
6188 (synopsis "R interface to Python")
6189 (description
6190 "This package provides an interface from R to Python modules, classes,
6191 and functions. When calling into Python, R data types are automatically
6192 converted to their equivalent Python types. When values are returned from
6193 Python to R they are converted back to R types.")
6194 (license license:asl2.0)))
6195
6196 (define-public r-bibtex
6197 (package
6198 (name "r-bibtex")
6199 (version "0.4.2.2")
6200 (source
6201 (origin
6202 (method url-fetch)
6203 (uri (cran-uri "bibtex" version))
6204 (sha256
6205 (base32
6206 "140hkjzdp3033cvji861rd06z1ixgpnn4n5amygqsmhnixk8ff07"))))
6207 (build-system r-build-system)
6208 (propagated-inputs `(("r-stringr" ,r-stringr)))
6209 (home-page "https://github.com/romainfrancois/bibtex")
6210 (synopsis "Bibtex parser")
6211 (description "This package provides a utility for R to parse a bibtex
6212 file.")
6213 (license license:gpl2+)))
6214
6215 (define-public r-ggseqlogo
6216 (package
6217 (name "r-ggseqlogo")
6218 (version "0.1")
6219 (source
6220 (origin
6221 (method url-fetch)
6222 (uri (cran-uri "ggseqlogo" version))
6223 (sha256
6224 (base32
6225 "13q6kcpxrqxqbji889fx63p0nsi08lk5yymkchig75r5k1d18ky1"))))
6226 (build-system r-build-system)
6227 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
6228 (home-page "https://github.com/omarwagih/ggseqlogo")
6229 (synopsis "ggplot2 extension for drawing genetic sequence logos")
6230 (description
6231 "The range of functions provided by this package makes it possible to
6232 draw highly versatile genomic sequence logos. Features include, but are not
6233 limited to, modifying colour schemes and fonts used to draw the logo,
6234 generating multiple logo plots, and aiding the visualisation with annotations.
6235 Sequence logos can easily be combined with other ggplot2 plots.")
6236 ;; Unspecified version of the LGPL.
6237 (license license:lgpl3+)))
6238
6239 (define-public r-ggsci
6240 (package
6241 (name "r-ggsci")
6242 (version "2.9")
6243 (source
6244 (origin
6245 (method url-fetch)
6246 (uri (cran-uri "ggsci" version))
6247 (sha256
6248 (base32
6249 "0g73x6grbka7ahjh6z23m3wrcifp5rdfdiasbl8lq4sp6rplxwaa"))))
6250 (build-system r-build-system)
6251 (propagated-inputs
6252 `(("r-ggplot2" ,r-ggplot2)
6253 ("r-scales" ,r-scales)))
6254 (home-page "https://nanx.me/ggsci/")
6255 (synopsis "Scientific journal and sci-fi themed color palettes for ggplot2")
6256 (description
6257 "This package provides a collection of ggplot2 color palettes inspired by
6258 plots in scientific journals, data visualization libraries, science fiction
6259 movies, and TV shows.")
6260 (license license:gpl3)))
6261
6262 (define-public r-ggsignif
6263 (package
6264 (name "r-ggsignif")
6265 (version "0.6.0")
6266 (source
6267 (origin
6268 (method url-fetch)
6269 (uri (cran-uri "ggsignif" version))
6270 (sha256
6271 (base32
6272 "17j9hg967k1wp9xw3x84mqss58jkb8pvlrnlchz4i1hklgykxqbg"))))
6273 (build-system r-build-system)
6274 (native-inputs
6275 `(("r-knitr" ,r-knitr)))
6276 (propagated-inputs
6277 `(("r-ggplot2" ,r-ggplot2)))
6278 (home-page "https://github.com/const-ae/ggsignif")
6279 (synopsis "Significance brackets for ggplot2")
6280 (description
6281 "Enrich your ggplots with group-wise comparisons. This package provides
6282 an easy way to indicate if two groups are significantly different. Commonly
6283 this is shown by a bracket on top connecting the groups of interest which
6284 itself is annotated with the level of significance. The package provides a
6285 single layer that takes the groups for comparison and the test as arguments
6286 and adds the annotation to the plot.")
6287 (license license:gpl3)))
6288
6289 (define-public r-rstatix
6290 (package
6291 (name "r-rstatix")
6292 (version "0.6.0")
6293 (source
6294 (origin
6295 (method url-fetch)
6296 (uri (cran-uri "rstatix" version))
6297 (sha256
6298 (base32
6299 "0nwwvxwr4z3j4n9z8cnvwghppc836g47n0ia98chk272qwh8xcpb"))))
6300 (properties `((upstream-name . "rstatix")))
6301 (build-system r-build-system)
6302 (propagated-inputs
6303 `(("r-broom" ,r-broom)
6304 ("r-car" ,r-car)
6305 ("r-corrplot" ,r-corrplot)
6306 ("r-dplyr" ,r-dplyr)
6307 ("r-generics" ,r-generics)
6308 ("r-magrittr" ,r-magrittr)
6309 ("r-purrr" ,r-purrr)
6310 ("r-rlang" ,r-rlang)
6311 ("r-tibble" ,r-tibble)
6312 ("r-tidyr" ,r-tidyr)
6313 ("r-tidyselect" ,r-tidyselect)))
6314 (home-page "https://rpkgs.datanovia.com/rstatix/")
6315 (synopsis "Pipe-friendly framework for basic statistical tests")
6316 (description
6317 "This package provides a simple and intuitive pipe-friendly framework,
6318 coherent with the @code{tidyverse} design philosophy, for performing basic
6319 statistical tests, including t-test, Wilcoxon test, ANOVA, Kruskal-Wallis and
6320 correlation analyses. The output of each test is automatically transformed
6321 into a tidy data frame to facilitate visualization. Additional functions are
6322 available for reshaping, reordering, manipulating and visualizing correlation
6323 matrix.")
6324 (license license:gpl2)))
6325
6326 (define-public r-ggpubr
6327 (package
6328 (name "r-ggpubr")
6329 (version "0.4.0")
6330 (source
6331 (origin
6332 (method url-fetch)
6333 (uri (cran-uri "ggpubr" version))
6334 (sha256
6335 (base32
6336 "0x86lmghr25k8w90yrp360dn42dhp5cjvjpdiv2s2gxfn701xcmb"))))
6337 (build-system r-build-system)
6338 (propagated-inputs
6339 `(("r-cowplot" ,r-cowplot)
6340 ("r-dplyr" ,r-dplyr)
6341 ("r-ggplot2" ,r-ggplot2)
6342 ("r-ggrepel" ,r-ggrepel)
6343 ("r-ggsci" ,r-ggsci)
6344 ("r-ggsignif" ,r-ggsignif)
6345 ("r-glue" ,r-glue)
6346 ("r-gridextra" ,r-gridextra)
6347 ("r-magrittr" ,r-magrittr)
6348 ("r-polynom" ,r-polynom)
6349 ("r-purrr" ,r-purrr)
6350 ("r-rlang" ,r-rlang)
6351 ("r-scales" ,r-scales)
6352 ("r-rstatix" ,r-rstatix)
6353 ("r-tibble" ,r-tibble)
6354 ("r-tidyr" ,r-tidyr)))
6355 (home-page "http://www.sthda.com/english/rpkgs/ggpubr")
6356 (synopsis "ggplot2-based publication-ready plots")
6357 (description
6358 "The ggplot2 package is an excellent and flexible package for elegant
6359 data visualization in R. However the default generated plots require some
6360 formatting before we can send them for publication. The ggpubr package
6361 provides some easy-to-use functions for creating and customizing ggplot2-based
6362 publication-ready plots.")
6363 (license license:gpl2)))
6364
6365 (define-public r-ellipse
6366 (package
6367 (name "r-ellipse")
6368 (version "0.4.2")
6369 (source
6370 (origin
6371 (method url-fetch)
6372 (uri (cran-uri "ellipse" version))
6373 (sha256
6374 (base32
6375 "1wm5v7zdv2drgdba7z96jwsx74mqhlq80qgrvdb4vb5r02dcw68p"))))
6376 (build-system r-build-system)
6377 (home-page "https://cran.r-project.org/web/packages/ellipse/")
6378 (synopsis "Functions for drawing ellipses and ellipse-like confidence regions")
6379 (description
6380 "This package contains various routines for drawing ellipses and
6381 ellipse-like confidence regions, implementing the plots described in Murdoch
6382 and Chow (1996), A graphical display of large correlation matrices, The
6383 American Statistician 50, 178-180. There are also routines implementing the
6384 profile plots described in Bates and Watts (1988), Nonlinear Regression
6385 Analysis and its Applications.")
6386 (license license:gpl2+)))
6387
6388 (define-public r-flashclust
6389 (package
6390 (name "r-flashclust")
6391 (version "1.01-2")
6392 (source
6393 (origin
6394 (method url-fetch)
6395 (uri (cran-uri "flashClust" version))
6396 (sha256
6397 (base32
6398 "0l4lpz451ll7f7lfxmb7ds24ppzhfg1c3ypvydglcc35p2dq99s8"))))
6399 (properties `((upstream-name . "flashClust")))
6400 (build-system r-build-system)
6401 (native-inputs `(("gfortran" ,gfortran)))
6402 (home-page "https://cran.r-project.org/web/packages/flashClust/")
6403 (synopsis "Implementation of optimal hierarchical clustering")
6404 (description
6405 "This package provides a fast implementation of hierarchical
6406 clustering.")
6407 (license license:gpl2+)))
6408
6409 (define-public r-factominer
6410 (package
6411 (name "r-factominer")
6412 (version "2.3")
6413 (source
6414 (origin
6415 (method url-fetch)
6416 (uri (cran-uri "FactoMineR" version))
6417 (sha256
6418 (base32
6419 "0ldgf3daksh6lpblhqys67m4mxqx3q9s9n5plfam6dwshfik0ky6"))))
6420 (properties `((upstream-name . "FactoMineR")))
6421 (build-system r-build-system)
6422 (propagated-inputs
6423 `(("r-car" ,r-car)
6424 ("r-cluster" ,r-cluster)
6425 ("r-ellipse" ,r-ellipse)
6426 ("r-flashclust" ,r-flashclust)
6427 ("r-ggplot2" ,r-ggplot2)
6428 ("r-ggrepel" ,r-ggrepel)
6429 ("r-lattice" ,r-lattice)
6430 ("r-leaps" ,r-leaps)
6431 ("r-mass" ,r-mass)
6432 ("r-scatterplot3d" ,r-scatterplot3d)))
6433 (home-page "http://factominer.free.fr")
6434 (synopsis "Multivariate exploratory data analysis and data mining")
6435 (description
6436 "This package provides exploratory data analysis methods to summarize,
6437 visualize and describe datasets. The main principal component methods are
6438 available, those with the largest potential in terms of applications:
6439 principal component analysis (PCA) when variables are quantitative,
6440 correspondence analysis (CA) and multiple correspondence analysis (MCA) when
6441 variables are categorical, Multiple Factor Analysis when variables are
6442 structured in groups, etc. and hierarchical cluster analysis.")
6443 (license license:gpl2+)))
6444
6445 (define-public r-factoextra
6446 (package
6447 (name "r-factoextra")
6448 (version "1.0.7")
6449 (source
6450 (origin
6451 (method url-fetch)
6452 (uri (cran-uri "factoextra" version))
6453 (sha256
6454 (base32
6455 "1allvdjhd3pq8xz30b1cymwcik5iaahghrjrlnn54cwkfhfg0kv2"))))
6456 (build-system r-build-system)
6457 (propagated-inputs
6458 `(("r-abind" ,r-abind)
6459 ("r-cluster" ,r-cluster)
6460 ("r-dendextend" ,r-dendextend)
6461 ("r-factominer" ,r-factominer)
6462 ("r-ggplot2" ,r-ggplot2)
6463 ("r-ggpubr" ,r-ggpubr)
6464 ("r-ggrepel" ,r-ggrepel)
6465 ("r-reshape2" ,r-reshape2)
6466 ("r-tidyr" ,r-tidyr)))
6467 (home-page "http://www.sthda.com/english/rpkgs/factoextra")
6468 (synopsis "Extract and visualize the results of multivariate data analyses")
6469 (description
6470 "This package provides some easy-to-use functions to extract and
6471 visualize the output of multivariate data analyses, including
6472 @code{PCA} (Principal Component Analysis), @code{CA} (Correspondence
6473 Analysis), @code{MCA} (Multiple Correspondence Analysis), @code{FAMD} (Factor
6474 Analysis of Mixed Data), @code{MFA} (Multiple Factor Analysis) and
6475 @code{HMFA} (Hierarchical Multiple Factor Analysis) functions from different R
6476 packages. It contains also functions for simplifying some clustering analysis
6477 steps and provides ggplot2-based elegant data visualization.")
6478 (license license:gpl2)))
6479
6480 (define-public r-fansi
6481 (package
6482 (name "r-fansi")
6483 (version "0.4.1")
6484 (source
6485 (origin
6486 (method url-fetch)
6487 (uri (cran-uri "fansi" version))
6488 (sha256
6489 (base32
6490 "028ywjy538psnmdnddvy5jr3idzffr4hikzr4x97x0m30g4fws9w"))))
6491 (build-system r-build-system)
6492 (native-inputs
6493 `(("r-knitr" ,r-knitr))) ; for vignettes
6494 (home-page "https://github.com/brodieG/fansi")
6495 (synopsis "ANSI control sequence aware string functions")
6496 (description
6497 "This package provides counterparts to R string manipulation functions
6498 that account for the effects of ANSI text formatting control sequences.")
6499 (license license:gpl2+)))
6500
6501 (define-public r-nbclust
6502 (package
6503 (name "r-nbclust")
6504 (version "3.0")
6505 (source
6506 (origin
6507 (method url-fetch)
6508 (uri (cran-uri "NbClust" version))
6509 (sha256
6510 (base32
6511 "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c"))))
6512 (properties `((upstream-name . "NbClust")))
6513 (build-system r-build-system)
6514 (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package")
6515 (synopsis "Determine the best number of clusters in a data set")
6516 (description
6517 "NbClust provides 30 indexes for determining the optimal number of
6518 clusters in a data set and offers the best clustering scheme from different
6519 results to the user.")
6520 (license license:gpl2)))
6521
6522 (define-public r-hdf5r
6523 (package
6524 (name "r-hdf5r")
6525 (version "1.3.3")
6526 (source
6527 (origin
6528 (method url-fetch)
6529 (uri (cran-uri "hdf5r" version))
6530 (sha256
6531 (base32
6532 "0i8m4yjxggrs05slq2afvz2ckl1yc9wq7gd1s7dq2gjn46zkry50"))))
6533 (build-system r-build-system)
6534 (inputs
6535 `(("hdf5" ,hdf5)
6536 ("zlib" ,zlib)))
6537 (propagated-inputs
6538 `(("r-bit64" ,r-bit64)
6539 ("r-r6" ,r-r6)))
6540 (native-inputs
6541 `(("r-knitr" ,r-knitr)))
6542 (home-page "https://hhoeflin.github.io/hdf5r")
6543 (synopsis "Interface to the HDF5 binary data format")
6544 (description
6545 "HDF5 is a data model, library and file format for storing and managing
6546 large amounts of data. This package provides a nearly feature complete,
6547 object oriented wrapper for the HDF5 API using R6 classes. Additionally,
6548 functionality is added so that HDF5 objects behave very similar to their
6549 corresponding R counterparts.")
6550 (license license:asl2.0)))
6551
6552 (define-public r-itertools
6553 (package
6554 (name "r-itertools")
6555 (version "0.1-3")
6556 (source
6557 (origin
6558 (method url-fetch)
6559 (uri (cran-uri "itertools" version))
6560 (sha256
6561 (base32
6562 "1ls5biiva10pb1dj3ph4griykb9vam02hkrdmlr5a5wf660hg6xn"))))
6563 (build-system r-build-system)
6564 (propagated-inputs
6565 `(("r-iterators" ,r-iterators)))
6566 (home-page "https://cran.r-project.org/web/packages/itertools/")
6567 (synopsis "Iterator tools")
6568 (description
6569 "This package provides various tools for creating iterators, many
6570 patterned after functions in the Python @code{itertools} module, and others
6571 patterned after functions in the snow package.")
6572 (license license:gpl2)))
6573
6574 (define-public r-polynom
6575 (package
6576 (name "r-polynom")
6577 (version "1.4-0")
6578 (source
6579 (origin
6580 (method url-fetch)
6581 (uri (cran-uri "polynom" version))
6582 (sha256
6583 (base32
6584 "1pflscwc0qzdf0y60j7s0dkglgmz18xajywfbn6s263idyr8idy5"))))
6585 (build-system r-build-system)
6586 (home-page "https://cran.r-project.org/web/packages/polynom/")
6587 (synopsis "Functions for univariate polynomial manipulations")
6588 (description
6589 "This package provides a collection of functions to implement a class for
6590 univariate polynomial manipulations.")
6591 (license license:gpl2)))
6592
6593 (define-public r-gbrd
6594 (package
6595 (name "r-gbrd")
6596 (version "0.4-11")
6597 (source
6598 (origin
6599 (method url-fetch)
6600 (uri (cran-uri "gbRd" version))
6601 (sha256
6602 (base32
6603 "06x97rw5i6v6cgjxkfhxnw4dn7lghn5q6ra7ri5ag1x9dkfzcl82"))))
6604 (properties `((upstream-name . "gbRd")))
6605 (build-system r-build-system)
6606 (home-page "https://cran.r-project.org/web/packages/gbRd/")
6607 (synopsis "Utilities for processing Rd objects and files")
6608 (description
6609 "This package provides utilities for processing Rd objects and files.
6610 Extract argument descriptions and other parts of the help pages of
6611 functions.")
6612 (license license:gpl2+)))
6613
6614 (define-public r-rjags
6615 (package
6616 (name "r-rjags")
6617 (version "4-10")
6618 (source
6619 (origin
6620 (method url-fetch)
6621 (uri (cran-uri "rjags" version))
6622 (sha256
6623 (base32
6624 "1nhaim84ww8fd6m8xlpmngqcnp2qpql29ahc38366fxja3ghngmx"))))
6625 (build-system r-build-system)
6626 (propagated-inputs
6627 `(("r-coda" ,r-coda)))
6628 (inputs
6629 `(("jags" ,jags)))
6630 (native-inputs
6631 `(("pkg-config" ,pkg-config)))
6632 (home-page "http://mcmc-jags.sourceforge.net")
6633 (synopsis "Bayesian graphical models using MCMC")
6634 (description
6635 "This package provides an R interface to the JAGS MCMC library. JAGS is
6636 Just Another Gibbs Sampler. It is a program for analysis of Bayesian
6637 hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.")
6638 (license license:gpl2)))
6639
6640 (define-public r-rdpack
6641 (package
6642 (name "r-rdpack")
6643 (version "1.0.0")
6644 (source
6645 (origin
6646 (method url-fetch)
6647 (uri (cran-uri "Rdpack" version))
6648 (sha256
6649 (base32
6650 "069yh9h57z3gjl5ih1r6wyiwmgmfzkpjxrpxg8mfq7y6zr1mynsw"))))
6651 (properties `((upstream-name . "Rdpack")))
6652 (build-system r-build-system)
6653 (propagated-inputs
6654 `(("r-bibtex" ,r-bibtex)
6655 ("r-gbrd" ,r-gbrd)))
6656 (home-page "https://github.com/GeoBosh/Rdpack")
6657 (synopsis "Update and manipulate Rd documentation objects")
6658 (description
6659 "This package provides functions for manipulation of R documentation
6660 objects, including functions @code{reprompt()} and @code{ereprompt()} for
6661 updating Rd documentation for functions, methods and classes; it also includes
6662 Rd macros for citations and import of references from bibtex files for use in
6663 Rd files and roxygen2 comments, as well as many functions for manipulation of
6664 references and Rd files.")
6665 (license license:gpl2+)))
6666
6667 (define-public r-officer
6668 (package
6669 (name "r-officer")
6670 (version "0.3.12")
6671 (source
6672 (origin
6673 (method url-fetch)
6674 (uri (cran-uri "officer" version))
6675 (sha256
6676 (base32
6677 "1wk9h6bz77s5j6lgksmlrmi1vyaa35c766gq6hgb1dp0dz0x342x"))))
6678 (build-system r-build-system)
6679 (propagated-inputs
6680 `(("r-magrittr" ,r-magrittr)
6681 ("r-r6" ,r-r6)
6682 ("r-uuid" ,r-uuid)
6683 ("r-xml2" ,r-xml2)
6684 ("r-zip" ,r-zip)))
6685 (native-inputs
6686 `(("r-knitr" ,r-knitr)))
6687 (home-page "https://davidgohel.github.io/officer")
6688 (synopsis "Manipulation of Word and PowerPoint documents")
6689 (description
6690 "This package provides tools to access and manipulate Word and PowerPoint
6691 documents from R. The package focuses on tabular and graphical reporting from
6692 R; it also provides two functions that let users get document content into
6693 data objects. A set of functions lets add and remove images, tables and
6694 paragraphs of text in new or existing documents. When working with PowerPoint
6695 presentations, slides can be added or removed; shapes inside slides can also
6696 be added or removed. When working with Word documents, a cursor can be used
6697 to help insert or delete content at a specific location in the document.")
6698 (license license:gpl3)))
6699
6700 (define-public r-profilemodel
6701 (package
6702 (name "r-profilemodel")
6703 (version "0.6.0")
6704 (source
6705 (origin
6706 (method url-fetch)
6707 (uri (cran-uri "profileModel" version))
6708 (sha256
6709 (base32
6710 "0yq8hy43h62hlz8bbf9ila4a3xcwizi1if27b78xc5y857ncwad8"))))
6711 (properties `((upstream-name . "profileModel")))
6712 (build-system r-build-system)
6713 (home-page "https://github.com/ikosmidis/profileModel")
6714 (synopsis "Profiling inference functions for various model classes")
6715 (description
6716 "This package provides tools that can be used to calculate, evaluate,
6717 plot and use for inference the profiles of *arbitrary* inference functions for
6718 arbitrary @code{glm}-like fitted models with linear predictors. More information
6719 on the methods that are implemented can be found in Kosmidis (2008)
6720 @url{https://www.r-project.org/doc/Rnews/Rnews_2008-2.pdf}.")
6721 (license license:gpl2+)))
6722
6723 (define-public r-brglm
6724 (package
6725 (name "r-brglm")
6726 (version "0.6.2")
6727 (source
6728 (origin
6729 (method url-fetch)
6730 (uri (cran-uri "brglm" version))
6731 (sha256
6732 (base32
6733 "0c9ngscc6zlfm90fqyggnj04qfkhp5qgf5q3wnfpxwyc8cm47by2"))))
6734 (properties `((upstream-name . "brglm")))
6735 (build-system r-build-system)
6736 (propagated-inputs
6737 `(("r-profilemodel" ,r-profilemodel)))
6738 (home-page "https://github.com/ikosmidis/brglm")
6739 (synopsis "Bias reduction in binomial-response generalized linear models")
6740 (description
6741 "Fit generalized linear models with binomial responses using either an
6742 adjusted-score approach to bias reduction or maximum penalized likelihood
6743 where penalization is by Jeffreys invariant prior. These procedures return
6744 estimates with improved frequentist properties (bias, mean squared error) that
6745 are always finite even in cases where the maximum likelihood estimates are
6746 infinite (data separation). Fitting takes place by fitting generalized linear
6747 models on iteratively updated pseudo-data. The interface is essentially the
6748 same as @code{glm}. More flexibility is provided by the fact that custom
6749 pseudo-data representations can be specified and used for model fitting.
6750 Functions are provided for the construction of confidence intervals for the
6751 reduced-bias estimates.")
6752 (license license:gpl2+)))
6753
6754 (define-public r-entropy
6755 (package
6756 (name "r-entropy")
6757 (version "1.2.1")
6758 (source
6759 (origin
6760 (method url-fetch)
6761 (uri (cran-uri "entropy" version))
6762 (sha256
6763 (base32
6764 "10vg4818q5g54pv2nn9x5i7pvky5nsv96syy47pz2mgqp1273cpd"))))
6765 (properties `((upstream-name . "entropy")))
6766 (build-system r-build-system)
6767 (home-page "https://www.strimmerlab.org/software/entropy/")
6768 (synopsis "Estimation of entropy, mutual information and related quantities")
6769 (description
6770 "This package implements various estimators of entropy, such as the
6771 shrinkage estimator by Hausser and Strimmer, the maximum likelihood and the
6772 Millow-Madow estimator, various Bayesian estimators, and the Chao-Shen
6773 estimator. It also offers an R interface to the NSB estimator. Furthermore,
6774 it provides functions for estimating Kullback-Leibler divergence, chi-squared,
6775 mutual information, and chi-squared statistic of independence. In addition
6776 there are functions for discretizing continuous random variables.")
6777 (license license:gpl3+)))
6778
6779 (define-public r-abn
6780 (package
6781 (name "r-abn")
6782 (version "2.2.2")
6783 (source
6784 (origin
6785 (method url-fetch)
6786 (uri (cran-uri "abn" version))
6787 (sha256
6788 (base32
6789 "1wwnzv5yir8cyl0f0arxagbsg9ndgs0799m42wbjkpr8cg9sfdhc"))))
6790 (build-system r-build-system)
6791 (inputs
6792 `(("gsl" ,gsl)))
6793 (propagated-inputs
6794 `(("r-boot" ,r-boot)
6795 ("r-brglm" ,r-brglm)
6796 ("r-entropy" ,r-entropy)
6797 ("r-lme4" ,r-lme4)
6798 ("r-mass" ,r-mass)
6799 ("r-moments" ,r-moments)
6800 ("r-nnet" ,r-nnet)
6801 ("r-rcpp" ,r-rcpp)
6802 ("r-rcpparmadillo" ,r-rcpparmadillo)
6803 ("r-rjags" ,r-rjags)))
6804 (home-page "https://r-bayesian-networks.org/")
6805 (synopsis "Modelling multivariate data with additive bayesian networks")
6806 (description
6807 "Bayesian network analysis is a form of probabilistic graphical models
6808 which derives from empirical data a directed acyclic graph, DAG, describing
6809 the dependency structure between random variables. An additive Bayesian
6810 network model consists of a form of a DAG where each node comprises a
6811 @dfn{generalized linear model} (GLM). Additive Bayesian network models are
6812 equivalent to Bayesian multivariate regression using graphical modelling, they
6813 generalises the usual multivariable regression, GLM, to multiple dependent
6814 variables. This package provides routines to help determine optimal Bayesian
6815 network models for a given data set, where these models are used to identify
6816 statistical dependencies in messy, complex data.")
6817 (license license:gpl2+)))
6818
6819 (define-public r-acd
6820 (package
6821 (name "r-acd")
6822 (version "1.5.3")
6823 (source
6824 (origin
6825 (method url-fetch)
6826 (uri (cran-uri "ACD" version))
6827 (sha256
6828 (base32
6829 "1a67bi3hklq8nlc50r0qnyr4k7m9kpvijy8sqqpm54by5hsysfd6"))))
6830 (properties `((upstream-name . "ACD")))
6831 (build-system r-build-system)
6832 (home-page "https://cran.r-project.org/web/packages/ACD/")
6833 (synopsis "Categorical data analysis with complete or missing responses")
6834 (description
6835 "This package provides tools for categorical data analysis with complete
6836 or missing responses.")
6837 (license license:gpl2+)))
6838
6839 (define-public r-acdm
6840 (package
6841 (name "r-acdm")
6842 (version "1.0.4")
6843 (source
6844 (origin
6845 (method url-fetch)
6846 (uri (cran-uri "ACDm" version))
6847 (sha256
6848 (base32
6849 "0b4f02ga5ra66mbrm79g0bnlzmii82rks9kmxixxqgf18yhlyjil"))))
6850 (properties `((upstream-name . "ACDm")))
6851 (build-system r-build-system)
6852 (propagated-inputs
6853 `(("r-dplyr" ,r-dplyr)
6854 ("r-ggplot2" ,r-ggplot2)
6855 ("r-plyr" ,r-plyr)
6856 ("r-rsolnp" ,r-rsolnp)
6857 ("r-zoo" ,r-zoo)))
6858 (home-page "https://cran.r-project.org/web/packages/ACDm/")
6859 (synopsis "Tools for Autoregressive Conditional Duration Models")
6860 (description
6861 "ACDm is a package for Autoregressive Conditional Duration (ACD, Engle
6862 and Russell, 1998) models. It creates trade, price or volume durations from
6863 transactions (tic) data, performs diurnal adjustments, fits various ACD models
6864 and tests them.")
6865 (license license:gpl2+)))
6866
6867 (define-public r-overlap
6868 (package
6869 (name "r-overlap")
6870 (version "0.3.3")
6871 (source
6872 (origin
6873 (method url-fetch)
6874 (uri (cran-uri "overlap" version))
6875 (sha256
6876 (base32
6877 "17cnr4qin1qy0df4k491267acna12gpbbps6w3gi8nccqxfrb1pd"))))
6878 (build-system r-build-system)
6879 (home-page "https://cran.r-project.org/web/packages/overlap/")
6880 (synopsis "Estimates of coefficient of overlapping for animal activity patterns")
6881 (description
6882 "This package provides functions to fit kernel density functions to data
6883 on temporal activity patterns of animals; estimate coefficients of overlapping
6884 of densities for two species; and calculate bootstrap estimates of confidence
6885 intervals.")
6886 (license license:gpl3+)))
6887
6888 (define-public r-snakecase
6889 (package
6890 (name "r-snakecase")
6891 (version "0.11.0")
6892 (source
6893 (origin
6894 (method url-fetch)
6895 (uri (cran-uri "snakecase" version))
6896 (sha256
6897 (base32
6898 "1ky1x2cp5rd0ffd9m1fji9sq4z4jsrpxzg30brw8bb4ihfjj114r"))))
6899 (build-system r-build-system)
6900 (propagated-inputs
6901 `(("r-stringi" ,r-stringi)
6902 ("r-stringr" ,r-stringr)))
6903 (home-page "https://github.com/Tazinho/snakecase")
6904 (synopsis "Convert strings into any case")
6905 (description
6906 "This package provides a consistent, flexible and easy to use tool to
6907 parse and convert strings into cases like snake or camel among others.")
6908 (license license:gpl3)))
6909
6910 (define-public r-prediction
6911 (package
6912 (name "r-prediction")
6913 (version "0.3.14")
6914 (source
6915 (origin
6916 (method url-fetch)
6917 (uri (cran-uri "prediction" version))
6918 (sha256
6919 (base32
6920 "0awlq5lxfia6m2b91w73rksp93rbwv5gwqb36wbji4rgq41rzbrx"))))
6921 (build-system r-build-system)
6922 (propagated-inputs
6923 `(("r-data-table" ,r-data-table)))
6924 (home-page "https://github.com/leeper/prediction")
6925 (synopsis "Tidy, type-safe prediction methods")
6926 (description
6927 "This package provides the @code{prediction()} function, a type-safe
6928 alternative to @code{predict()} that always returns a data frame. The package
6929 currently supports common model types (e.g., @code{\"lm\"}, @code{\"glm\"})
6930 from the @code{stats} package, as well as numerous other model classes from
6931 other add-on packages.")
6932 (license license:expat)))
6933
6934 (define-public r-insight
6935 (package
6936 (name "r-insight")
6937 (version "0.9.0")
6938 (source
6939 (origin
6940 (method url-fetch)
6941 (uri (cran-uri "insight" version))
6942 (sha256
6943 (base32
6944 "1ajc8c5mi3ma5411lmlqp2ihkk5n0h8a1c0r3j07wk33p31c1qvl"))))
6945 (build-system r-build-system)
6946 (native-inputs
6947 `(("r-knitr" ,r-knitr)))
6948 (home-page "https://easystats.github.io/insight/")
6949 (synopsis "Easy access to model information for various model objects")
6950 (description
6951 "This package provides a tool to provide an easy, intuitive and
6952 consistent access to information contained in various R models, like model
6953 formulas, model terms, information about random effects, data that was used to
6954 fit the model or data from response variables. The package mainly revolves
6955 around two types of functions: Functions that find (the names of) information,
6956 starting with @code{find_}, and functions that get the underlying data,
6957 starting with @code{get_}. The package has a consistent syntax and works with
6958 many different model objects, where otherwise functions to access these
6959 information are missing.")
6960 (license license:gpl3)))
6961
6962 (define-public r-sjlabelled
6963 (package
6964 (name "r-sjlabelled")
6965 (version "1.1.6")
6966 (source
6967 (origin
6968 (method url-fetch)
6969 (uri (cran-uri "sjlabelled" version))
6970 (sha256
6971 (base32
6972 "0xvb0yi7c7wiiqjbnbisyb2cjinm11i373jacfv1yzyc9cznzyzq"))))
6973 (build-system r-build-system)
6974 (propagated-inputs
6975 `(("r-insight" ,r-insight)))
6976 (native-inputs
6977 `(("r-knitr" ,r-knitr)))
6978 (home-page "https://github.com/strengejacke/sjlabelled")
6979 (synopsis "Labelled data utility functions")
6980 (description
6981 "This package provides a collection of functions dealing with labelled
6982 data, like reading and writing data between R and other statistical software
6983 packages. This includes easy ways to get, set or change value and variable
6984 label attributes, to convert labelled vectors into factors or numeric (and
6985 vice versa), or to deal with multiple declared missing values.")
6986 (license license:gpl3)))
6987
6988 (define-public r-sjmisc
6989 (package
6990 (name "r-sjmisc")
6991 (version "2.8.5")
6992 (source
6993 (origin
6994 (method url-fetch)
6995 (uri (cran-uri "sjmisc" version))
6996 (sha256
6997 (base32
6998 "0xl0s56d13bia89ai619rcr0fzbvc2k8f7hjxik4qp0g4v87zzlk"))))
6999 (build-system r-build-system)
7000 (propagated-inputs
7001 `(("r-dplyr" ,r-dplyr)
7002 ("r-insight" ,r-insight)
7003 ("r-magrittr" ,r-magrittr)
7004 ("r-purrr" ,r-purrr)
7005 ("r-rlang" ,r-rlang)
7006 ("r-sjlabelled" ,r-sjlabelled)
7007 ("r-tidyselect" ,r-tidyselect)))
7008 (native-inputs
7009 `(("r-knitr" ,r-knitr)))
7010 (home-page "https://github.com/strengejacke/sjmisc")
7011 (synopsis "Data and variable transformation functions")
7012 (description
7013 "This package is a collection of miscellaneous utility functions,
7014 supporting data transformation tasks like recoding, dichotomizing or grouping
7015 variables, setting and replacing missing values. The data transformation
7016 functions also support labelled data, and all integrate seamlessly into a
7017 tidyverse workflow.")
7018 (license license:gpl3)))
7019
7020 (define-public r-nortest
7021 (package
7022 (name "r-nortest")
7023 (version "1.0-4")
7024 (source
7025 (origin
7026 (method url-fetch)
7027 (uri (cran-uri "nortest" version))
7028 (sha256
7029 (base32
7030 "17r0wpz72z9312c70nwi1i1kp1v9fm1h6jg7q5cx1mc1h420m1d3"))))
7031 (build-system r-build-system)
7032 (home-page "https://cran.r-project.org/web/packages/nortest/")
7033 (synopsis "Tests for normality")
7034 (description
7035 "This package provides five omnibus tests for testing the composite
7036 hypothesis of normality.")
7037 (license license:gpl2+)))
7038
7039 (define-public r-moonbook
7040 (package
7041 (name "r-moonbook")
7042 (version "0.2.3")
7043 (source
7044 (origin
7045 (method url-fetch)
7046 (uri (cran-uri "moonBook" version))
7047 (sha256
7048 (base32
7049 "0hys56mwbm776ff7dibi8wzyf69qiais9rs1jazv79lk6h56s9s6"))))
7050 (properties `((upstream-name . "moonBook")))
7051 (build-system r-build-system)
7052 (propagated-inputs
7053 `(("r-magrittr" ,r-magrittr)
7054 ("r-nortest" ,r-nortest)
7055 ("r-purrr" ,r-purrr)
7056 ("r-sjmisc" ,r-sjmisc)
7057 ("r-stringr" ,r-stringr)
7058 ("r-survival" ,r-survival)))
7059 (home-page "https://github.com/cardiomoon/moonBook")
7060 (synopsis "Functions and datasets for the book by Keon-Woong Moon")
7061 (description
7062 "This package provides several analysis-related functions for the book
7063 entitled \"R statistics and graph for medical articles\" (written in Korean),
7064 version 1, by Keon-Woong Moon with Korean demographic data with several plot
7065 functions.")
7066 (license license:gpl2)))
7067
7068 (define-public r-flextable
7069 (package
7070 (name "r-flextable")
7071 (version "0.5.10")
7072 (source
7073 (origin
7074 (method url-fetch)
7075 (uri (cran-uri "flextable" version))
7076 (sha256
7077 (base32
7078 "1j7yvjiavar21ywck6nyz0p6bd66fnj99bq8lljdz4rrl3314yb8"))))
7079 (build-system r-build-system)
7080 (propagated-inputs
7081 `(("r-base64enc" ,r-base64enc)
7082 ("r-data-table" ,r-data-table)
7083 ("r-gdtools" ,r-gdtools)
7084 ("r-htmltools" ,r-htmltools)
7085 ("r-knitr" ,r-knitr)
7086 ("r-officer" ,r-officer)
7087 ("r-rlang" ,r-rlang)
7088 ("r-rmarkdown" ,r-rmarkdown)
7089 ("r-uuid" ,r-uuid)
7090 ("r-xml2" ,r-xml2)))
7091 (home-page "https://davidgohel.github.io/flextable")
7092 (synopsis "Functions for tabular reporting")
7093 (description
7094 "This package provides tools to create pretty tables for HTML documents
7095 and other formats. Functions are provided to let users create tables, modify
7096 and format their content. It extends the @code{officer} package and can be
7097 used within R markdown documents when rendering to HTML and to Word
7098 documents.")
7099 (license license:gpl3)))
7100
7101 (define-public r-writexl
7102 (package
7103 (name "r-writexl")
7104 (version "1.3")
7105 (source
7106 (origin
7107 (method url-fetch)
7108 (uri (cran-uri "writexl" version))
7109 (sha256
7110 (base32
7111 "0lah0r2pd996s0vdbi614j3h52dbxmifha6f19v53p2b7fr32wjd"))))
7112 (build-system r-build-system)
7113 (inputs `(("zlib" ,zlib)))
7114 (home-page "https://github.com/ropensci/writexl")
7115 (synopsis "Export data frames to xlsx format")
7116 (description
7117 "This package provides a data frame to xlsx exporter based on
7118 libxlsxwriter.")
7119 (license license:bsd-2)))
7120
7121 (define-public r-biasedurn
7122 (package
7123 (name "r-biasedurn")
7124 (version "1.07")
7125 (source
7126 (origin
7127 (method url-fetch)
7128 (uri (cran-uri "BiasedUrn" version))
7129 (sha256
7130 (base32
7131 "13i2lgfnjhlbbm2yxfc2l5hswqw6x03pwba5csjmirv8kpjw4xr3"))))
7132 (properties `((upstream-name . "BiasedUrn")))
7133 (build-system r-build-system)
7134 (home-page "https://cran.r-project.org/web/packages/BiasedUrn/")
7135 (synopsis "Biased Urn model distributions")
7136 (description
7137 "This package provides statistical models of biased sampling in the form
7138 of univariate and multivariate noncentral hypergeometric distributions,
7139 including Wallenius' noncentral hypergeometric distribution and Fisher's
7140 noncentral hypergeometric distribution (also called extended hypergeometric
7141 distribution).")
7142 (license license:gpl3)))
7143
7144 (define-public r-goplot
7145 (package
7146 (name "r-goplot")
7147 (version "1.0.2")
7148 (source
7149 (origin
7150 (method url-fetch)
7151 (uri (cran-uri "GOplot" version))
7152 (sha256
7153 (base32
7154 "1y8dv0kbzpr9za91njw0x233vx5d13vqml9hmpddcyi9s6va5nix"))))
7155 (properties `((upstream-name . "GOplot")))
7156 (build-system r-build-system)
7157 (propagated-inputs
7158 `(("r-ggdendro" ,r-ggdendro)
7159 ("r-ggplot2" ,r-ggplot2)
7160 ("r-gridextra" ,r-gridextra)
7161 ("r-rcolorbrewer" ,r-rcolorbrewer)))
7162 (home-page "https://github.com/wencke/wencke.github.io")
7163 (synopsis "Visualization of functional analysis data")
7164 (description
7165 "This package provides an implementation of multilayered visualizations
7166 for enhanced graphical representation of functional analysis data. It
7167 combines and integrates omics data derived from expression and functional
7168 annotation enrichment analyses. Its plotting functions have been developed
7169 with an hierarchical structure in mind: starting from a general overview to
7170 identify the most enriched categories (modified bar plot, bubble plot) to a
7171 more detailed one displaying different types of relevant information for the
7172 molecules in a given set of categories (circle plot, chord plot, cluster plot,
7173 Venn diagram, heatmap).")
7174 (license license:gpl2)))
7175
7176 (define-public r-getopt
7177 (package
7178 (name "r-getopt")
7179 (version "1.20.3")
7180 (source
7181 (origin
7182 (method url-fetch)
7183 (uri (cran-uri "getopt" version))
7184 (sha256
7185 (base32
7186 "0zzmzgwl9a4y3s34600vmih22d6y32294f9bvxrnmffnvkgmy7sk"))))
7187 (build-system r-build-system)
7188 (home-page "https://github.com/trevorld/getopt")
7189 (synopsis "Command-line option processor for R")
7190 (description
7191 "This package is designed to be used with Rscript to write shebang
7192 scripts that accept short and long options. Many users will prefer to
7193 use the packages @code{optparse} or @code{argparse} which add extra
7194 features like automatically generated help options and usage texts,
7195 support for default values, positional argument support, etc.")
7196 (license license:gpl2+)))
7197
7198 (define-public r-findpython
7199 (package
7200 (name "r-findpython")
7201 (version "1.0.5")
7202 (source
7203 (origin
7204 (method url-fetch)
7205 (uri (cran-uri "findpython" version))
7206 (sha256
7207 (base32
7208 "0icifm4z6hhpmcjrg75a875iph0ci890ss02kdv3725pijc236iy"))))
7209 (build-system r-build-system)
7210 (home-page "https://github.com/trevorld/findpython")
7211 (synopsis "Functions to find an acceptable Python binary")
7212 (description
7213 "This package was designed to find an acceptable Python binary that
7214 matches version and feature constraints.")
7215 (license license:expat)))
7216
7217 ;; This in not the same as "r-argparser"
7218 (define-public r-argparse
7219 (package
7220 (name "r-argparse")
7221 (version "2.0.1")
7222 (source
7223 (origin
7224 (method url-fetch)
7225 (uri (cran-uri "argparse" version))
7226 (sha256
7227 (base32
7228 "1as7h6z7kzgv0fqzpnp76qbm96b4jcd37azd58b7rz0l1n94764l"))))
7229 (build-system r-build-system)
7230 (inputs `(("python" ,python)))
7231 (propagated-inputs
7232 `(("r-findpython" ,r-findpython)
7233 ("r-jsonlite" ,r-jsonlite)
7234 ("r-r6" ,r-r6)))
7235 (home-page "https://github.com/trevorld/argparse")
7236 (synopsis "Command line optional and positional argument parser")
7237 (description
7238 "This package provides a command line parser to be used with Rscript to
7239 write shebang scripts that gracefully accept positional and optional arguments
7240 and automatically generate usage notices.")
7241 (license license:gpl2+)))
7242
7243 (define-public r-hash
7244 (package
7245 (name "r-hash")
7246 (version "2.2.6.1")
7247 (source
7248 (origin
7249 (method url-fetch)
7250 (uri (cran-uri "hash" version))
7251 (sha256
7252 (base32
7253 "0b3fl0rvgwb992knl81vm99lsldg5clvaqjh6mamm6zqmb6dz056"))))
7254 (build-system r-build-system)
7255 (home-page "https://cran.r-project.org/web/packages/hash/")
7256 (synopsis "Implementation of hash/associated arrays/dictionaries")
7257 (description
7258 "This package implements a data structure similar to hashes in Perl and
7259 dictionaries in Python but with a purposefully R flavor. For objects of
7260 appreciable size, access using hashes outperforms native named lists and
7261 vectors.")
7262 (license license:gpl2+)))
7263
7264 (define-public r-orddom
7265 (package
7266 (name "r-orddom")
7267 (version "3.1")
7268 (source
7269 (origin
7270 (method url-fetch)
7271 (uri (cran-uri "orddom" version))
7272 (sha256
7273 (base32
7274 "165axs15fvwhrp89xd87l81q3h2qjll1vrwcsap645cwvb85nwsh"))))
7275 (build-system r-build-system)
7276 (propagated-inputs `(("r-psych" ,r-psych)))
7277 (home-page "https://cran.r-project.org/web/packages/orddom/")
7278 (synopsis "Ordinal dominance statistics")
7279 (description
7280 "This package provides tools to compute ordinal, statistics and effect
7281 sizes as an alternative to mean comparison: Cliff's delta or success rate
7282 difference (SRD), Vargha and Delaney's A or the Area Under a Receiver
7283 Operating Characteristic Curve (AUC), the discrete type of McGraw & Wong's
7284 Common Language Effect Size (CLES) or Grissom & Kim's Probability of
7285 Superiority (PS), and the Number needed to treat (NNT) effect size. Moreover,
7286 comparisons to Cohen's d are offered based on Huberty & Lowman's Percentage of
7287 Group (Non-)Overlap considerations.")
7288 (license license:gpl2)))
7289
7290 (define-public r-deriv
7291 (package
7292 (name "r-deriv")
7293 (version "4.0")
7294 (source
7295 (origin
7296 (method url-fetch)
7297 (uri (cran-uri "Deriv" version))
7298 (sha256
7299 (base32
7300 "03mlfy8jzzzbh2l18gnmw0a71n9savx4cw72yhkxq93v2xj8fy3n"))))
7301 (properties `((upstream-name . "Deriv")))
7302 (build-system r-build-system)
7303 (home-page "https://cran.r-project.org/web/packages/Deriv")
7304 (synopsis "Symbolic differentiation")
7305 (description
7306 "This package provides an R-based solution for symbolic differentiation.
7307 It admits user-defined functions as well as function substitution in arguments
7308 of functions to be differentiated. Some symbolic simplification is part of
7309 the work.")
7310 (license license:gpl3+)))
7311
7312 (define-public r-doby
7313 (package
7314 (name "r-doby")
7315 (version "4.6.7")
7316 (source
7317 (origin
7318 (method url-fetch)
7319 (uri (cran-uri "doBy" version))
7320 (sha256
7321 (base32
7322 "16vg1aa272sfzyqxfb63fyis9hv6g5m3nmxxa6mk1gy0irqnl3jk"))))
7323 (properties `((upstream-name . "doBy")))
7324 (build-system r-build-system)
7325 (propagated-inputs
7326 `(("r-broom" ,r-broom)
7327 ("r-deriv" ,r-deriv)
7328 ("r-dplyr" ,r-dplyr)
7329 ("r-ggplot2" ,r-ggplot2)
7330 ("r-magrittr" ,r-magrittr)
7331 ("r-mass" ,r-mass)
7332 ("r-matrix" ,r-matrix)
7333 ("r-pbkrtest" ,r-pbkrtest)
7334 ("r-tibble" ,r-tibble)))
7335 (native-inputs
7336 `(("r-knitr" ,r-knitr)))
7337 (home-page "http://people.math.aau.dk/~sorenh/software/doBy/")
7338 (synopsis "Groupwise statistics, LSmeans, linear contrasts, and utilities")
7339 (description
7340 "This package contains:
7341
7342 @itemize
7343 @item facilities for working with grouped data: @code{do}
7344 something to data stratified @code{by} some variables.
7345 @item implementations of least-squares means, general linear contrasts, and
7346 @item miscellaneous other utilities.
7347 @end itemize\n")
7348 (license license:gpl2+)))
7349
7350 (define-public r-refgenome
7351 (package
7352 (name "r-refgenome")
7353 (version "1.7.7")
7354 (source
7355 (origin
7356 (method url-fetch)
7357 (uri (cran-uri "refGenome" version))
7358 (sha256
7359 (base32
7360 "1za89bn3am1zgvm641qi1ab6kaqpll4rb9p9f1sjwvcgqq6065g5"))))
7361 (properties `((upstream-name . "refGenome")))
7362 (build-system r-build-system)
7363 (propagated-inputs
7364 `(("r-dbi" ,r-dbi)
7365 ("r-doby" ,r-doby)
7366 ("r-rsqlite" ,r-rsqlite)))
7367 (home-page "https://cran.r-project.org/web/packages/refGenome/")
7368 (synopsis
7369 "Gene and splice site annotation using annotation data from Ensembl and UCSC")
7370 (description
7371 "This package contains functionality for importing and managing of
7372 downloaded genome annotation data from the Ensembl genome browser (European
7373 Bioinformatics Institute) and from the UCSC genome browser (University of
7374 California, Santa Cruz) and annotation routines for genomic positions and
7375 splice site positions.")
7376 (license license:gpl2)))
7377
7378 (define-public r-basix
7379 (package
7380 (name "r-basix")
7381 (version "1.1")
7382 (source
7383 (origin
7384 (method url-fetch)
7385 (uri (cran-uri "BASIX" version))
7386 (sha256
7387 (base32
7388 "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id"))))
7389 (properties `((upstream-name . "BASIX")))
7390 (build-system r-build-system)
7391 (home-page "https://cran.r-project.org/web/packages/BASIX/")
7392 (synopsis "Efficient C/C++ toolset for R")
7393 (description
7394 "BASIX provides some efficient C/C++ implementations of native R
7395 procedures to speed up calculations in R.")
7396 (license license:gpl2)))
7397
7398 (define-public r-blockfest
7399 (package
7400 (name "r-blockfest")
7401 (version "1.6")
7402 (source
7403 (origin
7404 (method url-fetch)
7405 (uri (cran-uri "BlockFeST" version))
7406 (sha256
7407 (base32
7408 "0hj7a5as7nxbgjac7lbj6qfwffx3g8x8phpf9a55f1c9cdzi73a5"))))
7409 (properties `((upstream-name . "BlockFeST")))
7410 (build-system r-build-system)
7411 (propagated-inputs `(("r-basix" ,r-basix)))
7412 (home-page "https://cran.r-project.org/web/packages/BlockFeST/")
7413 (synopsis "Bayesian calculation of region-specific fixation index")
7414 (description
7415 "This package provides an R implementation of an extension of the
7416 BayeScan software for codominant markers, adding the option to group
7417 individual SNPs into pre-defined blocks. A typical application of this new
7418 approach is the identification of genomic regions, genes, or gene sets
7419 containing one or more SNPs that evolved under directional selection.")
7420 (license license:gpl2)))
7421
7422 (define-public r-proc
7423 (package
7424 (name "r-proc")
7425 (version "1.16.2")
7426 (source
7427 (origin
7428 (method url-fetch)
7429 (uri (cran-uri "pROC" version))
7430 (sha256
7431 (base32
7432 "0apwa5zzqh74pjnvf5a1s5qf6i9r5h44jdllfrwymkd2v479d2xn"))))
7433 (properties `((upstream-name . "pROC")))
7434 (build-system r-build-system)
7435 (propagated-inputs
7436 `(("r-plyr" ,r-plyr)
7437 ("r-rcpp" ,r-rcpp)))
7438 (home-page "https://web.expasy.org/pROC/")
7439 (synopsis "Display and analyze ROC curves")
7440 (description
7441 "This package provides tools for visualizing, smoothing and comparing
7442 receiver operating characteristic (ROC curves). The area under the
7443 curve (AUC) can be compared with statistical tests based on U-statistics or
7444 bootstrap. Confidence intervals can be computed for (p)AUC or ROC curves.")
7445 (license license:gpl3+)))
7446
7447 (define-public r-rootsolve
7448 (package
7449 (name "r-rootsolve")
7450 (version "1.8.2.1")
7451 (source
7452 (origin
7453 (method url-fetch)
7454 (uri (cran-uri "rootSolve" version))
7455 (sha256
7456 (base32
7457 "0c9hhgq1pgqdg80a6n2ssfbj5nyaf97y4iiya7j7l6b34qc53128"))))
7458 (properties `((upstream-name . "rootSolve")))
7459 (build-system r-build-system)
7460 (native-inputs `(("gfortran" ,gfortran)))
7461 (home-page "https://cran.r-project.org/web/packages/rootSolve/")
7462 (synopsis "Tools for the analysis of ordinary differential equations")
7463 (description
7464 "This package provides routines to find the root of nonlinear functions,
7465 and to perform steady-state and equilibrium analysis of @dfn{ordinary
7466 differential equations} (ODE). It includes routines that:
7467
7468 @enumerate
7469 @item generate gradient and jacobian matrices (full and banded),
7470 @item find roots of non-linear equations by the Newton-Raphson method,
7471 @item estimate steady-state conditions of a system of (differential) equations
7472 in full, banded or sparse form, using the Newton-Raphson method, or by
7473 dynamically running,
7474 @item solve the steady-state conditions for uni- and multicomponent 1-D, 2-D,
7475 and 3-D partial differential equations, that have been converted to ordinary
7476 differential equations by numerical differencing (using the method-of-lines
7477 approach).
7478 @end enumerate\n")
7479 (license license:gpl2+)))
7480
7481 (define-public r-abcanalysis
7482 (package
7483 (name "r-abcanalysis")
7484 (version "1.2.1")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (cran-uri "ABCanalysis" version))
7489 (sha256
7490 (base32 "0wac1ksmnxa36v99ca4hv8k0rsh3igwpcllmlv9wf7i9kgqviqwi"))))
7491 (properties `((upstream-name . "ABCanalysis")))
7492 (build-system r-build-system)
7493 (propagated-inputs `(("r-plotrix" ,r-plotrix)))
7494 (home-page "https://www.uni-marburg.de/fb12/arbeitsgruppen/datenbionik/software-en/")
7495 (synopsis "Computed ABC Analysis")
7496 (description
7497 "Multivariate data sets often differ in several factors or derived statistical
7498 parameters, which have to be selected for a valid interpretation. Basing this
7499 selection on traditional statistical limits leads occasionally to the perception
7500 of losing information from a data set. This package provides tools to calculate
7501 these limits on the basis of the mathematical properties of the distribution of
7502 the analyzed items.")
7503 (license license:gpl3)))
7504
7505 (define-public r-slam
7506 (package
7507 (name "r-slam")
7508 (version "0.1-47")
7509 (source
7510 (origin
7511 (method url-fetch)
7512 (uri (cran-uri "slam" version))
7513 (sha256
7514 (base32 "12fggw2c7hz3bpvsaqm24g3r6lbpq6jgli24g7x5j859iak5cqv9"))))
7515 (build-system r-build-system)
7516 (home-page "https://cran.r-project.org/web/packages/slam/")
7517 (synopsis "Sparse lightweight arrays and matrices")
7518 (description
7519 "This package contains data structures and algorithms for sparse arrays and matrices,
7520 based on index arrays and simple triplet representations, respectively.")
7521 (license license:gpl2)))
7522
7523 (define-public r-manipulatewidget
7524 (package
7525 (name "r-manipulatewidget")
7526 (version "0.10.1")
7527 (source
7528 (origin
7529 (method url-fetch)
7530 (uri (cran-uri "manipulateWidget" version))
7531 (sha256
7532 (base32 "1vi71sjh7z1a880wffk8qqw7iysvk42q78giqxmm2sqz2a912qlx"))))
7533 (properties
7534 `((upstream-name . "manipulateWidget")))
7535 (build-system r-build-system)
7536 (propagated-inputs
7537 `(("r-base64enc" ,r-base64enc)
7538 ("r-codetools" ,r-codetools)
7539 ("r-htmltools" ,r-htmltools)
7540 ("r-htmlwidgets" ,r-htmlwidgets)
7541 ("r-knitr" ,r-knitr)
7542 ("r-miniui" ,r-miniui)
7543 ("r-shiny" ,r-shiny)
7544 ("r-webshot" ,r-webshot)))
7545 (home-page "https://github.com/rte-antares-rpackage/manipulateWidget/")
7546 (synopsis "Add even more interactivity to interactive charts")
7547 (description
7548 "This package lets you create in just a few lines of R code a nice user interface to
7549 modify the data or the graphical parameters of one or multiple interactive
7550 charts. It is useful to quickly explore visually some data or for package
7551 developers to generate user interfaces easy to maintain.")
7552 (license license:gpl2+)))
7553
7554 (define-public r-a3
7555 (package
7556 (name "r-a3")
7557 (version "1.0.0")
7558 (source
7559 (origin
7560 (method url-fetch)
7561 (uri (cran-uri "A3" version))
7562 (sha256
7563 (base32 "017hq9pjsv1h9i7cqk5cfx27as54shlhdsdvr6jkhb8jfkpdb6cw"))))
7564 (properties `((upstream-name . "A3")))
7565 (build-system r-build-system)
7566 (propagated-inputs
7567 `(("r-pbapply" ,r-pbapply)
7568 ("r-xtable" ,r-xtable)))
7569 (home-page "https://cran.r-project.org/web/packages/A3/")
7570 (synopsis "Error metrics for predictive models")
7571 (description
7572 "This package supplies tools for tabulating and analyzing the results of predictive
7573 models. The methods employed are applicable to virtually any predictive model
7574 and make comparisons between different methodologies straightforward.")
7575 (license license:gpl2+)))
7576
7577 (define-public r-infotheo
7578 (package
7579 (name "r-infotheo")
7580 (version "1.2.0")
7581 (source
7582 (origin
7583 (method url-fetch)
7584 (uri (cran-uri "infotheo" version))
7585 (sha256
7586 (base32
7587 "18xacczfq3z3xpy434js4nf3l19lczngzd0lq26wh22pvg1yniwv"))))
7588 (build-system r-build-system)
7589 (home-page "http://homepage.meyerp.com/software")
7590 (synopsis "Information-theoretic measures")
7591 (description
7592 "This package implements various measures of information theory based on
7593 several entropy estimators.")
7594 (license license:gpl3+)))
7595
7596 (define-public r-abcoptim
7597 (package
7598 (name "r-abcoptim")
7599 (version "0.15.0")
7600 (source
7601 (origin
7602 (method url-fetch)
7603 (uri (cran-uri "ABCoptim" version))
7604 (sha256
7605 (base32 "1ih0xk88qhsmpvnxf56041wx5sk8as2f4f2gdnpnwdym9mbr9n4b"))))
7606 (properties `((upstream-name . "ABCoptim")))
7607 (build-system r-build-system)
7608 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
7609 (home-page "https://github.com/gvegayon/ABCoptim/")
7610 (synopsis "Optimization of Artificial Bee Colony algorithm")
7611 (description
7612 "Artificial Bee Colony (ABC) is one of the most recently defined algorithms by Dervis
7613 Karaboga in 2005, motivated by the intelligent behavior of honey bees. It is as
7614 simple as Particle Swarm Optimization (PSO) and Differential Evolution (DE)
7615 algorithms, and uses only common control parameters such as colony size and
7616 maximum cycle number. The @code{r-abcoptim} implements the Artificial bee
7617 colony optimization algorithm @url{http://mf.erciyes.edu.tr/abc/pub/tr06_2005.pdf}.
7618 This version is a work-in-progress and is written in R code.")
7619 (license license:expat)))
7620
7621 (define-public r-abcp2
7622 (package
7623 (name "r-abcp2")
7624 (version "1.2")
7625 (source
7626 (origin
7627 (method url-fetch)
7628 (uri (cran-uri "ABCp2" version))
7629 (sha256
7630 (base32 "1s2skkxpzss7c29i8600psgrp0hl46jcrxqrmy2b4db8hc0kcnbx"))))
7631 (properties `((upstream-name . "ABCp2")))
7632 (build-system r-build-system)
7633 (propagated-inputs `(("r-mass" ,r-mass)))
7634 (home-page "https://cran.r-project.org/web/packages/ABCp2/")
7635 (synopsis "Approximate Bayesian Computational Model for Estimating P2")
7636 (description
7637 "This package tests the goodness of fit of a distribution of offspring to the Normal,
7638 Poisson, and Gamma distribution and estimates the proportional paternity of the
7639 second male (P2) based on the best fit distribution.")
7640 (license license:gpl2)))
7641
7642 (define-public r-abcrf
7643 (package
7644 (name "r-abcrf")
7645 (version "1.8.1")
7646 (source
7647 (origin
7648 (method url-fetch)
7649 (uri (cran-uri "abcrf" version))
7650 (sha256
7651 (base32 "1ghbd24yhqy3xhdxas6ccn84nkavqpgldx5ck8kijknc7qjm8k27"))))
7652 (build-system r-build-system)
7653 (propagated-inputs
7654 `(("r-doparallel" ,r-doparallel)
7655 ("r-foreach" ,r-foreach)
7656 ("r-mass" ,r-mass)
7657 ("r-matrixstats" ,r-matrixstats)
7658 ("r-ranger" ,r-ranger)
7659 ("r-rcpp" ,r-rcpp)
7660 ("r-rcpparmadillo" ,r-rcpparmadillo)
7661 ("r-readr" ,r-readr)
7662 ("r-stringr" ,r-stringr)))
7663 (home-page "https://cran.r-project.org/web/packages/abcrf/")
7664 (synopsis "Approximate bayesian computation via random forests")
7665 (description
7666 "This package performs approximate bayesian computation (ABC) model choice and
7667 parameter inference via random forests. This machine learning tool named random
7668 forests (RF) can conduct selection among the highly complex models covered by
7669 ABC algorithms.")
7670 (license license:gpl2+)))
7671
7672 (define-public r-abctools
7673 (package
7674 (name "r-abctools")
7675 (version "1.1.3")
7676 (source
7677 (origin
7678 (method url-fetch)
7679 (uri (cran-uri "abctools" version))
7680 (sha256
7681 (base32 "07s9dg10i8lsxl73b4n2hynca2fjgb0ykb0dz8c3zv6cgw3cyx97"))))
7682 (build-system r-build-system)
7683 (propagated-inputs
7684 `(("r-abc" ,r-abc)
7685 ("r-abind" ,r-abind)
7686 ("r-hmisc" ,r-hmisc)
7687 ("r-plyr" ,r-plyr)))
7688 (home-page "https://github.com/dennisprangle/abctools/")
7689 (synopsis "Tools for ABC analyses")
7690 (description
7691 "This @code{r-abctools} package provides tools for approximate Bayesian computation
7692 including summary statistic selection and assessing coverage. This includes
7693 recent dimension reduction algorithms to tune the choice of summary statistics,
7694 and coverage methods to tune the choice of threshold.")
7695 (license license:gpl2+)))
7696
7697 (define-public r-ggstance
7698 (package
7699 (name "r-ggstance")
7700 (version "0.3.4")
7701 (source
7702 (origin
7703 (method url-fetch)
7704 (uri (cran-uri "ggstance" version))
7705 (sha256
7706 (base32 "0aqz3dn02cgij018a4sglqwrwr9dzzj12l8xr1064q7hfd4f64m1"))))
7707 (build-system r-build-system)
7708 (propagated-inputs
7709 `(("r-ggplot2" ,r-ggplot2)
7710 ("r-plyr" ,r-plyr)
7711 ("r-rlang" ,r-rlang)
7712 ("r-withr" ,r-withr)))
7713 (home-page "https://cran.r-project.org/web/packages/ggstance/")
7714 (synopsis "Horizontal and vertical versions of @code{r-ggplot2}")
7715 (description
7716 "This package is a @code{r-ggplot2} extension that provides flipped components:
7717 @enumerate
7718 @item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms;
7719 @item vertical versions of @code{r-ggplot2} positions.
7720 @end enumerate")
7721 (license license:gpl3)))
7722
7723 (define-public r-mosaiccore
7724 (package
7725 (name "r-mosaiccore")
7726 (version "0.6.0")
7727 (source
7728 (origin
7729 (method url-fetch)
7730 (uri (cran-uri "mosaicCore" version))
7731 (sha256
7732 (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z"))))
7733 (properties `((upstream-name . "mosaicCore")))
7734 (build-system r-build-system)
7735 (propagated-inputs
7736 `(("r-dplyr" ,r-dplyr)
7737 ("r-lazyeval" ,r-lazyeval)
7738 ("r-mass" ,r-mass)
7739 ("r-rlang" ,r-rlang)
7740 ("r-tidyr" ,r-tidyr)))
7741 (home-page "https://github.com/ProjectMOSAIC/mosaicCore/")
7742 (synopsis "Common utilities for mosaic family packages")
7743 (description
7744 "Common utilities used in other Mosaic family packages are collected here.")
7745 (license license:gpl2+)))
7746
7747 (define-public r-ggformula
7748 (package
7749 (name "r-ggformula")
7750 (version "0.9.4")
7751 (source
7752 (origin
7753 (method url-fetch)
7754 (uri (cran-uri "ggformula" version))
7755 (sha256
7756 (base32 "04vdhg1bbc1psrx9ggaphz7cx4fw5xsmhkqpqfcg2w4ba2bjy46f"))))
7757 (build-system r-build-system)
7758 (propagated-inputs
7759 `(("r-ggforce" ,r-ggforce)
7760 ("r-ggplot2" ,r-ggplot2)
7761 ("r-ggstance" ,r-ggstance)
7762 ("r-magrittr" ,r-magrittr)
7763 ("r-mosaiccore" ,r-mosaiccore)
7764 ("r-rlang" ,r-rlang)
7765 ("r-stringr" ,r-stringr)
7766 ("r-tibble" ,r-tibble)))
7767 (home-page "https://github.com/ProjectMOSAIC/ggformula/")
7768 (synopsis "Formula interface for the @code{r-ggplot2}")
7769 (description
7770 "The @code{r-ggformula} introduces a family of graphics functions, gf_point(),
7771 gf_density(), and so on, bring the formula interface to ggplot(). This captures
7772 and extends the excellent simplicity of the lattice-graphics formula interface,
7773 while providing the intuitive capabilities of @code{r-ggplot2}.")
7774 (license license:expat)))
7775
7776 (define-public r-mosaicdata
7777 (package
7778 (name "r-mosaicdata")
7779 (version "0.18.0")
7780 (source
7781 (origin
7782 (method url-fetch)
7783 (uri (cran-uri "mosaicData" version))
7784 (sha256
7785 (base32 "0cx5dg26ha7nzkdyghkbbd6ikncj60qv1538az77lfgn2jylvkbz"))))
7786 (properties `((upstream-name . "mosaicData")))
7787 (build-system r-build-system)
7788 (home-page "https://cran.r-project.org/web/packages/mosaicData/")
7789 (synopsis "Data sets for project Mosaic")
7790 (description
7791 "This package provides data sets from project Mosaic @url{http://mosaic-web.org}
7792 used to teach mathematics, statistics, computation and modeling.")
7793 (license license:gpl2+)))
7794
7795 (define-public r-raster
7796 (package
7797 (name "r-raster")
7798 (version "3.3-13")
7799 (source
7800 (origin
7801 (method url-fetch)
7802 (uri (cran-uri "raster" version))
7803 (sha256
7804 (base32
7805 "1s6457rq94qvm3s2lqscs2c2gn5kzcpxa13i8nhlgb1klx5kams7"))))
7806 (build-system r-build-system)
7807 (propagated-inputs
7808 `(("r-rcpp" ,r-rcpp)
7809 ("r-sp" ,r-sp)))
7810 (home-page "https://www.rspatial.org/")
7811 (synopsis "Geographic data analysis and modeling")
7812 (description
7813 "The package implements basic and high-level functions for reading,
7814 writing, manipulating, analyzing and modeling of gridded spatial data.
7815 Processing of very large files is supported.")
7816 (license license:gpl3+)))
7817
7818 (define-public r-mosaic
7819 (package
7820 (name "r-mosaic")
7821 (version "1.4.0")
7822 (source
7823 (origin
7824 (method url-fetch)
7825 (uri (cran-uri "mosaic" version))
7826 (sha256
7827 (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2"))))
7828 (build-system r-build-system)
7829 (propagated-inputs
7830 `(("r-broom" ,r-broom)
7831 ("r-dplyr" ,r-dplyr)
7832 ("r-ggdendro" ,r-ggdendro)
7833 ("r-ggformula" ,r-ggformula)
7834 ("r-ggplot2" ,r-ggplot2)
7835 ("r-ggrepel" ,r-ggrepel)
7836 ("r-glue" ,r-glue)
7837 ("r-gridextra" ,r-gridextra)
7838 ("r-lattice" ,r-lattice)
7839 ("r-latticeextra" ,r-latticeextra)
7840 ("r-lazyeval" ,r-lazyeval)
7841 ("r-mass" ,r-mass)
7842 ("r-matrix" ,r-matrix)
7843 ("r-mosaiccore" ,r-mosaiccore)
7844 ("r-mosaicdata" ,r-mosaicdata)
7845 ("r-readr" ,r-readr)
7846 ("r-tidyr" ,r-tidyr)))
7847 (native-inputs
7848 `(("r-knitr" ,r-knitr)))
7849 (home-page "https://github.com/ProjectMOSAIC/mosaic/")
7850 (synopsis "Mathematics, statistics, and computation teaching utilities")
7851 (description
7852 "This package contain data sets and utilities from
7853 @url{http://mosaic-web.org, Project MOSAIC} used to teach mathematics,
7854 statistics, computation and modeling. Project MOSAIC is a community of
7855 educators working to tie together aspects of quantitative work that students
7856 in science, technology, engineering and mathematics will need in their
7857 professional lives, but which are usually taught in isolation, if at all.")
7858 (license license:gpl2+)))
7859
7860 (define-public r-abd
7861 (package
7862 (name "r-abd")
7863 (version "0.2-8")
7864 (source
7865 (origin
7866 (method url-fetch)
7867 (uri (cran-uri "abd" version))
7868 (sha256
7869 (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7"))))
7870 (build-system r-build-system)
7871 (propagated-inputs
7872 `(("r-lattice" ,r-lattice)
7873 ("r-mosaic" ,r-mosaic)
7874 ("r-nlme" ,r-nlme)))
7875 (home-page "https://cran.r-project.org/web/packages/abd/")
7876 (synopsis "Analysis of biological data")
7877 (description
7878 "The @code{r-abd} package contains data sets and sample code for the Analysis of
7879 biological data by Michael Whitlock and Dolph Schluter.")
7880 (license license:gpl2)))
7881
7882 (define-public r-svgui
7883 (package
7884 (name "r-svgui")
7885 (version "1.0.0")
7886 (source
7887 (origin
7888 (method url-fetch)
7889 (uri (cran-uri "svGUI" version))
7890 (sha256
7891 (base32 "1r7ab0p4yr8q03gj02hmj7k1ghksgkg4nx750c0ajfs2q9y1dxfc"))))
7892 (properties `((upstream-name . "svGUI")))
7893 (build-system r-build-system)
7894 (home-page "https://github.com/SciViews/svGUI/")
7895 (synopsis "Functions for managing GUI clients in R")
7896 (description
7897 "The SciViews @code{svGUI} package eases the management of Graphical User
7898 Interfaces (GUI) in R. It is independent from any particular GUI widgets. It
7899 centralizes info about GUI elements currently used, and it dispatches GUI
7900 calls to the particular toolkits in use in function of the context.")
7901 (license license:gpl2)))
7902
7903 (define-public r-svdialogs
7904 (package
7905 (name "r-svdialogs")
7906 (version "1.0.0")
7907 (source
7908 (origin
7909 (method url-fetch)
7910 (uri (cran-uri "svDialogs" version))
7911 (sha256
7912 (base32 "0xqppydfawnwk84kb5qiybwbcmv38vn4imgz01mz2pnq4xb80p97"))))
7913 (properties `((upstream-name . "svDialogs")))
7914 (build-system r-build-system)
7915 (inputs
7916 `(("yad" ,yad)
7917 ("zenity" ,zenity)))
7918 (propagated-inputs
7919 `(("r-rstudioapi" ,r-rstudioapi)
7920 ("r-svgui" ,r-svgui)))
7921 (home-page "https://github.com/SciViews/svDialogs/")
7922 (synopsis "Portable dialog boxes")
7923 (description
7924 "This package helps to construct standard dialog boxes for your GUI, including
7925 message boxes, input boxes, list, file or directory selection, and others. In
7926 case R cannot display GUI dialog boxes, a simpler command line version of these
7927 interactive elements is also provided as a fallback solution.")
7928 (license license:gpl2)))
7929
7930 (define-public r-abe
7931 (package
7932 (name "r-abe")
7933 (version "3.0.1")
7934 (source
7935 (origin
7936 (method url-fetch)
7937 (uri (cran-uri "abe" version))
7938 (sha256
7939 (base32
7940 "1f19h3xzzmjhvwc1rrb8z0rai3ip03y4gdi2gg9bfr5sg2nfklk6"))))
7941 (build-system r-build-system)
7942 (home-page "https://cran.r-project.org/web/packages/abe/")
7943 (synopsis "Augmented backward elimination")
7944 (description
7945 "This package performs augmented backward elimination and checks the
7946 stability of the obtained model. Augmented backward elimination combines
7947 significance or information based criteria with the change in estimate to
7948 either select the optimal model for prediction purposes or to serve as a tool
7949 to obtain a practically sound, highly interpretable model.")
7950 (license license:gpl2+)))
7951
7952 (define-public r-abf2
7953 (package
7954 (name "r-abf2")
7955 (version "0.7-1")
7956 (source
7957 (origin
7958 (method url-fetch)
7959 (uri (cran-uri "abf2" version))
7960 (sha256
7961 (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx"))))
7962 (build-system r-build-system)
7963 (home-page "https://cran.r-project.org/web/packages/abf2/")
7964 (synopsis "Load gap-free axon @code{r-abf2} files")
7965 (description
7966 "This package loads electrophysiology data from ABF2 files, as created by
7967 Axon Instruments/Molecular Devices software. Only files recorded in gap-free
7968 mode are currently supported.")
7969 (license license:artistic2.0)))
7970
7971 (define-public r-abhgenotyper
7972 (package
7973 (name "r-abhgenotyper")
7974 (version "1.0.1")
7975 (source
7976 (origin
7977 (method url-fetch)
7978 (uri (cran-uri "ABHgenotypeR" version))
7979 (sha256
7980 (base32 "08cpmnaaxsm5c5bjifnfxdlvg5inrf13biqpcl2yq5zpqjmiki0l"))))
7981 (properties `((upstream-name . "ABHgenotypeR")))
7982 (build-system r-build-system)
7983 (propagated-inputs
7984 `(("r-ggplot2" ,r-ggplot2)
7985 ("r-reshape2" ,r-reshape2)))
7986 (home-page "https://github.com/StefanReuscher/ABHgenotypeR/")
7987 (synopsis "Visualize and manipulate ABH genotypes")
7988 (description
7989 "The @code{r-abhgenotyper} package provides simple imputation,
7990 error-correction and plotting capacities for genotype data. The package is
7991 supposed to serve as an intermediate but independent analysis tool between the
7992 TASSEL GBS pipeline and the @code{r-qtl} package. It provides functionalities
7993 not found in either TASSEL or @code{r-qtl} in addition to visualization of
7994 genotypes as \"graphical genotypes\".")
7995 (license license:gpl3)))
7996
7997 (define-public r-furrr
7998 (package
7999 (name "r-furrr")
8000 (version "0.1.0")
8001 (source
8002 (origin
8003 (method url-fetch)
8004 (uri (cran-uri "furrr" version))
8005 (sha256
8006 (base32
8007 "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
8008 (build-system r-build-system)
8009 (propagated-inputs
8010 `(("r-future" ,r-future)
8011 ("r-globals" ,r-globals)
8012 ("r-purrr" ,r-purrr)
8013 ("r-rlang" ,r-rlang)))
8014 (home-page "https://github.com/DavisVaughan/furrr")
8015 (synopsis "Apply mapping functions in parallel using futures")
8016 (description
8017 "This package provides implementations of the family of @code{map()}
8018 functions from the @code{purrr} package that can be resolved using any
8019 @code{future}-supported backend, e.g. parallel on the local machine or
8020 distributed on a compute cluster.")
8021 (license license:lgpl2.1+)))
8022
8023 (define-public r-abjutils
8024 (package
8025 (name "r-abjutils")
8026 (version "0.3.1")
8027 (source
8028 (origin
8029 (method url-fetch)
8030 (uri (cran-uri "abjutils" version))
8031 (sha256
8032 (base32 "18mmlkqsrjfclk8islfjdsp8sbw6dpjj5x45kqilxdiss69gg5zd"))))
8033 (build-system r-build-system)
8034 (propagated-inputs
8035 `(("r-dplyr" ,r-dplyr)
8036 ("r-magrittr" ,r-magrittr)
8037 ("r-purrr" ,r-purrr)
8038 ("r-rlang" ,r-rlang)
8039 ("r-rstudioapi" ,r-rstudioapi)
8040 ("r-stringi" ,r-stringi)
8041 ("r-stringr" ,r-stringr)
8042 ("r-tidyr" ,r-tidyr)))
8043 (home-page "https://github.com/abjur/abjutils/")
8044 (synopsis "Collection of tools for jurimetrical analysis")
8045 (description
8046 "This package implements general purpose tools, such as functions for
8047 sampling and basic manipulation of Brazilian lawsuits identification number.
8048 It also implements functions for text cleaning, such as accentuation
8049 removal.")
8050 (license license:expat)))
8051
8052 (define-public r-abnormality
8053 (package
8054 (name "r-abnormality")
8055 (version "0.1.0")
8056 (source
8057 (origin
8058 (method url-fetch)
8059 (uri (cran-uri "abnormality" version))
8060 (sha256
8061 (base32 "1fzfskl9akl06nliy8hkv2a0pznpj8pwcypg3gj5r2nzvr3kan9v"))))
8062 (build-system r-build-system)
8063 (propagated-inputs
8064 `(("r-mass" ,r-mass)
8065 ("r-matrix" ,r-matrix)))
8066 (home-page "https://cran.r-project.org/web/packages/abnormality/")
8067 (synopsis "Measure a subject's abnormality with respect to a reference population")
8068 (description
8069 "This package contains functions to implement the methodology and
8070 considerations laid out by Marks et al. in the article \"Measuring abnormality
8071 in high dimensional spaces: applications in biomechanical gait analysis\".
8072 Using high-dimensional datasets to measure a subject's overall level of
8073 abnormality as compared to a reference population is often needed in outcomes
8074 research.")
8075 (license license:expat)))
8076
8077 (define-public r-abodoutlier
8078 (package
8079 (name "r-abodoutlier")
8080 (version "0.1")
8081 (source
8082 (origin
8083 (method url-fetch)
8084 (uri (cran-uri "abodOutlier" version))
8085 (sha256
8086 (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
8087 (properties `((upstream-name . "abodOutlier")))
8088 (build-system r-build-system)
8089 (propagated-inputs
8090 `(("r-cluster" ,r-cluster)))
8091 (home-page "https://cran.r-project.org/web/packages/abodOutlier/")
8092 (synopsis "Angle-based outlier detection")
8093 (description
8094 "This package performs angle-based outlier detection on a given data
8095 frame. It offers three methods to process data:
8096 @enumerate
8097 @item full but slow implementation using all the data that has cubic
8098 complexity;
8099 @item a fully randomized method;
8100 @item a method using k-nearest neighbours.
8101 @end enumerate
8102 These algorithms are well suited for high dimensional data outlier
8103 detection.")
8104 (license license:expat)))
8105
8106 (define-public r-abps
8107 (package
8108 (name "r-abps")
8109 (version "0.3")
8110 (source
8111 (origin
8112 (method url-fetch)
8113 (uri (cran-uri "ABPS" version))
8114 (sha256
8115 (base32 "0n3f66nmfi5v94il1mxy026mi84w01ph2aljk60vn3mrz8kwf2ll"))))
8116 (properties `((upstream-name . "ABPS")))
8117 (build-system r-build-system)
8118 (propagated-inputs `(("r-kernlab" ,r-kernlab)))
8119 (home-page "https://cran.r-project.org/web/packages/ABPS/")
8120 (synopsis "Abnormal blood profile score to detect blood doping")
8121 (description
8122 "This package offers an implementation of the @dfn{Abnormal blood profile score} (ABPS).
8123 The ABPS is a part of the Athlete biological passport program of the World
8124 anti-doping agency, which combines several blood parameters into a single
8125 score in order to detect blood doping. The package also contains functions to
8126 calculate other scores used in anti-doping programs, such as the ratio of
8127 hemoglobin to reticulocytes (OFF-score), as well as example data.")
8128 (license license:gpl2+)))
8129
8130 (define-public r-parmigene
8131 (package
8132 (name "r-parmigene")
8133 (version "1.1.0")
8134 (source
8135 (origin
8136 (method url-fetch)
8137 (uri (cran-uri "parmigene" version))
8138 (sha256
8139 (base32
8140 "067rqxqyzy1fsjj0s1g7af4527whwdhzjzc5b8a8n7683na59ns4"))))
8141 (build-system r-build-system)
8142 (home-page "https://cran.r-project.org/web/packages/parmigene/")
8143 (synopsis "Mutual information estimation for gene network reconstruction")
8144 (description
8145 "This package provides a parallel estimation of the mutual information
8146 based on entropy estimates from k-nearest neighbors distances and algorithms
8147 for the reconstruction of gene regulatory networks.")
8148 (license license:agpl3+)))
8149
8150 (define-public r-pscl
8151 (package
8152 (name "r-pscl")
8153 (version "1.5.5")
8154 (source
8155 (origin
8156 (method url-fetch)
8157 (uri (cran-uri "pscl" version))
8158 (sha256
8159 (base32 "0vzf5wazs92bhqhqd66v3vwmbfmnh67gb2466g1xxawim649nk05"))))
8160 (build-system r-build-system)
8161 (propagated-inputs
8162 `(("r-mass" ,r-mass)))
8163 (home-page "https://github.com/atahk/pscl/")
8164 (synopsis "Political science computational laboratory")
8165 (description
8166 "The @code{pscl} is an R package providing classes and methods for:
8167 @enumerate
8168 @item Bayesian analysis of roll call data (item-response models);
8169 @item elementary Bayesian statistics;
8170 @item maximum likelihood estimation of zero-inflated and hurdle models for count
8171 data;
8172 @item utility functions.
8173 @end enumerate")
8174 (license license:gpl2)))
8175
8176 (define-public r-accelmissing
8177 (package
8178 (name "r-accelmissing")
8179 (version "1.4")
8180 (source
8181 (origin
8182 (method url-fetch)
8183 (uri (cran-uri "accelmissing" version))
8184 (sha256
8185 (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy"))))
8186 (build-system r-build-system)
8187 (propagated-inputs
8188 `(("r-mice" ,r-mice)
8189 ("r-pscl" ,r-pscl)))
8190 (home-page "https://cran.r-project.org/web/packages/accelmissing/")
8191 (synopsis "Missing value imputation for accelerometer data")
8192 (description
8193 "This package provides a statistical method to impute the missing values in
8194 accelerometer data. The methodology includes both parametric and
8195 semi-parametric multiple imputations under the zero-inflated Poisson lognormal
8196 model. It also provides multiple functions to preprocess the accelerometer data
8197 previous to the missing data imputation. These include detecting the wearing
8198 and the non-wearing time, selecting valid days and subjects, and creating plots.")
8199 (license license:gpl2+)))
8200
8201 (define-public r-mhsmm
8202 (package
8203 (name "r-mhsmm")
8204 (version "0.4.16")
8205 (source
8206 (origin
8207 (method url-fetch)
8208 (uri (cran-uri "mhsmm" version))
8209 (sha256
8210 (base32 "009dj0zkj1zry7jr9hf4cknb686z50a2l967if64xm0dvjmp7dgs"))))
8211 (build-system r-build-system)
8212 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8213 (home-page "https://github.com/jaredo/mhsmm/")
8214 (synopsis "Inference for hidden Markov and semi-Markov models")
8215 (description
8216 "The @code{r-mhsmm} package implements estimation and prediction methods for
8217 hidden Markov and semi-Markov models for multiple observation sequences. Such
8218 techniques are of interest when observed data is thought to be dependent on some
8219 unobserved (or hidden) state. Also, this package is suitable for equidistant
8220 time series data, with multivariate and/or missing data. Allows user defined
8221 emission distributions.")
8222 (license license:gpl2+)))
8223
8224 (define-public r-nleqslv
8225 (package
8226 (name "r-nleqslv")
8227 (version "3.3.2")
8228 (source
8229 (origin
8230 (method url-fetch)
8231 (uri (cran-uri "nleqslv" version))
8232 (sha256
8233 (base32 "1v9znvncyigw9r25wx2ma0b7ib179b488dl0qsrhp5zrcz7mcjgm"))))
8234 (build-system r-build-system)
8235 (native-inputs `(("gfortran" ,gfortran)))
8236 (home-page "https://cran.r-project.org/web/packages/nleqslv/")
8237 (synopsis "Solve systems of nonlinear equations")
8238 (description
8239 "The @code{r-nleqslv} package solves a system of nonlinear equations using a
8240 Broyden or a Newton method with a choice of global strategies such as line
8241 search and trust region. There are options for using a numerical or user
8242 supplied Jacobian, for specifying a banded numerical Jacobian and for allowing a
8243 singular or ill-conditioned Jacobian.")
8244 (license license:gpl2+)))
8245
8246 (define-public r-physicalactivity
8247 (package
8248 (name "r-physicalactivity")
8249 (version "0.2-2")
8250 (source
8251 (origin
8252 (method url-fetch)
8253 (uri (cran-uri "PhysicalActivity" version))
8254 (sha256
8255 (base32 "14z6plgwyr46vs9m997rvlz8sdglfs9g087an8668zqkzzs2w4ln"))))
8256 (properties
8257 `((upstream-name . "PhysicalActivity")))
8258 (build-system r-build-system)
8259 (home-page "https://cran.r-project.org/web/packages/PhysicalActivity/")
8260 (synopsis "Procesing accelerometer data for physical activity measurement")
8261 (description
8262 "This @code{r-physicalactivity} package provides a function @code{wearingMarking}
8263 for classification of monitor wear and nonwear time intervals in accelerometer
8264 data collected to assess physical activity. The package also contains functions
8265 for making plots of accelerometer data and obtaining the summary of various
8266 information including daily monitor wear time and the mean monitor wear time
8267 during valid days. The revised package version 0.2-1 improved the functions
8268 regarding speed, robustness and add better support for time zones and daylight
8269 saving. In addition, several functions were added:
8270 @enumerate
8271 @item the @code{markDelivery} can classify days for ActiGraph delivery by mail;
8272 @item the @code{markPAI} can categorize physical activity intensity level based
8273 on user-defined cut-points of accelerometer counts.
8274 @end enumerate
8275 It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
8276 @code{queryActigraph} functions.")
8277 (license license:gpl3+)))
8278
8279 (define-public r-acc
8280 (package
8281 (name "r-acc")
8282 (version "1.3.3")
8283 (source
8284 (origin
8285 (method url-fetch)
8286 (uri (cran-uri "acc" version))
8287 (sha256
8288 (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
8289 (build-system r-build-system)
8290 (propagated-inputs
8291 `(("r-circlize" ,r-circlize)
8292 ("r-dbi" ,r-dbi)
8293 ("r-ggplot2" ,r-ggplot2)
8294 ("r-iterators" ,r-iterators)
8295 ("r-mhsmm" ,r-mhsmm)
8296 ("r-nleqslv" ,r-nleqslv)
8297 ("r-physicalactivity" ,r-physicalactivity)
8298 ("r-plyr" ,r-plyr)
8299 ("r-r-utils" ,r-r-utils)
8300 ("r-rcpp" ,r-rcpp)
8301 ("r-rcpparmadillo" ,r-rcpparmadillo)
8302 ("r-rsqlite" ,r-rsqlite)
8303 ("r-zoo" ,r-zoo)))
8304 (home-page "https://cran.r-project.org/web/packages/acc/")
8305 (synopsis "Exploring accelerometer data")
8306 (description
8307 "This package processes accelerometer data from uni-axial and tri-axial devices
8308 and generates data summaries. Also, includes functions to plot, analyze, and
8309 simulate accelerometer data.")
8310 (license license:gpl2+)))
8311
8312 (define-public r-rbenchmark
8313 (package
8314 (name "r-rbenchmark")
8315 (version "1.0.0")
8316 (source
8317 (origin
8318 (method url-fetch)
8319 (uri (cran-uri "rbenchmark" version))
8320 (sha256
8321 (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
8322 (build-system r-build-system)
8323 (home-page "https://cran.r-project.org/web/packages/rbenchmark/")
8324 (synopsis "Benchmarking routine for R")
8325 (description
8326 "This @code{r-rbenchmark} package is inspired by the Perl module Benchmark,
8327 and is intended to facilitate benchmarking of arbitrary R code. The library
8328 consists of just one function, benchmark, which is a simple wrapper around
8329 system.time. Given a specification of the benchmarking process (counts of
8330 replications, evaluation environment) and an arbitrary number of expressions,
8331 benchmark evaluates each of the expressions in the specified environment,
8332 replicating the evaluation as many times as specified, and returning the results
8333 conveniently wrapped into a data frame.")
8334 (license license:gpl2+)))
8335
8336 (define-public r-mitools
8337 (package
8338 (name "r-mitools")
8339 (version "2.4")
8340 (source
8341 (origin
8342 (method url-fetch)
8343 (uri (cran-uri "mitools" version))
8344 (sha256
8345 (base32
8346 "0c2x2n1p53lcw0vx4vmy5j7m2f95i7g2iwbryl89imr99rvz617j"))))
8347 (build-system r-build-system)
8348 (propagated-inputs `(("r-dbi" ,r-dbi)))
8349 (home-page "https://cran.r-project.org/web/packages/mitools/")
8350 (synopsis "Tools for multiple imputation of missing data")
8351 (description
8352 "This package provides tools to perform analyses and combine results from
8353 multiple-imputation datasets.")
8354 (license license:gpl2)))
8355
8356 (define-public r-magick
8357 (package
8358 (name "r-magick")
8359 (version "2.4.0")
8360 (source
8361 (origin
8362 (method url-fetch)
8363 (uri (cran-uri "magick" version))
8364 (sha256
8365 (base32
8366 "1y1p2blkg0h6061ay7mdwssxbswgrc25raffp6d8d9cqhdmsa72s"))))
8367 (build-system r-build-system)
8368 (inputs
8369 `(("imagemagick" ,imagemagick)
8370 ("zlib" ,zlib)))
8371 (propagated-inputs
8372 `(("r-curl" ,r-curl)
8373 ("r-magrittr" ,r-magrittr)
8374 ("r-rcpp" ,r-rcpp)))
8375 (native-inputs
8376 `(("pkg-config" ,pkg-config)
8377 ("r-knitr" ,r-knitr)))
8378 (home-page "https://github.com/ropensci/magick")
8379 (synopsis "Advanced graphics and image-processing in R")
8380 (description
8381 "This package provides bindings to ImageMagick, a comprehensive image
8382 processing library. It supports many common formats (PNG, JPEG, TIFF, PDF,
8383 etc.) and manipulations (rotate, scale, crop, trim, flip, blur, etc). All
8384 operations are vectorized via the Magick++ STL meaning they operate either on
8385 a single frame or a series of frames for working with layers, collages, or
8386 animation. In RStudio, images are automatically previewed when printed to the
8387 console, resulting in an interactive editing environment.")
8388 (license license:expat)))
8389
8390 (define-public r-survey
8391 (package
8392 (name "r-survey")
8393 (version "4.0")
8394 (source
8395 (origin
8396 (method url-fetch)
8397 (uri (cran-uri "survey" version))
8398 (sha256
8399 (base32
8400 "1q9x0s86s72gl43zj49gypg6jj2b78xjvxr4lmy5147s9h7z8lxh"))))
8401 (build-system r-build-system)
8402 (propagated-inputs
8403 `(("r-lattice" ,r-lattice)
8404 ("r-matrix" ,r-matrix)
8405 ("r-minqa" ,r-minqa)
8406 ("r-mitools" ,r-mitools)
8407 ("r-numderiv" ,r-numderiv)
8408 ("r-survival" ,r-survival)))
8409 (home-page "http://r-survey.r-forge.r-project.org/survey/")
8410 (synopsis "Analysis of complex survey samples")
8411 (description
8412 "This package provides tools for the analysis of complex survey samples.
8413 The provided features include: summary statistics, two-sample tests, rank
8414 tests, generalised linear models, cumulative link models, Cox models,
8415 loglinear models, and general maximum pseudolikelihood estimation for
8416 multistage stratified, cluster-sampled, unequally weighted survey samples;
8417 variances by Taylor series linearisation or replicate weights;
8418 post-stratification, calibration, and raking; two-phase subsampling designs;
8419 graphics; PPS sampling without replacement; principal components, and factor
8420 analysis.")
8421 ;; Either version of the GPL.
8422 (license (list license:gpl2 license:gpl3))))
8423
8424 (define-public r-gee
8425 (package
8426 (name "r-gee")
8427 (version "4.13-20")
8428 (source
8429 (origin
8430 (method url-fetch)
8431 (uri (cran-uri "gee" version))
8432 (sha256
8433 (base32
8434 "167pzgnmj4cjc41ykps1mfwi6s7y32zxyycn5z17vn4v0pp4q0ak"))))
8435 (properties `((upstream-name . "gee")))
8436 (build-system r-build-system)
8437 (native-inputs
8438 `(("gfortran" ,gfortran)))
8439 (home-page "https://cran.r-project.org/web/packages/gee/")
8440 (synopsis "Generalized estimation equation solver")
8441 (description
8442 "This package provides a solver for generalized estimation equations.")
8443 (license license:gpl2)))
8444
8445 (define-public r-tab
8446 (package
8447 (name "r-tab")
8448 (version "4.1.1")
8449 (source
8450 (origin
8451 (method url-fetch)
8452 (uri (cran-uri "tab" version))
8453 (sha256
8454 (base32
8455 "0ds8n6gncidb66in7hlqkcmil5yfsf7ihqvmls789hrm2iz9xlfm"))))
8456 (properties `((upstream-name . "tab")))
8457 (build-system r-build-system)
8458 (propagated-inputs
8459 `(("r-dplyr" ,r-dplyr)
8460 ("r-gee" ,r-gee)
8461 ("r-knitr" ,r-knitr)
8462 ("r-mass" ,r-mass)
8463 ("r-survey" ,r-survey)
8464 ("r-survival" ,r-survival)
8465 ("r-xtable" ,r-xtable)))
8466 (home-page "https://cran.r-project.org/web/packages/tab/")
8467 (synopsis "Create summary tables for statistical reports")
8468 (description
8469 "This package contains functions for creating various types of summary
8470 tables, e.g. comparing characteristics across levels of a categorical variable
8471 and summarizing fitted generalized linear models, generalized estimating
8472 equations, and Cox proportional hazards models. Functions are available to
8473 handle data from simple random samples as well as complex surveys.")
8474 (license license:gpl3+)))
8475
8476 (define-public r-dvmisc
8477 (package
8478 (name "r-dvmisc")
8479 (version "1.1.4")
8480 (source
8481 (origin
8482 (method url-fetch)
8483 (uri (cran-uri "dvmisc" version))
8484 (sha256
8485 (base32 "01v6sixx0f3nrn6ymfifb3pvd2msfrwm21kmdv38laxq29vc4rsi"))))
8486 (build-system r-build-system)
8487 (propagated-inputs
8488 `(("r-cubature" ,r-cubature)
8489 ("r-data-table" ,r-data-table)
8490 ("r-dplyr" ,r-dplyr)
8491 ("r-ggplot2" ,r-ggplot2)
8492 ("r-mass" ,r-mass)
8493 ("r-mvtnorm" ,r-mvtnorm)
8494 ("r-pracma" ,r-pracma)
8495 ("r-rbenchmark" ,r-rbenchmark)
8496 ("r-rcpp" ,r-rcpp)
8497 ("r-survey" ,r-survey)
8498 ("r-tab" ,r-tab)))
8499 (home-page "https://cran.r-project.org/web/packages/dvmisc/")
8500 (synopsis "Faster computation of common statistics and miscellaneous functions")
8501 (description
8502 "This package implements faster versions of base R functions (e.g. mean, standard
8503 deviation, covariance, weighted mean), mostly written in C++, along with
8504 miscellaneous functions for various purposes (e.g. create the histogram with
8505 fitted probability density function or probability mass function curve, create
8506 the body mass index groups, assess the linearity assumption in logistic
8507 regression).")
8508 (license license:gpl2)))
8509
8510 (define-public r-accelerometry
8511 (package
8512 (name "r-accelerometry")
8513 (version "3.1.2")
8514 (source
8515 (origin
8516 (method url-fetch)
8517 (uri (cran-uri "accelerometry" version))
8518 (sha256
8519 (base32 "13xzrwhr4i1nj9c8vrmfdg2rmrc8n446iihcyxmy99sm99hpzyip"))))
8520 (build-system r-build-system)
8521 (propagated-inputs
8522 `(("r-dvmisc" ,r-dvmisc)
8523 ("r-rcpp" ,r-rcpp)))
8524 (home-page "https://cran.r-project.org/web/packages/accelerometry/")
8525 (synopsis "Functions for processing accelerometer data")
8526 (description
8527 "This package provides a collection of functions that perform operations on
8528 time-series accelerometer data, such as identify the non-wear time, flag minutes
8529 that are part of an activity bout, and find the maximum 10-minute average count
8530 value. The functions are generally very flexible, allowing for a variety of
8531 algorithms to be implemented.")
8532 (license license:gpl3)))
8533
8534 (define-public r-absim
8535 (package
8536 (name "r-absim")
8537 (version "0.2.6")
8538 (source
8539 (origin
8540 (method url-fetch)
8541 (uri (cran-uri "AbSim" version))
8542 (sha256
8543 (base32 "16ddjk8b6xw80ch4jis1y751i9561wdxh0gifbf15qiz3vjckq8m"))))
8544 (properties `((upstream-name . "AbSim")))
8545 (build-system r-build-system)
8546 (propagated-inputs
8547 `(("r-ape" ,r-ape)
8548 ("r-powerlaw" ,r-powerlaw)))
8549 (home-page "https://cran.r-project.org/web/packages/AbSim/")
8550 (synopsis "Time resolved simulations of antibody repertoires")
8551 (description
8552 "This package provides simulation methods for the evolution of antibody repertoires.
8553 The heavy and light chain variable region of both human and C57BL/6 mice can
8554 be simulated in a time-dependent fashion. Both single lineages using one set of
8555 V-, D-, and J-genes or full repertoires can be simulated. The algorithm begins
8556 with an initial V-D-J recombination event, starting the first phylogenetic tree.
8557 Upon completion, the main loop of the algorithm begins, with each iteration
8558 representing one simulated time step. Various mutation events are possible at
8559 each time step, contributing to a diverse final repertoire.")
8560 (license license:gpl2)))
8561
8562 (define-public r-quic
8563 (package
8564 (name "r-quic")
8565 (version "1.1")
8566 (source
8567 (origin
8568 (method url-fetch)
8569 (uri (cran-uri "QUIC" version))
8570 (sha256
8571 (base32 "021bp9xbaih60qmss015ycblbv6d1dvb1z89y93zpqqnc2qhpv3c"))))
8572 (properties `((upstream-name . "QUIC")))
8573 (build-system r-build-system)
8574 (home-page "https://www.cs.utexas.edu/users/sustik/QUIC/")
8575 (synopsis "Regularized sparse inverse covariance matrix estimation")
8576 (description
8577 "This package implements the regularized Gaussian maximum likelihood
8578 estimation of the inverse of a covariance matrix. It uses Newton's method and
8579 coordinate descent to solve the regularized inverse covariance matrix
8580 estimation problem.")
8581 ;; The project home page states that the release is under GPLv3 or later.
8582 ;; The CRAN page only says GPL-3.
8583 (license license:gpl3+)))
8584
8585 (define-public r-abundant
8586 (package
8587 (name "r-abundant")
8588 (version "1.1")
8589 (source
8590 (origin
8591 (method url-fetch)
8592 (uri (cran-uri "abundant" version))
8593 (sha256
8594 (base32 "1m76qdmqvwpgm0sihazi2dna7cgsz9rljal18vgffb5wamwmg9k7"))))
8595 (build-system r-build-system)
8596 (propagated-inputs
8597 `(("r-quic" ,r-quic)))
8598 (home-page "https://cran.r-project.org/web/packages/abundant/")
8599 (synopsis "Abundant regression and high-dimensional principal fitted components")
8600 (description
8601 "This package provides tools to fit and predict with the high-dimensional
8602 principal fitted components model. This model is described by Cook, Forzani,
8603 and Rothman (2012) @url{doi:10.1214/11-AOS962}.")
8604 ;; The DESCRIPTION file states GPL-2, but since it directly depends on a
8605 ;; GPLv3+ package (QUIC) this likely means GPLv2+.
8606 (license license:gpl2+)))
8607
8608 (define-public r-ac3net
8609 (package
8610 (name "r-ac3net")
8611 (version "1.2.2")
8612 (source
8613 (origin
8614 (method url-fetch)
8615 (uri (cran-uri "Ac3net" version))
8616 (sha256
8617 (base32 "1ns4n0xxz6p34c11bj0k7nzgmyqr9mis2b0g5nfz37dbikndyqyz"))))
8618 (properties `((upstream-name . "Ac3net")))
8619 (build-system r-build-system)
8620 (propagated-inputs
8621 `(("r-data-table" ,r-data-table)))
8622 (home-page "https://cran.r-project.org/web/packages/Ac3net/")
8623 (synopsis "Inferring directional conservative causal core gene networks")
8624 (description "This package infers directional Conservative causal core
8625 (gene) networks (C3NET). This is a version of the algorithm C3NET with
8626 directional network.")
8627 (license license:gpl3+)))
8628
8629 (define-public r-aca
8630 (package
8631 (name "r-aca")
8632 (version "1.1")
8633 (source
8634 (origin
8635 (method url-fetch)
8636 (uri (cran-uri "ACA" version))
8637 (sha256
8638 (base32 "1i3hm27nvnkvc39xlh0d1blq8q0q02czmvgi3cazmjx3jvxay0vq"))))
8639 (properties `((upstream-name . "ACA")))
8640 (build-system r-build-system)
8641 (home-page "https://cran.r-project.org/web/packages/ACA/")
8642 (synopsis "Abrupt change-point or aberration detection in point series")
8643 (description
8644 "This package offers an interactive function for the detection of breakpoints in
8645 series.")
8646 ;; Any version of the GPL
8647 (license (list license:gpl2+ license:gpl3+))))
8648
8649 (define-public r-acceptancesampling
8650 (package
8651 (name "r-acceptancesampling")
8652 (version "1.0-6")
8653 (source
8654 (origin
8655 (method url-fetch)
8656 (uri (cran-uri "AcceptanceSampling" version))
8657 (sha256
8658 (base32 "1z3rmln63ki2kik9kinbwr9qhr32ggbmh4mm3xqy6di119n47ca9"))))
8659 (properties
8660 `((upstream-name . "AcceptanceSampling")))
8661 (build-system r-build-system)
8662 (home-page "https://cran.r-project.org/web/packages/AcceptanceSampling/")
8663 (synopsis "Creation and evaluation of acceptance sampling plans")
8664 (description
8665 "This @code{r-acceptancesampling} provides functionality for creating and evaluating
8666 acceptance sampling plans. Acceptance sampling is a methodology commonly used
8667 in quality control and improvement. International standards of acceptance
8668 sampling provide sampling plans for specific circumstances. The aim of this
8669 package is to provide an easy-to-use interface to visualize single, double or
8670 multiple sampling plans. In addition, methods have been provided to enable the
8671 user to assess sampling plans against pre-specified levels of performance, as
8672 measured by the probability of acceptance for a given level of quality in the
8673 lot.")
8674 (license license:gpl3+)))
8675
8676 (define-public r-acclma
8677 (package
8678 (name "r-acclma")
8679 (version "1.0")
8680 (source
8681 (origin
8682 (method url-fetch)
8683 (uri (cran-uri "ACCLMA" version))
8684 (sha256
8685 (base32 "1na27sp18fq12gp6vxgqw1ffsz2yi1d8xvrxbrzx5g1kqxrayy0v"))))
8686 (properties `((upstream-name . "ACCLMA")))
8687 (build-system r-build-system)
8688 (home-page "https://cran.r-project.org/web/packages/ACCLMA/")
8689 (synopsis "ACC & LMA graph plotting")
8690 (description
8691 "This package contains a function that imports data from a @acronym{CSV,
8692 Comma-Separated Values} file, or uses manually entered data from the format (x,
8693 y, weight) and plots the appropriate @acronym{ACC, Absolute Concentration
8694 Curve} vs @acronym{LOI, Line of Independence} graph and
8695 @acronym{LMA, @acronym{LOI} Minus @acronym{ACC}} graph. The main
8696 function is @code{plotLMA} (source file, header) that takes a data set and plots the
8697 appropriate @acronym{LMA} and @acronym{ACC} graphs. If no source file (a
8698 string) was passed, a manual data entry window is opened. The header parameter
8699 indicates by TRUE/FALSE (false by default) if the source @acronym{CSV} file has
8700 a header row or not. The dataset should contain only one independent variable
8701 (x) and one dependent variable (y) and can contain a weight for each
8702 observation.")
8703 (license license:gpl2)))
8704
8705 (define-public r-aspi
8706 (package
8707 (name "r-aspi")
8708 (version "0.2.0")
8709 (source
8710 (origin
8711 (method url-fetch)
8712 (uri (cran-uri "aspi" version))
8713 (sha256
8714 (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87"))))
8715 (build-system r-build-system)
8716 (home-page
8717 "https://cran.r-project.org/web/packages/aspi/")
8718 (synopsis
8719 "Analysis of symmetry of parasitic infections")
8720 (description
8721 "This package provides tools for the analysis and visualization of bilateral
8722 asymmetry in parasitic infections.")
8723 (license license:gpl3+)))
8724
8725 (define-public r-sandwich
8726 (package
8727 (name "r-sandwich")
8728 (version "2.5-1")
8729 (source
8730 (origin
8731 (method url-fetch)
8732 (uri (cran-uri "sandwich" version))
8733 (sha256
8734 (base32
8735 "1mk685b9wq7k566pbml52rj96i5h6b3vf215k9picgmq296nzvyv"))))
8736 (build-system r-build-system)
8737 (propagated-inputs
8738 `(("r-zoo" ,r-zoo)))
8739 (home-page "https://cran.r-project.org/web/packages/sandwich/")
8740 (synopsis "Robust Covariance Matrix Estimators")
8741 (description
8742 "This package provides model-robust standard error estimators for
8743 cross-sectional, time series, clustered, panel, and longitudinal data.")
8744 ;; Either version of the license.
8745 (license (list license:gpl2 license:gpl3))))
8746
8747 (define-public r-th-data
8748 (package
8749 (name "r-th-data")
8750 (version "1.0-10")
8751 (source
8752 (origin
8753 (method url-fetch)
8754 (uri (cran-uri "TH.data" version))
8755 (sha256
8756 (base32
8757 "0mgz7aj2d9abbmdr65zgmg1ddp3fdbs3mfj83r5xadh5ldkir2k1"))))
8758 (properties `((upstream-name . "TH.data")))
8759 (build-system r-build-system)
8760 (propagated-inputs
8761 `(("r-mass" ,r-mass)
8762 ("r-survival" ,r-survival)))
8763 (home-page "https://cran.r-project.org/web/packages/TH.data/")
8764 (synopsis "Shared data sets")
8765 (description
8766 "This package contains supporting data sets that are used in other
8767 packages maintained by Torsten Hothorn.")
8768 (license license:gpl3)))
8769
8770 (define-public r-multcomp
8771 (package
8772 (name "r-multcomp")
8773 (version "1.4-13")
8774 (source
8775 (origin
8776 (method url-fetch)
8777 (uri (cran-uri "multcomp" version))
8778 (sha256
8779 (base32
8780 "1nszi22rcc551yc75h9cdfkdqsxw1rz30vadazmpyzihp1bh63yk"))))
8781 (build-system r-build-system)
8782 (propagated-inputs
8783 `(("r-codetools" ,r-codetools)
8784 ("r-mvtnorm" ,r-mvtnorm)
8785 ("r-sandwich" ,r-sandwich)
8786 ("r-survival" ,r-survival)
8787 ("r-th-data" ,r-th-data)))
8788 (home-page "https://cran.r-project.org/web/packages/multcomp/")
8789 (synopsis "Simultaneous inference in general parametric models")
8790 (description
8791 "Simultaneous tests and confidence intervals for general linear
8792 hypotheses in parametric models, including linear, generalized linear, linear
8793 mixed effects, and survival models. The package includes demos reproducing
8794 analyzes presented in the book \"Multiple Comparisons Using R\" (Bretz,
8795 Hothorn, Westfall, 2010, CRC Press).")
8796 (license license:gpl2)))
8797
8798 (define-public r-emmeans
8799 (package
8800 (name "r-emmeans")
8801 (version "1.4.8")
8802 (source
8803 (origin
8804 (method url-fetch)
8805 (uri (cran-uri "emmeans" version))
8806 (sha256
8807 (base32
8808 "0h884qn4cip03w0h5psrz5y9zkm2wppklrhdz2chm2xk13zqnq5k"))))
8809 (build-system r-build-system)
8810 (propagated-inputs
8811 `(("r-estimability" ,r-estimability)
8812 ("r-mvtnorm" ,r-mvtnorm)
8813 ("r-numderiv" ,r-numderiv)
8814 ("r-plyr" ,r-plyr)
8815 ("r-xtable" ,r-xtable)))
8816 (native-inputs
8817 `(("r-knitr" ,r-knitr)))
8818 (home-page "https://github.com/rvlenth/emmeans")
8819 (synopsis "Estimated marginal means, aka least-squares means")
8820 (description
8821 "This package provides tools to obtain @dfn{estimated marginal
8822 means} (EMMs) for many linear, generalized linear, and mixed models. It can
8823 be used to compute contrasts or linear functions of EMMs, trends, and
8824 comparisons of slopes.")
8825 ;; Either version of the license.
8826 (license (list license:gpl2 license:gpl3))))
8827
8828 (define-public r-pwr
8829 (package
8830 (name "r-pwr")
8831 (version "1.3-0")
8832 (source
8833 (origin
8834 (method url-fetch)
8835 (uri (cran-uri "pwr" version))
8836 (sha256
8837 (base32
8838 "1kfzy73v3z6ipc3kdfkcjrp4b4p5k54nwk796gqi36srm93hgc2v"))))
8839 (build-system r-build-system)
8840 (native-inputs
8841 `(("r-knitr" ,r-knitr)))
8842 (home-page "https://github.com/heliosdrm/pwr")
8843 (synopsis "Basic functions for power analysis")
8844 (description
8845 "This package provides power analysis functions along the lines of
8846 Cohen (1988).")
8847 (license license:gpl3+)))
8848
8849 (define-public r-libcoin
8850 (package
8851 (name "r-libcoin")
8852 (version "1.0-6")
8853 (source
8854 (origin
8855 (method url-fetch)
8856 (uri (cran-uri "libcoin" version))
8857 (sha256
8858 (base32 "0njfdbz4mkyasxm80p0fb0qibvzz7kdzddn8ybj2k6y8bx0w3bs8"))))
8859 (build-system r-build-system)
8860 (propagated-inputs `(("r-mvtnorm" ,r-mvtnorm)))
8861 (home-page "https://cran.r-project.org/web/packages/libcoin")
8862 (synopsis "Linear test statistics for permutation inference")
8863 (description
8864 "This package provides basic infrastructure for linear test statistics
8865 and permutation inference in the framework of Strasser and Weber (1999).")
8866 (license license:gpl2)))
8867
8868 (define-public r-coin
8869 (package
8870 (name "r-coin")
8871 (version "1.3-1")
8872 (source
8873 (origin
8874 (method url-fetch)
8875 (uri (cran-uri "coin" version))
8876 (sha256
8877 (base32
8878 "0qi03fyqw42a2vnqcia5l2m1mzyarj2q1iblknx9n19bdsd53qjx"))))
8879 (build-system r-build-system)
8880 (propagated-inputs
8881 `(("r-libcoin" ,r-libcoin)
8882 ("r-matrixstats" ,r-matrixstats)
8883 ("r-modeltools" ,r-modeltools)
8884 ("r-multcomp" ,r-multcomp)
8885 ("r-mvtnorm" ,r-mvtnorm)
8886 ("r-survival" ,r-survival)))
8887 (home-page "http://coin.r-forge.r-project.org")
8888 (synopsis "Conditional inference procedures in a permutation test framework")
8889 (description
8890 "This package provides conditional inference procedures for the general
8891 independence problem including two-sample, K-sample (non-parametric ANOVA),
8892 correlation, censored, ordered and multivariate problems.")
8893 (license license:gpl2)))
8894
8895 (define-public r-bayesplot
8896 (package
8897 (name "r-bayesplot")
8898 (version "1.7.2")
8899 (source
8900 (origin
8901 (method url-fetch)
8902 (uri (cran-uri "bayesplot" version))
8903 (sha256
8904 (base32
8905 "0aqy4bfjq1fmds0vpacsmqih528cp8wk4v4w0balzkph6zqzpwcl"))))
8906 (build-system r-build-system)
8907 (inputs
8908 `(("pandoc" ,pandoc)
8909 ("pandoc-citeproc" ,pandoc-citeproc)))
8910 (native-inputs
8911 `(("r-knitr" ,r-knitr)))
8912 (propagated-inputs
8913 `(("r-dplyr" ,r-dplyr)
8914 ("r-ggplot2" ,r-ggplot2)
8915 ("r-ggridges" ,r-ggridges)
8916 ("r-glue" ,r-glue)
8917 ("r-reshape2" ,r-reshape2)
8918 ("r-rlang" ,r-rlang)
8919 ("r-tibble" ,r-tibble)
8920 ("r-tidyselect" ,r-tidyselect)))
8921 (home-page "https://mc-stan.org/bayesplot")
8922 (synopsis "Plotting for Bayesian models")
8923 (description
8924 "This package provides plotting functions for posterior analysis, model
8925 checking, and MCMC diagnostics. The package is designed not only to provide
8926 convenient functionality for users, but also a common set of functions that
8927 can be easily used by developers working on a variety of R packages for
8928 Bayesian modeling.")
8929 (license license:gpl3+)))
8930
8931 (define-public r-tmb
8932 (package
8933 (name "r-tmb")
8934 (version "1.7.18")
8935 (source
8936 (origin
8937 (method url-fetch)
8938 (uri (cran-uri "TMB" version))
8939 (sha256
8940 (base32
8941 "0dbps92sni9rnynj31z9zhg6l0vbczxhzlw7gnhpxjlzfnsglp3y"))))
8942 (properties `((upstream-name . "TMB")))
8943 (build-system r-build-system)
8944 (propagated-inputs
8945 `(("r-matrix" ,r-matrix)
8946 ("r-rcppeigen" ,r-rcppeigen)))
8947 (home-page "http://tmb-project.org")
8948 (synopsis "Template model builder: a general random effect tool")
8949 (description
8950 "With this tool, a user should be able to quickly implement complex
8951 random effect models through simple C++ templates. The package combines
8952 @code{CppAD} (C++ automatic differentiation), @code{Eigen} (templated
8953 matrix-vector library) and @code{CHOLMOD} (sparse matrix routines available
8954 from R) to obtain an efficient implementation of the applied Laplace
8955 approximation with exact derivatives. Key features are: Automatic sparseness
8956 detection, parallelism through BLAS and parallel user templates.")
8957 (license license:gpl2)))
8958
8959 (define-public r-sjstats
8960 (package
8961 (name "r-sjstats")
8962 (version "0.18.0")
8963 (source
8964 (origin
8965 (method url-fetch)
8966 (uri (cran-uri "sjstats" version))
8967 (sha256
8968 (base32 "17b1fcrhgjw66qa8zk2jj1bvz3vp5bnjn3p4y1wsg5ng5nxq8jz0"))))
8969 (build-system r-build-system)
8970 (propagated-inputs
8971 `(("r-bayestestr" ,r-bayestestr)
8972 ("r-broom" ,r-broom)
8973 ("r-dplyr" ,r-dplyr)
8974 ("r-effectsize" ,r-effectsize)
8975 ("r-emmeans" ,r-emmeans)
8976 ("r-insight" ,r-insight)
8977 ("r-lme4" ,r-lme4)
8978 ("r-magrittr" ,r-magrittr)
8979 ("r-mass" ,r-mass)
8980 ("r-modelr" ,r-modelr)
8981 ("r-parameters" ,r-parameters)
8982 ("r-performance" ,r-performance)
8983 ("r-purrr" ,r-purrr)
8984 ("r-rlang" ,r-rlang)
8985 ("r-sjlabelled" ,r-sjlabelled)
8986 ("r-sjmisc" ,r-sjmisc)
8987 ("r-tidyr" ,r-tidyr)))
8988 (home-page "https://github.com/strengejacke/sjstats")
8989 (synopsis "Functions for common statistical computations")
8990 (description
8991 "This package provides a collection of convenient functions for common
8992 statistical computations, which are not directly provided by R's @code{base}
8993 or @code{stats} packages. This package aims at providing, first, shortcuts
8994 for statistical measures, which otherwise could only be calculated with
8995 additional effort. Second, these shortcut functions are generic, and can be
8996 applied not only to vectors, but also to other objects as well. The focus of
8997 most functions lies on summary statistics or fit measures for regression
8998 models, including generalized linear models, mixed effects models and Bayesian
8999 models.")
9000 (license license:gpl3)))
9001
9002 (define-public r-glmmtmb
9003 (package
9004 (name "r-glmmtmb")
9005 (version "1.0.2.1")
9006 (source
9007 (origin
9008 (method url-fetch)
9009 (uri (cran-uri "glmmTMB" version))
9010 (sha256
9011 (base32
9012 "1a35hxcxz1cdm3zd5s7fyjaw2qs00hkacgr7h9130amygc1262ab"))))
9013 (properties `((upstream-name . "glmmTMB")))
9014 (build-system r-build-system)
9015 (propagated-inputs
9016 `(("r-lme4" ,r-lme4)
9017 ("r-matrix" ,r-matrix)
9018 ("r-nlme" ,r-nlme)
9019 ("r-rcppeigen" ,r-rcppeigen)
9020 ("r-tmb" ,r-tmb)))
9021 (native-inputs
9022 `(("r-knitr" ,r-knitr))) ; for vignettes
9023 (home-page "https://github.com/glmmTMB")
9024 (synopsis "Generalized linear mixed models")
9025 (description
9026 "Fit linear and generalized linear mixed models with various extensions,
9027 including zero-inflation. The models are fitted using maximum likelihood
9028 estimation via the Template Model Builder. Random effects are assumed to be
9029 Gaussian on the scale of the linear predictor and are integrated out using the
9030 Laplace approximation. Gradients are calculated using automatic
9031 differentiation.")
9032 (license license:agpl3+)))
9033
9034 (define-public r-bayestestr
9035 (package
9036 (name "r-bayestestr")
9037 (version "0.7.2")
9038 (source
9039 (origin
9040 (method url-fetch)
9041 (uri (cran-uri "bayestestR" version))
9042 (sha256
9043 (base32
9044 "1c82bpxg2ha93rna4sy9pdp422dnk6b378dcg8x04clfg0y0lsi2"))))
9045 (properties `((upstream-name . "bayestestR")))
9046 (build-system r-build-system)
9047 (propagated-inputs
9048 `(("r-insight" ,r-insight)))
9049 (native-inputs
9050 `(("r-knitr" ,r-knitr)))
9051 (home-page "https://github.com/easystats/bayestestR")
9052 (synopsis "Describe Bayesian models and posterior distributions")
9053 (description
9054 "This package provides utilities to understand and describe posterior
9055 distributions and Bayesian models. It includes point-estimates such as
9056 @dfn{Maximum A Posteriori} (MAP), measures of dispersion such as @dfn{Highest
9057 Density Interval} (HDI), and indices used for null-hypothesis testing (such as
9058 ROPE percentage and pd).")
9059 (license license:gpl3)))
9060
9061 (define-public r-performance
9062 (package
9063 (name "r-performance")
9064 (version "0.4.8")
9065 (source
9066 (origin
9067 (method url-fetch)
9068 (uri (cran-uri "performance" version))
9069 (sha256
9070 (base32
9071 "1gl3m1pw0wrj9m9cgd0vzbj9swfwjg4aa40gpliplb9y7dcmgi4l"))))
9072 (build-system r-build-system)
9073 (propagated-inputs
9074 `(("r-bayestestr" ,r-bayestestr)
9075 ("r-insight" ,r-insight)))
9076 (home-page "https://easystats.github.io/performance/")
9077 (synopsis "Assessment of regression models performance")
9078 (description
9079 "This package provides utilities for computing measures to assess model
9080 quality, which are not directly provided by R's @code{base} or @code{stats}
9081 packages. These include e.g. measures like r-squared, intraclass correlation
9082 coefficient, root mean squared error or functions to check models for
9083 overdispersion, singularity or zero-inflation and more. Functions apply to a
9084 large variety of regression models, including generalized linear models, mixed
9085 effects models and Bayesian models.")
9086 (license license:gpl3)))
9087
9088 (define-public r-ggeffects
9089 (package
9090 (name "r-ggeffects")
9091 (version "0.15.1")
9092 (source
9093 (origin
9094 (method url-fetch)
9095 (uri (cran-uri "ggeffects" version))
9096 (sha256
9097 (base32
9098 "12z58casz0yl1w7nfs64bz4miz0mmc300ap3rz4d2cc4z0rg0r47"))))
9099 (build-system r-build-system)
9100 (propagated-inputs
9101 `(("r-insight" ,r-insight)
9102 ("r-mass" ,r-mass)
9103 ("r-sjlabelled" ,r-sjlabelled)))
9104 (native-inputs
9105 `(("r-knitr" ,r-knitr)))
9106 (home-page "https://github.com/strengejacke/ggeffects")
9107 (synopsis "Create tidy data frames of marginal effects for ggplot")
9108 (description
9109 "This package provides tools to compute marginal effects from statistical
9110 models and return the result as tidy data frames. These data frames are ready
9111 to use with the @code{ggplot2} package. Marginal effects can be calculated
9112 for many different models. Interaction terms, splines and polynomial terms
9113 are also supported. The two main functions are @code{ggpredict()} and
9114 @code{ggeffect()}. There is a generic @code{plot()} method to plot the
9115 results using @code{ggplot2}.")
9116 (license license:gpl3)))
9117
9118 (define-public r-effectsize
9119 (package
9120 (name "r-effectsize")
9121 (version "0.3.2")
9122 (source
9123 (origin
9124 (method url-fetch)
9125 (uri (cran-uri "effectsize" version))
9126 (sha256
9127 (base32
9128 "0h9f260gb8707pcssf8dq7dakpq1ggkxr5kpbrbl8sn8h3qbvws9"))))
9129 (properties `((upstream-name . "effectsize")))
9130 (build-system r-build-system)
9131 (propagated-inputs
9132 `(("r-bayestestr" ,r-bayestestr)
9133 ("r-insight" ,r-insight)
9134 ("r-parameters" ,r-parameters)))
9135 (native-inputs
9136 `(("r-knitr" ,r-knitr)))
9137 (home-page "https://github.com/easystats/effectsize")
9138 (synopsis "Indices of effect size and standardized parameters")
9139 (description
9140 "This package provides utilities to work with indices of effect size and
9141 standardized parameters for a wide variety of models, allowing computation and
9142 conversion of indices such as Cohen's d, r, odds, etc.")
9143 (license license:gpl3)))
9144
9145 (define-public r-sjplot
9146 (package
9147 (name "r-sjplot")
9148 (version "2.8.4")
9149 (source
9150 (origin
9151 (method url-fetch)
9152 (uri (cran-uri "sjPlot" version))
9153 (sha256
9154 (base32 "0b7k0mshkk8k26w11xbxkb5v0klhq279zn2xdz83cn8k791xkqyd"))))
9155 (properties `((upstream-name . "sjPlot")))
9156 (build-system r-build-system)
9157 (propagated-inputs
9158 `(("r-bayestestr" ,r-bayestestr)
9159 ("r-dplyr" ,r-dplyr)
9160 ("r-effectsize" ,r-effectsize)
9161 ("r-ggeffects" ,r-ggeffects)
9162 ("r-ggplot2" ,r-ggplot2)
9163 ("r-insight" ,r-insight)
9164 ("r-knitr" ,r-knitr)
9165 ("r-mass" ,r-mass)
9166 ("r-parameters" ,r-parameters)
9167 ("r-performance" ,r-performance)
9168 ("r-purrr" ,r-purrr)
9169 ("r-rlang" ,r-rlang)
9170 ("r-scales" ,r-scales)
9171 ("r-sjlabelled" ,r-sjlabelled)
9172 ("r-sjmisc" ,r-sjmisc)
9173 ("r-sjstats" ,r-sjstats)
9174 ("r-tidyr" ,r-tidyr)))
9175 (native-inputs
9176 `(("r-knitr" ,r-knitr)))
9177 (home-page "https://strengejacke.github.io/sjPlot/")
9178 (synopsis "Data visualization for statistics in social science")
9179 (description
9180 "This package represents a collection of plotting and table output
9181 functions for data visualization. Results of various statistical
9182 analyses (that are commonly used in social sciences) can be visualized using
9183 this package, including simple and cross tabulated frequencies, histograms,
9184 box plots, (generalized) linear models, mixed effects models, principal
9185 component analysis and correlation matrices, cluster analyses, scatter plots,
9186 stacked scales, effects plots of regression models (including interaction
9187 terms) and much more. This package supports labelled data.")
9188 (license license:gpl3)))
9189
9190 (define-public r-ini
9191 (package
9192 (name "r-ini")
9193 (version "0.3.1")
9194 (source
9195 (origin
9196 (method url-fetch)
9197 (uri (cran-uri "ini" version))
9198 (sha256
9199 (base32
9200 "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv"))))
9201 (build-system r-build-system)
9202 (home-page "https://github.com/dvdscripter/ini")
9203 (synopsis "Read and write configuration files")
9204 (description
9205 "This package provides tools to parse simple @code{.ini} configuration
9206 files to an structured list. Users can manipulate this resulting list with
9207 @code{lapply()} functions. This same structured list can be used to write
9208 back to file after modifications.")
9209 (license license:gpl3)))
9210
9211 (define-public r-gh
9212 (package
9213 (name "r-gh")
9214 (version "1.1.0")
9215 (source
9216 (origin
9217 (method url-fetch)
9218 (uri (cran-uri "gh" version))
9219 (sha256
9220 (base32
9221 "1bc9bn1078s664hc806dh0y1ncxif77q479rfmxfir9z7hwaz7yy"))))
9222 (build-system r-build-system)
9223 (propagated-inputs
9224 `(("r-cli" ,r-cli)
9225 ("r-httr" ,r-httr)
9226 ("r-ini" ,r-ini)
9227 ("r-jsonlite" ,r-jsonlite)))
9228 (home-page "https://github.com/r-lib/gh#readme")
9229 (synopsis "Access the GitHub API via R")
9230 (description
9231 "This package provides a minimal R client to access the GitHub API.")
9232 (license license:expat)))
9233
9234 (define-public r-fs
9235 (package
9236 (name "r-fs")
9237 (version "1.5.0")
9238 (source
9239 (origin
9240 (method url-fetch)
9241 (uri (cran-uri "fs" version))
9242 (sha256
9243 (base32
9244 "15rqc3ljmcmgfvadj1j1kq7kvibagxic8sgplhlcdqqxax9idprn"))))
9245 (build-system r-build-system)
9246 (native-inputs
9247 `(("r-knitr" ,r-knitr)))
9248 (home-page "https://fs.r-lib.org")
9249 (synopsis "Cross-platform file system operations based on libuv")
9250 (description
9251 "This package provides a cross-platform interface to file system
9252 operations, built on top of the libuv C library.")
9253 (license license:gpl3)))
9254
9255 (define-public r-clisymbols
9256 (package
9257 (name "r-clisymbols")
9258 (version "1.2.0")
9259 (source
9260 (origin
9261 (method url-fetch)
9262 (uri (cran-uri "clisymbols" version))
9263 (sha256
9264 (base32
9265 "1q7gi2zmykhzas9v8fdnbpdq7pzdcpbhim1yxvd2062l777g4j86"))))
9266 (build-system r-build-system)
9267 (home-page "https://github.com/gaborcsardi/clisymbols")
9268 (synopsis "Unicode symbols at the R prompt")
9269 (description
9270 "This package provides a small subset of Unicode symbols, that are useful
9271 when building command line applications. They fall back to alternatives on
9272 terminals that do not support Unicode.")
9273 (license license:expat)))
9274
9275 (define-public r-usethis
9276 (package
9277 (name "r-usethis")
9278 (version "1.6.1")
9279 (source
9280 (origin
9281 (method url-fetch)
9282 (uri (cran-uri "usethis" version))
9283 (sha256
9284 (base32
9285 "0vwxsnq615mwc706a4a71gyy0hmvnllbh249gzm7vl3ym5cr0cv0"))))
9286 (build-system r-build-system)
9287 (propagated-inputs
9288 `(("r-cli" ,r-cli)
9289 ("r-clipr" ,r-clipr)
9290 ("r-crayon" ,r-crayon)
9291 ("r-curl" ,r-curl)
9292 ("r-desc" ,r-desc)
9293 ("r-fs" ,r-fs)
9294 ("r-gh" ,r-gh)
9295 ("r-git2r" ,r-git2r)
9296 ("r-glue" ,r-glue)
9297 ("r-purrr" ,r-purrr)
9298 ("r-rematch2" ,r-rematch2)
9299 ("r-rlang" ,r-rlang)
9300 ("r-rprojroot" ,r-rprojroot)
9301 ("r-rstudioapi" ,r-rstudioapi)
9302 ("r-whisker" ,r-whisker)
9303 ("r-withr" ,r-withr)
9304 ("r-yaml" ,r-yaml)))
9305 (home-page "https://github.com/r-lib/usethis")
9306 (synopsis "Automate R package and project setup")
9307 (description
9308 "This package helps you to automate R package and project setup tasks
9309 that are otherwise performed manually. This includes setting up unit testing,
9310 test coverage, continuous integration, Git, GitHub integration, licenses,
9311 Rcpp, RStudio projects, and more.")
9312 (license license:gpl3)))
9313
9314 (define-public r-sessioninfo
9315 (package
9316 (name "r-sessioninfo")
9317 (version "1.1.1")
9318 (source
9319 (origin
9320 (method url-fetch)
9321 (uri (cran-uri "sessioninfo" version))
9322 (sha256
9323 (base32
9324 "0j5f3l58fynxx3v0w62vqpii7miabszgljpja36xx9s8hikh8sqn"))))
9325 (build-system r-build-system)
9326 (propagated-inputs
9327 `(("r-cli" ,r-cli)
9328 ("r-withr" ,r-withr)))
9329 (home-page "https://github.com/r-lib/sessioninfo#readme")
9330 (synopsis "R session information")
9331 (description
9332 "This package provides tools to query and print information about the
9333 current R session. It is similar to @code{utils::sessionInfo()}, but includes
9334 more information about packages, and where they were installed from.")
9335 (license license:gpl2)))
9336
9337 (define-public r-remotes
9338 (package
9339 (name "r-remotes")
9340 (version "2.2.0")
9341 (source
9342 (origin
9343 (method url-fetch)
9344 (uri (cran-uri "remotes" version))
9345 (sha256
9346 (base32
9347 "1f1kdw9j1wald3fs8b3n68x1kljy07j60g3aw1aarx26ikyk9whj"))))
9348 (build-system r-build-system)
9349 (native-inputs
9350 `(("r-knitr" ,r-knitr)))
9351 (home-page "https://github.com/r-lib/remotes#readme")
9352 (synopsis "R package installation from remote repositories")
9353 (description
9354 "Download and install R packages stored in GitHub, BitBucket, or plain
9355 subversion or git repositories. This package is a lightweight replacement of
9356 the @code{install_*} functions in the @code{devtools} package. Indeed most of
9357 the code was copied over from @code{devtools}.")
9358 (license license:gpl2+)))
9359
9360 (define-public r-xopen
9361 (package
9362 (name "r-xopen")
9363 (version "1.0.0")
9364 (source
9365 (origin
9366 (method url-fetch)
9367 (uri (cran-uri "xopen" version))
9368 (sha256
9369 (base32
9370 "1vrvgdika1d63dwygynbv2wmd87ll8dji5dy89hj576n8hw601z2"))))
9371 (build-system r-build-system)
9372 (propagated-inputs
9373 `(("r-processx" ,r-processx)))
9374 (home-page "https://github.com/r-lib/xopen#readme")
9375 (synopsis "Open system files, URLs, anything")
9376 (description
9377 "This package provides a cross-platform solution to open files,
9378 directories or URLs with their associated programs.")
9379 (license license:expat)))
9380
9381 (define-public r-rcmdcheck
9382 (package
9383 (name "r-rcmdcheck")
9384 (version "1.3.3")
9385 (source
9386 (origin
9387 (method url-fetch)
9388 (uri (cran-uri "rcmdcheck" version))
9389 (sha256
9390 (base32
9391 "1d4kzgfqy72r6b7bn1j4znyksrycgypx1jjvpv9lrmvn37mpkdhs"))))
9392 (build-system r-build-system)
9393 (propagated-inputs
9394 `(("r-callr" ,r-callr)
9395 ("r-cli" ,r-cli)
9396 ("r-crayon" ,r-crayon)
9397 ("r-desc" ,r-desc)
9398 ("r-digest" ,r-digest)
9399 ("r-pkgbuild" ,r-pkgbuild)
9400 ("r-prettyunits" ,r-prettyunits)
9401 ("r-r6" ,r-r6)
9402 ("r-rprojroot" ,r-rprojroot)
9403 ("r-sessioninfo" ,r-sessioninfo)
9404 ("r-withr" ,r-withr)
9405 ("r-xopen" ,r-xopen)))
9406 (home-page "https://github.com/r-Lib/rcmdcheck#readme")
9407 (synopsis "Run R CMD check from R and capture results")
9408 (description
9409 "Run @code{R CMD check} from R programmatically, and capture the results
9410 of the individual checks.")
9411 (license license:expat)))
9412
9413 (define-public r-rapportools
9414 (package
9415 (name "r-rapportools")
9416 (version "1.0")
9417 (source
9418 (origin
9419 (method url-fetch)
9420 (uri (cran-uri "rapportools" version))
9421 (sha256
9422 (base32
9423 "1sgv4sc737i12arh5dc3263kjsz3dzg06qihfmrqyax94mv2d01b"))))
9424 (build-system r-build-system)
9425 (propagated-inputs
9426 `(("r-pander" ,r-pander)
9427 ("r-plyr" ,r-plyr)
9428 ("r-reshape" ,r-reshape)))
9429 (home-page "https://cran.r-project.org/web/packages/rapportools/")
9430 (synopsis "Miscellaneous helper functions with sane defaults for reporting")
9431 (description
9432 "This package provides helper functions that act as wrappers to more
9433 advanced statistical methods with the advantage of having sane defaults for
9434 quick reporting.")
9435 (license license:agpl3+)))
9436
9437 (define-public r-pander
9438 (package
9439 (name "r-pander")
9440 (version "0.6.3")
9441 (source
9442 (origin
9443 (method url-fetch)
9444 (uri (cran-uri "pander" version))
9445 (sha256
9446 (base32
9447 "1bd9sdghlsppmff18k5fg3i0visq9f4wc82rlhwq5m82bmgdgnyi"))))
9448 (build-system r-build-system)
9449 (propagated-inputs
9450 `(("r-digest" ,r-digest)
9451 ("r-rcpp" ,r-rcpp)))
9452 (home-page "https://rapporter.github.io/pander")
9453 (synopsis "Render R objects into Pandoc's markdown")
9454 (description
9455 "The main aim of the pander R package is to provide a minimal and easy
9456 tool for rendering R objects into Pandoc's markdown. The package is also
9457 capable of exporting/converting complex Pandoc documents (reports) in various
9458 ways.")
9459 ;; This package is licensed under either the AGPLv3+ or the very rarely
9460 ;; used OSL 3.0.
9461 (license license:agpl3+)))
9462
9463 (define-public r-summarytools
9464 (package
9465 (name "r-summarytools")
9466 (version "0.9.6")
9467 (source
9468 (origin
9469 (method url-fetch)
9470 (uri (cran-uri "summarytools" version))
9471 (sha256
9472 (base32
9473 "03pcb2ild1rb9f15yq8b68p9bg10z5wk2x7ahgyzkwdh5f81vbq2"))))
9474 (build-system r-build-system)
9475 (propagated-inputs
9476 `(("r-base64enc" ,r-base64enc)
9477 ("r-checkmate" ,r-checkmate)
9478 ("r-dplyr" ,r-dplyr)
9479 ("r-htmltools" ,r-htmltools)
9480 ("r-lubridate" ,r-lubridate)
9481 ("r-magick" ,r-magick)
9482 ("r-matrixstats" ,r-matrixstats)
9483 ("r-pander" ,r-pander)
9484 ("r-pryr" ,r-pryr)
9485 ("r-rapportools" ,r-rapportools)
9486 ("r-tibble" ,r-tibble)
9487 ("r-tidyr" ,r-tidyr)))
9488 (home-page "https://github.com/dcomtois/summarytools")
9489 (synopsis "Tools to quickly and neatly summarize data")
9490 (description
9491 "This package provides tools for data frame summaries, cross-tabulations,
9492 weight-enabled frequency tables and common univariate statistics in concise
9493 tables available in a variety of formats (plain ASCII, Markdown and HTML). A
9494 good point-of-entry for exploring data, both for experienced and new R
9495 users.")
9496 (license license:gpl2)))
9497
9498 (define-public r-lsei
9499 (package
9500 (name "r-lsei")
9501 (version "1.2-0.1")
9502 (source
9503 (origin
9504 (method url-fetch)
9505 (uri (cran-uri "lsei" version))
9506 (sha256
9507 (base32
9508 "1rvzdb33x9ykl5qfwxkps1iylxqzlf1qla3l88420nbq7pxp7m87"))))
9509 (build-system r-build-system)
9510 (native-inputs
9511 `(("gfortran" ,gfortran)))
9512 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9513 (synopsis "Solve regression problems under equality/inequality constraints")
9514 (description
9515 "It contains functions that solve least squares linear regression
9516 problems under linear equality/inequality constraints. Functions for solving
9517 quadratic programming problems are also available, which transform such
9518 problems into least squares ones first.")
9519 (license license:gpl2+)))
9520
9521 (define-public r-npsurv
9522 (package
9523 (name "r-npsurv")
9524 (version "0.4-0.1")
9525 (source
9526 (origin
9527 (method url-fetch)
9528 (uri (cran-uri "npsurv" version))
9529 (sha256
9530 (base32
9531 "09nxibp93bp9v8qcx0gnazk7fkvyh0fq9vlgxl639m6ndr7fwp88"))))
9532 (build-system r-build-system)
9533 (propagated-inputs
9534 `(("r-lsei" ,r-lsei)))
9535 (home-page "https://www.stat.auckland.ac.nz/~yongwang")
9536 (synopsis "Nonparametric survival analysis")
9537 (description
9538 "This package contains functions for non-parametric survival analysis of
9539 exact and interval-censored observations.")
9540 (license license:gpl2+)))
9541
9542 (define-public r-clusteval
9543 (package
9544 (name "r-clusteval")
9545 (version "0.1")
9546 (source
9547 (origin
9548 (method url-fetch)
9549 (uri (cran-uri "clusteval" version))
9550 (sha256
9551 (base32
9552 "1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
9553 (build-system r-build-system)
9554 (propagated-inputs
9555 `(("r-mvtnorm" ,r-mvtnorm)
9556 ("r-rcpp" ,r-rcpp)))
9557 (home-page "https://cran.r-project.org/web/packages/clusteval/")
9558 (synopsis "Evaluation of clustering algorithms")
9559 (description
9560 "This R package provides a suite of tools to evaluate clustering
9561 algorithms, clusterings, and individual clusters.")
9562 (license license:expat)))
9563
9564 (define-public r-tweedie
9565 (package
9566 (name "r-tweedie")
9567 (version "2.3.2")
9568 (source
9569 (origin
9570 (method url-fetch)
9571 (uri (cran-uri "tweedie" version))
9572 (sha256
9573 (base32
9574 "10fv998qjxsyx0h94fi0xbh6xbf24nwgh254n9zfnmix9vk2cqls"))))
9575 (build-system r-build-system)
9576 (native-inputs `(("gfortran" ,gfortran)))
9577 (home-page "https://cran.r-project.org/web/packages/tweedie/")
9578 (synopsis "Evaluation of Tweedie exponential family models")
9579 (description
9580 "Maximum likelihood computations for Tweedie families, including the
9581 series expansion (Dunn and Smyth, 2005; <doi10.1007/s11222-005-4070-y>) and
9582 the Fourier inversion (Dunn and Smyth, 2008; <doi:10.1007/s11222-007-9039-6>),
9583 and related methods.")
9584 (license license:gpl2+)))
9585
9586 (define-public r-rcppgsl
9587 (package
9588 (name "r-rcppgsl")
9589 (version "0.3.8")
9590 (source
9591 (origin
9592 (method url-fetch)
9593 (uri (cran-uri "RcppGSL" version))
9594 (sha256
9595 (base32 "17nlayy6gvwb3v6l5aiqm84i75yf4dfi3zclxrgpqwf3j9v09yvz"))))
9596 (properties `((upstream-name . "RcppGSL")))
9597 (build-system r-build-system)
9598 (propagated-inputs
9599 `(("r-rcpp" ,r-rcpp)
9600 ("gsl" ,gsl)))
9601 (home-page "https://cran.r-project.org/web/packages/RcppGSL/")
9602 (synopsis "Rcpp integration for GSL vectors and matrices")
9603 (description
9604 "The GNU Scientific Library (or GSL) is a collection of numerical
9605 routines for scientific computing. It is particularly useful for C and C++
9606 programs as it provides a standard C interface to a wide range of mathematical
9607 routines. There are over 1000 functions in total with an extensive test
9608 suite. The RcppGSL package provides an easy-to-use interface between GSL data
9609 structures and R using concepts from Rcpp which is itself a package that eases
9610 the interfaces between R and C++.")
9611 (license license:gpl2+)))
9612
9613 (define-public r-mvabund
9614 (package
9615 (name "r-mvabund")
9616 (version "4.1.3")
9617 (source
9618 (origin
9619 (method url-fetch)
9620 (uri (cran-uri "mvabund" version))
9621 (sha256
9622 (base32
9623 "1z58h4dk3mc2hfnfvc7pghk471cbp7ah2s1z2ria5igw4s80962b"))))
9624 (build-system r-build-system)
9625 (propagated-inputs
9626 `(("r-mass" ,r-mass)
9627 ("r-rcpp" ,r-rcpp)
9628 ("r-rcppgsl" ,r-rcppgsl)
9629 ("r-statmod" ,r-statmod)
9630 ("r-tweedie" ,r-tweedie)))
9631 (home-page "https://cran.r-project.org/web/packages/mvabund/")
9632 (synopsis "Statistical methods for analysing multivariate abundance data")
9633 (description
9634 "This package provides a set of tools for displaying, modeling and
9635 analysing multivariate abundance data in community ecology.")
9636 (license license:lgpl2.1+)))
9637
9638 (define-public r-afex
9639 (package
9640 (name "r-afex")
9641 (version "0.27-2")
9642 (source
9643 (origin
9644 (method url-fetch)
9645 (uri (cran-uri "afex" version))
9646 (sha256
9647 (base32
9648 "0qsmcddy4449qjj3ajmqvdiqdkhkswmz5dqf150wxwq897p3bvf2"))))
9649 (build-system r-build-system)
9650 (propagated-inputs
9651 `(("r-car" ,r-car)
9652 ("r-lme4" ,r-lme4)
9653 ("r-lmertest" ,r-lmertest)
9654 ("r-pbkrtest" ,r-pbkrtest)
9655 ("r-reshape2" ,r-reshape2)))
9656 (native-inputs
9657 `(("r-knitr" ,r-knitr)))
9658 (home-page "https://afex.singmann.science/")
9659 (synopsis "Analysis of factorial experiments")
9660 (description
9661 "This package provides convenience functions for analyzing factorial
9662 experiments using ANOVA or mixed models.")
9663 (license license:gpl2+)))
9664
9665 (define-public r-lmertest
9666 (package
9667 (name "r-lmertest")
9668 (version "3.1-2")
9669 (source
9670 (origin
9671 (method url-fetch)
9672 (uri (cran-uri "lmerTest" version))
9673 (sha256
9674 (base32
9675 "1qkdxx5sri65zgpb9gw4nkfkdam51kgy4hxclk5c40yk7y3p0n1q"))))
9676 (properties `((upstream-name . "lmerTest")))
9677 (build-system r-build-system)
9678 (propagated-inputs
9679 `(("r-ggplot2" ,r-ggplot2)
9680 ("r-lme4" ,r-lme4)
9681 ("r-mass" ,r-mass)
9682 ("r-numderiv" ,r-numderiv)))
9683 (home-page "https://github.com/runehaubo/lmerTestR")
9684 (synopsis "Tests in linear mixed effects models")
9685 (description
9686 "This package provides p-values in type I, II or III anova and summary
9687 tables for @code{lmer} model fits via Satterthwaite's degrees of freedom
9688 method. A Kenward-Roger method is also available via the @code{pbkrtest}
9689 package. Model selection methods include step, drop1 and anova-like tables
9690 for random effects (ranova). Methods for Least-Square means (LS-means) and
9691 tests of linear contrasts of fixed effects are also available.")
9692 (license license:gpl2+)))
9693
9694 (define-public r-r2glmm
9695 (package
9696 (name "r-r2glmm")
9697 (version "0.1.2")
9698 (source
9699 (origin
9700 (method url-fetch)
9701 (uri (cran-uri "r2glmm" version))
9702 (sha256
9703 (base32
9704 "0iim92blpa59vgz97c2pi05yhbjjmaffdbkbmk5kplfb2vmazgiy"))))
9705 (build-system r-build-system)
9706 (propagated-inputs
9707 `(("r-afex" ,r-afex)
9708 ("r-data-table" ,r-data-table)
9709 ("r-dplyr" ,r-dplyr)
9710 ("r-ggplot2" ,r-ggplot2)
9711 ("r-gridextra" ,r-gridextra)
9712 ("r-lmertest" ,r-lmertest)
9713 ("r-mass" ,r-mass)
9714 ("r-matrix" ,r-matrix)
9715 ("r-mgcv" ,r-mgcv)
9716 ("r-pbkrtest" ,r-pbkrtest)))
9717 (home-page "https://github.com/bcjaeger/r2glmm")
9718 (synopsis "Compute R squared for mixed (multilevel) models")
9719 (description
9720 "This package computes model and semi partial R squared with confidence
9721 limits for the linear and generalized linear mixed model (LMM and GLMM). The
9722 R squared measure from L. J. Edwards et al. (2008) is extended to the GLMM
9723 using @dfn{penalized quasi-likelihood} (PQL) estimation (see Jaeger et
9724 al. (2016)).")
9725 (license license:gpl2)))
9726
9727 (define-public r-weights
9728 (package
9729 (name "r-weights")
9730 (version "1.0.1")
9731 (source
9732 (origin
9733 (method url-fetch)
9734 (uri (cran-uri "weights" version))
9735 (sha256
9736 (base32
9737 "1ka2kvzg464vn80qziqy4mrciy9wwd3jfasgq0d33wbiblhmxkj5"))))
9738 (build-system r-build-system)
9739 (propagated-inputs
9740 `(("r-gdata" ,r-gdata)
9741 ("r-hmisc" ,r-hmisc)
9742 ("r-mice" ,r-mice)))
9743 (home-page
9744 "https://cran.r-project.org/web/packages/weights/")
9745 (synopsis "Weighting and weighted statistics")
9746 (description "This package Provides a variety of functions for producing
9747 simple weighted statistics, such as weighted Pearson's correlations, partial
9748 correlations, Chi-Squared statistics, histograms, and t-tests. Also now
9749 includes some software for quickly recoding survey data and plotting point
9750 estimates from interaction terms in regressions (and multiply imputed
9751 regressions). NOTE: Weighted partial correlation calculations pulled to
9752 address a bug.")
9753 (license license:gpl2+)))
9754
9755 (define-public r-rcppannoy
9756 (package
9757 (name "r-rcppannoy")
9758 (version "0.0.16")
9759 (source
9760 (origin
9761 (method url-fetch)
9762 (uri (cran-uri "RcppAnnoy" version))
9763 (sha256
9764 (base32
9765 "0bfa35lp6vc4b0h3ymvdx50br233q8vvyjml34ngi81rj0imz3fr"))))
9766 (properties `((upstream-name . "RcppAnnoy")))
9767 (build-system r-build-system)
9768 (propagated-inputs
9769 `(("r-rcpp" ,r-rcpp)))
9770 (home-page "https://cran.r-project.org/web/packages/RcppAnnoy/")
9771 (synopsis "Rcpp bindings for Annoy, a library for Approximate Nearest Neighbors")
9772 (description
9773 "Annoy is a small C++ library for Approximate Nearest Neighbors written
9774 for efficient memory usage as well an ability to load from and save to disk.
9775 This package provides an R interface.")
9776 ;; Annoy is released under ASL 2.0, but this wrapper is released under
9777 ;; GPLv2+.
9778 (license (list license:gpl2+ license:asl2.0))))
9779
9780 (define-public r-rcpphnsw
9781 (package
9782 (name "r-rcpphnsw")
9783 (version "0.2.0")
9784 (source
9785 (origin
9786 (method url-fetch)
9787 (uri (cran-uri "RcppHNSW" version))
9788 (sha256
9789 (base32
9790 "0gqdkw7vkcm544rz45g0hplg836ygzbfwk9gh9wr0817icvdb3qv"))))
9791 (properties `((upstream-name . "RcppHNSW")))
9792 (build-system r-build-system)
9793 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9794 (home-page "https://cran.r-project.org/web/packages/RcppHNSW/")
9795 (synopsis "Rcpp bindings for hnswlib, a library for approximate nearest neighbors")
9796 (description
9797 "Hnswlib is a C++ library for approximate nearest neighbors. This
9798 package provides a minimal R interface by relying on the Rcpp package.")
9799 ;; hnswlib is released under Version 2.0 of the Apache License.
9800 (license (list license:gpl3 license:asl2.0))))
9801
9802 (define-public r-rcppparallel
9803 (package
9804 (name "r-rcppparallel")
9805 (version "5.0.2")
9806 (source
9807 (origin
9808 (method url-fetch)
9809 (uri (cran-uri "RcppParallel" version))
9810 (sha256
9811 (base32
9812 "10bg4fw38m64dhy543rwq2nnjjc9y24iggk343xslrb3ij8018lc"))))
9813 (properties `((upstream-name . "RcppParallel")))
9814 (build-system r-build-system)
9815 (home-page "https://rcppcore.github.io/RcppParallel/")
9816 (synopsis "Parallel programming tools for Rcpp")
9817 (description
9818 "This package provides high level functions for parallel programming with
9819 Rcpp. For example, the @code{parallelFor()} function can be used to convert
9820 the work of a standard serial @code{for} loop into a parallel one and the
9821 @code{parallelReduce()} function can be used for accumulating aggregates or
9822 other values.")
9823 (license license:gpl2)))
9824
9825 (define-public r-ncdf4
9826 (package
9827 (name "r-ncdf4")
9828 (version "1.17")
9829 (source
9830 (origin
9831 (method url-fetch)
9832 (uri (cran-uri "ncdf4" version))
9833 (sha256
9834 (base32
9835 "1xls44ln2zjrrlimxl8v4bk2ni3g45c9j0gxdnjx31rikmrc95fv"))))
9836 (build-system r-build-system)
9837 (inputs
9838 `(("netcdf" ,netcdf)
9839 ("zlib" ,zlib)))
9840 (home-page "https://cran.r-project.org/web/packages/ncdf4/index.html")
9841 (synopsis "R interface to Unidata netCDF format data files")
9842 (description
9843 "This package provides a high-level R interface to data files written
9844 using Unidata's netCDF library (version 4 or earlier), which are binary data
9845 files that are portable across platforms and include metadata information in
9846 addition to the data sets. Using this package, netCDF files can be opened and
9847 data sets read in easily. It is also easy to create new netCDF dimensions,
9848 variables, and files, in either version 3 or 4 format, and manipulate existing
9849 netCDF files.")
9850 (license license:gpl3+)))
9851
9852 (define-public r-biocmanager
9853 (package
9854 (name "r-biocmanager")
9855 (version "1.30.10")
9856 (source
9857 (origin
9858 (method url-fetch)
9859 (uri (cran-uri "BiocManager" version))
9860 (sha256
9861 (base32 "03n9s2vf7vgpgb5alpxwamf9xfkn32cbzngwyn6spq1bnh9a9dzk"))))
9862 (properties `((upstream-name . "BiocManager")))
9863 (build-system r-build-system)
9864 (home-page "https://cran.r-project.org/web/packages/BiocManager/")
9865 (synopsis "Access the Bioconductor project package repository")
9866 (description
9867 "This package provides a convenient tool to install and update
9868 Bioconductor packages.")
9869 (license license:artistic2.0)))
9870
9871 (define-public r-rgl
9872 (package
9873 (name "r-rgl")
9874 (version "0.100.54")
9875 (source
9876 (origin
9877 (method url-fetch)
9878 (uri (cran-uri "rgl" version))
9879 (sha256
9880 (base32
9881 "1mgs2d8igmcdzzymfwbqdrypmaidd4pra5n5gnhsn9pm6pqzidqp"))))
9882 (build-system r-build-system)
9883 (native-inputs
9884 `(("pkg-config" ,pkg-config)))
9885 (inputs
9886 `(("freetype" ,freetype)
9887 ("libpng" ,libpng)
9888 ("glu" ,glu)
9889 ("libx11" ,libx11)
9890 ("pandoc" ,pandoc)
9891 ("zlib" ,zlib)))
9892 (propagated-inputs
9893 `(("r-crosstalk" ,r-crosstalk)
9894 ("r-htmltools" ,r-htmltools)
9895 ("r-htmlwidgets" ,r-htmlwidgets)
9896 ("r-jsonlite" ,r-jsonlite)
9897 ("r-knitr" ,r-knitr)
9898 ("r-magrittr" ,r-magrittr)
9899 ("r-manipulatewidget" ,r-manipulatewidget)
9900 ("r-shiny" ,r-shiny)))
9901 (home-page "https://r-forge.r-project.org/projects/rgl/")
9902 (synopsis "3D visualization using OpenGL")
9903 (description
9904 "This package provides medium to high level functions for 3D interactive graphics,
9905 including functions modelled on base graphics (@code{plot3d()}, etc.) as well
9906 as functions for constructing representations of geometric
9907 objects (@code{cube3d()}, etc.). Output may be on screen using OpenGL, or to
9908 various standard 3D file formats including WebGL, PLY, OBJ, STL as well as 2D
9909 image formats, including PNG, Postscript, SVG, PGF.")
9910 ;; Any version of the GPL.
9911 (license (list license:gpl2+ license:gpl3+))))
9912
9913 (define-public r-multicool
9914 (package
9915 (name "r-multicool")
9916 (version "0.1-11")
9917 (source
9918 (origin
9919 (method url-fetch)
9920 (uri (cran-uri "multicool" version))
9921 (sha256
9922 (base32
9923 "0xk408qbz9cxwf51j3pmy55gcjcnws8mc6j3vyn9zhramxj7x40w"))))
9924 (build-system r-build-system)
9925 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
9926 (home-page "https://cran.r-project.org/web/packages/multicool/")
9927 (synopsis "Permutations of multisets in cool-lex order")
9928 (description
9929 "This package provides a set of tools to permute multisets without loops
9930 or hash tables and to generate integer partitions. Cool-lex order is similar
9931 to colexicographical order.")
9932 (license license:gpl2)))
9933
9934 (define-public r-misc3d
9935 (package
9936 (name "r-misc3d")
9937 (version "0.8-4")
9938 (source
9939 (origin
9940 (method url-fetch)
9941 (uri (cran-uri "misc3d" version))
9942 (sha256
9943 (base32
9944 "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm"))))
9945 (build-system r-build-system)
9946 (home-page "https://cran.r-project.org/web/packages/misc3d/")
9947 (synopsis "Miscellaneous 3D Plots")
9948 (description
9949 "This package provides a collection of miscellaneous 3d plots, including
9950 isosurfaces.")
9951 ;; Any version of the GPL.
9952 (license (list license:gpl2+ license:gpl3+))))
9953
9954 (define-public r-ks
9955 (package
9956 (name "r-ks")
9957 (version "1.11.7")
9958 (source
9959 (origin
9960 (method url-fetch)
9961 (uri (cran-uri "ks" version))
9962 (sha256
9963 (base32 "1f6jvxy0hmngyvnvrknzbmhl42njk0vqyycvydm4qnp8cqirqvba"))))
9964 (build-system r-build-system)
9965 (propagated-inputs
9966 `(("r-fnn" ,r-fnn)
9967 ("r-kernlab" ,r-kernlab)
9968 ("r-kernsmooth" ,r-kernsmooth)
9969 ("r-matrix" ,r-matrix)
9970 ("r-mclust" ,r-mclust)
9971 ("r-mgcv" ,r-mgcv)
9972 ("r-multicool" ,r-multicool)
9973 ("r-mvtnorm" ,r-mvtnorm)))
9974 (home-page "http://www.mvstat.net/tduong/")
9975 (synopsis "Kernel smoothing")
9976 (description
9977 "This package provides kernel smoothers for univariate and multivariate
9978 data, including density functions, density derivatives, cumulative
9979 distributions, modal clustering, discriminant analysis, and two-sample
9980 hypothesis testing.")
9981 ;; Either version of the GPL.
9982 (license (list license:gpl2 license:gpl3))))
9983
9984 (define-public r-feature
9985 (package
9986 (name "r-feature")
9987 (version "1.2.13")
9988 (source
9989 (origin
9990 (method url-fetch)
9991 (uri (cran-uri "feature" version))
9992 (sha256
9993 (base32
9994 "07hkw0bv38naj2hdsx4xxrm2dngi6w3rbvgr7s50bjic8hlgy1ra"))))
9995 (build-system r-build-system)
9996 (propagated-inputs
9997 `(("r-ks" ,r-ks)
9998 ("r-misc3d" ,r-misc3d)
9999 ("r-rgl" ,r-rgl)))
10000 (home-page "http://www.mvstat.net/tduong/")
10001 (synopsis "Inferential feature significance for kernel density estimation")
10002 (description
10003 "The feature package contains functions to display and compute kernel
10004 density estimates, significant gradient and significant curvature regions.
10005 Significant gradient and/or curvature regions often correspond to significant
10006 features (e.g. local modes).")
10007 ;; Either version of the GPL.
10008 (license (list license:gpl2 license:gpl3))))
10009
10010 (define-public r-arm
10011 (package
10012 (name "r-arm")
10013 (version "1.11-2")
10014 (source
10015 (origin
10016 (method url-fetch)
10017 (uri (cran-uri "arm" version))
10018 (sha256
10019 (base32
10020 "1grb27vayr2vhyalzfqbhx6p278r7c3l4pzi5nrz3dmnyqrbx1c3"))))
10021 (build-system r-build-system)
10022 (propagated-inputs
10023 `(("r-abind" ,r-abind)
10024 ("r-coda" ,r-coda)
10025 ("r-hmisc" ,r-hmisc)
10026 ("r-lme4" ,r-lme4)
10027 ("r-mass" ,r-mass)
10028 ("r-matrix" ,r-matrix)
10029 ("r-nlme" ,r-nlme)))
10030 (home-page "https://cran.r-project.org/web/packages/arm/")
10031 (synopsis "Data analysis using regression and multilevel/hierarchical models")
10032 (description
10033 "This package provides functions to accompany A. Gelman and J. Hill,
10034 Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
10035 University Press, 2007.")
10036 (license license:gpl3+)))
10037
10038 (define-public r-circular
10039 (package
10040 (name "r-circular")
10041 (version "0.4-93")
10042 (source
10043 (origin
10044 (method url-fetch)
10045 (uri (cran-uri "circular" version))
10046 (sha256
10047 (base32
10048 "0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
10049 (build-system r-build-system)
10050 (propagated-inputs
10051 `(("r-boot" ,r-boot)
10052 ("r-mvtnorm" ,r-mvtnorm)))
10053 (native-inputs
10054 `(("gfortran" ,gfortran)))
10055 (home-page "https://cran.r-project.org/web/packages/circular/")
10056 (synopsis "Circular statistics")
10057 (description
10058 "This package provides tools for circular statistics, from \"Topics in
10059 circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
10060 Scientific.")
10061 (license license:gpl2+)))
10062
10063 (define-public r-activity
10064 (package
10065 (name "r-activity")
10066 (version "1.3")
10067 (source
10068 (origin
10069 (method url-fetch)
10070 (uri (cran-uri "activity" version))
10071 (sha256
10072 (base32
10073 "12imqj366dp6pam5gap6ji56p5wf1073xz5g4iikfxf5l8snxw92"))))
10074 (build-system r-build-system)
10075 (propagated-inputs
10076 `(("r-circular" ,r-circular)
10077 ("r-insol" ,r-insol)
10078 ("r-pbapply" ,r-pbapply)))
10079 (home-page "https://cran.r-project.org/web/packages/activity/")
10080 (synopsis "Animal activity statistics")
10081 (description
10082 "This package provides functions to fit kernel density functions to
10083 animal activity time data; plot activity distributions; quantify overall
10084 levels of activity; statistically compare activity metrics through
10085 bootstrapping; and evaluate variation in linear variables with time (or other
10086 circular variables).")
10087 (license license:gpl3)))
10088
10089 (define-public r-ouch
10090 (package
10091 (name "r-ouch")
10092 (version "2.14-1")
10093 (source
10094 (origin
10095 (method url-fetch)
10096 (uri (cran-uri "ouch" version))
10097 (sha256
10098 (base32
10099 "0ddf9bw5lhj8vb0ja78jf99i0smq4rgmm842k4a4ygap41vdyn2b"))))
10100 (build-system r-build-system)
10101 (propagated-inputs `(("r-subplex" ,r-subplex)))
10102 (home-page "https://kingaa.github.io/ouch/")
10103 (synopsis "Ornstein-Uhlenbeck models for phylogenetic comparative hypotheses")
10104 (description
10105 "This package provides tools to fit and compare Ornstein-Uhlenbeck models
10106 for evolution along a phylogenetic tree.")
10107 (license license:gpl2+)))
10108
10109 (define-public r-fmsb
10110 (package
10111 (name "r-fmsb")
10112 (version "0.7.0")
10113 (source
10114 (origin
10115 (method url-fetch)
10116 (uri (cran-uri "fmsb" version))
10117 (sha256
10118 (base32
10119 "0x1wkzfdvv4s5xmr0whcwjz4aac71gacwymj2c3mzj2bbswwlw45"))))
10120 (build-system r-build-system)
10121 (home-page "http://minato.sip21c.org/msb/")
10122 (synopsis "Functions for medical statistics book with demographic data")
10123 (description
10124 "This package provides several utility functions for the book entitled
10125 \"Practices of Medical and Health Data Analysis using R\" (Pearson Education
10126 Japan, 2007) with Japanese demographic data and some demographic analysis
10127 related functions.")
10128 (license license:gpl2+)))
10129
10130 (define-public r-stabledist
10131 (package
10132 (name "r-stabledist")
10133 (version "0.7-1")
10134 (source
10135 (origin
10136 (method url-fetch)
10137 (uri (cran-uri "stabledist" version))
10138 (sha256
10139 (base32
10140 "0scar396wiq6wkbkvwp4qrxqc1m075y56p37i6iry5rw796p1i86"))))
10141 (build-system r-build-system)
10142 (home-page "https://www.rmetrics.org")
10143 (synopsis "Stable distribution functions")
10144 (description
10145 "This package provides density, probability and quantile functions, and
10146 random number generation for (skew) stable distributions, using the
10147 parametrizations of Nolan.")
10148 (license license:gpl2+)))
10149
10150 (define-public r-gsl
10151 (package
10152 (name "r-gsl")
10153 (version "2.1-6")
10154 (source
10155 (origin
10156 (method url-fetch)
10157 (uri (cran-uri "gsl" version))
10158 (sha256
10159 (base32
10160 "0p4rh7npp6qbfc5sxjq86xjn7c9ivf3pd60qf1hldwckjqin7m7m"))))
10161 (build-system r-build-system)
10162 (inputs
10163 `(("gsl" ,gsl)))
10164 (home-page "https://cran.r-project.org/web/packages/gsl")
10165 (synopsis "Wrapper for the GNU Scientific Library")
10166 (description
10167 "This package provides an R wrapper for the special functions and quasi
10168 random number generators of the GNU Scientific Library.")
10169 (license license:gpl2+)))
10170
10171 (define-public r-adgoftest
10172 (package
10173 (name "r-adgoftest")
10174 (version "0.3")
10175 (source
10176 (origin
10177 (method url-fetch)
10178 (uri (cran-uri "ADGofTest" version))
10179 (sha256
10180 (base32
10181 "0ik817qzqp6kfbckjp1z7srlma0w6z2zcwykh0jdiv7nahwk3ncw"))))
10182 (properties `((upstream-name . "ADGofTest")))
10183 (build-system r-build-system)
10184 (home-page "https://cran.r-project.org/web/packages/ADGofTest")
10185 (synopsis "Anderson-Darling GoF test")
10186 (description
10187 "This package provides an implementation of the Anderson-Darling GoF test
10188 with p-value calculation based on Marsaglia's 2004 paper \"Evaluating the
10189 Anderson-Darling Distribution\".")
10190 ;; Any version of the GPL.
10191 (license license:gpl3+)))
10192
10193 (define-public r-softimpute
10194 (package
10195 (name "r-softimpute")
10196 (version "1.4")
10197 (source
10198 (origin
10199 (method url-fetch)
10200 (uri (cran-uri "softImpute" version))
10201 (sha256
10202 (base32
10203 "07cxbzkl08q58m1455i139952rmryjlic4s2f2hscl5zxxmfdxcq"))))
10204 (properties `((upstream-name . "softImpute")))
10205 (build-system r-build-system)
10206 (propagated-inputs
10207 `(("r-matrix" ,r-matrix)))
10208 (native-inputs
10209 `(("gfortran" ,gfortran)))
10210 (home-page "https://cran.r-project.org/web/packages/softImpute")
10211 (synopsis "Matrix completion via iterative soft-thresholded SVD")
10212 (description
10213 "This package provides iterative methods for matrix completion that use
10214 nuclear-norm regularization. The package includes procedures for centering
10215 and scaling rows, columns or both, and for computing low-rank @dfn{single
10216 value decompositions} (SVDs) on large sparse centered matrices (i.e. principal
10217 components).")
10218 (license license:gpl2)))
10219
10220 (define-public r-fftwtools
10221 (package
10222 (name "r-fftwtools")
10223 (version "0.9-8")
10224 (source
10225 (origin
10226 (method url-fetch)
10227 (uri (cran-uri "fftwtools" version))
10228 (sha256
10229 (base32
10230 "1nqvpzda281rxi1cmwajxxsn3sc3gz7scv8bvs5jm34kf36whha6"))))
10231 (build-system r-build-system)
10232 (inputs `(("fftw" ,fftw)))
10233 (home-page "https://github.com/krahim/fftwtools")
10234 (synopsis "Wrapper for FFTW3")
10235 (description
10236 "This package provides a wrapper for several FFTW functions. It provides
10237 access to the two-dimensional FFT, the multivariate FFT, and the
10238 one-dimensional real to complex FFT using the FFTW3 library. The package
10239 includes the functions @code{fftw()} and @code{mvfftw()} which are designed to
10240 mimic the functionality of the R functions @code{fft()} and @code{mvfft()}.
10241 The FFT functions have a parameter that allows them to not return the
10242 redundant complex conjugate when the input is real data.")
10243 (license license:gpl2+)))
10244
10245 (define-public r-tiff
10246 (package
10247 (name "r-tiff")
10248 (version "0.1-5")
10249 (source
10250 (origin
10251 (method url-fetch)
10252 (uri (cran-uri "tiff" version))
10253 (sha256
10254 (base32
10255 "0asf2bws3x3yd3g3ixvk0f86b0mdf882pl8xrqlxrkbgjalyc54m"))))
10256 (build-system r-build-system)
10257 (inputs
10258 `(("libtiff" ,libtiff)
10259 ("libjpeg" ,libjpeg-turbo)
10260 ("zlib" ,zlib)))
10261 (home-page "https://www.rforge.net/tiff/")
10262 (synopsis "Read and write TIFF images")
10263 (description
10264 "This package provides an easy and simple way to read, write and display
10265 bitmap images stored in the TIFF format. It can read and write both files and
10266 in-memory raw vectors.")
10267 ;; Either of these two license versions.
10268 (license (list license:gpl2 license:gpl3))))
10269
10270 (define-public r-nlp
10271 (package
10272 (name "r-nlp")
10273 (version "0.2-0")
10274 (source
10275 (origin
10276 (method url-fetch)
10277 (uri (cran-uri "NLP" version))
10278 (sha256
10279 (base32
10280 "0xbhkrnxcbf322jfw31xcn4y2gnk5y7ccq1bz4h3prf44h0whr7w"))))
10281 (properties `((upstream-name . "NLP")))
10282 (build-system r-build-system)
10283 (home-page "https://cran.r-project.org/web/packages/NLP/")
10284 (synopsis "Natural language processing infrastructure")
10285 (description
10286 "This package provides basic classes and methods for Natural Language
10287 Processing.")
10288 (license license:gpl3)))
10289
10290 (define-public r-tm
10291 (package
10292 (name "r-tm")
10293 (version "0.7-7")
10294 (source
10295 (origin
10296 (method url-fetch)
10297 (uri (cran-uri "tm" version))
10298 (sha256
10299 (base32
10300 "0pyics8j7a4wkh5gzin46l0qars5vgbb1886xqpdqjs1z0gy9nyh"))))
10301 (properties `((upstream-name . "tm")))
10302 (build-system r-build-system)
10303 (propagated-inputs
10304 `(("r-bh" ,r-bh)
10305 ("r-nlp" ,r-nlp)
10306 ("r-rcpp" ,r-rcpp)
10307 ("r-slam" ,r-slam)
10308 ("r-xml2" ,r-xml2)))
10309 (home-page "http://tm.r-forge.r-project.org/")
10310 (synopsis "Text mining package")
10311 (description
10312 "This package provides a framework for text mining applications within R.")
10313 (license license:gpl3)))
10314
10315 (define-public r-waveslim
10316 (package
10317 (name "r-waveslim")
10318 (version "1.8.2")
10319 (source
10320 (origin
10321 (method url-fetch)
10322 (uri (cran-uri "waveslim" version))
10323 (sha256
10324 (base32
10325 "0ibivnhz0l06sss5rrrcvyiwg3qpbyk3qn4vx4pp90kj09x4yg0k"))))
10326 (build-system r-build-system)
10327 (native-inputs
10328 `(("gfortran" ,gfortran)))
10329 (home-page "http://waveslim.blogspot.com")
10330 (synopsis "Basic wavelet routines for signal processing")
10331 (description
10332 "This package provides basic wavelet routines for time series (1D),
10333 image (2D) and array (3D) analysis. The code provided here is based on
10334 wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
10335 and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
10336 Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
10337 pairs (Selesnick 2001, 2002).")
10338 (license license:bsd-3)))
10339
10340 (define-public r-wordcloud
10341 (package
10342 (name "r-wordcloud")
10343 (version "2.6")
10344 (source
10345 (origin
10346 (method url-fetch)
10347 (uri (cran-uri "wordcloud" version))
10348 (sha256
10349 (base32
10350 "0j96yyvm6bcrrpbdx4w26piqx44a0vbsr3px9cb4zk8a8da6jwak"))))
10351 (build-system r-build-system)
10352 (propagated-inputs
10353 `(("r-rcolorbrewer" ,r-rcolorbrewer)
10354 ("r-rcpp" ,r-rcpp)
10355 ;; The "tm" package is only "suggested" according to CRAN, but the
10356 ;; wordcloud package cannot be loaded without it.
10357 ("r-tm" ,r-tm)))
10358 (home-page "https://cran.r-project.org/web/packages/wordcloud")
10359 (synopsis "Word clouds")
10360 (description
10361 "This package provides functionality to create pretty word clouds,
10362 visualize differences and similarity between documents, and avoid
10363 over-plotting in scatter plots with text.")
10364 (license license:lgpl2.1)))
10365
10366 (define-public r-colorramps
10367 (package
10368 (name "r-colorramps")
10369 (version "2.3")
10370 (source
10371 (origin
10372 (method url-fetch)
10373 (uri (cran-uri "colorRamps" version))
10374 (sha256
10375 (base32
10376 "0shbjh83x1axv4drm5r3dwgbyv70idih8z4wlzjs4hiac2qfl41z"))))
10377 (properties `((upstream-name . "colorRamps")))
10378 (build-system r-build-system)
10379 (home-page "https://cran.r-project.org/web/packages/colorRamps")
10380 (synopsis "Build color tables")
10381 (description "This package provides features to build gradient color
10382 maps.")
10383 ;; Any version of the GPL
10384 (license license:gpl3+)))
10385
10386 (define-public r-tidytree
10387 (package
10388 (name "r-tidytree")
10389 (version "0.3.3")
10390 (source
10391 (origin
10392 (method url-fetch)
10393 (uri (cran-uri "tidytree" version))
10394 (sha256
10395 (base32 "05b53dap0f784kl6s1wgck6m7brwmy6ifqp7v5l06s1spfspagl6"))))
10396 (build-system r-build-system)
10397 (propagated-inputs
10398 `(("r-ape" ,r-ape)
10399 ("r-dplyr" ,r-dplyr)
10400 ("r-lazyeval" ,r-lazyeval)
10401 ("r-magrittr" ,r-magrittr)
10402 ("r-rlang" ,r-rlang)
10403 ("r-tibble" ,r-tibble)))
10404 (native-inputs
10405 `(("r-knitr" ,r-knitr)))
10406 (home-page "https://github.com/GuangchuangYu/tidytree")
10407 (synopsis "Tidy tool for phylogenetic tree data manipulation")
10408 (description
10409 "Phylogenetic trees generally contain multiple components including nodes,
10410 edges, branches and associated data. This package provides an approach to
10411 convert tree objects to tidy data frames. It also provides tidy interfaces to
10412 manipulate tree data.")
10413 (license license:artistic2.0)))
10414
10415 (define-public r-rvcheck
10416 (package
10417 (name "r-rvcheck")
10418 (version "0.1.8")
10419 (source
10420 (origin
10421 (method url-fetch)
10422 (uri (cran-uri "rvcheck" version))
10423 (sha256
10424 (base32 "0627bc8qmhxmd63yh6f90qni3qw1zwdpxjln2qbychzmzd4am9ac"))))
10425 (build-system r-build-system)
10426 (propagated-inputs
10427 `(("r-biocmanager" ,r-biocmanager)
10428 ("r-rlang" ,r-rlang)))
10429 (home-page "https://cran.r-project.org/web/packages/rvcheck")
10430 (synopsis "R package version check")
10431 (description
10432 "This package provides tools to check the latest release version of R and
10433 R packages (on CRAN, Bioconductor or Github).")
10434 (license license:artistic2.0)))
10435
10436 (define-public r-docopt
10437 (package
10438 (name "r-docopt")
10439 (version "0.7.1")
10440 (source
10441 (origin
10442 (method url-fetch)
10443 (uri (cran-uri "docopt" version))
10444 (sha256
10445 (base32
10446 "1zxhwizs916qm5by7nfslqnarl2q5202xc2azlhrnzk0wj3khiwz"))))
10447 (build-system r-build-system)
10448 (home-page "https://github.com/docopt/docopt.R")
10449 (synopsis "Command-line interface specification language")
10450 (description
10451 "This package enables you to define a command-line interface by just
10452 giving it a description in the specific format.")
10453 (license license:expat)))
10454
10455 (define-public r-sparsesvd
10456 (package
10457 (name "r-sparsesvd")
10458 (version "0.2")
10459 (source
10460 (origin
10461 (method url-fetch)
10462 (uri (cran-uri "sparsesvd" version))
10463 (sha256
10464 (base32
10465 "1xm969fjq3fv1p2sqza2apz8picibj4s2agpwf1sx9nwn3b587qs"))))
10466 (build-system r-build-system)
10467 (propagated-inputs `(("r-matrix" ,r-matrix)))
10468 (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/")
10469 (synopsis "Sparse truncated singular value decomposition")
10470 (description
10471 "This package provides a Wrapper around the SVDLIBC library
10472 for (truncated) singular value decomposition of a sparse matrix. Currently,
10473 only sparse real matrices in Matrix package format are supported.")
10474 ;; SVDLIBC is released under BSD-2. The R interface is released under
10475 ;; BSD-3.
10476 (license (list license:bsd-3 license:bsd-2))))
10477
10478 (define-public r-speedglm
10479 (package
10480 (name "r-speedglm")
10481 (version "0.3-2")
10482 (source
10483 (origin
10484 (method url-fetch)
10485 (uri (cran-uri "speedglm" version))
10486 (sha256
10487 (base32
10488 "1b25zimk0z7ad62yacqdg0zk0qs0jja4i918ym942xfw4j1z3jjz"))))
10489 (build-system r-build-system)
10490 (propagated-inputs
10491 `(("r-mass" ,r-mass)
10492 ("r-matrix" ,r-matrix)))
10493 (home-page "https://cran.r-project.org/web/packages/speedglm")
10494 (synopsis "Fit linear and generalized linear models to large data sets")
10495 (description
10496 "This package provides tools for fitting linear models and generalized
10497 linear models to large data sets by updating algorithms.")
10498 ;; Any version of the GPL
10499 (license license:gpl2+)))
10500
10501 (define-public r-densityclust
10502 (package
10503 (name "r-densityclust")
10504 (version "0.3")
10505 (source
10506 (origin
10507 (method url-fetch)
10508 (uri (cran-uri "densityClust" version))
10509 (sha256
10510 (base32
10511 "1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
10512 (properties `((upstream-name . "densityClust")))
10513 (build-system r-build-system)
10514 (propagated-inputs
10515 `(("r-fnn" ,r-fnn)
10516 ("r-ggplot2" ,r-ggplot2)
10517 ("r-ggrepel" ,r-ggrepel)
10518 ("r-gridextra" ,r-gridextra)
10519 ("r-rcolorbrewer" ,r-rcolorbrewer)
10520 ("r-rcpp" ,r-rcpp)
10521 ("r-rtsne" ,r-rtsne)))
10522 (home-page "https://cran.r-project.org/web/packages/densityClust")
10523 (synopsis "Clustering by fast search and find of density peaks")
10524 (description
10525 "This package provides an improved implementation (based on k-nearest
10526 neighbors) of the density peak clustering algorithm, originally described by
10527 Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
10528 large datasets (> 100,000 samples) very efficiently.")
10529 (license license:gpl2+)))
10530
10531 (define-public r-combinat
10532 (package
10533 (name "r-combinat")
10534 (version "0.0-8")
10535 (source
10536 (origin
10537 (method url-fetch)
10538 (uri (cran-uri "combinat" version))
10539 (sha256
10540 (base32
10541 "1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
10542 (build-system r-build-system)
10543 (home-page "https://cran.r-project.org/web/packages/combinat")
10544 (synopsis "Combinatorics utilities")
10545 (description "This package provides assorted routines for combinatorics.")
10546 (license license:gpl2)))
10547
10548 (define-public r-qlcmatrix
10549 (package
10550 (name "r-qlcmatrix")
10551 (version "0.9.7")
10552 (source
10553 (origin
10554 (method url-fetch)
10555 (uri (cran-uri "qlcMatrix" version))
10556 (sha256
10557 (base32
10558 "0iqkcvvy8rxlk0s83sjq57dd6fadb18p5z31lzy0gnzv1hsy1x8y"))))
10559 (properties `((upstream-name . "qlcMatrix")))
10560 (build-system r-build-system)
10561 (propagated-inputs
10562 `(("r-docopt" ,r-docopt)
10563 ("r-matrix" ,r-matrix)
10564 ("r-slam" ,r-slam)
10565 ("r-sparsesvd" ,r-sparsesvd)))
10566 (home-page "https://cran.r-project.org/web/packages/qlcMatrix")
10567 (synopsis "Sparse matrix functions for quantitative language comparison")
10568 (description
10569 "This package provides an extension of the functionality of the Matrix
10570 package for using sparse matrices. Some of the functions are very general,
10571 while other are highly specific for the special data format used for
10572 @dfn{quantitative language comparison} (QLC).")
10573 (license license:gpl3)))
10574
10575 (define-public r-ddrtree
10576 (package
10577 (name "r-ddrtree")
10578 (version "0.1.5")
10579 (source
10580 (origin
10581 (method url-fetch)
10582 (uri (cran-uri "DDRTree" version))
10583 (sha256
10584 (base32
10585 "16s5fjw7kwlxhrkzdny62sx32fvmg3rxjc3wrh6krd31jh1fqlfk"))))
10586 (properties `((upstream-name . "DDRTree")))
10587 (build-system r-build-system)
10588 (propagated-inputs
10589 `(("r-bh" ,r-bh)
10590 ("r-irlba" ,r-irlba)
10591 ("r-rcpp" ,r-rcpp)
10592 ("r-rcppeigen" ,r-rcppeigen)))
10593 (home-page "https://cran.r-project.org/web/packages/DDRTree")
10594 (synopsis "Learning principal graphs with DDRTree")
10595 (description
10596 "This package provides an implementation of the framework of
10597 @dfn{reversed graph embedding} (RGE) which projects data into a reduced
10598 dimensional space while constructs a principal tree which passes through the
10599 middle of the data simultaneously. DDRTree shows superiority to
10600 alternatives (Wishbone, DPT) for inferring the ordering as well as the
10601 intrinsic structure of single cell genomics data. In general, it could be
10602 used to reconstruct the temporal progression as well as the bifurcation
10603 structure of any data type.")
10604 (license license:asl2.0)))
10605
10606 (define-public r-corpcor
10607 (package
10608 (name "r-corpcor")
10609 (version "1.6.9")
10610 (source
10611 (origin
10612 (method url-fetch)
10613 (uri (cran-uri "corpcor" version))
10614 (sha256
10615 (base32
10616 "1hi3i9d3841snppq1ks5pd8cliq1b4rm4dpsczmfqvwksg8snkrf"))))
10617 (build-system r-build-system)
10618 (home-page "http://strimmerlab.org/software/corpcor/")
10619 (synopsis "Efficient estimation of covariance and (partial) correlation")
10620 (description
10621 "This package implements a James-Stein-type shrinkage estimator for the
10622 covariance matrix, with separate shrinkage for variances and correlations.
10623 Furthermore, functions are available for fast singular value decomposition,
10624 for computing the pseudoinverse, and for checking the rank and positive
10625 definiteness of a matrix.")
10626 (license license:gpl3+)))
10627
10628 (define-public r-rspectra
10629 (package
10630 (name "r-rspectra")
10631 (version "0.16-0")
10632 (source
10633 (origin
10634 (method url-fetch)
10635 (uri (cran-uri "RSpectra" version))
10636 (sha256
10637 (base32
10638 "1ab45as2ysjrvkhvmx7y3nbhd0y1w4j9k2a789lcd973zz4wzwda"))))
10639 (properties `((upstream-name . "RSpectra")))
10640 (build-system r-build-system)
10641 (propagated-inputs
10642 `(("r-matrix" ,r-matrix)
10643 ("r-rcpp" ,r-rcpp)
10644 ("r-rcppeigen" ,r-rcppeigen)))
10645 (home-page "https://github.com/yixuan/RSpectra")
10646 (synopsis "Solvers for large-scale Eigenvalue and SVD problems")
10647 (description
10648 "This package provides an R interface to the Spectra library for
10649 large-scale eigenvalue and SVD problems. It is typically used to compute a
10650 few eigenvalues/vectors of an n by n matrix, e.g., the k largest eigenvalues,
10651 which is usually more efficient than @code{eigen()} if k << n.")
10652 ;; MPL 2 or later.
10653 (license license:mpl2.0)))
10654
10655 (define-public r-vbsr
10656 (package
10657 (name "r-vbsr")
10658 (version "0.0.5")
10659 (source
10660 (origin
10661 (method url-fetch)
10662 (uri (cran-uri "vbsr" version))
10663 (sha256
10664 (base32
10665 "1avskbxxyinjjdga4rnghcfvd4sypv4m39ysfaij5avvmi89bx3b"))))
10666 (build-system r-build-system)
10667 (home-page "https://cran.r-project.org/web/packages/vbsr")
10668 (synopsis "Variational Bayes spike regression regularized linear models")
10669 (description
10670 "This package provides an efficient algorithm for solving ultra-sparse
10671 regularized regression models using a variational Bayes algorithm with a spike
10672 prior. The algorithm is solved on a path, with coordinate updates, and is
10673 capable of generating very sparse models. Very general model
10674 diagnostics for controlling type-1 errors are also provided.")
10675 (license license:gpl2)))
10676
10677 (define-public r-flare
10678 (package
10679 (name "r-flare")
10680 (version "1.6.0.2")
10681 (source
10682 (origin
10683 (method url-fetch)
10684 (uri (cran-uri "flare" version))
10685 (sha256
10686 (base32
10687 "1ybrsx1djqldw0l5l1iz4pfh6xxb8ckkg1ric7wnsr51wm9ljlh5"))))
10688 (build-system r-build-system)
10689 (propagated-inputs
10690 `(("r-igraph" ,r-igraph)
10691 ("r-lattice" ,r-lattice)
10692 ("r-mass" ,r-mass)
10693 ("r-matrix" ,r-matrix)))
10694 (home-page "https://cran.r-project.org/web/packages/flare")
10695 (synopsis "Family of Lasso regression implementations")
10696 (description
10697 "This package provides implementations of a family of Lasso variants
10698 including Dantzig Selector, LAD Lasso, SQRT Lasso, Lq Lasso for estimating
10699 high dimensional sparse linear models.")
10700 (license license:gpl2)))
10701
10702 (define-public r-lassopv
10703 (package
10704 (name "r-lassopv")
10705 (version "0.2.0")
10706 (source
10707 (origin
10708 (method url-fetch)
10709 (uri (cran-uri "lassopv" version))
10710 (sha256
10711 (base32
10712 "0yawnjw063jypk3riy9xab9cmliv6c9dnabi18670khd3gzb2r9z"))))
10713 (build-system r-build-system)
10714 (propagated-inputs `(("r-lars" ,r-lars)))
10715 (home-page "https://github.com/lingfeiwang/lassopv")
10716 (synopsis "Non-parametric p-value estimation for predictors in Lasso")
10717 (description
10718 "This package enables you to estimate the p-values for predictors x
10719 against target variable y in Lasso regression, using the regularization
10720 strength when each predictor enters the active set of regularization path for
10721 the first time as the statistic.")
10722 (license license:gpl3)))
10723
10724 (define-public r-splitstackshape
10725 (package
10726 (name "r-splitstackshape")
10727 (version "1.4.8")
10728 (source
10729 (origin
10730 (method url-fetch)
10731 (uri (cran-uri "splitstackshape" version))
10732 (sha256
10733 (base32
10734 "0mpyf2kkfdl69pdc6brl1r6101vyc6pgr7z17s55ppg3y71k4q35"))))
10735 (build-system r-build-system)
10736 (propagated-inputs
10737 `(("r-data-table" ,r-data-table)))
10738 (home-page "https://github.com/mrdwab/splitstackshape")
10739 (synopsis "Stack and reshape datasets after splitting concatenated values")
10740 (description
10741 "Online data collection tools like Google Forms often export
10742 multiple-response questions with data concatenated in cells. The
10743 @code{concat.split} (cSplit) family of functions provided by this package
10744 splits such data into separate cells. This package also includes functions to
10745 stack groups of columns and to reshape wide data, even when the data are
10746 \"unbalanced\"---something which @code{reshape} (from base R) does not handle,
10747 and which @code{melt} and @code{dcast} from @code{reshape2} do not easily
10748 handle.")
10749 (license license:gpl3)))
10750
10751 (define-public r-tfmpvalue
10752 (package
10753 (name "r-tfmpvalue")
10754 (version "0.0.8")
10755 (source
10756 (origin
10757 (method url-fetch)
10758 (uri (cran-uri "TFMPvalue" version))
10759 (sha256
10760 (base32
10761 "0h9qkl15k8v17v3g9bdnfwvh2s04ywjgg5y0xn2077dmywlja1bd"))))
10762 (properties `((upstream-name . "TFMPvalue")))
10763 (build-system r-build-system)
10764 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10765 (home-page "https://github.com/ge11232002/TFMPvalue")
10766 (synopsis "P-value computation for position weight matrices")
10767 (description
10768 "In putative @dfn{Transcription Factor Binding Sites} (TFBSs)
10769 identification from sequence/alignments, we are interested in the significance
10770 of certain match scores. TFMPvalue provides the accurate calculation of a
10771 p-value with a score threshold for position weight matrices, or the score with
10772 a given p-value. It is an interface to code originally made available by
10773 Helene Touzet and Jean-Stephane Varre, 2007, Algorithms Mol Biol:2, 15.
10774 Touzet and Varre (2007).")
10775 (license license:gpl2)))
10776
10777 (define-public r-rnifti
10778 (package
10779 (name "r-rnifti")
10780 (version "1.1.0")
10781 (source
10782 (origin
10783 (method url-fetch)
10784 (uri (cran-uri "RNifti" version))
10785 (sha256
10786 (base32
10787 "1z8ninp3aq18w0slcfn8r2fp48cdz8l0k0namsrnvgyp8lzcpqpn"))))
10788 (properties `((upstream-name . "RNifti")))
10789 (build-system r-build-system)
10790 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
10791 (home-page "https://github.com/jonclayden/RNifti")
10792 (synopsis "Fast R and C++ access to NIfTI images")
10793 (description
10794 "This package provides very fast read and write access to images stored
10795 in the NIfTI-1 and ANALYZE-7.5 formats, with seamless synchronisation between
10796 compiled C and interpreted R code. It also provides a C/C++ API that can be
10797 used by other packages.")
10798 (license license:gpl2)))
10799
10800 (define-public r-shades
10801 (package
10802 (name "r-shades")
10803 (version "1.4.0")
10804 (source
10805 (origin
10806 (method url-fetch)
10807 (uri (cran-uri "shades" version))
10808 (sha256
10809 (base32
10810 "1zg95sjhrfvbdlfc387g9p0vnb8nb6agdk1mb3wq3kwkm2da0bqj"))))
10811 (build-system r-build-system)
10812 (home-page "https://github.com/jonclayden/shades")
10813 (synopsis "Simple color manipulation")
10814 (description
10815 "This package provides functions for easily manipulating colors,
10816 creating color scales and calculating color distances.")
10817 (license license:bsd-3)))
10818
10819 (define-public r-ore
10820 (package
10821 (name "r-ore")
10822 (version "1.6.3")
10823 (source
10824 (origin
10825 (method url-fetch)
10826 (uri (cran-uri "ore" version))
10827 (sha256
10828 (base32 "1vh6w3arrhgkfjjjw7ci91xmz4wpfr3cmwd5zkqch89dgn07skkv"))))
10829 (build-system r-build-system)
10830 (home-page "https://github.com/jonclayden/ore")
10831 (synopsis "R interface to the Onigmo regular expression library")
10832 (description
10833 "This package provides an alternative to R's built-in functionality for
10834 handling regular expressions, based on the Onigmo library. It offers
10835 first-class compiled regex objects, partial matching and function-based
10836 substitutions, amongst other features.")
10837 (license license:bsd-3)))
10838
10839 (define-public r-reportr
10840 (package
10841 (name "r-reportr")
10842 (version "1.3.0")
10843 (source
10844 (origin
10845 (method url-fetch)
10846 (uri (cran-uri "reportr" version))
10847 (sha256
10848 (base32
10849 "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw"))))
10850 (build-system r-build-system)
10851 (propagated-inputs `(("r-ore" ,r-ore)))
10852 (home-page "https://github.com/jonclayden/reportr")
10853 (synopsis "General message and error reporting system")
10854 (description
10855 "This package provides a system for reporting messages, which offers
10856 certain useful features over the standard R system, such as the incorporation
10857 of output consolidation, message filtering, assertions, expression
10858 substitution, automatic generation of stack traces for debugging, and
10859 conditional reporting based on the current \"output level\".")
10860 (license license:gpl2)))
10861
10862 (define-public r-tractor-base
10863 (package
10864 (name "r-tractor-base")
10865 (version "3.3.2")
10866 (source
10867 (origin
10868 (method url-fetch)
10869 (uri (cran-uri "tractor.base" version))
10870 (sha256
10871 (base32
10872 "0y5gm0y4chl30f5qqq8qiiw4j8g32s4i9xrvyp3cwg902kf2p86i"))))
10873 (properties `((upstream-name . "tractor.base")))
10874 (build-system r-build-system)
10875 (propagated-inputs
10876 `(("r-ore" ,r-ore)
10877 ("r-reportr" ,r-reportr)
10878 ("r-rnifti" ,r-rnifti)
10879 ("r-shades" ,r-shades)))
10880 (home-page "https://www.tractor-mri.org.uk")
10881 (synopsis "Read, manipulate and visualize magnetic resonance images")
10882 (description
10883 "This package provides functions for working with magnetic resonance
10884 images. It supports reading and writing of popular file formats (DICOM,
10885 Analyze, NIfTI-1, NIfTI-2, MGH); interactive and non-interactive
10886 visualization; flexible image manipulation; metadata and sparse image
10887 handling.")
10888 (license license:gpl2)))
10889
10890 (define-public r-grimport
10891 (package
10892 (name "r-grimport")
10893 (version "0.9-3")
10894 (source
10895 (origin
10896 (method url-fetch)
10897 (uri (cran-uri "grImport" version))
10898 (sha256
10899 (base32
10900 "109mrdvq06xq3zgn9ngz0c7zzgqkv5zbpvsb2i636vmlk6y4dpkd"))))
10901 (properties `((upstream-name . "grImport")))
10902 (build-system r-build-system)
10903 (inputs
10904 `(("ghostscript" ,ghostscript)))
10905 (propagated-inputs
10906 `(("r-xml" ,r-xml)))
10907 (home-page "https://cran.r-project.org/web/packages/grImport")
10908 (synopsis "Convert, import, and draw PostScript pictures")
10909 (description
10910 "This package provides functions for converting, importing, and drawing
10911 PostScript pictures in R plots.")
10912 (license license:gpl2+)))
10913
10914 (define-public r-grimport2
10915 (package
10916 (name "r-grimport2")
10917 (version "0.2-0")
10918 (source
10919 (origin
10920 (method url-fetch)
10921 (uri (cran-uri "grImport2" version))
10922 (sha256
10923 (base32
10924 "19q0dd8fpp1g4xf6sg5f8dxybwxjfw553ra6wgjd8b74fzca40m1"))))
10925 (properties `((upstream-name . "grImport2")))
10926 (build-system r-build-system)
10927 (propagated-inputs
10928 `(("r-base64enc" ,r-base64enc)
10929 ("r-jpeg" ,r-jpeg)
10930 ("r-png" ,r-png)
10931 ("r-xml" ,r-xml)))
10932 (home-page "https://cran.r-project.org/web/packages/grImport2/")
10933 (synopsis "Import SVG graphics")
10934 (description
10935 "This package provides functions for importing external vector images and
10936 drawing them as part of R plots. This package is different from the
10937 @code{grImport} package because, where that package imports PostScript format
10938 images, this package imports SVG format images. Furthermore, this package
10939 imports a specific subset of SVG, so external images must be preprocessed
10940 using a package like @code{rsvg} to produce SVG that this package can import.
10941 SVG features that are not supported by R graphics, such as gradient fills, can
10942 be imported and then exported via the @code{gridSVG} package.")
10943 (license license:gpl2+)))
10944
10945 (define-public r-kohonen
10946 (package
10947 (name "r-kohonen")
10948 (version "3.0.10")
10949 (source
10950 (origin
10951 (method url-fetch)
10952 (uri (cran-uri "kohonen" version))
10953 (sha256
10954 (base32
10955 "1ck7j13x701g67bx81x7plszz804jfhl1yg42krcj9x88vm5cscr"))))
10956 (build-system r-build-system)
10957 (propagated-inputs
10958 `(("r-rcpp" ,r-rcpp)))
10959 (home-page "https://cran.r-project.org/web/packages/kohonen")
10960 (synopsis "Supervised and unsupervised self-organising maps")
10961 (description
10962 "This package provides functions to train @dfn{self-organising
10963 maps} (SOMs). Also interrogation of the maps and prediction using trained
10964 maps are supported. The name of the package refers to Teuvo Kohonen, the
10965 inventor of the SOM.")
10966 (license license:gpl2+)))
10967
10968 (define-public r-nnls
10969 (package
10970 (name "r-nnls")
10971 (version "1.4")
10972 (source
10973 (origin
10974 (method url-fetch)
10975 (uri (cran-uri "nnls" version))
10976 (sha256
10977 (base32
10978 "07vcrrxvswrvfiha6f3ikn640yg0m2b4yd9lkmim1g0jmsmpfp8f"))))
10979 (build-system r-build-system)
10980 (native-inputs `(("gfortran" ,gfortran)))
10981 (home-page "https://cran.r-project.org/web/packages/nnls")
10982 (synopsis "Lawson-Hanson algorithm for non-negative least squares")
10983 (description
10984 "This package provides an R interface to the Lawson-Hanson implementation
10985 of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows
10986 the combination of non-negative and non-positive constraints.")
10987 (license license:gpl2+)))
10988
10989 (define-public r-iso
10990 (package
10991 (name "r-iso")
10992 (version "0.0-18.1")
10993 (source
10994 (origin
10995 (method url-fetch)
10996 (uri (cran-uri "Iso" version))
10997 (sha256
10998 (base32
10999 "0vy6jdyvp751430sf2f690yhasjr70cpk3p3lnaaxjq3fs5gg99g"))))
11000 (properties `((upstream-name . "Iso")))
11001 (build-system r-build-system)
11002 (native-inputs `(("gfortran" ,gfortran)))
11003 (home-page "https://www.stat.auckland.ac.nz/~rolf/")
11004 (synopsis "Functions to perform isotonic regression")
11005 (description
11006 "This package provides support for linear order and unimodal
11007 order (univariate) isotonic regression and bivariate isotonic regression with
11008 linear order on both variables.")
11009 (license license:gpl2+)))
11010
11011 (define-public r-chemometricswithr
11012 (package
11013 (name "r-chemometricswithr")
11014 (version "0.1.13")
11015 (source
11016 (origin
11017 (method url-fetch)
11018 (uri (cran-uri "ChemometricsWithR" version))
11019 (sha256
11020 (base32
11021 "166va1g3m1wv21qkmw4wpz0bsrclh3jih8smxphdc13l9pqgclpq"))))
11022 (properties
11023 `((upstream-name . "ChemometricsWithR")))
11024 (build-system r-build-system)
11025 (propagated-inputs
11026 `(("r-devtools" ,r-devtools)
11027 ("r-kohonen" ,r-kohonen)
11028 ("r-mass" ,r-mass)
11029 ("r-pls" ,r-pls)))
11030 (home-page "https://github.com/rwehrens/CWR")
11031 (synopsis "Chemometrics with R")
11032 (description
11033 "This package provides functions and scripts used in the book
11034 \"Chemometrics with R - Multivariate Data Analysis in the Natural Sciences and
11035 Life Sciences\" by Ron Wehrens, Springer (2011).")
11036 (license license:gpl2+)))
11037
11038 (define-public r-als
11039 (package
11040 (name "r-als")
11041 (version "0.0.6")
11042 (source
11043 (origin
11044 (method url-fetch)
11045 (uri (cran-uri "ALS" version))
11046 (sha256
11047 (base32
11048 "1swrn39vy50fazkpf97r7c542gkj6mlvy8gmcxllg7mf2mqx546a"))))
11049 (properties `((upstream-name . "ALS")))
11050 (build-system r-build-system)
11051 (propagated-inputs
11052 `(("r-iso" ,r-iso)
11053 ("r-nnls" ,r-nnls)))
11054 (home-page "https://cran.r-project.org/web/packages/ALS")
11055 (synopsis "Multivariate curve resolution alternating least squares")
11056 (description
11057 "Alternating least squares is often used to resolve components
11058 contributing to data with a bilinear structure; the basic technique may be
11059 extended to alternating constrained least squares. This package provides an
11060 implementation of @dfn{multivariate curve resolution alternating least
11061 squares} (MCR-ALS).
11062
11063 Commonly applied constraints include unimodality, non-negativity, and
11064 normalization of components. Several data matrices may be decomposed
11065 simultaneously by assuming that one of the two matrices in the bilinear
11066 decomposition is shared between datasets.")
11067 (license license:gpl2+)))
11068
11069 (define-public r-strucchange
11070 (package
11071 (name "r-strucchange")
11072 (version "1.5-2")
11073 (source
11074 (origin
11075 (method url-fetch)
11076 (uri (cran-uri "strucchange" version))
11077 (sha256
11078 (base32
11079 "1y022363a4pp0mnji91sjh1qiyspkh09sybqwj03r9pmwrd7q93x"))))
11080 (build-system r-build-system)
11081 (propagated-inputs
11082 `(("r-sandwich" ,r-sandwich)
11083 ("r-zoo" ,r-zoo)))
11084 (home-page "https://cran.r-project.org/web/packages/strucchange")
11085 (synopsis "Testing, monitoring, and dating structural changes")
11086 (description
11087 "This package provides tools for testing, monitoring and dating
11088 structural changes in (linear) regression models. It features tests/methods
11089 from the generalized fluctuation test framework as well as from the F
11090 test (Chow test) framework. This includes methods to fit, plot and test
11091 fluctuation processes (e.g., CUSUM, MOSUM, recursive/moving estimates) and F
11092 statistics, respectively. It is possible to monitor incoming data online
11093 using fluctuation processes. Finally, the breakpoints in regression models
11094 with structural changes can be estimated together with confidence intervals.
11095 Emphasis is always given to methods for visualizing the data.")
11096 ;; Either of these two GPL versions
11097 (license (list license:gpl2 license:gpl3))))
11098
11099 (define-public r-pixmap
11100 (package
11101 (name "r-pixmap")
11102 (version "0.4-11")
11103 (source
11104 (origin
11105 (method url-fetch)
11106 (uri (cran-uri "pixmap" version))
11107 (sha256
11108 (base32
11109 "04klxp6jndw1bp6z40v20fbmdmdpfca2g0czmmmgbkark9s1183g"))))
11110 (build-system r-build-system)
11111 (home-page "https://cran.r-project.org/web/packages/pixmap")
11112 (synopsis "Tools for bitmap images")
11113 (description
11114 "This package provides functions for importing, exporting, plotting and
11115 other manipulations of bitmapped images.")
11116 (license license:gpl2)))
11117
11118 (define-public r-rapidjsonr
11119 (package
11120 (name "r-rapidjsonr")
11121 (version "1.2.0")
11122 (source
11123 (origin
11124 (method url-fetch)
11125 (uri (cran-uri "rapidjsonr" version))
11126 (sha256
11127 (base32
11128 "07zdirhbzmvq3cp4xn8ngk1lgxbbabzays315zxbs3sxrz6lzjb2"))))
11129 (build-system r-build-system)
11130 (home-page "https://cran.r-project.org/web/packages/rapidjsonr")
11131 (synopsis "JSON parser")
11132 (description
11133 "This package provides JSON parsing capability through the Rapidjson
11134 library.")
11135 (license license:expat)))
11136
11137 (define-public r-ontologyindex
11138 (package
11139 (name "r-ontologyindex")
11140 (version "2.5")
11141 (source
11142 (origin
11143 (method url-fetch)
11144 (uri (cran-uri "ontologyIndex" version))
11145 (sha256
11146 (base32
11147 "127hlf0z5fmbgnq4p9h8nvn6p72d2fpcn846zzb99s213421jnry"))))
11148 (properties `((upstream-name . "ontologyIndex")))
11149 (build-system r-build-system)
11150 (home-page "https://cran.r-project.org/web/packages/ontologyIndex")
11151 (synopsis "Functions for processing ontologies in R")
11152 (description
11153 "This package provides functions for reading ontologies into R as lists
11154 and manipulating sets of ontological terms.")
11155 (license license:gpl2+)))
11156
11157 (define-public r-gargle
11158 (package
11159 (name "r-gargle")
11160 (version "0.5.0")
11161 (source
11162 (origin
11163 (method url-fetch)
11164 (uri (cran-uri "gargle" version))
11165 (sha256
11166 (base32
11167 "1fykmiv3x8c9ai31r9wr7qcca51h6kqn9cgwbxvxfj15fhwskh4n"))))
11168 (build-system r-build-system)
11169 (propagated-inputs
11170 `(("r-fs" ,r-fs)
11171 ("r-glue" ,r-glue)
11172 ("r-httr" ,r-httr)
11173 ("r-jsonlite" ,r-jsonlite)
11174 ("r-rlang" ,r-rlang)
11175 ("r-withr" ,r-withr)))
11176 (native-inputs
11177 `(("r-knitr" ,r-knitr)))
11178 (home-page "https://gargle.r-lib.org")
11179 (synopsis "Utilities for working with Google APIs")
11180 (description
11181 "This package provides utilities for working with Google APIs. This
11182 includes functions and classes for handling common credential types and for
11183 preparing, executing, and processing HTTP requests.")
11184 (license license:expat)))
11185
11186 (define-public r-bigrquery
11187 (package
11188 (name "r-bigrquery")
11189 (version "1.3.1")
11190 (source
11191 (origin
11192 (method url-fetch)
11193 (uri (cran-uri "bigrquery" version))
11194 (sha256
11195 (base32
11196 "0mq03sqv5lkyn3dlxvyd6lqqwnryfdaqh05pjvngzp194fxmd9cy"))))
11197 (build-system r-build-system)
11198 (propagated-inputs
11199 `(("r-assertthat" ,r-assertthat)
11200 ("r-bit64" ,r-bit64)
11201 ("r-curl" ,r-curl)
11202 ("r-dbi" ,r-dbi)
11203 ("r-gargle" ,r-gargle)
11204 ("r-glue" ,r-glue)
11205 ("r-httr" ,r-httr)
11206 ("r-jsonlite" ,r-jsonlite)
11207 ("r-prettyunits" ,r-prettyunits)
11208 ("r-progress" ,r-progress)
11209 ("r-rapidjsonr" ,r-rapidjsonr)
11210 ("r-rcpp" ,r-rcpp)
11211 ("r-rlang" ,r-rlang)
11212 ("r-tibble" ,r-tibble)))
11213 (home-page "https://github.com/rstats-db/bigrquery")
11214 (synopsis "R interface to Google's BigQuery API")
11215 (description
11216 "This package provides an R interface to Google's BigQuery database.")
11217 (license license:gpl3)))
11218
11219 (define-public r-gmp
11220 (package
11221 (name "r-gmp")
11222 (version "0.6-0")
11223 (source
11224 (origin
11225 (method url-fetch)
11226 (uri (cran-uri "gmp" version))
11227 (sha256
11228 (base32
11229 "1c9vpr6j6h5f6dm9l535nscl66rvr8sba5az2kswjhmzwb9xpjxc"))))
11230 (build-system r-build-system)
11231 (arguments
11232 '(#:phases
11233 (modify-phases %standard-phases
11234 (add-after 'unpack 'set-CC
11235 (lambda _ (setenv "CC" "gcc") #t)))))
11236 (inputs `(("gmp" ,gmp)))
11237 (home-page "https://cran.r-project.org/web/packages/gmp")
11238 (synopsis "Multiple precision arithmetic")
11239 (description
11240 "This package supports multiple precision arithmetic (big integers and
11241 rationals, prime number tests, matrix computation), \"arithmetic without
11242 limitations\" using the GNU Multiple Precision library.")
11243 ;; Any version of the GPL.
11244 (license license:gpl3+)))
11245
11246 (define-public r-rmpfr
11247 (package
11248 (name "r-rmpfr")
11249 (version "0.8-1")
11250 (source
11251 (origin
11252 (method url-fetch)
11253 (uri (cran-uri "Rmpfr" version))
11254 (sha256
11255 (base32
11256 "09kw7hyca8xc09r2d88qj81cclar8acaq5q9q5rw9f49iffda0rr"))))
11257 (properties `((upstream-name . "Rmpfr")))
11258 (build-system r-build-system)
11259 (inputs
11260 `(("mpfr" ,mpfr)
11261 ("gmp" ,gmp)))
11262 (propagated-inputs
11263 `(("r-gmp" ,r-gmp)))
11264 (native-inputs
11265 `(("pkg-config" ,pkg-config)))
11266 (home-page "http://rmpfr.r-forge.r-project.org/")
11267 (synopsis "R bindings to the MPFR library")
11268 (description
11269 "This package supports arithmetic (via S4 classes and methods) for
11270 arbitrary precision floating point numbers, including transcendental
11271 functions. To this end, the package interfaces with the @dfn{Multiple
11272 Precision Floating-Point Reliable} (MPFR) library.")
11273 (license license:gpl2+)))
11274
11275 (define-public r-assertive-base
11276 (package
11277 (name "r-assertive-base")
11278 (version "0.0-7")
11279 (source
11280 (origin
11281 (method url-fetch)
11282 (uri (cran-uri "assertive.base" version))
11283 (sha256
11284 (base32
11285 "1xs3ysvj0z57c58jw57pckq2rynia6ks4rmjmc02alczhk54wbgh"))))
11286 (properties
11287 `((upstream-name . "assertive.base")))
11288 (build-system r-build-system)
11289 (home-page "https://bitbucket.org/richierocks/assertive.base")
11290 (synopsis "Core of the assertive package")
11291 (description
11292 "This package provides a minimal set of predicates and assertions used by
11293 the assertive package. This is mainly for use by other package developers who
11294 want to include run-time testing features in their own packages.")
11295 (license license:gpl3+)))
11296
11297 (define-public r-assertive-properties
11298 (package
11299 (name "r-assertive-properties")
11300 (version "0.0-4")
11301 (source
11302 (origin
11303 (method url-fetch)
11304 (uri (cran-uri "assertive.properties" version))
11305 (sha256
11306 (base32
11307 "0sqs54acs9qk9kvm32rxzfbzxz1l8mjahpfnw7r30z2brgz661jw"))))
11308 (properties
11309 `((upstream-name . "assertive.properties")))
11310 (build-system r-build-system)
11311 (propagated-inputs
11312 `(("r-assertive-base" ,r-assertive-base)))
11313 (home-page "https://bitbucket.org/richierocks/assertive.properties")
11314 (synopsis "Assertions to check properties of variables")
11315 (description
11316 "This package provides a set of predicates and assertions for checking
11317 the properties of variables, such as length, names and attributes. This is
11318 mainly for use by other package developers who want to include run-time
11319 testing features in their own packages.")
11320 (license license:gpl3+)))
11321
11322 (define-public r-assertive-numbers
11323 (package
11324 (name "r-assertive-numbers")
11325 (version "0.0-2")
11326 (source
11327 (origin
11328 (method url-fetch)
11329 (uri (cran-uri "assertive.numbers" version))
11330 (sha256
11331 (base32
11332 "0jc3ss64j4m7bjydhagwwmka5n7c72vpw4kfcch0m5jvkq5qrqds"))))
11333 (properties
11334 `((upstream-name . "assertive.numbers")))
11335 (build-system r-build-system)
11336 (propagated-inputs
11337 `(("r-assertive-base" ,r-assertive-base)))
11338 (home-page "https://bitbucket.org/richierocks/assertive.numbers")
11339 (synopsis "Assertions to check properties of numbers")
11340 (description
11341 "This package provides a set of predicates and assertions for checking
11342 the properties of numbers. This is mainly for use by other package developers
11343 who want to include run-time testing features in their own packages.")
11344 (license license:gpl3+)))
11345
11346 (define-public r-assertive-sets
11347 (package
11348 (name "r-assertive-sets")
11349 (version "0.0-3")
11350 (source
11351 (origin
11352 (method url-fetch)
11353 (uri (cran-uri "assertive.sets" version))
11354 (sha256
11355 (base32
11356 "1cqvh2syvh5b6d85h601zjmsdbbf3h8q98ids4dfl4frdshpasc7"))))
11357 (properties
11358 `((upstream-name . "assertive.sets")))
11359 (build-system r-build-system)
11360 (propagated-inputs
11361 `(("r-assertive-base" ,r-assertive-base)))
11362 (home-page "https://bitbucket.org/richierocks/assertive.sets")
11363 (synopsis "Assertions to check properties of sets")
11364 (description
11365 "This package provides a set of predicates and assertions for checking
11366 the properties of sets. This is mainly for use by other package developers
11367 who want to include run-time testing features in their own packages.")
11368 (license license:gpl3+)))
11369
11370 (define-public r-assertive-matrices
11371 (package
11372 (name "r-assertive-matrices")
11373 (version "0.0-2")
11374 (source
11375 (origin
11376 (method url-fetch)
11377 (uri (cran-uri "assertive.matrices" version))
11378 (sha256
11379 (base32
11380 "16sykzcndv6y2d43x6v9n7m95kv76364h39kh10w4z0xw6ksfqil"))))
11381 (properties
11382 `((upstream-name . "assertive.matrices")))
11383 (build-system r-build-system)
11384 (propagated-inputs
11385 `(("r-assertive-base" ,r-assertive-base)))
11386 (home-page "https://bitbucket.org/richierocks/assertive.matrices")
11387 (synopsis "Assertions to check properties of matrices")
11388 (description
11389 "This package provides a set of predicates and assertions for checking
11390 the properties of matrices. This is mainly for use by other package
11391 developers who want to include run-time testing features in their own
11392 packages.")
11393 (license license:gpl3+)))
11394
11395 (define-public r-assertive-models
11396 (package
11397 (name "r-assertive-models")
11398 (version "0.0-2")
11399 (source
11400 (origin
11401 (method url-fetch)
11402 (uri (cran-uri "assertive.models" version))
11403 (sha256
11404 (base32
11405 "0bn4j4v5qvb2d672cgri61p8d9v258pmz35y3lvm6b9mdxwdi9mr"))))
11406 (properties
11407 `((upstream-name . "assertive.models")))
11408 (build-system r-build-system)
11409 (propagated-inputs
11410 `(("r-assertive-base" ,r-assertive-base)))
11411 (home-page "https://bitbucket.org/richierocks/assertive.models")
11412 (synopsis "Assertions to check properties of models")
11413 (description
11414 "This package provides a set of predicates and assertions for checking
11415 the properties of models. This is mainly for use by other package developers
11416 who want to include run-time testing features in their own packages.")
11417 (license license:gpl3+)))
11418
11419 (define-public r-assertive-reflection
11420 (package
11421 (name "r-assertive-reflection")
11422 (version "0.0-5")
11423 (source
11424 (origin
11425 (method url-fetch)
11426 (uri (cran-uri "assertive.reflection" version))
11427 (sha256
11428 (base32
11429 "1g9lpwzy6r2xmyi2mlbcccnfgyzhzbmx5bsicf3vkffxrlkrpjn2"))))
11430 (properties
11431 `((upstream-name . "assertive.reflection")))
11432 (build-system r-build-system)
11433 (propagated-inputs
11434 `(("r-assertive-base" ,r-assertive-base)))
11435 (home-page "https://bitbucket.org/richierocks/assertive.reflection")
11436 (synopsis "Assertions for checking the state of R")
11437 (description
11438 "This package provides a set of predicates and assertions for checking
11439 the state and capabilities of R, the operating system it is running on, and
11440 the IDE being used. This is mainly for use by other package developers who
11441 want to include run-time testing features in their own packages.")
11442 (license license:gpl3+)))
11443
11444 (define-public r-assertive-types
11445 (package
11446 (name "r-assertive-types")
11447 (version "0.0-3")
11448 (source
11449 (origin
11450 (method url-fetch)
11451 (uri (cran-uri "assertive.types" version))
11452 (sha256
11453 (base32
11454 "0zxq1jfrzgw95ll7alvm0xnk7aihjdksngq4ya2whyvfjbmv4vdb"))))
11455 (properties
11456 `((upstream-name . "assertive.types")))
11457 (build-system r-build-system)
11458 (propagated-inputs
11459 `(("r-assertive-base" ,r-assertive-base)
11460 ("r-assertive-properties" ,r-assertive-properties)
11461 ("r-codetools" ,r-codetools)))
11462 (home-page "https://bitbucket.org/richierocks/assertive.types")
11463 (synopsis "Assertions to check types of variables")
11464 (description
11465 "This package provides a set of predicates and assertions for checking
11466 the types of variables. This is mainly for use by other package developers
11467 who want to include run-time testing features in their own packages.")
11468 (license license:gpl3+)))
11469
11470 (define-public r-assertive-files
11471 (package
11472 (name "r-assertive-files")
11473 (version "0.0-2")
11474 (source
11475 (origin
11476 (method url-fetch)
11477 (uri (cran-uri "assertive.files" version))
11478 (sha256
11479 (base32
11480 "02pfz8j5vwcj5kl6zca46894li7lxwnlrr29j922f14ay6kdssmy"))))
11481 (properties
11482 `((upstream-name . "assertive.files")))
11483 (build-system r-build-system)
11484 (propagated-inputs
11485 `(("r-assertive-base" ,r-assertive-base)
11486 ("r-assertive-numbers" ,r-assertive-numbers)))
11487 (home-page "https://bitbucket.org/richierocks/assertive.files")
11488 (synopsis "Assertions to check properties of files")
11489 (description
11490 "This package provides a set of predicates and assertions for checking
11491 the properties of files and connections. This is mainly for use by other
11492 package developers who want to include run-time testing features in their own
11493 packages.")
11494 (license license:gpl3+)))
11495
11496 (define-public r-assertive-code
11497 (package
11498 (name "r-assertive-code")
11499 (version "0.0-3")
11500 (source
11501 (origin
11502 (method url-fetch)
11503 (uri (cran-uri "assertive.code" version))
11504 (sha256
11505 (base32
11506 "1qhbp668zfvhqs8avkhg9amp4zyazz6dsy4fc6kpdmw3sv8yi07g"))))
11507 (properties
11508 `((upstream-name . "assertive.code")))
11509 (build-system r-build-system)
11510 (propagated-inputs
11511 `(("r-assertive-base" ,r-assertive-base)
11512 ("r-assertive-properties" ,r-assertive-properties)
11513 ("r-assertive-types" ,r-assertive-types)))
11514 (home-page "https://bitbucket.org/richierocks/assertive.code")
11515 (synopsis "Assertions to check properties of code")
11516 (description
11517 "This package provides a set of predicates and assertions for checking
11518 the properties of code. This is mainly for use by other package developers
11519 who want to include run-time testing features in their own packages.")
11520 (license license:gpl3+)))
11521
11522 (define-public r-assertive-datetimes
11523 (package
11524 (name "r-assertive-datetimes")
11525 (version "0.0-3")
11526 (source
11527 (origin
11528 (method url-fetch)
11529 (uri (cran-uri "assertive.datetimes" version))
11530 (sha256
11531 (base32
11532 "151d05z8n6dpl44pqsa1jfi0ijbigr3zfc43xlw53nd8ymi22kh1"))))
11533 (properties
11534 `((upstream-name . "assertive.datetimes")))
11535 (build-system r-build-system)
11536 (propagated-inputs
11537 `(("r-assertive-base" ,r-assertive-base)
11538 ("r-assertive-types" ,r-assertive-types)))
11539 (home-page "https://bitbucket.org/richierocks/assertive.datetimes")
11540 (synopsis "Assertions to check properties of dates and times")
11541 (description
11542 "This package provides a set of predicates and assertions for checking
11543 the properties of dates and times. This is mainly for use by other package
11544 developers who want to include run-time testing features in their own
11545 packages.")
11546 (license license:gpl3+)))
11547
11548 (define-public r-assertive-strings
11549 (package
11550 (name "r-assertive-strings")
11551 (version "0.0-3")
11552 (source
11553 (origin
11554 (method url-fetch)
11555 (uri (cran-uri "assertive.strings" version))
11556 (sha256
11557 (base32
11558 "0n6jrk88670g4ym0r8ii40a08a90z1xadj8wcryk8h0nl04dchfm"))))
11559 (properties
11560 `((upstream-name . "assertive.strings")))
11561 (build-system r-build-system)
11562 (propagated-inputs
11563 `(("r-assertive-base" ,r-assertive-base)
11564 ("r-assertive-types" ,r-assertive-types)
11565 ("r-stringi" ,r-stringi)))
11566 (home-page "https://bitbucket.org/richierocks/assertive.strings")
11567 (synopsis "Assertions to check properties of strings")
11568 (description
11569 "This package provides a set of predicates and assertions for checking
11570 the properties of strings. This is mainly for use by other package developers
11571 who want to include run-time testing features in their own packages.")
11572 (license license:gpl3+)))
11573
11574 (define-public r-assertive-data-us
11575 (package
11576 (name "r-assertive-data-us")
11577 (version "0.0-2")
11578 (source
11579 (origin
11580 (method url-fetch)
11581 (uri (cran-uri "assertive.data.us" version))
11582 (sha256
11583 (base32
11584 "1bgspn0sccmp9z7s7djvdvprgxlyc5vrxznp4zfjb79kwvgn83hq"))))
11585 (properties
11586 `((upstream-name . "assertive.data.us")))
11587 (build-system r-build-system)
11588 (propagated-inputs
11589 `(("r-assertive-base" ,r-assertive-base)
11590 ("r-assertive-strings" ,r-assertive-strings)))
11591 (home-page "https://bitbucket.org/richierocks/assertive.data.us")
11592 (synopsis "Assertions to check properties of strings")
11593 (description
11594 "This package provides a set of predicates and assertions for checking
11595 the properties of US-specific complex data types. This is mainly for use by
11596 other package developers who want to include run-time testing features in
11597 their own packages.")
11598 (license license:gpl3+)))
11599
11600 (define-public r-assertive-data-uk
11601 (package
11602 (name "r-assertive-data-uk")
11603 (version "0.0-2")
11604 (source
11605 (origin
11606 (method url-fetch)
11607 (uri (cran-uri "assertive.data.uk" version))
11608 (sha256
11609 (base32
11610 "1fzjvhwp7mwkqqix29khvs6zcrc82n6j4czvzzb473vyjyvdlj5b"))))
11611 (properties
11612 `((upstream-name . "assertive.data.uk")))
11613 (build-system r-build-system)
11614 (propagated-inputs
11615 `(("r-assertive-base" ,r-assertive-base)
11616 ("r-assertive-strings" ,r-assertive-strings)))
11617 (home-page "https://bitbucket.org/richierocks/assertive.data.uk")
11618 (synopsis "Assertions to check properties of strings")
11619 (description
11620 "This package provides a set of predicates and assertions for checking
11621 the properties of UK-specific complex data types. This is mainly for use by
11622 other package developers who want to include run-time testing features in
11623 their own packages.")
11624 (license license:gpl3+)))
11625
11626 (define-public r-assertive-data
11627 (package
11628 (name "r-assertive-data")
11629 (version "0.0-3")
11630 (source
11631 (origin
11632 (method url-fetch)
11633 (uri (cran-uri "assertive.data" version))
11634 (sha256
11635 (base32
11636 "00cvg2g36mdl8plrzx40m63qd55742mddqrchwy9n3c7mm4gn02s"))))
11637 (properties
11638 `((upstream-name . "assertive.data")))
11639 (build-system r-build-system)
11640 (propagated-inputs
11641 `(("r-assertive-base" ,r-assertive-base)
11642 ("r-assertive-strings" ,r-assertive-strings)))
11643 (home-page "https://bitbucket.org/richierocks/assertive.data")
11644 (synopsis "Assertions to check properties of data")
11645 (description
11646 "This package provides a set of predicates and assertions for checking
11647 the properties of (country independent) complex data types. This is mainly
11648 for use by other package developers who want to include run-time testing
11649 features in their own packages.")
11650 (license license:gpl3+)))
11651
11652 (define-public r-assertive
11653 (package
11654 (name "r-assertive")
11655 (version "0.3-6")
11656 (source
11657 (origin
11658 (method url-fetch)
11659 (uri (cran-uri "assertive" version))
11660 (sha256
11661 (base32
11662 "02palil82idqhhshcdjsfsja9qkqnd0dczqzj5gbccy4hfg1c0y4"))))
11663 (build-system r-build-system)
11664 (propagated-inputs
11665 `(("r-assertive-base" ,r-assertive-base)
11666 ("r-assertive-code" ,r-assertive-code)
11667 ("r-assertive-data" ,r-assertive-data)
11668 ("r-assertive-data-uk" ,r-assertive-data-uk)
11669 ("r-assertive-data-us" ,r-assertive-data-us)
11670 ("r-assertive-datetimes" ,r-assertive-datetimes)
11671 ("r-assertive-files" ,r-assertive-files)
11672 ("r-assertive-matrices" ,r-assertive-matrices)
11673 ("r-assertive-models" ,r-assertive-models)
11674 ("r-assertive-numbers" ,r-assertive-numbers)
11675 ("r-assertive-properties" ,r-assertive-properties)
11676 ("r-assertive-reflection" ,r-assertive-reflection)
11677 ("r-assertive-sets" ,r-assertive-sets)
11678 ("r-assertive-strings" ,r-assertive-strings)
11679 ("r-assertive-types" ,r-assertive-types)
11680 ("r-knitr" ,r-knitr)))
11681 (native-inputs
11682 `(("r-knitr" ,r-knitr)))
11683 (home-page "https://bitbucket.org/richierocks/assertive")
11684 (synopsis "Readable check functions to ensure code integrity")
11685 (description
11686 "This package provides lots of predicates (@code{is_*} functions) to
11687 check the state of your variables, and assertions (@code{assert_*} functions)
11688 to throw errors if they aren't in the right form.")
11689 (license license:gpl3+)))
11690
11691 (define-public r-dotcall64
11692 (package
11693 (name "r-dotcall64")
11694 (version "1.0-0")
11695 (source
11696 (origin
11697 (method url-fetch)
11698 (uri (cran-uri "dotCall64" version))
11699 (sha256
11700 (base32
11701 "1b8p7m3w0m7bp977c6jz74xkd611cxg11j49yza59k5fp338scb9"))))
11702 (properties `((upstream-name . "dotCall64")))
11703 (build-system r-build-system)
11704 (native-inputs `(("gfortran" ,gfortran)))
11705 (home-page "https://git.math.uzh.ch/reinhard.furrer/dotCall64")
11706 (synopsis "Enhanced foreign function interface supporting long vectors")
11707 (description
11708 "This package provides @code{.C64()}, an enhanced version of @code{.C()}
11709 and @code{.Fortran()} from the R foreign function interface. @code{.C64()}
11710 supports long vectors, arguments of type 64-bit integer, and provides a
11711 mechanism to avoid unnecessary copies of read-only and write-only arguments.
11712 This makes it a convenient and fast interface to C/C++ and Fortran code.")
11713 (license license:gpl2+)))
11714
11715 (define-public r-spam
11716 (package
11717 (name "r-spam")
11718 (version "2.5-1")
11719 (source
11720 (origin
11721 (method url-fetch)
11722 (uri (cran-uri "spam" version))
11723 (sha256
11724 (base32 "0ry0a76cljlmilrzcriiizcidxyhq1i7i9bqhvl1qda81ld8hifi"))))
11725 (build-system r-build-system)
11726 (propagated-inputs
11727 `(("r-dotcall64" ,r-dotcall64)))
11728 (native-inputs `(("gfortran" ,gfortran)))
11729 (home-page "https://www.math.uzh.ch/pages/spam/")
11730 (synopsis "Sparse matrix algebra")
11731 (description
11732 "This package provides a set of functions for sparse matrix algebra.
11733 Differences with other sparse matrix packages are:
11734
11735 @enumerate
11736 @item it only supports (essentially) one sparse matrix format;
11737 @item it is based on transparent and simple structure(s);
11738 @item it is tailored for MCMC calculations within G(M)RF;
11739 @item and it is fast and scalable (with the extension package @code{spam64}).
11740 @end enumerate\n")
11741 ;; Either of these licenses
11742 (license (list license:bsd-3 license:lgpl2.0))))
11743
11744 (define-public r-fields
11745 (package
11746 (name "r-fields")
11747 (version "10.3")
11748 (source
11749 (origin
11750 (method url-fetch)
11751 (uri (cran-uri "fields" version))
11752 (sha256
11753 (base32 "12k97vfjlz5h8vynirnvik1nyj1iw25n8xl7awmx9mpd6wvgy2s9"))))
11754 (build-system r-build-system)
11755 (propagated-inputs
11756 `(("r-maps" ,r-maps)
11757 ("r-spam" ,r-spam)))
11758 (native-inputs
11759 `(("gfortran" ,gfortran)))
11760 (home-page "https://www.image.ucar.edu/fields")
11761 (synopsis "Tools for spatial data")
11762 (description
11763 "This is a package for curve, surface and function fitting with an
11764 emphasis on splines, spatial data and spatial statistics. The major methods
11765 include cubic, and thin plate splines, Kriging, and compactly supported
11766 covariance functions for large data sets.")
11767 (license license:gpl2+)))
11768
11769 (define-public r-spatialextremes
11770 (package
11771 (name "r-spatialextremes")
11772 (version "2.0-8")
11773 (source
11774 (origin
11775 (method url-fetch)
11776 (uri (cran-uri "SpatialExtremes" version))
11777 (sha256
11778 (base32
11779 "0r2byz5xxc46zqnigdax28q7446ibmzmsmi10lmm2hdks3ml6sl3"))))
11780 (properties
11781 `((upstream-name . "SpatialExtremes")))
11782 (build-system r-build-system)
11783 (propagated-inputs
11784 `(("r-fields" ,r-fields)
11785 ("r-maps" ,r-maps)))
11786 (home-page "http://spatialextremes.r-forge.r-project.org/")
11787 (synopsis "Modelling spatial extremes")
11788 (description
11789 "This package provides tools for the statistical modelling of spatial
11790 extremes using max-stable processes, copula or Bayesian hierarchical models.
11791 More precisely, this package allows (conditional) simulations from various
11792 parametric max-stable models, analysis of the extremal spatial dependence, the
11793 fitting of such processes using composite likelihoods or least square (simple
11794 max-stable processes only), model checking and selection and prediction.")
11795 (license license:gpl2+)))
11796
11797 (define-public r-drc
11798 (package
11799 (name "r-drc")
11800 (version "3.0-1")
11801 (source
11802 (origin
11803 (method url-fetch)
11804 (uri (cran-uri "drc" version))
11805 (sha256
11806 (base32
11807 "0c8xn8ripzq270hy8d16fcnx02l02alddznd7fqwk3jyi6113h1y"))))
11808 (build-system r-build-system)
11809 (propagated-inputs
11810 `(("r-car" ,r-car)
11811 ("r-gtools" ,r-gtools)
11812 ("r-mass" ,r-mass)
11813 ("r-multcomp" ,r-multcomp)
11814 ("r-plotrix" ,r-plotrix)
11815 ("r-scales" ,r-scales)))
11816 (home-page "https://cran.r-project.org/web/packages/drc")
11817 (synopsis "Analysis of dose-response curves")
11818 (description
11819 "This package provides a suite of flexible and versatile model fitting
11820 and after-fitting functions for the analysis of dose-response data.")
11821 (license license:gpl2+)))
11822
11823 (define-public r-rmeta
11824 (package
11825 (name "r-rmeta")
11826 (version "3.0")
11827 (source
11828 (origin
11829 (method url-fetch)
11830 (uri (cran-uri "rmeta" version))
11831 (sha256
11832 (base32
11833 "0vkbnxp579v8zmcv1isdbzj5swpr6fq17zwparxcvzswjc2x9ydr"))))
11834 (build-system r-build-system)
11835 (home-page "https://cran.r-project.org/web/packages/rmeta")
11836 (synopsis "Tools for meta-analysis")
11837 (description
11838 "This package provides functions for simple fixed and random effects
11839 meta-analysis for two-sample comparisons and cumulative meta-analyses. It
11840 draws standard summary plots, funnel plots, and computes summaries and tests
11841 for association and heterogeneity.")
11842 (license license:gpl2)))
11843
11844 (define-public r-bootstrap
11845 (package
11846 (name "r-bootstrap")
11847 (version "2019.6")
11848 (source
11849 (origin
11850 (method url-fetch)
11851 (uri (cran-uri "bootstrap" version))
11852 (sha256
11853 (base32
11854 "1546jqhhw5h177ii8jkdikyd26rv6gwkav816np1zks4p7zgsljj"))))
11855 (build-system r-build-system)
11856 (native-inputs `(("gfortran" ,gfortran)))
11857 (home-page "https://cran.r-project.org/web/packages/bootstrap")
11858 (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
11859 (description
11860 "This package provides software and data for the book \"An Introduction
11861 to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
11862 This package is primarily provided for projects already based on it, and for
11863 support of the book. New projects should preferentially use the recommended
11864 package \"boot\".")
11865 (license license:bsd-3)))
11866
11867 (define-public r-survivalroc
11868 (package
11869 (name "r-survivalroc")
11870 (version "1.0.3")
11871 (source
11872 (origin
11873 (method url-fetch)
11874 (uri (cran-uri "survivalROC" version))
11875 (sha256
11876 (base32
11877 "0wnd65ff5w679hxa1zrpfrx9qg47q21pjxppsga6m3h4iq1yfj8l"))))
11878 (properties `((upstream-name . "survivalROC")))
11879 (build-system r-build-system)
11880 (home-page "https://cran.r-project.org/web/packages/survivalROC")
11881 (synopsis "Time-dependent ROC curve estimation from censored survival data")
11882 (description
11883 "Compute time-dependent ROC curve from censored survival data using
11884 Kaplan-Meier (KM) or Nearest Neighbor Estimation (NNE) method of Heagerty,
11885 Lumley & Pepe (Biometrics, Vol 56 No 2, 2000, PP 337-344)")
11886 (license license:gpl2+)))
11887
11888 (define-public r-longitudinal
11889 (package
11890 (name "r-longitudinal")
11891 (version "1.1.12")
11892 (source
11893 (origin
11894 (method url-fetch)
11895 (uri (cran-uri "longitudinal" version))
11896 (sha256
11897 (base32
11898 "1d83ws28nxi3kw5lgd5n5y7865djq7ky72fw3ddi1fkkhg1r9y6l"))))
11899 (build-system r-build-system)
11900 (propagated-inputs `(("r-corpcor" ,r-corpcor)))
11901 (home-page "http://strimmerlab.org/software/longitudinal/")
11902 (synopsis "Analysis of multiple time course data")
11903 (description
11904 "This package contains general data structures and functions for
11905 longitudinal data with multiple variables, repeated measurements, and
11906 irregularly spaced time points. It also implements a shrinkage estimator of
11907 dynamical correlation and dynamical covariance.")
11908 (license license:gpl3+)))
11909
11910 (define-public r-genenet
11911 (package
11912 (name "r-genenet")
11913 (version "1.2.15")
11914 (source
11915 (origin
11916 (method url-fetch)
11917 (uri (cran-uri "GeneNet" version))
11918 (sha256
11919 (base32
11920 "11ba6ahsk3x9alvcw8bai2bpg84ki1m8nadrjjdhjg65svhw8njm"))))
11921 (properties `((upstream-name . "GeneNet")))
11922 (build-system r-build-system)
11923 (propagated-inputs
11924 `(("r-corpcor" ,r-corpcor)
11925 ("r-fdrtool" ,r-fdrtool)
11926 ("r-longitudinal" ,r-longitudinal)))
11927 (home-page "http://strimmerlab.org/software/genenet/")
11928 (synopsis "Modeling and inferring gene networks")
11929 (description
11930 "This package analyzes gene expression (time series) data with focus on
11931 the inference of gene networks. In particular, GeneNet implements the methods
11932 of Schaefer and Strimmer (2005a,b,c) and Opgen-Rhein and Strimmer (2006, 2007)
11933 for learning large-scale gene association networks (including assignment of
11934 putative directions).")
11935 (license license:gpl3+)))
11936
11937 (define-public r-rbamtools
11938 (package
11939 (name "r-rbamtools")
11940 (version "2.16.17")
11941 (source
11942 (origin
11943 (method url-fetch)
11944 (uri (cran-uri "rbamtools" version))
11945 (sha256
11946 (base32
11947 "0qj37ljdva3v29s01dkrbg31mcfzy3bl145cp40d54v4h9xhcghc"))))
11948 (build-system r-build-system)
11949 (inputs `(("zlib" ,zlib)))
11950 (propagated-inputs
11951 `(("r-refgenome" ,r-refgenome)))
11952 (home-page "https://cran.r-project.org/web/packages/rbamtools")
11953 (synopsis "Read and write BAM (binary alignment) files")
11954 (description
11955 "This package provides an R interface to functions of the SAMtools
11956 library.")
11957 (license license:artistic2.0)))
11958
11959 (define-public r-protviz
11960 (package
11961 (name "r-protviz")
11962 (version "0.6.8")
11963 (source
11964 (origin
11965 (method url-fetch)
11966 (uri (cran-uri "protViz" version))
11967 (sha256
11968 (base32
11969 "0rn8fjg7791a4j2k1kk1jwx40xz20bfaavvflmhyzpl398vmmy3a"))))
11970 (properties `((upstream-name . "protViz")))
11971 (build-system r-build-system)
11972 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
11973 (home-page "https://github.com/protViz/protViz/")
11974 (synopsis "Visualizing and analyzing mass spectrometry data in proteomics")
11975 (description
11976 "This package helps with quality checks, visualizations and analysis of
11977 mass spectrometry data, coming from proteomics experiments. The package is
11978 developed, tested and used at the Functional Genomics Center Zurich, where it
11979 is used mainly for prototyping, teaching, and having fun with proteomics data.
11980 But it can also be used to do data analysis for small scale data sets.")
11981 (license license:gpl3)))
11982
11983 (define-public r-cmprsk
11984 (package
11985 (name "r-cmprsk")
11986 (version "2.2-10")
11987 (source
11988 (origin
11989 (method url-fetch)
11990 (uri (cran-uri "cmprsk" version))
11991 (sha256
11992 (base32 "1xnx2zanw548prxsw2zw5cddkkg6kj97jgyzw67achq5mnsvfbg8"))))
11993 (build-system r-build-system)
11994 (propagated-inputs
11995 `(("r-survival" ,r-survival)))
11996 (native-inputs
11997 `(("gfortran" ,gfortran)))
11998 (home-page "https://cran.r-project.org/web/packages/cmprsk")
11999 (synopsis "Subdistribution analysis of competing risks")
12000 (description
12001 "This package provides tool for estimation, testing and regression
12002 modeling of subdistribution functions in competing risks, as described in
12003 Gray (1988), A class of K-sample tests for comparing the cumulative incidence
12004 of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
12005 A proportional hazards model for the subdistribution of a competing risk,
12006 JASA, 94:496-509.")
12007 (license license:gpl2+)))
12008
12009 (define-public r-etm
12010 (package
12011 (name "r-etm")
12012 (version "1.1")
12013 (source
12014 (origin
12015 (method url-fetch)
12016 (uri (cran-uri "etm" version))
12017 (sha256
12018 (base32
12019 "02yvh473l5qajaymhsxwb235a9r7q3nsig9a9mrfca68xih8yvgd"))))
12020 (build-system r-build-system)
12021 (propagated-inputs
12022 `(("r-data-table" ,r-data-table)
12023 ("r-lattice" ,r-lattice)
12024 ("r-rcpp" ,r-rcpp)
12025 ("r-rcpparmadillo" ,r-rcpparmadillo)
12026 ("r-survival" ,r-survival)))
12027 (home-page "https://cran.r-project.org/web/packages/etm")
12028 (synopsis "Empirical transition matrix")
12029 (description
12030 "The @dfn{empirical transition matrix} (etm) package estimates
12031 the matrix of transition probabilities for any time-inhomogeneous multistate
12032 model with finite state space using the Aalen-Johansen estimator.")
12033 (license license:expat)))
12034
12035 (define-public r-epi
12036 (package
12037 (name "r-epi")
12038 (version "2.41")
12039 (source
12040 (origin
12041 (method url-fetch)
12042 (uri (cran-uri "Epi" version))
12043 (sha256
12044 (base32
12045 "09miba6zk63bwc79n3030kgzlvy3whkq968pgqyghxnsjfh5ckp5"))))
12046 (properties `((upstream-name . "Epi")))
12047 (build-system r-build-system)
12048 (propagated-inputs
12049 `(("r-cmprsk" ,r-cmprsk)
12050 ("r-data-table" ,r-data-table)
12051 ("r-etm" ,r-etm)
12052 ("r-mass" ,r-mass)
12053 ("r-matrix" ,r-matrix)
12054 ("r-mgcv" ,r-mgcv)
12055 ("r-numderiv" ,r-numderiv)
12056 ("r-plyr" ,r-plyr)
12057 ("r-survival" ,r-survival)
12058 ("r-zoo" ,r-zoo)))
12059 (home-page "https://BendixCarstensen.com/Epi/")
12060 (synopsis "Statistical analysis in epidemiology")
12061 (description
12062 "This package provides functions for demographic and epidemiological
12063 analysis in the Lexis diagram, i.e. register and cohort follow-up data, in
12064 particular representation, manipulation and simulation of multistate data -
12065 the Lexis suite of functions, which includes interfaces to the @code{mstate},
12066 @code{etm} and @code{cmprsk} packages. It also contains functions for
12067 Age-Period-Cohort and Lee-Carter modeling and a function for interval censored
12068 data and some useful functions for tabulation and plotting, as well as a
12069 number of epidemiological data sets.")
12070 (license license:gpl2)))
12071
12072 (define-public r-ppls
12073 (package
12074 (name "r-ppls")
12075 (version "1.6-1.1")
12076 (source
12077 (origin
12078 (method url-fetch)
12079 (uri (cran-uri "ppls" version))
12080 (sha256
12081 (base32
12082 "1zyrisy3c4cz896j1bjh61sf57wdl9p8ywdq268cl819szfq78mx"))))
12083 (build-system r-build-system)
12084 (propagated-inputs `(("r-mass" ,r-mass)))
12085 (home-page "https://cran.r-project.org/web/packages/ppls")
12086 (synopsis "Penalized partial least squares")
12087 (description
12088 "This package contains linear and nonlinear regression methods based on
12089 partial least squares and penalization techniques. Model parameters are
12090 selected via cross-validation, and confidence intervals ans tests for the
12091 regression coefficients can be conducted via jackknifing.")
12092 (license license:gpl2+)))
12093
12094 (define-public r-huge
12095 (package
12096 (name "r-huge")
12097 (version "1.3.4.1")
12098 (source
12099 (origin
12100 (method url-fetch)
12101 (uri (cran-uri "huge" version))
12102 (sha256
12103 (base32 "11m80dnaxqw5v006q6kvhndl2y5ih5553fcqg4jcaljd8sp9xvvq"))))
12104 (build-system r-build-system)
12105 (propagated-inputs
12106 `(("r-igraph" ,r-igraph)
12107 ("r-mass" ,r-mass)
12108 ("r-matrix" ,r-matrix)
12109 ("r-rcpp" ,r-rcpp)
12110 ("r-rcppeigen" ,r-rcppeigen)))
12111 (home-page "https://cran.r-project.org/web/packages/huge")
12112 (synopsis "High-dimensional undirected graph estimation")
12113 (description
12114 "This package provides a general framework for high-dimensional
12115 undirected graph estimation. It integrates data preprocessing, neighborhood
12116 screening, graph estimation, and model selection techniques into a pipeline.")
12117 (license license:gpl2)))
12118
12119 (define-public r-parcor
12120 (package
12121 (name "r-parcor")
12122 (version "0.2-6")
12123 (source
12124 (origin
12125 (method url-fetch)
12126 (uri (cran-uri "parcor" version))
12127 (sha256
12128 (base32
12129 "0vgs6k92vdr0cmb8cwbv2ff6qavw30agskfd8bfh17hsskrisvx0"))))
12130 (build-system r-build-system)
12131 (propagated-inputs
12132 `(("r-epi" ,r-epi)
12133 ("r-genenet" ,r-genenet)
12134 ("r-glmnet" ,r-glmnet)
12135 ("r-mass" ,r-mass)
12136 ("r-ppls" ,r-ppls)))
12137 (home-page "https://cran.r-project.org/web/packages/parcor")
12138 (synopsis "Regularized estimation of partial correlation matrices")
12139 (description
12140 "This package estimates the matrix of partial correlations based on
12141 different regularized regression methods: lasso, adaptive lasso, PLS, and
12142 Ridge Regression. In addition, the package provides model selection for
12143 lasso, adaptive lasso and Ridge regression based on cross-validation.")
12144 (license license:gpl2+)))
12145
12146 (define-public r-mcmc
12147 (package
12148 (name "r-mcmc")
12149 (version "0.9-7")
12150 (source
12151 (origin
12152 (method url-fetch)
12153 (uri (cran-uri "mcmc" version))
12154 (sha256
12155 (base32
12156 "0q42m8ab7b6bxhns494ksjdss5f3c5m2jjfdlfj6fk1nz7ax7i5p"))))
12157 (build-system r-build-system)
12158 (home-page "https://www.stat.umn.edu/geyer/mcmc/")
12159 (synopsis "Markov chain Monte Carlo")
12160 (description
12161 "This package simulates continuous distributions of random vectors using
12162 @dfn{Markov chain Monte Carlo} (MCMC). Users specify the distribution by an R
12163 function that evaluates the log unnormalized density. Algorithms are random
12164 walk Metropolis algorithm (function @code{metrop}), simulated
12165 tempering (function @code{temper}), and morphometric random walk
12166 Metropolis (function @code{morph.metrop}), which achieves geometric ergodicity
12167 by change of variable.")
12168 (license license:expat)))
12169
12170 (define-public r-listenv
12171 (package
12172 (name "r-listenv")
12173 (version "0.8.0")
12174 (source
12175 (origin
12176 (method url-fetch)
12177 (uri (cran-uri "listenv" version))
12178 (sha256
12179 (base32
12180 "0ps8bk7zlhbviawrw7vw25skjq81hkk3ijyi6g74dmfqy8zsyapx"))))
12181 (build-system r-build-system)
12182 (native-inputs
12183 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12184 (home-page "https://github.com/HenrikBengtsson/listenv")
12185 (synopsis "Environments behaving (almost) as lists")
12186 (description
12187 "This package implements list environments. List environments are
12188 environments that have list-like properties. For instance, the elements of a
12189 list environment are ordered and can be accessed and iterated over using index
12190 subsetting.")
12191 (license license:lgpl2.1+)))
12192
12193 (define-public r-globals
12194 (package
12195 (name "r-globals")
12196 (version "0.12.5")
12197 (source
12198 (origin
12199 (method url-fetch)
12200 (uri (cran-uri "globals" version))
12201 (sha256
12202 (base32
12203 "1ha8iasgijp4q3v2b0b17y1wh7cd3nvzd9b03w49qm2bidkaf68m"))))
12204 (build-system r-build-system)
12205 (propagated-inputs
12206 `(("r-codetools" ,r-codetools)))
12207 (home-page "https://github.com/HenrikBengtsson/globals")
12208 (synopsis "Identify global objects in R expressions")
12209 (description
12210 "This package provides tools to identify global (\"unknown\" or \"free\")
12211 objects in R expressions by code inspection using various strategies, e.g.
12212 conservative or liberal. The objective of this package is to make it as
12213 simple as possible to identify global objects for the purpose of exporting
12214 them in distributed compute environments.")
12215 (license license:lgpl2.1+)))
12216
12217 (define-public r-future
12218 (package
12219 (name "r-future")
12220 (version "1.18.0")
12221 (source
12222 (origin
12223 (method url-fetch)
12224 (uri (cran-uri "future" version))
12225 (sha256
12226 (base32
12227 "01fp8kgjf0k6c83q1w3dy9z90g72cc9d0004d1qw6n1j65nwxg4f"))))
12228 (build-system r-build-system)
12229 (propagated-inputs
12230 `(("r-digest" ,r-digest)
12231 ("r-globals" ,r-globals)
12232 ("r-listenv" ,r-listenv)))
12233 (native-inputs
12234 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12235 (home-page "https://github.com/HenrikBengtsson/future")
12236 (synopsis "Unified parallel and distributed processing in R")
12237 (description
12238 "The purpose of this package is to provide a lightweight and unified
12239 Future API for sequential and parallel processing of R expression via futures.
12240 This package implements sequential, multicore, multisession, and cluster
12241 futures. With these, R expressions can be evaluated on the local machine, in
12242 parallel a set of local machines, or distributed on a mix of local and remote
12243 machines. Extensions to this package implement additional backends for
12244 processing futures via compute cluster schedulers etc. Because of its unified
12245 API, there is no need to modify any code in order to switch from sequential on
12246 the local machine to, say, distributed processing on a remote compute cluster.")
12247 (license license:lgpl2.1+)))
12248
12249 (define-public r-future-apply
12250 (package
12251 (name "r-future-apply")
12252 (version "1.6.0")
12253 (source
12254 (origin
12255 (method url-fetch)
12256 (uri (cran-uri "future.apply" version))
12257 (sha256
12258 (base32
12259 "1zbfycjfvxnrigm6l2fd2zgnw96g0apiw426c73gkv3xv7bdy6ms"))))
12260 (properties `((upstream-name . "future.apply")))
12261 (build-system r-build-system)
12262 (propagated-inputs
12263 `(("r-future" ,r-future)
12264 ("r-globals" ,r-globals)))
12265 (native-inputs
12266 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
12267 (home-page "https://github.com/HenrikBengtsson/future.apply")
12268 (synopsis "Apply function to elements in parallel using futures")
12269 (description
12270 "This package provides implementations of @code{apply()},
12271 @code{eapply()}, @code{lapply()}, @code{Map()}, @code{mapply()},
12272 @code{replicate()}, @code{sapply()}, @code{tapply()}, and @code{vapply()} that
12273 can be resolved using any future-supported backend, e.g. parallel on the local
12274 machine or distributed on a compute cluster.")
12275 (license license:gpl2+)))
12276
12277 (define-public r-rsvd
12278 (package
12279 (name "r-rsvd")
12280 (version "1.0.3")
12281 (source
12282 (origin
12283 (method url-fetch)
12284 (uri (cran-uri "rsvd" version))
12285 (sha256
12286 (base32
12287 "1fvrw46fl5xb2akaa4mp8nja4h7nn4bdhnjdrk22fsdfqc7hwmhk"))))
12288 (build-system r-build-system)
12289 (propagated-inputs
12290 `(("r-matrix" ,r-matrix)))
12291 (home-page "https://github.com/erichson/rSVD")
12292 (synopsis "Randomized singular value decomposition")
12293 (description
12294 "Low-rank matrix decompositions are fundamental tools and widely used for
12295 data analysis, dimension reduction, and data compression. Classically, highly
12296 accurate deterministic matrix algorithms are used for this task. However, the
12297 emergence of large-scale data has severely challenged our computational
12298 ability to analyze big data. The concept of randomness has been demonstrated
12299 as an effective strategy to quickly produce approximate answers to familiar
12300 problems such as the @dfn{singular value decomposition} (SVD). This package
12301 provides several randomized matrix algorithms such as the randomized singular
12302 value decomposition (@code{rsvd}), randomized principal component
12303 analysis (@code{rpca}), randomized robust principal component
12304 analysis (@code{rrpca}), randomized interpolative decomposition (@code{rid}),
12305 and the randomized CUR decomposition (@code{rcur}). In addition several plot
12306 functions are provided.")
12307 (license license:gpl3+)))
12308
12309 (define-public r-sloop
12310 (package
12311 (name "r-sloop")
12312 (version "1.0.1")
12313 (source
12314 (origin
12315 (method url-fetch)
12316 (uri (cran-uri "sloop" version))
12317 (sha256
12318 (base32
12319 "00fk5fr5zsk2qxc1kfhmshhjxgnamm3401089sx8m2l529zd6r8j"))))
12320 (build-system r-build-system)
12321 (propagated-inputs
12322 `(("r-codetools" ,r-codetools)
12323 ("r-crayon" ,r-crayon)
12324 ("r-purrr" ,r-purrr)
12325 ("r-rlang" ,r-rlang)
12326 ("r-tibble" ,r-tibble)))
12327 (home-page "https://github.com/r-lib/sloop")
12328 (synopsis "Helpers for object-oriented programming in R")
12329 (description
12330 "This package provides a collection of helper functions designed to
12331 help you to better understand object oriented programming in R, particularly
12332 using @code{S3}.")
12333 (license license:gpl3)))
12334
12335 (define-public r-capushe
12336 (package
12337 (name "r-capushe")
12338 (version "1.1.1")
12339 (source
12340 (origin
12341 (method url-fetch)
12342 (uri (cran-uri "capushe" version))
12343 (sha256
12344 (base32
12345 "1aa76ir1kp67hiz7dr60azyc71yzslshyc640fjh0fpw0sp5kwbc"))))
12346 (build-system r-build-system)
12347 (propagated-inputs `(("r-mass" ,r-mass)))
12348 (home-page "https://cran.r-project.org/web/packages/capushe/index.html")
12349 (synopsis "Calibrating penalties using slope heuristics")
12350 (description
12351 "This package provides tools for the calibration of penalized criteria
12352 for model selection. The calibration methods available are based on the slope
12353 heuristics.")
12354 (license license:gpl2+)))
12355
12356 (define-public r-dorng
12357 (package
12358 (name "r-dorng")
12359 (version "1.8.2")
12360 (source
12361 (origin
12362 (method url-fetch)
12363 (uri (cran-uri "doRNG" version))
12364 (sha256
12365 (base32
12366 "1jff27zzrvd1fd61x2m9468h8xn3s1c9f6wibviy5zdhj5dx9s9k"))))
12367 (properties `((upstream-name . "doRNG")))
12368 (build-system r-build-system)
12369 (propagated-inputs
12370 `(("r-foreach" ,r-foreach)
12371 ("r-iterators" ,r-iterators)
12372 ("r-rngtools" ,r-rngtools)))
12373 (home-page "https://renozao.github.io/doRNG/")
12374 (synopsis "Generic reproducible parallel backend for foreach loops")
12375 (description
12376 "This package provides functions to perform reproducible parallel
12377 @code{foreach} loops, using independent random streams as generated by
12378 L'Ecuyer's combined multiple-recursive generator. It enables to easily
12379 convert standard @code{%dopar%} loops into fully reproducible loops,
12380 independently of the number of workers, the task scheduling strategy, or the
12381 chosen parallel environment and associated foreach backend.")
12382 (license license:gpl2+)))
12383
12384 (define-public r-blockmodeling
12385 (package
12386 (name "r-blockmodeling")
12387 (version "1.0.0")
12388 (source
12389 (origin
12390 (method url-fetch)
12391 (uri (cran-uri "blockmodeling" version))
12392 (sha256
12393 (base32
12394 "1z4w2kq0id0gb5d0lqcdaw3clplhzywarkpvvx3drivdypzl237i"))))
12395 (build-system r-build-system)
12396 (propagated-inputs
12397 `(("r-matrix" ,r-matrix)))
12398 (native-inputs `(("gfortran" ,gfortran)))
12399 (home-page "https://cran.r-project.org/web/packages/blockmodeling")
12400 (synopsis "Generalized and classical blockmodeling of valued networks")
12401 (description
12402 "This package is primarily meant as an implementation of generalized
12403 blockmodeling for valued networks. In addition, measures of similarity or
12404 dissimilarity based on structural equivalence and regular equivalence (REGE
12405 algorithms) can be computed and partitioned matrices can be plotted.")
12406 (license license:gpl2+)))
12407
12408 (define-public r-upsetr
12409 (package
12410 (name "r-upsetr")
12411 (version "1.4.0")
12412 (source
12413 (origin
12414 (method url-fetch)
12415 (uri (cran-uri "UpSetR" version))
12416 (sha256
12417 (base32
12418 "007i0njnjjy7vbrxabwav7a1kk2n0hn2mkvqsdzzfk10ckp5y7im"))))
12419 (properties `((upstream-name . "UpSetR")))
12420 (build-system r-build-system)
12421 (propagated-inputs
12422 `(("r-ggplot2" ,r-ggplot2)
12423 ("r-gridextra" ,r-gridextra)
12424 ("r-plyr" ,r-plyr)
12425 ("r-scales" ,r-scales)))
12426 (home-page "https://github.com/hms-dbmi/UpSetR")
12427 (synopsis "Visualize intersecting sets")
12428 (description
12429 "This package provides a more scalable alternative to Venn and Euler
12430 diagrams for visualizing intersecting sets. Create visualizations of
12431 intersecting sets using a novel matrix design, along with visualizations of
12432 several common set, element and attribute related tasks.")
12433 (license license:expat)))
12434
12435 ;; This package includes a JavaScript file, which is not minified. When
12436 ;; upgrading please check that there are no new minified JavaScript files.
12437 (define-public r-shinybs
12438 (package
12439 (name "r-shinybs")
12440 (version "0.61")
12441 (source
12442 (origin
12443 (method url-fetch)
12444 (uri (cran-uri "shinyBS" version))
12445 (sha256
12446 (base32
12447 "0rhim4mbp4x9vvm7xkmpl7mhb9qd1gr96cr4dv330v863ra2kgji"))))
12448 (properties `((upstream-name . "shinyBS")))
12449 (build-system r-build-system)
12450 ;; The tests spawn Shiny browser apps. They cannot be run
12451 ;; non-interactively.
12452 (arguments '(#:tests? #f))
12453 (propagated-inputs
12454 `(("r-htmltools" ,r-htmltools)
12455 ("r-shiny" ,r-shiny)))
12456 (home-page "https://ebailey78.github.io/shinyBS/")
12457 (synopsis "Twitter Bootstrap components for Shiny")
12458 (description
12459 "This package adds additional Twitter Bootstrap components to Shiny.")
12460 (license license:gpl3)))
12461
12462 (define-public r-outliers
12463 (package
12464 (name "r-outliers")
12465 (version "0.14")
12466 (source
12467 (origin
12468 (method url-fetch)
12469 (uri (cran-uri "outliers" version))
12470 (sha256
12471 (base32
12472 "0vcqfqmmv4yblyp3s6bd25r49pxb7hjzipiic5a82924nqfqzkmn"))))
12473 (build-system r-build-system)
12474 (home-page "https://cran.r-project.org/web/packages/outliers/index.html")
12475 (synopsis "Tests for outliers")
12476 (description
12477 "This package provides a collection of some tests commonly used for
12478 identifying outliers.")
12479 (license license:gpl2+)))
12480
12481 (define-public r-bayesm
12482 (package
12483 (name "r-bayesm")
12484 (version "3.1-4")
12485 (source
12486 (origin
12487 (method url-fetch)
12488 (uri (cran-uri "bayesm" version))
12489 (sha256
12490 (base32 "154glks7rsjkza0sfi1kj7wj727py9sl1ba6sswflwmwc9n226q6"))))
12491 (build-system r-build-system)
12492 (propagated-inputs
12493 `(("r-rcpp" ,r-rcpp)
12494 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12495 (home-page "http://www.perossi.org/home/bsm-1")
12496 (synopsis "Bayesian inference for marketing/micro-econometrics")
12497 (description
12498 "This package covers many important models used in marketing and
12499 micro-econometrics applications, including Bayes Regression (univariate or
12500 multivariate dep var), Bayes Seemingly Unrelated Regression (SUR), Binary and
12501 Ordinal Probit, Multinomial Logit (MNL) and Multinomial Probit (MNP),
12502 Multivariate Probit, Negative Binomial (Poisson) Regression, Multivariate
12503 Mixtures of Normals (including clustering), Dirichlet Process Prior Density
12504 Estimation with normal base, Hierarchical Linear Models with normal prior and
12505 covariates, Hierarchical Linear Models with a mixture of normals prior and
12506 covariates, Hierarchical Multinomial Logits with a mixture of normals prior
12507 and covariates, Hierarchical Multinomial Logits with a Dirichlet Process prior
12508 and covariates, Hierarchical Negative Binomial Regression Models, Bayesian
12509 analysis of choice-based conjoint data, Bayesian treatment of linear
12510 instrumental variables models, Analysis of Multivariate Ordinal survey data
12511 with scale usage heterogeneity, and Bayesian Analysis of Aggregate Random
12512 Coefficient Logit Models.")
12513 (license license:gpl2+)))
12514
12515 (define-public r-tensora
12516 (package
12517 (name "r-tensora")
12518 (version "0.36.1")
12519 (source
12520 (origin
12521 (method url-fetch)
12522 (uri (cran-uri "tensorA" version))
12523 (sha256
12524 (base32
12525 "176hjy3bvg3in62r97wxbhq187sjz6c1gwy9x6spaxl6k4my3zy7"))))
12526 (properties `((upstream-name . "tensorA")))
12527 (build-system r-build-system)
12528 (home-page "http://www.stat.boogaart.de/tensorA")
12529 (synopsis "Advanced tensor arithmetic with named indices")
12530 (description
12531 "This package provides convenience functions for advanced linear algebra
12532 with tensors and computation with datasets of tensors on a higher level
12533 abstraction. It includes Einstein and Riemann summing conventions, dragging,
12534 co- and contravariate indices, and parallel computations on sequences of
12535 tensors.")
12536 (license license:gpl2+)))
12537
12538 (define-public r-rarpack
12539 (package
12540 (name "r-rarpack")
12541 (version "0.11-0")
12542 (source
12543 (origin
12544 (method url-fetch)
12545 (uri (cran-uri "rARPACK" version))
12546 (sha256
12547 (base32
12548 "12h2y46xcfldhjdmm960swgn9b23zvkj5vg2bi42s9qxwgi02d63"))))
12549 (properties `((upstream-name . "rARPACK")))
12550 (build-system r-build-system)
12551 (propagated-inputs `(("r-rspectra" ,r-rspectra)))
12552 (home-page "https://github.com/yixuan/rARPACK")
12553 (synopsis "Solvers for large scale eigenvalue and SVD problems")
12554 (description
12555 "This package was previously an R wrapper of the ARPACK library, and now
12556 a shell of the R package RSpectra, an R interface to the Spectra library for
12557 solving large scale eigenvalue/vector problems. The current version of
12558 rARPACK simply imports and exports the functions provided by RSpectra. New
12559 users of rARPACK are advised to switch to the RSpectra package.")
12560 (license license:bsd-3)))
12561
12562 (define-public r-compositions
12563 (package
12564 (name "r-compositions")
12565 (version "2.0-0")
12566 (source
12567 (origin
12568 (method url-fetch)
12569 (uri (cran-uri "compositions" version))
12570 (sha256
12571 (base32
12572 "0xsx4n699q2r4pk2jrvifi3wi49lih7d1j3j6qgqqd31brg53jqr"))))
12573 (build-system r-build-system)
12574 (propagated-inputs
12575 `(("r-bayesm" ,r-bayesm)
12576 ("r-mass" ,r-mass)
12577 ("r-robustbase" ,r-robustbase)
12578 ("r-tensora" ,r-tensora)))
12579 (native-inputs
12580 `(("r-knitr" ,r-knitr)))
12581 (home-page "http://www.stat.boogaart.de/compositions")
12582 (synopsis "Compositional data analysis")
12583 (description
12584 "This package provides functions for the consistent analysis of
12585 compositional data (e.g. portions of substances) and positive
12586 numbers (e.g. concentrations).")
12587 (license license:gpl2+)))
12588
12589 (define-public r-cobs
12590 (package
12591 (name "r-cobs")
12592 (version "1.3-4")
12593 (source
12594 (origin
12595 (method url-fetch)
12596 (uri (cran-uri "cobs" version))
12597 (sha256
12598 (base32
12599 "0hiw5smk6kgk0gb9840kcqkhkybl7n30s77xhjc395x09izbgix1"))))
12600 (build-system r-build-system)
12601 (propagated-inputs
12602 `(("r-quantreg" ,r-quantreg)
12603 ("r-sparsem" ,r-sparsem)))
12604 (home-page "https://cran.r-project.org/web/packages/cobs")
12605 (synopsis "Constrained B-Splines (sparse matrix based)")
12606 (description
12607 "This package provides qualitatively constrained (regression) smoothing
12608 splines via linear programming and sparse matrices.")
12609 (license license:gpl2+)))
12610
12611 (define-public r-drimpute
12612 (package
12613 (name "r-drimpute")
12614 (version "1.0")
12615 (source
12616 (origin
12617 (method url-fetch)
12618 (uri (cran-uri "DrImpute" version))
12619 (sha256
12620 (base32
12621 "1adzarrwqb282pqgx2yqswp9rpwd1naxsmar54kddr6qyd6b923b"))))
12622 (properties `((upstream-name . "DrImpute")))
12623 (build-system r-build-system)
12624 (propagated-inputs
12625 `(("r-rcpp" ,r-rcpp)
12626 ("r-rcpparmadillo" ,r-rcpparmadillo)))
12627 (home-page "https://github.com/ikwak2/DrImpute")
12628 (synopsis "Imputing dropout events in single-cell RNA-Seq data")
12629 (description
12630 "This is an R package for imputing dropout events. Many statistical
12631 methods in cell type identification, visualization and lineage reconstruction
12632 do not account for dropout events. DrImpute can improve the performance of
12633 such software by imputing dropout events.")
12634 (license license:gpl3)))
12635
12636 (define-public r-gamlss-dist
12637 (package
12638 (name "r-gamlss-dist")
12639 (version "5.1-7")
12640 (source
12641 (origin
12642 (method url-fetch)
12643 (uri (cran-uri "gamlss.dist" version))
12644 (sha256
12645 (base32 "0nzgq3rnziy0i2zxn88hqy3pakpyin2m2csk9j3zg39si66c6wcq"))))
12646 (properties `((upstream-name . "gamlss.dist")))
12647 (build-system r-build-system)
12648 (propagated-inputs `(("r-mass" ,r-mass)))
12649 (home-page "http://www.gamlss.org/")
12650 (synopsis "Distributions for Generalized Additive Models for location scale and shape")
12651 (description
12652 "This package provides a set of distributions which can be used for
12653 modelling the response variables in Generalized Additive Models for Location
12654 Scale and Shape. The distributions can be continuous, discrete or mixed
12655 distributions. Extra distributions can be created, by transforming, any
12656 continuous distribution defined on the real line, to a distribution defined on
12657 ranges 0 to infinity or 0 to 1, by using a @code{log} or a @code{logit}
12658 transformation, respectively.")
12659 ;; Either version of the GPL.
12660 (license (list license:gpl2 license:gpl3))))
12661
12662 ;; This package includes JavaScript files, which are not minified. When
12663 ;; upgrading please check that there are no new minified JavaScript files.
12664 (define-public r-shinyjs
12665 (package
12666 (name "r-shinyjs")
12667 (version "1.1")
12668 (source
12669 (origin
12670 (method url-fetch)
12671 (uri (cran-uri "shinyjs" version))
12672 (sha256
12673 (base32
12674 "14k8y313ppj23m9rhlk8jc94x6sbn3qrsnx6xrijiyv8m8dii1l9"))))
12675 (build-system r-build-system)
12676 (propagated-inputs
12677 `(("r-digest" ,r-digest)
12678 ("r-htmltools" ,r-htmltools)
12679 ("r-jsonlite" ,r-jsonlite)
12680 ("r-shiny" ,r-shiny)))
12681 (home-page "https://deanattali.com/shinyjs")
12682 (synopsis "Improve the user experience of your Shiny apps")
12683 (description
12684 "Perform common useful JavaScript operations in Shiny apps that will
12685 greatly improve your apps without having to know any JavaScript. Examples
12686 include: hiding an element, disabling an input, resetting an input back to its
12687 original value, delaying code execution by a few seconds, and many more useful
12688 functions for both the end user and the developer. Shinyjs can also be used
12689 to easily call your own custom JavaScript functions from R.")
12690 (license license:agpl3+)))
12691
12692 ;; This package includes minified JavaScript files. When upgrading please
12693 ;; check that there are no new minified JavaScript files.
12694 (define-public r-colourpicker
12695 (package
12696 (name "r-colourpicker")
12697 (version "1.0")
12698 (source
12699 (origin
12700 (method url-fetch)
12701 (uri (cran-uri "colourpicker" version))
12702 (sha256
12703 (base32
12704 "0z3v2083g7kwdp21x9s2n1crfh24agpdq3yxkcdzc2awn2pwpnpi"))))
12705 (build-system r-build-system)
12706 (arguments
12707 `(#:modules ((guix build utils)
12708 (guix build r-build-system)
12709 (srfi srfi-1)
12710 (ice-9 popen))
12711 #:phases
12712 (modify-phases %standard-phases
12713 (add-after 'unpack 'process-javascript
12714 (lambda* (#:key inputs #:allow-other-keys)
12715 (with-directory-excursion "inst"
12716 (call-with-values
12717 (lambda ()
12718 (unzip2
12719 `((,(assoc-ref inputs "js-salvattore")
12720 "examples/colourInput/www/salvattore.min.js")
12721 (,(assoc-ref inputs "js-jquery")
12722 "htmlwidgets/lib/jquery/jquery.min.js")
12723 ("www/shared/colourpicker/js/colourpicker.js"
12724 "www/shared/colourpicker/js/colourpicker.min.js"))))
12725 (lambda (sources targets)
12726 (for-each (lambda (source target)
12727 (format #t "Processing ~a --> ~a~%"
12728 source target)
12729 (delete-file target)
12730 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
12731 (call-with-output-file target
12732 (lambda (port)
12733 (dump-port minified port)))))
12734 sources targets))))
12735 #t)))))
12736 (propagated-inputs
12737 `(("r-ggplot2" ,r-ggplot2)
12738 ("r-htmltools" ,r-htmltools)
12739 ("r-htmlwidgets" ,r-htmlwidgets)
12740 ("r-jsonlite" ,r-jsonlite)
12741 ("r-miniui" ,r-miniui)
12742 ("r-shiny" ,r-shiny)
12743 ("r-shinyjs" ,r-shinyjs)))
12744 (native-inputs
12745 `(("uglify-js" ,uglify-js)
12746 ("js-jquery"
12747 ,(origin
12748 (method url-fetch)
12749 (uri "https://code.jquery.com/jquery-3.3.1.js")
12750 (sha256
12751 (base32
12752 "1b8zxrp6xwzpw25apn8j4qws0f6sr7qr7h2va5h1mjyfqvn29anq"))))
12753 ("js-salvattore"
12754 ,(origin
12755 (method url-fetch)
12756 (uri "https://raw.githubusercontent.com/rnmp/salvattore/v1.0.9/dist/salvattore.js")
12757 (sha256
12758 (base32
12759 "0lfrbx7l9w5x89jpc6njmd0pk7h8fpvg537vklai2vf7b1r2nnk5"))))))
12760 (home-page "https://github.com/daattali/colourpicker")
12761 (synopsis "Color picker tool for Shiny and for selecting colors in plots")
12762 (description
12763 "This package provides a color picker that can be used as an input in
12764 Shiny apps or Rmarkdown documents. The color picker supports alpha opacity,
12765 custom color palettes, and many more options. A plot color helper tool is
12766 available as an RStudio Addin, which helps you pick colors to use in your
12767 plots. A more generic color picker RStudio Addin is also provided to let you
12768 select colors to use in your R code.")
12769 (license license:expat)))
12770
12771 (define-public r-ggextra
12772 (package
12773 (name "r-ggextra")
12774 (version "0.9")
12775 (source
12776 (origin
12777 (method url-fetch)
12778 (uri (cran-uri "ggExtra" version))
12779 (sha256
12780 (base32
12781 "18mbi6gblqmrsciad1d2c9ngllk6mayaqj43k40hjq9ydqnvjbgj"))))
12782 (properties `((upstream-name . "ggExtra")))
12783 (build-system r-build-system)
12784 (propagated-inputs
12785 `(("r-colourpicker" ,r-colourpicker)
12786 ("r-ggplot2" ,r-ggplot2)
12787 ("r-gtable" ,r-gtable)
12788 ("r-miniui" ,r-miniui)
12789 ("r-r6" ,r-r6)
12790 ("r-scales" ,r-scales)
12791 ("r-shiny" ,r-shiny)
12792 ("r-shinyjs" ,r-shinyjs)))
12793 (native-inputs
12794 `(("r-knitr" ,r-knitr)))
12795 (home-page "https://github.com/daattali/ggExtra")
12796 (synopsis "Marginal histograms for ggplot2 and other enhancements")
12797 (description
12798 "This package is a collection of functions and layers to enhance ggplot2.
12799 The flagship function is @code{ggMarginal()}, which can be used to add
12800 marginal histograms/boxplots/density plots to ggplot2 scatterplots.")
12801 (license license:expat)))
12802
12803 (define-public r-minpack-lm
12804 (package
12805 (name "r-minpack-lm")
12806 (version "1.2-1")
12807 (source
12808 (origin
12809 (method url-fetch)
12810 (uri (cran-uri "minpack.lm" version))
12811 (sha256
12812 (base32
12813 "18ym2pdql5vzngc7q5gn66d153hrfrnd8ilv8yh6vd7j7sx7vjql"))))
12814 (properties `((upstream-name . "minpack.lm")))
12815 (build-system r-build-system)
12816 (native-inputs `(("gfortran" ,gfortran)))
12817 (home-page "https://cran.r-project.org/web/packages/minpack.lm")
12818 (synopsis "Levenberg-Marquardt Nonlinear Least-Squares algorithm")
12819 (description
12820 "The @code{nls.lm} function provides an R interface to @code{lmder} and
12821 @code{lmdif} from the MINPACK library, for solving nonlinear least-squares
12822 problems by a modification of the Levenberg-Marquardt algorithm, with support
12823 for lower and upper parameter bounds. The implementation can be used via
12824 @code{nls}-like calls using the @code{nlsLM} function.")
12825 (license license:gpl3)))
12826
12827 (define-public r-moments
12828 (package
12829 (name "r-moments")
12830 (version "0.14")
12831 (source
12832 (origin
12833 (method url-fetch)
12834 (uri (cran-uri "moments" version))
12835 (sha256
12836 (base32
12837 "0f9y58w1hxcz4bqivirx25ywlmc80gbi6dfx5cnhkpdg1pk82fra"))))
12838 (build-system r-build-system)
12839 (home-page "https://cran.r-project.org/web/packages/moments")
12840 (synopsis "Moments, cumulants, skewness, kurtosis and related tests")
12841 (description
12842 "This package provides functions to calculate: moments, Pearson's
12843 kurtosis, Geary's kurtosis and skewness; it also includes tests related to
12844 them (Anscombe-Glynn, D'Agostino, Bonett-Seier).")
12845 (license license:gpl2+)))
12846
12847 (define-public r-msir
12848 (package
12849 (name "r-msir")
12850 (version "1.3.2")
12851 (source
12852 (origin
12853 (method url-fetch)
12854 (uri (cran-uri "msir" version))
12855 (sha256
12856 (base32
12857 "0pvc3q162vqq3k39nni732x05zzfz4y9y2zf56d83185ypszv9kb"))))
12858 (build-system r-build-system)
12859 (propagated-inputs
12860 `(("r-mclust" ,r-mclust)))
12861 (home-page "https://cran.r-project.org/web/packages/msir")
12862 (synopsis "Model-based sliced inverse regression")
12863 (description
12864 "This is an R package for dimension reduction based on finite Gaussian
12865 mixture modeling of inverse regression.")
12866 (license license:gpl2+)))
12867
12868 (define-public r-pbivnorm
12869 (package
12870 (name "r-pbivnorm")
12871 (version "0.6.0")
12872 (source
12873 (origin
12874 (method url-fetch)
12875 (uri (cran-uri "pbivnorm" version))
12876 (sha256
12877 (base32
12878 "05jzrjqxzbcf6z245hlk7sjxiszv9paadaaimvcx5y5qgi87vhq7"))))
12879 (build-system r-build-system)
12880 (native-inputs `(("gfortran" ,gfortran)))
12881 (home-page "https://github.com/brentonk/pbivnorm")
12882 (synopsis "Vectorized bivariate normal CDF")
12883 (description
12884 "This package provides a vectorized R function for calculating
12885 probabilities from a standard bivariate normal CDF.")
12886 (license license:gpl2+)))
12887
12888 (define-public r-lavaan
12889 (package
12890 (name "r-lavaan")
12891 (version "0.6-7")
12892 (source
12893 (origin
12894 (method url-fetch)
12895 (uri (cran-uri "lavaan" version))
12896 (sha256
12897 (base32
12898 "0ks62wrwghbm1brzmqvr92h5n1295dpc87m1g3xrfx0mkdaqdcdk"))))
12899 (build-system r-build-system)
12900 (propagated-inputs
12901 `(("r-mass" ,r-mass)
12902 ("r-mnormt" ,r-mnormt)
12903 ("r-numderiv" ,r-numderiv)
12904 ("r-pbivnorm" ,r-pbivnorm)))
12905 (home-page "http://lavaan.ugent.be")
12906 (synopsis "Latent variable analysis")
12907 (description
12908 "This package provides tools to fit a variety of latent variable models,
12909 including confirmatory factor analysis, structural equation modeling and
12910 latent growth curve models.")
12911 (license license:gpl2+)))
12912
12913 (define-public r-nonnest2
12914 (package
12915 (name "r-nonnest2")
12916 (version "0.5-5")
12917 (source
12918 (origin
12919 (method url-fetch)
12920 (uri (cran-uri "nonnest2" version))
12921 (sha256
12922 (base32
12923 "1ddaqwx8i3ygwvxf11mc8xhgk4nkvnail99nr5szq8i168752zq2"))))
12924 (build-system r-build-system)
12925 (propagated-inputs
12926 `(("r-compquadform" ,r-compquadform)
12927 ("r-lavaan" ,r-lavaan)
12928 ("r-mvtnorm" ,r-mvtnorm)
12929 ("r-sandwich" ,r-sandwich)))
12930 (native-inputs
12931 `(("r-knitr" ,r-knitr)))
12932 (home-page "https://cran.r-project.org/web/packages/nonnest2/")
12933 (synopsis "Tests of non-nested models")
12934 (description
12935 "This package allows for testing of non-nested models. It includes tests
12936 of model distinguishability and of model fit that can be applied to both
12937 nested and non-nested models. The package also includes functionality to
12938 obtain confidence intervals associated with AIC and BIC.")
12939 ;; Either version of the GPL.
12940 (license (list license:gpl2 license:gpl3))))
12941
12942 (define-public r-penalized
12943 (package
12944 (name "r-penalized")
12945 (version "0.9-51")
12946 (source
12947 (origin
12948 (method url-fetch)
12949 (uri (cran-uri "penalized" version))
12950 (sha256
12951 (base32
12952 "1zcrwa93mc27qj3g4ayc2k895r6g8q0g6qb2azmvj7wqk750va7a"))))
12953 (build-system r-build-system)
12954 (propagated-inputs
12955 `(("r-rcpp" ,r-rcpp)
12956 ("r-rcpparmadillo" ,r-rcpparmadillo)
12957 ("r-survival" ,r-survival)))
12958 (home-page "https://cran.r-project.org/web/packages/penalized/")
12959 (synopsis "Penalized estimation in GLMs and in the Cox model")
12960 (description
12961 "This package provides tools for fitting possibly high dimensional
12962 penalized regression models. The penalty structure can be any combination of
12963 an L1 penalty (lasso and fused lasso), an L2 penalty (ridge) and a positivity
12964 constraint on the regression coefficients. The supported regression models
12965 are linear, logistic and Poisson regression and the Cox Proportional Hazards
12966 model. Cross-validation routines allow optimization of the tuning
12967 parameters.")
12968 (license license:gpl2+)))
12969
12970 (define-public r-zim
12971 (package
12972 (name "r-zim")
12973 (version "1.1.0")
12974 (source
12975 (origin
12976 (method url-fetch)
12977 (uri (cran-uri "ZIM" version))
12978 (sha256
12979 (base32
12980 "0scyfjn4ilsvha3x41c3b8bcfi31hlhwm77wn2a8hj5dsvnnmzig"))))
12981 (properties `((upstream-name . "ZIM")))
12982 (build-system r-build-system)
12983 (propagated-inputs `(("r-mass" ,r-mass)))
12984 (home-page "https://github.com/biostatstudio/ZIM")
12985 (synopsis "Zero-inflated models (ZIM) for count time series with excess zeros")
12986 (description
12987 "Analyze count time series with excess zeros. Two types of statistical
12988 models are supported: Markov regression and state-space models. They are also
12989 known as observation-driven and parameter-driven models respectively in the
12990 time series literature. The functions used for Markov regression or
12991 observation-driven models can also be used to fit ordinary regression models
12992 with independent data under the zero-inflated Poisson (ZIP) or zero-inflated
12993 negative binomial (ZINB) assumption. The package also contains miscellaneous
12994 functions to compute density, distribution, quantile, and generate random
12995 numbers from ZIP and ZINB distributions.")
12996 (license license:gpl3)))
12997
12998 (define-public r-nor1mix
12999 (package
13000 (name "r-nor1mix")
13001 (version "1.3-0")
13002 (source
13003 (origin
13004 (method url-fetch)
13005 (uri (cran-uri "nor1mix" version))
13006 (sha256
13007 (base32
13008 "1817wcvlmxs70vs4db0jkxd7i037744zz8ay3c2a9949z29fxr4w"))))
13009 (build-system r-build-system)
13010 (home-page "https://cran.r-project.org/web/packages/nor1mix/")
13011 (synopsis "Normal (1-d) mixture models")
13012 (description
13013 "This package provides S3 classes and methods for one-dimensional normal
13014 mixture models, for, e.g., density estimation or clustering algorithms
13015 research and teaching; it provides the widely used Marron-Wand densities. It
13016 also provides tools for efficient random number generation and graphics.")
13017 (license license:gpl2+)))
13018
13019 (define-public r-beanplot
13020 (package
13021 (name "r-beanplot")
13022 (version "1.2")
13023 (source
13024 (origin
13025 (method url-fetch)
13026 (uri (cran-uri "beanplot" version))
13027 (sha256
13028 (base32
13029 "0wmkr704fl8kdxkjwmaxw2a2h5dwzfgsgpncnk2p2wd4768jknj9"))))
13030 (build-system r-build-system)
13031 (home-page "https://cran.r-project.org/web/packages/beanplot/")
13032 (synopsis "Visualization via beanplots")
13033 (description
13034 "This package provides beanplots, an alternative to
13035 boxplot/stripchart/violin plots. It can be used to plot univariate comparison
13036 graphs.")
13037 (license license:gpl2)))
13038
13039 (define-public r-pbdzmq
13040 (package
13041 (name "r-pbdzmq")
13042 (version "0.3-3")
13043 (source
13044 (origin
13045 (method url-fetch)
13046 (uri (cran-uri "pbdZMQ" version))
13047 (sha256
13048 (base32
13049 "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf"))))
13050 (properties `((upstream-name . "pbdZMQ")))
13051 (build-system r-build-system)
13052 (inputs
13053 `(("zeromq" ,zeromq)
13054 ("zlib" ,zlib)))
13055 (native-inputs
13056 `(("pkg-config" ,pkg-config)))
13057 (home-page "https://pbdr.org/")
13058 (synopsis "R interface to ZeroMQ")
13059 (description
13060 "ZeroMQ is a well-known library for high-performance asynchronous
13061 messaging in scalable, distributed applications. This package provides high
13062 level R wrapper functions to easily utilize ZeroMQ. The main focus is on
13063 interactive client/server programming frameworks. A few wrapper functions
13064 compatible with @code{rzmq} are also provided.")
13065 (license license:gpl3)))
13066
13067 (define-public r-repr
13068 (package
13069 (name "r-repr")
13070 (version "1.1.0")
13071 (source
13072 (origin
13073 (method url-fetch)
13074 (uri (cran-uri "repr" version))
13075 (sha256
13076 (base32
13077 "15jz780w4nd9qjd1g3gq8f5lkh60p2v3ig3hm5kl1rg3z4cf0gvl"))))
13078 (build-system r-build-system)
13079 (propagated-inputs
13080 `(("r-base64enc" ,r-base64enc)
13081 ("r-htmltools" ,r-htmltools)
13082 ("r-jsonlite" ,r-jsonlite)
13083 ("r-pillar" ,r-pillar)))
13084 (home-page "https://cran.r-project.org/web/packages/repr/")
13085 (synopsis "Serializable representations")
13086 (description
13087 "This package provides string and binary representations of objects for
13088 several formats and MIME types.")
13089 (license license:gpl3)))
13090
13091 (define-public r-irdisplay
13092 (package
13093 (name "r-irdisplay")
13094 (version "0.7.0")
13095 (source
13096 (origin
13097 (method url-fetch)
13098 (uri (cran-uri "IRdisplay" version))
13099 (sha256
13100 (base32
13101 "12chk53nf4zckgc4yl7gbvd7m5dvli52inp5b3f0zvcjvfncksli"))))
13102 (properties `((upstream-name . "IRdisplay")))
13103 (build-system r-build-system)
13104 (propagated-inputs
13105 `(("r-repr" ,r-repr)))
13106 (home-page "https://cran.r-project.org/web/packages/IRdisplay/")
13107 (synopsis "Jupyter display machinery")
13108 (description
13109 "This package provides an interface to the rich display capabilities of
13110 Jupyter front-ends (e.g. Jupyter Notebook). It is designed to be used from a
13111 running IRkernel session.")
13112 (license license:expat)))
13113
13114 (define-public r-irkernel
13115 (package
13116 (name "r-irkernel")
13117 (version "1.1.1")
13118 (source
13119 (origin
13120 (method url-fetch)
13121 (uri (cran-uri "IRkernel" version))
13122 (sha256
13123 (base32
13124 "1y06v3difaiihxfm2abm88nnjzvkla4p346cm1nxmga4iwb2k8gm"))))
13125 (properties `((upstream-name . "IRkernel")))
13126 (build-system r-build-system)
13127 (arguments
13128 `(#:phases
13129 (modify-phases %standard-phases
13130 (add-after 'install 'install-kernelspec
13131 (lambda* (#:key outputs #:allow-other-keys)
13132 (let ((out (assoc-ref outputs "out")))
13133 (setenv "HOME" "/tmp")
13134 (invoke "jupyter" "kernelspec" "install"
13135 "--name" "ir"
13136 "--prefix" out
13137 (string-append out "/site-library/IRkernel/kernelspec"))
13138 ;; Record the absolute file name of the 'R' executable in
13139 ;; 'kernel.json'.
13140 (substitute* (string-append out "/share/jupyter"
13141 "/kernels/ir/kernel.json")
13142 (("\\[\"R\",")
13143 (string-append "[\"" (which "R") "\",")))
13144 #t))))))
13145 (inputs
13146 `(("jupyter" ,jupyter)))
13147 (propagated-inputs
13148 `(("r-crayon" ,r-crayon)
13149 ("r-digest" ,r-digest)
13150 ("r-evaluate" ,r-evaluate)
13151 ("r-irdisplay" ,r-irdisplay)
13152 ("r-jsonlite" ,r-jsonlite)
13153 ;; sets R_LIBS_SITE, so R can actually find this package (IRkernel)
13154 ("r-minimal" ,r-minimal)
13155 ("r-pbdzmq" ,r-pbdzmq)
13156 ("r-repr" ,r-repr)
13157 ("r-uuid" ,r-uuid)))
13158 (home-page "https://cran.r-project.org/web/packages/IRkernel/")
13159 (synopsis "Native R kernel for Jupyter")
13160 (description
13161 "The R kernel for the Jupyter environment executes R code which the
13162 front-end (Jupyter Notebook or other front-ends) submits to the kernel via the
13163 network.")
13164 (license license:expat)))
13165
13166 (define-public r-gmodels
13167 (package
13168 (name "r-gmodels")
13169 (version "2.18.1")
13170 (source
13171 (origin
13172 (method url-fetch)
13173 (uri (cran-uri "gmodels" version))
13174 (sha256
13175 (base32
13176 "0s8kd8krqk4kwv2zqxpsfy3w8qdwf5naf4b5l383vidq9sil0qb2"))))
13177 (build-system r-build-system)
13178 (propagated-inputs
13179 `(("r-gdata" ,r-gdata)
13180 ("r-mass" ,r-mass)))
13181 (home-page "https://cran.r-project.org/web/packages/gmodels/")
13182 (synopsis "Various R programming tools for model fitting")
13183 (description
13184 "This package provides various R programming tools for model fitting.")
13185 (license license:gpl2)))
13186
13187 (define-public r-apcluster
13188 (package
13189 (name "r-apcluster")
13190 (version "1.4.8")
13191 (source
13192 (origin
13193 (method url-fetch)
13194 (uri (cran-uri "apcluster" version))
13195 (sha256
13196 (base32
13197 "0lzf2jqm56i74wif6x5sw3j0w2qc4sni49zq2fgbl89b7lwkvchj"))))
13198 (build-system r-build-system)
13199 (propagated-inputs
13200 `(("r-matrix" ,r-matrix)
13201 ("r-rcpp" ,r-rcpp)))
13202 (home-page "https://cran.r-project.org/web/packages/apcluster/")
13203 (synopsis "Affinity propagation clustering")
13204 (description
13205 "This package implements affinity propagation clustering introduced by
13206 Frey and Dueck (2007). The package further provides leveraged affinity
13207 propagation and an algorithm for exemplar-based agglomerative clustering that
13208 can also be used to join clusters obtained from affinity propagation. Various
13209 plotting functions are available for analyzing clustering results.")
13210 (license license:gpl2+)))
13211
13212 (define-public r-valr
13213 (package
13214 (name "r-valr")
13215 (version "0.6.1")
13216 (source
13217 (origin
13218 (method url-fetch)
13219 (uri (cran-uri "valr" version))
13220 (sha256
13221 (base32
13222 "1qxw6h63i2vfb2w6q453zzwk0ypma3xdwwpj15i06669vzgyy3bb"))))
13223 (build-system r-build-system)
13224 (propagated-inputs
13225 `(("r-broom" ,r-broom)
13226 ("r-dplyr" ,r-dplyr)
13227 ("r-ggplot2" ,r-ggplot2)
13228 ("r-rcpp" ,r-rcpp)
13229 ("r-readr" ,r-readr)
13230 ("r-rlang" ,r-rlang)
13231 ("r-stringr" ,r-stringr)
13232 ("r-tibble" ,r-tibble)))
13233 (native-inputs
13234 `(("r-knitr" ,r-knitr)))
13235 (home-page "https://github.com/rnabioco/valr")
13236 (synopsis "Genome interval arithmetic in R")
13237 (description
13238 "This package enables you to read and manipulate genome intervals and
13239 signals. It provides functionality similar to command-line tool suites within
13240 R, enabling interactive analysis and visualization of genome-scale data.")
13241 (license license:expat)))
13242
13243 (define-public r-rematch2
13244 (package
13245 (name "r-rematch2")
13246 (version "2.1.2")
13247 (source
13248 (origin
13249 (method url-fetch)
13250 (uri (cran-uri "rematch2" version))
13251 (sha256
13252 (base32
13253 "1fzpz8vhghw8ygwg6rsvfy3783pqk7ch029i5851lwypkplvz77y"))))
13254 (build-system r-build-system)
13255 (propagated-inputs
13256 `(("r-tibble" ,r-tibble)))
13257 (home-page "https://github.com/r-lib/rematch2")
13258 (synopsis "Tidy output from regular expression matching")
13259 (description
13260 "This package provides wrappers on @code{regexpr} and @code{gregexpr} to
13261 return the match results in tidy data frames.")
13262 (license license:expat)))
13263
13264 (define-public r-picante
13265 (package
13266 (name "r-picante")
13267 (version "1.8.2")
13268 (source
13269 (origin
13270 (method url-fetch)
13271 (uri (cran-uri "picante" version))
13272 (sha256
13273 (base32
13274 "19savjzj44b7ifdxcp02ynj22z4n4ikq2aipc74ljzy3yykmqmjn"))))
13275 (build-system r-build-system)
13276 (propagated-inputs
13277 `(("r-ape" ,r-ape)
13278 ("r-nlme" ,r-nlme)
13279 ("r-vegan" ,r-vegan)))
13280 (home-page "https://cran.r-project.org/web/packages/picante/")
13281 (synopsis "Integrating phylogenies and ecology")
13282 (description
13283 "This package provides functions for phylocom integration, community
13284 analyses, null-models, traits and evolution. It implements numerous
13285 ecophylogenetic approaches including measures of community phylogenetic and
13286 trait diversity, phylogenetic signal, estimation of trait values for
13287 unobserved taxa, null models for community and phylogeny randomizations, and
13288 utility functions for data input/output and phylogeny plotting. A full
13289 description of package functionality and methods are provided by Kembel et
13290 al. (2010).")
13291 (license license:gpl2)))
13292
13293 (define-public r-reinforcelearn
13294 (package
13295 (name "r-reinforcelearn")
13296 (version "0.2.1")
13297 (source
13298 (origin
13299 (method url-fetch)
13300 (uri (cran-uri "reinforcelearn" version))
13301 (sha256
13302 (base32
13303 "176z2q69p24i29a8sh19xxn2zl3h1z2ixdssr5i6m4yvkvdrvv3b"))))
13304 (build-system r-build-system)
13305 (propagated-inputs
13306 `(("r-checkmate" ,r-checkmate)
13307 ("r-nnet" ,r-nnet)
13308 ("r-purrr" ,r-purrr)
13309 ("r-r6" ,r-r6)))
13310 (home-page "https://markusdumke.github.io/reinforcelearn")
13311 (synopsis "Reinforcement learning")
13312 (description
13313 "This package implements reinforcement learning environments and
13314 algorithms as described in Sutton & Barto (1998). The Q-Learning algorithm
13315 can be used with function approximation, eligibility traces (Singh & Sutton,
13316 1996) and experience replay (Mnih et al., 2013).")
13317 (license license:expat)))
13318
13319 (define-public r-lemon
13320 (package
13321 (name "r-lemon")
13322 (version "0.4.5")
13323 (source
13324 (origin
13325 (method url-fetch)
13326 (uri (cran-uri "lemon" version))
13327 (sha256
13328 (base32
13329 "1y3ljidhqdakxlya2npj2w0az820g8kw6gl1cfm4f0cxvzgd1ly4"))))
13330 (build-system r-build-system)
13331 (propagated-inputs
13332 `(("r-ggplot2" ,r-ggplot2)
13333 ("r-gridextra" ,r-gridextra)
13334 ("r-gtable" ,r-gtable)
13335 ("r-knitr" ,r-knitr)
13336 ("r-lattice" ,r-lattice)
13337 ("r-plyr" ,r-plyr)
13338 ("r-rlang" ,r-rlang)
13339 ("r-scales" ,r-scales)))
13340 (native-inputs
13341 `(("r-knitr" ,r-knitr)))
13342 (home-page "https://github.com/stefanedwards/lemon")
13343 (synopsis "Freshen up your ggplot2 plots")
13344 (description
13345 "This package provides functions for working with legends and axis lines
13346 of ggplot2, facets that repeat axis lines on all panels, and some knitr
13347 extensions.")
13348 (license license:gpl3)))
13349
13350 (define-public r-wgaim
13351 (package
13352 (name "r-wgaim")
13353 (version "2.0-1")
13354 (source
13355 (origin
13356 (method url-fetch)
13357 (uri (cran-uri "wgaim" version))
13358 (sha256
13359 (base32 "1qiyfkpsbzjr9xsq5kqq6rlqpndngkn2irdfh3gyi45h6hn118j4"))))
13360 (build-system r-build-system)
13361 (propagated-inputs
13362 `(("r-ggplot2" ,r-ggplot2)
13363 ("r-qtl" ,r-qtl)))
13364 (home-page "https://cran.r-project.org/web/packages/wgaim")
13365 (synopsis "Whole genome average interval mapping for QTL detection")
13366 (description
13367 "This package integrates sophisticated mixed modelling methods with a
13368 whole genome approach to detecting significant QTL in linkage maps.")
13369 (license license:gpl2+)))
13370
13371 (define-public r-bedr
13372 (package
13373 (name "r-bedr")
13374 (version "1.0.7")
13375 (source
13376 (origin
13377 (method url-fetch)
13378 (uri (cran-uri "bedr" version))
13379 (sha256
13380 (base32
13381 "0zpqvyjgwyqawxm8qrhcv8zq2b3yxgcqkkc87br29yrl7sjb8h6j"))))
13382 (build-system r-build-system)
13383 (propagated-inputs
13384 `(("r-data-table" ,r-data-table)
13385 ("r-r-utils" ,r-r-utils)
13386 ("r-testthat" ,r-testthat)
13387 ("r-venndiagram" ,r-venndiagram)
13388 ("r-yaml" ,r-yaml)
13389 ("bedops" ,bedops)
13390 ("bedtools" ,bedtools)
13391 ("htslib" ,htslib))) ; for tabix
13392 (native-inputs
13393 `(("r-knitr" ,r-knitr))) ; for vignettes
13394 (home-page "https://cran.r-project.org/web/packages/bedr")
13395 (synopsis "Genomic region processing")
13396 (description
13397 "This package is for genomic regions processing using command line tools
13398 such as BEDTools, BEDOPS and Tabix. These tools offer scalable and efficient
13399 utilities to perform genome arithmetic e.g indexing, formatting and merging.
13400 The bedr package's API enhances access to these tools as well as offers
13401 additional utilities for genomic regions processing.")
13402 (license license:gpl2)))
13403
13404 (define-public r-sets
13405 (package
13406 (name "r-sets")
13407 (version "1.0-18")
13408 (source
13409 (origin
13410 (method url-fetch)
13411 (uri (cran-uri "sets" version))
13412 (sha256
13413 (base32
13414 "16v7650p47khqrbbw0z98llmwmmhswqmhri0n7nrfhdqwmby1lbl"))))
13415 (properties `((upstream-name . "sets")))
13416 (build-system r-build-system)
13417 (home-page "https://cran.r-project.org/web/packages/sets")
13418 (synopsis "Sets, generalized sets, customizable sets and intervals")
13419 (description
13420 "This package provides data structures and basic operations for ordinary
13421 sets, generalizations such as fuzzy sets, multisets, and fuzzy multisets,
13422 customizable sets, and intervals.")
13423 (license license:gpl2)))
13424
13425 (define-public r-partitions
13426 (package
13427 (name "r-partitions")
13428 (version "1.9-22")
13429 (source
13430 (origin
13431 (method url-fetch)
13432 (uri (cran-uri "partitions" version))
13433 (sha256
13434 (base32
13435 "1qqy4df28wy4q0g572azrj171jlhvrnzbh7x0wr2g7v6gr20y0ns"))))
13436 (build-system r-build-system)
13437 (propagated-inputs
13438 `(("r-gmp" ,r-gmp)
13439 ("r-polynom" ,r-polynom)
13440 ("r-sets" ,r-sets)))
13441 (home-page "https://cran.r-project.org/web/packages/partitions")
13442 (synopsis "Additive partitions of integers")
13443 (description
13444 "This package provides tools to enumerates the partitions, unequal
13445 partitions, and restricted partitions of an integer; the three corresponding
13446 partition functions are also given.")
13447 ;; Any version of the GPL
13448 (license license:gpl2+)))
13449
13450 (define-public r-brobdingnag
13451 (package
13452 (name "r-brobdingnag")
13453 (version "1.2-6")
13454 (source
13455 (origin
13456 (method url-fetch)
13457 (uri (cran-uri "Brobdingnag" version))
13458 (sha256
13459 (base32
13460 "1m3ajvcksqfck5l5hj5xiflj4ry6d896ybv4f0xxks8chgnwmv0r"))))
13461 (properties `((upstream-name . "Brobdingnag")))
13462 (build-system r-build-system)
13463 (home-page "https://github.com/RobinHankin/Brobdingnag.git")
13464 (synopsis "Very large numbers in R")
13465 (description
13466 "This package handles very large numbers in R. Real numbers are held
13467 using their natural logarithms, plus a logical flag indicating sign. The
13468 package includes a vignette that gives a step-by-step introduction to using S4
13469 methods.")
13470 ;; Any version of the GPL
13471 (license license:gpl2+)))
13472
13473 (define-public r-untb
13474 (package
13475 (name "r-untb")
13476 (version "1.7-4")
13477 (source
13478 (origin
13479 (method url-fetch)
13480 (uri (cran-uri "untb" version))
13481 (sha256
13482 (base32
13483 "1i7m4vfslsix98dwx4jlrsldm7fhhfp25gr7aapcxqxms7ryaby6"))))
13484 (build-system r-build-system)
13485 (propagated-inputs
13486 `(("r-brobdingnag" ,r-brobdingnag)
13487 ("r-partitions" ,r-partitions)
13488 ("r-polynom" ,r-polynom)))
13489 (home-page "https://github.com/RobinHankin/untb.git")
13490 (synopsis "Ecological drift under the UNTB")
13491 (description
13492 "This package provides numerical simulations, and visualizations, of
13493 Hubbell's @dfn{Unified Neutral Theory of Biodiversity} (UNTB).")
13494 (license license:gpl2+)))
13495
13496 (define-public r-stepwise
13497 (package
13498 (name "r-stepwise")
13499 (version "0.3")
13500 (source
13501 (origin
13502 (method url-fetch)
13503 (uri (cran-uri "stepwise" version))
13504 (sha256
13505 (base32
13506 "1lbx1bxwkf9dw6q46w40pp7h5nkxgghmx8rkpaymm6iybc7gyir2"))))
13507 (build-system r-build-system)
13508 (home-page "https://stat.sfu.ca/statgen/research/stepwise.html")
13509 (synopsis "Stepwise detection of recombination breakpoints")
13510 (description
13511 "This package provides a stepwise approach to identifying recombination
13512 breakpoints in a genomic sequence alignment.")
13513 (license license:gpl2+)))
13514
13515 (define-public r-snpmaxsel
13516 (package
13517 (name "r-snpmaxsel")
13518 (version "1.0-3")
13519 (source
13520 (origin
13521 (method url-fetch)
13522 (uri (cran-uri "SNPmaxsel" version))
13523 (sha256
13524 (base32
13525 "0pjvixwqzjd3jwccc8yqq9c76afvbmfq0z1w0cwyj8bblrjpx13z"))))
13526 (properties `((upstream-name . "SNPmaxsel")))
13527 (build-system r-build-system)
13528 (propagated-inputs
13529 `(("r-combinat" ,r-combinat)
13530 ("r-mvtnorm" ,r-mvtnorm)))
13531 (home-page "https://cran.r-project.org/web/packages/SNPmaxsel/index.html")
13532 (synopsis "Maximally selected statistics for SNP data")
13533 (description
13534 "This package implements asymptotic methods related to maximally selected
13535 statistics, with applications to @dfn{single-nucleotide polymorphism} (SNP)
13536 data.")
13537 (license license:gpl2+)))
13538
13539 (define-public r-acsnminer
13540 (package
13541 (name "r-acsnminer")
13542 (version "0.16.8.25")
13543 (source (origin
13544 (method url-fetch)
13545 (uri (cran-uri "ACSNMineR" version))
13546 (sha256
13547 (base32
13548 "0gh604s8qall6zfjlwcg2ilxjvz08dplf9k5g47idhv43scm748l"))))
13549 (properties `((upstream-name . "ACSNMineR")))
13550 (build-system r-build-system)
13551 (propagated-inputs
13552 `(("r-ggplot2" ,r-ggplot2)
13553 ("r-gridextra" ,r-gridextra)))
13554 (home-page "https://cran.r-project.org/web/packages/ACSNMineR")
13555 (synopsis "Gene enrichment analysis")
13556 (description
13557 "This package provides tools to compute and represent gene set enrichment
13558 or depletion from your data based on pre-saved maps from the @dfn{Atlas of
13559 Cancer Signalling Networks} (ACSN) or user imported maps. The gene set
13560 enrichment can be run with hypergeometric test or Fisher exact test, and can
13561 use multiple corrections. Visualization of data can be done either by
13562 barplots or heatmaps.")
13563 (license license:gpl2+)))
13564
13565 (define-public r-seqinr
13566 (package
13567 (name "r-seqinr")
13568 (version "3.6-1")
13569 (source
13570 (origin
13571 (method url-fetch)
13572 (uri (cran-uri "seqinr" version))
13573 (sha256
13574 (base32
13575 "0j30za6kji6y3v09cvcydiacnp65pv6ig8aw7cydl47l5s9chky4"))))
13576 (build-system r-build-system)
13577 (propagated-inputs
13578 `(("r-ade4" ,r-ade4)
13579 ("r-segmented" ,r-segmented)))
13580 (inputs
13581 `(("zlib" ,zlib)))
13582 (home-page "http://seqinr.r-forge.r-project.org/")
13583 (synopsis "Biological sequences retrieval and analysis")
13584 (description
13585 "This package provides tools for exploratory data analysis and data
13586 visualization of biological sequence (DNA and protein) data. It also includes
13587 utilities for sequence data management under the ACNUC system.")
13588 (license license:gpl2+)))
13589
13590 (define-public r-units
13591 (package
13592 (name "r-units")
13593 (version "0.6-7")
13594 (source
13595 (origin
13596 (method url-fetch)
13597 (uri (cran-uri "units" version))
13598 (sha256
13599 (base32
13600 "1rdpbkiqcabz00fqzzs98v89v4cgvcd4pb00pwxzkq6vmwmscwrz"))))
13601 (build-system r-build-system)
13602 (inputs
13603 `(("udunits" ,udunits)))
13604 (propagated-inputs
13605 `(("r-rcpp" ,r-rcpp)))
13606 (native-inputs
13607 `(("r-knitr" ,r-knitr)))
13608 (home-page "https://github.com/r-quantities/units/")
13609 (synopsis "Measurement Units for R Vectors")
13610 (description
13611 "This package provides support for measurement units in R vectors,
13612 matrices and arrays: automatic propagation, conversion, derivation and
13613 simplification of units; raising errors in case of unit incompatibility. It
13614 is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
13615 classes.")
13616 (license license:gpl2)))
13617
13618 (define-public r-classint
13619 (package
13620 (name "r-classint")
13621 (version "0.4-3")
13622 (source
13623 (origin
13624 (method url-fetch)
13625 (uri (cran-uri "classInt" version))
13626 (sha256
13627 (base32
13628 "1b1lqhpzxm6b8pza8l3s0cxy74mm9y45lcd3354i2v3bg8m7mply"))))
13629 (properties `((upstream-name . "classInt")))
13630 (build-system r-build-system)
13631 (propagated-inputs
13632 `(("r-class" ,r-class)
13633 ("r-e1071" ,r-e1071)
13634 ("r-kernsmooth" ,r-kernsmooth)))
13635 (native-inputs
13636 `(("gfortran" ,gfortran)
13637 ("r-knitr" ,r-knitr)))
13638 (home-page "https://github.com/r-spatial/classInt/")
13639 (synopsis "Choose univariate class intervals")
13640 (description
13641 "This package provides selected commonly used methods for choosing
13642 univariate class intervals for mapping or other graphics purposes.")
13643 (license license:gpl2+)))
13644
13645 (define-public r-spdata
13646 (package
13647 (name "r-spdata")
13648 (version "0.3.8")
13649 (source
13650 (origin
13651 (method url-fetch)
13652 (uri (cran-uri "spData" version))
13653 (sha256
13654 (base32
13655 "1mlsqy9cbilfc80cbdlbgsngvzdkrd9yjdkxnw2b1gzxnj6jcqbs"))))
13656 (properties `((upstream-name . "spData")))
13657 (build-system r-build-system)
13658 (propagated-inputs
13659 `(("r-raster" ,r-raster)
13660 ("r-sp" ,r-sp)))
13661 (home-page "https://github.com/Nowosad/spData")
13662 (synopsis "Datasets for spatial analysis")
13663 (description
13664 "This a package containing diverse spatial datasets for demonstrating,
13665 benchmarking and teaching spatial data analysis. It includes R data of class
13666 @code{sf}, @code{Spatial}, and @code{nb}. It also contains data stored in a
13667 range of file formats including GeoJSON, ESRI Shapefile and GeoPackage. Some
13668 of the datasets are designed to illustrate specific analysis techniques.
13669 @code{cycle_hire()} and @code{cycle_hire_osm()}, for example, are designed to
13670 illustrate point pattern analysis techniques.")
13671 (license license:cc0)))
13672
13673 (define-public r-learnbayes
13674 (package
13675 (name "r-learnbayes")
13676 (version "2.15.1")
13677 (source
13678 (origin
13679 (method url-fetch)
13680 (uri (cran-uri "LearnBayes" version))
13681 (sha256
13682 (base32
13683 "0ch54v2zz2yyyk0lvn5rfikdmyz1qh9j1wk3585wl8v58mc0h4cv"))))
13684 (properties `((upstream-name . "LearnBayes")))
13685 (build-system r-build-system)
13686 (home-page "https://cran.r-project.org/web/packages/LearnBayes")
13687 (synopsis "Functions for learning Bayesian inference")
13688 (description
13689 "This package provides a collection of functions helpful in learning the
13690 basic tenets of Bayesian statistical inference. It contains functions for
13691 summarizing basic one and two parameter posterior distributions and predictive
13692 distributions. It contains MCMC algorithms for summarizing posterior
13693 distributions defined by the user. It also contains functions for regression
13694 models, hierarchical models, Bayesian tests, and illustrations of Gibbs
13695 sampling.")
13696 (license license:gpl2+)))
13697
13698 (define-public r-deldir
13699 (package
13700 (name "r-deldir")
13701 (version "0.1-28")
13702 (source
13703 (origin
13704 (method url-fetch)
13705 (uri (cran-uri "deldir" version))
13706 (sha256
13707 (base32
13708 "12ys8jdcrgzhf9m2yirlqfars397qb0q0pbypahmfa66lgr6wdx5"))))
13709 (build-system r-build-system)
13710 (native-inputs `(("gfortran" ,gfortran)))
13711 (home-page "https://cran.r-project.org/web/packages/deldir")
13712 (synopsis "Delaunay triangulation and Dirichlet (Voronoi) tessellation")
13713 (description
13714 "This package provides tools for calculating the Delaunay triangulation
13715 and the Dirichlet or Voronoi tessellation (with respect to the entire plane)
13716 of a planar point set. It plots triangulations and tessellations in various
13717 ways, clips tessellations to sub-windows, calculates perimeters of
13718 tessellations, and summarizes information about the tiles of the
13719 tessellation.")
13720 (license license:gpl2+)))
13721
13722 (define-public r-sf
13723 (package
13724 (name "r-sf")
13725 (version "0.9-5")
13726 (source
13727 (origin
13728 (method url-fetch)
13729 (uri (cran-uri "sf" version))
13730 (sha256
13731 (base32
13732 "0c58asqrvz1pkdkb0lkzwz8cwb43pmxd39z0jp217hk7p7q3ngwf"))))
13733 (build-system r-build-system)
13734 (inputs
13735 `(("gdal" ,gdal)
13736 ("geos" ,geos)
13737 ("proj" ,proj.4)
13738 ("zlib" ,zlib)))
13739 (propagated-inputs
13740 `(("r-classint" ,r-classint)
13741 ("r-dbi" ,r-dbi)
13742 ("r-magrittr" ,r-magrittr)
13743 ("r-rcpp" ,r-rcpp)
13744 ("r-units" ,r-units)))
13745 (native-inputs
13746 `(("pkg-config" ,pkg-config)
13747 ("r-knitr" ,r-knitr)))
13748 (home-page "https://github.com/r-spatial/sf/")
13749 (synopsis "Simple features for R")
13750 (description
13751 "This package provides support for simple features, a standardized way to
13752 encode spatial vector data. It binds to GDAL for reading and writing data, to
13753 GEOS for geometrical operations, and to PROJ for projection conversions and
13754 datum transformations.")
13755 ;; Either of these licenses
13756 (license (list license:gpl2 license:expat))))
13757
13758 (define-public r-spdep
13759 (package
13760 (name "r-spdep")
13761 (version "1.1-5")
13762 (source
13763 (origin
13764 (method url-fetch)
13765 (uri (cran-uri "spdep" version))
13766 (sha256
13767 (base32
13768 "0pbd7wrg5v44p2yxsjp774lpyzap3madir5mn5p3ix7ibk7ldjs7"))))
13769 (build-system r-build-system)
13770 (propagated-inputs
13771 `(("r-boot" ,r-boot)
13772 ("r-coda" ,r-coda)
13773 ("r-deldir" ,r-deldir)
13774 ("r-expm" ,r-expm)
13775 ("r-gmodels" ,r-gmodels)
13776 ("r-learnbayes" ,r-learnbayes)
13777 ("r-mass" ,r-mass)
13778 ("r-matrix" ,r-matrix)
13779 ("r-nlme" ,r-nlme)
13780 ("r-sf" ,r-sf)
13781 ("r-sp" ,r-sp)
13782 ("r-spdata" ,r-spdata)))
13783 (native-inputs
13784 `(("r-knitr" ,r-knitr)))
13785 (home-page "https://github.com/r-spatial/spdep/")
13786 (synopsis "Spatial dependence: weighting schemes, statistics and models")
13787 (description
13788 "This package provides a collection of functions to create spatial
13789 weights matrix objects from polygon contiguities, from point patterns by
13790 distance and tessellations, for summarizing these objects, and for permitting
13791 their use in spatial data analysis, including regional aggregation by minimum
13792 spanning tree.")
13793 (license license:gpl2+)))
13794
13795 (define-public r-adegenet
13796 (package
13797 (name "r-adegenet")
13798 (version "2.1.3")
13799 (source
13800 (origin
13801 (method url-fetch)
13802 (uri (cran-uri "adegenet" version))
13803 (sha256
13804 (base32
13805 "1ipnawi0qfd4rfwj37igvh36x1a9d8x4n7xynn1jcr12rd713407"))))
13806 (build-system r-build-system)
13807 (propagated-inputs
13808 `(("r-ade4" ,r-ade4)
13809 ("r-ape" ,r-ape)
13810 ("r-boot" ,r-boot)
13811 ("r-dplyr" ,r-dplyr)
13812 ("r-ggplot2" ,r-ggplot2)
13813 ("r-igraph" ,r-igraph)
13814 ("r-mass" ,r-mass)
13815 ("r-reshape2" ,r-reshape2)
13816 ("r-seqinr" ,r-seqinr)
13817 ("r-shiny" ,r-shiny)
13818 ("r-spdep" ,r-spdep)
13819 ("r-vegan" ,r-vegan)))
13820 (home-page "https://github.com/thibautjombart/adegenet")
13821 (synopsis "Exploratory analysis of genetic and genomic data")
13822 (description
13823 "This package provides a toolset for the exploration of genetic and
13824 genomic data. Adegenet provides formal (S4) classes for storing and handling
13825 various genetic data, including genetic markers with varying ploidy and
13826 hierarchical population structure (@code{genind} class), alleles counts by
13827 populations (@code{genpop}), and genome-wide SNP data (@code{genlight}). It
13828 also implements original multivariate methods (DAPC, sPCA), graphics,
13829 statistical tests, simulation tools, distance and similarity measures, and
13830 several spatial methods. A range of both empirical and simulated datasets is
13831 also provided to illustrate various methods.")
13832 (license license:gpl2+)))
13833
13834 (define-public r-pegas
13835 (package
13836 (name "r-pegas")
13837 (version "0.13")
13838 (source
13839 (origin
13840 (method url-fetch)
13841 (uri (cran-uri "pegas" version))
13842 (sha256
13843 (base32 "002i7s4g0nhnq0v05gs0yssqiyhpq2f7rw2rhn31hsbgxc86frvy"))))
13844 (build-system r-build-system)
13845 (propagated-inputs
13846 `(("r-adegenet" ,r-adegenet)
13847 ("r-ape" ,r-ape)))
13848 (home-page "http://ape-package.ird.fr/pegas.html")
13849 (synopsis "Population and evolutionary genetics analysis system")
13850 (description
13851 "This package provides functions for reading, writing, plotting,
13852 analysing, and manipulating allelic and haplotypic data, including from VCF
13853 files, and for the analysis of population nucleotide sequences and
13854 micro-satellites including coalescent analyses, linkage disequilibrium,
13855 population structure (Fst, Amova) and equilibrium (HWE), haplotype networks,
13856 minimum spanning tree and network, and median-joining networks.")
13857 (license license:gpl2+)))
13858
13859 (define-public r-rmetasim
13860 (package
13861 (name "r-rmetasim")
13862 (version "3.1.14")
13863 (source
13864 (origin
13865 (method url-fetch)
13866 (uri (cran-uri "rmetasim" version))
13867 (sha256
13868 (base32
13869 "0rdkhfgyr97r2d1kd9g8ipb2pn563qxm1y4m9z678q0kqan2ddl0"))))
13870 (build-system r-build-system)
13871 (propagated-inputs
13872 `(("r-ade4" ,r-ade4)
13873 ("r-adegenet" ,r-adegenet)
13874 ("r-gtools" ,r-gtools)
13875 ("r-pegas" ,r-pegas)))
13876 (home-page "https://cran.r-project.org/web/packages/rmetasim")
13877 (synopsis "Individual-based population genetic simulation environment")
13878 (description
13879 "This package provides an interface between R and the metasim simulation
13880 engine. The simulation environment is documented in: Strand, A.(2002),
13881 Metasim 1.0: an individual-based environment for simulating population
13882 genetics of complex population dynamics.")
13883 ;; Any GPL version
13884 (license license:gpl2+)))
13885
13886 (define-public r-genetics
13887 (package
13888 (name "r-genetics")
13889 (version "1.3.8.1.2")
13890 (source
13891 (origin
13892 (method url-fetch)
13893 (uri (cran-uri "genetics" version))
13894 (sha256
13895 (base32
13896 "1v0ylnia6c44v356dsmnkx6054vcxazpzsrdh3yph5ch5vg6gjrh"))))
13897 (build-system r-build-system)
13898 (propagated-inputs
13899 `(("r-combinat" ,r-combinat)
13900 ("r-gdata" ,r-gdata)
13901 ("r-gtools" ,r-gtools)
13902 ("r-mass" ,r-mass)
13903 ("r-mvtnorm" ,r-mvtnorm)))
13904 (home-page "https://cran.r-project.org/web/packages/genetics/")
13905 (synopsis "Population genetics")
13906 (description
13907 "This package provides classes and methods for handling genetic data.
13908 It includes classes to represent genotypes and haplotypes at single markers up
13909 to multiple markers on multiple chromosomes. Function include allele
13910 frequencies, flagging homo/heterozygotes, flagging carriers of certain
13911 alleles, estimating and testing for Hardy-Weinberg disequilibrium, estimating
13912 and testing for linkage disequilibrium, ...")
13913 ;; Any GPL version.
13914 (license license:gpl2+)))
13915
13916 (define-public r-snp-plotter
13917 (package
13918 (name "r-snp-plotter")
13919 (version "0.5.1")
13920 (source
13921 (origin
13922 (method url-fetch)
13923 (uri (cran-uri "snp.plotter" version))
13924 (sha256
13925 (base32
13926 "16apsqvkah5l0d5qcwp3lq2jspkb6n62wzr0wskmj84jblx483vv"))))
13927 (properties `((upstream-name . "snp.plotter")))
13928 (build-system r-build-system)
13929 (propagated-inputs `(("r-genetics" ,r-genetics)))
13930 (home-page "https://cran.r-project.org/web/packages/snp.plotter/")
13931 (synopsis "Plot p-values using single SNP and/or haplotype data")
13932 (description
13933 "This package helps you create plots of p-values using single SNP and/or
13934 haplotype data. Main features of the package include options to display a
13935 @dfn{linkage disequilibrium} (LD) plot and the ability to plot multiple
13936 datasets simultaneously. Plots can be created using global and/or individual
13937 haplotype p-values along with single SNP p-values. Images are created as
13938 either PDF/EPS files.")
13939 (license license:gpl2+)))
13940
13941 (define-public r-polspline
13942 (package
13943 (name "r-polspline")
13944 (version "1.1.19")
13945 (source
13946 (origin
13947 (method url-fetch)
13948 (uri (cran-uri "polspline" version))
13949 (sha256
13950 (base32 "0rhzf735hmbqfn2xbgcln4sqx7m9far72g5gq9mghgkw016kqglm"))))
13951 (build-system r-build-system)
13952 (native-inputs `(("gfortran" ,gfortran)))
13953 (home-page "https://cran.r-project.org/web/packages/polspline/")
13954 (synopsis "Polynomial spline routines")
13955 (description
13956 "This package provides routines for the polynomial spline fitting
13957 routines hazard regression, hazard estimation with flexible tails, logspline,
13958 lspec, polyclass, and polymars.")
13959 (license license:gpl2+)))
13960
13961 (define-public r-rms
13962 (package
13963 (name "r-rms")
13964 (version "6.0-1")
13965 (source
13966 (origin
13967 (method url-fetch)
13968 (uri (cran-uri "rms" version))
13969 (sha256
13970 (base32 "1zkcsqcvldfj4kyn0346vi51igq951qrnpxlv2pfvap6n2v5wbxq"))))
13971 (build-system r-build-system)
13972 (propagated-inputs
13973 `(("r-cluster" ,r-cluster)
13974 ("r-digest" ,r-digest)
13975 ("r-ggplot2" ,r-ggplot2)
13976 ("r-hmisc" ,r-hmisc)
13977 ("r-htmltable" ,r-htmltable)
13978 ("r-htmltools" ,r-htmltools)
13979 ("r-lattice" ,r-lattice)
13980 ("r-mass" ,r-mass)
13981 ("r-multcomp" ,r-multcomp)
13982 ("r-nlme" ,r-nlme)
13983 ("r-polspline" ,r-polspline)
13984 ("r-quantreg" ,r-quantreg)
13985 ("r-rpart" ,r-rpart)
13986 ("r-sparsem" ,r-sparsem)
13987 ("r-survival" ,r-survival)))
13988 (native-inputs `(("gfortran" ,gfortran)))
13989 (home-page "http://biostat.mc.vanderbilt.edu/rms")
13990 (synopsis "Regression modeling strategies")
13991 (description
13992 "This is a package for regression modeling, testing, estimation,
13993 validation, graphics, prediction, and typesetting by storing enhanced model
13994 design attributes in the fit. The rms package is a collection of functions
13995 that assist with and streamline modeling. It also contains functions for
13996 binary and ordinal logistic regression models, ordinal models for continuous Y
13997 with a variety of distribution families, and the Buckley-James multiple
13998 regression model for right-censored responses, and implements penalized
13999 maximum likelihood estimation for logistic and ordinary linear models. The
14000 package works with almost any regression model, but it was especially written
14001 to work with binary or ordinal regression models, Cox regression, accelerated
14002 failure time models, ordinary linear models, the Buckley-James model,
14003 generalized least squares for serially or spatially correlated observations,
14004 generalized linear models, and quantile regression.")
14005 (license license:gpl2+)))
14006
14007 (define-public r-arsenal
14008 (package
14009 (name "r-arsenal")
14010 (version "3.5.0")
14011 (source
14012 (origin
14013 (method url-fetch)
14014 (uri (cran-uri "arsenal" version))
14015 (sha256
14016 (base32
14017 "0avi434wkk3w7axd89a4jwsbb11fi0239mkkla6zasnjwbqgjim0"))))
14018 (properties `((upstream-name . "arsenal")))
14019 (build-system r-build-system)
14020 (propagated-inputs `(("r-knitr" ,r-knitr)))
14021 (native-inputs `(("r-knitr" ,r-knitr)))
14022 (home-page "https://github.com/mayoverse/arsenal")
14023 (synopsis "Functions for large-scale statistical summaries")
14024 (description
14025 "This package provides an arsenal of R functions for large-scale
14026 statistical summaries, which are streamlined to work within the latest
14027 reporting tools in R and RStudio and which use formulas and versatile
14028 summary statistics for summary tables and models. The primary functions
14029 include
14030
14031 @enumerate
14032 @item @code{tableby}, a Table-1-like summary of multiple variable types by the
14033 levels of one or more categorical variables;
14034 @item @code{paired}, a Table-1-like summary of multiple variable types paired
14035 across two time points;
14036 @item @code{modelsum}, which performs simple model fits on one or more
14037 endpoints for many variables (univariate or adjusted for covariates);
14038 @item @code{freqlist}, a powerful frequency table across many categorical
14039 variables;
14040 @item @code{comparedf}, a function for comparing @code{data.frames}; and
14041 @item @code{write2}, a function to output tables to a document.
14042 @end enumerate
14043 ")
14044 (license license:gpl2+)))
14045
14046 (define-public r-haplo-stats
14047 (package
14048 (name "r-haplo-stats")
14049 (version "1.7.9")
14050 (source
14051 (origin
14052 (method url-fetch)
14053 (uri (cran-uri "haplo.stats" version))
14054 (sha256
14055 (base32
14056 "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
14057 (properties `((upstream-name . "haplo.stats")))
14058 (build-system r-build-system)
14059 (propagated-inputs
14060 `(("r-rms" ,r-rms)))
14061 (native-inputs
14062 `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
14063 (home-page "https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
14064 (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
14065 (description
14066 "This package provides routines for the analysis of indirectly measured
14067 haplotypes. The statistical methods assume that all subjects are unrelated
14068 and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
14069 markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
14070 @code{haplo.score()}, and @code{haplo.power()}; all of which have detailed
14071 examples in the vignette.")
14072 (license license:gpl2+)))
14073
14074 (define-public r-bqtl
14075 (package
14076 (name "r-bqtl")
14077 (version "1.0-32")
14078 (source
14079 (origin
14080 (method url-fetch)
14081 (uri (cran-uri "bqtl" version))
14082 (sha256
14083 (base32
14084 "0jjqgsm9fmvz5nkgz608xfljjpmaf4rs4f7kxvpqn4b1l9s5lhci"))))
14085 (build-system r-build-system)
14086 (native-inputs `(("gfortran" ,gfortran)))
14087 (home-page "http://famprevmed.ucsd.edu/faculty/cberry/bqtl/")
14088 (synopsis "Bayesian QTL mapping toolkit")
14089 (description
14090 "This is a QTL mapping toolkit for inbred crosses and recombinant inbred
14091 lines. It includes maximum likelihood and Bayesian tools.")
14092 (license license:gpl2+)))
14093
14094 (define-public r-ibdreg
14095 (package
14096 (name "r-ibdreg")
14097 (version "0.3.1")
14098 (source
14099 (origin
14100 (method url-fetch)
14101 (uri (cran-uri "ibdreg" version))
14102 (sha256
14103 (base32
14104 "0kgx9iavgm6d6njhki7bm82d6lw2c7kcch2pryd339js2hm0l5gq"))))
14105 (build-system r-build-system)
14106 (home-page "https://www.mayo.edu/research/labs/\
14107 statistical-genetics-genetic-epidemiology/software")
14108 (synopsis "Regression methods for IBD linkage with covariates")
14109 (description
14110 "This package provides a method to test genetic linkage with covariates
14111 by regression methods with response IBD sharing for relative pairs. Account
14112 for correlations of IBD statistics and covariates for relative pairs within
14113 the same pedigree.")
14114 (license license:gpl2+)))
14115
14116 (define-public r-dlmap
14117 (package
14118 (name "r-dlmap")
14119 (version "1.13")
14120 (source
14121 (origin
14122 (method url-fetch)
14123 (uri (cran-uri "dlmap" version))
14124 (sha256
14125 (base32
14126 "0s6wlkggkm3qndwyvw72xv1n0mcjb7ss3ajbq2ll6rv30splq0db"))))
14127 (build-system r-build-system)
14128 (propagated-inputs
14129 `(("r-ibdreg" ,r-ibdreg)
14130 ("r-mgcv" ,r-mgcv)
14131 ("r-nlme" ,r-nlme)
14132 ("r-qtl" ,r-qtl)
14133 ("r-wgaim" ,r-wgaim)))
14134 (home-page "https://cran.r-project.org/web/packages/dlmap/")
14135 (synopsis "Detection localization mapping for QTL")
14136 (description
14137 "This is package for QTL mapping in a mixed model framework with separate
14138 detection and localization stages. The first stage detects the number of QTL
14139 on each chromosome based on the genetic variation due to grouped markers on
14140 the chromosome; the second stage uses this information to determine the most
14141 likely QTL positions. The mixed model can accommodate general fixed and
14142 random effects, including spatial effects in field trials and pedigree
14143 effects. It is applicable to backcrosses, doubled haploids, recombinant
14144 inbred lines, F2 intercrosses, and association mapping populations.")
14145 (license license:gpl2)))
14146
14147 (define-public r-ldheatmap
14148 (package
14149 (name "r-ldheatmap")
14150 (version "0.99-8")
14151 (source
14152 (origin
14153 (method url-fetch)
14154 (uri (cran-uri "LDheatmap" version))
14155 (sha256
14156 (base32
14157 "1x3da3rbhyqb2ddngi48qv7vzb6vc347n9qhryr70qgcc1xvqj4z"))))
14158 (properties `((upstream-name . "LDheatmap")))
14159 (build-system r-build-system)
14160 (propagated-inputs
14161 `(("r-genetics" ,r-genetics)
14162 ("r-rcpp" ,r-rcpp)
14163 ("r-snpstats" ,r-snpstats)))
14164 (home-page "https://stat.sfu.ca/statgen/research/ldheatmap.html")
14165 (synopsis "Graphical display of pairwise linkage disequilibria between SNPs")
14166 (description
14167 "This package provides tools to produce a graphical display, as a heat
14168 map, of measures of pairwise linkage disequilibria between SNPs. Users may
14169 optionally include the physical locations or genetic map distances of each SNP
14170 on the plot.")
14171 (license license:gpl3)))
14172
14173 (define-public r-hwde
14174 (package
14175 (name "r-hwde")
14176 (version "0.67")
14177 (source
14178 (origin
14179 (method url-fetch)
14180 (uri (cran-uri "hwde" version))
14181 (sha256
14182 (base32
14183 "0wb2f9i5qi7w77ygh8bvydfpr7j5x8dyvnnhdkajaz0wdcpkyaqy"))))
14184 (build-system r-build-system)
14185 (home-page "https://cran.r-project.org/web/packages/hwde/")
14186 (synopsis "Models and tests for departure from Hardy-Weinberg equilibrium")
14187 (description
14188 "This package fits models for genotypic disequilibria, as described in
14189 Huttley and Wilson (2000), Weir (1996) and Weir and Wilson (1986). Contrast
14190 terms are available that account for first order interactions between loci.
14191 It also implements, for a single locus in a single population, a conditional
14192 exact test for Hardy-Weinberg equilibrium.")
14193 (license license:gpl2+)))
14194
14195 (define-public r-tdthap
14196 (package
14197 (name "r-tdthap")
14198 (version "1.1-11")
14199 (source
14200 (origin
14201 (method url-fetch)
14202 (uri (cran-uri "tdthap" version))
14203 (sha256
14204 (base32
14205 "15qlj2bivvz3pizd8dq34wczbkbxhzqh3cqp1ixkdkprlyvcxj5k"))))
14206 (build-system r-build-system)
14207 (home-page "https://cran.r-project.org/web/packages/tdthap/")
14208 (synopsis "TDT tests for extended haplotypes")
14209 (description
14210 "Functions and examples are provided for transmission/disequilibrium
14211 tests for extended marker haplotypes, as in Clayton, D. and Jones, H. (1999)
14212 \"Transmission/disequilibrium tests for extended marker haplotypes\".")
14213 (license license:artistic2.0)))
14214
14215 (define-public r-sparql
14216 (package
14217 (name "r-sparql")
14218 (version "1.16")
14219 (source (origin
14220 (method url-fetch)
14221 (uri (cran-uri "SPARQL" version))
14222 (sha256
14223 (base32
14224 "0gak1q06yyhdmcxb2n3v0h9gr1vqd0viqji52wpw211qp6r6dcrc"))))
14225 (properties `((upstream-name . "SPARQL")))
14226 (build-system r-build-system)
14227 (propagated-inputs
14228 `(("r-rcurl" ,r-rcurl)
14229 ("r-xml" ,r-xml)))
14230 (home-page "https://cran.r-project.org/web/packages/SPARQL")
14231 (synopsis "SPARQL client for R")
14232 (description "This package provides an interface to use SPARQL to pose
14233 SELECT or UPDATE queries to an end-point.")
14234 ;; The only license indication is found in the DESCRIPTION file,
14235 ;; which states GPL-3. So we cannot assume GPLv3+.
14236 (license license:gpl3)))
14237
14238 (define-public r-bookdown
14239 (package
14240 (name "r-bookdown")
14241 (version "0.20")
14242 (source (origin
14243 (method url-fetch)
14244 (uri (cran-uri "bookdown" version))
14245 (sha256
14246 (base32
14247 "0gnshkp1aj7f29sjkhzxn890hz39nwaqdln61x8apmrc658nacdg"))))
14248 (build-system r-build-system)
14249 (propagated-inputs
14250 `(("r-htmltools" ,r-htmltools)
14251 ("r-knitr" ,r-knitr)
14252 ("r-rmarkdown" ,r-rmarkdown)
14253 ("r-tinytex" ,r-tinytex)
14254 ("r-xfun" ,r-xfun)
14255 ("pandoc" ,pandoc)))
14256 (home-page "https://github.com/rstudio/bookdown")
14257 (synopsis "Authoring books and technical documents with R markdown")
14258 (description "This package provides output formats and utilities for
14259 authoring books and technical documents with R Markdown.")
14260 (license license:gpl3)))
14261
14262 (define-public r-optparse
14263 (package
14264 (name "r-optparse")
14265 (version "1.6.6")
14266 (source
14267 (origin
14268 (method url-fetch)
14269 (uri (cran-uri "optparse" version))
14270 (sha256
14271 (base32
14272 "1l301dy3gc8pn7j00awcjh41wmc1ks9kswak255kbsa6f54rsxsi"))))
14273 (build-system r-build-system)
14274 (propagated-inputs
14275 `(("r-getopt" ,r-getopt)))
14276 (native-inputs
14277 `(("r-knitr" ,r-knitr)))
14278 (home-page "https://github.com/trevorld/optparse")
14279 (synopsis "Command line option parser")
14280 (description
14281 "This package provides a command line parser inspired by Python's
14282 @code{optparse} library to be used with Rscript to write shebang scripts
14283 that accept short and long options.")
14284 (license license:gpl2+)))
14285
14286 (define-public r-wgcna
14287 (package
14288 (name "r-wgcna")
14289 (version "1.69")
14290 (source
14291 (origin
14292 (method url-fetch)
14293 (uri (cran-uri "WGCNA" version))
14294 (sha256
14295 (base32
14296 "022hkprnrafvggi8pkjffkvk1qlnibmbbxxrni00wkrdbga5589f"))))
14297 (properties `((upstream-name . "WGCNA")))
14298 (build-system r-build-system)
14299 (propagated-inputs
14300 `(("r-annotationdbi" ,r-annotationdbi)
14301 ("r-doparallel" ,r-doparallel)
14302 ("r-dynamictreecut" ,r-dynamictreecut)
14303 ("r-fastcluster" ,r-fastcluster)
14304 ("r-foreach" ,r-foreach)
14305 ("r-go-db" ,r-go-db)
14306 ("r-hmisc" ,r-hmisc)
14307 ("r-impute" ,r-impute)
14308 ("r-rcpp" ,r-rcpp)
14309 ("r-survival" ,r-survival)
14310 ("r-matrixstats" ,r-matrixstats)
14311 ("r-preprocesscore" ,r-preprocesscore)))
14312 (home-page
14313 "http://www.genetics.ucla.edu/labs/horvath/CoexpressionNetwork/Rpackages/WGCNA/")
14314 (synopsis "Weighted correlation network analysis")
14315 (description
14316 "This package provides functions necessary to perform Weighted
14317 Correlation Network Analysis on high-dimensional data. It includes functions
14318 for rudimentary data cleaning, construction and summarization of correlation
14319 networks, module identification and functions for relating both variables and
14320 modules to sample traits. It also includes a number of utility functions for
14321 data manipulation and visualization.")
14322 (license license:gpl2+)))
14323
14324 (define-public r-kernlab
14325 (package
14326 (name "r-kernlab")
14327 (version "0.9-29")
14328 (source
14329 (origin
14330 (method url-fetch)
14331 (uri (cran-uri "kernlab" version))
14332 (sha256
14333 (base32 "0vqhndl4zm7pvkfvq0f6i9cbrm7pij6kmdp7d7w39pa100x6knn3"))))
14334 (build-system r-build-system)
14335 (home-page "https://cran.r-project.org/web/packages/kernlab")
14336 (synopsis "Kernel-based machine learning tools")
14337 (description
14338 "This package provides kernel-based machine learning methods for
14339 classification, regression, clustering, novelty detection, quantile regression
14340 and dimensionality reduction. Among other methods @code{kernlab} includes
14341 Support Vector Machines, Spectral Clustering, Kernel PCA, Gaussian Processes
14342 and a QP solver.")
14343 (license license:gpl2)))
14344
14345 (define-public r-hierfstat
14346 (package
14347 (name "r-hierfstat")
14348 (version "0.5-7")
14349 (source
14350 (origin
14351 (method url-fetch)
14352 (uri (cran-uri "hierfstat" version))
14353 (sha256
14354 (base32
14355 "0dp8k1z5a8gqnax99y1hwfvxilzf4n2i751zr0z6ihrzirsvb3m3"))))
14356 (build-system r-build-system)
14357 (propagated-inputs
14358 `(("r-ade4" ,r-ade4)
14359 ("r-adegenet" ,r-adegenet)
14360 ("r-gaston" ,r-gaston)
14361 ("r-gtools" ,r-gtools)))
14362 (native-inputs
14363 `(("r-knitr" ,r-knitr)))
14364 (home-page "https://cran.r-project.org/web/packages/hierfstat/")
14365 (synopsis "Estimation and tests of hierarchical F-statistics")
14366 (description
14367 "This package allows the estimation of hierarchical F-statistics from
14368 haploid or diploid genetic data with any numbers of levels in the hierarchy,
14369 following the algorithm of Yang (Evolution, 1998, 52(4):950-956). Functions
14370 are also given to test via randomisations the significance of each F and
14371 variance components, using the likelihood-ratio statistics G.")
14372 (license license:gpl2+)))
14373
14374 (define-public r-hapassoc
14375 (package
14376 (name "r-hapassoc")
14377 (version "1.2-8")
14378 (source
14379 (origin
14380 (method url-fetch)
14381 (uri (cran-uri "hapassoc" version))
14382 (sha256
14383 (base32
14384 "0qs5jl0snzfchgpp6pabncwywxcmi743g91jvjiyyzw0lw85yv4s"))))
14385 (build-system r-build-system)
14386 (home-page "https://stat.sfu.ca/statgen/research/hapassoc.html")
14387 (synopsis "Inference of trait associations with SNP haplotypes")
14388 (description
14389 "Hapassoc performs likelihood inference of trait associations with
14390 haplotypes and other covariates in @dfn{generalized linear models} (GLMs). The
14391 functions are developed primarily for data collected in cohort or
14392 cross-sectional studies. They can accommodate uncertain haplotype phase and
14393 handle missing genotypes at some SNPs.")
14394 (license license:gpl2)))
14395
14396 (define-public r-sampling
14397 (package
14398 (name "r-sampling")
14399 (version "2.8")
14400 (source
14401 (origin
14402 (method url-fetch)
14403 (uri (cran-uri "sampling" version))
14404 (sha256
14405 (base32
14406 "06pj7dan0mknpsblmlnk7am78qrnwgnql5vvx7vmbfvib7rj6s9m"))))
14407 (build-system r-build-system)
14408 (propagated-inputs
14409 `(("r-lpsolve" ,r-lpsolve)
14410 ("r-mass" ,r-mass)))
14411 (home-page "https://cran.r-project.org/web/packages/sampling/")
14412 (synopsis "Survey sampling")
14413 (description
14414 "This package provides functions for drawing and calibrating samples.")
14415 (license license:gpl2+)))
14416
14417 (define-public r-r2html
14418 (package
14419 (name "r-r2html")
14420 (version "2.3.2")
14421 (source
14422 (origin
14423 (method url-fetch)
14424 (uri (cran-uri "R2HTML" version))
14425 (sha256
14426 (base32
14427 "00kxny7hajs9r2kw63qk7d03ggdxx2j1g8vbrmzp806y8aczvik9"))))
14428 (properties `((upstream-name . "R2HTML")))
14429 (build-system r-build-system)
14430 (home-page "https://github.com/nalimilan/R2HTML")
14431 (synopsis "HTML export for R objects")
14432 (description
14433 "This package includes HTML functions and methods to write in an HTML
14434 file. Thus, making HTML reports is easy. It includes a function that allows
14435 redirection on the fly, which appears to be very useful for teaching purposes,
14436 as the student can keep a copy of the produced output to keep all that they
14437 did during the course. The package comes with a vignette describing how to
14438 write HTML reports for statistical analysis. Finally, a driver for Sweave
14439 parses HTML flat files containing R code and to automatically write
14440 the corresponding outputs (tables and graphs).")
14441 (license license:gpl2+)))
14442
14443 (define-public r-rjava
14444 (package
14445 (name "r-rjava")
14446 (version "0.9-13")
14447 (source
14448 (origin
14449 (method url-fetch)
14450 (uri (cran-uri "rJava" version))
14451 (sha256
14452 (base32
14453 "1x3mihyqzr61j52rwaqciw43mkjzmhib4s6qf57v6xj40ksqh5jv"))))
14454 (properties `((upstream-name . "rJava")))
14455 (build-system r-build-system)
14456 (arguments
14457 `(#:modules ((guix build utils)
14458 (guix build r-build-system)
14459 (ice-9 match))
14460 #:phases
14461 (modify-phases %standard-phases
14462 (add-after 'unpack 'set-JAVA_HOME
14463 (lambda* (#:key inputs #:allow-other-keys)
14464 (let ((jdk (assoc-ref inputs "jdk")))
14465 (setenv "JAVA_HOME" jdk)
14466 (setenv "JAVA" (which "java"))
14467 (setenv "JAR" (which "jar"))
14468 (setenv "JAVAC" (which "javac"))
14469 (setenv "JAVAH" (which "javah"))
14470 (setenv "JAVA_CPPFLAGS"
14471 (string-append "-I" jdk "/include "
14472 "-I" jdk "/include/linux"))
14473 (match (find-files (string-append jdk "/jre/lib/") "libjvm.so")
14474 ((lib) (setenv "JAVA_LIBS" lib))
14475 (_ (error "Could not find libjvm.so"))))
14476 #t)))))
14477 (inputs
14478 `(("icu4c" ,icu4c)
14479 ("jdk" ,icedtea-8 "jdk")
14480 ("pcre" ,pcre)
14481 ("zlib" ,zlib)))
14482 (home-page "https://www.rforge.net/rJava/")
14483 (synopsis "Low-Level R to Java interface")
14484 (description
14485 "This package provides a low-level interface to the Java VM very much
14486 like .C/.Call and friends. It allows the creation of objects, calling methods
14487 and accessing fields.")
14488 (license license:gpl2)))
14489
14490 (define-public r-svmisc
14491 (package
14492 (name "r-svmisc")
14493 (version "1.1.0")
14494 (source
14495 (origin
14496 (method url-fetch)
14497 (uri (cran-uri "svMisc" version))
14498 (sha256
14499 (base32
14500 "01r2a73wx2sh1njky961fxabx5wgddqqjqba6vjg0f3h8r3abmn2"))))
14501 (properties `((upstream-name . "svMisc")))
14502 (build-system r-build-system)
14503 (home-page "https://github.com/SciViews/svMisc")
14504 (synopsis "Miscellaneous functions for SciViews")
14505 (description
14506 "This package provides miscellaneous functions for SciViews or general
14507 use, including tools to manage a temporary environment attached to the search
14508 path for temporary variables you do not want to @code{save()} or
14509 @code{load()}; test the current platform; showing progress bars, etc.")
14510 (license license:gpl2)))
14511
14512 (define-public r-xyz
14513 (package
14514 (name "r-xyz")
14515 (version "0.2")
14516 (source
14517 (origin
14518 (method url-fetch)
14519 (uri (cran-uri "xyz" version))
14520 (sha256
14521 (base32
14522 "13w4sb4pvgciwr8wsz785dafj2k2kpx7znz46r5d32wx88vkycp4"))))
14523 (build-system r-build-system)
14524 (propagated-inputs
14525 `(("r-rcpp" ,r-rcpp)))
14526 (home-page "https://cran.r-project.org/web/packages/xyz/")
14527 (synopsis "Algorithm for fast interaction search in high-dimensional data")
14528 (description
14529 "High dimensional interaction search by brute force requires a quadratic
14530 computational cost in the number of variables. The xyz algorithm provably
14531 finds strong interactions in almost linear time. For details of the algorithm
14532 see: G. Thanei, N. Meinshausen and R. Shah (2016). The xyz algorithm for fast
14533 interaction search in high-dimensional data.")
14534 ;; Any version of the GPL.
14535 (license license:gpl2+)))
14536
14537 (define-public r-rttf2pt1
14538 (package
14539 (name "r-rttf2pt1")
14540 (version "1.3.8")
14541 (source
14542 (origin
14543 (method url-fetch)
14544 (uri (cran-uri "Rttf2pt1" version))
14545 (sha256
14546 (base32
14547 "0b3f2zkmbyshn19cnaaf042d0zwf43l9jnkqizfhxxwb93a4c1jn"))))
14548 (properties `((upstream-name . "Rttf2pt1")))
14549 (build-system r-build-system)
14550 (home-page "https://github.com/wch/Rttf2pt1")
14551 (synopsis "Font conversion utility")
14552 (description
14553 "This package contains the program @code{ttf2pt1}, for use with the
14554 @code{extrafont} package.")
14555 ;; Most of the files are covered under the Expat license. Some files are
14556 ;; covered under BSD-3. Deviations for individual files are recorded in
14557 ;; the LICENSE file.
14558 (license (list license:bsd-3 license:expat
14559 (license:non-copyleft "file://LICENSE")))))
14560
14561 (define-public r-extrafontdb
14562 (package
14563 (name "r-extrafontdb")
14564 (version "1.0")
14565 (source
14566 (origin
14567 (method url-fetch)
14568 (uri (cran-uri "extrafontdb" version))
14569 (sha256
14570 (base32
14571 "115n42hfvv5h4nn4cfkfmkmn968py4lpy8zd0d6w5yylwpzbm8gs"))))
14572 (build-system r-build-system)
14573 (home-page "https://github.com/wch/extrafontdb")
14574 (synopsis "Database for the extrafont package")
14575 (description
14576 "This package holds the database for the @code{extrafont} package.")
14577 (license license:gpl2)))
14578
14579 (define-public r-extrafont
14580 (package
14581 (name "r-extrafont")
14582 (version "0.17")
14583 (source
14584 (origin
14585 (method url-fetch)
14586 (uri (cran-uri "extrafont" version))
14587 (sha256
14588 (base32
14589 "0b9k2n9sk23bh45hjgnkxpjyvpdrz1hx7kmxvmb4nhlhm1wpsv9g"))))
14590 (build-system r-build-system)
14591 (propagated-inputs
14592 `(("r-extrafontdb" ,r-extrafontdb)
14593 ("r-rttf2pt1" ,r-rttf2pt1)))
14594 (home-page "https://github.com/wch/extrafont")
14595 (synopsis "Tools for using fonts in R")
14596 (description
14597 "The extrafont package makes it easier to use fonts other than the basic
14598 PostScript fonts that R uses. Fonts that are imported into extrafont can be
14599 used with PDF or PostScript output files. There are two hurdles for using
14600 fonts in PDF (or Postscript) output files:
14601
14602 @enumerate
14603 @item Making R aware of the font and the dimensions of the characters.
14604 @item Embedding the fonts in the PDF file so that the PDF can be displayed
14605 properly on a device that doesn't have the font. This is usually needed if
14606 you want to print the PDF file or share it with others.
14607 @end enumerate
14608
14609 The extrafont package makes both of these things easier.")
14610 (license license:gpl2)))
14611
14612 (define-public r-xkcd
14613 (package
14614 (name "r-xkcd")
14615 (version "0.0.6")
14616 (source
14617 (origin
14618 (method url-fetch)
14619 (uri (cran-uri "xkcd" version))
14620 (sha256
14621 (base32
14622 "1z2y0ihn68ppay7xkglhw7djki5654g6z4bbpyy41if57z9q554f"))))
14623 (build-system r-build-system)
14624 (propagated-inputs
14625 `(("r-extrafont" ,r-extrafont)
14626 ("r-ggplot2" ,r-ggplot2)
14627 ("r-hmisc" ,r-hmisc)))
14628 (home-page "https://cran.r-project.org/web/packages/xkcd/")
14629 (synopsis "Plot ggplot2 graphics in the XKCD style")
14630 (description
14631 "This package provides the means to plot ggplot2 graphs in the style of
14632 the XKCD web comic.")
14633 (license license:gpl3)))
14634
14635 (define-public r-msigdbr
14636 (package
14637 (name "r-msigdbr")
14638 (version "7.1.1")
14639 (source
14640 (origin
14641 (method url-fetch)
14642 (uri (cran-uri "msigdbr" version))
14643 (sha256
14644 (base32
14645 "0jvi49qa7616s58p0rx66pcw7h12rc8kgcg9225jk7pc3934hnzh"))))
14646 (build-system r-build-system)
14647 (propagated-inputs
14648 `(("r-dplyr" ,r-dplyr)
14649 ("r-magrittr" ,r-magrittr)
14650 ("r-rlang" ,r-rlang)
14651 ("r-tibble" ,r-tibble)))
14652 (native-inputs
14653 `(("r-knitr" ,r-knitr)))
14654 (home-page "https://github.com/igordot/msigdbr")
14655 (synopsis "MSigDB gene sets for multiple organisms")
14656 (description
14657 "This package provides the @dfn{Molecular Signatures Database} (MSigDB)
14658 gene sets typically used with the @dfn{Gene Set Enrichment Analysis} (GSEA)
14659 software in a standard R data frame with key-value pairs. Included are the
14660 original human gene symbols and Entrez IDs as well as the equivalents for
14661 various frequently studied model organisms such as mouse, rat, pig, fly, and
14662 yeast.")
14663 ;; The package is covered under the Expat license, but the upstream MSigDB
14664 ;; files are made available under the Creative Commons Attribution 4.0
14665 ;; International license.
14666 (license (list license:expat license:cc-by4.0))))
14667
14668 (define-public r-gridgraphics
14669 (package
14670 (name "r-gridgraphics")
14671 (version "0.5-0")
14672 (source
14673 (origin
14674 (method url-fetch)
14675 (uri (cran-uri "gridGraphics" version))
14676 (sha256
14677 (base32
14678 "0rlyc3xk8kfrfzbfd8n4javq3yxqd7lsfmi4q5n6s61srnrl6c1r"))))
14679 (properties `((upstream-name . "gridGraphics")))
14680 (build-system r-build-system)
14681 (home-page "https://github.com/pmur002/gridgraphics")
14682 (synopsis "Redraw base graphics using @code{grid} graphics")
14683 (description
14684 "This package provides functions to convert a page of plots drawn with
14685 the @code{graphics} package into identical output drawn with the @code{grid}
14686 package. The result looks like the original @code{graphics}-based plot, but
14687 consists of @code{grid} grobs and viewports that can then be manipulated with
14688 @code{grid} functions (e.g., edit grobs and revisit viewports).")
14689 (license license:gpl2+)))
14690
14691 (define-public r-farver
14692 (package
14693 (name "r-farver")
14694 (version "2.0.3")
14695 (source
14696 (origin
14697 (method url-fetch)
14698 (uri (cran-uri "farver" version))
14699 (sha256
14700 (base32
14701 "1k75v07dsfkjra2gsgxg9s55cw3b46b1nh960kqphq7cg7gr058f"))))
14702 (build-system r-build-system)
14703 (home-page "https://github.com/thomasp85/farver")
14704 (synopsis "Vectorized color conversion and comparison")
14705 (description
14706 "The encoding of color can be handled in many different ways, using
14707 different color spaces. As different color spaces have different uses,
14708 efficient conversion between these representations are important. This
14709 package provides a set of functions that gives access to very fast color space
14710 conversion and comparisons implemented in C++, and offers 100-fold speed
14711 improvements over the @code{convertColor} function in the @code{grDevices}
14712 package.")
14713 (license license:expat)))
14714
14715 (define-public r-ggplotify
14716 (package
14717 (name "r-ggplotify")
14718 (version "0.0.5")
14719 (source
14720 (origin
14721 (method url-fetch)
14722 (uri (cran-uri "ggplotify" version))
14723 (sha256
14724 (base32
14725 "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3"))))
14726 (build-system r-build-system)
14727 (propagated-inputs
14728 `(("r-ggplot2" ,r-ggplot2)
14729 ("r-gridgraphics" ,r-gridgraphics)
14730 ("r-rvcheck" ,r-rvcheck)))
14731 (native-inputs
14732 `(("r-knitr" ,r-knitr)))
14733 (home-page "https://github.com/GuangchuangYu/ggplotify")
14734 (synopsis "Convert plots to @code{grob} or @code{ggplot} object")
14735 (description
14736 "This package provides tools to convert plot function calls (using
14737 expression or formula) to @code{grob} or @code{ggplot} objects that are
14738 compatible with the @code{grid} and @code{ggplot2} environment. With this
14739 package, we are able to e.g. use @code{cowplot} to align plots produced by
14740 @code{base} graphics, @code{grid}, @code{lattice}, @code{vcd} etc. by
14741 converting them to @code{ggplot} objects.")
14742 (license license:artistic2.0)))
14743
14744 (define-public r-triebeard
14745 (package
14746 (name "r-triebeard")
14747 (version "0.3.0")
14748 (source
14749 (origin
14750 (method url-fetch)
14751 (uri (cran-uri "triebeard" version))
14752 (sha256
14753 (base32
14754 "1hqyz57gph02c9fdc07lxz113bbklif3g18sw8jan6pakhhdc7dz"))))
14755 (build-system r-build-system)
14756 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
14757 (home-page "https://github.com/Ironholds/triebeard/")
14758 (synopsis "Radix trees in Rcpp")
14759 (description
14760 "Radix trees, or tries, are key-value data structures optimized for
14761 efficient lookups, similar in purpose to hash tables. This package provides
14762 an implementation of radix trees for use in R programming and in developing
14763 packages with Rcpp.")
14764 (license license:expat)))
14765
14766 (define-public r-tweenr
14767 (package
14768 (name "r-tweenr")
14769 (version "1.0.1")
14770 (source
14771 (origin
14772 (method url-fetch)
14773 (uri (cran-uri "tweenr" version))
14774 (sha256
14775 (base32
14776 "0sq90pbln6lkc2q3zflhkxxwpqdw5dd7igrxhdnlynkdrmi83mpg"))))
14777 (build-system r-build-system)
14778 (propagated-inputs
14779 `(("r-farver" ,r-farver)
14780 ("r-magrittr" ,r-magrittr)
14781 ("r-rcpp" ,r-rcpp)
14782 ("r-rlang" ,r-rlang)))
14783 (home-page "https://github.com/thomasp85/tweenr")
14784 (synopsis "Interpolate data for smooth animations")
14785 (description
14786 "In order to create smooth animation between states of data, tweening is
14787 necessary. This package provides a range of functions for creating tweened
14788 data that can be used as basis for animation. Furthermore it adds a number of
14789 vectorized interpolaters for common R data types such as numeric, date and
14790 color.")
14791 (license license:expat)))
14792
14793 (define-public r-polyclip
14794 (package
14795 (name "r-polyclip")
14796 (version "1.10-0")
14797 (source
14798 (origin
14799 (method url-fetch)
14800 (uri (cran-uri "polyclip" version))
14801 (sha256
14802 (base32
14803 "0jyk4maqiblvj095jd59dr76kbniyli3v3xvy0a72ljszq6vrnkl"))))
14804 (build-system r-build-system)
14805 (native-inputs `(("pkg-config" ,pkg-config)))
14806 (home-page "http://www.angusj.com/delphi/clipper.php")
14807 (synopsis "Polygon clipping")
14808 (description
14809 "This package provides an R port of the library Clipper. It performs
14810 polygon clipping operations (intersection, union, set minus, set difference)
14811 for polygonal regions of arbitrary complexity, including holes. It computes
14812 offset polygons (spatial buffer zones, morphological dilations, Minkowski
14813 dilations) for polygonal regions and polygonal lines. It computes the
14814 Minkowski Sum of general polygons. There is a function for removing
14815 self-intersections from polygon data.")
14816 (license license:boost1.0)))
14817
14818 (define-public r-urltools
14819 (package
14820 (name "r-urltools")
14821 (version "1.7.3")
14822 (source
14823 (origin
14824 (method url-fetch)
14825 (uri (cran-uri "urltools" version))
14826 (sha256
14827 (base32
14828 "04x3my655dd287cbsszbnf75q0swmjlxxrblcsay7a8n3df3a830"))))
14829 (build-system r-build-system)
14830 (propagated-inputs
14831 `(("r-rcpp" ,r-rcpp)
14832 ("r-triebeard" ,r-triebeard)))
14833 (home-page "https://github.com/Ironholds/urltools/")
14834 (synopsis "Vectorized tools for URL handling and parsing")
14835 (description
14836 "This package provides a toolkit for all URL-handling needs, including
14837 encoding and decoding, parsing, parameter extraction and modification. All
14838 functions are designed to be both fast and entirely vectorized. It is
14839 intended to be useful for people dealing with web-related datasets, such as
14840 server-side logs, although may be useful for other situations involving large
14841 sets of URLs.")
14842 (license license:expat)))
14843
14844 (define-public r-ggforce
14845 (package
14846 (name "r-ggforce")
14847 (version "0.3.2")
14848 (source
14849 (origin
14850 (method url-fetch)
14851 (uri (cran-uri "ggforce" version))
14852 (sha256
14853 (base32
14854 "1lplxyq5bgx90dgaimhynpcywag1gp6vlsy7q52ay1nfc35qmkjc"))))
14855 (build-system r-build-system)
14856 (propagated-inputs
14857 `(("r-ggplot2" ,r-ggplot2)
14858 ("r-gtable" ,r-gtable)
14859 ("r-mass" ,r-mass)
14860 ("r-polyclip" ,r-polyclip)
14861 ("r-rcpp" ,r-rcpp)
14862 ("r-rcppeigen" ,r-rcppeigen)
14863 ("r-rlang" ,r-rlang)
14864 ("r-scales" ,r-scales)
14865 ("r-tidyselect" ,r-tidyselect)
14866 ("r-tweenr" ,r-tweenr)
14867 ("r-withr" ,r-withr)))
14868 (home-page "https://ggforce.data-imaginist.com")
14869 (synopsis "Accelerating ggplot2")
14870 (description
14871 "The aim of the ggplot2 package is to aid in visual data investigations.
14872 This focus has led to a lack of facilities for composing specialized plots.
14873 Thi package aims to be a collection of mainly new statistics and geometries
14874 that fills this gap.")
14875 (license license:expat)))
14876
14877 (define-public r-europepmc
14878 (package
14879 (name "r-europepmc")
14880 (version "0.4")
14881 (source
14882 (origin
14883 (method url-fetch)
14884 (uri (cran-uri "europepmc" version))
14885 (sha256
14886 (base32
14887 "174nnyc2mbgqxb5kgqabn1vf71c2mps7ig2bclq4is0f7nb64pym"))))
14888 (build-system r-build-system)
14889 (propagated-inputs
14890 `(("r-dplyr" ,r-dplyr)
14891 ("r-httr" ,r-httr)
14892 ("r-jsonlite" ,r-jsonlite)
14893 ("r-plyr" ,r-plyr)
14894 ("r-progress" ,r-progress)
14895 ("r-purrr" ,r-purrr)
14896 ("r-rlang" ,r-rlang)
14897 ("r-tibble" ,r-tibble)
14898 ("r-tidyr" ,r-tidyr)
14899 ("r-urltools" ,r-urltools)
14900 ("r-xml2" ,r-xml2)))
14901 (native-inputs
14902 `(("r-knitr" ,r-knitr)))
14903 (home-page "https://github.com/ropensci/europepmc/")
14904 (synopsis "R Interface to the Europe PubMed Central RESTful Web Service")
14905 (description
14906 "This package provides an R Client for the
14907 @url{https://europepmc.org/RestfulWebService,Europe PubMed Central RESTful Web
14908 Service}. It gives access to both metadata on life science literature and
14909 open access full texts. Europe PMC indexes all PubMed content and other
14910 literature sources including Agricola, a bibliographic database of citations
14911 to the agricultural literature, or Biological Patents. In addition to
14912 bibliographic metadata, the client allows users to fetch citations and
14913 reference lists. Links between life-science literature and other EBI
14914 databases, including ENA, PDB or ChEMBL are also accessible.")
14915 (license license:gpl3)))
14916
14917 (define-public r-ggraph
14918 (package
14919 (name "r-ggraph")
14920 (version "2.0.3")
14921 (source
14922 (origin
14923 (method url-fetch)
14924 (uri (cran-uri "ggraph" version))
14925 (sha256
14926 (base32
14927 "1pz06j0za4p6dc3fqjzcw8bpym70bmnfcvpv1q34r74rnwzjdyvq"))))
14928 (build-system r-build-system)
14929 (propagated-inputs
14930 `(("r-digest" ,r-digest)
14931 ("r-dplyr" ,r-dplyr)
14932 ("r-ggforce" ,r-ggforce)
14933 ("r-ggplot2" ,r-ggplot2)
14934 ("r-ggrepel" ,r-ggrepel)
14935 ("r-graphlayouts" ,r-graphlayouts)
14936 ("r-gtable" ,r-gtable)
14937 ("r-igraph" ,r-igraph)
14938 ("r-mass" ,r-mass)
14939 ("r-rcpp" ,r-rcpp)
14940 ("r-rlang" ,r-rlang)
14941 ("r-scales" ,r-scales)
14942 ("r-tidygraph" ,r-tidygraph)
14943 ("r-viridis" ,r-viridis)))
14944 (native-inputs
14945 `(("r-knitr" ,r-knitr)))
14946 (home-page "https://cran.r-project.org/web/packages/ggraph/")
14947 (synopsis "Implementation of grammar of graphics for graphs and networks")
14948 (description
14949 "The grammar of graphics as implemented in ggplot2 is a poor fit for
14950 graph and network visualizations due to its reliance on tabular data input.
14951 The ggraph package is an extension of the ggplot2 API tailored to graph
14952 visualizations and provides the same flexible approach to building up plots
14953 layer by layer.")
14954 (license license:gpl3)))
14955
14956 (define-public r-varselrf
14957 (package
14958 (name "r-varselrf")
14959 (version "0.7-8")
14960 (source
14961 (origin
14962 (method url-fetch)
14963 (uri (cran-uri "varSelRF" version))
14964 (sha256
14965 (base32
14966 "0h49rl1j13yfh97rsfsyh9s2c4wajny4rzms2qw77d0cavxqg53i"))))
14967 (properties `((upstream-name . "varSelRF")))
14968 (build-system r-build-system)
14969 (propagated-inputs
14970 `(("r-randomforest" ,r-randomforest)))
14971 (home-page "https://www.ligarto.org/rdiaz/software/software")
14972 (synopsis "Variable selection using random forests")
14973 (description
14974 "This package provides tools for the variable selection from random
14975 forests using both backwards variable elimination (for the selection of small
14976 sets of non-redundant variables) and selection based on the importance
14977 spectrum (somewhat similar to scree plots; for the selection of large,
14978 potentially highly-correlated variables). The main applications are in
14979 high-dimensional data (e.g., microarray data, and other genomics and
14980 proteomics applications).")
14981 (license license:gpl2+)))
14982
14983 (define-public r-pamr
14984 (package
14985 (name "r-pamr")
14986 (version "1.56.1")
14987 (source
14988 (origin
14989 (method url-fetch)
14990 (uri (cran-uri "pamr" version))
14991 (sha256
14992 (base32
14993 "0ycpgkk23y3zzkb42n2skcyl35ps1n7jmyzfj7pbxr3f6gr2grfh"))))
14994 (build-system r-build-system)
14995 (propagated-inputs
14996 `(("r-cluster" ,r-cluster)
14997 ("r-survival" ,r-survival)))
14998 (native-inputs `(("gfortran" ,gfortran)))
14999 (home-page "https://cran.r-project.org/web/packages/pamr/")
15000 (synopsis "Prediction Analysis for Microarrays")
15001 (description
15002 "This package provides some functions for sample classification in
15003 microarrays.")
15004 (license license:gpl2)))
15005
15006 (define-public r-rda
15007 (package
15008 (name "r-rda")
15009 (version "1.0.2-2.1")
15010 (source
15011 (origin
15012 (method url-fetch)
15013 (uri (cran-uri "rda" version))
15014 (sha256
15015 (base32
15016 "1y4fawslr3i6crjaxhsdb47kfsqkyszdx6avq3r5far5a4pvc639"))))
15017 (build-system r-build-system)
15018 (home-page "https://cran.r-project.org/web/packages/rda/")
15019 (synopsis "Shrunken centroids regularized discriminant analysis")
15020 (description
15021 "This package provides tools for shrunken centroids regularized
15022 discriminant analysis for the purpose of classifying high dimensional data.")
15023 (license license:gpl2+)))
15024
15025 (define-public r-ggvis
15026 (package
15027 (name "r-ggvis")
15028 (version "0.4.5")
15029 (source
15030 (origin
15031 (method url-fetch)
15032 (uri (cran-uri "ggvis" version))
15033 (sha256
15034 (base32
15035 "091i9f17912j8qcyxppjgwzjnyqj7769ixs9d2gjg6f2clskqdw2"))))
15036 (build-system r-build-system)
15037 (propagated-inputs
15038 `(("r-assertthat" ,r-assertthat)
15039 ("r-dplyr" ,r-dplyr)
15040 ("r-htmltools" ,r-htmltools)
15041 ("r-jsonlite" ,r-jsonlite)
15042 ("r-lazyeval" ,r-lazyeval)
15043 ("r-magrittr" ,r-magrittr)
15044 ("r-shiny" ,r-shiny)))
15045 (home-page "https://ggvis.rstudio.com/")
15046 (synopsis "Interactive grammar of graphics")
15047 (description
15048 "This package is a data visualization package for R providing an
15049 implementation of an interactive grammar of graphics, taking the best parts of
15050 ggplot2, combining them with the reactive framework of Shiny and drawing web
15051 graphics using Vega.")
15052 (license license:gpl2)))
15053
15054 (define-public r-gbm
15055 (package
15056 (name "r-gbm")
15057 (version "2.1.8")
15058 (source
15059 (origin
15060 (method url-fetch)
15061 (uri (cran-uri "gbm" version))
15062 (sha256
15063 (base32
15064 "1h9f4ww9yc3nsvghgr2q7jjrlz29ibabxjbax1sk5wmqh2wy6pbx"))))
15065 (build-system r-build-system)
15066 (propagated-inputs
15067 `(("r-lattice" ,r-lattice)
15068 ("r-survival" ,r-survival)))
15069 (native-inputs
15070 `(("r-knitr" ,r-knitr)))
15071 (home-page "https://github.com/gbm-developers/gbm")
15072 (synopsis "Generalized boosted regression models")
15073 (description
15074 "This package is an implementation of extensions to Freund and Schapire's
15075 AdaBoost algorithm and Friedman's gradient boosting machine. It includes
15076 regression methods for least squares, absolute loss, t-distribution loss,
15077 quantile regression, logistic, multinomial logistic, Poisson, Cox proportional
15078 hazards partial likelihood, AdaBoost exponential loss, Huberized hinge loss,
15079 and Learning to Rank measures (LambdaMart).")
15080 (license license:gpl2+)))
15081
15082 (define-public r-threejs
15083 (package
15084 (name "r-threejs")
15085 (version "0.3.3")
15086 (source
15087 (origin
15088 (method url-fetch)
15089 (uri (cran-uri "threejs" version))
15090 (sha256
15091 (base32
15092 "1711h351nzxfkbbdwvfzyhciyvi9c6wx3jq1g97lzcqgnb45kivn"))))
15093 (build-system r-build-system)
15094 (arguments
15095 `(#:modules ((guix build utils)
15096 (guix build r-build-system)
15097 (srfi srfi-1)
15098 (ice-9 popen))
15099 #:phases
15100 (modify-phases %standard-phases
15101 (add-after 'unpack 'process-javascript
15102 (lambda* (#:key inputs #:allow-other-keys)
15103 (with-directory-excursion "inst"
15104 (call-with-values
15105 (lambda ()
15106 (unzip2
15107 `((,(assoc-ref inputs "js-jquery")
15108 "htmlwidgets/lib/jquery/jquery.min.js")
15109 (,(assoc-ref inputs "js-threejs-111")
15110 "htmlwidgets/lib/threejs-111/three.min.js"))))
15111 (lambda (sources targets)
15112 (for-each (lambda (source target)
15113 (format #t "Processing ~a --> ~a~%"
15114 source target)
15115 (delete-file target)
15116 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
15117 (call-with-output-file target
15118 (lambda (port)
15119 (dump-port minified port)))))
15120 sources targets))))
15121 #t)))))
15122 (propagated-inputs
15123 `(("r-base64enc" ,r-base64enc)
15124 ("r-crosstalk" ,r-crosstalk)
15125 ("r-htmlwidgets" ,r-htmlwidgets)
15126 ("r-igraph" ,r-igraph)))
15127 (native-inputs
15128 `(("uglify-js" ,uglify-js)
15129 ("js-jquery"
15130 ,(origin
15131 (method url-fetch)
15132 (uri "https://code.jquery.com/jquery-1.12.4.js")
15133 (sha256
15134 (base32
15135 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
15136 ("js-threejs-111"
15137 ,(origin
15138 (method url-fetch)
15139 (uri "https://raw.githubusercontent.com/mrdoob/three.js/r111/build/three.js")
15140 (sha256
15141 (base32
15142 "1cxdkw3plmlw1xvhbx5dm39gqczgzxip2dm887v6whhsxqxl9cky"))))))
15143 (home-page "https://bwlewis.github.io/rthreejs")
15144 (synopsis "Interactive 3D scatter plots, networks and globes")
15145 (description
15146 "Create interactive 3D scatter plots, network plots, and globes in R
15147 using the three.js visualization library.")
15148 (license license:expat)))
15149
15150 (define-public r-mlbench
15151 (package
15152 (name "r-mlbench")
15153 (version "2.1-1")
15154 (source
15155 (origin
15156 (method url-fetch)
15157 (uri (cran-uri "mlbench" version))
15158 (sha256
15159 (base32
15160 "1rp035qxfgh5ail92zjh9jh57dj0b8babw3wsg29v8ricpal30bl"))))
15161 (build-system r-build-system)
15162 (home-page "https://cran.r-project.org/web/packages/mlbench/")
15163 (synopsis "Machine learning benchmark problems")
15164 (description
15165 "This package provides a collection of artificial and real-world machine
15166 learning benchmark problems, including, e.g., several data sets from the UCI
15167 repository.")
15168 (license license:gpl2)))
15169
15170 (define-public r-mpm
15171 (package
15172 (name "r-mpm")
15173 (version "1.0-22")
15174 (source
15175 (origin
15176 (method url-fetch)
15177 (uri (cran-uri "mpm" version))
15178 (sha256
15179 (base32
15180 "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk"))))
15181 (build-system r-build-system)
15182 (propagated-inputs
15183 `(("r-kernsmooth" ,r-kernsmooth)
15184 ("r-mass" ,r-mass)))
15185 (home-page "http://mpm.r-forge.r-project.org")
15186 (synopsis "Multivariate projection methods")
15187 (description
15188 "This is a package for exploratory graphical analysis of multivariate
15189 data, specifically gene expression data with different projection methods:
15190 principal component analysis, correspondence analysis, spectral map
15191 analysis.")
15192 (license license:gpl2+)))
15193
15194 (define-public r-png
15195 (package
15196 (name "r-png")
15197 (version "0.1-7")
15198 (source (origin
15199 (method url-fetch)
15200 (uri (cran-uri "png" version))
15201 (sha256
15202 (base32
15203 "0g2mcp55lvvpx4kd3mn225mpbxqcq73wy5qx8b4lyf04iybgysg2"))))
15204 (build-system r-build-system)
15205 (inputs
15206 `(("libpng" ,libpng)
15207 ("zlib" ,zlib)))
15208 (home-page "https://www.rforge.net/png/")
15209 (synopsis "Read and write PNG images")
15210 (description
15211 "This package provides an easy and simple way to read, write and display
15212 bitmap images stored in the PNG format. It can read and write both files and
15213 in-memory raw vectors.")
15214 ;; Any of these GPL versions.
15215 (license (list license:gpl2 license:gpl3))))
15216
15217 (define-public r-ggcorrplot
15218 (package
15219 (name "r-ggcorrplot")
15220 (version "0.1.3")
15221 (source
15222 (origin
15223 (method url-fetch)
15224 (uri (cran-uri "ggcorrplot" version))
15225 (sha256
15226 (base32
15227 "0hi9lz121ya1l2lbm7rqlxg6fs6bvxck396dngnidrhl5fvqb41b"))))
15228 (build-system r-build-system)
15229 (propagated-inputs
15230 `(("r-ggplot2" ,r-ggplot2)
15231 ("r-reshape2" ,r-reshape2)))
15232 (home-page "http://www.sthda.com/english/wiki/ggcorrplot")
15233 (synopsis "Visualization of a correlation matrix using ggplot2")
15234 (description
15235 "The ggcorrplot package can be used to visualize easily a correlation
15236 matrix using ggplot2. It provides a solution for reordering the correlation
15237 matrix and displays the significance level on the plot. It also includes a
15238 function for computing a matrix of correlation p-values.")
15239 (license license:gpl2)))
15240
15241 ;; This package includes minified JavaScript files. When upgrading please
15242 ;; check that there are no new minified JavaScript files.
15243 (define-public r-flexdashboard
15244 (package
15245 (name "r-flexdashboard")
15246 (version "0.5.2")
15247 (source
15248 (origin
15249 (method url-fetch)
15250 (uri (cran-uri "flexdashboard" version))
15251 (sha256
15252 (base32
15253 "1bh759llp15fxrx2rwvxd8p3w84vjmkid32ism7zg49a127fjib4"))
15254 (modules '((guix build utils)))
15255 (snippet
15256 '(begin
15257 ;; Delete bundled minified JavaScript files
15258 (delete-file "inst/htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
15259 (delete-file "inst/www/sly/sly.min.js")
15260 (delete-file "inst/www/stickytableheaders/jquery.stickytableheaders.min.js")
15261 (delete-file "inst/www/prism/prism.js")
15262 #t))))
15263 (build-system r-build-system)
15264 (arguments
15265 `(#:modules ((guix build utils)
15266 (guix build r-build-system)
15267 (srfi srfi-1)
15268 (srfi srfi-26)
15269 (ice-9 popen)
15270 (ice-9 textual-ports))
15271 #:phases
15272 (modify-phases %standard-phases
15273 (add-after 'unpack 'process-javascript
15274 (lambda* (#:key inputs #:allow-other-keys)
15275 (with-directory-excursion "inst"
15276 ;; Concatenate all components of prism.js
15277 (let ((contents (string-join
15278 (map (lambda (name)
15279 (call-with-input-file
15280 (assoc-ref inputs name)
15281 get-string-all))
15282 (list "js-prism"
15283 "js-prism-r"
15284 "js-prism-line-numbers"))
15285 "\n")))
15286 (call-with-output-file "prism-src.js"
15287 (cut display contents <>)))
15288 (call-with-values
15289 (lambda ()
15290 (unzip2
15291 `(("www/stickytableheaders/jquery.stickytableheaders.js"
15292 "www/stickytableheaders/jquery.stickytableheaders.min.js")
15293 ("www/sly/sly.js"
15294 "www/sly/sly.min.js")
15295 ("prism-src.js"
15296 "www/prism/prism.js")
15297 (,(assoc-ref inputs "js-raphael")
15298 "htmlwidgets/lib/raphael/raphael-2.1.4.min.js")
15299 (,(assoc-ref inputs "js-featherlight")
15300 "www/featherlight/featherlight.min.js"))))
15301 (lambda (sources targets)
15302 (for-each (lambda (source target)
15303 (format #t "Processing ~a --> ~a~%"
15304 source target)
15305 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
15306 (call-with-output-file target
15307 (lambda (port)
15308 (dump-port minified port)))))
15309 sources targets))))
15310 #t)))))
15311 (propagated-inputs
15312 `(("r-htmltools" ,r-htmltools)
15313 ("r-htmlwidgets" ,r-htmlwidgets)
15314 ("r-jsonlite" ,r-jsonlite)
15315 ("r-knitr" ,r-knitr)
15316 ("r-rmarkdown" ,r-rmarkdown)
15317 ("r-shiny" ,r-shiny)))
15318 (native-inputs
15319 `(("uglify-js" ,uglify-js)
15320 ("js-raphael"
15321 ,(origin
15322 (method url-fetch)
15323 (uri "https://raw.githubusercontent.com/DmitryBaranovskiy/raphael/v2.1.4/raphael.js")
15324 (sha256
15325 (base32
15326 "1h4c4akrgcj7wra9j1z1rv2406j0yf68y9c0wg8v7w9ibw2iwf1x"))))
15327 ("js-prism"
15328 ,(origin
15329 (method url-fetch)
15330 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/prism.js")
15331 (sha256
15332 (base32
15333 "0gqa9irbp9k8p5r3d98cszajzhjnssnl43nrsc5aiy7ki52z500c"))))
15334 ("js-prism-r"
15335 ,(origin
15336 (method url-fetch)
15337 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/components/prism-r.js")
15338 (sha256
15339 (base32
15340 "1x31glci7wdgr2305njy0bm2lncb0jyn0j1s2g72rqi29xid9aki"))))
15341 ("js-prism-line-numbers"
15342 ,(origin
15343 (method url-fetch)
15344 (uri "https://raw.githubusercontent.com/PrismJS/prism/v1.16.0/plugins/line-numbers/prism-line-numbers.js")
15345 (sha256
15346 (base32
15347 "1543wgf3iynrilyb27jq8px3h5gvfz5xmdib5ik2ki400c1sl991"))))
15348 ("js-featherlight"
15349 ,(origin
15350 (method url-fetch)
15351 (uri "https://raw.githubusercontent.com/noelboss/featherlight/1.3.4/src/featherlight.js")
15352 (sha256
15353 (base32
15354 "14kkhwzvp8rxq2mrck5i0xcm8v5rqwqhwnmncbng8h4qq42zx3sb"))))))
15355 (home-page "https://rmarkdown.rstudio.com/flexdashboard")
15356 (synopsis "R Markdown format for flexible dashboards")
15357 (description
15358 "This package provides an R Markdown format for converting an R Markdown
15359 document to a grid-oriented dashboard. The dashboard flexibly adapts the size
15360 of its components to the containing web page.")
15361 (license license:expat)))
15362
15363 (define-public r-preseqr
15364 (package
15365 (name "r-preseqr")
15366 (version "4.0.0")
15367 (source
15368 (origin
15369 (method url-fetch)
15370 (uri (cran-uri "preseqR" version))
15371 (sha256
15372 (base32
15373 "1g2rnnmi45649vpy6z45v5i3wxm54s138ajqrzwi3a5r7x3xnhq1"))))
15374 (properties `((upstream-name . "preseqR")))
15375 (build-system r-build-system)
15376 (propagated-inputs
15377 `(("r-polynom" ,r-polynom)))
15378 (home-page "https://cran.r-project.org/web/packages/preseqR/")
15379 (synopsis "Predicting species accumulation curves")
15380 (description
15381 "This package can be used to predict the r-species accumulation
15382 curve (r-SAC), which is the number of species represented at least r times as
15383 a function of the sampling effort. When r = 1, the curve is known as the
15384 species accumulation curve, or the library complexity curve in high-throughput
15385 genomic sequencing. The package includes both parametric and nonparametric
15386 methods, as described by Deng C, et al. (2018).")
15387 (license license:gpl3)))
15388
15389 (define-public r-mapplots
15390 (package
15391 (name "r-mapplots")
15392 (version "1.5.1")
15393 (source
15394 (origin
15395 (method url-fetch)
15396 (uri (cran-uri "mapplots" version))
15397 (sha256
15398 (base32
15399 "18s2y66f8vi8g2r8a25zbgp2xm079r8v8qxv0w71h8krycs6vs9p"))))
15400 (build-system r-build-system)
15401 (home-page "https://cran.r-project.org/web/packages/mapplots/")
15402 (synopsis "Data visualization on maps")
15403 (description
15404 "This package helps you create simple maps; add sub-plots like pie plots
15405 to a map or any other plot; format, plot and export gridded data. The package
15406 was developed for displaying fisheries data but most functions can be used for
15407 more generic data visualisation.")
15408 (license license:gpl2+)))
15409
15410 (define-public r-pmcmr
15411 (package
15412 (name "r-pmcmr")
15413 (version "4.3")
15414 (source
15415 (origin
15416 (method url-fetch)
15417 (uri (cran-uri "PMCMR" version))
15418 (sha256
15419 (base32
15420 "09bvdj2h1086r2cgy3myrhlylplxxlliv8nwx09c8kb1vn02i2ij"))))
15421 (properties `((upstream-name . "PMCMR")))
15422 (build-system r-build-system)
15423 (home-page "https://cran.r-project.org/web/packages/PMCMR/")
15424 (synopsis "Calculate pairwise multiple comparisons of mean rank sums")
15425 (description
15426 "This is a deprecated package for calculating pairwise multiple
15427 comparisons of mean rank sums. This package is superseded by the novel
15428 PMCMRplus package. The PMCMR package is no longer maintained, but kept for
15429 compatibility of dependent packages for some time.")
15430 (license license:gpl3+)))
15431
15432 (define-public r-downloader
15433 (package
15434 (name "r-downloader")
15435 (version "0.4")
15436 (source
15437 (origin
15438 (method url-fetch)
15439 (uri (cran-uri "downloader" version))
15440 (sha256
15441 (base32
15442 "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q"))))
15443 (build-system r-build-system)
15444 (propagated-inputs
15445 `(("r-digest" ,r-digest)))
15446 (home-page "https://github.com/wch/downloader")
15447 (synopsis "Download files over HTTP and HTTPS")
15448 (description
15449 "This package provides a wrapper for the @code{download.file} function,
15450 making it possible to download files over HTTPS across platforms. The
15451 @code{RCurl} package provides this functionality (and much more) but has
15452 external dependencies. This package has is implemented purely in R.")
15453 (license license:gpl2)))
15454
15455 (define-public r-rex
15456 (package
15457 (name "r-rex")
15458 (version "1.2.0")
15459 (source
15460 (origin
15461 (method url-fetch)
15462 (uri (cran-uri "rex" version))
15463 (sha256
15464 (base32
15465 "0m7bq8db3m5dhf01rw7xc7xy1ciq3m7dfgsl80p8cy4h8vqr3d06"))))
15466 (build-system r-build-system)
15467 (propagated-inputs
15468 `(("r-lazyeval" ,r-lazyeval)))
15469 (native-inputs
15470 `(("r-knitr" ,r-knitr)))
15471 (home-page "https://github.com/kevinushey/rex")
15472 (synopsis "Friendly regular expressions")
15473 (description
15474 "This package provides a friendly interface for the construction of
15475 regular expressions. Regular expressions are a very powerful feature, however
15476 they are often difficult to interpret. Rex allows you to build complex
15477 regular expressions from human readable expressions")
15478 (license license:expat)))
15479
15480 (define-public r-xmlparsedata
15481 (package
15482 (name "r-xmlparsedata")
15483 (version "1.0.3")
15484 (source
15485 (origin
15486 (method url-fetch)
15487 (uri (cran-uri "xmlparsedata" version))
15488 (sha256
15489 (base32
15490 "0gjr3l5z5dp276lchr2649as1rkj56d2mlvbr66yg393zzw50lsh"))))
15491 (properties `((upstream-name . "xmlparsedata")))
15492 (build-system r-build-system)
15493 (home-page "https://github.com/r-lib/xmlparsedata#readme")
15494 (synopsis "Parse data of @code{R} code as an @code{XML} tree")
15495 (description
15496 "This package provides tools to convert the output of
15497 @code{utils::getParseData()} to an @code{XML} tree, that one can search via
15498 @code{XPath}, and is easier to manipulate in general.")
15499 (license license:expat)))
15500
15501 (define-public r-cyclocomp
15502 (package
15503 (name "r-cyclocomp")
15504 (version "1.1.0")
15505 (source
15506 (origin
15507 (method url-fetch)
15508 (uri (cran-uri "cyclocomp" version))
15509 (sha256
15510 (base32
15511 "0gky3svk02wiajw7nfjh30684h3qxili4bvsab0m7b6cggw6bgyd"))))
15512 (properties `((upstream-name . "cyclocomp")))
15513 (build-system r-build-system)
15514 (propagated-inputs
15515 `(("r-callr" ,r-callr)
15516 ("r-crayon" ,r-crayon)
15517 ("r-desc" ,r-desc)
15518 ("r-remotes" ,r-remotes)
15519 ("r-withr" ,r-withr)))
15520 (home-page "https://github.com/MangoTheCat/cyclocomp")
15521 (synopsis "Cyclomatic complexity of R code")
15522 (description
15523 "Cyclomatic complexity is a software metric, used to indicate the
15524 complexity of a program. It is a quantitative measure of the number of
15525 linearly independent paths through a program's source code. This package
15526 provides tools to compute this metric.")
15527 (license license:expat)))
15528
15529 (define-public r-lintr
15530 (package
15531 (name "r-lintr")
15532 (version "2.0.1")
15533 (source
15534 (origin
15535 (method url-fetch)
15536 (uri (cran-uri "lintr" version))
15537 (sha256
15538 (base32
15539 "14yfh641afg6griaadbdciyr3k94fl55s055qwzghgk5gdsj61zy"))))
15540 (properties `((upstream-name . "lintr")))
15541 (build-system r-build-system)
15542 (propagated-inputs
15543 `(("r-codetools" ,r-codetools)
15544 ("r-crayon" ,r-crayon)
15545 ("r-cyclocomp" ,r-cyclocomp)
15546 ("r-digest" ,r-digest)
15547 ("r-httr" ,r-httr)
15548 ("r-jsonlite" ,r-jsonlite)
15549 ("r-knitr" ,r-knitr)
15550 ("r-rex" ,r-rex)
15551 ("r-rstudioapi" ,r-rstudioapi)
15552 ("r-testthat" ,r-testthat)
15553 ("r-xml2" ,r-xml2)
15554 ("r-xmlparsedata" ,r-xmlparsedata)))
15555 (home-page "https://github.com/jimhester/lintr")
15556 (synopsis "Linter for R code")
15557 (description "This package checks adherence to a given style, syntax
15558 errors and possible semantic issues. It supports on the fly checking of R
15559 code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
15560 (license license:expat)))
15561
15562 (define-public r-sctransform
15563 (package
15564 (name "r-sctransform")
15565 (version "0.2.1")
15566 (source
15567 (origin
15568 (method url-fetch)
15569 (uri (cran-uri "sctransform" version))
15570 (sha256
15571 (base32
15572 "07v3lzccsrkh1glfxd1q20r8f8gl9ls5az0s1dvxm4vcls0hlhyn"))))
15573 (build-system r-build-system)
15574 (propagated-inputs
15575 `(("r-future-apply" ,r-future-apply)
15576 ("r-ggplot2" ,r-ggplot2)
15577 ("r-gridextra" ,r-gridextra)
15578 ("r-mass" ,r-mass)
15579 ("r-matrix" ,r-matrix)
15580 ("r-rcpp" ,r-rcpp)
15581 ("r-rcppeigen" ,r-rcppeigen)
15582 ("r-reshape2" ,r-reshape2)))
15583 (home-page "https://github.com/ChristophH/sctransform")
15584 (synopsis "Variance stabilizing transformations for Single Cell UMI Data")
15585 (description
15586 "This package provides a normalization method for single-cell UMI count
15587 data using a variance stabilizing transformation. The transformation is based
15588 on a negative binomial regression model with regularized parameters. As part
15589 of the same regression framework, this package also provides functions for
15590 batch correction, and data correction.")
15591 (license license:gpl3)))
15592
15593 (define-public r-styler
15594 (package
15595 (name "r-styler")
15596 (version "1.3.2")
15597 (source
15598 (origin
15599 (method url-fetch)
15600 (uri (cran-uri "styler" version))
15601 (sha256
15602 (base32
15603 "1waglhsy2c53qjgd2qhlzda3z0lbzbwx9fkrfhac41y6h91mgkrz"))))
15604 (build-system r-build-system)
15605 (propagated-inputs
15606 `(("r-backports" ,r-backports)
15607 ("r-cli" ,r-cli)
15608 ("r-magrittr" ,r-magrittr)
15609 ("r-purrr" ,r-purrr)
15610 ("r-r-cache" ,r-r-cache)
15611 ("r-rematch2" ,r-rematch2)
15612 ("r-rlang" ,r-rlang)
15613 ("r-rprojroot" ,r-rprojroot)
15614 ("r-tibble" ,r-tibble)
15615 ("r-withr" ,r-withr)
15616 ("r-xfun" ,r-xfun)))
15617 (home-page "https://github.com/r-lib/styler")
15618 (synopsis "Non-invasive pretty printing of R code")
15619 (description
15620 "This is a package for pretty-printing R code without changing the user's
15621 formatting intent.")
15622 (license license:gpl3)))
15623
15624 (define-public r-scrime
15625 (package
15626 (name "r-scrime")
15627 (version "1.3.5")
15628 (source
15629 (origin
15630 (method url-fetch)
15631 (uri (cran-uri "scrime" version))
15632 (sha256
15633 (base32
15634 "0y2mh9fsffjf3i15bafpasa17z99c1s75r8g6h4hgcwfgpjx75sx"))))
15635 (build-system r-build-system)
15636 (home-page "https://cran.r-project.org/web/packages/scrime/")
15637 (synopsis "Analysis of high-dimensional categorical data such as SNP data")
15638 (description
15639 "This package provides tools for the analysis of high-dimensional data
15640 developed/implemented at the group \"Statistical Complexity Reduction In
15641 Molecular Epidemiology\" (SCRIME). The main focus is on SNP data, but most of
15642 the functions can also be applied to other types of categorical data.")
15643 (license license:gpl2)))
15644
15645 (define-public r-pbmcapply
15646 (package
15647 (name "r-pbmcapply")
15648 (version "1.5.0")
15649 (source
15650 (origin
15651 (method url-fetch)
15652 (uri (cran-uri "pbmcapply" version))
15653 (sha256
15654 (base32
15655 "0i58gcqpnbyvc448qfgm45b7rpbmrnagsvk1h1hsqchbbicfslnz"))))
15656 (build-system r-build-system)
15657 (home-page "https://github.com/kvnkuang/pbmcapply")
15658 (synopsis "Track the progress of apply procedures with a progress bar")
15659 (description
15660 "This light-weight package helps you track and visualize the progress of
15661 parallel versions of vectorized R functions of the @code{mc*apply} family.")
15662 (license license:expat)))
15663
15664 (define-public r-blme
15665 (package
15666 (name "r-blme")
15667 (version "1.0-4")
15668 (source
15669 (origin
15670 (method url-fetch)
15671 (uri (cran-uri "blme" version))
15672 (sha256
15673 (base32
15674 "1ca2b0248k0fj3lczn9shfjplz1sl4ay4v6djldizp2ch2vwdgy2"))))
15675 (build-system r-build-system)
15676 (propagated-inputs `(("r-lme4" ,r-lme4)))
15677 (home-page "https://github.com/vdorie/blme")
15678 (synopsis "Bayesian linear mixed-effects models")
15679 (description
15680 "This package provides tools for maximum a posteriori estimation for
15681 linear and generalized linear mixed-effects models in a Bayesian setting. It
15682 extends the lme4 package.")
15683 (license license:gpl2+)))
15684
15685 (define-public r-batchtools
15686 (package
15687 (name "r-batchtools")
15688 (version "0.9.13")
15689 (source
15690 (origin
15691 (method url-fetch)
15692 (uri (cran-uri "batchtools" version))
15693 (sha256
15694 (base32
15695 "02bwfinwgn5nl638997javig61jmr0ci0qybmprz13jnvmam1yns"))))
15696 (build-system r-build-system)
15697 (propagated-inputs
15698 `(("r-backports" ,r-backports)
15699 ("r-base64url" ,r-base64url)
15700 ("r-brew" ,r-brew)
15701 ("r-checkmate" ,r-checkmate)
15702 ("r-data-table" ,r-data-table)
15703 ("r-digest" ,r-digest)
15704 ("r-fs" ,r-fs)
15705 ("r-progress" ,r-progress)
15706 ("r-r6" ,r-r6)
15707 ("r-rappdirs" ,r-rappdirs)
15708 ("r-stringi" ,r-stringi)
15709 ("r-withr" ,r-withr)))
15710 (native-inputs
15711 `(("r-knitr" ,r-knitr)))
15712 (home-page "https://github.com/mllg/batchtools")
15713 (synopsis "Tools for computation on batch systems")
15714 (description
15715 "As a successor of the packages BatchJobs and BatchExperiments, this
15716 package provides a parallel implementation of the Map function for high
15717 performance computing systems managed by various schedulers. A multicore and
15718 socket mode allow the parallelization on a local machines, and multiple
15719 machines can be hooked up via SSH to create a makeshift cluster. Moreover,
15720 the package provides an abstraction mechanism to define large-scale computer
15721 experiments in a well-organized and reproducible way.")
15722 (license license:lgpl3)))
15723
15724 (define-public r-clue
15725 (package
15726 (name "r-clue")
15727 (version "0.3-57")
15728 (source
15729 (origin
15730 (method url-fetch)
15731 (uri (cran-uri "clue" version))
15732 (sha256
15733 (base32
15734 "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf"))))
15735 (build-system r-build-system)
15736 (propagated-inputs `(("r-cluster" ,r-cluster)))
15737 (home-page "https://cran.r-project.org/web/packages/clue/")
15738 (synopsis "Tools for analyzing cluster ensembles")
15739 (description "Cluster ensembles are collections of individual solutions to
15740 a given clustering problem which are useful or necessary to consider in a wide
15741 range of applications. This R package provides an extensible computational
15742 environment for creating and analyzing cluster ensembles, with basic data
15743 structures for representing partitions and hierarchies, and facilities for
15744 computing on them, including methods for measuring proximity and obtaining
15745 consensus and secondary clusterings.")
15746 (license license:gpl2)))
15747
15748 (define-public r-sitmo
15749 (package
15750 (name "r-sitmo")
15751 (version "2.0.1")
15752 (source
15753 (origin
15754 (method url-fetch)
15755 (uri (cran-uri "sitmo" version))
15756 (sha256
15757 (base32
15758 "0apdhwy3kxs39agsbvx5vn3xsgb22bf3jrwmr2cmqk9kmxbx740c"))))
15759 (build-system r-build-system)
15760 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
15761 (home-page "https://github.com/coatless/sitmo/")
15762 (synopsis "Parallel pseudo random number generator header files")
15763 (description
15764 "This package provides two high quality and fast PPRNGs that may be used
15765 in an OpenMP parallel environment. In addition, there is a generator for one
15766 dimensional low-discrepancy sequence.")
15767 (license license:expat)))
15768
15769 (define-public r-dqrng
15770 (package
15771 (name "r-dqrng")
15772 (version "0.2.1")
15773 (source
15774 (origin
15775 (method url-fetch)
15776 (uri (cran-uri "dqrng" version))
15777 (sha256
15778 (base32
15779 "0rp8q5zijlvaqmpnkwr314w9w40sj4fz7sqsdgsffcfvn42w2jg1"))))
15780 (build-system r-build-system)
15781 (propagated-inputs
15782 `(("r-bh" ,r-bh)
15783 ("r-rcpp" ,r-rcpp)
15784 ("r-sitmo" ,r-sitmo)))
15785 (home-page "https://www.daqana.org/dqrng")
15786 (synopsis "Fast pseudo random number generators")
15787 (description
15788 "Several fast random number generators are provided as C++ header-only
15789 libraries: the PCG family as well as Xoroshiro128+ and Xoshiro256+.
15790 Additionally, fast functions for generating random numbers according to a
15791 uniform, normal and exponential distribution are included. The latter two use
15792 the Ziggurat algorithm originally proposed by Marsaglia and Tsang. These
15793 functions are exported to R and as a C++ interface and are enabled for use
15794 with the default 64 bit generator from the PCG family, Xoroshiro128+ and
15795 Xoshiro256+ as well as the 64 bit version of the 20 rounds Threefry
15796 engine (Salmon et al., 2011) as provided by the package @code{sitmo}.")
15797 ;; This package includes code under CC0 and Apache 2.0 or Expat, but as a
15798 ;; whole is distributed under the terms of the AGPL 3.
15799 (license license:agpl3)))
15800
15801 (define-public r-ingredients
15802 (package
15803 (name "r-ingredients")
15804 (version "1.3.1")
15805 (source
15806 (origin
15807 (method url-fetch)
15808 (uri (cran-uri "ingredients" version))
15809 (sha256
15810 (base32
15811 "0l0dqrm9am6wk8jcf8cdhc6xnrna9cqr5wz6lsnczq2gf6ybhjg1"))))
15812 (properties `((upstream-name . "ingredients")))
15813 (build-system r-build-system)
15814 (propagated-inputs
15815 `(("r-ggplot2" ,r-ggplot2)
15816 ("r-gridextra" ,r-gridextra)
15817 ("r-scales" ,r-scales)))
15818 (native-inputs `(("r-knitr" ,r-knitr)))
15819 (home-page "https://ModelOriented.github.io/ingredients/")
15820 (synopsis "Effects and importances of model ingredients")
15821 (description
15822 "This is a collection of tools for assessment of feature importance and
15823 feature effects. Key functions are:
15824
15825 @itemize
15826 @item @code{feature_importance()} for assessment of global level feature
15827 importance,
15828 @item @code{ceteris_paribus()} for calculation of the what-if plots,
15829 @item @code{partial_dependence()} for partial dependence plots,
15830 @item @code{conditional_dependence()} for conditional dependence plots,
15831 @item @code{accumulated_dependence()} for accumulated local effects plots,
15832 @item @code{aggregate_profiles()} and @code{cluster_profiles()} for
15833 aggregation of ceteris paribus profiles,
15834 @item generic @code{print()} and @code{plot()} for better usability of
15835 selected explainers,
15836 @item generic @code{plotD3()} for interactive, D3 based explanations, and
15837 @item generic @code{describe()} for explanations in natural language.
15838 @end itemize\n")
15839 (license license:gpl3)))
15840
15841 (define-public r-ibreakdown
15842 (package
15843 (name "r-ibreakdown")
15844 (version "1.3.1")
15845 (source
15846 (origin
15847 (method url-fetch)
15848 (uri (cran-uri "iBreakDown" version))
15849 (sha256
15850 (base32
15851 "1bfl5bh0x6z5a0cmdmx68sap9zdxa3kwdnyk57csxapc362yz108"))))
15852 (properties `((upstream-name . "iBreakDown")))
15853 (build-system r-build-system)
15854 (propagated-inputs `(("r-ggplot2" ,r-ggplot2)))
15855 (native-inputs `(("r-knitr" ,r-knitr)))
15856 (home-page "https://ModelOriented.github.io/iBreakDown/")
15857 (synopsis "Model agnostic instance level variable attributions")
15858 (description
15859 "This package provides a model agnostic tool for decomposition of
15860 predictions from black boxes. It supports additive attributions and
15861 attributions with interactions. The Break Down Table shows contributions of
15862 every variable to a final prediction. The Break Down Plot presents variable
15863 contributions in a concise graphical way. This package works for
15864 classification and regression models.")
15865 (license license:gpl3)))
15866
15867 (define-public r-dae
15868 (package
15869 (name "r-dae")
15870 (version "3.1-27")
15871 (source
15872 (origin
15873 (method url-fetch)
15874 (uri (cran-uri "dae" version))
15875 (sha256
15876 (base32
15877 "14q3cxhcz0zqjdkas0dl71k2bp5qwvb60gha47s78hdr38r46kml"))))
15878 (build-system r-build-system)
15879 (propagated-inputs
15880 `(("r-ggplot2" ,r-ggplot2)
15881 ("r-plyr" ,r-plyr)))
15882 (native-inputs
15883 `(("r-r-rsp" ,r-r-rsp))) ; vignette builder
15884 (home-page "http://chris.brien.name")
15885 (synopsis "Functions useful in the design and ANOVA of experiments")
15886 (description
15887 "This package provides functions useful in the design and ANOVA of
15888 experiments. The content falls into the following groupings:
15889
15890 @enumerate
15891 @item data,
15892 @item factor manipulation functions,
15893 @item design functions,
15894 @item ANOVA functions,
15895 @item matrix functions,
15896 @item projector and canonical efficiency functions, and
15897 @item miscellaneous functions.
15898 @end enumerate
15899
15900 There is a vignette called @code{DesignNotes} describing how to use the design
15901 functions for randomizing and assessing designs. The ANOVA functions
15902 facilitate the extraction of information when the @code{Error} function has
15903 been used in the call to @code{aov}.")
15904 (license license:gpl2)))
15905
15906 (define-public r-dalex
15907 (package
15908 (name "r-dalex")
15909 (version "1.3.1.1")
15910 (source
15911 (origin
15912 (method url-fetch)
15913 (uri (cran-uri "DALEX" version))
15914 (sha256
15915 (base32
15916 "0akw1yzhb3shpg6yb89vralqd2z80z5yk9azqaa55dx56as52kjs"))))
15917 (properties `((upstream-name . "DALEX")))
15918 (build-system r-build-system)
15919 (propagated-inputs
15920 `(("r-ggplot2" ,r-ggplot2)
15921 ("r-ibreakdown" ,r-ibreakdown)
15922 ("r-ingredients" ,r-ingredients)))
15923 (home-page "https://pbiecek.github.io/DALEX/")
15924 (synopsis "Descriptive machine learning explanations")
15925 (description
15926 "Machine Learning models are widely used and have various applications in
15927 classification or regression. Models created with boosting, bagging, stacking
15928 or similar techniques are often used due to their high performance, but such
15929 black-box models usually lack interpretability. The DALEX package contains
15930 various explainers that help to understand the link between input variables
15931 and model output.")
15932 ;; Any version of the GPL
15933 (license license:gpl3+)))
15934
15935 (define-public r-enrichr
15936 (package
15937 (name "r-enrichr")
15938 (version "2.1")
15939 (source
15940 (origin
15941 (method url-fetch)
15942 (uri (cran-uri "enrichR" version))
15943 (sha256
15944 (base32
15945 "0ymhzs9d2wl0s9rvbqc1hqb78mlzwhlc7mmijpfqkm5r720pf6m1"))))
15946 (properties `((upstream-name . "enrichR")))
15947 (build-system r-build-system)
15948 (propagated-inputs
15949 `(("r-httr" ,r-httr)
15950 ("r-rjson" ,r-rjson)))
15951 (home-page "https://cran.r-project.org/web/packages/enrichR/")
15952 (synopsis "R Interface to Enrichr database for analyzing gene sets")
15953 (description
15954 "This package provides an R interface to all Enrichr databases, a
15955 web-based tool for analyzing gene sets and returns any enrichment of common
15956 annotated biological functions.")
15957 (license license:gpl2+)))
15958
15959 (define-public r-plot3d
15960 (package
15961 (name "r-plot3d")
15962 (version "1.3")
15963 (source
15964 (origin
15965 (method url-fetch)
15966 (uri (cran-uri "plot3D" version))
15967 (sha256
15968 (base32
15969 "1jfzndnlci9a975qbcv66jiy2l46hs3f2049654x4jp3i4kyrr5r"))))
15970 (properties `((upstream-name . "plot3D")))
15971 (build-system r-build-system)
15972 (propagated-inputs `(("r-misc3d" ,r-misc3d)))
15973 (home-page "https://cran.r-project.org/web/packages/plot3D")
15974 (synopsis "Plot multi-dimensional data")
15975 (description
15976 "This package provides functions for viewing 2D and 3D data, including
15977 perspective plots, slice plots, surface plots, scatter plots, etc. It
15978 includes data sets from oceanography.")
15979 (license license:gpl3+)))
15980
15981 (define-public r-ggfortify
15982 (package
15983 (name "r-ggfortify")
15984 (version "0.4.10")
15985 (source
15986 (origin
15987 (method url-fetch)
15988 (uri (cran-uri "ggfortify" version))
15989 (sha256
15990 (base32
15991 "0wmcwp63h90v3f00ixszvis4z28im621jickvc0wgi6qvjvnayq0"))))
15992 (build-system r-build-system)
15993 (propagated-inputs
15994 `(("r-dplyr" ,r-dplyr)
15995 ("r-ggplot2" ,r-ggplot2)
15996 ("r-gridextra" ,r-gridextra)
15997 ("r-scales" ,r-scales)
15998 ("r-stringr" ,r-stringr)
15999 ("r-tibble" ,r-tibble)
16000 ("r-tidyr" ,r-tidyr)))
16001 (native-inputs
16002 `(("r-knitr" ,r-knitr)))
16003 (home-page "https://github.com/sinhrks/ggfortify")
16004 (synopsis "Data visualization tools for statistical analysis results")
16005 (description
16006 "This package provides unified plotting tools for statistics commonly
16007 used, such as GLM, time series, PCA families, clustering and survival
16008 analysis. The package offers a single plotting interface for these analysis
16009 results and plots in a unified style using the @code{ggplot2} package.")
16010 (license license:gpl2)))
16011
16012 (define-public r-refmanager
16013 (package
16014 (name "r-refmanager")
16015 (version "1.2.12")
16016 (source
16017 (origin
16018 (method url-fetch)
16019 (uri (cran-uri "RefManageR" version))
16020 (sha256
16021 (base32
16022 "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
16023 (properties `((upstream-name . "RefManageR")))
16024 (build-system r-build-system)
16025 (propagated-inputs
16026 `(("r-bibtex" ,r-bibtex)
16027 ("r-httr" ,r-httr)
16028 ("r-jsonlite" ,r-jsonlite)
16029 ("r-lubridate" ,r-lubridate)
16030 ("r-plyr" ,r-plyr)
16031 ("r-stringr" ,r-stringr)
16032 ("r-xml2" ,r-xml2)))
16033 (home-page "https://github.com/ropensci/RefManageR/")
16034 (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
16035 (description
16036 "This package provides tools for importing and working with bibliographic
16037 references. It greatly enhances the @code{bibentry} class by providing a
16038 class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
16039 UTF-8 encoding, and can be easily searched by any field, by date ranges, and
16040 by various formats for name lists (author by last names, translator by full
16041 names, etc.). Entries can be updated, combined, sorted, printed in a number
16042 of styles, and exported. BibTeX and BibLaTeX @code{.bib} files can be read
16043 into R and converted to @code{BibEntry} objects.")
16044 ;; Any of these licenses may be picked.
16045 (license (list license:gpl2 license:gpl3 license:bsd-3))))
16046
16047 (define-public r-citr
16048 (package
16049 (name "r-citr")
16050 (version "0.3.2")
16051 (source
16052 (origin
16053 (method url-fetch)
16054 (uri (cran-uri "citr" version))
16055 (sha256
16056 (base32
16057 "1qbarvafjb8jgkrnrhh6jw7mcglmjwf7dpdiibxf39jkmlhf7las"))))
16058 (build-system r-build-system)
16059 (propagated-inputs
16060 `(("r-assertthat" ,r-assertthat)
16061 ("r-curl" ,r-curl)
16062 ("r-httr" ,r-httr)
16063 ("r-miniui" ,r-miniui)
16064 ("r-refmanager" ,r-refmanager)
16065 ("r-rstudioapi" ,r-rstudioapi)
16066 ("r-shiny" ,r-shiny)
16067 ("r-shinyjs" ,r-shinyjs)
16068 ("r-yaml" ,r-yaml)))
16069 (home-page "https://github.com/crsh/citr")
16070 (synopsis "RStudio add-in to insert Markdown citations")
16071 (description
16072 "This package provides functions and an RStudio add-in that search a
16073 BibTeX or BibLaTeX file to create and insert formatted Markdown citations into
16074 the current document.")
16075 (license license:expat)))
16076
16077 (define-public r-xgboost
16078 (package
16079 (name "r-xgboost")
16080 (version "1.1.1.1")
16081 (source
16082 (origin
16083 (method url-fetch)
16084 (uri (cran-uri "xgboost" version))
16085 (sha256
16086 (base32
16087 "13njhcxljhbcs37ni6r5174fk8kx9b5p7rlw1an1ak3w92jn56cq"))))
16088 (build-system r-build-system)
16089 (propagated-inputs
16090 `(("r-data-table" ,r-data-table)
16091 ("r-magrittr" ,r-magrittr)
16092 ("r-matrix" ,r-matrix)
16093 ("r-stringi" ,r-stringi)))
16094 (native-inputs
16095 `(("r-knitr" ,r-knitr)))
16096 (home-page "https://github.com/dmlc/xgboost")
16097 (synopsis "Extreme gradient boosting")
16098 (description
16099 "This package provides an R interface to Extreme Gradient Boosting, which
16100 is an efficient implementation of the gradient boosting framework from Chen
16101 and Guestrin (2016). The package includes efficient linear model solver and
16102 tree learning algorithms. The package can automatically do parallel
16103 computation on a single machine. It supports various objective functions,
16104 including regression, classification and ranking. The package is made to be
16105 extensible, so that users are also allowed to define their own objectives
16106 easily.")
16107 (license license:asl2.0)))
16108
16109 (define-public r-umap
16110 (package
16111 (name "r-umap")
16112 (version "0.2.6.0")
16113 (source
16114 (origin
16115 (method url-fetch)
16116 (uri (cran-uri "umap" version))
16117 (sha256
16118 (base32
16119 "0zajn2sk705sckljxl5vz4q2sxpsqim2grmjq2jwwc8ysr1h2s9f"))))
16120 (build-system r-build-system)
16121 (propagated-inputs
16122 `(("r-openssl" ,r-openssl)
16123 ("r-rcpp" ,r-rcpp)
16124 ("r-reticulate" ,r-reticulate)
16125 ("r-rspectra" ,r-rspectra)))
16126 (native-inputs
16127 `(("r-knitr" ,r-knitr)))
16128 (home-page "https://github.com/tkonopka/umap")
16129 (synopsis "Uniform manifold approximation and projection")
16130 (description
16131 "Uniform manifold approximation and projection is a technique for
16132 dimension reduction. This package provides an interface to the UMAP algorithm
16133 in R, including a translation of the original algorithm into R.")
16134 (license license:expat)))
16135
16136 (define-public r-uwot
16137 (package
16138 (name "r-uwot")
16139 (version "0.1.8")
16140 (source
16141 (origin
16142 (method url-fetch)
16143 (uri (cran-uri "uwot" version))
16144 (sha256
16145 (base32
16146 "1jzh8r1h6f7pw7pb1fr32vn6ai9g10s56ahkq0vi77iznihy1rpd"))))
16147 (build-system r-build-system)
16148 (propagated-inputs
16149 `(("r-dqrng" ,r-dqrng)
16150 ("r-fnn" ,r-fnn)
16151 ("r-irlba" ,r-irlba)
16152 ("r-matrix" ,r-matrix)
16153 ("r-rcpp" ,r-rcpp)
16154 ("r-rcppannoy" ,r-rcppannoy)
16155 ("r-rcppprogress" ,r-rcppprogress)
16156 ("r-rspectra" ,r-rspectra)))
16157 (home-page "https://github.com/jlmelville/uwot")
16158 (synopsis "Uniform manifold approximation and projection")
16159 (description
16160 "This package provides an implementation of the Uniform Manifold
16161 Approximation and Projection dimensionality reduction by McInnes et
16162 al. (2018). It also provides means to transform new data and to carry out
16163 supervised dimensionality reduction. An implementation of the related
16164 LargeVis method of Tang et al. (2016) is also provided.")
16165 (license license:gpl3)))
16166
16167 (define-public r-kableextra
16168 (package
16169 (name "r-kableextra")
16170 (version "1.1.0")
16171 (source
16172 (origin
16173 (method url-fetch)
16174 (uri (cran-uri "kableExtra" version))
16175 (sha256
16176 (base32
16177 "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i"))))
16178 (properties `((upstream-name . "kableExtra")))
16179 (build-system r-build-system)
16180 (propagated-inputs
16181 `(("r-digest" ,r-digest)
16182 ("r-glue" ,r-glue)
16183 ("r-htmltools" ,r-htmltools)
16184 ("r-knitr" ,r-knitr)
16185 ("r-magrittr" ,r-magrittr)
16186 ("r-readr" ,r-readr)
16187 ("r-rmarkdown" ,r-rmarkdown)
16188 ("r-rstudioapi" ,r-rstudioapi)
16189 ("r-rvest" ,r-rvest)
16190 ("r-scales" ,r-scales)
16191 ("r-stringr" ,r-stringr)
16192 ("r-viridislite" ,r-viridislite)
16193 ("r-webshot" ,r-webshot)
16194 ("r-xml2" ,r-xml2)))
16195 (home-page "https://haozhu233.github.io/kableExtra/")
16196 (synopsis "Construct complex tables with pipe syntax")
16197 (description
16198 "Build complex HTML or LaTeX tables using @code{kable()} from
16199 @code{knitr} and the piping syntax from @code{magrittr}. The function
16200 @code{kable()} is a light weight table generator coming from @code{knitr}.
16201 This package simplifies the way to manipulate the HTML or LaTeX codes
16202 generated by @code{kable()} and allows users to construct complex tables and
16203 customize styles using a readable syntax.")
16204 (license license:expat)))
16205
16206 (define-public r-glasso
16207 (package
16208 (name "r-glasso")
16209 (version "1.11")
16210 (source
16211 (origin
16212 (method url-fetch)
16213 (uri (cran-uri "glasso" version))
16214 (sha256
16215 (base32 "02p3612rpydk195n2qr77lp1j2w8zsw1ckkk98c8angm4r5q8dsc"))))
16216 (build-system r-build-system)
16217 (native-inputs `(("gfortran" ,gfortran)))
16218 (home-page "https://statweb.stanford.edu/~tibs/glasso/")
16219 (synopsis "Graphical Lasso: estimation of Gaussian graphical models")
16220 (description
16221 "This is a package for estimation of a sparse inverse covariance matrix
16222 using a lasso (L1) penalty. Facilities are provided for estimates along a
16223 path of values for the regularization parameter.")
16224 (license license:gpl2)))
16225
16226 (define-public r-rhpcblasctl
16227 (package
16228 (name "r-rhpcblasctl")
16229 (version "0.20-137")
16230 (source
16231 (origin
16232 (method url-fetch)
16233 (uri (cran-uri "RhpcBLASctl" version))
16234 (sha256
16235 (base32
16236 "0vv144sgjhf7fazk633i16fc06g9k43syyxj1g34pi9gsgdcn0nv"))))
16237 (properties `((upstream-name . "RhpcBLASctl")))
16238 (build-system r-build-system)
16239 (home-page "https://prs.ism.ac.jp/~nakama/Rhpc/")
16240 (synopsis "Control the number of threads on BLAS")
16241 (description
16242 "This package allows you to control the number of threads the BLAS
16243 library uses. It is also possible to control the number of threads in
16244 OpenMP.")
16245 (license license:agpl3+)))
16246
16247 (define-public r-lda
16248 (package
16249 (name "r-lda")
16250 (version "1.4.2")
16251 (source
16252 (origin
16253 (method url-fetch)
16254 (uri (cran-uri "lda" version))
16255 (sha256
16256 (base32
16257 "03r4h5kgr8mfy44p66mfj5bp4k00g8zh4a1mhn46jw14pkhs21jn"))))
16258 (build-system r-build-system)
16259 (home-page "https://cran.r-project.org/web/packages/lda/")
16260 (synopsis "Collapsed Gibbs sampling methods for topic models")
16261 (description
16262 "This package implements @dfn{latent Dirichlet allocation} (LDA) and
16263 related models. This includes (but is not limited to) sLDA, corrLDA, and the
16264 mixed-membership stochastic blockmodel. Inference for all of these models is
16265 implemented via a fast collapsed Gibbs sampler written in C. Utility
16266 functions for reading/writing data typically used in topic models, as well as
16267 tools for examining posterior distributions are also included.")
16268 ;; Any version of the LGPL
16269 (license license:lgpl3+)))
16270
16271 (define-public r-rann-l1
16272 (package
16273 (name "r-rann-l1")
16274 (version "2.5.2")
16275 (source
16276 (origin
16277 (method url-fetch)
16278 (uri (cran-uri "RANN.L1" version))
16279 (sha256
16280 (base32
16281 "1hanh3my84mdr5wy6b89fawqzfc184vff1y65wy4l5ld9qza1n44"))))
16282 (properties `((upstream-name . "RANN.L1")))
16283 (build-system r-build-system)
16284 (home-page "https://github.com/jefferis/RANN/tree/master-L1")
16285 (synopsis "Fast nearest neighbour search using L1 metric")
16286 (description
16287 "This package provides tools to find the k nearest neighbours for every
16288 point in a given dataset in O(N log N) time using Arya and Mount's ANN
16289 library. There is support for approximate as well as exact searches, fixed
16290 radius searches and @code{bd} as well as @code{kd} trees. The distance is
16291 computed using the L1 (Manhattan, taxicab) metric.")
16292 (license license:gpl3+)))
16293
16294 (define-public r-leiden
16295 (package
16296 (name "r-leiden")
16297 (version "0.3.3")
16298 (source
16299 (origin
16300 (method url-fetch)
16301 (uri (cran-uri "leiden" version))
16302 (sha256
16303 (base32
16304 "1hh6bmbz6cpqwl4i94gxylgv9x92zbqdg81r8r4ymfy8c70f3df2"))))
16305 (properties `((upstream-name . "leiden")))
16306 (build-system r-build-system)
16307 (propagated-inputs
16308 `(("r-igraph" ,r-igraph)
16309 ("r-matrix" ,r-matrix)
16310 ("r-reticulate" ,r-reticulate)))
16311 (home-page "https://github.com/TomKellyGenetics/leiden")
16312 (synopsis "R implementation of Leiden clustering algorithm")
16313 (description
16314 "This package implements the Python @code{leidenalg} module to be called
16315 in R. It enables clustering using the Leiden algorithm for partitioning a
16316 graph into communities. See also Traag et al (2018) \"From Louvain to Leiden:
16317 guaranteeing well-connected communities.\" <arXiv:1810.08473>.")
16318 (license license:gpl3)))
16319
16320 (define-public r-patchwork
16321 (package
16322 (name "r-patchwork")
16323 (version "1.0.1")
16324 (source
16325 (origin
16326 (method url-fetch)
16327 (uri (cran-uri "patchwork" version))
16328 (sha256
16329 (base32
16330 "0wm93a40idrkzn5hpnykhznvh7hdbfqw0dkzzn0zk83qlwyc9g02"))))
16331 (build-system r-build-system)
16332 (propagated-inputs
16333 `(("r-ggplot2" ,r-ggplot2)
16334 ("r-gtable" ,r-gtable)))
16335 (native-inputs
16336 `(("r-knitr" ,r-knitr)))
16337 (home-page "https://github.com/thomasp85/patchwork")
16338 (synopsis "Compose ggplot2 plots")
16339 (description
16340 "The @code{ggplot2} package provides a strong API for sequentially
16341 building up a plot, but does not concern itself with composition of multiple
16342 plots. Patchwork is a package that expands the API to allow for arbitrarily
16343 complex composition of plots by providing mathmatical operators for combining
16344 multiple plots.")
16345 (license license:expat)))
16346
16347 (define-public r-liger
16348 (package
16349 (name "r-liger")
16350 (version "0.4.2")
16351 (source
16352 (origin
16353 (method git-fetch)
16354 (uri (git-reference
16355 (url "https://github.com/MacoskoLab/liger")
16356 (commit (string-append "v" version))))
16357 (file-name (git-file-name name version))
16358 (sha256
16359 (base32
16360 "16dzwwcpw6n78pxlc5w3kraigki35ix7zhd2cbx5f3y60bbkhlmx"))
16361 (modules '((guix build utils)))
16362 (snippet
16363 '(begin
16364 (delete-file "inst/java/ModularityOptimizer.jar")
16365 #t))))
16366 (build-system r-build-system)
16367 (arguments
16368 `(#:phases
16369 (modify-phases %standard-phases
16370 (add-after 'unpack 'build-java-part
16371 (lambda* (#:key inputs #:allow-other-keys)
16372 (invoke "unzip" (assoc-ref inputs "optimizer-src"))
16373 (for-each (lambda (file) (invoke "javac" file))
16374 (find-files "." "\\.java$"))
16375 (apply invoke "jar" "cf" "inst/java/ModularityOptimizer.jar"
16376 (find-files "." "\\.class$"))
16377 #t)))))
16378 (propagated-inputs
16379 `(("r-cowplot" ,r-cowplot)
16380 ("r-dosnow" ,r-dosnow)
16381 ("r-dplyr" ,r-dplyr)
16382 ("r-fnn" ,r-fnn)
16383 ("r-foreach" ,r-foreach)
16384 ("r-ggplot2" ,r-ggplot2)
16385 ("r-ggrepel" ,r-ggrepel)
16386 ("r-hmisc" ,r-hmisc)
16387 ("r-ica" ,r-ica)
16388 ("r-irlba" ,r-irlba)
16389 ("r-matrix" ,r-matrix)
16390 ("r-mclust" ,r-mclust)
16391 ("r-patchwork" ,r-patchwork)
16392 ("r-plyr" ,r-plyr)
16393 ("r-rann-l1" ,r-rann-l1)
16394 ("r-rcpp" ,r-rcpp)
16395 ("r-rcpparmadillo" ,r-rcpparmadillo)
16396 ("r-riverplot" ,r-riverplot)
16397 ("r-rtsne" ,r-rtsne)
16398 ("r-snow" ,r-snow)))
16399 (native-inputs
16400 `(("jdk" ,icedtea "jdk")
16401 ;; See https://github.com/MacoskoLab/liger/issues/96
16402 ;; The optimizer is released under the Expat license.
16403 ("optimizer-src"
16404 ,(origin
16405 (method url-fetch)
16406 (uri "http://www.ludowaltman.nl/slm/modularity_optimizer_source.zip")
16407 (sha256
16408 (base32
16409 "01hmm6sapcmldvayknqx2w4cav3qv71mwwkdkwj4qgq6dss09g18"))))
16410 ("unzip" ,unzip)
16411 ("r-knitr" ,r-knitr))) ; for vignettes
16412 (home-page "https://github.com/MacoskoLab/liger")
16413 (synopsis "Integrate and analyze multiple single-cell datasets")
16414 (description
16415 "LIGER is a package for integrating and analyzing multiple single-cell
16416 datasets, developed and maintained by the Macosko lab. It relies on
16417 integrative non-negative matrix factorization to identify shared and
16418 dataset-specific factors.")
16419 (license license:gpl3)))
16420
16421 (define-public r-harmony
16422 (package
16423 (name "r-harmony")
16424 (version "0.1")
16425 (source
16426 (origin
16427 (method git-fetch)
16428 (uri (git-reference
16429 (url "https://github.com/immunogenomics/harmony")
16430 (commit version)))
16431 (file-name (git-file-name name version))
16432 (sha256
16433 (base32
16434 "05r401q09rbr6fqhb9mbd95082cjdi3nag1cv6zn96xkr0f6imq9"))
16435 (modules '((guix build utils)))
16436 (snippet
16437 '(begin
16438 (for-each delete-file '("config.status" "configure"))
16439 #t))))
16440 (build-system r-build-system)
16441 (propagated-inputs
16442 `(("r-cowplot" ,r-cowplot)
16443 ("r-dplyr" ,r-dplyr)
16444 ("r-ggplot2" ,r-ggplot2)
16445 ("r-irlba" ,r-irlba)
16446 ("r-matrix" ,r-matrix)
16447 ("r-rcpp" ,r-rcpp)
16448 ("r-rcpparmadillo" ,r-rcpparmadillo)
16449 ("r-rcppprogress" ,r-rcppprogress)
16450 ("r-rlang" ,r-rlang)
16451 ("r-tibble" ,r-tibble)
16452 ("r-tidyr" ,r-tidyr)))
16453 (native-inputs
16454 `(("autoconf" ,autoconf)))
16455 (home-page "https://github.com/immunogenomics/harmony")
16456 (synopsis "Integration of single cell sequencing data")
16457 (description
16458 "This package provides an implementation of the Harmony algorithm for
16459 single cell integration, described in Korsunsky et al
16460 @url{doi.org/10.1101/461954}. The package includes a standalone Harmony
16461 function and interfaces to external frameworks.")
16462 (license license:gpl3)))
16463
16464 (define-public r-covr
16465 (package
16466 (name "r-covr")
16467 (version "3.5.0")
16468 (source
16469 (origin
16470 (method url-fetch)
16471 (uri (cran-uri "covr" version))
16472 (sha256
16473 (base32 "1pvr95h7jg9hqq1qq1cccy323pkxldrwafl08151cc410499k4fb"))))
16474 (properties `((upstream-name . "covr")))
16475 (build-system r-build-system)
16476 (propagated-inputs
16477 `(("r-crayon" ,r-crayon)
16478 ("r-digest" ,r-digest)
16479 ("r-httr" ,r-httr)
16480 ("r-jsonlite" ,r-jsonlite)
16481 ("r-rex" ,r-rex)
16482 ("r-withr" ,r-withr)
16483 ("r-yaml" ,r-yaml)))
16484 (native-inputs
16485 `(("r-knitr" ,r-knitr))) ; for vignettes
16486 (home-page "https://github.com/r-lib/covr")
16487 (synopsis "Test coverage for R packages")
16488 (description
16489 "Thisp package enables you to track and report code coverage for your
16490 package and (optionally) upload the results to a coverage service. Code
16491 coverage is a measure of the amount of code being exercised by a set of tests.
16492 It is an indirect measure of test quality and completeness. This package is
16493 compatible with any testing methodology or framework and tracks coverage of
16494 both R code and compiled C/C++/FORTRAN code.")
16495 (license license:gpl3)))
16496
16497 (define-public r-systemfonts
16498 (package
16499 (name "r-systemfonts")
16500 (version "0.2.3")
16501 (source
16502 (origin
16503 (method url-fetch)
16504 (uri (cran-uri "systemfonts" version))
16505 (sha256
16506 (base32
16507 "0wf62mfam5zlrck0wrdbyi4hi7pn5j0739rihgp8sj2cjypm2lnb"))))
16508 (properties `((upstream-name . "systemfonts")))
16509 (build-system r-build-system)
16510 (inputs
16511 `(("fontconfig" ,fontconfig)
16512 ("zlib" ,zlib)))
16513 (native-inputs
16514 `(("pkg-config" ,pkg-config)
16515 ("r-knitr" ,r-knitr)))
16516 (home-page "https://github.com/r-lib/systemfonts")
16517 (synopsis "System native font finding")
16518 (description
16519 "This package provides system native access to the font catalogue. As
16520 font handling varies between systems it is difficult to correctly locate
16521 installed fonts across different operating systems. The 'systemfonts' package
16522 provides bindings to the native libraries for finding font files that can then
16523 be used further by e.g. graphic devices.")
16524 (license license:expat)))
16525
16526 (define-public r-graphlayouts
16527 (package
16528 (name "r-graphlayouts")
16529 (version "0.7.0")
16530 (source
16531 (origin
16532 (method url-fetch)
16533 (uri (cran-uri "graphlayouts" version))
16534 (sha256
16535 (base32
16536 "17lc75k8i3c696hfj44zj7j1a5sb0nap8spc5r98v7vd6xh4nii0"))))
16537 (properties `((upstream-name . "graphlayouts")))
16538 (build-system r-build-system)
16539 (propagated-inputs
16540 `(("r-igraph" ,r-igraph)
16541 ("r-rcpp" ,r-rcpp)
16542 ("r-rcpparmadillo" ,r-rcpparmadillo)))
16543 (home-page "https://github.com/schochastics/graphlayouts")
16544 (synopsis "Additional layout algorithms for network visualizations")
16545 (description
16546 "This package provides several layout algorithms to visualize networks
16547 which are not part of the igraph library. Most are based on the concept of
16548 stress majorization by Gansner et al. (2004)
16549 <doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms
16550 emphasize hidden group structures in networks or focus on specific nodes.")
16551 (license license:expat)))
16552
16553 (define-public r-tidygraph
16554 (package
16555 (name "r-tidygraph")
16556 (version "1.2.0")
16557 (source
16558 (origin
16559 (method url-fetch)
16560 (uri (cran-uri "tidygraph" version))
16561 (sha256
16562 (base32
16563 "17qjns33zcj82jcsl7bn7i4zxcm7ric50zyf7agi0i01zi16qz85"))))
16564 (properties `((upstream-name . "tidygraph")))
16565 (build-system r-build-system)
16566 (propagated-inputs
16567 `(("r-dplyr" ,r-dplyr)
16568 ("r-igraph" ,r-igraph)
16569 ("r-magrittr" ,r-magrittr)
16570 ("r-pillar" ,r-pillar)
16571 ("r-r6" ,r-r6)
16572 ("r-rcpp" ,r-rcpp)
16573 ("r-rlang" ,r-rlang)
16574 ("r-tibble" ,r-tibble)
16575 ("r-tidyr" ,r-tidyr)))
16576 (home-page "https://github.com/thomasp85/tidygraph")
16577 (synopsis "Tidy API for graph manipulation")
16578 (description
16579 "This package provides a graph implementation that can be thought of as
16580 two tidy data frames describing node and edge data respectively. It provides
16581 an approach to manipulate these two virtual data frames using the API defined
16582 in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
16583 common graph algorithms.")
16584 (license license:expat)))
16585
16586 (define-public r-soupx
16587 (let ((commit "a3354be76fb52fd795be6ddf163cf056c05c6cb8")
16588 (revision "1"))
16589 (package
16590 (name "r-soupx")
16591 (version (git-version "0.3.1" revision commit))
16592 (source
16593 (origin
16594 (method git-fetch)
16595 (uri (git-reference
16596 (url "https://github.com/constantAmateur/SoupX")
16597 (commit commit)))
16598 (file-name (git-file-name name version))
16599 (sha256
16600 (base32
16601 "1zmlyzrl0fz6l79gn2wswid670p88mm3y292is89sa5p3h7frr99"))))
16602 (properties `((upstream-name . "SoupX")))
16603 (build-system r-build-system)
16604 (propagated-inputs
16605 `(("r-ggplot2" ,r-ggplot2)
16606 ("r-matrix" ,r-matrix)
16607 ("r-seurat" ,r-seurat)))
16608 (home-page "https://github.com/constantAmateur/SoupX")
16609 (synopsis "Single cell mRNA Soup eXterminator")
16610 (description
16611 "This package provides a package for quantifying, profiling and
16612 removing cell free mRNA contamination (the \"soup\") from droplet based single
16613 cell RNA-seq experiments.")
16614 (license license:gpl2))))
16615
16616 (define-public r-assertr
16617 (package
16618 (name "r-assertr")
16619 (version "2.7")
16620 (source
16621 (origin
16622 (method url-fetch)
16623 (uri (cran-uri "assertr" version))
16624 (sha256
16625 (base32
16626 "1x868pd4dac1c7b1q5390wqh2f6s50km8nqcpim3nxcj2l4qkqdb"))))
16627 (build-system r-build-system)
16628 (propagated-inputs
16629 `(("r-dplyr" ,r-dplyr)
16630 ("r-mass" ,r-mass)
16631 ("r-rlang" ,r-rlang)))
16632 (native-inputs
16633 `(("r-knitr" ,r-knitr))) ; needed for vignette
16634 (home-page "https://github.com/ropensci/assertr")
16635 (synopsis "Assertive programming for R analysis pipelines")
16636 (description
16637 "This package provides functionality to assert conditions that have to be
16638 met so that errors in data used in analysis pipelines can fail quickly. It is
16639 similar to @code{stopifnot()} but more powerful, friendly, and easier for use
16640 in pipelines.")
16641 (license license:expat)))
16642
16643 (define-public r-parameters
16644 (package
16645 (name "r-parameters")
16646 (version "0.8.2")
16647 (source
16648 (origin
16649 (method url-fetch)
16650 (uri (cran-uri "parameters" version))
16651 (sha256
16652 (base32
16653 "0kamszscywvdh4gikl5mmma7s5p7spmhirq3wrgf7x7f4gppbbmh"))))
16654 (properties `((upstream-name . "parameters")))
16655 (build-system r-build-system)
16656 (propagated-inputs
16657 `(("r-bayestestr" ,r-bayestestr)
16658 ("r-insight" ,r-insight)))
16659 (native-inputs
16660 `(("r-knitr" ,r-knitr)))
16661 (home-page "https://cran.r-project.org/web/packages/parameters")
16662 (synopsis "Processing of model parameters")
16663 (description
16664 "This package provides utilities for processing the parameters of various
16665 statistical models. Beyond computing p values, CIs, and other indices for a
16666 wide variety of models, this package implements features like standardization
16667 or bootstrapping of parameters and models, feature reduction (feature
16668 extraction and variable selection) as well as conversion between indices of
16669 effect size.")
16670 (license license:gpl3)))
16671
16672 (define-public r-rgdal
16673 (package
16674 (name "r-rgdal")
16675 (version "1.5-16")
16676 (source
16677 (origin
16678 (method url-fetch)
16679 (uri (cran-uri "rgdal" version))
16680 (sha256
16681 (base32 "0rwlsafqxgqflfid4ciaa9qz3f75fgw8hilhaqj558gdxg8bzigp"))))
16682 (properties `((upstream-name . "rgdal")))
16683 (build-system r-build-system)
16684 (inputs
16685 `(("gdal" ,gdal)
16686 ("proj.4" ,proj.4)
16687 ("zlib" ,zlib)))
16688 (propagated-inputs
16689 `(("r-sp" ,r-sp)))
16690 (native-inputs
16691 `(("pkg-config" ,pkg-config)
16692 ("r-knitr" ,r-knitr)))
16693 (home-page "http://rgdal.r-forge.r-project.org")
16694 (synopsis "Bindings for the Geospatial Data Abstraction Library")
16695 (description
16696 "This package provides bindings to the Geospatial Data Abstraction
16697 Library (GDAL) and access to projection/transformation operations from the
16698 PROJ.4 library.")
16699 (license license:gpl2+)))
16700
16701 (define-public r-insol
16702 (package
16703 (name "r-insol")
16704 (version "1.2.1")
16705 (source
16706 (origin
16707 (method url-fetch)
16708 (uri (cran-uri "insol" version))
16709 (sha256
16710 (base32
16711 "1d2vqmbp94ff80mfkmq4a8y12r6ryym8hh1568ip9qbn7snc64v1"))))
16712 (properties `((upstream-name . "insol")))
16713 (build-system r-build-system)
16714 (propagated-inputs
16715 `(("r-raster" ,r-raster)))
16716 (native-inputs
16717 `(("gfortran" ,gfortran)))
16718 (home-page "https://meteoexploration.com/R/insol/index.html")
16719 (synopsis "Tools for calculating solar radiation")
16720 (description
16721 "This package provides functions to compute insolation on tilted
16722 surfaces, computes atmospheric transmittance and related parameters such as:
16723 Earth radius vector, declination, sunset and sunrise, daylength, equation of
16724 time, vector in the direction of the sun, vector normal to surface, and some
16725 atmospheric physics.")
16726 (license license:gpl2+)))
16727
16728 (define-public r-lifecycle
16729 (package
16730 (name "r-lifecycle")
16731 (version "0.2.0")
16732 (source
16733 (origin
16734 (method url-fetch)
16735 (uri (cran-uri "lifecycle" version))
16736 (sha256
16737 (base32
16738 "0912865c6675fsblrfdk6s568krsj1x8qbk1kipy7m05xs6nwx19"))))
16739 (properties `((upstream-name . "lifecycle")))
16740 (build-system r-build-system)
16741 (propagated-inputs
16742 `(("r-glue" ,r-glue)
16743 ("r-rlang" ,r-rlang)))
16744 (native-inputs
16745 `(("r-knitr" ,r-knitr))) ; for vignettes
16746 (home-page "https://github.com/r-lib/lifecycle")
16747 (synopsis "Manage the life cycle of your package functions")
16748 (description
16749 "Manage the life cycle of your exported functions with shared
16750 conventions, documentation badges, and non-invasive deprecation warnings. The
16751 lifecycle package defines four development stages (experimental, maturing,
16752 stable, and questioning) and three deprecation stages (soft-deprecated,
16753 deprecated, and defunct). It makes it easy to insert badges corresponding to
16754 these stages in your documentation. Usage of deprecated functions are
16755 signalled with increasing levels of non-invasive verbosity.")
16756 (license license:gpl3)))
16757
16758 (define-public r-assertable
16759 (package
16760 (name "r-assertable")
16761 (version "0.2.7")
16762 (source
16763 (origin
16764 (method url-fetch)
16765 (uri (cran-uri "assertable" version))
16766 (sha256
16767 (base32
16768 "1npks9rcrnchmd0silq6qrvqkmdkp9fwjkyyvvp1lqjclyxk6vkk"))))
16769 (build-system r-build-system)
16770 (propagated-inputs
16771 `(("r-data-table" ,r-data-table)))
16772 (home-page "https://cran.r-project.org/web/packages/assertable/")
16773 (synopsis "Verbose assertions for tabular data (data.frames and data.tables)")
16774 (description "This package provides simple, flexible assertions on
16775 data.frame or data.table objects with verbose output for vetting. While other
16776 assertion packages apply towards more general use-cases, @code{assertable} is
16777 tailored towards tabular data. It includes functions to check variable names
16778 and values, whether the dataset contains all combinations of a given set of
16779 unique identifiers, and whether it is a certain length. In addition,
16780 @code{assertable} includes utility functions to check the existence of target
16781 files and to efficiently import multiple tabular data files into one
16782 data.table.")
16783 (license license:gpl3)))
16784
16785 (define-public r-quadprog
16786 (package
16787 (name "r-quadprog")
16788 (version "1.5-8")
16789 (source
16790 (origin
16791 (method url-fetch)
16792 (uri (cran-uri "quadprog" version))
16793 (sha256
16794 (base32 "1ka9g8zak8sg4y2xbz93dfrldznlk9qpd4pq9z21cdcdn3b8s4i2"))))
16795 (build-system r-build-system)
16796 (native-inputs
16797 `(("gfortran" ,gfortran)))
16798 (home-page "https://cran.r-project.org/web/packages/quadprog")
16799 (synopsis "Functions to solve quadratic programming problems")
16800 (description
16801 "This package contains routines and documentation for solving quadratic
16802 programming problems.")
16803 (license license:gpl3+)))
16804
16805 (define-public r-desolve
16806 (package
16807 (name "r-desolve")
16808 (version "1.28")
16809 (source
16810 (origin
16811 (method url-fetch)
16812 (uri (cran-uri "deSolve" version))
16813 (sha256
16814 (base32 "0jasvdzig0pzhzspmy20089az19r91xjfb9q6h8gj7c4mr6fymac"))))
16815 (properties `((upstream-name . "deSolve")))
16816 (build-system r-build-system)
16817 (native-inputs
16818 `(("gfortran" ,gfortran)))
16819 (home-page "https://desolve.r-forge.r-project.org/")
16820 (synopsis "Solvers for initial value problems of differential equations")
16821 (description "This package provides functions that solve initial value
16822 problems of a system of first-order @dfn{ordinary differential
16823 equations} (ODE), of @dfn{partial differential equations} (PDE), of
16824 @dfn{differential algebraic equations} (DAE), and of delay differential
16825 equations. The functions provide an interface to the FORTRAN functions
16826 @code{lsoda}, @code{lsodar}, @code{lsode}, @code{lsodes} of the ODEPACK
16827 collection, to the FORTRAN functions @code{dvode} and @code{daspk} and a
16828 C-implementation of solvers of the Runge-Kutta family with fixed or variable
16829 time steps. The package contains routines designed for solving ODEs resulting
16830 from 1-D, 2-D and 3-D partial differential equations that have been converted
16831 to ODEs by numerical differencing.")
16832 (license license:gpl2+)))
16833
16834 (define-public r-pracma
16835 (package
16836 (name "r-pracma")
16837 (version "2.2.9")
16838 (source (origin
16839 (method url-fetch)
16840 (uri (cran-uri "pracma" version))
16841 (sha256
16842 (base32 "07mzhzz73wsjjw1q05l024gcd13hwnzsxf873q9dyhw6x3shzshc"))))
16843 (build-system r-build-system)
16844 (home-page "https://cran.r-project.org/web/packages/pracma/")
16845 (synopsis "Practical numerical math functions")
16846 (description "This package provides functions for numerical analysis and
16847 linear algebra, numerical optimization, differential equations, plus some
16848 special functions. It uses Matlab function names where appropriate to simplify
16849 porting.")
16850 (license license:gpl3+)))
16851
16852 (define-public r-subplex
16853 (package
16854 (name "r-subplex")
16855 (version "1.6")
16856 (source
16857 (origin
16858 (method url-fetch)
16859 (uri (cran-uri "subplex" version))
16860 (sha256
16861 (base32
16862 "1yfbfjvpbhgky7vihw3f4jl41pxpqb39z4nc045d5z7z48bdl18d"))))
16863 (build-system r-build-system)
16864 (native-inputs
16865 `(("gfortran" ,gfortran)))
16866 (home-page "https://cran.r-project.org/web/packages/subplex")
16867 (synopsis "Unconstrained optimization using the subplex algorithm")
16868 (description
16869 "This package implements the Subplex optimization algorithm.
16870 It solves unconstrained optimization problems using a simplex method on
16871 subspaces. The method is well suited for optimizing objective functions that
16872 are noisy or are discontinuous at the solution.")
16873 (license license:gpl3+)))
16874
16875 (define-public r-txtplot
16876 (package
16877 (name "r-txtplot")
16878 (version "1.0-4")
16879 (source
16880 (origin
16881 (method url-fetch)
16882 (uri (cran-uri "txtplot" version))
16883 (sha256
16884 (base32
16885 "00sriml48y70j18jz235dsfm5x3a81bnzskfp3hnv6cbjwwsmca4"))))
16886 (build-system r-build-system)
16887 (home-page "https://cran.r-project.org/web/packages/txtplot/")
16888 (synopsis "Text-based plotting")
16889 (description "This package provides functions to produce rudimentary ASCII
16890 graphics directly in the terminal window. This package provides a basic
16891 plotting function (and equivalents of curve, density, acf and barplot) as well
16892 as a boxplot function.")
16893 (license license:lgpl3+)))
16894
16895 (define-public r-bio3d
16896 (package
16897 (name "r-bio3d")
16898 (version "2.4-1")
16899 (source
16900 (origin
16901 (method url-fetch)
16902 (uri (cran-uri "bio3d" version))
16903 (sha256
16904 (base32
16905 "07rw6c2d95gb5myxh31727j0jrchd0xisa3x89jjmf4zzs3vv7v7"))))
16906 (properties `((upstream-name . "bio3d")))
16907 (build-system r-build-system)
16908 (inputs `(("zlib" ,zlib)))
16909 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
16910 (home-page "http://thegrantlab.org/bio3d/")
16911 (synopsis "Biological structure analysis")
16912 (description
16913 "This package provides utilities to process, organize and explore protein
16914 structure, sequence and dynamics data. Features include the ability to read
16915 and write structure, sequence and dynamic trajectory data, perform sequence
16916 and structure database searches, data summaries, atom selection, alignment,
16917 superposition, rigid core identification, clustering, torsion analysis,
16918 distance matrix analysis, structure and sequence conservation analysis, normal
16919 mode analysis, principal component analysis of heterogeneous structure data,
16920 and correlation network analysis from normal mode and molecular dynamics data.
16921 In addition, various utility functions are provided to enable the statistical
16922 and graphical power of the R environment to work with biological sequence and
16923 structural data.")
16924 (license license:gpl2+)))
16925
16926 (define-public r-bios2cor
16927 (package
16928 (name "r-bios2cor")
16929 (version "2.1")
16930 (source
16931 (origin
16932 (method url-fetch)
16933 (uri (cran-uri "Bios2cor" version))
16934 (sha256
16935 (base32
16936 "04wk1cjrrxhpv1kdhd67r1qvjv268xxi0z0r105wy912110z9m6x"))))
16937 (properties `((upstream-name . "Bios2cor")))
16938 (build-system r-build-system)
16939 (propagated-inputs
16940 `(("r-bigmemory" ,r-bigmemory)
16941 ("r-bio3d" ,r-bio3d)
16942 ("r-circular" ,r-circular)
16943 ("r-igraph" ,r-igraph)))
16944 (home-page "https://cran.r-project.org/web/packages/Bios2cor/")
16945 (synopsis "From biological sequences and simulations to correlation analysis")
16946 (description
16947 "This package provides utilities for computation and analysis of
16948 correlation/covariation in multiple sequence alignments and in side chain
16949 motions during molecular dynamics simulations. Features include the
16950 computation of correlation/covariation scores using a variety of scoring
16951 functions between either sequence positions in alignments or side chain
16952 dihedral angles in molecular dynamics simulations and utilities to analyze the
16953 correlation/covariation matrix through a variety of tools including network
16954 representation and principal components analysis. In addition, several
16955 utility functions are based on the R graphical environment to provide friendly
16956 tools for help in data interpretation.")
16957 (license license:gpl2+)))
16958
16959 ;; This package includes minified JavaScript files. When upgrading please
16960 ;; check that there are no new minified JavaScript files.
16961 (define-public r-networkd3
16962 (package
16963 (name "r-networkd3")
16964 (version "0.4")
16965 (source
16966 (origin
16967 (method url-fetch)
16968 (uri (cran-uri "networkD3" version))
16969 (sha256
16970 (base32
16971 "02wxki67drppgfka1is1ykg1f2rxf0x0657c0crj7ipfy62jbf1k"))
16972 (snippet
16973 '(begin
16974 (delete-file "inst/htmlwidgets/lib/d3-4.5.0/d3.min.js")
16975 #t))))
16976 (properties `((upstream-name . "networkD3")))
16977 (build-system r-build-system)
16978 (arguments
16979 `(#:modules ((guix build utils)
16980 (guix build r-build-system)
16981 (srfi srfi-1)
16982 (ice-9 popen))
16983 #:phases
16984 (modify-phases %standard-phases
16985 (add-after 'unpack 'process-javascript
16986 (lambda* (#:key inputs #:allow-other-keys)
16987 (with-directory-excursion "inst/htmlwidgets/lib/"
16988 (call-with-values
16989 (lambda ()
16990 (unzip2
16991 `((,(assoc-ref inputs "d3.v4.js")
16992 "d3-4.5.0/d3.min.js"))))
16993 (lambda (sources targets)
16994 (for-each (lambda (source target)
16995 (format #t "Processing ~a --> ~a~%"
16996 source target)
16997 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
16998 (call-with-output-file target
16999 (lambda (port)
17000 (dump-port minified port)))))
17001 sources targets))))
17002 #t)))))
17003 (native-inputs
17004 `(("uglify-js" ,uglify-js)
17005 ;; NOTE: Make sure that this version of d3 is still valid when
17006 ;; upgrading the package.
17007 ("d3.v4.js"
17008 ,(origin
17009 (method url-fetch)
17010 (uri "https://d3js.org/d3.v4.js")
17011 (sha256
17012 (base32
17013 "0y7byf6kcinfz9ac59jxc4v6kppdazmnyqfav0dm4h550fzfqqlg"))))))
17014 (propagated-inputs
17015 `(("r-htmlwidgets" ,r-htmlwidgets)
17016 ("r-igraph" ,r-igraph)
17017 ("r-magrittr" ,r-magrittr)))
17018 (home-page "https://cran.r-project.org/package=networkD3")
17019 (synopsis "D3 JavaScript network graphs from R")
17020 (description
17021 "This package creates D3 JavaScript network, tree, dendrogram, and Sankey
17022 graphs from R.")
17023 (license license:gpl3+)))
17024
17025 (define-public r-aasea
17026 (package
17027 (name "r-aasea")
17028 (version "1.1.0")
17029 (source
17030 (origin
17031 (method url-fetch)
17032 (uri (cran-uri "aaSEA" version))
17033 (sha256
17034 (base32
17035 "0him4r8qyp0xssgrmdxjs45yn4d28h5anv4jyxxbbs9phb0m6j3h"))))
17036 (properties `((upstream-name . "aaSEA")))
17037 (build-system r-build-system)
17038 (propagated-inputs
17039 `(("r-bios2cor" ,r-bios2cor)
17040 ("r-dt" ,r-dt)
17041 ("r-hmisc" ,r-hmisc)
17042 ("r-magrittr" ,r-magrittr)
17043 ("r-networkd3" ,r-networkd3)
17044 ("r-plotly" ,r-plotly)
17045 ("r-seqinr" ,r-seqinr)
17046 ("r-shiny" ,r-shiny)
17047 ("r-shinydashboard" ,r-shinydashboard)))
17048 (home-page "https://cran.r-project.org/web/packages/aaSEA/")
17049 (synopsis "Amino acid substitution effect analyzer")
17050 (description
17051 "Given a protein multiple sequence alignment, it is a daunting task to
17052 assess the effects of substitutions along sequence length. The aaSEA package
17053 is intended to help researchers to rapidly analyze property changes caused by
17054 single, multiple and correlated amino acid substitutions in proteins.")
17055 (license license:gpl3)))
17056
17057 (define-public r-abacus
17058 (package
17059 (name "r-abacus")
17060 (version "1.0.0")
17061 (source
17062 (origin
17063 (method url-fetch)
17064 (uri (cran-uri "ABACUS" version))
17065 (sha256
17066 (base32
17067 "0m1dnkwjr1522l9ddbzzx7ayxvli17sbmk6s28adpmzzjwh2kd1i"))))
17068 (properties `((upstream-name . "ABACUS")))
17069 (build-system r-build-system)
17070 (propagated-inputs
17071 `(("r-ggplot2" ,r-ggplot2)
17072 ("r-shiny" ,r-shiny)))
17073 (home-page "https://shiny.abdn.ac.uk/Stats/apps/")
17074 (synopsis "Apps-based activities for communicating and understanding statistics")
17075 (description
17076 "This package provides a set of Shiny apps for effective communication
17077 and understanding in statistics. The current version includes properties of
17078 normal distribution, properties of sampling distribution, one-sample z and t
17079 tests, two samples independent (unpaired) t test and analysis of variance.")
17080 (license license:gpl3)))
17081
17082 (define-public r-abc-rap
17083 (package
17084 (name "r-abc-rap")
17085 (version "0.9.0")
17086 (source
17087 (origin
17088 (method url-fetch)
17089 (uri (cran-uri "ABC.RAP" version))
17090 (sha256
17091 (base32
17092 "1kdspln17v0krvahcd55vib4dv5azp60b3r1zf489x10qqbp1mxk"))))
17093 (properties `((upstream-name . "ABC.RAP")))
17094 (build-system r-build-system)
17095 (home-page "https://cran.r-project.org/web/packages/ABC.RAP/")
17096 (synopsis "Array-based CpG region analysis pipeline")
17097 (description
17098 "This package aims to identify candidate genes that are differentially
17099 methylated between cases and controls. It applies Student's t-test and delta
17100 beta analysis to identify candidate genes containing multiple CpG sites.")
17101 (license license:gpl3)))
17102
17103 (define-public r-abcadm
17104 (package
17105 (name "r-abcadm")
17106 (version "1.0")
17107 (source
17108 (origin
17109 (method url-fetch)
17110 (uri (cran-uri "abcADM" version))
17111 (sha256
17112 (base32
17113 "0vcabnnnwc0psv9v3rda5aap9s8cq1pjh02zva3ki64hlavf2a10"))))
17114 (properties `((upstream-name . "abcADM")))
17115 (build-system r-build-system)
17116 (propagated-inputs
17117 `(("r-bh" ,r-bh)
17118 ("r-rcpp" ,r-rcpp)))
17119 (home-page "https://cran.r-project.org/web/packages/abcADM/")
17120 (synopsis "Fit accumulated damage models and estimate reliability using ABC")
17121 (description
17122 "This package provides tools to estimate parameters of accumulated
17123 damage (load duration) models based on failure time data under a Bayesian
17124 framework, using @dfn{Approximate Bayesian Computation} (ABC), and to assess
17125 long-term reliability under stochastic load profiles.")
17126 (license license:gpl3)))
17127
17128 (define-public r-rglpk
17129 (package
17130 (name "r-rglpk")
17131 (version "0.6-4")
17132 (source
17133 (origin
17134 (method url-fetch)
17135 (uri (cran-uri "Rglpk" version))
17136 (sha256
17137 (base32
17138 "19mzpyimzq9zqnbi05j79b2di3nzaln8swggs9p8sqdr60qvr3d2"))))
17139 (properties `((upstream-name . "Rglpk")))
17140 (build-system r-build-system)
17141 (propagated-inputs
17142 `(("r-slam" ,r-slam)))
17143 (inputs
17144 `(("glpk" ,glpk)))
17145 (home-page "https://r-forge.r-project.org/projects/rglp/")
17146 (synopsis "R interface to the GNU Linear Programming Kit")
17147 (description
17148 "This package provides an R interface to the GNU Linear Programming Kit,
17149 software for solving large-scale @dfn{linear programming} (LP), @dfn{mixed
17150 integer linear programming} (MILP) and other related problems.")
17151 ;; Either license
17152 (license (list license:gpl2 license:gpl3))))
17153
17154 (define-public r-abcdefba
17155 (package
17156 (name "r-abcdefba")
17157 (version "0.4")
17158 (source
17159 (origin
17160 (method url-fetch)
17161 (uri (cran-uri "abcdeFBA" version))
17162 (sha256
17163 (base32
17164 "1rxjripy8v6bxi25vdfjnbk24zkmf752qbl73cin6nvnqflwxkx4"))))
17165 (properties `((upstream-name . "abcdeFBA")))
17166 (build-system r-build-system)
17167 (propagated-inputs
17168 `(("r-corrplot" ,r-corrplot)
17169 ("r-lattice" ,r-lattice)
17170 ("r-rgl" ,r-rgl)
17171 ("r-rglpk" ,r-rglpk)))
17172 (home-page "https://cran.r-project.org/web/packages/abcdeFBA/")
17173 (synopsis "A-Biologist-Can-Do-Everything of Flux Balance Analysis with this package")
17174 (description
17175 "This package provides functions for Constraint Based Simulation using
17176 Flux Balance Analysis and informative analysis of the data generated during
17177 simulation.")
17178 (license license:gpl2)))
17179
17180 (define-public r-abcrlda
17181 (package
17182 (name "r-abcrlda")
17183 (version "1.0.3")
17184 (source
17185 (origin
17186 (method url-fetch)
17187 (uri (cran-uri "abcrlda" version))
17188 (sha256
17189 (base32
17190 "04pcdnk2szfpc2ylcw5ds7y895ivy03bycal03kxw7cwylzxasks"))))
17191 (properties `((upstream-name . "abcrlda")))
17192 (build-system r-build-system)
17193 (home-page "https://ieeexplore.ieee.org/document/8720003/")
17194 (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis")
17195 (description
17196 "This package offers methods to perform @dfn{asymptotically
17197 bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for
17198 cost-sensitive binary classification. The bias-correction is an estimate of
17199 the bias term added to regularized discriminant analysis that minimizes the
17200 overall risk.")
17201 (license license:gpl3)))
17202
17203 (define-public r-abemus
17204 (package
17205 (name "r-abemus")
17206 (version "1.0.1")
17207 (source
17208 (origin
17209 (method url-fetch)
17210 (uri (cran-uri "abemus" version))
17211 (sha256
17212 (base32
17213 "1dhllb184byp1yl15rg2w02zgw3iajag7cxshirg47mnmm7n70bb"))))
17214 (properties `((upstream-name . "abemus")))
17215 (build-system r-build-system)
17216 (propagated-inputs
17217 `(("r-data-table" ,r-data-table)))
17218 (home-page "https://cran.r-project.org/web/packages/abemus/")
17219 (synopsis "Adaptive base error model in ultra-deep sequencing data")
17220 (description
17221 "This package provides an implementation of @dfn{Adaptive Base Error
17222 Model in Ultra-deep Sequencing data} (ABEMUS), which combines
17223 platform-specific genetic knowledge and empirical signal to readily detect and
17224 quantify somatic @dfn{single nucleotide variants} (SNVs) in @dfn{circulating
17225 cell free DNA} (cfDNA).")
17226 (license license:gpl3)))
17227
17228 ;; This package includes minified JavaScript files. When upgrading please
17229 ;; check that there are no new minified JavaScript files.
17230 (define-public r-rintrojs
17231 (package
17232 (name "r-rintrojs")
17233 (version "0.2.2")
17234 (source
17235 (origin
17236 (method url-fetch)
17237 (uri (cran-uri "rintrojs" version))
17238 (sha256
17239 (base32
17240 "0vyqb3pyrh12saddar71ac9csn2vkd2j8ln6ygpqys8ky1lc3427"))))
17241 (properties `((upstream-name . "rintrojs")))
17242 (build-system r-build-system)
17243 (arguments
17244 `(#:modules ((guix build utils)
17245 (guix build r-build-system)
17246 (srfi srfi-1)
17247 (ice-9 popen))
17248 #:phases
17249 (modify-phases %standard-phases
17250 (add-after 'unpack 'process-javascript
17251 (lambda* (#:key inputs #:allow-other-keys)
17252 (with-directory-excursion "inst/javascript/introjs/"
17253 (call-with-values
17254 (lambda ()
17255 (unzip2
17256 `((,(assoc-ref inputs "intro.js")
17257 "intro.min.js"))))
17258 (lambda (sources targets)
17259 (for-each (lambda (source target)
17260 (format #t "Processing ~a --> ~a~%"
17261 source target)
17262 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
17263 (call-with-output-file target
17264 (lambda (port)
17265 (dump-port minified port)))))
17266 sources targets))))
17267 #t)))))
17268 (native-inputs
17269 `(("uglify-js" ,uglify-js)
17270 ("intro.js"
17271 ,(origin
17272 (method url-fetch)
17273 (uri "https://raw.githubusercontent.com/usablica/intro.js/v2.9.3/intro.js")
17274 (sha256
17275 (base32
17276 "1qf8n1sfy9qkiqqnfgg0xbhmfgh0g3mqsjas8qhz230h3zzlzxj8"))))))
17277 (propagated-inputs
17278 `(("r-jsonlite" ,r-jsonlite)
17279 ("r-shiny" ,r-shiny)))
17280 (home-page "https://github.com/carlganz/rintrojs")
17281 (synopsis "Wrapper for the Intro.js library")
17282 (description
17283 "This package provides a wrapper for the @url{http://www.introjs.com,
17284 Intro.js} library. This package makes it easy to include step-by-step
17285 introductions, and clickable hints in a Shiny application. It supports both
17286 static introductions in the UI, and programmatic introductions from the
17287 server-side.")
17288 (license license:agpl3+)))
17289
17290 (define-public r-sysfonts
17291 (package
17292 (name "r-sysfonts")
17293 (version "0.8.1")
17294 (source
17295 (origin
17296 (method url-fetch)
17297 (uri (cran-uri "sysfonts" version))
17298 (sha256
17299 (base32
17300 "1xp40hchjfif80a6jj210ghrjcvjjf66vqcssdy7a1j53nl1n994"))))
17301 (properties `((upstream-name . "sysfonts")))
17302 (build-system r-build-system)
17303 (inputs
17304 `(("freetype" ,freetype)
17305 ("libpng" ,libpng)
17306 ("zlib" ,zlib)))
17307 (native-inputs
17308 `(("pkg-config" ,pkg-config)))
17309 (home-page "https://github.com/yixuan/sysfonts")
17310 (synopsis "Loading fonts into R")
17311 (description
17312 "This is a package to simplify loading of system fonts and Google Fonts
17313 into R, in order to support other packages.")
17314 (license license:gpl2)))
17315
17316 (define-public r-showtextdb
17317 (package
17318 (name "r-showtextdb")
17319 (version "3.0")
17320 (source
17321 (origin
17322 (method url-fetch)
17323 (uri (cran-uri "showtextdb" version))
17324 (sha256
17325 (base32
17326 "0hlnc3fhgrdkd46n7hb6id0gg1v0bf8s4679nrr7rchyp455szq2"))))
17327 (properties `((upstream-name . "showtextdb")))
17328 (build-system r-build-system)
17329 (propagated-inputs
17330 `(("r-sysfonts" ,r-sysfonts)))
17331 (home-page "https://cran.r-project.org/web/packages/showtextdb/")
17332 (synopsis "Font files for the 'showtext' package")
17333 (description
17334 "This package provides font files that can be used by the @code{showtext}
17335 package.")
17336 (license license:asl2.0)))
17337
17338 (define-public r-showtext
17339 (package
17340 (name "r-showtext")
17341 (version "0.8-1")
17342 (source
17343 (origin
17344 (method url-fetch)
17345 (uri (cran-uri "showtext" version))
17346 (sha256
17347 (base32
17348 "1n1cd9f4zrv45k5953akclqh1jh7fy122dqkgmbfi5h122v6p2h0"))))
17349 (properties `((upstream-name . "showtext")))
17350 (build-system r-build-system)
17351 (inputs
17352 `(("freetype" ,freetype)
17353 ("libpng" ,libpng)
17354 ("zlib" ,zlib)))
17355 (propagated-inputs
17356 `(("r-showtextdb" ,r-showtextdb)
17357 ("r-sysfonts" ,r-sysfonts)))
17358 (native-inputs
17359 `(("pkg-config" ,pkg-config)
17360 ("r-knitr" ,r-knitr)))
17361 (home-page "https://github.com/yixuan/showtext")
17362 (synopsis "Using fonts more easily in R graphs")
17363 (description
17364 "This package aims to make it easy to use various types of
17365 fonts (TrueType, OpenType, Type 1, web fonts, etc.) in R graphs, and supports
17366 most output formats of R graphics including PNG, PDF and SVG. Text glyphs
17367 will be converted into polygons or raster images, hence after the plot has
17368 been created, it no longer relies on the font files. No external software
17369 such as Ghostscript is needed to use this package.")
17370 (license license:asl2.0)))
17371
17372 (define-public r-emojifont
17373 (package
17374 (name "r-emojifont")
17375 (version "0.5.3")
17376 (source
17377 (origin
17378 (method url-fetch)
17379 (uri (cran-uri "emojifont" version))
17380 (sha256
17381 (base32
17382 "1cdrrl3hvrs8rskyy6zgr7q2mmg8yb9k8sld1m64zsp7y009g19k"))))
17383 (properties `((upstream-name . "emojifont")))
17384 (build-system r-build-system)
17385 (propagated-inputs
17386 `(("r-ggplot2" ,r-ggplot2)
17387 ("r-proto" ,r-proto)
17388 ("r-showtext" ,r-showtext)
17389 ("r-sysfonts" ,r-sysfonts)))
17390 (home-page "https://guangchuangyu.github.io/emojifont")
17391 (synopsis "Emoji and Font Awesome in R graphics")
17392 (description
17393 "This package enables the use of emoji and the Font Awesome glyphs in
17394 both base and ggplot2 graphics.")
17395 (license license:artistic2.0)))
17396
17397 (define-public r-abstractr
17398 (package
17399 (name "r-abstractr")
17400 (version "0.1.0")
17401 (source
17402 (origin
17403 (method url-fetch)
17404 (uri (cran-uri "abstractr" version))
17405 (sha256
17406 (base32
17407 "1ymwp7syrynwd4i8aj2x5n8jdi9d96fjzl6jb09n0bnr5fgl7vig"))))
17408 (properties `((upstream-name . "abstractr")))
17409 (build-system r-build-system)
17410 (propagated-inputs
17411 `(("r-colourpicker" ,r-colourpicker)
17412 ("r-emojifont" ,r-emojifont)
17413 ("r-ggplot2" ,r-ggplot2)
17414 ("r-gridextra" ,r-gridextra)
17415 ("r-rintrojs" ,r-rintrojs)
17416 ("r-shiny" ,r-shiny)
17417 ("r-shinythemes" ,r-shinythemes)))
17418 (home-page "https://matt-kumar.shinyapps.io/portfolio")
17419 (synopsis "R-Shiny application for creating visual abstracts")
17420 (description
17421 "This package provides an R Shiny application to create visual abstracts
17422 for original research. A variety of user defined options and formatting are
17423 included.")
17424 (license license:gpl3)))
17425
17426 (define-public r-qgam
17427 (package
17428 (name "r-qgam")
17429 (version "1.3.2")
17430 (source
17431 (origin
17432 (method url-fetch)
17433 (uri (cran-uri "qgam" version))
17434 (sha256
17435 (base32
17436 "0lks2cj0p7irp1i01756v1l7i26d7alax1fbkc20qd6wpz840fi7"))))
17437 (properties `((upstream-name . "qgam")))
17438 (build-system r-build-system)
17439 (propagated-inputs
17440 `(("r-doparallel" ,r-doparallel)
17441 ("r-mgcv" ,r-mgcv)
17442 ("r-plyr" ,r-plyr)
17443 ("r-shiny" ,r-shiny)))
17444 (native-inputs `(("r-knitr" ,r-knitr)))
17445 (home-page "https://cran.r-project.org/web/packages/qgam/")
17446 (synopsis "Smooth additive quantile regression models")
17447 (description
17448 "This package provides smooth additive quantile regression models, fitted
17449 using the methods of Fasiolo et al. (2017). Differently from @code{quantreg},
17450 the smoothing parameters are estimated automatically by marginal loss
17451 minimization, while the regression coefficients are estimated using either
17452 PIRLS or Newton algorithm. The learning rate is determined so that the
17453 Bayesian credible intervals of the estimated effects have approximately the
17454 correct coverage. The main function is @code{qgam()} which is similar to
17455 @code{gam()} in the @code{mgcv} package, but fits non-parametric quantile
17456 regression models.")
17457 (license license:gpl2+)))
17458
17459 (define-public r-abtest
17460 (package
17461 (name "r-abtest")
17462 (version "0.2.1")
17463 (source
17464 (origin
17465 (method url-fetch)
17466 (uri (cran-uri "abtest" version))
17467 (sha256
17468 (base32
17469 "1zfd13d7dplawk24dbdr1ka8cbdp5w6sxb0zlm7k4dhvn6ksi8h0"))))
17470 (properties `((upstream-name . "abtest")))
17471 (build-system r-build-system)
17472 (propagated-inputs
17473 `(("r-matrix" ,r-matrix)
17474 ("r-mvtnorm" ,r-mvtnorm)
17475 ("r-plotrix" ,r-plotrix)
17476 ("r-qgam" ,r-qgam)
17477 ("r-rcolorbrewer" ,r-rcolorbrewer)
17478 ("r-rcpp" ,r-rcpp)
17479 ("r-sn" ,r-sn)
17480 ("r-truncnorm" ,r-truncnorm)))
17481 (home-page "https://cran.r-project.org/web/packages/abtest/")
17482 (synopsis "Bayesian A/B testing")
17483 (description
17484 "This package provides functions for Bayesian A/B testing including prior
17485 elicitation options based on Kass and Vaidyanathan (1992)
17486 @url{doi:10.1111/j.2517-6161.1992.tb01868.x}.")
17487 (license license:gpl2+)))
17488
17489 (define-public r-accept
17490 (package
17491 (name "r-accept")
17492 (version "0.7.1")
17493 (source
17494 (origin
17495 (method url-fetch)
17496 (uri (cran-uri "accept" version))
17497 (sha256
17498 (base32
17499 "0pn8q0jsi0nb2mm2kv6sjczflflshhy55y7nqqnk70yx9f6wm83y"))))
17500 (properties `((upstream-name . "accept")))
17501 (build-system r-build-system)
17502 (propagated-inputs
17503 `(("r-dplyr" ,r-dplyr)
17504 ("r-extrafont" ,r-extrafont)
17505 ("r-mass" ,r-mass)
17506 ("r-plotly" ,r-plotly)
17507 ("r-stringr" ,r-stringr)
17508 ("r-viridis" ,r-viridis)))
17509 (home-page "https://cran.r-project.org/web/packages/accept/")
17510 (synopsis "Acute COPD Exacerbation Prediction Tool (ACCEPT)")
17511 (description
17512 "This package allows clinicians to predict the rate and severity of
17513 future acute exacerbation in @dfn{Chronic Obstructive Pulmonary
17514 Disease} (COPD) patients, based on the clinical prediction model published in
17515 Adibi et al. (2019) @url{doi:10.1101/651901}.")
17516 (license license:gpl3)))
17517
17518 (define-public r-smpracticals
17519 (package
17520 (name "r-smpracticals")
17521 (version "1.4-3")
17522 (source
17523 (origin
17524 (method url-fetch)
17525 (uri (cran-uri "SMPracticals" version))
17526 (sha256
17527 (base32
17528 "0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
17529 (properties `((upstream-name . "SMPracticals")))
17530 (build-system r-build-system)
17531 (propagated-inputs
17532 `(("r-ellipse" ,r-ellipse)
17533 ("r-mass" ,r-mass)
17534 ("r-nlme" ,r-nlme)
17535 ("r-survival" ,r-survival)))
17536 (home-page "http://statwww.epfl.ch/davison/SM/")
17537 (synopsis "Practicals for use with Davison (2003) Statistical Models")
17538 (description
17539 "This package contains the datasets and a few functions for use with the
17540 practicals outlined in Appendix A of the book Statistical Models (Davison,
17541 2003, Cambridge University Press). The practicals themselves can be found at
17542 @url{http://statwww.epfl.ch/davison/SM/}.")
17543 (license license:gpl2+)))
17544
17545 (define-public r-fgui
17546 (package
17547 (name "r-fgui")
17548 (version "1.0-8")
17549 (source
17550 (origin
17551 (method url-fetch)
17552 (uri (cran-uri "fgui" version))
17553 (sha256
17554 (base32
17555 "024fzd1c7iwqprn26hwjb9l2qlvvyzl449d7iixy0x69djwsrysv"))))
17556 (properties `((upstream-name . "fgui")))
17557 (build-system r-build-system)
17558 (home-page
17559 "https://sites.google.com/site/thomashoffmannproject/software/fgui")
17560 (synopsis "Create GUI for R functions")
17561 (description
17562 "Rapidly create a GUI for a function you created by automatically
17563 creating widgets for arguments of the function. This package automatically
17564 parses help routines for context-sensitive help to these arguments. The
17565 interface is essentially a wrapper to some Tcl/Tk routines to both simplify
17566 and facilitate GUI creation. More advanced Tcl/Tk routines/GUI objects can be
17567 incorporated into the interface for greater customization for the more
17568 experienced.")
17569 ;; Any version of the GPL.
17570 (license (list license:gpl2+ license:gpl3+))))
17571
17572 (define-public r-tcltk2
17573 (package
17574 (name "r-tcltk2")
17575 (version "1.2-11")
17576 (source
17577 (origin
17578 (method url-fetch)
17579 (uri (cran-uri "tcltk2" version))
17580 (sha256
17581 (base32
17582 "1ibxld379600xx7kiqq3fck083s8psry12859980218rnzikl65d"))))
17583 (properties `((upstream-name . "tcltk2")))
17584 (build-system r-build-system)
17585 (inputs
17586 `(("tcl" ,tcl)
17587 ("tk" ,tk)))
17588 (home-page "https://www.sciviews.org/SciViews-R")
17589 (synopsis "Tcl/Tk additions")
17590 (description
17591 "This package provides a series of additional Tcl commands and Tk widgets
17592 with style and various functions to supplement the tcltk package")
17593 (license license:lgpl3)))
17594
17595 (define-public r-accrual
17596 (package
17597 (name "r-accrual")
17598 (version "1.3")
17599 (source
17600 (origin
17601 (method url-fetch)
17602 (uri (cran-uri "accrual" version))
17603 (sha256
17604 (base32
17605 "11clm9s5c5518nmp6hd6pjnp0s28y92b2i2x0xgj4j5g816p4j3z"))))
17606 (properties `((upstream-name . "accrual")))
17607 (build-system r-build-system)
17608 (propagated-inputs
17609 `(("r-fgui" ,r-fgui)
17610 ("r-smpracticals" ,r-smpracticals)
17611 ("r-tcltk2" ,r-tcltk2)))
17612 (home-page "https://cran.r-project.org/web/packages/accrual/")
17613 (synopsis "Bayesian accrual prediction")
17614 (description
17615 "Subject recruitment for medical research is challenging. Slow patient
17616 accrual leads to delay in research. Accrual monitoring during the process of
17617 recruitment is critical. Researchers need reliable tools to manage the
17618 accrual rate. This package provides an implementation of a Bayesian method
17619 that integrates researcher's experience on previous trials and data from the
17620 current study, providing reliable prediction on accrual rate for clinical
17621 studies. It provides functions for Bayesian accrual prediction which can be
17622 easily used by statisticians and clinical researchers.")
17623 (license license:gpl2)))
17624
17625 (define-public r-accrued
17626 (package
17627 (name "r-accrued")
17628 (version "1.4.1")
17629 (source
17630 (origin
17631 (method url-fetch)
17632 (uri (cran-uri "accrued" version))
17633 (sha256
17634 (base32
17635 "05g1jb5914z18rcai1ahn7nihn27vr2rnadwv94gc1j7ivvikvs5"))))
17636 (properties `((upstream-name . "accrued")))
17637 (build-system r-build-system)
17638 (home-page "https://cran.r-project.org/web/packages/accrued/")
17639 (synopsis "Data quality visualization tools for partially accruing data")
17640 (description
17641 "This is a package for visualizing data quality of partially accruing
17642 data.")
17643 (license license:gpl3)))
17644
17645 (define-public r-mda
17646 (package
17647 (name "r-mda")
17648 (version "0.5-2")
17649 (source
17650 (origin
17651 (method url-fetch)
17652 (uri (cran-uri "mda" version))
17653 (sha256
17654 (base32
17655 "1hq0zhhz9klmp4zcr1w8hyn7s1h9kfg57d2l2mfm7psx459j0krl"))))
17656 (properties `((upstream-name . "mda")))
17657 (build-system r-build-system)
17658 (propagated-inputs `(("r-class" ,r-class)))
17659 (native-inputs `(("gfortran" ,gfortran)))
17660 (home-page "https://cran.r-project.org/web/packages/mda/")
17661 (synopsis "Mixture and flexible discriminant analysis")
17662 (description
17663 "This is a package for mixture and flexible discriminant analysis,
17664 @dfn{multivariate adaptive regression splines} (MARS), BRUTO, and so on.")
17665 (license license:gpl2)))
17666
17667 (define-public r-elasticnet
17668 (package
17669 (name "r-elasticnet")
17670 (version "1.3")
17671 (source
17672 (origin
17673 (method url-fetch)
17674 (uri (cran-uri "elasticnet" version))
17675 (sha256
17676 (base32
17677 "0nxcw06d0cp2mbqzg2fm9yys5xm6xx7bfcfvr0avcs8afkvz29j8"))))
17678 (properties `((upstream-name . "elasticnet")))
17679 (build-system r-build-system)
17680 (propagated-inputs
17681 `(("r-lars" ,r-lars)))
17682 (home-page "http://users.stat.umn.edu/~zouxx019/")
17683 (synopsis "Elastic-Net for sparse estimation and sparse PCA")
17684 (description
17685 "This package provides functions for fitting the entire solution path of
17686 the Elastic-Net and also provides functions for estimating sparse Principal
17687 Components. The Lasso solution paths can be computed by the same function.")
17688 (license license:gpl2+)))
17689
17690 (define-public r-sparselda
17691 (package
17692 (name "r-sparselda")
17693 (version "0.1-9")
17694 (source
17695 (origin
17696 (method url-fetch)
17697 (uri (cran-uri "sparseLDA" version))
17698 (sha256
17699 (base32
17700 "1k3sw9kc40yxnfss4vrsx34qxmv8ssddyhbfjhxrdldvblhbwchb"))))
17701 (properties `((upstream-name . "sparseLDA")))
17702 (build-system r-build-system)
17703 (propagated-inputs
17704 `(("r-elasticnet" ,r-elasticnet)
17705 ("r-mass" ,r-mass)
17706 ("r-mda" ,r-mda)))
17707 (home-page "https://www.imm.dtu.dk/~lkhc/")
17708 (synopsis "Sparse discriminant analysis")
17709 (description
17710 "This package performs sparse linear discriminant analysis for Gaussians
17711 and mixture of Gaussian models.")
17712 (license license:gpl2+)))
17713
17714 (define-public r-accsda
17715 (package
17716 (name "r-accsda")
17717 (version "1.0.0")
17718 (source
17719 (origin
17720 (method url-fetch)
17721 (uri (cran-uri "accSDA" version))
17722 (sha256
17723 (base32
17724 "0sgxy5y8kkc1n35657kifwfjsba7y5m1vbr7rkk5lmbpkzahqm61"))))
17725 (properties `((upstream-name . "accSDA")))
17726 (build-system r-build-system)
17727 (propagated-inputs
17728 `(("r-ggplot2" ,r-ggplot2)
17729 ("r-ggthemes" ,r-ggthemes)
17730 ("r-gridextra" ,r-gridextra)
17731 ("r-mass" ,r-mass)
17732 ("r-rarpack" ,r-rarpack)
17733 ("r-sparselda" ,r-sparselda)))
17734 (home-page "https://github.com/gumeo/accSDA/wiki")
17735 (synopsis "Accelerated sparse discriminant analysis")
17736 (description
17737 "This package provides an implementation of sparse linear discriminant
17738 analysis, which is a supervised classification method for multiple classes.
17739 Various novel optimization approaches to this problem are implemented
17740 including @dfn{alternating direction method of multipliers} (ADMM),
17741 @dfn{proximal gradient} (PG) and @dfn{accelerated proximal gradient} (APG).
17742 Functions for performing cross validation are also supplied along with basic
17743 prediction and plotting functions. @dfn{Sparse zero variance
17744 discriminant} (SZVD) analysis is also included in the package.")
17745 (license license:gpl2+)))
17746
17747 (define-public r-ace2fastq
17748 (package
17749 (name "r-ace2fastq")
17750 (version "0.6.0")
17751 (source
17752 (origin
17753 (method url-fetch)
17754 (uri (cran-uri "ace2fastq" version))
17755 (sha256
17756 (base32
17757 "09kk3yyqnr2xp820g0p3aai9a21figigjr9lxkr3zjq2d8gzwfic"))))
17758 (properties `((upstream-name . "ace2fastq")))
17759 (build-system r-build-system)
17760 (propagated-inputs
17761 `(("r-stringr" ,r-stringr)))
17762 (home-page "https://github.com/c5sire/ace2fastq")
17763 (synopsis "ACE file to FASTQ converter")
17764 (description
17765 "The ACE file format is used in genomics to store contigs from sequencing
17766 machines. This tools converts it into FASTQ format. Both formats contain the
17767 sequence characters and their corresponding quality information. Unlike the
17768 FASTQ file, the ACE file stores the quality values numerically. The
17769 conversion algorithm uses the standard Sanger formula. The package
17770 facilitates insertion into pipelines, and content inspection.")
17771 (license license:gpl3)))
17772
17773 (define-public r-rngwell
17774 (package
17775 (name "r-rngwell")
17776 (version "0.10-6")
17777 (source
17778 (origin
17779 (method url-fetch)
17780 (uri (cran-uri "rngWELL" version))
17781 (sha256
17782 (base32
17783 "0pjjcs9pqj7mf0mhb2cwd0aanqpwnm65bm86hk6mi2vw8rgnj2vv"))))
17784 (properties `((upstream-name . "rngWELL")))
17785 (build-system r-build-system)
17786 (home-page "https://cran.r-project.org/web/packages/rngWELL/")
17787 (synopsis "Toolbox for WELL random number generators")
17788 (description
17789 "This is a dedicated package to WELL pseudo random generators, which were
17790 introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
17791 on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
17792 (license license:bsd-3)))
17793
17794 (define-public r-randtoolbox
17795 (package
17796 (name "r-randtoolbox")
17797 (version "1.30.1")
17798 (source
17799 (origin
17800 (method url-fetch)
17801 (uri (cran-uri "randtoolbox" version))
17802 (sha256
17803 (base32
17804 "0qg20ar6qns858jdzqhmfq7yji81czhr6cim257958gqpj66sn95"))))
17805 (properties `((upstream-name . "randtoolbox")))
17806 (build-system r-build-system)
17807 (propagated-inputs
17808 `(("r-rngwell" ,r-rngwell)))
17809 (native-inputs
17810 `(("gfortran" ,gfortran)))
17811 (home-page "https://cran.r-project.org/web/packages/randtoolbox/")
17812 (synopsis "Toolbox for pseudo and quasi random number generation")
17813 (description
17814 "This package provides
17815
17816 @enumerate
17817 @item pseudo random generators, such as general linear
17818 congruential generators, multiple recursive generators and generalized
17819 feedback shift register (SF-Mersenne Twister algorithm and WELL
17820 generators)
17821
17822 @item quasi random generators, such as the Torus algorithm, the Sobol
17823 sequence, the Halton sequence (including the Van der Corput sequence), and
17824
17825 @item some generator tests: the gap test, the serial test, the poker test.
17826 @end enumerate
17827
17828 See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
17829 (license license:bsd-3)))
17830
17831 (define-public r-lhs
17832 (package
17833 (name "r-lhs")
17834 (version "1.0.2")
17835 (source
17836 (origin
17837 (method url-fetch)
17838 (uri (cran-uri "lhs" version))
17839 (sha256
17840 (base32
17841 "0n0i1hr9gmc0hfcs2cvpjvdfgm6k26rhcq3q22r8ic0gfj953572"))))
17842 (properties `((upstream-name . "lhs")))
17843 (build-system r-build-system)
17844 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
17845 (native-inputs
17846 `(("r-knitr" ,r-knitr)))
17847 (home-page "https://github.com/bertcarnell/lhs")
17848 (synopsis "Latin Hypercube Samples")
17849 (description
17850 "This package provides a number of methods for creating and augmenting
17851 Latin Hypercube Samples.")
17852 (license license:gpl3)))
17853
17854 (define-public r-acebayes
17855 (package
17856 (name "r-acebayes")
17857 (version "1.9")
17858 (source
17859 (origin
17860 (method url-fetch)
17861 (uri (cran-uri "acebayes" version))
17862 (sha256
17863 (base32
17864 "1imfwm1vpbb24vfmfn1nljhmaz8429mwjihw34892p387s8h7xz2"))))
17865 (properties `((upstream-name . "acebayes")))
17866 (build-system r-build-system)
17867 (propagated-inputs
17868 `(("r-compare" ,r-compare)
17869 ("r-lhs" ,r-lhs)
17870 ("r-randtoolbox" ,r-randtoolbox)
17871 ("r-rcpp" ,r-rcpp)
17872 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17873 (home-page "https://cran.r-project.org/web/packages/acebayes/")
17874 (synopsis "Optimal Bayesian experimental design using the ACE algorithm")
17875 (description
17876 "Finding an optimal Bayesian experimental design involves maximizing an
17877 objective function given by the expectation of some appropriately chosen
17878 utility function with respect to the joint distribution of unknown
17879 quantities (including responses). This objective function is usually not
17880 available in closed form and the design space can be continuous and of high
17881 dimensionality. This package uses @dfn{Approximate Coordinate Exchange} (ACE)
17882 to maximise an approximation to the expectation of the utility function.")
17883 (license license:gpl2)))
17884
17885 (define-public r-acet
17886 (package
17887 (name "r-acet")
17888 (version "1.8.0")
17889 (source
17890 (origin
17891 (method url-fetch)
17892 (uri (cran-uri "ACEt" version))
17893 (sha256
17894 (base32
17895 "0626d6kg485xjya164wagrr5z223jvi93ywbwpdns7fkm03c0dlq"))))
17896 (properties `((upstream-name . "ACEt")))
17897 (build-system r-build-system)
17898 (propagated-inputs
17899 `(("r-bh" ,r-bh)
17900 ("r-mass" ,r-mass)
17901 ("r-rcpp" ,r-rcpp)
17902 ("r-rcpparmadillo" ,r-rcpparmadillo)))
17903 (home-page "https://cran.r-project.org/web/packages/ACEt/")
17904 (synopsis "Estimating dynamic heritability and twin model comparison")
17905 (description
17906 "This package supports twin models that are able to estimate the dynamic
17907 behaviour of the variance components in the classical twin models with respect
17908 to age using B-splines and P-splines.")
17909 (license license:gpl2+)))
17910
17911 (define-public r-acfmperiod
17912 (package
17913 (name "r-acfmperiod")
17914 (version "1.0.0")
17915 (source
17916 (origin
17917 (method url-fetch)
17918 (uri (cran-uri "acfMPeriod" version))
17919 (sha256
17920 (base32
17921 "1yww8isfrbs2v9s94hx7p2imyszcgadwafdgpj438n2ik0q6p9d5"))))
17922 (properties `((upstream-name . "acfMPeriod")))
17923 (build-system r-build-system)
17924 (propagated-inputs
17925 `(("r-mass" ,r-mass)))
17926 (home-page "https://cran.r-project.org/web/packages/acfMPeriod/")
17927 (synopsis "Estimation of the ACF from the M-periodogram")
17928 (description
17929 "This package support non-robust and robust computations of the sample
17930 autocovariance (ACOVF) and sample autocorrelation functions (ACF) of
17931 univariate and multivariate processes. The methodology consists in reversing
17932 the diagonalization procedure involving the periodogram or the
17933 cross-periodogram and the Fourier transform vectors, and, thus, obtaining the
17934 ACOVF or the ACF as discussed in Fuller (1995)
17935 @url{doi:10.1002/9780470316917}. The robust version is obtained by fitting
17936 robust M-regressors to obtain the M-periodogram or M-cross-periodogram as
17937 discussed in Reisen et al. (2017) @url{doi:10.1016/j.jspi.2017.02.008}.")
17938 (license license:gpl2+)))
17939
17940 (define-public r-gamlss-data
17941 (package
17942 (name "r-gamlss-data")
17943 (version "5.1-4")
17944 (source
17945 (origin
17946 (method url-fetch)
17947 (uri (cran-uri "gamlss.data" version))
17948 (sha256
17949 (base32
17950 "1dgfspbmps6ipzcmw681wjdp320nm50dwsxafgrcwxndqgc7fdqd"))))
17951 (properties `((upstream-name . "gamlss.data")))
17952 (build-system r-build-system)
17953 (home-page "http://www.gamlss.org/")
17954 (synopsis "GAMLSS data")
17955 (description
17956 "This package provides data used as examples to demonstrate GAMLSS
17957 models.")
17958 ;; Either version of the license
17959 (license (list license:gpl2 license:gpl3))))
17960
17961 (define-public r-gamlss
17962 (package
17963 (name "r-gamlss")
17964 (version "5.1-7")
17965 (source
17966 (origin
17967 (method url-fetch)
17968 (uri (cran-uri "gamlss" version))
17969 (sha256
17970 (base32
17971 "0ywqwsp4k6jgnicp1gdsglji61l5cnackl52700v8kmkk83bq4c8"))))
17972 (properties `((upstream-name . "gamlss")))
17973 (build-system r-build-system)
17974 (propagated-inputs
17975 `(("r-gamlss-data" ,r-gamlss-data)
17976 ("r-gamlss-dist" ,r-gamlss-dist)
17977 ("r-mass" ,r-mass)
17978 ("r-nlme" ,r-nlme)
17979 ("r-survival" ,r-survival)))
17980 (home-page "http://www.gamlss.org/")
17981 (synopsis "Generalized additive models for location scale and shape")
17982 (description
17983 "This package provides functions for fitting the generalized additive
17984 models for location scale and shape introduced by Rigby and
17985 Stasinopoulos (2005), @url{doi:10.1111/j.1467-9876.2005.00510.x}. The models
17986 use a distributional regression approach where all the parameters of the
17987 conditional distribution of the response variable are modelled using
17988 explanatory variables.")
17989 ;; Either version of the license
17990 (license (list license:gpl2 license:gpl3))))
17991
17992 (define-public r-acid
17993 (package
17994 (name "r-acid")
17995 (version "1.1")
17996 (source
17997 (origin
17998 (method url-fetch)
17999 (uri (cran-uri "acid" version))
18000 (sha256
18001 (base32
18002 "030i0y8s283ivbsmjccpbv9v7mgbcg2jk9df7vgcbbns74swf9hd"))))
18003 (properties `((upstream-name . "acid")))
18004 (build-system r-build-system)
18005 (propagated-inputs
18006 `(("r-gamlss" ,r-gamlss)
18007 ("r-gamlss-dist" ,r-gamlss-dist)
18008 ("r-hmisc" ,r-hmisc)))
18009 (home-page "https://cran.r-project.org/web/packages/acid/")
18010 (synopsis "Analysing conditional income distributions")
18011 (description
18012 "This package provides functions for the analysis of income distributions
18013 for subgroups of the population as defined by a set of variables like age,
18014 gender, region, etc. This entails a Kolmogorov-Smirnov test for a mixture
18015 distribution as well as functions for moments, inequality measures, entropy
18016 measures and polarisation measures of income distributions. This package thus
18017 aides the analysis of income inequality by offering tools for the exploratory
18018 analysis of income distributions at the disaggregated level.")
18019 (license license:gpl3)))
18020
18021 (define-public r-acm4r
18022 (package
18023 (name "r-acm4r")
18024 (version "1.0")
18025 (source
18026 (origin
18027 (method url-fetch)
18028 (uri (cran-uri "acm4r" version))
18029 (sha256
18030 (base32
18031 "1wqzc35i1rshx0zlmas8y4qkkvy6h9r4i4apscjjv1xg2wjflzxa"))))
18032 (properties `((upstream-name . "acm4r")))
18033 (build-system r-build-system)
18034 (propagated-inputs `(("r-mass" ,r-mass)))
18035 (home-page "https://cran.r-project.org/web/packages/acm4r/")
18036 (synopsis "Align-and-count method comparisons of RFLP data")
18037 (description
18038 "This is a package to compare sequence fragment lengths or molecular
18039 weights from pairs of lanes. The number of matching bands in the
18040 @dfn{Restriction Fragment Length Polymorphism} (RFLP) data is calculated using
18041 the align-and-count method.")
18042 ;; Any version of the GPL
18043 (license (list license:gpl2+ license:gpl3+))))
18044
18045 (define-public r-filematrix
18046 (package
18047 (name "r-filematrix")
18048 (version "1.3")
18049 (source
18050 (origin
18051 (method url-fetch)
18052 (uri (cran-uri "filematrix" version))
18053 (sha256
18054 (base32
18055 "1v3aj1ng742msb0sfdnjsbqb508mqjf8jlq2v33vxldhradw5w0b"))))
18056 (properties `((upstream-name . "filematrix")))
18057 (build-system r-build-system)
18058 ;; These inputs are needed for vignettes
18059 (native-inputs
18060 `(("r-knitr" ,r-knitr)
18061 ("r-rmarkdown" ,r-rmarkdown)
18062 ("pandoc-citeproc" ,pandoc-citeproc)))
18063 (home-page "https://github.com/andreyshabalin/filematrix")
18064 (synopsis "File-backed matrix class with convenient read and write access")
18065 (description
18066 "This package provides an interface for working with large matrices
18067 stored in files, not in computer memory. It supports multiple non-character
18068 data types (double, integer, logical and raw) of various sizes (e.g. 8 and 4
18069 byte real values). Access to parts of the matrix is done by indexing, exactly
18070 as with usual R matrices. It supports very large matrices; the package has
18071 been tested on multi-terabyte matrices. It allows for more than 2^32 rows or
18072 columns, ad allows for quick addition of extra columns to a filematrix.")
18073 (license license:lgpl3)))
18074
18075 (define-public r-acmeeqtl
18076 (package
18077 (name "r-acmeeqtl")
18078 (version "1.6")
18079 (source
18080 (origin
18081 (method url-fetch)
18082 (uri (cran-uri "ACMEeqtl" version))
18083 (sha256
18084 (base32
18085 "049xjv2ym35bbn43zwi68cq27fwdh404vp0r2ca5gxgmmx8kj1cz"))))
18086 (properties `((upstream-name . "ACMEeqtl")))
18087 (build-system r-build-system)
18088 (propagated-inputs
18089 `(("r-filematrix" ,r-filematrix)))
18090 (home-page "https://github.com/andreyshabalin/ACMEeqtl")
18091 (synopsis "Estimation of interpretable eQTL effect sizes")
18092 (description
18093 "This package provides a non-linear model, termed ACME, that reflects a
18094 parsimonious biological model for allelic contributions of cis-acting eQTLs.
18095 With non-linear least-squares algorithm the maximum likelihood parameters can
18096 be estimated. The ACME model provides interpretable effect size estimates and
18097 p-values with well controlled Type-I error.")
18098 (license license:lgpl3)))
18099
18100 (define-public r-acmer
18101 (package
18102 (name "r-acmer")
18103 (version "1.1.0")
18104 (source
18105 (origin
18106 (method url-fetch)
18107 (uri (cran-uri "acmeR" version))
18108 (sha256
18109 (base32
18110 "000b2hqlhj93958nddw0fqb15ahigs08najv2miivym046x04mf7"))))
18111 (properties `((upstream-name . "acmeR")))
18112 (build-system r-build-system)
18113 (propagated-inputs `(("r-foreign" ,r-foreign)))
18114 (home-page "https://cran.r-project.org/web/packages/acmeR/")
18115 (synopsis "ACME estimator of bird and bat mortality by wind turbines")
18116 (description
18117 "This package provides an implementation of the ACME estimator, described
18118 in Wolpert (2015), ACME: A Partially Periodic Estimator of Avian & Chiropteran
18119 Mortality at Wind Turbines. Unlike most other models, this estimator supports
18120 decreasing-hazard Weibull model for persistence; decreasing search proficiency
18121 as carcasses age; variable bleed-through at successive searches; and interval
18122 mortality estimates. The package provides, based on search data, functions
18123 for estimating the mortality inflation factor in Frequentist and Bayesian
18124 settings.")
18125 (license license:expat)))
18126
18127 (define-public r-r-huge
18128 (package
18129 (name "r-r-huge")
18130 (version "0.9.0")
18131 (source
18132 (origin
18133 (method url-fetch)
18134 (uri (cran-uri "R.huge" version))
18135 (sha256
18136 (base32
18137 "13p558qalv60pgr24nsm6mi92ryj65rsbqa6pgdwy0snjqx12bgi"))))
18138 (properties `((upstream-name . "R.huge")))
18139 (build-system r-build-system)
18140 (propagated-inputs
18141 `(("r-r-methodss3" ,r-r-methodss3)
18142 ("r-r-oo" ,r-r-oo)
18143 ("r-r-utils" ,r-r-utils)))
18144 (home-page "https://github.com/HenrikBengtsson/R.huge")
18145 (synopsis "Methods for accessing huge amounts of data")
18146 (description
18147 "This is a deprecated package for accessing huge amounts of data.
18148 Cross-platform alternatives are the following packages: bigmemory (CRAN),
18149 ff (CRAN), or BufferedMatrix (Bioconductor). The main usage of it was inside
18150 the @code{aroma.affymetrix} package.")
18151 (license license:lgpl2.1+)))
18152
18153 (define-public r-r-filesets
18154 (package
18155 (name "r-r-filesets")
18156 (version "2.13.0")
18157 (source
18158 (origin
18159 (method url-fetch)
18160 (uri (cran-uri "R.filesets" version))
18161 (sha256
18162 (base32
18163 "124rygq0bl9n4akxcm868nl30cyk3rz0iprb98zlpk62gci9f5fg"))))
18164 (properties `((upstream-name . "R.filesets")))
18165 (build-system r-build-system)
18166 (propagated-inputs
18167 `(("r-digest" ,r-digest)
18168 ("r-r-cache" ,r-r-cache)
18169 ("r-r-methodss3" ,r-r-methodss3)
18170 ("r-r-oo" ,r-r-oo)
18171 ("r-r-utils" ,r-r-utils)))
18172 (home-page "https://github.com/HenrikBengtsson/R.filesets")
18173 (synopsis "Easy handling of and access to files")
18174 (description
18175 "This package provides classes and methods to locate, setup, subset,
18176 navigate and iterate file sets, i.e. sets of files located in one or more
18177 directories on the file system. The API is designed such that these classes
18178 can be extended via inheritance to provide a richer API for special file
18179 formats. Moreover, a specific name format is defined such that filenames and
18180 directories can be considered to have full names which consists of a name
18181 followed by comma-separated tags. This adds additional flexibility to
18182 identify file sets and individual files.")
18183 (license license:lgpl2.1+)))
18184
18185 (define-public r-r-devices
18186 (package
18187 (name "r-r-devices")
18188 (version "2.16.1")
18189 (source
18190 (origin
18191 (method url-fetch)
18192 (uri (cran-uri "R.devices" version))
18193 (sha256
18194 (base32
18195 "15zlnq3g27whq26fbcy5zfl5hiddm256h4rga4frblg6wqlbkvdd"))))
18196 (properties `((upstream-name . "R.devices")))
18197 (build-system r-build-system)
18198 (propagated-inputs
18199 `(("r-base64enc" ,r-base64enc)
18200 ("r-r-methodss3" ,r-r-methodss3)
18201 ("r-r-oo" ,r-r-oo)
18202 ("r-r-utils" ,r-r-utils)))
18203 (home-page "https://github.com/HenrikBengtsson/R.devices")
18204 (synopsis "Unified handling of graphics devices")
18205 (description
18206 "This package provides functions for creating plots and image files in a
18207 unified way regardless of output format (EPS, PDF, PNG, SVG, TIFF, WMF, etc.).
18208 Default device options as well as scales and aspect ratios are controlled in a
18209 uniform way across all device types. Switching output format requires minimal
18210 changes in code. This package is ideal for large-scale batch processing,
18211 because it will never leave open graphics devices or incomplete image files
18212 behind, even on errors or user interrupts.")
18213 (license license:lgpl2.1+)))
18214
18215 (define-public r-acnr
18216 (package
18217 (name "r-acnr")
18218 (version "1.0.0")
18219 (source
18220 (origin
18221 (method url-fetch)
18222 (uri (cran-uri "acnr" version))
18223 (sha256
18224 (base32
18225 "087hq4i7jp67ba2finzsqjfnqbiprl33na6ryjv9zqzsdawj9cym"))))
18226 (properties `((upstream-name . "acnr")))
18227 (build-system r-build-system)
18228 (home-page "https://github.com/mpierrejean/acnr")
18229 (synopsis "Annotated copy-number regions")
18230 (description
18231 "This package provides SNP array data from different types of copy-number
18232 regions. These regions were identified manually by the authors of the package
18233 and may be used to generate realistic data sets with known truth.")
18234 (license license:lgpl2.1+)))
18235
18236 (define-public r-acopula
18237 (package
18238 (name "r-acopula")
18239 (version "0.9.3")
18240 (source
18241 (origin
18242 (method url-fetch)
18243 (uri (cran-uri "acopula" version))
18244 (sha256
18245 (base32
18246 "0vvbbw8pfs9jwfz5c57lw48pr0qj661r0ys007q6zf9jmlrhx1ln"))))
18247 (properties `((upstream-name . "acopula")))
18248 (build-system r-build-system)
18249 (home-page "https://cran.r-project.org/web/packages/acopula/")
18250 (synopsis "Modelling dependence with multivariate Archimax copulas")
18251 (description
18252 "Archimax copulas are a mixture of Archimedean and EV copulas. This
18253 package provides definitions of several parametric families of generator and
18254 dependence function, computes CDF and PDF, estimates parameters, tests for
18255 goodness of fit, generates random sample and checks copula properties for
18256 custom constructs. In the 2-dimensional case explicit formulas for density
18257 are used, contrary to higher dimensions when all derivatives are linearly
18258 approximated. Several non-archimax families (normal, FGM, Plackett) are
18259 provided as well.")
18260 (license license:gpl2)))
18261
18262 (define-public r-tuner
18263 (package
18264 (name "r-tuner")
18265 (version "1.3.3")
18266 (source
18267 (origin
18268 (method url-fetch)
18269 (uri (cran-uri "tuneR" version))
18270 (sha256
18271 (base32
18272 "0av978m4h2iqazyfq6n2cgkh4wpllihh7s29lah2nb8ngc0w5hxx"))))
18273 (properties `((upstream-name . "tuneR")))
18274 (build-system r-build-system)
18275 (propagated-inputs `(("r-signal" ,r-signal)))
18276 (home-page "https://cran.r-project.org/web/packages/tuneR/")
18277 (synopsis "Analysis of music and speech")
18278 (description
18279 "This is a package for the analysis of music and speech. Analyze music
18280 and speech, extract features like MFCCs, handle wave files and their
18281 representation in various ways, read MP3, read MIDI, perform steps of a
18282 transcription, ...")
18283 ;; Either of these versions.
18284 (license (list license:gpl2 license:gpl3))))
18285
18286 (define-public r-seewave
18287 (package
18288 (name "r-seewave")
18289 (version "2.1.6")
18290 (source
18291 (origin
18292 (method url-fetch)
18293 (uri (cran-uri "seewave" version))
18294 (sha256
18295 (base32
18296 "123h3q0gps0vy9sikr7gjphnv9m3l4h4mykiydjllmrpaw1s1844"))))
18297 (properties `((upstream-name . "seewave")))
18298 (build-system r-build-system)
18299 (inputs
18300 `(("libsndfile" ,libsndfile)))
18301 (propagated-inputs
18302 `(("r-tuner" ,r-tuner)))
18303 (home-page "http://rug.mnhn.fr/seewave")
18304 (synopsis "Sound analysis and synthesis")
18305 (description
18306 "This package provides functions for analysing, manipulating, displaying,
18307 editing and synthesizing time waves (particularly sound). This package
18308 processes time analysis (oscillograms and envelopes), spectral content,
18309 resonance quality factor, entropy, cross correlation and autocorrelation,
18310 zero-crossing, dominant frequency, analytic signal, frequency coherence, 2D
18311 and 3D spectrograms and many other analyses.")
18312 (license license:gpl2+)))
18313
18314 (define-public r-acousticndlcoder
18315 (package
18316 (name "r-acousticndlcoder")
18317 (version "1.0.2")
18318 (source
18319 (origin
18320 (method url-fetch)
18321 (uri (cran-uri "AcousticNDLCodeR" version))
18322 (sha256
18323 (base32
18324 "1fgzgwanpv2pzy74xdk3hamc44p8qch467wh163dxby8jr9ik0sb"))))
18325 (properties
18326 `((upstream-name . "AcousticNDLCodeR")))
18327 (build-system r-build-system)
18328 (propagated-inputs
18329 `(("r-seewave" ,r-seewave)
18330 ("r-tuner" ,r-tuner)
18331 ("r-zoo" ,r-zoo)))
18332 (home-page "https://cran.r-project.org/web/packages/AcousticNDLCodeR/")
18333 (synopsis "Coding sound files for use with NDL")
18334 (description
18335 "Make acoustic cues to use with the R package @code{ndl}.
18336 The package implements functions used in the PLoS ONE paper \"Words from
18337 spontaneous conversational speech can be recognized with human-like accuracy
18338 by an error-driven learning algorithm that discriminates between meanings
18339 straight from smart acoustic features, bypassing the phoneme as recognition
18340 unit.\" @url{doi:10.1371/journal.pone.0174623}")
18341 (license license:gpl2+)))
18342
18343 (define-public r-acp
18344 (package
18345 (name "r-acp")
18346 (version "2.1")
18347 (source
18348 (origin
18349 (method url-fetch)
18350 (uri (cran-uri "acp" version))
18351 (sha256
18352 (base32
18353 "0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
18354 (properties `((upstream-name . "acp")))
18355 (build-system r-build-system)
18356 (propagated-inputs
18357 `(("r-quantmod" ,r-quantmod)
18358 ("r-tseries" ,r-tseries)))
18359 (home-page "https://cran.r-project.org/web/packages/acp/")
18360 (synopsis "Autoregressive conditional Poisson")
18361 (description
18362 "This package supports the analysis of count data exhibiting
18363 autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
18364 model (ACP(p,q)) proposed by Heinen (2003).")
18365 (license license:gpl2)))
18366
18367 (define-public r-ada
18368 (package
18369 (name "r-ada")
18370 (version "2.0-5")
18371 (source
18372 (origin
18373 (method url-fetch)
18374 (uri (cran-uri "ada" version))
18375 (sha256
18376 (base32
18377 "1h3a07czp0w3hrhjcg1fz721y8vsfclzqi3rq8qfzgpfb4h1f06r"))))
18378 (properties `((upstream-name . "ada")))
18379 (build-system r-build-system)
18380 (propagated-inputs `(("r-rpart" ,r-rpart)))
18381 (home-page "https://cran.r-project.org/web/packages/ada/")
18382 (synopsis "Stochastic boosting")
18383 (description
18384 "This package provides a straightforward, well-documented, and broad
18385 boosting routine for classification, ideally suited for small to
18386 moderate-sized data sets. It performs discrete, real, and gentle boost under
18387 both exponential and logistic loss on a given data set.")
18388 ;; Any version of the GPL.
18389 (license (list license:gpl2+ license:gpl3+))))
18390
18391 (define-public r-genalg
18392 (package
18393 (name "r-genalg")
18394 (version "0.2.0")
18395 (source
18396 (origin
18397 (method url-fetch)
18398 (uri (cran-uri "genalg" version))
18399 (sha256
18400 (base32
18401 "1wzfamq8k5yhwbdx0wy1w5bks93brj0p890xxc4yqrja4w38ja3s"))))
18402 (properties `((upstream-name . "genalg")))
18403 (build-system r-build-system)
18404 (home-page "https://github.com/egonw/genalg")
18405 (synopsis "R based genetic algorithm")
18406 (description
18407 "This package provides an R based genetic algorithm for binary and
18408 floating point chromosomes.")
18409 (license license:gpl2)))
18410
18411 (define-public r-kernelfactory
18412 (package
18413 (name "r-kernelfactory")
18414 (version "0.3.0")
18415 (source
18416 (origin
18417 (method url-fetch)
18418 (uri (cran-uri "kernelFactory" version))
18419 (sha256
18420 (base32
18421 "001kw9k3ivd4drd4mwqapkkk3f4jgljiaprhg2630hmll064s89j"))))
18422 (properties `((upstream-name . "kernelFactory")))
18423 (build-system r-build-system)
18424 (propagated-inputs
18425 `(("r-auc" ,r-auc)
18426 ("r-genalg" ,r-genalg)
18427 ("r-kernlab" ,r-kernlab)
18428 ("r-randomforest" ,r-randomforest)))
18429 (home-page "https://cran.r-project.org/web/packages/kernelFactory/")
18430 (synopsis "Ensemble of kernel machines")
18431 (description
18432 "Kernel factory is an ensemble method where each base classifier (random
18433 forest) is fit on the kernel matrix of a subset of the training data.")
18434 (license license:gpl2+)))
18435
18436 (define-public r-dummies
18437 (package
18438 (name "r-dummies")
18439 (version "1.5.6")
18440 (source
18441 (origin
18442 (method url-fetch)
18443 (uri (cran-uri "dummies" version))
18444 (sha256
18445 (base32
18446 "01f84crqx17xd6xy55qxlvsj3knm8lhw7jl26p2rh2w3y0nvqlbm"))))
18447 (properties `((upstream-name . "dummies")))
18448 (build-system r-build-system)
18449 (home-page "https://decisionpatterns.com")
18450 (synopsis "Create dummy/indicator variables flexibly and efficiently")
18451 (description
18452 "This package lets you expand factors, characters and other eligible
18453 classes into dummy/indicator variables.")
18454 (license license:gpl2+)))
18455
18456 (define-public r-acrm
18457 (package
18458 (name "r-acrm")
18459 (version "0.1.1")
18460 (source
18461 (origin
18462 (method url-fetch)
18463 (uri (cran-uri "aCRM" version))
18464 (sha256
18465 (base32
18466 "0kzp568hd9c9a9qgniia5s5gv0q5f89xfvvwpzb197gqhs3x092v"))))
18467 (properties `((upstream-name . "aCRM")))
18468 (build-system r-build-system)
18469 (propagated-inputs
18470 `(("r-ada" ,r-ada)
18471 ("r-dummies" ,r-dummies)
18472 ("r-kernelfactory" ,r-kernelfactory)
18473 ("r-randomforest" ,r-randomforest)))
18474 (home-page "https://cran.r-project.org/web/packages/aCRM/")
18475 (synopsis "Convenience functions for analytical customer relationship management")
18476 (description
18477 "This package provides convenience functions for data preparation and
18478 modeling often used in @dfn{analytical customer relationship
18479 management} (aCRM).")
18480 (license license:gpl2+)))
18481
18482 (define-public r-treeclust
18483 (package
18484 (name "r-treeclust")
18485 (version "1.1-7")
18486 (source
18487 (origin
18488 (method url-fetch)
18489 (uri (cran-uri "treeClust" version))
18490 (sha256
18491 (base32
18492 "1s7kh6q0bkixsygrip95zf1bi10ihddsa5lq9dfxd68yh8rsby6z"))))
18493 (properties `((upstream-name . "treeClust")))
18494 (build-system r-build-system)
18495 (propagated-inputs
18496 `(("r-cluster" ,r-cluster)
18497 ("r-rpart" ,r-rpart)))
18498 (home-page "https://cran.r-project.org/web/packages/treeClust/")
18499 (synopsis "Cluster distances through trees")
18500 (description
18501 "This package provides tools to create a measure of inter-point
18502 dissimilarity useful for clustering mixed data, and, optionally, perform the
18503 clustering.")
18504 (license license:gpl2+)))
18505
18506 (define-public r-acrosstic
18507 (package
18508 (name "r-acrosstic")
18509 (version "1.0-3")
18510 (source
18511 (origin
18512 (method url-fetch)
18513 (uri (cran-uri "AcrossTic" version))
18514 (sha256
18515 (base32
18516 "03180h79jhjd66ibrnsfp3yyp2jlfysp7cymw46phzj2palghsc0"))))
18517 (properties `((upstream-name . "AcrossTic")))
18518 (build-system r-build-system)
18519 (propagated-inputs
18520 `(("r-lpsolve" ,r-lpsolve)
18521 ("r-treeclust" ,r-treeclust)))
18522 (home-page "https://cran.r-project.org/web/packages/AcrossTic/")
18523 (synopsis "Cost-minimal regular spanning subgraph with TreeClust")
18524 (description
18525 "This is a package for constructing minimum-cost regular spanning
18526 subgraph as part of a non-parametric two-sample test for equality of
18527 distribution.")
18528 (license license:gpl2+)))
18529
18530 (define-public r-acrt
18531 (package
18532 (name "r-acrt")
18533 (version "1.0.1")
18534 (source
18535 (origin
18536 (method url-fetch)
18537 (uri (cran-uri "acrt" version))
18538 (sha256
18539 (base32
18540 "0y9ndcq8ffpfrv7w9rikm4zn68jpsj6baqisq9kp2433xrwzdb6s"))))
18541 (properties `((upstream-name . "acrt")))
18542 (build-system r-build-system)
18543 (propagated-inputs
18544 `(("r-rcpp" ,r-rcpp)
18545 ("r-rcppeigen" ,r-rcppeigen)
18546 ("r-sandwich" ,r-sandwich)))
18547 (home-page "https://cran.r-project.org/web/packages/acrt/")
18548 (synopsis "Autocorrelation robust testing")
18549 (description
18550 "This package provides functions for testing affine hypotheses on the
18551 regression coefficient vector in regression models with autocorrelated
18552 errors.")
18553 (license license:gpl2)))
18554
18555 (define-public r-acs
18556 (package
18557 (name "r-acs")
18558 (version "2.1.4")
18559 (source
18560 (origin
18561 (method url-fetch)
18562 (uri (cran-uri "acs" version))
18563 (sha256
18564 (base32
18565 "0ajw9rf8l8akcvgqvbxjvryc6wjx74521xyxswz2b0bky3m6kah5"))))
18566 (properties `((upstream-name . "acs")))
18567 (build-system r-build-system)
18568 (propagated-inputs
18569 `(("r-httr" ,r-httr)
18570 ("r-plyr" ,r-plyr)
18571 ("r-rcpp" ,r-rcpp)
18572 ("r-stringr" ,r-stringr)
18573 ("r-xml" ,r-xml)))
18574 (home-page "https://dusp.mit.edu/faculty/ezra-haber-glenn")
18575 (synopsis "Work with data from the US Census")
18576 (description
18577 "This package provides a general toolkit for downloading, managing,
18578 analyzing, and presenting data from the
18579 @url{https://www.census.gov/data/developers/data-sets.html, U.S. Census},
18580 including SF1 (Decennial short-form), SF3 (Decennial long-form), and the
18581 American Community Survey (ACS). Confidence intervals provided with ACS data
18582 are converted to standard errors to be bundled with estimates in complex
18583 @code{acs} objects. The package provides new methods to conduct standard
18584 operations on @code{acs} objects and present/plot data in statistically
18585 appropriate ways.")
18586 (license license:gpl3)))
18587
18588 (define-public r-acss-data
18589 (package
18590 (name "r-acss-data")
18591 (version "1.0")
18592 (source
18593 (origin
18594 (method url-fetch)
18595 (uri (cran-uri "acss.data" version))
18596 (sha256
18597 (base32
18598 "09kl4179ipr8bq19g89xcdi1xxs397zcx5cvgp6viy8gn687ilgv"))))
18599 (properties `((upstream-name . "acss.data")))
18600 (build-system r-build-system)
18601 (home-page "http://complexitycalculator.com/methodology.html")
18602 (synopsis "Data for algorithmic complexity of short strings")
18603 (description
18604 "This is a data only package providing the algorithmic complexity of
18605 short strings, computed using the coding theorem method. For a given set of
18606 symbols in a string, all possible or a large number of random samples of
18607 Turing machines with a given number of states (e.g., 5) and number of symbols
18608 corresponding to the number of symbols in the strings were simulated until
18609 they reached a halting state or failed to end. This package contains data on
18610 4.5 million strings from length 1 to 12 simulated on Turing machines with 2,
18611 4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
18612 distribution of the halting states.")
18613 (license license:gpl2+)))
18614
18615 (define-public r-acss
18616 (package
18617 (name "r-acss")
18618 (version "0.2-5")
18619 (source
18620 (origin
18621 (method url-fetch)
18622 (uri (cran-uri "acss" version))
18623 (sha256
18624 (base32
18625 "0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
18626 (properties `((upstream-name . "acss")))
18627 (build-system r-build-system)
18628 (propagated-inputs
18629 `(("r-acss-data" ,r-acss-data)
18630 ("r-zoo" ,r-zoo)))
18631 (home-page "http://complexitycalculator.com/methodology.html")
18632 (synopsis "Algorithmic complexity for short strings")
18633 (description
18634 "The main purpose of this package is to provide the algorithmic
18635 complexity for short strings, an approximation of the Kolmogorov Complexity of
18636 a short string using the coding theorem method. While the database containing
18637 the complexity is provided in the data only package @code{acss.data}, this
18638 package provides functions accessing the data such as @code{prob_random}
18639 returning the posterior probability that a given string was produced by a
18640 random process. In addition, two traditional (but problematic) measures of
18641 complexity are also provided: entropy and change complexity.")
18642 (license license:gpl2+)))
18643
18644 (define-public r-acswr
18645 (package
18646 (name "r-acswr")
18647 (version "1.0")
18648 (source
18649 (origin
18650 (method url-fetch)
18651 (uri (cran-uri "ACSWR" version))
18652 (sha256
18653 (base32
18654 "195vjrkang5cl7gwsna0aq4p0h4jym9xg9yh94bnf8vq6wf8j83n"))))
18655 (properties `((upstream-name . "ACSWR")))
18656 (build-system r-build-system)
18657 (propagated-inputs
18658 `(("r-mass" ,r-mass)))
18659 (home-page "https://cran.r-project.org/web/packages/ACSWR/")
18660 (synopsis "Companion package for the book \"A Course in Statistics with R\"")
18661 (description
18662 "This is a companion package for the book \"A Course in Statistics with
18663 R\" (ISBN 978-1-119-15272-9.)")
18664 (license license:gpl2)))
18665
18666 (define-public r-alabama
18667 (package
18668 (name "r-alabama")
18669 (version "2015.3-1")
18670 (source
18671 (origin
18672 (method url-fetch)
18673 (uri (cran-uri "alabama" version))
18674 (sha256
18675 (base32
18676 "0mlgk929gdismikwx4k2ndqq57nnqj7mlgvd3479b214hksgq036"))))
18677 (properties `((upstream-name . "alabama")))
18678 (build-system r-build-system)
18679 (propagated-inputs `(("r-numderiv" ,r-numderiv)))
18680 (home-page "https://cran.r-project.org/web/packages/alabama/")
18681 (synopsis "Constrained nonlinear optimization")
18682 (description
18683 "Alabama stands for Augmented Lagrangian Adaptive Barrier Minimization
18684 Algorithm; it is used for optimizing smooth nonlinear objective functions with
18685 constraints. Linear or nonlinear equality and inequality constraints are
18686 allowed.")
18687 (license license:gpl2+)))
18688
18689 (define-public r-gdina
18690 (package
18691 (name "r-gdina")
18692 (version "2.8.0")
18693 (source
18694 (origin
18695 (method url-fetch)
18696 (uri (cran-uri "GDINA" version))
18697 (sha256
18698 (base32
18699 "0chxnhp37xfd78gafkgwqrmc0jf3pvpdyrkc438kl0l53fb7dld7"))))
18700 (properties `((upstream-name . "GDINA")))
18701 (build-system r-build-system)
18702 (propagated-inputs
18703 `(("r-alabama" ,r-alabama)
18704 ("r-ggplot2" ,r-ggplot2)
18705 ("r-mass" ,r-mass)
18706 ("r-nloptr" ,r-nloptr)
18707 ("r-numderiv" ,r-numderiv)
18708 ("r-rcpp" ,r-rcpp)
18709 ("r-rcpparmadillo" ,r-rcpparmadillo)
18710 ("r-rsolnp" ,r-rsolnp)
18711 ("r-shiny" ,r-shiny)
18712 ("r-shinydashboard" ,r-shinydashboard)))
18713 (native-inputs
18714 `(("r-knitr" ,r-knitr)))
18715 (home-page "https://github.com/Wenchao-Ma/GDINA")
18716 (synopsis "Generalized DINA model framework")
18717 (description
18718 "This package provides a set of psychometric tools for cognitive
18719 diagnosis modeling based on the generalized deterministic inputs, noisy and
18720 gate (G-DINA) model by de la Torre (2011) @url{doi:10.1007/s11336-011-9207-7}
18721 and its extensions, including the sequential G-DINA model by Ma and de la
18722 Torre (2016) @url{doi:10.1111/bmsp.12070} for polytomous responses, and the
18723 polytomous G-DINA model by Chen and de la Torre
18724 @url{doi:10.1177/0146621613479818} for polytomous attributes. Joint attribute
18725 distribution can be independent, saturated, higher-order, loglinear smoothed
18726 or structured. Q-matrix validation, item and model fit statistics, model
18727 comparison at test and item level and differential item functioning can also
18728 be conducted. A graphical user interface is also provided.")
18729 (license license:gpl3)))
18730
18731 (define-public r-actcd
18732 (package
18733 (name "r-actcd")
18734 (version "1.2-0")
18735 (source
18736 (origin
18737 (method url-fetch)
18738 (uri (cran-uri "ACTCD" version))
18739 (sha256
18740 (base32
18741 "0mzjxxr2zfdidw8ibh6w8mvpkw3q3nvngqi05g9ind26ckvk053p"))))
18742 (properties `((upstream-name . "ACTCD")))
18743 (build-system r-build-system)
18744 (propagated-inputs
18745 `(("r-gdina" ,r-gdina)
18746 ("r-r-methodss3" ,r-r-methodss3)))
18747 (native-inputs
18748 `(("gfortran" ,gfortran)))
18749 (home-page "https://cran.r-project.org/web/packages/ACTCD/")
18750 (synopsis "Asymptotic classification theory for cognitive diagnosis")
18751 (description
18752 "This is a package supporting cluster analysis for cognitive diagnosis
18753 based on the Asymptotic Classification Theory (Chiu, Douglas & Li, 2009;
18754 @url{doi:10.1007/s11336-009-9125-0}). Given the sample statistic of
18755 sum-scores, cluster analysis techniques can be used to classify examinees into
18756 latent classes based on their attribute patterns. In addition to the
18757 algorithms used to classify data, three labeling approaches are proposed to
18758 label clusters so that examinees' attribute profiles can be obtained.")
18759 (license license:gpl2+)))
18760
18761 (define-public r-ineq
18762 (package
18763 (name "r-ineq")
18764 (version "0.2-13")
18765 (source
18766 (origin
18767 (method url-fetch)
18768 (uri (cran-uri "ineq" version))
18769 (sha256
18770 (base32
18771 "09fsxyrh0j7mwmb5hkhmrzgcy7kf85jxkh7zlwpgqgcsyl1n91z0"))))
18772 (properties `((upstream-name . "ineq")))
18773 (build-system r-build-system)
18774 (home-page "https://cran.r-project.org/web/packages/ineq/")
18775 (synopsis "Measuring inequality, concentration, and poverty")
18776 (description
18777 "This package provides tools for measuring inequality, concentration, and
18778 poverty measures. It provides both empirical and theoretical Lorenz curves.")
18779 ;; Either of these two versions.
18780 (license (list license:gpl2 license:gpl3))))
18781
18782 (define-public r-actfrag
18783 (package
18784 (name "r-actfrag")
18785 (version "0.1.1")
18786 (source
18787 (origin
18788 (method url-fetch)
18789 (uri (cran-uri "ActFrag" version))
18790 (sha256
18791 (base32
18792 "08r3gwjz4fkyy85dxqix0ffm5xyq45032qv3snnzxnlqxslxbqn1"))))
18793 (properties `((upstream-name . "ActFrag")))
18794 (build-system r-build-system)
18795 (propagated-inputs
18796 `(("r-accelerometry" ,r-accelerometry)
18797 ("r-dplyr" ,r-dplyr)
18798 ("r-ineq" ,r-ineq)
18799 ("r-survival" ,r-survival)
18800 ("r-tidyr" ,r-tidyr)))
18801 (home-page "https://github.com/junruidi/ActFrag")
18802 (synopsis "Activity fragmentation metrics extraction")
18803 (description
18804 "This package provides functions to extract commonly used fragmentation
18805 metrics to quantify time accumulation strategies based on minute level
18806 actigraphy-measured activity counts data.")
18807 (license license:gpl3)))
18808
18809 (define-public r-fda
18810 (package
18811 (name "r-fda")
18812 (version "5.1.5.1")
18813 (source
18814 (origin
18815 (method url-fetch)
18816 (uri (cran-uri "fda" version))
18817 (sha256
18818 (base32
18819 "0zi001cw5536x6rgr4l0skva7fk53663zf6ggnsa8znml090sihm"))))
18820 (properties `((upstream-name . "fda")))
18821 (build-system r-build-system)
18822 (propagated-inputs
18823 `(("r-matrix" ,r-matrix)))
18824 (home-page "https://www.functionaldata.org")
18825 (synopsis "Functional data analysis")
18826 (description
18827 "These functions were developed to support functional data analysis as
18828 described in Ramsay, J. O. and Silverman, B. W. (2005) Functional Data
18829 Analysis. The package includes data sets and script files working many
18830 examples.")
18831 (license license:gpl2+)))
18832
18833 (define-public r-actigraphy
18834 (package
18835 (name "r-actigraphy")
18836 (version "1.4.0")
18837 (source
18838 (origin
18839 (method url-fetch)
18840 (uri (cran-uri "Actigraphy" version))
18841 (sha256
18842 (base32
18843 "0bpmvszzv5fm72nar3wgnmfl5am7znqfajmlbv38ihkbi7jbwk20"))))
18844 (properties `((upstream-name . "Actigraphy")))
18845 (build-system r-build-system)
18846 (propagated-inputs
18847 `(("r-fda" ,r-fda)))
18848 (home-page "https://cran.r-project.org/web/packages/Actigraphy/")
18849 (synopsis "Actigraphy data analysis")
18850 (description
18851 "This package provides tools for functional linear modeling and analysis
18852 of actigraphy data.")
18853 (license license:asl2.0)))
18854
18855 (define-public r-activedriver
18856 (package
18857 (name "r-activedriver")
18858 (version "1.0.0")
18859 (source
18860 (origin
18861 (method url-fetch)
18862 (uri (cran-uri "ActiveDriver" version))
18863 (sha256
18864 (base32
18865 "10c7ga48fwvpd5mc4dqiyw4kc2l0iz5qn4hg7xk15r1qmm5rsipa"))))
18866 (properties `((upstream-name . "ActiveDriver")))
18867 (build-system r-build-system)
18868 (propagated-inputs
18869 `(("r-mass" ,r-mass)))
18870 (home-page "https://cran.r-project.org/web/packages/ActiveDriver/")
18871 (synopsis "Tools for finding cancer driver proteins")
18872 (description
18873 "This package provides a mutation analysis tool that discovers cancer
18874 driver genes with frequent mutations in protein signalling sites such as
18875 post-translational modifications (phosphorylation, ubiquitination, etc). The
18876 Poisson generalized linear regression model identifies genes where cancer
18877 mutations in signalling sites are more frequent than expected from the
18878 sequence of the entire gene. Integration of mutations with signalling
18879 information helps find new driver genes and propose candidate mechanisms to
18880 known drivers.")
18881 (license license:gpl2+)))
18882
18883 (define-public r-activitycounts
18884 (package
18885 (name "r-activitycounts")
18886 (version "0.1.2")
18887 (source
18888 (origin
18889 (method url-fetch)
18890 (uri (cran-uri "activityCounts" version))
18891 (sha256
18892 (base32
18893 "0zgxr2sk3a8kmygfxx1p5hnrfwdkxx7php6jlrhm8wv6052ck8jz"))))
18894 (properties
18895 `((upstream-name . "activityCounts")))
18896 (build-system r-build-system)
18897 (propagated-inputs
18898 `(("r-lubridate" ,r-lubridate)
18899 ("r-magrittr" ,r-magrittr)
18900 ("r-seewave" ,r-seewave)
18901 ("r-signal" ,r-signal)
18902 ("r-tibble" ,r-tibble)))
18903 (home-page "https://github.com/walkabillylab/activityCounts")
18904 (synopsis "Generate ActiLife counts")
18905 (description
18906 "ActiLife generates activity counts from data collected by Actigraph
18907 accelerometers. Actigraph is one of the most common research-grade
18908 accelerometers. There is considerable research validating and developing
18909 algorithms for human activity using ActiLife counts. Unfortunately, ActiLife
18910 counts are proprietary and difficult to implement if researchers use different
18911 accelerometer brands. The code creates ActiLife counts from raw acceleration
18912 data for different accelerometer brands.")
18913 (license license:gpl3)))
18914
18915 (define-public r-activityindex
18916 (package
18917 (name "r-activityindex")
18918 (version "0.3.6")
18919 (source
18920 (origin
18921 (method url-fetch)
18922 (uri (cran-uri "ActivityIndex" version))
18923 (sha256
18924 (base32
18925 "14k6d78s15j7kb7jhixf4msrdjdl28d0r264cbvy41p8dkq7ysvk"))))
18926 (properties `((upstream-name . "ActivityIndex")))
18927 (build-system r-build-system)
18928 (propagated-inputs
18929 `(("r-data-table" ,r-data-table)
18930 ("r-matrixstats" ,r-matrixstats)
18931 ("r-r-utils" ,r-r-utils)))
18932 (home-page "https://cran.r-project.org/web/packages/ActivityIndex/")
18933 (synopsis "Activity Index calculation using raw accelerometry data")
18934 (description
18935 "This is a package to read raw accelerometry from GT3X+ accelerometry
18936 data and plain table data to calculate the Activity Index from Bai et
18937 al. (2016) @url{doi:10.1371/journal.pone.0160644}.")
18938 (license license:gpl3)))
18939
18940 (define-public r-activpal
18941 (package
18942 (name "r-activpal")
18943 (version "0.1.3")
18944 (source
18945 (origin
18946 (method url-fetch)
18947 (uri (cran-uri "activPAL" version))
18948 (sha256
18949 (base32
18950 "1h6hp5z89ji73gdzxy1dgbfwjysiy5lvcqh90xagpb7sa7ahs3na"))))
18951 (properties `((upstream-name . "activPAL")))
18952 (build-system r-build-system)
18953 (propagated-inputs
18954 `(("r-devtools" ,r-devtools)
18955 ("r-dplyr" ,r-dplyr)
18956 ("r-ggplot2" ,r-ggplot2)
18957 ("r-lubridate" ,r-lubridate)
18958 ("r-magrittr" ,r-magrittr)
18959 ("r-tidyr" ,r-tidyr)))
18960 (home-page "https://cran.r-project.org/web/packages/activPAL")
18961 (synopsis "Processing and chart generation from activPAL events files")
18962 (description
18963 "This package contains functions to generate pre-defined summary
18964 statistics from activPAL events files. The package also contains functions to
18965 produce informative graphics that visualize physical activity behaviour and
18966 trends. This includes generating graphs that align physical activity
18967 behaviour with additional time based observations described by other data
18968 sets, such as sleep diaries and continuous glucose monitoring data.")
18969 (license license:gpl3)))
18970
18971 (define-public r-activpalprocessing
18972 (package
18973 (name "r-activpalprocessing")
18974 (version "1.0.2")
18975 (source
18976 (origin
18977 (method url-fetch)
18978 (uri (cran-uri "activpalProcessing" version))
18979 (sha256
18980 (base32
18981 "1y0bjx2qx53iy930y9iww4q1yzjj8y16cwgixk1mq3w4g1f116d1"))))
18982 (properties
18983 `((upstream-name . "activpalProcessing")))
18984 (build-system r-build-system)
18985 (propagated-inputs
18986 `(("r-chron" ,r-chron)))
18987 (home-page "https://cran.r-project.org/web/packages/activpalProcessing/")
18988 (synopsis "Process activPAL events files")
18989 (description
18990 "This package performs estimation of physical activity and sedentary
18991 behavior variables from activPAL events files.")
18992 ;; Either version of the GPL.
18993 (license (list license:gpl2 license:gpl3))))
18994
18995 (define-public r-actogrammr
18996 (package
18997 (name "r-actogrammr")
18998 (version "0.2.3")
18999 (source
19000 (origin
19001 (method url-fetch)
19002 (uri (cran-uri "actogrammr" version))
19003 (sha256
19004 (base32
19005 "1jzvarmd41yqlrkagzlc8m19n5mn0w0b36fy50lyvgrfsafjfbqa"))))
19006 (properties `((upstream-name . "actogrammr")))
19007 (build-system r-build-system)
19008 (propagated-inputs
19009 `(("r-dplyr" ,r-dplyr)
19010 ("r-ggplot2" ,r-ggplot2)
19011 ("r-lubridate" ,r-lubridate)
19012 ("r-readr" ,r-readr)
19013 ("r-tidyr" ,r-tidyr)))
19014 (home-page "https://cran.r-project.org/web/packages/actogrammr/")
19015 (synopsis "Read in activity data and plot actograms")
19016 (description
19017 "Read in activity measurements from standard file formats used by
19018 circadian rhythm researchers, currently only ClockLab format, and process and
19019 plot the data. The central type of plot is the actogram, as first described
19020 in \"Activity and distribution of certain wild mice in relation to biotic
19021 communities\" by MS Johnson (1926) @url{doi:10.2307/1373575}.")
19022 (license license:gpl3)))
19023
19024 (define-public r-expint
19025 (package
19026 (name "r-expint")
19027 (version "0.1-6")
19028 (source
19029 (origin
19030 (method url-fetch)
19031 (uri (cran-uri "expint" version))
19032 (sha256
19033 (base32
19034 "0iai25cglcdnf44d2d1fz1xpw4q600my4zq4493fk4cs5673mlf7"))))
19035 (properties `((upstream-name . "expint")))
19036 (build-system r-build-system)
19037 (home-page "https://gitlab.com/vigou3/expint")
19038 (synopsis "Exponential integral and incomplete Gamma function")
19039 (description
19040 "This package provides the exponential integrals @code{E_1(x)},
19041 @code{E_2(x)}, @code{E_n(x)} and @code{Ei(x)}, and the incomplete gamma
19042 function @code{G(a, x)} defined for negative values of its first argument.
19043 The package also gives easy access to the underlying C routines through an
19044 API; see the package vignette for details.")
19045 (license license:gpl2+)))
19046
19047 (define-public r-actuar
19048 (package
19049 (name "r-actuar")
19050 (version "3.0-0")
19051 (source
19052 (origin
19053 (method url-fetch)
19054 (uri (cran-uri "actuar" version))
19055 (sha256
19056 (base32
19057 "0dkp1sczldzy7kj70qvh1q59jhsq1brjybmxdz43jnx63y45llpz"))))
19058 (properties `((upstream-name . "actuar")))
19059 (build-system r-build-system)
19060 (propagated-inputs `(("r-expint" ,r-expint)))
19061 (home-page "https://gitlab.com/vigou3/actuar")
19062 (synopsis "Actuarial functions and heavy tailed distributions")
19063 (description
19064 "This package provides functions and data sets for actuarial science:
19065 modeling of loss distributions; risk theory and ruin theory; simulation of
19066 compound models, discrete mixtures and compound hierarchical models;
19067 credibility theory. It boasts support for many additional probability
19068 distributions to model insurance loss amounts and loss frequency: 19
19069 continuous heavy tailed distributions; the Poisson-inverse Gaussian discrete
19070 distribution; zero-truncated and zero-modified extensions of the standard
19071 discrete distributions. It also supports phase-type distributions commonly
19072 used to compute ruin probabilities.")
19073 (license license:gpl2+)))
19074
19075 (define-public r-bmp
19076 (package
19077 (name "r-bmp")
19078 (version "0.3")
19079 (source
19080 (origin
19081 (method url-fetch)
19082 (uri (cran-uri "bmp" version))
19083 (sha256
19084 (base32
19085 "0jd67r11bn98hjwgyr6gas423787xy7ji2hq7ay80blkkcj91xxx"))))
19086 (properties `((upstream-name . "bmp")))
19087 (build-system r-build-system)
19088 (home-page "https://cran.r-project.org/web/packages/bmp/")
19089 (synopsis "Read Bitmap (BMP) images")
19090 (description
19091 "This package provides pure R tools to read BMP format images. It is
19092 currently limited to 8 bit greyscale images and 24, 32 bit (A)RGB images.")
19093 (license license:gpl2+)))
19094
19095 (define-public r-readbitmap
19096 (package
19097 (name "r-readbitmap")
19098 (version "0.1.5")
19099 (source
19100 (origin
19101 (method url-fetch)
19102 (uri (cran-uri "readbitmap" version))
19103 (sha256
19104 (base32
19105 "14825906l326w59g6apy00j55jg3h5kx2r6s031f4gdkbrc7szbk"))))
19106 (properties `((upstream-name . "readbitmap")))
19107 (build-system r-build-system)
19108 (inputs
19109 `(("libjpeg" ,libjpeg-turbo)
19110 ("libpng" ,libpng)))
19111 (propagated-inputs
19112 `(("r-bmp" ,r-bmp)
19113 ("r-jpeg" ,r-jpeg)
19114 ("r-png" ,r-png)
19115 ("r-tiff" ,r-tiff)))
19116 (home-page "https://github.com/jefferis/readbitmap")
19117 (synopsis "Unified interface to read bitmap images (BMP, JPEG, PNG, TIFF)")
19118 (description
19119 "This package provides tools to identify and read BMP, JPEG, PNG, and
19120 TIFF format bitmap images. Identification defaults to the use of the magic
19121 number embedded in the file rather than the file extension.")
19122 (license license:gpl2+)))
19123
19124 (define-public r-imager
19125 (package
19126 (name "r-imager")
19127 (version "0.42.3")
19128 (source
19129 (origin
19130 (method url-fetch)
19131 (uri (cran-uri "imager" version))
19132 (sha256
19133 (base32
19134 "1wxvbv803222gjrf1ys6a349xlnmmdw3kqgi93piq9gq7lahihvg"))))
19135 (properties `((upstream-name . "imager")))
19136 (build-system r-build-system)
19137 (inputs
19138 `(("fftw" ,fftw)
19139 ("libtiff" ,libtiff)
19140 ("libx11" ,libx11)
19141 ("zlib" ,zlib)))
19142 (propagated-inputs
19143 `(("r-downloader" ,r-downloader)
19144 ("r-igraph" ,r-igraph)
19145 ("r-jpeg" ,r-jpeg)
19146 ("r-magrittr" ,r-magrittr)
19147 ("r-png" ,r-png)
19148 ("r-purrr" ,r-purrr)
19149 ("r-rcpp" ,r-rcpp)
19150 ("r-readbitmap" ,r-readbitmap)
19151 ("r-stringr" ,r-stringr)))
19152 (native-inputs
19153 `(("pkg-config" ,pkg-config)
19154 ("r-knitr" ,r-knitr)))
19155 (home-page "https://dahtah.github.io/imager/")
19156 (synopsis "Image processing library")
19157 (description
19158 "This is a package for fast image processing for images in up to 4
19159 dimensions (two spatial dimensions, one time/depth dimension, one color
19160 dimension). It provides most traditional image processing tools (filtering,
19161 morphology, transformations, etc.) as well as various functions for easily
19162 analyzing image data using R. The package wraps @url{http://cimg.eu, CImg}, a
19163 simple, modern C++ library for image processing.")
19164 (license license:lgpl3)))
19165
19166 (define-public r-acuityview
19167 (package
19168 (name "r-acuityview")
19169 (version "0.1")
19170 (source
19171 (origin
19172 (method url-fetch)
19173 (uri (cran-uri "AcuityView" version))
19174 (sha256
19175 (base32
19176 "0f0iclmnwdc8ixiiai4svk4x1g3pjy7dhm3cm58fv6ckx12d3d2l"))))
19177 (properties `((upstream-name . "AcuityView")))
19178 (build-system r-build-system)
19179 (propagated-inputs
19180 `(("r-fftwtools" ,r-fftwtools)
19181 ("r-imager" ,r-imager)
19182 ("r-plotrix" ,r-plotrix)))
19183 (home-page "https://cran.r-project.org/web/packages/AcuityView/")
19184 (synopsis "Display scenes as seen by an animal with less acute vision")
19185 (description
19186 "This package provides a simple method for representing a visual scene as
19187 it may be seen by an animal with less acute vision.")
19188 (license license:gpl2+)))
19189
19190 (define-public r-caret
19191 (package
19192 (name "r-caret")
19193 (version "6.0-86")
19194 (source
19195 (origin
19196 (method url-fetch)
19197 (uri (cran-uri "caret" version))
19198 (sha256
19199 (base32
19200 "0dyflixdw98lvk2x3w136sw24ij0fwx5c7l709dmqr5z7xy1qjns"))))
19201 (build-system r-build-system)
19202 (propagated-inputs
19203 `(("r-foreach" ,r-foreach)
19204 ("r-ggplot2" ,r-ggplot2)
19205 ("r-lattice" ,r-lattice)
19206 ("r-modelmetrics" ,r-modelmetrics)
19207 ("r-nlme" ,r-nlme)
19208 ("r-plyr" ,r-plyr)
19209 ("r-proc" ,r-proc)
19210 ("r-recipes" ,r-recipes)
19211 ("r-reshape2" ,r-reshape2)
19212 ("r-withr" ,r-withr)))
19213 (native-inputs
19214 `(("r-knitr" ,r-knitr)))
19215 (home-page "https://github.com/topepo/caret")
19216 (synopsis "Classification and regression training")
19217 (description
19218 "This package provides miscellaneous functions for training and plotting
19219 classification and regression models.")
19220 (license license:gpl2+)))
19221
19222 (define-public r-adabag
19223 (package
19224 (name "r-adabag")
19225 (version "4.2")
19226 (source
19227 (origin
19228 (method url-fetch)
19229 (uri (cran-uri "adabag" version))
19230 (sha256
19231 (base32
19232 "109wrl1pwvmyv2l909hrvk7dg4aa9pv449mvdycp50zwrsw9w0a7"))))
19233 (properties `((upstream-name . "adabag")))
19234 (build-system r-build-system)
19235 (propagated-inputs
19236 `(("r-caret" ,r-caret)
19237 ("r-doparallel" ,r-doparallel)
19238 ("r-foreach" ,r-foreach)
19239 ("r-rpart" ,r-rpart)))
19240 (home-page "https://cran.r-project.org/web/packages/adabag/")
19241 (synopsis "Multiclass AdaBoost.M1, SAMME and Bagging")
19242 (description
19243 "This package implements Freund and Schapire's Adaboost.M1 algorithm and
19244 Breiman's Bagging algorithm using classification trees as individual
19245 classifiers. Once these classifiers have been trained, they can be used to
19246 predict on new data. Also, cross validation estimation of the error can be
19247 done.")
19248 (license license:gpl2+)))
19249
19250 (define-public r-adagio
19251 (package
19252 (name "r-adagio")
19253 (version "0.7.1")
19254 (source
19255 (origin
19256 (method url-fetch)
19257 (uri (cran-uri "adagio" version))
19258 (sha256
19259 (base32
19260 "1h9l0ddrxq8y35iy9hdkxdvdwsqpnpkzzbkbwwhm4380lq1m7a3k"))))
19261 (properties `((upstream-name . "adagio")))
19262 (build-system r-build-system)
19263 (native-inputs `(("gfortran" ,gfortran)))
19264 (home-page "https://cran.r-project.org/web/packages/adagio/")
19265 (synopsis "Discrete and global optimization routines")
19266 (description
19267 "This package provides methods and algorithms for discrete optimization,
19268 e.g. knapsack and subset sum procedures, derivative-free Nelder-Mead and
19269 Hooke-Jeeves minimization, and some (evolutionary) global optimization
19270 functions.")
19271 (license license:gpl3+)))
19272
19273 (define-public r-univoutl
19274 (package
19275 (name "r-univoutl")
19276 (version "0.2")
19277 (source
19278 (origin
19279 (method url-fetch)
19280 (uri (cran-uri "univOutl" version))
19281 (sha256
19282 (base32
19283 "0rlc3w7cx2hfxacpjs9kmjzv5p8v9wxnlpxi3rh276wiy5zdr91v"))))
19284 (properties `((upstream-name . "univOutl")))
19285 (build-system r-build-system)
19286 (propagated-inputs
19287 `(("r-hmisc" ,r-hmisc)
19288 ("r-robustbase" ,r-robustbase)))
19289 (home-page "https://github.com/marcellodo/univOutl")
19290 (synopsis "Detection of univariate outliers")
19291 (description
19292 "This package provides well-known outlier detection techniques in the
19293 univariate case. Methods to deal with skewed distribution are included too.
19294 The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
19295 historical data is implemented as well. When available, survey weights can be
19296 used in outliers detection.")
19297 (license license:gpl2+)))
19298
19299 (define-public r-tolerance
19300 (package
19301 (name "r-tolerance")
19302 (version "2.0.0")
19303 (source
19304 (origin
19305 (method url-fetch)
19306 (uri (cran-uri "tolerance" version))
19307 (sha256
19308 (base32
19309 "001snzr2ipag3zprynydlbi9prkjzrllc054qh7m0qwkb3r19jjd"))))
19310 (properties `((upstream-name . "tolerance")))
19311 (build-system r-build-system)
19312 (propagated-inputs
19313 `(("r-mass" ,r-mass)
19314 ("r-rgl" ,r-rgl)))
19315 (home-page "https://cran.r-project.org/web/packages/tolerance/")
19316 (synopsis "Statistical tolerance intervals and regions")
19317 (description
19318 "This package provides functions for estimating tolerance
19319 limits (intervals) for various univariate distributions (binomial, Cauchy,
19320 discrete Pareto, exponential, two-parameter exponential, extreme value,
19321 hypergeometric, Laplace, logistic, negative binomial, negative hypergeometric,
19322 normal, Pareto, Poisson-Lindley, Poisson, uniform, and Zipf-Mandelbrot),
19323 Bayesian normal tolerance limits, multivariate normal tolerance regions,
19324 nonparametric tolerance intervals, tolerance bands for regression
19325 settings (linear regression, nonlinear regression, nonparametric regression,
19326 and multivariate regression), and analysis of variance tolerance intervals.
19327 Visualizations are also available for most of these settings.")
19328 (license license:gpl2+)))
19329
19330 (define-public r-additivitytests
19331 (package
19332 (name "r-additivitytests")
19333 (version "1.1-4")
19334 (source
19335 (origin
19336 (method url-fetch)
19337 (uri (cran-uri "additivityTests" version))
19338 (sha256
19339 (base32
19340 "048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
19341 (properties
19342 `((upstream-name . "additivityTests")))
19343 (build-system r-build-system)
19344 (home-page "https://github.com/simecek/additivityTests")
19345 (synopsis "Additivity tests in the two way Anova with single sub-class numbers")
19346 (description
19347 "This package provides an implementation of the Tukey, Mandel,
19348 Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
19349 (license license:gpl3)))
19350
19351 (define-public r-flexclust
19352 (package
19353 (name "r-flexclust")
19354 (version "1.4-0")
19355 (source
19356 (origin
19357 (method url-fetch)
19358 (uri (cran-uri "flexclust" version))
19359 (sha256
19360 (base32
19361 "0x7wxk8y46ndyz6fdacym0rd6p9wh3pcfr28chjcg5d7fm849zl2"))))
19362 (properties `((upstream-name . "flexclust")))
19363 (build-system r-build-system)
19364 (propagated-inputs
19365 `(("r-class" ,r-class)
19366 ("r-lattice" ,r-lattice)
19367 ("r-modeltools" ,r-modeltools)))
19368 (home-page "https://cran.r-project.org/web/packages/flexclust/")
19369 (synopsis "Flexible cluster algorithms")
19370 (description
19371 "The main function @code{kcca} implements a general framework for
19372 k-centroids cluster analysis supporting arbitrary distance measures and
19373 centroid computation. Further cluster methods include hard competitive
19374 learning, neural gas, and QT clustering. There are numerous visualization
19375 methods for cluster results (neighborhood graphs, convex cluster hulls,
19376 barcharts of centroids, ...), and bootstrap methods for the analysis of
19377 cluster stability.")
19378 (license license:gpl2)))
19379
19380 (define-public r-biclust
19381 (package
19382 (name "r-biclust")
19383 (version "2.0.2")
19384 (source
19385 (origin
19386 (method url-fetch)
19387 (uri (cran-uri "biclust" version))
19388 (sha256
19389 (base32
19390 "1pk7mvwlg4hkc4cn4w6wr2c192qx03d1xfwlzclk5bw1nmcg483b"))))
19391 (properties `((upstream-name . "biclust")))
19392 (build-system r-build-system)
19393 (propagated-inputs
19394 `(("r-additivitytests" ,r-additivitytests)
19395 ("r-colorspace" ,r-colorspace)
19396 ("r-flexclust" ,r-flexclust)
19397 ("r-ggplot2" ,r-ggplot2)
19398 ("r-lattice" ,r-lattice)
19399 ("r-mass" ,r-mass)
19400 ("r-tidyr" ,r-tidyr)))
19401 (home-page "https://cran.r-project.org/web/packages/biclust/")
19402 (synopsis "BiCluster algorithms")
19403 (description
19404 "The main function @code{biclust()} provides several algorithms to find
19405 biclusters in two-dimensional data, spectral, plaid model, xmotifs, and bimax.
19406 In addition, the package provides methods for data
19407 preprocessing (normalization and discretization), visualization, and
19408 validation of bicluster solutions.")
19409 (license license:gpl3)))
19410
19411 (define-public r-icge
19412 (package
19413 (name "r-icge")
19414 (version "0.3")
19415 (source
19416 (origin
19417 (method url-fetch)
19418 (uri (cran-uri "ICGE" version))
19419 (sha256
19420 (base32
19421 "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa"))))
19422 (properties `((upstream-name . "ICGE")))
19423 (build-system r-build-system)
19424 (propagated-inputs
19425 `(("r-cluster" ,r-cluster)
19426 ("r-mass" ,r-mass)))
19427 (home-page "https://cran.r-project.org/web/packages/ICGE/")
19428 (synopsis "Cluster estimation and identification of atypical units")
19429 (description
19430 "ICGE is a package that helps to estimate the number of real clusters in
19431 data as well as to identify atypical units. The underlying methods are based
19432 on distances rather than on unit x variables.")
19433 (license license:gpl2+)))
19434
19435 (define-public r-depth
19436 (package
19437 (name "r-depth")
19438 (version "2.1-1.1")
19439 (source
19440 (origin
19441 (method url-fetch)
19442 (uri (cran-uri "depth" version))
19443 (sha256
19444 (base32
19445 "0szy0027nh4ps1z919i740i50app5q7cfyg1fj7pdyl45nbl8k6m"))))
19446 (properties `((upstream-name . "depth")))
19447 (build-system r-build-system)
19448 (propagated-inputs
19449 `(("r-abind" ,r-abind)
19450 ("r-circular" ,r-circular)
19451 ("r-rgl" ,r-rgl)))
19452 (native-inputs
19453 `(("gfortran" ,gfortran)))
19454 (home-page "https://cran.r-project.org/web/packages/depth/")
19455 (synopsis "Nonparametric depth functions for multivariate analysis")
19456 (description
19457 "This package provides tools for depth functions methodology applied to
19458 multivariate analysis. Besides allowing calculation of depth values and
19459 depth-based location estimators, the package includes functions or drawing
19460 contour plots and perspective plots of depth functions. Euclidian and
19461 spherical depths are supported.")
19462 (license license:gpl2)))
19463
19464 (define-public r-archetypes
19465 (package
19466 (name "r-archetypes")
19467 (version "2.2-0.1")
19468 (source
19469 (origin
19470 (method url-fetch)
19471 (uri (cran-uri "archetypes" version))
19472 (sha256
19473 (base32
19474 "0ibxsr173ib77gjhid91m85s8gjii4mi2w3d52q5301igv20p7r0"))))
19475 (properties `((upstream-name . "archetypes")))
19476 (build-system r-build-system)
19477 (propagated-inputs
19478 `(("r-modeltools" ,r-modeltools)
19479 ("r-nnls" ,r-nnls)))
19480 (home-page "https://cran.r-project.org/web/packages/archetypes")
19481 (synopsis "Archetypal analysis")
19482 (description
19483 "The main function @code{archetypes} implements a framework for
19484 archetypal analysis supporting arbitrary problem solving mechanisms for the
19485 different conceptual parts of the algorithm.")
19486 (license license:gpl2+)))
19487
19488 (define-public r-shapes
19489 (package
19490 (name "r-shapes")
19491 (version "1.2.5")
19492 (source
19493 (origin
19494 (method url-fetch)
19495 (uri (cran-uri "shapes" version))
19496 (sha256
19497 (base32
19498 "0gfpdydfysp5mwg7qmkn73s67gvh2szb40mzqrx97h41ijgcgd8s"))))
19499 (properties `((upstream-name . "shapes")))
19500 (build-system r-build-system)
19501 (propagated-inputs
19502 `(("r-mass" ,r-mass)
19503 ("r-minpack-lm" ,r-minpack-lm)
19504 ("r-rgl" ,r-rgl)
19505 ("r-scatterplot3d" ,r-scatterplot3d)))
19506 (home-page "http://www.maths.nottingham.ac.uk/~ild/shapes")
19507 (synopsis "Statistical shape analysis")
19508 (description
19509 "This package provides routines for the statistical analysis of landmark
19510 shapes, including Procrustes analysis, graphical displays, principal
19511 components analysis, permutation and bootstrap tests, thin-plate spline
19512 transformation grids and comparing covariance matrices. See Dryden, I.L. and
19513 Mardia, K.V. (2016). Statistical shape analysis, with Applications in R (2nd
19514 Edition), John Wiley and Sons.")
19515 (license license:gpl2)))
19516
19517 (define-public r-anthropometry
19518 (package
19519 (name "r-anthropometry")
19520 (version "1.14")
19521 (source
19522 (origin
19523 (method url-fetch)
19524 (uri (cran-uri "Anthropometry" version))
19525 (sha256
19526 (base32
19527 "0y52g15pcgs4b68sfczn6nnpdqsialsb4mq3wb9a2gba7qdcf76y"))))
19528 (properties `((upstream-name . "Anthropometry")))
19529 (build-system r-build-system)
19530 (propagated-inputs
19531 `(("r-archetypes" ,r-archetypes)
19532 ("r-biclust" ,r-biclust)
19533 ("r-cluster" ,r-cluster)
19534 ("r-depth" ,r-depth)
19535 ("r-fnn" ,r-fnn)
19536 ("r-icge" ,r-icge)
19537 ("r-nnls" ,r-nnls)
19538 ("r-rgl" ,r-rgl)
19539 ("r-shapes" ,r-shapes)))
19540 (native-inputs
19541 `(("r-knitr" ,r-knitr)))
19542 (home-page "https://cran.r-project.org/web/packages/Anthropometry/")
19543 (synopsis "Statistical methods for anthropometric data")
19544 (description
19545 "This package provides statistical methods especially developed to
19546 analyze anthropometric data. These methods are aimed at providing effective
19547 solutions to some commons problems related to Ergonomics and Anthropometry.
19548 They are based on clustering, the statistical concept of data depth,
19549 statistical shape analysis and archetypal analysis.")
19550 (license license:gpl2+)))
19551
19552 (define-public r-adamethods
19553 (package
19554 (name "r-adamethods")
19555 (version "1.2.1")
19556 (source
19557 (origin
19558 (method url-fetch)
19559 (uri (cran-uri "adamethods" version))
19560 (sha256
19561 (base32
19562 "150awbd3skb1mqca18bqjykhyycqw8crviw66s6qrcnmcsbk77pj"))))
19563 (properties `((upstream-name . "adamethods")))
19564 (build-system r-build-system)
19565 (propagated-inputs
19566 `(("r-anthropometry" ,r-anthropometry)
19567 ("r-archetypes" ,r-archetypes)
19568 ("r-fnn" ,r-fnn)
19569 ("r-foreach" ,r-foreach)
19570 ("r-nnls" ,r-nnls)
19571 ("r-tolerance" ,r-tolerance)
19572 ("r-univoutl" ,r-univoutl)))
19573 (home-page "https://cran.r-project.org/web/packages/adamethods/")
19574 (synopsis "Archetypoid algorithms and anomaly detection")
19575 (description
19576 "This package is a collection of several algorithms to obtain
19577 archetypoids with small and large databases and with both classical
19578 multivariate data and functional data (univariate and multivariate). Some of
19579 these algorithms also allow to detect anomalies (outliers).")
19580 (license license:gpl2+)))
19581
19582 (define-public r-idpmisc
19583 (package
19584 (name "r-idpmisc")
19585 (version "1.1.20")
19586 (source
19587 (origin
19588 (method url-fetch)
19589 (uri (cran-uri "IDPmisc" version))
19590 (sha256
19591 (base32
19592 "0zy6mxqa8arq0vvhsdcifzm3085c23rnwa1n36fhircph1xwvfdw"))))
19593 (properties `((upstream-name . "IDPmisc")))
19594 (build-system r-build-system)
19595 (propagated-inputs
19596 `(("r-lattice" ,r-lattice)))
19597 (home-page "https://cran.r-project.org/web/packages/IDPmisc/")
19598 (synopsis "Functions for data analyses and visualization")
19599 (description
19600 "This package provides different high-level graphics functions for
19601 displaying large datasets, displaying circular data in a very flexible way,
19602 finding local maxima, brewing color ramps, drawing nice arrows, zooming
19603 2D-plots, creating figures with differently colored margin and plot region.
19604 In addition, the package contains auxiliary functions for data manipulation
19605 like omitting observations with irregular values or selecting data by logical
19606 vectors, which include NAs. Other functions are especially useful in
19607 spectroscopy and analyses of environmental data: robust baseline fitting,
19608 finding peaks in spectra, converting humidity measures.")
19609 (license license:gpl3+)))
19610
19611 (define-public r-qqman
19612 (package
19613 (name "r-qqman")
19614 (version "0.1.4")
19615 (source
19616 (origin
19617 (method url-fetch)
19618 (uri (cran-uri "qqman" version))
19619 (sha256
19620 (base32
19621 "1v9s9ag1hfb47py87wb2nad4mbsfx35832hdmrh5kxrb2f11zl1s"))))
19622 (properties `((upstream-name . "qqman")))
19623 (build-system r-build-system)
19624 (propagated-inputs
19625 `(("r-calibrate" ,r-calibrate)))
19626 (home-page "https://cran.r-project.org/web/packages/qqman/")
19627 (synopsis "Q-Q and Manhattan plots for GWAS data")
19628 (description
19629 "This package allows you to create Q-Q and Manhattan plots for GWAS data
19630 from PLINK results.")
19631 (license license:gpl3)))
19632
19633 (define-public r-ggplot-multistats
19634 (package
19635 (name "r-ggplot-multistats")
19636 (version "1.0.0")
19637 (source
19638 (origin
19639 (method url-fetch)
19640 (uri (cran-uri "ggplot.multistats" version))
19641 (sha256
19642 (base32
19643 "1afzfa86vc484bcwpg7m1ky03jpax584rigzgai8w06pifkmz0il"))))
19644 (properties
19645 `((upstream-name . "ggplot.multistats")))
19646 (build-system r-build-system)
19647 (propagated-inputs
19648 `(("r-ggplot2" ,r-ggplot2)
19649 ("r-hexbin" ,r-hexbin)
19650 ("r-rlang" ,r-rlang)
19651 ("r-scales" ,r-scales)))
19652 (home-page "https://github.com/flying-sheep/ggplot.multistats")
19653 (synopsis "Multiple summary statistics for binned stats/geometries")
19654 (description
19655 "This package provides the ggplot binning layer @code{stat_summaries_hex()},
19656 which functions similar to its singular form, but allows the use of multiple
19657 statistics per bin. Those statistics can be mapped to multiple bin
19658 aesthetics.")
19659 (license license:gpl3)))
19660
19661 (define-public r-knn-covertree
19662 (package
19663 (name "r-knn-covertree")
19664 (version "1.0")
19665 (source
19666 (origin
19667 (method url-fetch)
19668 (uri (cran-uri "knn.covertree" version))
19669 (sha256
19670 (base32
19671 "0msfcmwydws7q7m5jdb0dxab0nkbl7mq5llg6v3r4qrnlvrdggvz"))))
19672 (properties `((upstream-name . "knn.covertree")))
19673 (build-system r-build-system)
19674 (propagated-inputs
19675 `(("r-matrix" ,r-matrix)
19676 ("r-rcpp" ,r-rcpp)
19677 ("r-rcppeigen" ,r-rcppeigen)))
19678 (home-page "https://github.com/flying-sheep/knn.covertree")
19679 (synopsis "Accurate kNN Implementation with multiple distance measures")
19680 (description
19681 "Similarly to the FNN package, this package allows calculation of the k
19682 nearest neighbors (kNN) of a data matrix. The implementation is based on
19683 cover trees introduced by Alina Beygelzimer, Sham Kakade, and John
19684 Langford (2006) @url{doi:10.1145/1143844.1143857}.")
19685 (license license:agpl3+)))
19686
19687 (define-public r-poibin
19688 (package
19689 (name "r-poibin")
19690 (version "1.5")
19691 (source
19692 (origin
19693 (method url-fetch)
19694 (uri (cran-uri "poibin" version))
19695 (sha256
19696 (base32
19697 "1sxryvwwz6ldsnkzdy56p8c895s5yvpcai9ndyjv1x5q3l05wf9v"))))
19698 (properties `((upstream-name . "poibin")))
19699 (build-system r-build-system)
19700 (home-page "https://cran.r-project.org/web/packages/poibin/")
19701 (synopsis "Poisson binomial distribution")
19702 (description
19703 "This package provides an implementation of both the exact and
19704 approximation methods for computing the @dfn{cumulative distribution
19705 function} (CDF) of the Poisson binomial distribution. It also provides the
19706 @dfn{probability mass function} (PMF), quantile function, and random number
19707 generation for the Poisson binomial distribution.")
19708 (license license:gpl2)))
19709
19710 (define-public r-diagram
19711 (package
19712 (name "r-diagram")
19713 (version "1.6.4")
19714 (source
19715 (origin
19716 (method url-fetch)
19717 (uri (cran-uri "diagram" version))
19718 (sha256
19719 (base32
19720 "0f6ffprn5k0ir1s7m9s7izc64aa17r3gnygagz5bihrlsvawaavw"))))
19721 (properties `((upstream-name . "diagram")))
19722 (build-system r-build-system)
19723 (propagated-inputs
19724 `(("r-shape" ,r-shape)))
19725 (home-page "https://cran.r-project.org/web/packages/diagram/")
19726 (synopsis "Visualize simple graphs (networks) and plot flow diagrams")
19727 (description
19728 "This package provides tools to visualize simple graphs (networks) based
19729 on a transition matrix, utilities to plot flow diagrams, visualizing webs,
19730 electrical networks, etc. It also includes supporting material for the book
19731 \"A practical guide to ecological modelling - using R as a simulation
19732 platform\" by Karline Soetaert and Peter M.J. Herman (2009) and the book
19733 \"Solving Differential Equations in R\" by Karline Soetaert, Jeff Cash and
19734 Francesca Mazzia (2012).")
19735 (license license:gpl2+)))
19736
19737 (define-public r-lim
19738 (package
19739 (name "r-lim")
19740 (version "1.4.6")
19741 (source
19742 (origin
19743 (method url-fetch)
19744 (uri (cran-uri "LIM" version))
19745 (sha256
19746 (base32
19747 "03x1gnm06bw1wrzc01110bjzd2mvjdzbc2mbrazh22jrmb32w5d8"))))
19748 (properties `((upstream-name . "LIM")))
19749 (build-system r-build-system)
19750 (propagated-inputs
19751 `(("r-diagram" ,r-diagram)
19752 ("r-limsolve" ,r-limsolve)))
19753 (home-page "https://cran.r-project.org/web/packages/LIM/")
19754 (synopsis "Linear inverse model examples and solution methods")
19755 (description
19756 "This package provides functions that read and solve linear inverse
19757 problems (food web problems, linear programming problems).")
19758 (license license:gpl2+)))
19759
19760 (define-public r-shinycssloaders
19761 (package
19762 (name "r-shinycssloaders")
19763 (version "1.0.0")
19764 (source
19765 (origin
19766 (method url-fetch)
19767 (uri (cran-uri "shinycssloaders" version))
19768 (sha256
19769 (base32
19770 "0r3xm273lhdhzbs2mkgw1m2kwb7z1dh1pzya8yxy5vacda1l2ikl"))))
19771 (properties
19772 `((upstream-name . "shinycssloaders")))
19773 (build-system r-build-system)
19774 (propagated-inputs
19775 `(("r-digest" ,r-digest)
19776 ("r-glue" ,r-glue)
19777 ("r-shiny" ,r-shiny)))
19778 (home-page "https://github.com/andrewsali/shinycssloaders")
19779 (synopsis "Add CSS loading animations to Shiny outputs")
19780 (description
19781 "This package provides tools to create a lightweight Shiny wrapper for
19782 the css-loaders created by Luke Hass
19783 @url{https://github.com/lukehaas/css-loaders}. Wrapping a Shiny output will
19784 automatically show a loader when the output is (re)calculating.")
19785 (license license:gpl3)))
19786
19787 (define-public r-rsvg
19788 (package
19789 (name "r-rsvg")
19790 (version "2.1")
19791 (source
19792 (origin
19793 (method url-fetch)
19794 (uri (cran-uri "rsvg" version))
19795 (sha256
19796 (base32
19797 "0bxnwa9sbzx6jlxrzh3ymjq81vkxil2qx7kk7wp13a0cql7dhxcn"))))
19798 (properties `((upstream-name . "rsvg")))
19799 (build-system r-build-system)
19800 (inputs
19801 `(("librsvg" ,librsvg)
19802 ("zlib" ,zlib)))
19803 (native-inputs
19804 `(("pkg-config" ,pkg-config)
19805 ("r-knitr" ,r-knitr)))
19806 (home-page "https://github.com/jeroen/rsvg#readme")
19807 (synopsis "Render SVG images into PDF, PNG, PostScript, or Bitmap arrays")
19808 (description
19809 "This package allows you to render vector-based SVG images into
19810 high-quality custom-size bitmap arrays using the librsvg2 library. The
19811 resulting bitmap can be written to e.g. PNG, JPEG or WEBP format. In
19812 addition, the package can convert images directly to various formats such as
19813 PDF or PostScript.")
19814 (license license:expat)))
19815
19816 (define-public r-influencer
19817 (package
19818 (name "r-influencer")
19819 (version "0.1.0")
19820 (source
19821 (origin
19822 (method url-fetch)
19823 (uri (cran-uri "influenceR" version))
19824 (sha256
19825 (base32
19826 "12p9362hkndlnz1rd8j2rykg57kbm6l7ks60by3rd25xg50k5jag"))))
19827 (properties `((upstream-name . "influenceR")))
19828 (build-system r-build-system)
19829 (propagated-inputs
19830 `(("r-igraph" ,r-igraph)
19831 ("r-matrix" ,r-matrix)))
19832 (home-page "https://github.com/rcc-uchicago/influenceR")
19833 (synopsis "Tools to quantify structural importance of nodes in a network")
19834 (description
19835 "This package provides functionality to compute various node centrality
19836 measures on networks. Included are functions to compute betweenness
19837 centrality (by utilizing Madduri and Bader's SNAP library), implementations of
19838 Burt's constraint and @dfn{effective network size} (ENS) metrics, Borgatti's
19839 algorithm to identify key players, and Valente's bridging metric. The
19840 betweenness, Key Players, and bridging implementations are parallelized with
19841 OpenMP.")
19842 (license license:gpl2)))
19843
19844 (define-public r-emplik
19845 (package
19846 (name "r-emplik")
19847 (version "1.1-1")
19848 (source
19849 (origin
19850 (method url-fetch)
19851 (uri (cran-uri "emplik" version))
19852 (sha256
19853 (base32
19854 "1kw8g8j075bsicdvgkjf4870rfv5c30gvmw6qkkaz3ki22x74w77"))))
19855 (properties `((upstream-name . "emplik")))
19856 (build-system r-build-system)
19857 (propagated-inputs
19858 `(("r-quantreg" ,r-quantreg)))
19859 (home-page "https://www.ms.uky.edu/~mai/EmpLik.html")
19860 (synopsis "Empirical likelihood ratio for censored/truncated data")
19861 (description
19862 "This package provides empirical likelihood ratio tests for
19863 means/quantiles/hazards from possibly censored and/or truncated data. It also
19864 does regression.")
19865 (license license:gpl2+)))
19866
19867 (define-public r-imputeyn
19868 (package
19869 (name "r-imputeyn")
19870 (version "1.3")
19871 (source
19872 (origin
19873 (method url-fetch)
19874 (uri (cran-uri "imputeYn" version))
19875 (sha256
19876 (base32
19877 "1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
19878 (properties `((upstream-name . "imputeYn")))
19879 (build-system r-build-system)
19880 (propagated-inputs
19881 `(("r-boot" ,r-boot)
19882 ("r-emplik" ,r-emplik)
19883 ("r-mvtnorm" ,r-mvtnorm)
19884 ("r-quadprog" ,r-quadprog)
19885 ("r-survival" ,r-survival)))
19886 (home-page "https://cran.r-project.org/web/packages/imputeYn/")
19887 (synopsis "Impute last largest censored observation under weighted least squares")
19888 (description
19889 "This package allows for the imputation of the last largest censored
19890 observantions. This method brings less bias and more efficient estimates for
19891 AFT models.")
19892 (license license:gpl2)))
19893
19894 (define-public r-adapenetclass
19895 (package
19896 (name "r-adapenetclass")
19897 (version "1.2")
19898 (source
19899 (origin
19900 (method url-fetch)
19901 (uri (cran-uri "AdapEnetClass" version))
19902 (sha256
19903 (base32
19904 "01k3mj4g1ckbng7wkzzn9h0k9yf01cpnnkly0sjda574c5jhj0rc"))))
19905 (properties `((upstream-name . "AdapEnetClass")))
19906 (build-system r-build-system)
19907 (propagated-inputs
19908 `(("r-glmnet" ,r-glmnet)
19909 ("r-imputeyn" ,r-imputeyn)
19910 ("r-lars" ,r-lars)
19911 ("r-quadprog" ,r-quadprog)))
19912 (home-page "https://cran.r-project.org/web/packages/AdapEnetClass/")
19913 (synopsis "Class of adaptive elastic net methods for censored data")
19914 (description
19915 "This package provides methods for variable selection for AFT models.")
19916 (license license:gpl2)))
19917
19918 (define-public r-flock
19919 (package
19920 (name "r-flock")
19921 (version "0.7")
19922 (source
19923 (origin
19924 (method url-fetch)
19925 (uri (cran-uri "flock" version))
19926 (sha256
19927 (base32
19928 "1zg93p74icj4bhxnmnssj2xp6vw4yaksyavq03497v33xfpdxss7"))))
19929 (properties `((upstream-name . "flock")))
19930 (build-system r-build-system)
19931 (propagated-inputs `(("r-rcpp" ,r-rcpp)))
19932 (home-page "https://cran.r-project.org/web/packages/flock/")
19933 (synopsis "Process synchronization using file locks")
19934 (description
19935 "This package implements synchronization between R processes (spawned by
19936 using the @code{parallel} package for instance) using file locks. It supports
19937 both exclusive and shared locking.")
19938 (license license:asl2.0)))
19939
19940 (define-public r-archivist
19941 (package
19942 (name "r-archivist")
19943 (version "2.3.4")
19944 (source
19945 (origin
19946 (method url-fetch)
19947 (uri (cran-uri "archivist" version))
19948 (sha256
19949 (base32
19950 "1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
19951 (properties `((upstream-name . "archivist")))
19952 (build-system r-build-system)
19953 (propagated-inputs
19954 `(("r-dbi" ,r-dbi)
19955 ("r-digest" ,r-digest)
19956 ("r-flock" ,r-flock)
19957 ("r-httr" ,r-httr)
19958 ("r-lubridate" ,r-lubridate)
19959 ("r-magrittr" ,r-magrittr)
19960 ("r-rcurl" ,r-rcurl)
19961 ("r-rsqlite" ,r-rsqlite)))
19962 (home-page "https://pbiecek.github.io/archivist/")
19963 (synopsis "Tools for storing, restoring and searching for R objects")
19964 (description
19965 "Data exploration and modelling is a process in which a lot of data
19966 artifacts are produced. Artifacts like: subsets, data aggregates, plots,
19967 statistical models, different versions of data sets and different versions of
19968 results. Archivist helps to store and manage artifacts created in R. It
19969 allows you to store selected artifacts as binary files together with their
19970 metadata and relations. Archivist allows sharing artifacts with others. It
19971 can look for already created artifacts by using its class, name, date of the
19972 creation or other properties. It also makes it easy to restore such
19973 artifacts.")
19974 (license license:gpl2)))
19975
19976 (define-public r-versions
19977 (package
19978 (name "r-versions")
19979 (version "0.3")
19980 (source
19981 (origin
19982 (method url-fetch)
19983 (uri (cran-uri "versions" version))
19984 (sha256
19985 (base32
19986 "0zm49j785dgv7fyr1yl9q5f0dsk8hhpim5q5bpkgrkzv7pwjribd"))))
19987 (properties `((upstream-name . "versions")))
19988 (build-system r-build-system)
19989 (home-page "https://cran.r-project.org/web/packages/versions/")
19990 (synopsis "Query and install specific versions of CRAN packages")
19991 (description
19992 "This package allows you to install specified versions of R packages
19993 hosted on CRAN and provides functions to list available versions and the
19994 versions of currently installed packages.")
19995 (license license:bsd-3)))
19996
19997 (define-public r-adapr
19998 (package
19999 (name "r-adapr")
20000 (version "2.0.0")
20001 (source
20002 (origin
20003 (method url-fetch)
20004 (uri (cran-uri "adapr" version))
20005 (sha256
20006 (base32
20007 "1s57jdbi5pik56xjz1d4438ax6cywg2yq2s47h5g6wrwvpgr1qfw"))))
20008 (properties `((upstream-name . "adapr")))
20009 (build-system r-build-system)
20010 (propagated-inputs
20011 `(("r-archivist" ,r-archivist)
20012 ("r-devtools" ,r-devtools)
20013 ("r-digest" ,r-digest)
20014 ("r-doparallel" ,r-doparallel)
20015 ("r-gdata" ,r-gdata)
20016 ("r-ggplot2" ,r-ggplot2)
20017 ("r-git2r" ,r-git2r)
20018 ("r-igraph" ,r-igraph)
20019 ("r-knitr" ,r-knitr)
20020 ("r-plotly" ,r-plotly)
20021 ("r-plyr" ,r-plyr)
20022 ("r-rmarkdown" ,r-rmarkdown)
20023 ("r-shiny" ,r-shiny)
20024 ("r-shinydashboard" ,r-shinydashboard)
20025 ("r-versions" ,r-versions)))
20026 (home-page "https://cran.r-project.org/web/packages/adapr/")
20027 (synopsis "Implementation of an accountable data analysis process")
20028 (description
20029 "This package tracks reading and writing within R scripts that are
20030 organized into a directed acyclic graph. It contains an interactive Shiny
20031 application @code{adaprApp()}. It uses Git and file hashes to track version
20032 histories of inputs and outputs.")
20033 (license license:lgpl2.0)))
20034
20035 (define-public r-adapsamp
20036 (package
20037 (name "r-adapsamp")
20038 (version "1.1.1")
20039 (source
20040 (origin
20041 (method url-fetch)
20042 (uri (cran-uri "AdapSamp" version))
20043 (sha256
20044 (base32
20045 "1jayjrsiib2ij4rxxj59g71r3xhzl5yqh0lhi8k6cfy03i7dkvis"))))
20046 (properties `((upstream-name . "AdapSamp")))
20047 (build-system r-build-system)
20048 (propagated-inputs `(("r-pracma" ,r-pracma)))
20049 (home-page "https://cran.r-project.org/web/packages/AdapSamp/")
20050 (synopsis "Adaptive sampling algorithms")
20051 (description
20052 "For distributions whose probability density functions are log-concave,
20053 the adaptive rejection sampling algorithm can be used to build envelope
20054 functions for sampling. For others, the modified adaptive rejection sampling
20055 algorithm, the concave-convex adaptive rejection sampling algorithm, and the
20056 adaptive slice sampling algorithm can be used. This R package mainly includes
20057 these four functions: @code{rARS()}, @code{rMARS()}, @code{rCCARS()}, and
20058 @code{rASS()}. These functions can realize sampling based on the algorithms
20059 above.")
20060 (license license:gpl2)))
20061
20062 (define-public r-adaptalint
20063 (package
20064 (name "r-adaptalint")
20065 (version "0.2.4")
20066 (source
20067 (origin
20068 (method url-fetch)
20069 (uri (cran-uri "adaptalint" version))
20070 (sha256
20071 (base32
20072 "15qdcvnnbgcps8j5k79354wsc9alswijv8lcafg2i3lghaw536yf"))))
20073 (properties `((upstream-name . "adaptalint")))
20074 (build-system r-build-system)
20075 (propagated-inputs
20076 `(("r-dplyr" ,r-dplyr)
20077 ("r-lintr" ,r-lintr)
20078 ("r-purrr" ,r-purrr)))
20079 (home-page "https://cran.r-project.org/web/packages/adaptalint/")
20080 (synopsis "Check R code style")
20081 (description
20082 "This package provides tools to infer the code style (which style rules
20083 are followed and which ones are not) from one package and use it to check
20084 another. This makes it easier to find and correct the most important problems
20085 first.")
20086 (license license:gpl3)))
20087
20088 (define-public r-fracdiff
20089 (package
20090 (name "r-fracdiff")
20091 (version "1.5-1")
20092 (source
20093 (origin
20094 (method url-fetch)
20095 (uri (cran-uri "fracdiff" version))
20096 (sha256
20097 (base32
20098 "1dhfjlhr9sb38qgpsx0sm73l9lgc13d0fk32l7fmjfnalhr3n45q"))))
20099 (properties `((upstream-name . "fracdiff")))
20100 (build-system r-build-system)
20101 (home-page "https://github.com/mmaechler/fracdiff")
20102 (synopsis
20103 "Fractionally differenced ARIMA aka ARFIMA(P,d,q) models")
20104 (description
20105 "This package provides tools for the maximum likelihood estimation of the
20106 parameters of a fractionally differenced ARIMA(p,d,q) model (Haslett and
20107 Raftery, Appl.Statistics, 1989); it includes inference and basic methods.")
20108 (license license:gpl2+)))
20109
20110 (define-public r-forecast
20111 (package
20112 (name "r-forecast")
20113 (version "8.12")
20114 (source
20115 (origin
20116 (method url-fetch)
20117 (uri (cran-uri "forecast" version))
20118 (sha256
20119 (base32
20120 "1ycj5z4wd5a16nlcjy07dqm8jkih240xa02cn4wvysnnhkapyq7b"))))
20121 (properties `((upstream-name . "forecast")))
20122 (build-system r-build-system)
20123 (propagated-inputs
20124 `(("r-colorspace" ,r-colorspace)
20125 ("r-fracdiff" ,r-fracdiff)
20126 ("r-ggplot2" ,r-ggplot2)
20127 ("r-lmtest" ,r-lmtest)
20128 ("r-magrittr" ,r-magrittr)
20129 ("r-nnet" ,r-nnet)
20130 ("r-rcpp" ,r-rcpp)
20131 ("r-rcpparmadillo" ,r-rcpparmadillo)
20132 ("r-timedate" ,r-timedate)
20133 ("r-tseries" ,r-tseries)
20134 ("r-urca" ,r-urca)
20135 ("r-zoo" ,r-zoo)))
20136 (native-inputs
20137 `(("r-knitr" ,r-knitr))) ; needed for vignettes
20138 (home-page "https://pkg.robjhyndman.com/forecast/")
20139 (synopsis "Forecasting functions for time series and linear models")
20140 (description
20141 "This package provides methods and tools for displaying and analysing
20142 univariate time series forecasts including exponential smoothing via state
20143 space models and automatic ARIMA modelling.")
20144 (license license:gpl3)))
20145
20146 (define-public r-xmisc
20147 (package
20148 (name "r-xmisc")
20149 (version "0.2.1")
20150 (source
20151 (origin
20152 (method url-fetch)
20153 (uri (cran-uri "Xmisc" version))
20154 (sha256
20155 (base32
20156 "11gwlcyxhz1p50m68cnqrxmisdk99v8vrsbvyr7k67f0kvsznzs1"))))
20157 (properties `((upstream-name . "Xmisc")))
20158 (build-system r-build-system)
20159 (home-page "https://cran.r-project.org/package=Xmisc")
20160 (synopsis
20161 "Xiaobei's miscellaneous classes and functions")
20162 (description
20163 "This package provides Xiaobei's miscellaneous classes and functions,
20164 which are useful when developing R packages for @dfn{object oriented
20165 programming} (OOP) using R Reference Class.")
20166 (license license:gpl2+)))
20167
20168 (define-public r-proxyc
20169 (package
20170 (name "r-proxyc")
20171 (version "0.1.5")
20172 (source
20173 (origin
20174 (method url-fetch)
20175 (uri (cran-uri "proxyC" version))
20176 (sha256
20177 (base32
20178 "159bc42x4shm6n3rh9fc8ziv3ivq0ipmpbasrh279hhn1prc8gg6"))))
20179 (properties `((upstream-name . "proxyC")))
20180 (build-system r-build-system)
20181 (propagated-inputs
20182 `(("r-matrix" ,r-matrix)
20183 ("r-rcpp" ,r-rcpp)
20184 ("r-rcpparmadillo" ,r-rcpparmadillo)
20185 ("r-rcppparallel" ,r-rcppparallel)))
20186 (home-page "https://cran.r-project.org/package=proxyC")
20187 (synopsis "Compute proximity in large sparse matrices")
20188 (description
20189 "This package provides efficient tools to compute the proximity between
20190 rows or columns of large matrices. Functions are optimised for large sparse
20191 matrices using the Armadillo and Intel TBB libraries. Among several built-in
20192 similarity/distance measures, computation of correlation, cosine similarity
20193 and Euclidean distance is particularly fast.")
20194 (license license:gpl3)))
20195
20196 (define-public r-isocodes
20197 (package
20198 (name "r-isocodes")
20199 (version "2020.03.16")
20200 (source
20201 (origin
20202 (method url-fetch)
20203 (uri (cran-uri "ISOcodes" version))
20204 (sha256
20205 (base32
20206 "1hz1sj57qkkkrgn8slsz2n4jv1fkyp40503j9rg30lxy4gmb83hn"))))
20207 (properties `((upstream-name . "ISOcodes")))
20208 (build-system r-build-system)
20209 (home-page "https://cran.r-project.org/package=ISOcodes")
20210 (synopsis "Selected ISO codes")
20211 (description
20212 "This package provides ISO language, territory, currency, script and
20213 character codes. It provides ISO 639 language codes, ISO 3166 territory
20214 codes, ISO 4217 currency codes, ISO 15924 script codes, and the ISO 8859
20215 character codes as well as the UN M.49 area codes.")
20216 (license license:gpl2)))
20217
20218 (define-public r-stopwords
20219 (package
20220 (name "r-stopwords")
20221 (version "2.0")
20222 (source
20223 (origin
20224 (method url-fetch)
20225 (uri (cran-uri "stopwords" version))
20226 (sha256
20227 (base32
20228 "155g00ansyqfpp1mzd2q6mn0k214xinf78nww2368h24kz761jjw"))))
20229 (properties `((upstream-name . "stopwords")))
20230 (build-system r-build-system)
20231 (propagated-inputs
20232 `(("r-desc" ,r-desc)
20233 ("r-isocodes" ,r-isocodes)
20234 ("r-usethis" ,r-usethis)))
20235 (home-page "https://github.com/quanteda/stopwords")
20236 (synopsis "Multilingual stopword lists")
20237 (description
20238 "This package provides multiple sources of stopwords, for use in text
20239 analysis and natural language processing.")
20240 (license license:expat)))
20241
20242 (define-public r-spacyr
20243 (package
20244 (name "r-spacyr")
20245 (version "1.2.1")
20246 (source
20247 (origin
20248 (method url-fetch)
20249 (uri (cran-uri "spacyr" version))
20250 (sha256
20251 (base32
20252 "1b2ccgwsiqkvp7w37x8k7699c676q16vfrybkrfvyczyhki4s6nw"))))
20253 (properties `((upstream-name . "spacyr")))
20254 (build-system r-build-system)
20255 (propagated-inputs
20256 `(("r-data-table" ,r-data-table)
20257 ("r-reticulate" ,r-reticulate)))
20258 (home-page "https://spacyr.quanteda.io")
20259 (synopsis "R wrapper for the spaCy NLP library")
20260 (description
20261 "This package provides an R wrapper to the Python @dfn{natural language
20262 processing} (NLP) library @code{spaCy}, from @url{http://spacy.io}.")
20263 (license license:gpl3)))
20264
20265 (define-public r-snowballc
20266 (package
20267 (name "r-snowballc")
20268 (version "0.7.0")
20269 (source
20270 (origin
20271 (method url-fetch)
20272 (uri (cran-uri "SnowballC" version))
20273 (sha256
20274 (base32
20275 "1wwm71mp4b2mjb5985x782p6xj519dfrpd40qli7lmig6afyw3xi"))))
20276 (properties `((upstream-name . "SnowballC")))
20277 (build-system r-build-system)
20278 (home-page "https://r-forge.r-project.org/projects/r-temis/")
20279 (synopsis "Snowball stemmers based on the C libstemmer UTF-8 library")
20280 (description
20281 "This package provides an R interface to the C @code{libstemmer} library
20282 that implements Porter's word stemming algorithm for collapsing words to a
20283 common root to aid comparison of vocabulary. Currently supported languages
20284 are Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,
20285 Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish and Turkish.")
20286 (license license:bsd-3)))
20287
20288 (define-public r-quanteda
20289 (package
20290 (name "r-quanteda")
20291 (version "2.1.1")
20292 (source
20293 (origin
20294 (method url-fetch)
20295 (uri (cran-uri "quanteda" version))
20296 (sha256
20297 (base32
20298 "1wlrd7g2b459pnkqhihxhn74f37py1c9pxrdzp5xzp4mnbdxcsj8"))))
20299 (properties `((upstream-name . "quanteda")))
20300 (build-system r-build-system)
20301 (propagated-inputs
20302 `(("r-data-table" ,r-data-table)
20303 ("r-digest" ,r-digest)
20304 ("r-extrafont" ,r-extrafont)
20305 ("r-fastmatch" ,r-fastmatch)
20306 ("r-ggplot2" ,r-ggplot2)
20307 ("r-ggrepel" ,r-ggrepel)
20308 ("r-jsonlite" ,r-jsonlite)
20309 ("r-magrittr" ,r-magrittr)
20310 ("r-matrix" ,r-matrix)
20311 ("r-network" ,r-network)
20312 ("r-proxyc" ,r-proxyc)
20313 ("r-rcpp" ,r-rcpp)
20314 ("r-rcpparmadillo" ,r-rcpparmadillo)
20315 ("r-rcppparallel" ,r-rcppparallel)
20316 ("r-sna" ,r-sna)
20317 ("r-snowballc" ,r-snowballc)
20318 ("r-stopwords" ,r-stopwords)
20319 ("r-stringi" ,r-stringi)
20320 ("r-xml2" ,r-xml2)
20321 ("r-yaml" ,r-yaml)))
20322 (native-inputs
20323 `(("r-knitr" ,r-knitr)))
20324 (home-page "https://quanteda.io")
20325 (synopsis "Quantitative analysis of textual data")
20326 (description
20327 "This package provides a fast, flexible, and comprehensive framework for
20328 quantitative text analysis in R. It provides functionality for corpus
20329 management, creating and manipulating tokens and ngrams, exploring keywords in
20330 context, forming and manipulating sparse matrices of documents by features and
20331 feature co-occurrences, analyzing keywords, computing feature similarities and
20332 distances, applying content dictionaries, applying supervised and unsupervised
20333 machine learning, visually representing text and text analyses, and more.")
20334 (license license:gpl3)))
20335
20336 (define-public r-topicmodels
20337 (package
20338 (name "r-topicmodels")
20339 (version "0.2-11")
20340 (source
20341 (origin
20342 (method url-fetch)
20343 (uri (cran-uri "topicmodels" version))
20344 (sha256
20345 (base32
20346 "0jmp6wva99y0w40cfw7b0faylndhjam097x36ilc4vmyczcv89lw"))))
20347 (properties `((upstream-name . "topicmodels")))
20348 (build-system r-build-system)
20349 (native-inputs
20350 `(("gsl" ,gsl)))
20351 (propagated-inputs
20352 `(("r-modeltools" ,r-modeltools)
20353 ("r-slam" ,r-slam)
20354 ("r-tm" ,r-tm)))
20355 (home-page "https://cran.r-project.org/package=topicmodels")
20356 (synopsis "Topic models")
20357 (description
20358 "This package provides an interface to the C code for @dfn{Latent
20359 Dirichlet Allocation} (LDA) models and @dfn{Correlated Topics Models} (CTM) by
20360 David M. Blei and co-authors and the C++ code for fitting LDA models using
20361 Gibbs sampling by Xuan-Hieu Phan and co-authors.")
20362 (license license:gpl2)))
20363
20364 (define-public r-stm
20365 (package
20366 (name "r-stm")
20367 (version "1.3.5")
20368 (source
20369 (origin
20370 (method url-fetch)
20371 (uri (cran-uri "stm" version))
20372 (sha256
20373 (base32
20374 "1yyfxaxqc6yq0yq68zhdnhpwpvsyp71dlmivn7zxixfmp932s6cn"))))
20375 (properties `((upstream-name . "stm")))
20376 (build-system r-build-system)
20377 (propagated-inputs
20378 `(("r-data-table" ,r-data-table)
20379 ("r-glmnet" ,r-glmnet)
20380 ("r-lda" ,r-lda)
20381 ("r-matrix" ,r-matrix)
20382 ("r-matrixstats" ,r-matrixstats)
20383 ("r-quadprog" ,r-quadprog)
20384 ("r-quanteda" ,r-quanteda)
20385 ("r-rcpp" ,r-rcpp)
20386 ("r-rcpparmadillo" ,r-rcpparmadillo)
20387 ("r-slam" ,r-slam)
20388 ("r-stringr" ,r-stringr)))
20389 (home-page "http://www.structuraltopicmodel.com/")
20390 (synopsis "Estimation of the Structural Topic Model")
20391 (description
20392 "The @dfn{Structural Topic Model} (STM) allows researchers to estimate
20393 topic models with document-level covariates. The package also includes tools
20394 for model selection, visualization, and estimation of topic-covariate
20395 regressions.")
20396 (license license:expat)))
20397
20398 (define-public r-polycor
20399 (package
20400 (name "r-polycor")
20401 (version "0.7-10")
20402 (source
20403 (origin
20404 (method url-fetch)
20405 (uri (cran-uri "polycor" version))
20406 (sha256
20407 (base32
20408 "0wzwzklflbhi8sv9m7ijwr16v9zmkk0j0v4pbcpf32f8lbn3psna"))))
20409 (properties `((upstream-name . "polycor")))
20410 (build-system r-build-system)
20411 (propagated-inputs
20412 `(("r-matrix" ,r-matrix)
20413 ("r-mvtnorm" ,r-mvtnorm)))
20414 (home-page "https://r-forge.r-project.org/projects/polycor/")
20415 (synopsis "Polychoric and polyserial correlations")
20416 (description
20417 "This package provides tools to compute polychoric and polyserial
20418 correlations by quick \"two-step\" methods or ML, optionally with standard
20419 errors; tetrachoric and biserial correlations are special cases.")
20420 (license license:gpl2+)))
20421
20422 (define-public r-msm
20423 (package
20424 (name "r-msm")
20425 (version "1.6.8")
20426 (source
20427 (origin
20428 (method url-fetch)
20429 (uri (cran-uri "msm" version))
20430 (sha256
20431 (base32
20432 "1d32y8f0vb2dfv3999liigpns788j145nrvd1xpxb9i2lsg8mwgk"))))
20433 (properties `((upstream-name . "msm")))
20434 (build-system r-build-system)
20435 (propagated-inputs
20436 `(("r-expm" ,r-expm)
20437 ("r-mvtnorm" ,r-mvtnorm)
20438 ("r-survival" ,r-survival)))
20439 (home-page "https://github.com/chjackson/msm")
20440 (synopsis "Multi-state Markov and hidden Markov models in continuous time")
20441 (description
20442 "This package provides functions for fitting continuous-time Markov and
20443 hidden Markov multi-state models to longitudinal data. It was designed for
20444 processes observed at arbitrary times in continuous time (panel data) but some
20445 other observation schemes are supported. Both Markov transition rates and the
20446 hidden Markov output process can be modelled in terms of covariates, which may
20447 be constant or piecewise-constant in time.")
20448 (license license:gpl2+)))
20449
20450 (define-public r-ltm
20451 (package
20452 (name "r-ltm")
20453 (version "1.1-1")
20454 (source
20455 (origin
20456 (method url-fetch)
20457 (uri (cran-uri "ltm" version))
20458 (sha256
20459 (base32
20460 "1qrgzwx5l58qf5rfp1knxc84r0g943q5sdr3ky74zzwpnmrf2vf7"))))
20461 (properties `((upstream-name . "ltm")))
20462 (build-system r-build-system)
20463 (propagated-inputs
20464 `(("r-mass" ,r-mass)
20465 ("r-msm" ,r-msm)
20466 ("r-polycor" ,r-polycor)))
20467 (home-page "https://github.com/drizopoulos/ltm")
20468 (synopsis "Latent trait models under IRT")
20469 (description
20470 "This is a package supporting the analysis of multivariate dichotomous
20471 and polytomous data using latent trait models under the Item Response Theory
20472 approach. It includes the Rasch, the Two-Parameter Logistic, the Birnbaum's
20473 Three-Parameter, the Graded Response, and the Generalized Partial Credit
20474 Models.")
20475 (license license:gpl2+)))
20476
20477 (define-public r-mi
20478 (package
20479 (name "r-mi")
20480 (version "1.0")
20481 (source
20482 (origin
20483 (method url-fetch)
20484 (uri (cran-uri "mi" version))
20485 (sha256
20486 (base32
20487 "1h47k5mpbvhid83277dvvj2di493bgzz9iarpyv3r30y219l7x1l"))))
20488 (properties `((upstream-name . "mi")))
20489 (build-system r-build-system)
20490 (propagated-inputs
20491 `(("r-arm" ,r-arm)
20492 ("r-matrix" ,r-matrix)))
20493 (home-page "http://www.stat.columbia.edu/~gelman/")
20494 (synopsis "Missing data imputation and model checking")
20495 (description
20496 "This package provides functions for data manipulation, imputing missing
20497 values in an approximate Bayesian framework, diagnostics of the models used to
20498 generate the imputations, confidence-building mechanisms to validate some of
20499 the assumptions of the imputation algorithm, and functions to analyze multiply
20500 imputed data sets with the appropriate degree of sampling uncertainty.")
20501 (license license:gpl2+)))
20502
20503 (define-public r-matrixcalc
20504 (package
20505 (name "r-matrixcalc")
20506 (version "1.0-3")
20507 (source
20508 (origin
20509 (method url-fetch)
20510 (uri (cran-uri "matrixcalc" version))
20511 (sha256
20512 (base32
20513 "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp"))))
20514 (properties `((upstream-name . "matrixcalc")))
20515 (build-system r-build-system)
20516 (home-page "https://cran.r-project.org/web/packages/matrixcalc/")
20517 (synopsis "Collection of functions for matrix calculations")
20518 (description
20519 "This package provides a collection of functions to support matrix
20520 calculations for probability, econometric and numerical analysis. There are
20521 additional functions that are comparable to APL functions which are useful for
20522 actuarial models such as pension mathematics.")
20523 (license license:gpl2+)))
20524
20525 (define-public r-sem
20526 (package
20527 (name "r-sem")
20528 (version "3.1-11")
20529 (source
20530 (origin
20531 (method url-fetch)
20532 (uri (cran-uri "sem" version))
20533 (sha256
20534 (base32
20535 "03j3ig6fy34pi6nwfq9w8f5m555lilw5skr1vn6ay4yvjmvavc9k"))))
20536 (properties `((upstream-name . "sem")))
20537 (build-system r-build-system)
20538 (propagated-inputs
20539 `(("r-boot" ,r-boot)
20540 ("r-mass" ,r-mass)
20541 ("r-matrixcalc" ,r-matrixcalc)
20542 ("r-mi" ,r-mi)))
20543 (home-page "https://cran.r-project.org/package=sem")
20544 (synopsis "Structural equation models")
20545 (description
20546 "This package provides functions for fitting general linear structural
20547 equation models (with observed and latent variables) using the RAM approach,
20548 and for fitting structural equations in observed-variable models by two-stage
20549 least squares.")
20550 (license license:gpl2+)))
20551
20552 (define-public r-semtools
20553 (package
20554 (name "r-semtools")
20555 (version "0.5-3")
20556 (source
20557 (origin
20558 (method url-fetch)
20559 (uri (cran-uri "semTools" version))
20560 (sha256
20561 (base32
20562 "0k3w10fnq0l89inhxvnypyrfhlrm921mfn0kwyyfpndvbqizky1d"))))
20563 (properties `((upstream-name . "semTools")))
20564 (build-system r-build-system)
20565 (propagated-inputs
20566 `(("r-lavaan" ,r-lavaan)))
20567 (home-page "https://github.com/simsem/semTools/wiki")
20568 (synopsis "Useful tools for structural equation modeling")
20569 (description
20570 "This package provides useful tools for structural equation modeling.")
20571 (license license:gpl2+)))
20572
20573 (define-public r-regsem
20574 (package
20575 (name "r-regsem")
20576 (version "1.5.2")
20577 (source
20578 (origin
20579 (method url-fetch)
20580 (uri (cran-uri "regsem" version))
20581 (sha256
20582 (base32
20583 "0ch057010xfsw0nqcsarzakdbiplvxaldyqlbbacspqs65ax1yk7"))))
20584 (properties `((upstream-name . "regsem")))
20585 (build-system r-build-system)
20586 (propagated-inputs
20587 `(("r-lavaan" ,r-lavaan)
20588 ("r-rcpp" ,r-rcpp)
20589 ("r-rcpparmadillo" ,r-rcpparmadillo)
20590 ("r-rsolnp" ,r-rsolnp)))
20591 (home-page "https://cran.r-project.org/package=regsem")
20592 (synopsis "Regularized structural equation modeling")
20593 (description
20594 "This package uses both ridge and lasso penalties (and extensions) to
20595 penalize specific parameters in structural equation models. The package
20596 offers additional cost functions, cross validation, and other extensions
20597 beyond traditional structural equation models. It also contains a function to
20598 perform @dfn{exploratory mediation} (XMed).")
20599 (license license:gpl2+)))
20600
20601 (define-public r-stanheaders
20602 (package
20603 (name "r-stanheaders")
20604 (version "2.21.0-5")
20605 (source
20606 (origin
20607 (method url-fetch)
20608 (uri (cran-uri "StanHeaders" version))
20609 (sha256
20610 (base32
20611 "1zyph2x47x9a5baj5d79a1lzj7gajirisajvkrcngrjvw8bq7810"))))
20612 (properties `((upstream-name . "StanHeaders")))
20613 (build-system r-build-system)
20614 (inputs `(("pandoc" ,pandoc)))
20615 (propagated-inputs
20616 `(("r-rcppeigen" ,r-rcppeigen)
20617 ("r-rcppparallel" ,r-rcppparallel)))
20618 (native-inputs
20619 `(("gfortran" ,gfortran)
20620 ("r-knitr" ,r-knitr))) ; for vignettes
20621 (home-page "https://mc-stan.org/")
20622 (synopsis "C++ header files for Stan")
20623 (description
20624 "The C++ header files of the Stan project are provided by this package.
20625 There is a shared object containing part of the @code{CVODES} library, but it
20626 is not accessible from R. @code{r-stanheaders} is only useful for developers
20627 who want to utilize the @code{LinkingTo} directive of their package's
20628 DESCRIPTION file to build on the Stan library without incurring unnecessary
20629 dependencies.
20630
20631 The Stan project develops a probabilistic programming language that implements
20632 full or approximate Bayesian statistical inference via Markov Chain Monte
20633 Carlo or variational methods and implements (optionally penalized) maximum
20634 likelihood estimation via optimization. The Stan library includes an advanced
20635 automatic differentiation scheme, templated statistical and linear algebra
20636 functions that can handle the automatically differentiable scalar types (and
20637 doubles, ints, etc.), and a parser for the Stan language. The @code{r-rstan}
20638 package provides user-facing R functions to parse, compile, test, estimate,
20639 and analyze Stan models.")
20640 (license license:bsd-3)))
20641
20642 (define-public r-rpf
20643 (package
20644 (name "r-rpf")
20645 (version "1.0.4")
20646 (source
20647 (origin
20648 (method url-fetch)
20649 (uri (cran-uri "rpf" version))
20650 (sha256
20651 (base32
20652 "17crcgsbcsh0c00n7bgdqfnd7n1vzz7drfxjs7d18253yl5x44pl"))))
20653 (properties `((upstream-name . "rpf")))
20654 (build-system r-build-system)
20655 (propagated-inputs
20656 `(("r-lifecycle" ,r-lifecycle)
20657 ("r-mvtnorm" ,r-mvtnorm)
20658 ("r-rcpp" ,r-rcpp)
20659 ("r-rcppeigen" ,r-rcppeigen)))
20660 (native-inputs
20661 `(("r-knitr" ,r-knitr)))
20662 (home-page "https://github.com/jpritikin/rpf")
20663 (synopsis "Response probability functions")
20664 (description
20665 "The purpose of this package is to factor out logic and math common to
20666 Item Factor Analysis fitting, diagnostics, and analysis. It is envisioned as
20667 core support code suitable for more specialized IRT packages to build upon.
20668 Complete access to optimized C functions is made available with
20669 @code{R_RegisterCCallable()}.")
20670 (license license:gpl3+)))
20671
20672 (define-public r-openmx
20673 (package
20674 (name "r-openmx")
20675 (version "2.17.4")
20676 (source
20677 (origin
20678 (method url-fetch)
20679 (uri (cran-uri "OpenMx" version))
20680 (sha256
20681 (base32
20682 "07y4w7xdb63p5kkrj6sdx1kabbsgbbj7nw9hc690jy84r15aryal"))))
20683 (properties `((upstream-name . "OpenMx")))
20684 (build-system r-build-system)
20685 (propagated-inputs
20686 `(("r-bh" ,r-bh)
20687 ("r-digest" ,r-digest)
20688 ("r-mass" ,r-mass)
20689 ("r-matrix" ,r-matrix)
20690 ("r-rcpp" ,r-rcpp)
20691 ("r-rcppeigen" ,r-rcppeigen)
20692 ("r-rpf" ,r-rpf)
20693 ("r-stanheaders" ,r-stanheaders)))
20694 (native-inputs `(("gfortran" ,gfortran)))
20695 (home-page "http://openmx.ssri.psu.edu")
20696 (synopsis "Extended structural equation modelling")
20697 (description
20698 "This package allows for the estimation of a wide variety of advanced
20699 multivariate statistical models. It consists of a library of functions and
20700 optimizers that allow you to quickly and flexibly define an SEM model and
20701 estimate parameters given observed data.")
20702 (license license:asl2.0)))
20703
20704 (define-public r-kutils
20705 (package
20706 (name "r-kutils")
20707 (version "1.70")
20708 (source
20709 (origin
20710 (method url-fetch)
20711 (uri (cran-uri "kutils" version))
20712 (sha256
20713 (base32
20714 "06jk66wbq3jmdf2jdhqns6r3yk36l2x7c907x977zv80sqxa1l37"))))
20715 (properties `((upstream-name . "kutils")))
20716 (build-system r-build-system)
20717 (propagated-inputs
20718 `(("r-foreign" ,r-foreign)
20719 ("r-openxlsx" ,r-openxlsx)
20720 ("r-plyr" ,r-plyr)
20721 ("r-runit" ,r-runit)
20722 ("r-xtable" ,r-xtable)))
20723 (home-page "https://cran.r-project.org/package=kutils")
20724 (synopsis "Project management tools")
20725 (description
20726 "This package provides tools for data importation, recoding, and
20727 inspection. There are functions to create new project folders, R code
20728 templates, create uniquely named output directories, and to quickly obtain a
20729 visual summary for each variable in a data frame. The main feature here is
20730 the systematic implementation of the \"variable key\" framework for data
20731 importation and recoding.")
20732 (license license:gpl2)))
20733
20734 (define-public r-rockchalk
20735 (package
20736 (name "r-rockchalk")
20737 (version "1.8.144")
20738 (source
20739 (origin
20740 (method url-fetch)
20741 (uri (cran-uri "rockchalk" version))
20742 (sha256
20743 (base32
20744 "07dp1n155b9gfvk8l30h6bhjbhbylsjxfzns08mryn4mxj3nqpnb"))))
20745 (properties `((upstream-name . "rockchalk")))
20746 (build-system r-build-system)
20747 (propagated-inputs
20748 `(("r-cardata" ,r-cardata)
20749 ("r-kutils" ,r-kutils)
20750 ("r-lme4" ,r-lme4)
20751 ("r-mass" ,r-mass)))
20752 (home-page "https://cran.r-project.org/package=rockchalk")
20753 (synopsis "Regression estimation and presentation")
20754 (description
20755 "This package provides a collection of functions for interpretation and
20756 presentation of regression analysis. These functions are used to produce the
20757 statistics lectures in @url{http://pj.freefaculty.org/guides}. The package
20758 includes regression diagnostics, regression tables, and plots of interactions
20759 and \"moderator\" variables. The emphasis is on \"mean-centered\" and
20760 \"residual-centered\" predictors. The vignette @code{rockchalk} offers a
20761 fairly comprehensive overview.")
20762 (license license:gpl3+)))
20763
20764 (define-public r-lisreltor
20765 (package
20766 (name "r-lisreltor")
20767 (version "0.1.4")
20768 (source
20769 (origin
20770 (method url-fetch)
20771 (uri (cran-uri "lisrelToR" version))
20772 (sha256
20773 (base32
20774 "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5"))))
20775 (properties `((upstream-name . "lisrelToR")))
20776 (build-system r-build-system)
20777 (home-page "https://cran.r-project.org/package=lisrelToR")
20778 (synopsis "Import output from LISREL into R")
20779 (description
20780 "This is an unofficial package aimed at automating the import of LISREL
20781 output in R.")
20782 (license license:gpl2)))
20783
20784 (define-public r-bdgraph
20785 (package
20786 (name "r-bdgraph")
20787 (version "2.62")
20788 (source
20789 (origin
20790 (method url-fetch)
20791 (uri (cran-uri "BDgraph" version))
20792 (sha256
20793 (base32
20794 "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby"))))
20795 (properties `((upstream-name . "BDgraph")))
20796 (build-system r-build-system)
20797 (propagated-inputs
20798 `(("r-igraph" ,r-igraph)))
20799 (home-page "https://www.uva.nl/profile/a.mohammadi")
20800 (synopsis "Bayesian structure learning in graphical models")
20801 (description
20802 "This package provides statistical tools for Bayesian structure learning
20803 in undirected graphical models for continuous, discrete, and mixed data. It
20804 uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based
20805 on a continuous-time birth-death process.")
20806 (license license:gpl2+)))
20807
20808 (define-public r-d3network
20809 (package
20810 (name "r-d3network")
20811 (version "0.5.2.1")
20812 (source
20813 (origin
20814 (method url-fetch)
20815 (uri (cran-uri "d3Network" version))
20816 (sha256
20817 (base32
20818 "1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
20819 (properties `((upstream-name . "d3Network")))
20820 (build-system r-build-system)
20821 (propagated-inputs
20822 `(("r-plyr" ,r-plyr)
20823 ("r-rjson" ,r-rjson)
20824 ("r-whisker" ,r-whisker)))
20825 (home-page "http://christophergandrud.github.io/d3Network/")
20826 (synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
20827 (description
20828 "This package is intended to make it easy to create D3 JavaScript
20829 network, tree, dendrogram, and Sankey graphs from R using data frames.")
20830 (license license:gpl3+)))
20831
20832 (define-public r-qgraph
20833 (package
20834 (name "r-qgraph")
20835 (version "1.6.5")
20836 (source
20837 (origin
20838 (method url-fetch)
20839 (uri (cran-uri "qgraph" version))
20840 (sha256
20841 (base32
20842 "0pwys9irxvp0ap158drplyypkplbmwqinv0fmlsblk7q875cr592"))))
20843 (properties `((upstream-name . "qgraph")))
20844 (build-system r-build-system)
20845 (propagated-inputs
20846 `(("r-abind" ,r-abind)
20847 ("r-bdgraph" ,r-bdgraph)
20848 ("r-colorspace" ,r-colorspace)
20849 ("r-corpcor" ,r-corpcor)
20850 ("r-d3network" ,r-d3network)
20851 ("r-dplyr" ,r-dplyr)
20852 ("r-fdrtool" ,r-fdrtool)
20853 ("r-ggplot2" ,r-ggplot2)
20854 ("r-ggraph" ,r-ggraph)
20855 ("r-glasso" ,r-glasso)
20856 ("r-gtools" ,r-gtools)
20857 ("r-hmisc" ,r-hmisc)
20858 ("r-huge" ,r-huge)
20859 ("r-igraph" ,r-igraph)
20860 ("r-jpeg" ,r-jpeg)
20861 ("r-lavaan" ,r-lavaan)
20862 ("r-matrix" ,r-matrix)
20863 ("r-pbapply" ,r-pbapply)
20864 ("r-plyr" ,r-plyr)
20865 ("r-png" ,r-png)
20866 ("r-psych" ,r-psych)
20867 ("r-rcpp" ,r-rcpp)
20868 ("r-reshape2" ,r-reshape2)
20869 ("r-tidygraph" ,r-tidygraph)))
20870 (home-page "http://sachaepskamp.com/qgraph/")
20871 (synopsis "Weighted network visualization and analysis")
20872 (description
20873 "This package implements tools for weighted network visualization and
20874 analysis, as well as Gaussian graphical model computation. It contains graph
20875 plotting methods, and tools for psychometric data visualization and graphical
20876 model estimation. See Epskamp et al. (2012)
20877 @url{doi:10.18637/jss.v048.i04}.")
20878 (license license:gpl2)))
20879
20880 (define-public r-semplot
20881 (package
20882 (name "r-semplot")
20883 (version "1.1.2")
20884 (source
20885 (origin
20886 (method url-fetch)
20887 (uri (cran-uri "semPlot" version))
20888 (sha256
20889 (base32
20890 "0l1v9yi1pv59iwfknw4dh9qskk5y8r347jq1vq13gnfd3bmd71xr"))))
20891 (properties `((upstream-name . "semPlot")))
20892 (build-system r-build-system)
20893 (propagated-inputs
20894 `(("r-colorspace" ,r-colorspace)
20895 ("r-corpcor" ,r-corpcor)
20896 ("r-igraph" ,r-igraph)
20897 ("r-lavaan" ,r-lavaan)
20898 ("r-lisreltor" ,r-lisreltor)
20899 ("r-openmx" ,r-openmx)
20900 ("r-plyr" ,r-plyr)
20901 ("r-qgraph" ,r-qgraph)
20902 ("r-regsem" ,r-regsem)
20903 ("r-rockchalk" ,r-rockchalk)
20904 ("r-sem" ,r-sem)
20905 ("r-xml" ,r-xml)))
20906 (home-page "https://github.com/SachaEpskamp/semPlot")
20907 (synopsis "Unified visualizations of structural equation models")
20908 (description
20909 "Structural equation modeling (SEM) has a long history of representing
20910 models graphically as path diagrams. The semPlot package for R fills the gap
20911 between advanced, but time-consuming, graphical software and the limited
20912 graphics produced automatically by SEM software. In addition, semPlot offers
20913 more functionality than drawing path diagrams: it can act as a common ground
20914 for importing SEM results into R. Any result usable as input to semPlot can
20915 also be represented in any of the three popular SEM frame-works, as well as
20916 translated to input syntax for the R packages @code{sem} and @code{lavaan}.")
20917 (license license:gpl2)))
20918
20919 (define-public r-cdm
20920 (package
20921 (name "r-cdm")
20922 (version "7.5-15")
20923 (source
20924 (origin
20925 (method url-fetch)
20926 (uri (cran-uri "CDM" version))
20927 (sha256
20928 (base32
20929 "159ny2dz0rf1r3k1mqlfwambffc8rx425sggf5bn51nybpzanq3l"))))
20930 (properties `((upstream-name . "CDM")))
20931 (build-system r-build-system)
20932 (propagated-inputs
20933 `(("r-mvtnorm" ,r-mvtnorm)
20934 ("r-polycor" ,r-polycor)
20935 ("r-rcpp" ,r-rcpp)
20936 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20937 (home-page
20938 "https://github.com/alexanderrobitzsch/CDM")
20939 (synopsis "Cognitive diagnosis modeling")
20940 (description
20941 "This package provides functions for cognitive diagnosis modeling and
20942 multidimensional item response modeling for dichotomous and polytomous item
20943 responses. It enables the estimation of the DINA and DINO model, the multiple
20944 group (polytomous) GDINA model, the multiple choice DINA model, the general
20945 diagnostic model (GDM), the structured latent class model (SLCA), and
20946 regularized latent class analysis. See George, Robitzsch, Kiefer, Gross, and
20947 Uenlue (2017) @url{doi:10.18637/jss.v074.i02} for further details on
20948 estimation and the package structure. For tutorials on how to use the CDM
20949 package see George and Robitzsch (2015, @url{doi:10.20982/tqmp.11.3.p189}) as
20950 well as Ravand and Robitzsch (2015).")
20951 (license license:gpl2+)))
20952
20953 (define-public r-tam
20954 (package
20955 (name "r-tam")
20956 (version "3.5-19")
20957 (source
20958 (origin
20959 (method url-fetch)
20960 (uri (cran-uri "TAM" version))
20961 (sha256
20962 (base32
20963 "1x1pdy0hrk4c3x5l4gcslpvyb0sv2zgly4n3a7y8j6yrzajx0sg7"))))
20964 (properties `((upstream-name . "TAM")))
20965 (build-system r-build-system)
20966 (propagated-inputs
20967 `(("r-cdm" ,r-cdm)
20968 ("r-rcpp" ,r-rcpp)
20969 ("r-rcpparmadillo" ,r-rcpparmadillo)))
20970 (home-page "http://www.edmeasurementsurveys.com/TAM/Tutorials/")
20971 (synopsis "Test analysis modules")
20972 (description
20973 "This package includes tools for marginal maximum likelihood estimation
20974 and joint maximum likelihood estimation for unidimensional and
20975 multidimensional item response models. The package functionality covers the
20976 Rasch model, 2PL model, 3PL model, generalized partial credit model,
20977 multi-faceted Rasch model, nominal item response model, structured latent
20978 class model, mixture distribution IRT models, and located latent class models.
20979 Latent regression models and plausible value imputation are also supported.")
20980 (license license:gpl2+)))
20981
20982 (define-public r-erm
20983 (package
20984 (name "r-erm")
20985 (version "1.0-1")
20986 (source
20987 (origin
20988 (method url-fetch)
20989 (uri (cran-uri "eRm" version))
20990 (sha256
20991 (base32
20992 "0njqzznnhnkvalmhiq5yq1w7gwp2myki5cv61w42ydvd27hdyyg9"))))
20993 (properties `((upstream-name . "eRm")))
20994 (build-system r-build-system)
20995 (propagated-inputs
20996 `(("r-colorspace" ,r-colorspace)
20997 ("r-lattice" ,r-lattice)
20998 ("r-mass" ,r-mass)
20999 ("r-matrix" ,r-matrix)
21000 ("r-psych" ,r-psych)))
21001 (native-inputs `(("gfortran" ,gfortran)))
21002 (home-page "https://cran.r-project.org/package=eRm")
21003 (synopsis "Extended Rasch modeling")
21004 (description
21005 "This package provides tools to fit @dfn{Rasch models} (RM), @dfn{linear
21006 logistic test models} (LLTM), @dfn{rating scale model} (RSM), @dfn{linear
21007 rating scale models} (LRSM), @dfn{partial credit models} (PCM), and
21008 @dfn{linear partial credit models} (LPCM). Missing values are allowed in the
21009 data matrix. Additional features are the ML estimation of the person
21010 parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
21011 nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
21012 infit and outfit measures, ICC and other plots, automated stepwise item
21013 elimination, and a simulation module for various binary data matrices.")
21014 (license license:gpl3)))
21015
21016 (define-public r-irtoys
21017 (package
21018 (name "r-irtoys")
21019 (version "0.2.1")
21020 (source
21021 (origin
21022 (method url-fetch)
21023 (uri (cran-uri "irtoys" version))
21024 (sha256
21025 (base32
21026 "0h6iiaxikhbxhbyksbjnb09qdxinlkwr2v9yzs5wslbni14paq5q"))))
21027 (properties `((upstream-name . "irtoys")))
21028 (build-system r-build-system)
21029 (propagated-inputs
21030 `(("r-ltm" ,r-ltm)
21031 ("r-sm" ,r-sm)))
21032 (home-page "https://cran.r-project.org/package=irtoys")
21033 (synopsis "Collection of functions related to Item Response Theory (IRT)")
21034 (description
21035 "This package provides a collection of functions useful in learning and
21036 practicing @dfn{Item Response Theory} (IRT), which can be combined into larger
21037 programs. It provides basic CTT analysis, a simple common interface to the
21038 estimation of item parameters in IRT models for binary responses with three
21039 different programs (ICL, BILOG-MG, and ltm), ability estimation (MLE, BME,
21040 EAP, WLE, plausible values), item and person fit statistics, scaling
21041 methods (MM, MS, Stocking-Lord, and the complete Hebaera method), and a rich
21042 array of parametric and non-parametric (kernel) plots. It estimates and plots
21043 Haberman's interaction model when all items are dichotomously scored.")
21044 (license license:gpl2+)))
21045
21046 (define-public r-iheatmapr
21047 (package
21048 (name "r-iheatmapr")
21049 (version "0.5.0")
21050 (source
21051 (origin
21052 (method url-fetch)
21053 (uri (cran-uri "iheatmapr" version))
21054 (sha256
21055 (base32
21056 "0s2lc088rq2siy2wzmg1y6nss68rs33mf7w2izqqmg6kbx6d7y9h"))))
21057 (properties `((upstream-name . "iheatmapr")))
21058 (build-system r-build-system)
21059 (propagated-inputs
21060 `(("r-fastcluster" ,r-fastcluster)
21061 ("r-ggdendro" ,r-ggdendro)
21062 ("r-htmlwidgets" ,r-htmlwidgets)
21063 ("r-jsonlite" ,r-jsonlite)
21064 ("r-knitr" ,r-knitr)
21065 ("r-magrittr" ,r-magrittr)
21066 ("r-rcolorbrewer" ,r-rcolorbrewer)
21067 ("r-scales" ,r-scales)))
21068 (native-inputs
21069 `(("r-knitr" ,r-knitr)))
21070 (home-page "https://docs.ropensci.org/iheatmapr")
21071 (synopsis "Interactive, Complex Heatmaps")
21072 (description
21073 "iheatmapr is an R package for building complex, interactive heatmaps
21074 using modular building blocks. \"Complex\" heatmaps are heatmaps in which
21075 subplots along the rows or columns of the main heatmap add more information
21076 about each row or column. For example, a one column additional heatmap may
21077 indicate what group a particular row or column belongs to. Complex heatmaps
21078 may also include multiple side by side heatmaps which show different types of
21079 data for the same conditions. Interactivity can improve complex heatmaps by
21080 providing tooltips with information about each cell and enabling zooming into
21081 interesting features. iheatmapr uses the plotly library for interactivity.")
21082 (license license:expat)))
21083
21084 (define-public r-packrat
21085 (package
21086 (name "r-packrat")
21087 (version "0.5.0")
21088 (source
21089 (origin
21090 (method url-fetch)
21091 (uri (cran-uri "packrat" version))
21092 (sha256
21093 (base32
21094 "1xy5dd2hrpqa07jfl4s7dsrya05mf36ms74j833scdz0zf89586n"))))
21095 (properties `((upstream-name . "packrat")))
21096 (build-system r-build-system)
21097 (home-page "https://github.com/rstudio/packrat/")
21098 (synopsis "Dependency management R projects")
21099 (description
21100 "This package provides a dependency manager for R projects that allows
21101 you to manage the R packages your project depends on in an isolated, portable,
21102 and reproducible way.")
21103 (license license:gpl2)))
21104
21105 (define-public r-rsconnect
21106 (package
21107 (name "r-rsconnect")
21108 (version "0.8.16")
21109 (source
21110 (origin
21111 (method url-fetch)
21112 (uri (cran-uri "rsconnect" version))
21113 (sha256
21114 (base32
21115 "05ii0p0p7xpf8z0c1594s5q7wpwcs7lmlddrd67s5p2ka5m8qwiz"))))
21116 (properties `((upstream-name . "rsconnect")))
21117 (build-system r-build-system)
21118 (propagated-inputs
21119 `(("r-curl" ,r-curl)
21120 ("r-digest" ,r-digest)
21121 ("r-jsonlite" ,r-jsonlite)
21122 ("r-openssl" ,r-openssl)
21123 ("r-packrat" ,r-packrat)
21124 ("r-rstudioapi" ,r-rstudioapi)
21125 ("r-yaml" ,r-yaml)))
21126 (home-page "https://github.com/rstudio/rsconnect")
21127 (synopsis "Deployment interface for R Markdown documents and Shiny applications")
21128 (description
21129 "This package provides a programmatic deployment interface for RPubs,
21130 shinyapps.io, and RStudio Connect. Supported content types include R Markdown
21131 documents, Shiny applications, Plumber APIs, plots, and static web content.")
21132 (license license:gpl2)))
21133
21134 ;; This package includes minified JavaScript files. When upgrading please
21135 ;; check that there are no new minified JavaScript files.
21136 (define-public r-dygraphs
21137 (package
21138 (name "r-dygraphs")
21139 (version "1.1.1.6")
21140 (source
21141 (origin
21142 (method url-fetch)
21143 (uri (cran-uri "dygraphs" version))
21144 (sha256
21145 (base32
21146 "022j007mzfa9k2n31yg4aizcsf571vv3jip092h23rqj03rk3ly3"))))
21147 (properties `((upstream-name . "dygraphs")))
21148 (build-system r-build-system)
21149 (arguments
21150 `(#:modules ((guix build utils)
21151 (guix build r-build-system)
21152 (srfi srfi-1)
21153 (ice-9 popen))
21154 #:phases
21155 (modify-phases %standard-phases
21156 (add-after 'unpack 'process-javascript
21157 (lambda* (#:key inputs #:allow-other-keys)
21158 (with-directory-excursion "inst/htmlwidgets/lib/"
21159 (call-with-values
21160 (lambda ()
21161 (unzip2
21162 `(("dygraphs/dygraph-combined-dev.js"
21163 "dygraph-combined.js")
21164 (,(assoc-ref inputs "js-jquery")
21165 "jquery/jquery.min.js")
21166 (,(assoc-ref inputs "js-fquarter")
21167 "fquarter/moment-fquarter.min.js"))))
21168 (lambda (sources targets)
21169 (for-each (lambda (source target)
21170 (format #t "Processing ~a --> ~a~%"
21171 source target)
21172 (let ((minified (open-pipe* OPEN_READ "uglify-js" source)))
21173 (call-with-output-file target
21174 (lambda (port)
21175 (dump-port minified port)))))
21176 sources targets))))
21177 #t)))))
21178 (native-inputs
21179 `(("uglify-js" ,uglify-js)
21180 ;; They actually use version 1.11.1, but this more recent version
21181 ;; should be just fine.
21182 ("js-jquery"
21183 ,(origin
21184 (method url-fetch)
21185 (uri "https://code.jquery.com/jquery-1.12.4.js")
21186 (sha256
21187 (base32
21188 "0x9mrc1668icvhpwzvgafm8xm11x9lfai9nwr66aw6pjnpwkc3s3"))))
21189 ("js-fquarter"
21190 ,(origin
21191 (method url-fetch)
21192 (uri (string-append "https://raw.githubusercontent.com/robgallen/"
21193 "moment-fquarter/1.0.1/moment-fquarter.js"))
21194 (sha256
21195 (base32
21196 "01mdnsaibm9jy2f1qpbn692hpv309lhj5si9nagib4dawmrkffij"))))))
21197 (propagated-inputs
21198 `(("r-htmltools" ,r-htmltools)
21199 ("r-htmlwidgets" ,r-htmlwidgets)
21200 ("r-magrittr" ,r-magrittr)
21201 ("r-xts" ,r-xts)
21202 ("r-zoo" ,r-zoo)))
21203 (home-page "https://github.com/rstudio/dygraphs")
21204 (synopsis "Interface to Dygraphs interactive time series charting library")
21205 (description
21206 "This package provides an R interface to the dygraphs JavaScript charting
21207 library (a copy of which is included in the package). It provides rich
21208 facilities for charting time-series data in R, including highly configurable
21209 series- and axis-display and interactive features like zoom/pan and
21210 series/point highlighting.")
21211 (license license:expat)))
21212
21213 (define-public r-shinystan
21214 (package
21215 (name "r-shinystan")
21216 (version "2.5.0")
21217 (source
21218 (origin
21219 (method url-fetch)
21220 (uri (cran-uri "shinystan" version))
21221 (sha256
21222 (base32
21223 "18alf5kiqw7y2l6m5nxxizwc2znsf9frxfsqhvgcad8hld9cbya5"))))
21224 (properties `((upstream-name . "shinystan")))
21225 (build-system r-build-system)
21226 (propagated-inputs
21227 `(("r-bayesplot" ,r-bayesplot)
21228 ("r-colourpicker" ,r-colourpicker)
21229 ("r-dt" ,r-dt)
21230 ("r-dygraphs" ,r-dygraphs)
21231 ("r-ggplot2" ,r-ggplot2)
21232 ("r-gridextra" ,r-gridextra)
21233 ("r-gtools" ,r-gtools)
21234 ("r-markdown" ,r-markdown)
21235 ("r-reshape2" ,r-reshape2)
21236 ("r-rsconnect" ,r-rsconnect)
21237 ("r-rstan" ,r-rstan)
21238 ("r-shiny" ,r-shiny)
21239 ("r-shinyjs" ,r-shinyjs)
21240 ("r-shinythemes" ,r-shinythemes)
21241 ("r-threejs" ,r-threejs)
21242 ("r-xtable" ,r-xtable)
21243 ("r-xts" ,r-xts)))
21244 (home-page "https://mc-stan.org/")
21245 (synopsis "Interactive visual and numerical analysis for Bayesian models")
21246 (description
21247 "This package provides a graphical user interface for interactive
21248 @dfn{Markov chain Monte Carlo} (MCMC) diagnostics and plots and tables helpful
21249 for analyzing a posterior sample. The interface is powered by the Shiny web
21250 application framework and works with the output of MCMC programs written in
21251 any programming language (and has extended functionality for Stan models fit
21252 using the @code{rstan} and @code{rstanarm} packages).")
21253 (license license:gpl3+)))
21254
21255 (define-public r-rstantools
21256 (package
21257 (name "r-rstantools")
21258 (version "2.1.1")
21259 (source
21260 (origin
21261 (method url-fetch)
21262 (uri (cran-uri "rstantools" version))
21263 (sha256
21264 (base32
21265 "0b9x8rzj3dr4m7yjx476nn42z22xd1xnw85m9frfwxy5ivg1any9"))))
21266 (properties `((upstream-name . "rstantools")))
21267 (build-system r-build-system)
21268 (inputs `(("pandoc" ,pandoc)))
21269 (propagated-inputs
21270 `(("r-desc" ,r-desc)
21271 ("r-rcpp" ,r-rcpp)
21272 ("r-rcppparallel" ,r-rcppparallel)))
21273 (native-inputs
21274 `(("r-knitr" ,r-knitr)))
21275 (home-page "https://mc-stan.org/rstantools/")
21276 (synopsis "Tools for developing R packages interfacing with Stan")
21277 (description
21278 "This package provides various tools for developers of R packages
21279 interfacing with @url{https://mc-stan.org, Stan}, including functions to set
21280 up the required package structure, S3 generics and default methods to unify
21281 function naming across Stan-based R packages, and vignettes with
21282 recommendations for developers.")
21283 (license license:gpl3+)))
21284
21285 (define-public r-loo
21286 (package
21287 (name "r-loo")
21288 (version "2.3.1")
21289 (source
21290 (origin
21291 (method url-fetch)
21292 (uri (cran-uri "loo" version))
21293 (sha256
21294 (base32 "12z0k8lhz0rxygs5lc7076nw6qhk0pda8nxf65hkinfrf4dy53fr"))))
21295 (properties `((upstream-name . "loo")))
21296 (build-system r-build-system)
21297 (inputs
21298 `(("pandoc" ,pandoc)
21299 ("pandoc-citeproc" ,pandoc-citeproc)))
21300 (propagated-inputs
21301 `(("r-checkmate" ,r-checkmate)
21302 ("r-matrixstats" ,r-matrixstats)))
21303 (native-inputs
21304 `(("r-knitr" ,r-knitr)))
21305 (home-page "https://mc-stan.org/loo/")
21306 (synopsis "Leave-One-Out cross-validation and WAIC for Bayesian models")
21307 (description
21308 "This package provides an implementation of efficient approximate
21309 @dfn{leave-one-out} (LOO) cross-validation for Bayesian models fit using
21310 Markov chain Monte Carlo, as described in @url{doi:10.1007/s11222-016-9696-4}.
21311 The approximation uses @dfn{Pareto smoothed importance sampling} (PSIS), a new
21312 procedure for regularizing importance weights. As a byproduct of the
21313 calculations, we also obtain approximate standard errors for estimated
21314 predictive errors and for the comparison of predictive errors between models.
21315 The package also provides methods for using stacking and other model weighting
21316 techniques to average Bayesian predictive distributions.")
21317 (license license:gpl3+)))
21318
21319 (define-public r-rstan
21320 (package
21321 (name "r-rstan")
21322 (version "2.21.2")
21323 (source
21324 (origin
21325 (method url-fetch)
21326 (uri (cran-uri "rstan" version))
21327 (sha256
21328 (base32
21329 "0jh58qfrksd2j9w2zy4bajryivgp36m3xdb9mjrjqbk1ib9h83p3"))))
21330 (properties `((upstream-name . "rstan")))
21331 (build-system r-build-system)
21332 (arguments
21333 `(#:phases
21334 (modify-phases %standard-phases
21335 (add-before 'install 'set-timezone
21336 ;; This package is picky about timezones.
21337 (lambda* (#:key inputs #:allow-other-keys)
21338 (setenv "TZ" "UTC+1")
21339 (setenv "TZDIR"
21340 (string-append (assoc-ref inputs "tzdata")
21341 "/share/zoneinfo"))
21342 #t)))))
21343 (native-inputs
21344 `(("tzdata" ,tzdata-for-tests)
21345 ("pandoc" ,pandoc)
21346 ("r-knitr" ,r-knitr)))
21347 (propagated-inputs
21348 `(("r-bh" ,r-bh)
21349 ("r-ggplot2" ,r-ggplot2)
21350 ("r-gridextra" ,r-gridextra)
21351 ("r-inline" ,r-inline)
21352 ("r-loo" ,r-loo)
21353 ("r-pkgbuild" ,r-pkgbuild)
21354 ("r-rcpp" ,r-rcpp)
21355 ("r-rcppeigen" ,r-rcppeigen)
21356 ("r-rcppparallel" ,r-rcppparallel)
21357 ("r-stanheaders" ,r-stanheaders)
21358 ("r-v8" ,r-v8)
21359 ("r-withr" ,r-withr)))
21360 (home-page "https://discourse.mc-stan.org/")
21361 (synopsis "R interface to Stan")
21362 (description
21363 "User-facing R functions are provided to parse, compile, test, estimate,
21364 and analyze Stan models by accessing the header-only Stan library provided by
21365 the StanHeaders package. The Stan project develops a probabilistic
21366 programming language that implements full Bayesian statistical inference via
21367 Markov Chain Monte Carlo, rough Bayesian inference via 'variational'
21368 approximation, and (optionally penalized) maximum likelihood estimation via
21369 optimization. In all three cases, automatic differentiation is used to
21370 quickly and accurately evaluate gradients without burdening the user with the
21371 need to derive the partial derivatives.")
21372 (license license:gpl3+)))
21373
21374 (define-public r-rstanarm
21375 (package
21376 (name "r-rstanarm")
21377 (version "2.21.1")
21378 (source
21379 (origin
21380 (method url-fetch)
21381 (uri (cran-uri "rstanarm" version))
21382 (sha256
21383 (base32
21384 "04ggzak3f7jaxza3dxyrmxp5b48qcgyspy22ykbhr03g4hzp7jk8"))))
21385 (properties `((upstream-name . "rstanarm")))
21386 (build-system r-build-system)
21387 (inputs
21388 `(("pandoc" ,pandoc)
21389 ("pandoc-citeproc" ,pandoc-citeproc)))
21390 (propagated-inputs
21391 `(("r-bayesplot" ,r-bayesplot)
21392 ("r-bh" ,r-bh)
21393 ("r-ggplot2" ,r-ggplot2)
21394 ("r-lme4" ,r-lme4)
21395 ("r-loo" ,r-loo)
21396 ("r-matrix" ,r-matrix)
21397 ("r-nlme" ,r-nlme)
21398 ("r-rcpp" ,r-rcpp)
21399 ("r-rcppeigen" ,r-rcppeigen)
21400 ("r-rcppparallel" ,r-rcppparallel)
21401 ("r-rstan" ,r-rstan)
21402 ("r-rstantools" ,r-rstantools)
21403 ("r-shinystan" ,r-shinystan)
21404 ("r-stanheaders" ,r-stanheaders)
21405 ("r-survival" ,r-survival)))
21406 (native-inputs
21407 `(("r-knitr" ,r-knitr)))
21408 (home-page "https://mc-stan.org/rstanarm/")
21409 (synopsis "Bayesian applied regression modeling via Stan")
21410 (description
21411 "This package estimates previously compiled regression models using the
21412 @code{rstan} package, which provides the R interface to the Stan C++ library
21413 for Bayesian estimation. Users specify models via the customary R syntax with
21414 a formula and @code{data.frame} plus some additional arguments for priors.")
21415 (license license:gpl3+)))
21416
21417 (define-public r-kendall
21418 (package
21419 (name "r-kendall")
21420 (version "2.2")
21421 (source
21422 (origin
21423 (method url-fetch)
21424 (uri (cran-uri "Kendall" version))
21425 (sha256
21426 (base32
21427 "0z2yr3x2nvdm81w2imb61hxwcbmg14kfb2bxgh3wmkmv3wfjwkwn"))))
21428 (properties `((upstream-name . "Kendall")))
21429 (build-system r-build-system)
21430 (propagated-inputs
21431 `(("r-boot" ,r-boot)))
21432 (native-inputs
21433 `(("gfortran" ,gfortran)))
21434 (home-page "https://cran.r-project.org/web/packages/Kendall/")
21435 (synopsis "Kendall rank correlation and Mann-Kendall trend test")
21436 (description
21437 "This package computes the Kendall rank correlation and Mann-Kendall
21438 trend test.")
21439 (license license:gpl2+)))
21440
21441 (define-public r-zyp
21442 (package
21443 (name "r-zyp")
21444 (version "0.10-1.1")
21445 (source
21446 (origin
21447 (method url-fetch)
21448 (uri (cran-uri "zyp" version))
21449 (sha256
21450 (base32
21451 "03cxpkfbhrx1fy8l0dl9a13ghz93cqq6877wa8rig09ksdiivaw9"))))
21452 (properties `((upstream-name . "zyp")))
21453 (build-system r-build-system)
21454 (propagated-inputs
21455 `(("r-kendall" ,r-kendall)))
21456 (home-page "https://cran.r-project.org/web/packages/zyp/")
21457 (synopsis "Zhang + Yue-Pilon Trends Package")
21458 (description
21459 "This package contains an efficient implementation of Sen's slope
21460 method (Sen, 1968) plus implementation of Xuebin Zhang's (Zhang, 1999) and
21461 Yue-Pilon's (Yue, 2002) pre-whitening approaches to determining trends in
21462 climate data.")
21463 (license license:lgpl2.1)))
21464
21465 (define-public r-rlinsolve
21466 (package
21467 (name "r-rlinsolve")
21468 (version "0.3.1")
21469 (source
21470 (origin
21471 (method url-fetch)
21472 (uri (cran-uri "Rlinsolve" version))
21473 (sha256
21474 (base32
21475 "1x02xxbkchcwwfa2123n9yqfzinfi0zba8zxhp977czzwysy75cc"))))
21476 (properties `((upstream-name . "Rlinsolve")))
21477 (build-system r-build-system)
21478 (propagated-inputs
21479 `(("r-matrix" ,r-matrix)
21480 ("r-rcpp" ,r-rcpp)
21481 ("r-rcpparmadillo" ,r-rcpparmadillo)
21482 ("r-rdpack" ,r-rdpack)))
21483 (home-page "https://cran.r-project.org/web/packages/Rlinsolve/")
21484 (synopsis "Iterative solvers for (sparse) linear system of equations")
21485 (description
21486 "Solving a system of linear equations is one of the most fundamental
21487 computational problems for many fields of mathematical studies, such as
21488 regression problems from statistics or numerical partial differential
21489 equations. This package provides basic stationary iterative solvers such as
21490 Jacobi, Gauss-Seidel, Successive Over-Relaxation and SSOR methods.
21491 Nonstationary, also known as Krylov subspace methods are also provided.
21492 Sparse matrix computation is also supported in that solving large and sparse
21493 linear systems can be manageable using the @code{Matrix} package along with
21494 @code{RcppArmadillo}.")
21495 (license license:gpl3+)))
21496
21497 (define-public r-zvcv
21498 (package
21499 (name "r-zvcv")
21500 (version "2.1.0")
21501 (source
21502 (origin
21503 (method url-fetch)
21504 (uri (cran-uri "ZVCV" version))
21505 (sha256
21506 (base32
21507 "0np6h6x74kz1x13wmbkkm1wq43d8bnn2khzjc80prqdi6n0m9v8r"))))
21508 (properties `((upstream-name . "ZVCV")))
21509 (build-system r-build-system)
21510 (propagated-inputs
21511 `(("r-abind" ,r-abind)
21512 ("r-bh" ,r-bh)
21513 ("r-dplyr" ,r-dplyr)
21514 ("r-glmnet" ,r-glmnet)
21515 ("r-magrittr" ,r-magrittr)
21516 ("r-mvtnorm" ,r-mvtnorm)
21517 ("r-rcpp" ,r-rcpp)
21518 ("r-rcpparmadillo" ,r-rcpparmadillo)
21519 ("r-rlinsolve" ,r-rlinsolve)))
21520 (home-page "https://cran.r-project.org/web/packages/ZVCV/")
21521 (synopsis "Zero-Variance Control Variates")
21522 (description
21523 "@dfn{Zero-variance control variates} (ZV-CV) is a post-processing method
21524 to reduce the variance of Monte Carlo estimators of expectations using the
21525 derivatives of the log target. Once the derivatives are available, the only
21526 additional computational effort is in solving a linear regression problem.
21527 This method has been extended to higher dimensions using regularisation. This
21528 package can be used to easily perform ZV-CV or regularised ZV-CV when a set of
21529 samples, derivatives and function evaluations are available. Additional
21530 functions for applying ZV-CV to two estimators for the normalising constant of
21531 the posterior distribution in Bayesian statistics are also supplied.")
21532 (license license:gpl2+)))
21533
21534 (define-public r-ztype
21535 (package
21536 (name "r-ztype")
21537 (version "0.1.0")
21538 (source
21539 (origin
21540 (method url-fetch)
21541 (uri (cran-uri "ztype" version))
21542 (sha256
21543 (base32
21544 "0brbq2rgkl4mhjbb70kkfv47lzs66k9ppfs2klavcbripirxn5fx"))))
21545 (properties `((upstream-name . "ztype")))
21546 (build-system r-build-system)
21547 (propagated-inputs
21548 `(("r-assertthat" ,r-assertthat)
21549 ("r-dplyr" ,r-dplyr)
21550 ("r-ggplot2" ,r-ggplot2)
21551 ("r-lubridate" ,r-lubridate)
21552 ("r-magrittr" ,r-magrittr)
21553 ("r-rvest" ,r-rvest)
21554 ("r-stringr" ,r-stringr)))
21555 (home-page "https://cran.r-project.org/web/packages/ztype/")
21556 (synopsis "Run a Ztype game loaded with R functions")
21557 (description
21558 "How fast can you type R functions on your keyboard? Find out by running
21559 a @code{zty.pe} game: export R functions as instructions to type to destroy
21560 opponents' vessels.")
21561 (license license:gpl3)))
21562
21563 (define-public r-zseq
21564 (package
21565 (name "r-zseq")
21566 (version "0.2.0")
21567 (source
21568 (origin
21569 (method url-fetch)
21570 (uri (cran-uri "Zseq" version))
21571 (sha256
21572 (base32
21573 "06dndi2b1q79bmxax11bv0l5ifcz1mhpvbn90y6a6xymrgcq0ivi"))))
21574 (properties `((upstream-name . "Zseq")))
21575 (build-system r-build-system)
21576 (propagated-inputs
21577 `(("r-gmp" ,r-gmp)))
21578 (home-page "https://cran.r-project.org/web/packages/Zseq/")
21579 (synopsis "Integer sequence generator")
21580 (description
21581 "This package generates well-known integer sequences. The @code{gmp}
21582 package is adopted for computing with arbitrarily large numbers. Every
21583 function has a hyperlink to its corresponding item in the @dfn{On-Line
21584 Encyclopedia of Integer Sequences} (OEIS) in the function help page.")
21585 (license license:gpl3+)))
21586
21587 (define-public r-isoband
21588 (package
21589 (name "r-isoband")
21590 (version "0.2.2")
21591 (source
21592 (origin
21593 (method url-fetch)
21594 (uri (cran-uri "isoband" version))
21595 (sha256
21596 (base32
21597 "044fg014gb6v6v11gm7ivfipz45iqw9cpahjhaacw6kyahyb66zx"))))
21598 (properties `((upstream-name . "isoband")))
21599 (build-system r-build-system)
21600 (propagated-inputs
21601 `(("r-testthat" ,r-testthat)))
21602 (native-inputs
21603 `(("r-knitr" ,r-knitr)))
21604 (home-page "https://github.com/wilkelab/isoband")
21605 (synopsis "Generate isolines and isobands from regularly spaced elevation grids")
21606 (description
21607 "This package provides a fast C++ implementation to generate contour
21608 lines (isolines) and contour polygons (isobands) from regularly spaced grids
21609 containing elevation data.")
21610 (license license:expat)))
21611
21612 (define-public r-ppcor
21613 (package
21614 (name "r-ppcor")
21615 (version "1.1")
21616 (source
21617 (origin
21618 (method url-fetch)
21619 (uri (cran-uri "ppcor" version))
21620 (sha256
21621 (base32
21622 "1x9b2kb8s0bp92b17gby0jwzzr3i4cf3ap9c4nq7m8fav72g0y3a"))))
21623 (properties `((upstream-name . "ppcor")))
21624 (build-system r-build-system)
21625 (propagated-inputs
21626 `(("r-mass" ,r-mass)))
21627 (home-page "https://cran.r-project.org/web/packages/ppcor/")
21628 (synopsis "Partial and semi-partial correlation")
21629 (description
21630 "This package provides users not only with a function to readily
21631 calculate the higher-order partial and semi-partial correlations but also with
21632 statistics and p-values of the correlation coefficients.")
21633 (license license:gpl2)))
21634
21635 (define-public r-hrbrthemes
21636 (package
21637 (name "r-hrbrthemes")
21638 (version "0.8.0")
21639 (source
21640 (origin
21641 (method url-fetch)
21642 (uri (cran-uri "hrbrthemes" version))
21643 (sha256
21644 (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))))
21645 (properties `((upstream-name . "hrbrthemes")))
21646 (build-system r-build-system)
21647 (propagated-inputs
21648 `(("r-extrafont" ,r-extrafont)
21649 ("r-gdtools" ,r-gdtools)
21650 ("r-ggplot2" ,r-ggplot2)
21651 ("r-htmltools" ,r-htmltools)
21652 ("r-knitr" ,r-knitr)
21653 ("r-magrittr" ,r-magrittr)
21654 ("r-rmarkdown" ,r-rmarkdown)
21655 ("r-scales" ,r-scales)))
21656 (native-inputs
21657 `(("r-knitr" ,r-knitr)))
21658 (home-page "https://github.com/hrbrmstr/hrbrthemes/")
21659 (synopsis "Additional themes, theme components and utilities for @code{ggplot2}")
21660 (description
21661 "This package provides a compilation of extra @code{ggplot2} themes,
21662 scales and utilities, including a spell check function for plot label fields
21663 and an overall emphasis on typography.")
21664 (license license:expat)))
21665
21666 (define-public r-crochet
21667 (package
21668 (name "r-crochet")
21669 (version "2.3.0")
21670 (source
21671 (origin
21672 (method url-fetch)
21673 (uri (cran-uri "crochet" version))
21674 (sha256
21675 (base32
21676 "0zvjaf6cv0nrjb4l4llkr0mmgha7ig31p4ri2rlnqyjlxi5l8hyq"))))
21677 (build-system r-build-system)
21678 (native-inputs
21679 `(("r-knitr" ,r-knitr)))
21680 (home-page "https://github.com/agrueneberg/crochet")
21681 (synopsis "Implementation Helper for Matrix-Like Types")
21682 (description
21683 "Functions to help implement the extraction / subsetting / indexing
21684 function @code{[} and replacement function @code{[<-} of custom matrix-like
21685 types (based on S3, S4, etc.), modeled as closely to the base matrix class
21686 as possible (with tests to prove it).")
21687 (license license:expat)))
21688
21689 (define-public r-boa
21690 (package
21691 (name "r-boa")
21692 (version "1.1.8-2")
21693 (source
21694 (origin
21695 (method url-fetch)
21696 (uri (cran-uri "boa" version))
21697 (sha256
21698 (base32
21699 "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
21700 (properties `((upstream-name . "boa")))
21701 (build-system r-build-system)
21702 (home-page "http://www.jstatsoft.org/v21/i11")
21703 (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
21704 (description
21705 "This package provides a menu-driven program and library of functions for
21706 carrying out convergence diagnostics and statistical and graphical analysis of
21707 @dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
21708 (license license:gpl2+)))
21709
21710 (define-public r-httpcode
21711 (package
21712 (name "r-httpcode")
21713 (version "0.3.0")
21714 (source (origin
21715 (method url-fetch)
21716 (uri (cran-uri "httpcode" version))
21717 (sha256
21718 (base32
21719 "0xig0rvc81hg7mw0iq9s0an1nw24fg0kfs2p2n6dzhwl9w506fjr"))))
21720 (build-system r-build-system)
21721 (home-page "https://github.com/sckott/httpcode")
21722 (synopsis "HTTP status code helper")
21723 (description "@code{httpcode} provides functionality for finding and
21724 explaining the meaning of @code{HTTP} status codes. Functions are included for
21725 searching for codes by full or partial number, by message, and to get
21726 appropriate dog and cat images for many status codes.")
21727 (license license:expat)))
21728
21729 (define-public r-latex2exp
21730 (package
21731 (name "r-latex2exp")
21732 (version "0.4.0")
21733 (source (origin
21734 (method url-fetch)
21735 (uri (cran-uri "latex2exp" version))
21736 (sha256
21737 (base32
21738 "12nbcgfmv13k6sc6m326ras9bcvy380b7rxcxphn06r3cfkby0zw"))))
21739 (build-system r-build-system)
21740 (propagated-inputs
21741 `(("r-stringr" ,r-stringr)
21742 ("r-magrittr", r-magrittr)))
21743 (home-page "https://github.com/stefano-meschiari/latex2exp/")
21744 (synopsis "Use LaTeX expressions in plots")
21745 (description "@code{latex2exp} parses and converts LaTeX math formulas to
21746 R's plotmath expressions, used to enter mathematical formulas and symbols to be
21747 rendered as text, axis labels, etc. throughout R's plotting system.")
21748 (license license:expat)))
21749
21750 (define-public r-oai
21751 (package
21752 (name "r-oai")
21753 (version "0.3.0")
21754 (source (origin
21755 (method url-fetch)
21756 (uri (cran-uri "oai" version))
21757 (sha256
21758 (base32
21759 "1ipw9bq3ra66d1ddj1rylyyd20mlcb2i7phzhywra53s1fdifq1g"))))
21760 (build-system r-build-system)
21761 (propagated-inputs
21762 `(("r-xml2" ,r-xml2)
21763 ("r-httr" ,r-httr)
21764 ("r-plyr" ,r-plyr)
21765 ("r-stringr" ,r-stringr)
21766 ("r-tibble" ,r-tibble)))
21767 (home-page "https://github.com/ropensci/oai/")
21768 (synopsis "General purpose OAI-PMH services client")
21769 (description "@code{oai} provides a general purpose client to work with
21770 any @dfn{Open Archives Initiative Protocol for 'Metadata' Harvesting} (OAI-PMH)
21771 service. Functions are provided to work with the OAI-PMH verbs:
21772 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
21773 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
21774 (license license:expat)))
21775
21776 (define-public r-argon2
21777 (package
21778 (name "r-argon2")
21779 (version "0.2-0")
21780 (source
21781 (origin
21782 (method url-fetch)
21783 (uri (cran-uri "argon2" version))
21784 (sha256
21785 (base32
21786 "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
21787 (properties `((upstream-name . "argon2")))
21788 (build-system r-build-system)
21789 (home-page "https://github.com/wrathematics/argon2")
21790 (synopsis "Secure password hashing based on the argon2 algorithm")
21791 (description
21792 "This package provides utilities for secure password hashing via the
21793 argon2 algorithm.")
21794 (license license:bsd-2)))
21795
21796 (define-public r-getpass
21797 (package
21798 (name "r-getpass")
21799 (version "0.2-2")
21800 (source
21801 (origin
21802 (method url-fetch)
21803 (uri (cran-uri "getPass" version))
21804 (sha256
21805 (base32
21806 "03ydafhh0sk3rcnpr3paajyji64x2ddp6p814p9mvbmyrblcgzcc"))))
21807 (properties `((upstream-name . "getPass")))
21808 (build-system r-build-system)
21809 (propagated-inputs
21810 `(("r-rstudioapi" ,r-rstudioapi)))
21811 (home-page "https://github.com/wrathematics/getPass")
21812 (synopsis "Masked user input")
21813 (description
21814 "This package provides a micro-package for reading \"passwords\", i.e.
21815 reading user input with masking, so that the input is not displayed as it is
21816 typed. Currently, RStudio, the command line (every OS), and any platform
21817 where tcltk is present are supported.")
21818 (license license:bsd-2)))
21819
21820 (define-public r-remoter
21821 (package
21822 (name "r-remoter")
21823 (version "0.4-0")
21824 (source
21825 (origin
21826 (method url-fetch)
21827 (uri (cran-uri "remoter" version))
21828 (sha256
21829 (base32
21830 "1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
21831 (properties `((upstream-name . "remoter")))
21832 (build-system r-build-system)
21833 (propagated-inputs
21834 `(("r-argon2" ,r-argon2)
21835 ("r-getpass" ,r-getpass)
21836 ("r-pbdzmq" ,r-pbdzmq)
21837 ("r-png" ,r-png)))
21838 (home-page "https://github.com/RBigData/remoter")
21839 (synopsis "Control a remote R session from a local one")
21840 (description
21841 "This package provides a set of utilities for client/server computing
21842 with R, controlling a remote R session (the server) from a local one (the
21843 client).")
21844 (license license:bsd-2)))
21845
21846 (define-public r-asd
21847 (package
21848 (name "r-asd")
21849 (version "2.2")
21850 (source
21851 (origin
21852 (method url-fetch)
21853 (uri (cran-uri "asd" version))
21854 (sha256
21855 (base32
21856 "0p3r4qjam3sl3rpcilb0pgx4xx3ly71xqnvkv31vzjs885lgxz4l"))))
21857 (properties `((upstream-name . "asd")))
21858 (build-system r-build-system)
21859 (propagated-inputs
21860 `(("r-mvtnorm" ,r-mvtnorm)))
21861 (home-page "https://cran.r-project.org/web/packages/asd")
21862 (synopsis "Simulations for Adaptive Seamless Designs")
21863 (description
21864 "This package provdes means to run simulations for adaptive seamless
21865 designs with and without early outcomes for treatment selection and
21866 subpopulation type designs.")
21867 (license license:gpl3)))
21868
21869 (define-public r-nbconvertr
21870 (package
21871 (name "r-nbconvertr")
21872 (version "1.3.2")
21873 (source
21874 (origin
21875 (method url-fetch)
21876 (uri (cran-uri "nbconvertR" version))
21877 (sha256
21878 (base32
21879 "0yhmz177r1miain65vspclahhz8cg7638ldbpsw8ylgf7a60l0sg"))))
21880 (properties `((upstream-name . "nbconvertR")))
21881 (build-system r-build-system)
21882 (inputs
21883 `(("jupyter" ,python-nbconvert)
21884 ("pandoc" ,pandoc)))
21885 (home-page "https://cran.r-project.org/web/packages/nbconvertR/")
21886 (synopsis "Vignette engine wrapping Jupyter notebooks")
21887 (description
21888 "This package calls the Jupyter script @code{nbconvert} to create
21889 vignettes from notebooks. Those notebooks (@code{.ipynb} files) are files
21890 containing rich text, code, and its output. Code cells can be edited and
21891 evaluated interactively.")
21892 (license license:gpl3)))
21893
21894 (define-public r-bridgesampling
21895 (package
21896 (name "r-bridgesampling")
21897 (version "1.0-0")
21898 (source
21899 (origin
21900 (method url-fetch)
21901 (uri (cran-uri "bridgesampling" version))
21902 (sha256
21903 (base32
21904 "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y"))))
21905 (properties
21906 `((upstream-name . "bridgesampling")))
21907 (build-system r-build-system)
21908 (propagated-inputs
21909 `(("r-brobdingnag" ,r-brobdingnag)
21910 ("r-coda" ,r-coda)
21911 ("r-matrix" ,r-matrix)
21912 ("r-mvtnorm" ,r-mvtnorm)
21913 ("r-scales" ,r-scales)
21914 ("r-stringr" ,r-stringr)))
21915 (native-inputs
21916 `(("r-knitr" ,r-knitr)))
21917 (home-page "https://github.com/quentingronau/bridgesampling")
21918 (synopsis "Bridge sampling for marginal likelihoods and Bayes factors")
21919 (description
21920 "This package provides functions for estimating marginal likelihoods,
21921 Bayes factors, posterior model probabilities, and normalizing constants in
21922 general, via different versions of bridge sampling.")
21923 (license license:gpl2+)))
21924
21925 (define-public r-tea
21926 (package
21927 (name "r-tea")
21928 (version "1.1")
21929 (source
21930 (origin
21931 (method url-fetch)
21932 (uri (cran-uri "tea" version))
21933 (sha256
21934 (base32
21935 "0ql7lrxk0ihm49kqsvz79ig8i54rwiy9nxav4v9hy72j9kj5bgjn"))))
21936 (properties
21937 `((upstream-name . "tea")))
21938 (build-system r-build-system)
21939 (propagated-inputs
21940 `(("r-matrix" ,r-matrix)))
21941 (home-page "https://cran.r-project.org/web/packages/tea/")
21942 (synopsis "Threshold estimation approaches")
21943 (description
21944 "This package provides different approaches for selecting the threshold
21945 in generalized Pareto distributions. Most of them are based on minimizing the
21946 AMSE-criterion or atleast by reducing the bias of the assumed GPD-model.
21947 Others are heuristically motivated by searching for stable sample paths, i.e.
21948 a nearly constant region of the tail index estimator with respect to k, which
21949 is the number of data in the tail. The third class is motivated by graphical
21950 inspection. In addition, a sequential testing procedure for GPD-GoF-tests
21951 is also implemented here.")
21952 (license license:gpl3)))
21953
21954 (define-public r-awsmethods
21955 (package
21956 (name "r-awsmethods")
21957 (version "1.1-1")
21958 (source
21959 (origin
21960 (method url-fetch)
21961 (uri (cran-uri "awsMethods" version))
21962 (sha256
21963 (base32
21964 "0hbmrcpdyg15zg4rysscsmxpxlpy0dkxx2aa63qibq7l1k14v4sh"))))
21965 (properties
21966 `((upstream-name . "awsMethods")))
21967 (build-system r-build-system)
21968 (home-page "http://www.wias-berlin.de/software/imaging/")
21969 (synopsis "Class and methods definitions")
21970 (description
21971 "This package defines the generic method @code{extract} and provides
21972 @code{openMP} support as needed in several packages like
21973 @code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
21974 (license license:gpl2+)))
21975
21976 (define-public r-aws
21977 (package
21978 (name "r-aws")
21979 (version "2.4-3")
21980 (source
21981 (origin
21982 (method url-fetch)
21983 (uri (cran-uri "aws" version))
21984 (sha256
21985 (base32
21986 "0ccm8ffjf8bylhfr64j9wzi49hzigz4bs172pvkb0bi4d5vdr0l5"))))
21987 (properties
21988 `((upstream-name . "aws")))
21989 (build-system r-build-system)
21990 (propagated-inputs
21991 `(("r-awsmethods" ,r-awsmethods)
21992 ("r-gsl" ,r-gsl)))
21993 (native-inputs
21994 `(("gfortran" ,gfortran)))
21995 (home-page "https://cran.r-project.org/web/packages/aws/")
21996 (synopsis "Adaptive weights smoothing")
21997 (description
21998 "This package provides a collection of R-functions implementing adaptive
21999 smoothing procedures in 1D, 2D and 3D. This includes the
22000 Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
22001 Confidence Intervals} (ICI), variational approaches, and a non-local means
22002 filter.")
22003 (license license:gpl2+)))
22004
22005 (define-public r-sgloptim
22006 (package
22007 (name "r-sgloptim")
22008 (version "1.3.8")
22009 (source
22010 (origin
22011 (method url-fetch)
22012 (uri (cran-uri "sglOptim" version))
22013 (sha256
22014 (base32
22015 "15bkkvgp9v9vsp65wps48g3c2fa0fj1025hbrziywq14j7wayyjr"))))
22016 (properties
22017 `((upstream-name . "sglOptim")))
22018 (build-system r-build-system)
22019 (propagated-inputs
22020 `(("r-bh" ,r-bh)
22021 ("r-doparallel" ,r-doparallel)
22022 ("r-foreach" ,r-foreach)
22023 ("r-matrix" ,r-matrix)
22024 ("r-rcpp" ,r-rcpp)
22025 ("r-rcpparmadillo" ,r-rcpparmadillo)
22026 ("r-rcppprogress" ,r-rcppprogress)))
22027 (native-inputs
22028 `(("r-knitr" ,r-knitr)))
22029 (home-page "https://github.com/nielsrhansen/sglOptim")
22030 (synopsis "Generic sparse group Lasso solver")
22031 (description
22032 "This package provides a fast generic solver for sparse group lasso
22033 optimization problems. The loss (objective) function must be defined in a C++
22034 module. The optimization problem is solved using a coordinate gradient
22035 descent algorithm. Convergence of the algorithm is established and the
22036 algorithm is applicable to a broad class of loss functions. Use of parallel
22037 computing for cross validation and subsampling is supported through the
22038 @code{foreach} and @code{doParallel} packages.")
22039 (license license:gpl2+)))
22040
22041 (define-public r-grouped
22042 (package
22043 (name "r-grouped")
22044 (version "0.6-0")
22045 (source
22046 (origin
22047 (method url-fetch)
22048 (uri (cran-uri "grouped" version))
22049 (sha256
22050 (base32
22051 "1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
22052 (properties
22053 `((upstream-name . "grouped")))
22054 (build-system r-build-system)
22055 (propagated-inputs
22056 `(("r-mass" ,r-mass)))
22057 (home-page "https://cran.r-project.org/web/packages/grouped/")
22058 (synopsis "Regression analysis of grouped and coarse data")
22059 (description
22060 "This package provides regression models for grouped and coarse data,
22061 under the coarsened at random assumption.")
22062 (license license:gpl2+)))
22063
22064 (define-public r-stam
22065 (package
22066 (name "r-stam")
22067 (version "0.0-1")
22068 (source
22069 (origin
22070 (method url-fetch)
22071 (uri (cran-uri "stam" version))
22072 (sha256
22073 (base32
22074 "1x1j45fir64kffny0nssb2hwn4rcp8gd2cjv6fw4yy0l4d0xi5iv"))))
22075 (properties
22076 `((upstream-name . "stam")))
22077 (build-system r-build-system)
22078 (propagated-inputs
22079 `(("r-np" ,r-np)
22080 ("r-sp" ,r-sp)))
22081 (home-page "https://cran.r-project.org/web/packages/stam")
22082 (synopsis "Spatio-temporal analysis and modelling")
22083 (description
22084 "This package provides various methods to conduct Spatio-Temporal
22085 Analysis and Modelling, including Exploratory Spatio-Temporal Analysis and
22086 Inferred Spatio-Temporal Modelling.")
22087 (license license:gpl2+)))
22088
22089 (define-public r-dcv
22090 (package
22091 (name "r-dcv")
22092 (version "0.1.1")
22093 (source
22094 (origin
22095 (method url-fetch)
22096 (uri (cran-uri "dcv" version))
22097 (sha256
22098 (base32
22099 "12c716x8dnxnqksibpmyysqp2axggvy9dpd55s9bhnsvqvi6dshj"))))
22100 (properties
22101 `((upstream-name . "dcv")))
22102 (build-system r-build-system)
22103 (propagated-inputs
22104 `(("r-lmtest" ,r-lmtest)))
22105 (home-page "https://cran.r-project.org/web/packages/dcv/")
22106 (synopsis "Conventional cross-validation statistics for climate-growth model")
22107 (description
22108 "This package performs several conventional cross-validation statistical
22109 methods for climate-growth model in the climate reconstruction from tree
22110 rings, including Sign Test statistic, Reduction of Error statistic, Product
22111 Mean Test, Durbin-Watson statistic etc.")
22112 (license license:gpl2)))
22113
22114 (define-public r-rcdd
22115 (package
22116 (name "r-rcdd")
22117 (version "1.2-2")
22118 (source
22119 (origin
22120 (method url-fetch)
22121 (uri (cran-uri "rcdd" version))
22122 (sha256
22123 (base32
22124 "0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
22125 (properties
22126 `((upstream-name . "rcdd")))
22127 (build-system r-build-system)
22128 (inputs
22129 `(("gmp" ,gmp)))
22130 (home-page "https://www.stat.umn.edu/geyer/rcdd/")
22131 (synopsis "Computational geometry")
22132 (description
22133 "This package converts back and forth between two representations of a
22134 convex polytope: as solution of a set of linear equalities and inequalities
22135 and as convex hull of set of points and rays. Also does linear programming
22136 and redundant generator elimination. All functions can use exact
22137 infinite-precision rational arithmetic.")
22138 (license license:gpl2)))
22139
22140 (define-public r-rxnat
22141 (package
22142 (name "r-rxnat")
22143 (version "1.0.12")
22144 (source
22145 (origin
22146 (method url-fetch)
22147 (uri (cran-uri "Rxnat" version))
22148 (sha256
22149 (base32
22150 "06w99b5lvpycykzlga6grw33zkajwbb04s89s37wy9zxy42vc4cb"))))
22151 (properties
22152 `((upstream-name . "Rxnat")))
22153 (build-system r-build-system)
22154 (propagated-inputs
22155 `(("r-dplyr" ,r-dplyr)
22156 ("r-httr" ,r-httr)
22157 ("r-rcurl" ,r-rcurl)))
22158 (native-inputs
22159 `(("r-knitr" ,r-knitr)))
22160 (home-page "https://cran.r-project.org/web/packages/Rxnat/")
22161 (synopsis "Queries and extracts images from neuroimaging datasets")
22162 (description
22163 "This package allows communication with the Extensible Neuroimaging
22164 Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
22165 download images.")
22166 (license license:gpl2)))
22167
22168 (define-public r-rserve
22169 (package
22170 (name "r-rserve")
22171 (version "1.8-6")
22172 (source
22173 (origin
22174 (method url-fetch)
22175 (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
22176 version ".tar.gz"))
22177 (sha256
22178 (base32
22179 "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
22180 (build-system r-build-system)
22181 (propagated-inputs
22182 `(("r-checkmate" ,r-checkmate)
22183 ("r-mime" ,r-mime)
22184 ("r-jsonlite" ,r-jsonlite)
22185 ("r-knitr" ,r-knitr)
22186 ("r-r6" ,r-r6)
22187 ("r-rcpp" ,r-rcpp)
22188 ("r-uuid" ,r-uuid)))
22189 (inputs
22190 `(("openssl" ,openssl)
22191 ("zlib" ,zlib)))
22192 (home-page "https://github.com/s-u/Rserve")
22193 (synopsis
22194 "Server providing access to R from many languages and systems")
22195 (description
22196 "Rserve acts as a socket server (TCP/IP or local sockets) which allows
22197 binary requests to be sent to R. Every connection has a separate workspace
22198 and working directory. Client-side implementations are available for popular
22199 languages such as C/C++ and Java, allowing any application to use facilities
22200 of R without the need of linking to R code. Rserve supports remote
22201 connection, user authentication and file transfer. A simple R client is
22202 included in this package as well.")
22203 (license license:gpl2)))
22204
22205 (define-public r-brms
22206 (package
22207 (name "r-brms")
22208 (version "2.13.5")
22209 (source
22210 (origin
22211 (method url-fetch)
22212 (uri (cran-uri "brms" version))
22213 (sha256
22214 (base32
22215 "0a2m5wr134sxflmiq5jzvanzn81fv7xndy9gyvrq3bay9vakic69"))))
22216 (properties `((upstream-name . "brms")))
22217 (build-system r-build-system)
22218 (propagated-inputs
22219 `(("r-abind" ,r-abind)
22220 ("r-backports" ,r-backports)
22221 ("r-bayesplot" ,r-bayesplot)
22222 ("r-bridgesampling" ,r-bridgesampling)
22223 ("r-coda" ,r-coda)
22224 ("r-future" ,r-future)
22225 ("r-ggplot2" ,r-ggplot2)
22226 ("r-glue" ,r-glue)
22227 ("r-loo" ,r-loo)
22228 ("r-matrix" ,r-matrix)
22229 ("r-matrixstats" ,r-matrixstats)
22230 ("r-mgcv" ,r-mgcv)
22231 ("r-nleqslv" ,r-nleqslv)
22232 ("r-nlme" ,r-nlme)
22233 ("r-rcpp" ,r-rcpp)
22234 ("r-rstan" ,r-rstan)
22235 ("r-rstantools" ,r-rstantools)
22236 ("r-shinystan" ,r-shinystan)))
22237 (native-inputs `(("r-knitr" ,r-knitr)))
22238 (home-page
22239 "https://github.com/paul-buerkner/brms")
22240 (synopsis
22241 "Bayesian Regression Models using 'Stan'")
22242 (description
22243 "Fit Bayesian generalized (non-)linear multivariate multilevel models
22244 using 'Stan' for full Bayesian inference. A wide range of distributions and
22245 link functions are supported, allowing users to fit -- among others -- linear,
22246 robust linear, count data, survival, response times, ordinal, zero-inflated,
22247 hurdle, and even self-defined mixture models all in a multilevel context.
22248 Further modeling options include non-linear and smooth terms, auto-correlation
22249 structures, censored data, meta-analytic standard errors, and quite a few
22250 more. In addition, all parameters of the response distribution can be
22251 predicted in order to perform distributional regression. Prior specifications
22252 are flexible and explicitly encourage users to apply prior distributions that
22253 actually reflect their beliefs. Model fit can easily be assessed and compared
22254 with posterior predictive checks and leave-one-out cross-validation.")
22255 (license license:gpl2)))
22256
22257 (define-public r-mstate
22258 (package
22259 (name "r-mstate")
22260 (version "0.2.12")
22261 (source
22262 (origin
22263 (method url-fetch)
22264 (uri (cran-uri "mstate" version))
22265 (sha256
22266 (base32
22267 "0qnhivbibzss8yfsg44cvbf73n4jj4i28rbdysl88g14ig5sabgv"))))
22268 (properties `((upstream-name . "mstate")))
22269 (build-system r-build-system)
22270 (propagated-inputs
22271 `(("r-rcolorbrewer" ,r-rcolorbrewer)
22272 ("r-survival" ,r-survival)))
22273 (home-page
22274 "https://www.lumc.nl/org/bds/research/medische-statistiek/survival-analysis/")
22275 (synopsis
22276 "Data Preparation, Estimation and Prediction in Multi-State Models")
22277 (description
22278 "Contains functions for data preparation, descriptives, hazard estimation
22279 and prediction with Aalen-Johansen or simulation in competing risks and
22280 multi-state models.")
22281 (license license:gpl2+)))
22282
22283 (define-public r-scatterpie
22284 (package
22285 (name "r-scatterpie")
22286 (version "0.1.4")
22287 (source
22288 (origin
22289 (method url-fetch)
22290 (uri (cran-uri "scatterpie" version))
22291 (sha256
22292 (base32
22293 "0g5sn0iv6c1q7y51j4gbbbnil5089dgk1w4q94c7h5y3x7wfrzqb"))))
22294 (properties `((upstream-name . "scatterpie")))
22295 (build-system r-build-system)
22296 (propagated-inputs
22297 `(("r-ggforce" ,r-ggforce)
22298 ("r-ggplot2" ,r-ggplot2)
22299 ("r-rlang" ,r-rlang)
22300 ("r-rvcheck" ,r-rvcheck)
22301 ("r-tidyr" ,r-tidyr)))
22302 (native-inputs
22303 `(("r-knitr" ,r-knitr)))
22304 (home-page "https://cran.r-project.org/web/packages/scatterpie/")
22305 (synopsis "Scatter pie plot")
22306 (description
22307 "This package creates scatterpie plots, especially useful for plotting
22308 pies on a map.")
22309 (license license:artistic2.0)))
22310
22311 (define-public r-boruta
22312 (package
22313 (name "r-boruta")
22314 (version "7.0.0")
22315 (source
22316 (origin
22317 (method url-fetch)
22318 (uri (cran-uri "Boruta" version))
22319 (sha256
22320 (base32
22321 "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg"))))
22322 (properties `((upstream-name . "Boruta")))
22323 (build-system r-build-system)
22324 (propagated-inputs `(("r-ranger" ,r-ranger)))
22325 (home-page "https://gitlab.com/mbq/Boruta/")
22326 (synopsis "Wrapper algorithm for all relevant feature selection")
22327 (description
22328 "This package provides an all relevant feature selection wrapper
22329 algorithm. It finds relevant features by comparing original attributes'
22330 importance with importance achievable at random, estimated using their
22331 permuted copies (shadows).")
22332 (license license:gpl2+)))
22333
22334 (define-public r-directlabels
22335 (package
22336 (name "r-directlabels")
22337 (version "2020.6.17")
22338 (source
22339 (origin
22340 (method url-fetch)
22341 (uri (cran-uri "directlabels" version))
22342 (sha256
22343 (base32
22344 "1b6v206kizz5rjw03chjvn40a7cqihjpk80h1h79z2x27hp1qi3f"))))
22345 (build-system r-build-system)
22346 (propagated-inputs
22347 `(("r-quadprog" ,r-quadprog)))
22348 (native-inputs
22349 `(("r-knitr" ,r-knitr)))
22350 (home-page "http://directlabels.r-forge.r-project.org/")
22351 (synopsis "Direct labels for multicolor plots")
22352 (description
22353 "This package provides an extensible framework for automatically placing
22354 direct labels onto multicolor plots. Label positions are described using
22355 positioning methods that can be re-used across several different plots. There
22356 are heuristics for examining @code{trellis} and @code{ggplot} objects and
22357 inferring an appropriate positioning method.")
22358 (license license:gpl3)))
22359
22360 (define-public r-lsd
22361 (package
22362 (name "r-lsd")
22363 (version "4.1-0")
22364 (source
22365 (origin
22366 (method url-fetch)
22367 (uri (cran-uri "LSD" version))
22368 (sha256
22369 (base32 "17pbdlcbhzf3v7l42mjikln1ga5xjp5r78gjg6a88iahk0lwwlvm"))))
22370 (properties `((upstream-name . "LSD")))
22371 (build-system r-build-system)
22372 (home-page "https://cran.r-project.org/web/packages/LSD/")
22373 (synopsis "Lots of superior depictions tool creates colorful plots")
22374 (description
22375 "This package creates lots of colorful plots in a multitude of variations.
22376 Try a demo of the LSD by running @code{demotour()}.")
22377 ;; Either version
22378 (license (list license:gpl2 license:gpl3))))
22379
22380 (define-public r-fourcseq
22381 (package
22382 (name "r-fourcseq")
22383 (version "1.21.0")
22384 (source
22385 (origin
22386 (method url-fetch)
22387 (uri (bioconductor-uri "FourCSeq" version))
22388 (sha256
22389 (base32 "0lhcjw2hmmdafq52c5fvpm1crnzynbslamzh7r6ygifmzaz2pa8x"))))
22390 (properties `((upstream-name . "FourCSeq")))
22391 (build-system r-build-system)
22392 (propagated-inputs
22393 `(("r-biobase" ,r-biobase)
22394 ("r-biostrings" ,r-biostrings)
22395 ("r-deseq2" ,r-deseq2)
22396 ("r-fda" ,r-fda)
22397 ("r-genomicalignments" ,r-genomicalignments)
22398 ("r-genomicranges" ,r-genomicranges)
22399 ("r-ggbio" ,r-ggbio)
22400 ("r-ggplot2" ,r-ggplot2)
22401 ("r-gtools" ,r-gtools)
22402 ("r-lsd" ,r-lsd)
22403 ("r-matrix" ,r-matrix)
22404 ("r-reshape2" ,r-reshape2)
22405 ("r-rsamtools" ,r-rsamtools)
22406 ("r-rtracklayer" ,r-rtracklayer)
22407 ("r-summarizedexperiment" ,r-summarizedexperiment)))
22408 (native-inputs
22409 `(("r-knitr" ,r-knitr)))
22410 (home-page
22411 "https://bioconductor.org/packages/release/bioc/html/FourCSeq.html")
22412 (synopsis "Analysis of multiplexed 4C sequencing data")
22413 (description
22414 "This package is an R package dedicated to the analysis of (multiplexed)
22415 4C sequencing data. @code{r-fourcseq} provides a pipeline to detect specific
22416 interactions between DNA elements and identify differential interactions
22417 between conditions. The statistical analysis in R starts with individual bam
22418 files for each sample as inputs. To obtain these files, the package contains
22419 a Python script to demultiplex libraries and trim off primer sequences. With
22420 a standard alignment software the required bam files can be then be
22421 generated.")
22422 (license license:gpl3+)))
22423
22424 (define-public r-phylogram
22425 (package
22426 (name "r-phylogram")
22427 (version "2.1.0")
22428 (source
22429 (origin
22430 (method url-fetch)
22431 (uri (cran-uri "phylogram" version))
22432 (sha256
22433 (base32 "1p4h5pirc0m5pzc18q0jk3mcmb5n48gdf9abz03vml3a209xxl2v"))))
22434 (properties `((upstream-name . "phylogram")))
22435 (build-system r-build-system)
22436 (propagated-inputs `(("r-ape" ,r-ape)))
22437 (home-page "https://github.com/ropensci/phylogram/")
22438 (synopsis "Dendrograms for evolutionary analysis")
22439 (description
22440 "The @code{r-phylogram} package is a tool for for developing phylogenetic
22441 trees as deeply-nested lists known as \"dendrogram\" objects. It provides
22442 functions for conversion between \"dendrogram\" and \"phylo\" class objects,
22443 as well as several tools for command-line tree manipulation and import/export
22444 via Newick parenthetic text. This improves accessibility to the comprehensive
22445 range of object-specific analytical and tree-visualization functions found
22446 across a wide array of bioinformatic R packages.")
22447 (license license:gpl3)))
22448
22449 (define-public r-kmer
22450 (package
22451 (name "r-kmer")
22452 (version "1.1.2")
22453 (source
22454 (origin
22455 (method url-fetch)
22456 (uri (cran-uri "kmer" version))
22457 (sha256
22458 (base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
22459 (properties `((upstream-name . "kmer")))
22460 (build-system r-build-system)
22461 (propagated-inputs
22462 `(("r-openssl" ,r-openssl)
22463 ("r-phylogram" ,r-phylogram)
22464 ("r-rcpp" ,r-rcpp)))
22465 (home-page "https://github.com/shaunpwilkinson/kmer/")
22466 (synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
22467 (description
22468 "@code{r-kmer} is an R package for rapidly computing distance matrices
22469 and clustering large sequence datasets using fast alignment-free k-mer
22470 counting and recursive k-means partitioning.")
22471 (license license:gpl3)))
22472
22473 (define-public r-shapforxgboost
22474 (package
22475 (name "r-shapforxgboost")
22476 (version "0.0.4")
22477 (source
22478 (origin
22479 (method url-fetch)
22480 (uri (cran-uri "SHAPforxgboost" version))
22481 (sha256
22482 (base32
22483 "0k6bg27wqnkzv82bcahbapmqhiz6rvnx81m23zbjw58c7lwshgnq"))))
22484 (properties
22485 `((upstream-name . "SHAPforxgboost")))
22486 (build-system r-build-system)
22487 (propagated-inputs
22488 `(("r-bbmisc" ,r-bbmisc)
22489 ("r-data-table" ,r-data-table)
22490 ("r-ggextra" ,r-ggextra)
22491 ("r-ggforce" ,r-ggforce)
22492 ("r-ggplot2" ,r-ggplot2)
22493 ("r-ggpubr" ,r-ggpubr)
22494 ("r-rcolorbrewer" ,r-rcolorbrewer)
22495 ("r-xgboost" ,r-xgboost)))
22496 (home-page "https://github.com/liuyanguu/SHAPforxgboost")
22497 (synopsis "SHAP Plots for XGBoost")
22498 (description
22499 "The aim of @code{SHAPforxgboost} is to aid in visual data investigations
22500 using @dfn{SHAP} (Shapley additive explanation) visualization plots for
22501 @code{XGBoost}. It provides summary plot, dependence plot, interaction plot,
22502 and force plot. It relies on the @code{XGBoost} package to produce SHAP
22503 values.")
22504 (license license:expat)))
22505
22506 (define-public r-rismed
22507 (package
22508 (name "r-rismed")
22509 (version "2.1.7")
22510 (source
22511 (origin
22512 (method url-fetch)
22513 (uri (cran-uri "RISmed" version))
22514 (sha256
22515 (base32
22516 "08dmkkxsmwp9b4h2g1bbx03cijn793fsnzkmbima8x9d42vxnm1l"))))
22517 (properties `((upstream-name . "RISmed")))
22518 (build-system r-build-system)
22519 (home-page "https://cran.r-project.org/web/packages/RISmed")
22520 (synopsis "Download content from NCBI databases")
22521 (description
22522 "This package provides a set of tools to extract bibliographic
22523 content from the National Center for Biotechnology Information (NCBI)
22524 databases, including PubMed. The name RISmed is a portmanteau of
22525 RIS (for Research Information Systems, a common tag format for
22526 bibliographic data) and PubMed.")
22527 (license license:gpl2+)))
22528
22529 (define-public r-semver
22530 (package
22531 (name "r-semver")
22532 (version "0.2.0")
22533 (source
22534 (origin
22535 (method url-fetch)
22536 (uri (cran-uri "semver" version))
22537 (sha256
22538 (base32
22539 "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
22540 (properties `((upstream-name . "semver")))
22541 (build-system r-build-system)
22542 (propagated-inputs
22543 `(("r-assertthat" ,r-assertthat)
22544 ("r-rcpp" ,r-rcpp)))
22545 (native-inputs `(("r-knitr" ,r-knitr)))
22546 (home-page "https://github.com/johndharrison/semver")
22547 (synopsis "Parser for Semantic Versioning 2.0.0")
22548 (description
22549 "This package provides tools and functions for parsing, rendering and
22550 operating on semantic version strings. Semantic versioning is a simple set of
22551 rules and requirements that dictate how version numbers are assigned and
22552 incremented as outlined at @url{http://semver.org}.")
22553 (license license:expat)))
22554
22555 (define-public r-binman
22556 (package
22557 (name "r-binman")
22558 (version "0.1.1")
22559 (source
22560 (origin
22561 (method url-fetch)
22562 (uri (cran-uri "binman" version))
22563 (sha256
22564 (base32
22565 "0hm0h285p4v9lhrqjy8s22f1s1vmfpfla5iaycpj8vw3qb3632az"))))
22566 (properties `((upstream-name . "binman")))
22567 (build-system r-build-system)
22568 (propagated-inputs
22569 `(("r-assertthat" ,r-assertthat)
22570 ("r-httr" ,r-httr)
22571 ("r-jsonlite" ,r-jsonlite)
22572 ("r-rappdirs" ,r-rappdirs)
22573 ("r-semver" ,r-semver)
22574 ("r-xml2" ,r-xml2)
22575 ("r-yaml" ,r-yaml)))
22576 (native-inputs `(("r-knitr" ,r-knitr)))
22577 (home-page "https://github.com/ropensci/binman")
22578 (synopsis "Binary download manager")
22579 (description
22580 "This package provides tools and functions for managing the download of
22581 binary files. Binary repositories are defined in the YAML format. Defining
22582 new pre-download, download and post-download templates allow additional
22583 repositories to be added.")
22584 (license license:expat)))
22585
22586 (define-public r-wdman
22587 (package
22588 (name "r-wdman")
22589 (version "0.2.5")
22590 (source
22591 (origin
22592 (method url-fetch)
22593 (uri (cran-uri "wdman" version))
22594 (sha256
22595 (base32
22596 "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
22597 (properties `((upstream-name . "wdman")))
22598 (build-system r-build-system)
22599 (propagated-inputs
22600 `(("r-assertthat" ,r-assertthat)
22601 ("r-binman" ,r-binman)
22602 ("r-processx" ,r-processx)
22603 ("r-semver" ,r-semver)
22604 ("r-yaml" ,r-yaml)))
22605 (native-inputs `(("r-knitr" ,r-knitr)))
22606 (home-page "https://docs.ropensci.org/wdman/")
22607 (synopsis "Webdriver/Selenium binary manager")
22608 (description
22609 "There are a number of binary files associated with the
22610 Webdriver/Selenium project (see @url{http://www.seleniumhq.org/download/},
22611 @url{https://sites.google.com/a/chromium.org/chromedriver/},
22612 @url{https://github.com/mozilla/geckodriver},
22613 @url{http://phantomjs.org/download.html}, and
22614 @url{https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver} for
22615 more information). This package provides functions to download these binaries
22616 and to manage processes involving them.")
22617 (license license:expat)))
22618
22619 (define-public r-rselenium
22620 (package
22621 (name "r-rselenium")
22622 (version "1.7.7")
22623 (source
22624 (origin
22625 (method url-fetch)
22626 (uri (cran-uri "RSelenium" version))
22627 (sha256
22628 (base32
22629 "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
22630 (properties `((upstream-name . "RSelenium")))
22631 (build-system r-build-system)
22632 (propagated-inputs
22633 `(("r-binman" ,r-binman)
22634 ("r-catools" ,r-catools)
22635 ("r-httr" ,r-httr)
22636 ("r-openssl" ,r-openssl)
22637 ("r-wdman" ,r-wdman)
22638 ("r-xml" ,r-xml)))
22639 (native-inputs `(("r-knitr" ,r-knitr)))
22640 (home-page "https://docs.ropensci.org/RSelenium/")
22641 (synopsis "R bindings for Selenium WebDriver")
22642 (description
22643 "This package provides a set of R bindings for the Selenium 2.0
22644 WebDriver (see @url{https://selenium.dev/documentation/en/} for more
22645 information) using the @code{JsonWireProtocol} (see
22646 @url{https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol} for more
22647 information). Selenium 2.0 WebDriver allows driving a web browser natively as
22648 a user would either locally or on a remote machine using the Selenium server
22649 it marks a leap forward in terms of web browser automation. Selenium
22650 automates web browsers (commonly referred to as browsers). Using RSelenium
22651 you can automate browsers locally or remotely.")
22652 (license license:agpl3+)))
22653
22654 (define-public r-conquer
22655 (package
22656 (name "r-conquer")
22657 (version "1.0.1")
22658 (source
22659 (origin
22660 (method url-fetch)
22661 (uri (cran-uri "conquer" version))
22662 (sha256
22663 (base32
22664 "1c7id7wgspma5bdcirrhw7f9fp709zxpj31klivasdbvd4jgi4vb"))))
22665 (properties `((upstream-name . "conquer")))
22666 (build-system r-build-system)
22667 (propagated-inputs
22668 `(("r-matrix" ,r-matrix)
22669 ("r-matrixstats" ,r-matrixstats)
22670 ("r-rcpp" ,r-rcpp)
22671 ("r-rcpparmadillo" ,r-rcpparmadillo)))
22672 (home-page "https://github.com/XiaoouPan/conquer")
22673 (synopsis "Convolution-type smoothed quantile regression")
22674 (description
22675 "This package provides fast and accurate convolution-type smoothed
22676 quantile regression, implemented using Barzilai-Borwein gradient descent with
22677 a Huber regression warm start. Confidence intervals for regression
22678 coefficients are constructed using multiplier bootstrap.")
22679 (license license:gpl3)))
22680
22681 (define-public r-fastshap
22682 (package
22683 (name "r-fastshap")
22684 (version "0.0.5")
22685 (source
22686 (origin
22687 (method url-fetch)
22688 (uri (cran-uri "fastshap" version))
22689 (sha256
22690 (base32
22691 "08f25ib5mry6h8lvj0g3clc9kfl5g2wdd8x8bw455wwmbcm6x5vg"))))
22692 (properties `((upstream-name . "fastshap")))
22693 (build-system r-build-system)
22694 (propagated-inputs
22695 `(("r-abind" ,r-abind)
22696 ("r-ggplot2" ,r-ggplot2)
22697 ("r-gridextra" ,r-gridextra)
22698 ("r-matrixstats" ,r-matrixstats)
22699 ("r-plyr" ,r-plyr)
22700 ("r-rcpp" ,r-rcpp)
22701 ("r-rcpparmadillo" ,r-rcpparmadillo)
22702 ("r-tibble" ,r-tibble)))
22703 (home-page "https://github.com/bgreenwell/fastshap")
22704 (synopsis "Fast approximate Shapley values")
22705 (description
22706 "This package computes fast (relative to other implementations)
22707 approximate Shapley values for any supervised learning model. Shapley values
22708 help to explain the predictions from any black box model using ideas from game
22709 theory; see @url{Strumbel and Kononenko (2014),
22710 doi.org/10.1007/s10115-013-0679-x} for details.")
22711 (license license:gpl2+)))
22712
22713 (define-public r-metrics
22714 (package
22715 (name "r-metrics")
22716 (version "0.1.4")
22717 (source
22718 (origin
22719 (method url-fetch)
22720 (uri (cran-uri "Metrics" version))
22721 (sha256
22722 (base32
22723 "0fh8qbjlwzagh272lgwr4bxcqcjb1qpz53mgs8rzlvncax6nk5bk"))))
22724 (properties `((upstream-name . "Metrics")))
22725 (build-system r-build-system)
22726 (home-page "https://github.com/mfrasco/Metrics")
22727 (synopsis "Evaluation metrics for machine learning")
22728 (description
22729 "This package provides an implementation of evaluation metrics in R that
22730 are commonly used in supervised machine learning. It implements metrics for
22731 regression, time series, binary classification, classification, and
22732 information retrieval problems. It has zero dependencies and a consistent,
22733 simple interface for all functions.")
22734 (license license:bsd-3)))
22735
22736 (define-public r-iml
22737 (package
22738 (name "r-iml")
22739 (version "0.10.0")
22740 (source
22741 (origin
22742 (method url-fetch)
22743 (uri (cran-uri "iml" version))
22744 (sha256
22745 (base32
22746 "0xm3q42qahq798ilgg050df0mahhbdfd3fx3i7cpx606h38si0x7"))))
22747 (properties `((upstream-name . "iml")))
22748 (build-system r-build-system)
22749 (propagated-inputs
22750 `(("r-checkmate" ,r-checkmate)
22751 ("r-data-table" ,r-data-table)
22752 ("r-formula" ,r-formula)
22753 ("r-future" ,r-future)
22754 ("r-future-apply" ,r-future-apply)
22755 ("r-ggplot2" ,r-ggplot2)
22756 ("r-gridextra" ,r-gridextra)
22757 ("r-metrics" ,r-metrics)
22758 ("r-prediction" ,r-prediction)
22759 ("r-r6" ,r-r6)))
22760 (native-inputs `(("r-knitr" ,r-knitr)))
22761 (home-page "https://github.com/christophM/iml")
22762 (synopsis "Interpretable machine learning")
22763 (description
22764 "This package provides interpretability methods to analyze the behavior
22765 and predictions of any machine learning model. Implemented methods are:
22766
22767 @itemize
22768 @item Feature importance described by Fisher et al. (2018),
22769 @item accumulated local effects plots described by Apley (2018),
22770 @item partial dependence plots described by Friedman (2001),
22771 @item individual conditional expectation ('ice') plots described by Goldstein
22772 et al. (2013) @url{https://doi.org/10.1080/10618600.2014.907095},
22773 @item local models (variant of 'lime') described by Ribeiro et. al (2016),
22774 @item the Shapley Value described by Strumbelj et. al (2014)
22775 @url{https://doi.org/10.1007/s10115-013-0679-x},
22776 @item feature interactions described by Friedman et. al
22777 @url{https://doi.org/10.1214/07-AOAS148} and tree surrogate models.
22778 @end itemize
22779 ")
22780 (license license:expat)))
22781
22782 (define-public r-goftest
22783 (package
22784 (name "r-goftest")
22785 (version "1.2-2")
22786 (source
22787 (origin
22788 (method url-fetch)
22789 (uri (cran-uri "goftest" version))
22790 (sha256
22791 (base32
22792 "0ivnkqhv5xgiv05dm648nngacymd8x8g0fyppv3bc0mhcqk9k5z4"))))
22793 (properties `((upstream-name . "goftest")))
22794 (build-system r-build-system)
22795 (home-page "https://github.com/baddstats/goftest")
22796 (synopsis "Classical Goodness-of-Fit tests for univariate distributions")
22797 (description
22798 "This package provides Cramer-Von Mises and Anderson-Darling tests of
22799 goodness-of-fit for continuous univariate distributions, using efficient
22800 algorithms.")
22801 (license license:gpl2+)))
22802
22803 (define-public r-tensor
22804 (package
22805 (name "r-tensor")
22806 (version "1.5")
22807 (source
22808 (origin
22809 (method url-fetch)
22810 (uri (cran-uri "tensor" version))
22811 (sha256
22812 (base32
22813 "19mfsgr6vz4lgwidm80i4yw0y1dr3n8i6qz7g4n2xa0k74zc5pp1"))))
22814 (properties `((upstream-name . "tensor")))
22815 (build-system r-build-system)
22816 (home-page "https://cran.r-project.org/web/packages/tensor/")
22817 (synopsis "Tensor product of arrays")
22818 (description
22819 "The tensor product of two arrays is notionally an outer product of the
22820 arrays collapsed in specific extents by summing along the appropriate
22821 diagonals. This package allows you to compute the tensor product of arrays.")
22822 (license license:gpl2+)))
22823
22824 (define-public r-spatstat-utils
22825 (package
22826 (name "r-spatstat-utils")
22827 (version "1.17-0")
22828 (source
22829 (origin
22830 (method url-fetch)
22831 (uri (cran-uri "spatstat.utils" version))
22832 (sha256
22833 (base32
22834 "08h9kzkkxvlnngxnv5mdylfali5jj4yhgbr8kvf8l7glswz6ik9r"))))
22835 (properties
22836 `((upstream-name . "spatstat.utils")))
22837 (build-system r-build-system)
22838 (home-page "http://www.spatstat.org")
22839 (synopsis "Utility functions for spatstat")
22840 (description
22841 "This package contains utility functions for the @code{spatstat} package
22842 which may also be useful for other purposes.")
22843 (license license:gpl2+)))
22844
22845 (define-public r-spatstat-data
22846 (package
22847 (name "r-spatstat-data")
22848 (version "1.4-3")
22849 (source
22850 (origin
22851 (method url-fetch)
22852 (uri (cran-uri "spatstat.data" version))
22853 (sha256
22854 (base32
22855 "18lfj5vkwxgf5w9qz0g5al3zy8y2yi3bnd13w24hszfc82nbcmc9"))))
22856 (properties `((upstream-name . "spatstat.data")))
22857 (build-system r-build-system)
22858 (propagated-inputs
22859 `(("r-matrix" ,r-matrix)
22860 ("r-spatstat-utils" ,r-spatstat-utils)))
22861 (home-page "http://www.spatstat.org")
22862 (synopsis "Datasets for spatstat")
22863 (description
22864 "This package contains all the datasets for the @code{spatstat}
22865 package.")
22866 (license license:gpl2+)))
22867
22868 (define-public r-spatstat
22869 (package
22870 (name "r-spatstat")
22871 (version "1.64-1")
22872 (source
22873 (origin
22874 (method url-fetch)
22875 (uri (cran-uri "spatstat" version))
22876 (sha256
22877 (base32
22878 "06jmxfs9kz9qqi3ichfgn8dglwb87kq2nl578p83za5psv8cfgya"))))
22879 (properties `((upstream-name . "spatstat")))
22880 (build-system r-build-system)
22881 (propagated-inputs
22882 `(("r-abind" ,r-abind)
22883 ("r-deldir" ,r-deldir)
22884 ("r-goftest" ,r-goftest)
22885 ("r-matrix" ,r-matrix)
22886 ("r-mgcv" ,r-mgcv)
22887 ("r-nlme" ,r-nlme)
22888 ("r-polyclip" ,r-polyclip)
22889 ("r-rpart" ,r-rpart)
22890 ("r-spatstat-data" ,r-spatstat-data)
22891 ("r-spatstat-utils" ,r-spatstat-utils)
22892 ("r-tensor" ,r-tensor)))
22893 (home-page "http://www.spatstat.org")
22894 (synopsis "Spatial Point Pattern analysis, model-fitting, simulation, tests")
22895 (description
22896 "This package provides a comprehensive toolbox for analysing Spatial
22897 Point Patterns. It is focused mainly on two-dimensional point patterns,
22898 including multitype/marked points, in any spatial region. It also supports
22899 three-dimensional point patterns, space-time point patterns in any number of
22900 dimensions, point patterns on a linear network, and patterns of other
22901 geometrical objects. It supports spatial covariate data such as pixel images
22902 and contains over 2000 functions for plotting spatial data, exploratory data
22903 analysis, model-fitting, simulation, spatial sampling, model diagnostics, and
22904 formal inference.")
22905 (license license:gpl2+)))
22906
22907 (define-public r-gaston
22908 (package
22909 (name "r-gaston")
22910 (version "1.5.6")
22911 (source
22912 (origin
22913 (method url-fetch)
22914 (uri (cran-uri "gaston" version))
22915 (sha256
22916 (base32
22917 "1bx6iqfjb9lf3vn0z7v8wjv9m7issvqsnymm4qsgl3622s6qz6rg"))))
22918 (properties `((upstream-name . "gaston")))
22919 (build-system r-build-system)
22920 (inputs `(("zlib" ,zlib)))
22921 (propagated-inputs
22922 `(("r-rcpp" ,r-rcpp)
22923 ("r-rcppeigen" ,r-rcppeigen)
22924 ("r-rcppparallel" ,r-rcppparallel)))
22925 (native-inputs `(("r-knitr" ,r-knitr)))
22926 (home-page "https://cran.r-project.org/web/packages/gaston/")
22927 (synopsis "Genetic data handling (QC, GRM, LD, PCA) and linear mixed models")
22928 (description
22929 "This is a package for the manipulation of genetic data (SNPs).
22930 Computation of @dfn{genetic relationship matrix} (GRM) and dominance matrix,
22931 @dfn{linkage disequilibrium} (LD), and heritability with efficient algorithms
22932 for linear mixed models (AIREML).")
22933 (license license:gpl3)))
22934
22935 (define-public r-cpp11
22936 (package
22937 (name "r-cpp11")
22938 (version "0.2.1")
22939 (source
22940 (origin
22941 (method url-fetch)
22942 (uri (cran-uri "cpp11" version))
22943 (sha256
22944 (base32
22945 "1113y61lj4cg1d2yjavdx9zih5rzb4pnxmj5v3sr4bhzlxz2scda"))))
22946 (properties `((upstream-name . "cpp11")))
22947 (build-system r-build-system)
22948 (native-inputs `(("r-knitr" ,r-knitr)))
22949 (home-page "https://github.com/r-lib/cpp11")
22950 (synopsis "C++11 Interface for R's C Interface")
22951 (description
22952 "This package provides a header only, C++11 interface to R's C interface.
22953 Compared to other approaches @code{cpp11} strives to be safe against long
22954 jumps from the C API as well as C++ exceptions, conform to normal R function
22955 semantics and supports interaction with @code{ALTREP} vectors.")
22956 (license license:expat)))
22957
22958 (define-public r-rcppziggurat
22959 (package
22960 (name "r-rcppziggurat")
22961 (version "0.1.5")
22962 (source
22963 (origin
22964 (method url-fetch)
22965 (uri (cran-uri "RcppZiggurat" version))
22966 (sha256
22967 (base32
22968 "0zmr3nvm5j0fpwxk3x9kxpwqbr66ldfvd10zy8xlgjbslz9myvfv"))))
22969 (properties `((upstream-name . "RcppZiggurat")))
22970 (build-system r-build-system)
22971 (propagated-inputs
22972 `(("r-rcpp" ,r-rcpp)
22973 ("r-rcppgsl" ,r-rcppgsl)))
22974 (native-inputs `(("r-knitr" ,r-knitr)))
22975 (home-page "https://cran.r-project.org/web/packages/RcppZiggurat/")
22976 (synopsis "Rcpp integration of different \"Ziggurat\" normal RNG implementations")
22977 (description
22978 "The Ziggurat generator for normally distributed random numbers,
22979 originally proposed by Marsaglia and Tsang (2000,
22980 @url{https://doi.org/10.18637/jss.v005.i08}) has been improved upon a few
22981 times starting with Leong et al (2005,
22982 @url{https://doi.org/10.18637/jss.v012.i07}). This package provides an
22983 aggregation for comparing different implementations in order to provide a
22984 'faster but good enough' alternative for use with R and C++ code.")
22985 (license license:gpl2+)))
22986
22987 (define-public r-rfast
22988 (package
22989 (name "r-rfast")
22990 (version "1.9.9")
22991 (source
22992 (origin
22993 (method url-fetch)
22994 (uri (cran-uri "Rfast" version))
22995 (sha256
22996 (base32
22997 "18m8xhg24kygwhq7avdp1hibilicb5wppi2wdmc36fkqljc274y0"))))
22998 (properties `((upstream-name . "Rfast")))
22999 (build-system r-build-system)
23000 (propagated-inputs
23001 `(("r-rcpp" ,r-rcpp)
23002 ("r-rcpparmadillo" ,r-rcpparmadillo)
23003 ("r-rcppziggurat" ,r-rcppziggurat)))
23004 (home-page "https://github.com/RfastOfficial/Rfast")
23005 (synopsis "Collection of efficient and fast R functions")
23006 (description
23007 "This package provides a collection of fast (utility) functions for data
23008 analysis. Column- and row- wise means, medians, variances, minimums,
23009 maximums, many t, F and G-square tests, many regressions (normal, logistic,
23010 Poisson), are some of the many fast functions.")
23011 (license license:gpl2+)))
23012
23013 (define-public r-clusterr
23014 (package
23015 (name "r-clusterr")
23016 (version "1.2.2")
23017 (source
23018 (origin
23019 (method url-fetch)
23020 (uri (cran-uri "ClusterR" version))
23021 (sha256
23022 (base32
23023 "1ky172bk15a78hky77vl60j7c81nq2495sxjrv53is25nkac7sjm"))))
23024 (properties `((upstream-name . "ClusterR")))
23025 (build-system r-build-system)
23026 (propagated-inputs
23027 `(("r-ggplot2" ,r-ggplot2)
23028 ("r-gmp" ,r-gmp)
23029 ("r-gtools" ,r-gtools)
23030 ("r-rcpp" ,r-rcpp)
23031 ("r-rcpparmadillo" ,r-rcpparmadillo)))
23032 (native-inputs `(("r-knitr" ,r-knitr)))
23033 (home-page "https://github.com/mlampros/ClusterR")
23034 (synopsis "Clustering")
23035 (description
23036 "This package provides Gaussian mixture models, k-means,
23037 mini-batch-kmeans, k-medoids and affinity propagation clustering with the
23038 option to plot, validate, predict (new data) and estimate the optimal number
23039 of clusters. The package takes advantage of @code{RcppArmadillo} to speed up
23040 the computationally intensive parts of the functions. For more information,
23041 see
23042
23043 @enumerate
23044 @item \"Clustering in an Object-Oriented Environment\" by Anja Struyf, Mia
23045 Hubert, Peter Rousseeuw (1997), Journal of Statistical Software,
23046 @url{https://doi.org/10.18637/jss.v001.i04};
23047 @item \"Web-scale k-means clustering\" by D. Sculley (2010), ACM Digital
23048 Library, @url{https://doi.org/10.1145/1772690.1772862};
23049 @item \"Armadillo: a template-based C++ library
23050 for linear algebra\" by Sanderson et al (2016), The Journal of Open Source
23051 Software, @url{https://doi.org/10.21105/joss.00026};
23052 @item \"Clustering by Passing Messages Between Data Points\" by Brendan
23053 J. Frey and Delbert Dueck, Science 16 Feb 2007: Vol. 315, Issue 5814,
23054 pp. 972-976, @url{https://doi.org/10.1126/science.1136800}.
23055 @end enumerate
23056 ")
23057 (license license:gpl3)))
23058
23059 (define-public r-spectrum
23060 (package
23061 (name "r-spectrum")
23062 (version "1.1")
23063 (source
23064 (origin
23065 (method url-fetch)
23066 (uri (cran-uri "Spectrum" version))
23067 (sha256
23068 (base32
23069 "0n38d360azkck6vvhr771zsh0gbvd9qsf9ygg5r18vhz0pb1xcfw"))))
23070 (properties `((upstream-name . "Spectrum")))
23071 (build-system r-build-system)
23072 (propagated-inputs
23073 `(("r-clusterr" ,r-clusterr)
23074 ("r-diptest" ,r-diptest)
23075 ("r-ggplot2" ,r-ggplot2)
23076 ("r-rfast" ,r-rfast)))
23077 (native-inputs `(("r-knitr" ,r-knitr)))
23078 (home-page "https://cran.r-project.org/web/packages/Spectrum/")
23079 (synopsis "Fast adaptive spectral clustering for single and multi-view data")
23080 (description
23081 "This package provides a self-tuning spectral clustering method for
23082 single or multi-view data. Spectrum uses a new type of adaptive density aware
23083 kernel that strengthens connections in the graph based on common nearest
23084 neighbours. It uses a tensor product graph data integration and diffusion
23085 procedure to integrate different data sources and reduce noise. Spectrum uses
23086 either the eigengap or multimodality gap heuristics to determine the number of
23087 clusters. The method is sufficiently flexible so that a wide range of
23088 Gaussian and non-Gaussian structures can be clustered with automatic selection
23089 of K.")
23090 (license license:agpl3+)))
23091
23092 (define-public r-nabor
23093 (package
23094 (name "r-nabor")
23095 (version "0.5.0")
23096 (source
23097 (origin
23098 (method url-fetch)
23099 (uri (cran-uri "nabor" version))
23100 (sha256
23101 (base32
23102 "1nj39cdfwrmhgsi3cq8imxv3n6xzc1v6dzdb2cf2hybjk368v4s7"))))
23103 (properties `((upstream-name . "nabor")))
23104 (build-system r-build-system)
23105 (propagated-inputs
23106 `(("r-bh" ,r-bh)
23107 ("r-rcpp" ,r-rcpp)
23108 ("r-rcppeigen" ,r-rcppeigen)))
23109 (home-page "https://cran.r-project.org/web/packages/nabor/")
23110 (synopsis "Wrapper for K nearest neighbour library for low dimensions")
23111 (description
23112 "This package provides an R wrapper for libnabo, an exact or approximate
23113 k nearest neighbour library which is optimised for low dimensional
23114 spaces (e.g. 3D). @code{nabor} includes a @code{knn} function that is
23115 designed as a drop-in replacement for the RANN function @code{nn2}. In
23116 addition, objects which include the k-d tree search structure can be returned
23117 to speed up repeated queries of the same set of target points.")
23118 (license license:bsd-3)))